From 89ae32c626916a7797921ff18254bc707b4d4d43 Mon Sep 17 00:00:00 2001 From: chrisgarrity Date: Thu, 20 Jul 2017 15:59:38 -0400 Subject: [PATCH] Experimental scratch-gui translations Initial version with experimental translations --- .tx/config | 8 ++++++++ gui/en.json | 18 ++++++++++++++++++ gui/es.json | 18 ++++++++++++++++++ gui/fr.json | 18 ++++++++++++++++++ package.json | 19 +++++++++++++++++++ 5 files changed, 81 insertions(+) create mode 100644 .tx/config create mode 100644 gui/en.json create mode 100644 gui/es.json create mode 100644 gui/fr.json create mode 100644 package.json diff --git a/.tx/config b/.tx/config new file mode 100644 index 00000000..b3292630 --- /dev/null +++ b/.tx/config @@ -0,0 +1,8 @@ +[main] +host = https://www.transifex.com + +[experimental-scratch.scratch-gui] +file_filter = gui/.json +source_file = gui/en.json +source_lang = en +type = CHROME \ No newline at end of file diff --git a/gui/en.json b/gui/en.json new file mode 100644 index 00000000..a1083fa5 --- /dev/null +++ b/gui/en.json @@ -0,0 +1,18 @@ +{ + "action.addSound": { + "message": "Add Sound", + "description": "Button to add a sound in the editor tab" + }, + "action.addCostume": { + "message": "Add Costume", + "description": "Button to add a costume in the editor tab" + }, + "action.addBackdrop": { + "message": "Add Backdrop", + "description": "Button to add a backdrop in the editor tab" + }, + "action.recordSound": { + "message": "Record Sound", + "description": "Button to record a sound in the editor tab" + } +} \ No newline at end of file diff --git a/gui/es.json b/gui/es.json new file mode 100644 index 00000000..a1083fa5 --- /dev/null +++ b/gui/es.json @@ -0,0 +1,18 @@ +{ + "action.addSound": { + "message": "Add Sound", + "description": "Button to add a sound in the editor tab" + }, + "action.addCostume": { + "message": "Add Costume", + "description": "Button to add a costume in the editor tab" + }, + "action.addBackdrop": { + "message": "Add Backdrop", + "description": "Button to add a backdrop in the editor tab" + }, + "action.recordSound": { + "message": "Record Sound", + "description": "Button to record a sound in the editor tab" + } +} \ No newline at end of file diff --git a/gui/fr.json b/gui/fr.json new file mode 100644 index 00000000..4aaea3ab --- /dev/null +++ b/gui/fr.json @@ -0,0 +1,18 @@ +{ + "action.addSound": { + "message": "Ajouter Son", + "description": "Button to add a sound in the editor tab" + }, + "action.addCostume": { + "message": "Ajouter Costume", + "description": "Button to add a costume in the editor tab" + }, + "action.addBackdrop": { + "message": "Ajouter Arrière-plan", + "description": "Button to add a backdrop in the editor tab" + }, + "action.recordSound": { + "message": "Enregistrement du Son", + "description": "Button to record a sound in the editor tab" + } +} \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 00000000..1ea0d00d --- /dev/null +++ b/package.json @@ -0,0 +1,19 @@ +{ + "name": "scratch-editor-translations", + "version": "0.5.0", + "description": "Translation file for the Scratch 3.0 Editor", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/LLK/scratch-editor-translations.git" + }, + "author": "Massachusetts Institute of Technology", + "license": "BSD-3-Clause", + "bugs": { + "url": "https://github.com/LLK/scratch-editor-translations/issues" + }, + "homepage": "https://github.com/LLK/scratch-editor-translations#readme" +}