- Notifications
You must be signed in to change notification settings - Fork79
cobeisfresh/localizable-sheet-script
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
A Google Sheets script that will take a sheet in a specific format and return iOS and Android localization files.
For Android it creates an XML resources file with all of the strings. For iOS it creates a Localizable enum with String constants, and a .strings file.
- Open your sheet.
- Go toTools -> Script Editor
- Copy
Code.js, make your edits if needed, andSave.
- Open your sheet.
- Go toCustom Export and select youriOS orAndroid.
The script expects the sheet to be formatted in a specific way.
| ... arbitrary number of columns before iOS keys | Identifier iOS | Identifier Android | English text | German text | ... |
|---|---|---|---|---|---|
| place whatever you want in here | login_button_title | login_button_title | Login | Einloggen | |
| ... | ... | ... | ... |
The texts in bold cannot be changed! The script depends on them to know which identifier is which. The other texts don't matter.
Thefirst row mustalways contain headers, and not the actual strings.
The number of languages depends on theNUMBER_OF_LANGUAGES variable in the script, and new languages can be added by adding a new column on the right and incrementing that number in the script.
The position of the first (iOS) column that is relevant to the script is changed with theFIRST_COLUMN_POSITION variable in the script. By default it's1 (the first column).
NUMBER_OF_LANGUAGES: The number of language columns to use.FIRST_COLUMN_POSITION: The position of the iOS identifiers (the first column relevant to the script). Starting from 1.IOS_INCLUDES_LOCALIZABLE_ENUM: Whether or not to create anLocalizableenumcontaining all of the keys asstatic letconstants.
The exported files are the standard format (strings.xml orLocalizable.strings) for the specific platforms. iOS also includes aLocalizableenum which contains all of the keys asstatic let properties for code-completion and less typos.
Created by COBEhttp://cobeisfresh.com/Copyright 2017 COBE
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
About
A Google Sheets script that will take a sheet in a specific format and return iOS and Android localization files.
Topics
Resources
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
Packages0
Contributors3
Uh oh!
There was an error while loading.Please reload this page.