Tools for dealing with the .strings resources for iOS and macOS
Перейти к файлу
Dale 352f51b475
Merge pull request #11 from fla-t/flat/support-for-uneven-whitespace
Support for uneven whitespace around '=' sign for entries
2024-04-26 10:25:04 +01:00
.azure Drop Python 3.8 and 3.9 support 2024-04-23 07:35:47 +01:00
.vscode
dotstrings Merge branch 'master' into flat/support-for-uneven-whitespace 2024-04-23 16:47:13 +05:00
tests fix(formatting): Add a line between import and class declaration 2024-04-23 17:32:27 +05:00
.gitignore
CODE_OF_CONDUCT.md
LICENSE
README.md
SECURITY.md
poetry.lock Bump and pin dev dependencies 2024-04-23 07:38:27 +01:00
pylintrc
pyproject.toml Bump and pin dev dependencies 2024-04-23 07:38:27 +01:00
stylecheck.sh
test.sh

README.md

dotstrings

This is a Python toolkit for interacting with the localization files for iOS and macOS.

Examples

Read in a .strings file and print the entries:

import dotstrings

entries = dotstrings.load("/path/to/file.strings")

for entry in entries:
    print("Key: " + entry.key)
    print("Value: " + entry.value)
    print("Comments: " + "\n".join(entry.comments))

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. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.