All Projects → cobeisfresh → Localizable Sheet Script

cobeisfresh / Localizable Sheet Script

A Google Sheets script that will take a sheet in a specific format and return iOS and Android localization files.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Localizable Sheet Script

Firetable
Excel/Google Sheets like UI for Firebase/Firestore. No more admin portals!
Stars: ✭ 1,115 (+465.99%)
Mutual labels:  google-sheets
Node Google Spreadsheet
Google Sheets API (v4) wrapper for Node.js
Stars: ✭ 1,369 (+594.92%)
Mutual labels:  google-sheets
Cryptocurrency Portfolio
Google Sheets automatic creation with Google Apps Script (GAS) for managing a cryptocurrency tracking spreadsheet with multi exchanges
Stars: ✭ 134 (-31.98%)
Mutual labels:  google-sheets
Magento2 Import Export Sample Files
Default Magento 2 CE import / export CSV files & sample files for Firebear Improved Import / Export extension
Stars: ✭ 68 (-65.48%)
Mutual labels:  google-sheets
Google Sheet S3
Google Apps Script that publishes a Google Sheet to Amazon S3 as a JSON file. Auto-updates on edit & maintains data types. Creates an array of objects keyed by column header.
Stars: ✭ 81 (-58.88%)
Mutual labels:  google-sheets
Googlesheets
best code I've tested in Google Sheets
Stars: ✭ 109 (-44.67%)
Mutual labels:  google-sheets
Expenses
💰Expense tracker using Google Sheets 📉 as a storage written in React
Stars: ✭ 1,105 (+460.91%)
Mutual labels:  google-sheets
Auto Youtube Subscription Playlist 2
Script automatically adds videos to playlists from Youtube channels and/or subscriptions (Youtube Collections alternative).
Stars: ✭ 136 (-30.96%)
Mutual labels:  google-sheets
Importjsonapi
Use JSONPath to selectively extract data from any JSON or GraphQL API directly into Google Sheets.
Stars: ✭ 90 (-54.31%)
Mutual labels:  google-sheets
Gspread Dataframe
Read/write Google spreadsheets using pandas DataFrames
Stars: ✭ 118 (-40.1%)
Mutual labels:  google-sheets
Luigi Warehouse
A luigi powered analytics / warehouse stack
Stars: ✭ 72 (-63.45%)
Mutual labels:  google-sheets
Leaflet Maps With Google Sheets
Customize Leaflet maps with a linked Google Sheets template and GeoJSON data on GitHub
Stars: ✭ 77 (-60.91%)
Mutual labels:  google-sheets
Df2gspread
Manage Google Spreadsheets in Pandas DataFrame with Python
Stars: ✭ 114 (-42.13%)
Mutual labels:  google-sheets
Google rat
A Remote Access Tool using Google Apps Script as the proxy for command and control.
Stars: ✭ 64 (-67.51%)
Mutual labels:  google-sheets
Gesi
Google Sheets ESI Add-on
Stars: ✭ 135 (-31.47%)
Mutual labels:  google-sheets
Pygsheets
Google Sheets Python API v4
Stars: ✭ 1,116 (+466.5%)
Mutual labels:  google-sheets
Importjson
Import JSON into Google Sheets, this library adds various ImportJSON functions to your spreadsheet
Stars: ✭ 1,705 (+765.48%)
Mutual labels:  google-sheets
Exportsheetdata
Add-on for Google Sheets that allows sheets to be exported as JSON or XML.
Stars: ✭ 170 (-13.71%)
Mutual labels:  google-sheets
Spreadsheetfs
Use Google Sheets as a Filesystem to get Unlimited Free Cloud Storage
Stars: ✭ 137 (-30.46%)
Mutual labels:  google-sheets
Robinhood Google Sheets
Robinhood Custom Functions for Google Sheets 📈
Stars: ✭ 117 (-40.61%)
Mutual labels:  google-sheets

localizable-sheet-script

A Google Sheets script that will take a sheet in a specific format and return iOS and Android localization files.

What it does

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.

Installing

  1. Open your sheet.
  2. Go to Tools -> Script Editor
  3. Copy Code.js, make your edits if needed, and Save.

Usage

  1. Open your sheet.
  2. Go to Custom Export and select your iOS or Android.

Sheet format

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.

The first row must always contain headers, and not the actual strings.

The number of languages depends on the NUMBER_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 the FIRST_COLUMN_POSITION variable in the script. By default it's 1 (the first column).

Configuring

  • 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 an Localizable enum containing all of the keys as static let constants.

Exported files

The exported files are the standard format (strings.xml or Localizable.strings) for the specific platforms. iOS also includes a Localizable enum which contains all of the keys as static let properties for code-completion and less typos. 

License: MIT

Created by COBE http://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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].