diff options
author | Remko Tronçon <git@el-tramo.be> | 2011-03-11 23:24:27 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2011-03-11 23:24:27 (GMT) |
commit | 137d42c7081fc31deb76446b2f6ef72ae21eeff5 (patch) | |
tree | 8d28f119b37dd248194b252bec34afebe3e2f240 /Documentation | |
parent | 918fdbaa7bc449b02f5cafde6fc6d81c46ad892b (diff) | |
download | swift-137d42c7081fc31deb76446b2f6ef72ae21eeff5.zip swift-137d42c7081fc31deb76446b2f6ef72ae21eeff5.tar.bz2 |
Updated Dutch translation + Added translation docs.
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/TranslatingSwift.txt | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/Documentation/TranslatingSwift.txt b/Documentation/TranslatingSwift.txt new file mode 100644 index 0000000..51144a1 --- /dev/null +++ b/Documentation/TranslatingSwift.txt @@ -0,0 +1,39 @@ +Translating Swift +----------------- +Below, you will find instructions on how to translate Swift. A prerequisite is to +have Qt (with Qt Linguist installed). + + +Starting a new translation +-------------------------- +- Run the following command to generate a clean translation template 'swift.ts': + scons update_translations=1 Swift/Translations/swift.ts +- Rename the new 'swift.ts' file to swift_<LANGUAGE-CODE>.ts, e.g. "swift_nl.ts" + for Dutch +- Open the file in Qt Linguist, and translate the phrases. + For more information, see http://doc.qt.nokia.com/latest/linguist-manual.html +- Submit your finished translation file to the Swift development team. + +If you have trouble generating the translation file yourself, you can ask the +Swift development team to provide you with a new translation template for your +language. + + +Updating an existing translation +-------------------------------- +- Run the following command to update an existing translation template: + scons update_translations=1 Swift/Translations/<your-translation-file> + +If you have trouble updating the translation file yourself, you can ask the +Swift development team to provide you with a new translation template for your +language. + + +Testing your translation +------------------------ +- Ensure your translation file is in Swift/Translations/swift_<YOURLANGUAGE>.ts +- Build Swift (for more details, see the building documentation): + scons Swift + This will build translation modules (.qm) for your translation sources, and + put them in the right place. +- Run Swift |