localizedstringkit


Namelocalizedstringkit JSON
Version 0.2.6 PyPI version JSON
download
home_pagehttps://github.com/microsoft/LocalizedStringKit
SummaryGenerate .strings files directly from your code
upload_time2023-08-10 08:16:47
maintainerNone
docs_urlNone
authorDale Myers
requires_python>=3.8,<4.0
licenseMIT
keywords localization strings generation
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # LocalizedStringKit

[![PyPi Version](https://img.shields.io/pypi/v/LocalizedStringKit.svg)](https://pypi.org/project/LocalizedStringKit/)
[![License](https://img.shields.io/pypi/l/LocalizedStringKit.svg)](https://github.com/Microsoft/LocalizedStringKit/blob/master/LICENSE)
![LocalizedStringKit Logo](https://raw.githubusercontent.com/microsoft/localizedStringKit/master/logo.png)

LocalizedStringKit is a tool that lets you write English strings directly into your source code and generate the required .strings files later. No more manually managing string keys or remembering to add them to the strings file later. All you do is change: 

```swift
label.text = NSLocalizedString("TERMS_SCREEN_MAIN_HEADER", "Comment here...")
```

into:

```swift
label.text = Localized("Terms and Conditions", "Comment here...")
```

And you are good to go. 

## Getting started

### Application Library

The app side of the tool is powered by the LocalizedStringKit library.

The recommended way of consuming this library is via [Carthage](https://github.com/Carthage/Carthage). The line to add to your `Cartfile` is: `github "Microsoft/localizedstringkit"`

For any issues, refer to the Carthage documentation.

### Strings bundle

The app and the library need to be able to access the strings bundle(s). To do this we are going to do some basic setup:

#### Primary Bundle

1. Create a folder in your app project somewhere named `LocalizedStringKit`.
2. Inside that folder, create a new folder named `LocalizedStringKit.bundle` (this will turn it into a bundle).
3. Add this bundle to your project in Xcode
4. Ensure that this bundle is copied to your main app bundle (even if you are going to be using it in a framework).

The disk structure will now look something like:

```
ProjectName/
├── LocalizedStringKit/
|   ├── LocalizedStringKit.bundle/
```

#### Secondary Bundle(s): bundleNames

To leverage the bundleName segmentation of strings in multiple bundles, you'll need to create these bundles as well.

1. Navigate to the first `LocalizedStringKit` folder that was created in the Primary set up.
2. Inside that folder, create a new folder named `<bundleName>.bundle` (this will turn it into a bundle). Make sure to replace `bundleName` with the case sensitive bundleName you will use in your source.
3. Add this bundle to your project in Xcode
4. Ensure that this bundle is copied to your main app bundle (even if you are going to be using it in a framework).

### Creating some new strings

In your source code, add some code like:

```swift
label.text = Localized("My new string", "A comment")
```

Remember to `import LocalizedStringKit` in the file too.

### Generate your strings

Now everything is in place to generate the `.strings` files. For this, you'll need the tool we use to generate the strings files. It is a Python tool and can be installed by running `pip install localizedstringkit`.

Once the tool is installed, you just need to run `localizedstringkit -h` and it will show you how to call it. Here's an example:

```bash
localizedstringkit \
--path /path/to/my/project/root \
--localized-string-kit-path /path/to/my/project/root/LocalizedStringKit
```

This will scan `/path/to/my/project/root/` for all Swift and Objective-C files, extract any calls to `Localized` and generate the `en.lproj/LocalizedStringKit.strings` file. It will also generate a `source_strings.m` file as an intermediate step. This file is kept around as it allows the `localizedstringkit --check` command to be run quickly. You can add it to your `.gitignore` if preferred.

And that's it. You are now up and running with LocalizedStringKit.

_Note: Remember that if you use Carthage for installation, you'll need to add `--exclude Carthage` (or whatever your path is) to the command to avoid the library itself being flagged._

## FAQ

### How can I make this tool faster?
We know that this tool is a little slow. Unfortunately there's little we can do to speed it up. Instead, what we have developed is a `--check` flag which can be used. If `source_strings.m` exists in the repo, it will compare the state of the repo to that file, and return a non-zero exit code if there are differences. If that file does not exist, the check flag will always return a non-zero exit code.

### Can this be consumed as a library?
Yes, absolutely. Just `import localizedstringkit`.

### How do I migrate existing strings?
There is no built in method to migrate existing strings, but it's relatively straightforward to do so. Follow the setup steps above first. Then convert all `NSLocalizedString` calls to `Localized` calls, replacing your manual key with the English string. Then run the generate script mentioned above. You'll then need to move your translations through a similar process.

### How are collisions handled?
If you have two strings that are identical then they'll be "merged". By that, they'll share the same key, but the comments will be appended. The result will look something like this in the LocalizedStringKit.strings file:

```
/* Text on button which when tapped will send an email message to a user
   Text on button which when tapped will send a message to the support team */
"1432f32780bbd9cde496343b060fd75d" = "Send Message";
```

However, there will be cases where you don't want this to happen. For example, you may have the word `Schedule` appear as a heading for a screen which show's a users daily schedule, but is also a button which you can press to schedule a meeting. In one case the word is a noun and the other a verb. These will often be different words in other languages, so you want to ensure that they get unique translations. For this, you can use key extensions. For example:

```swift
// Heading
title.text = LocalizedWithKeyExtension("Schedule", "Title for a screen which shows the users daily schedule", "Noun")

// Button
button.text = LocalizedWithKeyExtension("Schedule", "Text for a button which will schedule the meeting currently displayed on screen.", "Verb")
```

In this case the English string and the extension (in this case `Verb` or `Noun`) will be concatenated before hashing to generate the key, resulting in these two cases having different keys. The key extension can be any string you like.

### Why is my app bigger after doing this?

By default, `.strings` files are in the old OpenStep plist format. When you use the standard functionality through Xcode, it automatically converts these to binary plists on build. With the custom bundle of this process, that no longer happens automatically. However, to fix it, it is relatively straightforward. Simply add a new run script phase to your main apps build phases, and add the following line to it:

```bash
find "${TARGET_BUILD_DIR}/${CONTENTS_FOLDER_PATH}/LocalizedStringKit.bundle" -name "LocalizedStringKit.strings" -exec plutil -convert binary1 {} \;
```

On build, the files in your binary will now be compressed. 

### Is this available through Swift Package Manager?
Yes, it is listed on the Swift Package Index [here](https://swiftpackageindex.com/microsoft/LocalizedStringKit)


# Contributing

This project welcomes contributions and suggestions.  Most contributions require you to agree to a
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide
a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions
provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/microsoft/LocalizedStringKit",
    "name": "localizedstringkit",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8,<4.0",
    "maintainer_email": null,
    "keywords": "localization,strings,generation",
    "author": "Dale Myers",
    "author_email": "dalemy@microsoft.com",
    "download_url": "https://files.pythonhosted.org/packages/fa/99/cc7b83274914e099bfb7bbb63534017bb9b6f1d0c572e578f6940f965d10/localizedstringkit-0.2.6.tar.gz",
    "platform": null,
    "description": "# LocalizedStringKit\n\n[![PyPi Version](https://img.shields.io/pypi/v/LocalizedStringKit.svg)](https://pypi.org/project/LocalizedStringKit/)\n[![License](https://img.shields.io/pypi/l/LocalizedStringKit.svg)](https://github.com/Microsoft/LocalizedStringKit/blob/master/LICENSE)\n![LocalizedStringKit Logo](https://raw.githubusercontent.com/microsoft/localizedStringKit/master/logo.png)\n\nLocalizedStringKit is a tool that lets you write English strings directly into your source code and generate the required .strings files later. No more manually managing string keys or remembering to add them to the strings file later. All you do is change: \n\n```swift\nlabel.text = NSLocalizedString(\"TERMS_SCREEN_MAIN_HEADER\", \"Comment here...\")\n```\n\ninto:\n\n```swift\nlabel.text = Localized(\"Terms and Conditions\", \"Comment here...\")\n```\n\nAnd you are good to go. \n\n## Getting started\n\n### Application Library\n\nThe app side of the tool is powered by the LocalizedStringKit library.\n\nThe recommended way of consuming this library is via [Carthage](https://github.com/Carthage/Carthage). The line to add to your `Cartfile` is: `github \"Microsoft/localizedstringkit\"`\n\nFor any issues, refer to the Carthage documentation.\n\n### Strings bundle\n\nThe app and the library need to be able to access the strings bundle(s). To do this we are going to do some basic setup:\n\n#### Primary Bundle\n\n1. Create a folder in your app project somewhere named `LocalizedStringKit`.\n2. Inside that folder, create a new folder named `LocalizedStringKit.bundle` (this will turn it into a bundle).\n3. Add this bundle to your project in Xcode\n4. Ensure that this bundle is copied to your main app bundle (even if you are going to be using it in a framework).\n\nThe disk structure will now look something like:\n\n```\nProjectName/\n\u251c\u2500\u2500 LocalizedStringKit/\n|   \u251c\u2500\u2500 LocalizedStringKit.bundle/\n```\n\n#### Secondary Bundle(s): bundleNames\n\nTo leverage the bundleName segmentation of strings in multiple bundles, you'll need to create these bundles as well.\n\n1. Navigate to the first `LocalizedStringKit` folder that was created in the Primary set up.\n2. Inside that folder, create a new folder named `<bundleName>.bundle` (this will turn it into a bundle). Make sure to replace `bundleName` with the case sensitive bundleName you will use in your source.\n3. Add this bundle to your project in Xcode\n4. Ensure that this bundle is copied to your main app bundle (even if you are going to be using it in a framework).\n\n### Creating some new strings\n\nIn your source code, add some code like:\n\n```swift\nlabel.text = Localized(\"My new string\", \"A comment\")\n```\n\nRemember to `import LocalizedStringKit` in the file too.\n\n### Generate your strings\n\nNow everything is in place to generate the `.strings` files. For this, you'll need the tool we use to generate the strings files. It is a Python tool and can be installed by running `pip install localizedstringkit`.\n\nOnce the tool is installed, you just need to run `localizedstringkit -h` and it will show you how to call it. Here's an example:\n\n```bash\nlocalizedstringkit \\\n--path /path/to/my/project/root \\\n--localized-string-kit-path /path/to/my/project/root/LocalizedStringKit\n```\n\nThis will scan `/path/to/my/project/root/` for all Swift and Objective-C files, extract any calls to `Localized` and generate the `en.lproj/LocalizedStringKit.strings` file. It will also generate a `source_strings.m` file as an intermediate step. This file is kept around as it allows the `localizedstringkit --check` command to be run quickly. You can add it to your `.gitignore` if preferred.\n\nAnd that's it. You are now up and running with LocalizedStringKit.\n\n_Note: Remember that if you use Carthage for installation, you'll need to add `--exclude Carthage` (or whatever your path is) to the command to avoid the library itself being flagged._\n\n## FAQ\n\n### How can I make this tool faster?\nWe know that this tool is a little slow. Unfortunately there's little we can do to speed it up. Instead, what we have developed is a `--check` flag which can be used. If `source_strings.m` exists in the repo, it will compare the state of the repo to that file, and return a non-zero exit code if there are differences. If that file does not exist, the check flag will always return a non-zero exit code.\n\n### Can this be consumed as a library?\nYes, absolutely. Just `import localizedstringkit`.\n\n### How do I migrate existing strings?\nThere is no built in method to migrate existing strings, but it's relatively straightforward to do so. Follow the setup steps above first. Then convert all `NSLocalizedString` calls to `Localized` calls, replacing your manual key with the English string. Then run the generate script mentioned above. You'll then need to move your translations through a similar process.\n\n### How are collisions handled?\nIf you have two strings that are identical then they'll be \"merged\". By that, they'll share the same key, but the comments will be appended. The result will look something like this in the LocalizedStringKit.strings file:\n\n```\n/* Text on button which when tapped will send an email message to a user\n   Text on button which when tapped will send a message to the support team */\n\"1432f32780bbd9cde496343b060fd75d\" = \"Send Message\";\n```\n\nHowever, there will be cases where you don't want this to happen. For example, you may have the word `Schedule` appear as a heading for a screen which show's a users daily schedule, but is also a button which you can press to schedule a meeting. In one case the word is a noun and the other a verb. These will often be different words in other languages, so you want to ensure that they get unique translations. For this, you can use key extensions. For example:\n\n```swift\n// Heading\ntitle.text = LocalizedWithKeyExtension(\"Schedule\", \"Title for a screen which shows the users daily schedule\", \"Noun\")\n\n// Button\nbutton.text = LocalizedWithKeyExtension(\"Schedule\", \"Text for a button which will schedule the meeting currently displayed on screen.\", \"Verb\")\n```\n\nIn this case the English string and the extension (in this case `Verb` or `Noun`) will be concatenated before hashing to generate the key, resulting in these two cases having different keys. The key extension can be any string you like.\n\n### Why is my app bigger after doing this?\n\nBy default, `.strings` files are in the old OpenStep plist format. When you use the standard functionality through Xcode, it automatically converts these to binary plists on build. With the custom bundle of this process, that no longer happens automatically. However, to fix it, it is relatively straightforward. Simply add a new run script phase to your main apps build phases, and add the following line to it:\n\n```bash\nfind \"${TARGET_BUILD_DIR}/${CONTENTS_FOLDER_PATH}/LocalizedStringKit.bundle\" -name \"LocalizedStringKit.strings\" -exec plutil -convert binary1 {} \\;\n```\n\nOn build, the files in your binary will now be compressed. \n\n### Is this available through Swift Package Manager?\nYes, it is listed on the Swift Package Index [here](https://swiftpackageindex.com/microsoft/LocalizedStringKit)\n\n\n# Contributing\n\nThis project welcomes contributions and suggestions.  Most contributions require you to agree to a\nContributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us\nthe rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.\n\nWhen you submit a pull request, a CLA bot will automatically determine whether you need to provide\na CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions\nprovided by the bot. You will only need to do this once across all repos using our CLA.\n\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).\nFor more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or\ncontact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Generate .strings files directly from your code",
    "version": "0.2.6",
    "project_urls": {
        "Homepage": "https://github.com/microsoft/LocalizedStringKit",
        "Repository": "https://github.com/microsoft/LocalizedStringKit"
    },
    "split_keywords": [
        "localization",
        "strings",
        "generation"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "274f87c1fa63924ad454a9bfdcb975944af8f43451f23d5a5595fbab09af9b9c",
                "md5": "cccebbd35c0359e7d72bd1f50302abd2",
                "sha256": "b3bbe9b5cb46e765e08d9795280da8ed478e34e9be18349c6b1ddb7378235abb"
            },
            "downloads": -1,
            "filename": "localizedstringkit-0.2.6-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "cccebbd35c0359e7d72bd1f50302abd2",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8,<4.0",
            "size": 13940,
            "upload_time": "2023-08-10T08:16:50",
            "upload_time_iso_8601": "2023-08-10T08:16:50.135970Z",
            "url": "https://files.pythonhosted.org/packages/27/4f/87c1fa63924ad454a9bfdcb975944af8f43451f23d5a5595fbab09af9b9c/localizedstringkit-0.2.6-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fa99cc7b83274914e099bfb7bbb63534017bb9b6f1d0c572e578f6940f965d10",
                "md5": "229bf9ed2b9581f5511af781aa99c099",
                "sha256": "7ee1e393344207d7f9c467785ec0e5fd70ea5e5c72b4e8f6c80fca04607e99ca"
            },
            "downloads": -1,
            "filename": "localizedstringkit-0.2.6.tar.gz",
            "has_sig": false,
            "md5_digest": "229bf9ed2b9581f5511af781aa99c099",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8,<4.0",
            "size": 14717,
            "upload_time": "2023-08-10T08:16:47",
            "upload_time_iso_8601": "2023-08-10T08:16:47.343420Z",
            "url": "https://files.pythonhosted.org/packages/fa/99/cc7b83274914e099bfb7bbb63534017bb9b6f1d0c572e578f6940f965d10/localizedstringkit-0.2.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-10 08:16:47",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "microsoft",
    "github_project": "LocalizedStringKit",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "localizedstringkit"
}
        
Elapsed time: 0.09823s