The feature(s) described in this page are experimental and might cause issues.Amanuens supports plain text files with
.txt extension.
Content Format
File content
must be encoded in UTF-8, with or without encoding.
- Each line in the file, terminated by
\r\n or \n, is treated as an individual string (the last line may or may not be terminated by \r\n or \n). - Empty lines are attached to their non-empty neighbors (this allows us to correctly preserve them even if they are added/removed by translators).
- Unix-style new lines (
\n, and not \r\n) are preserved throughout the file and across versions, but as soon as a single \r\n sequence is found, the entire file is converted to \r\n.
Here is an example.
Welcome! This is the main page of your new wiki, created for you by the system.
You should edit this page, using the Edit button in the top-right corner of the screen. You can also create a new page, using the Create a new Page link in the sidebar on the left.
If you need help, please visit our website or our forum.
Drop us a line at support@amanuens.com if you need any help.
Amanuens would extract 4 strings from the file above, as follows.
Welcome! This is the main page of your new wiki, created for you by the system.\r\nYou should edit this page, using the Edit button in the top-right corner of the screen. You can also create a new page, using the Create a new Page link in the sidebar on the left.If you need help, please visit our website or our forum.\r\nDrop us a line at support@amanuens.com if you need any help.
Please note how the additional
\r\n combination is preserved.
File Naming Conventions
Amanuens requires you to use one of two possible file/folder naming conventions (not to be mixed).
Language Code in Folder Paths
Android/
Market/
en/
description.txt
it_IT/
description.txt
iPhone/
AppStore/
en/
descripion.txt
it_IT/
description.txt
Language Code in File Names
Android/
Market/
description.en.txt
description.it_IT.txt
iPhone/
AppStore/
description.en.txt
description.it_IT.txt