-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #232 from creative-commoners/pulls/3/translatable
ENH Update translations
- Loading branch information
Showing
36 changed files
with
214 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
pull_request: | ||
workflow_dispatch: | ||
# Every Monday at 12:20pm UTC | ||
schedule: | ||
- cron: '20 12 * * 1' | ||
|
||
jobs: | ||
ci: | ||
name: CI | ||
# Only run cron on the colymba account | ||
if: (github.event_name == 'schedule' && github.repository_owner == 'colymba') || (github.event_name != 'schedule') | ||
uses: silverstripe/gha-ci/.github/workflows/ci.yml@v1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: Keepalive | ||
|
||
on: | ||
workflow_dispatch: | ||
# The 4th of every month at 10:50am UTC | ||
schedule: | ||
- cron: '50 10 4 * *' | ||
|
||
jobs: | ||
keepalive: | ||
name: Keepalive | ||
# Only run cron on the colymba account | ||
if: (github.event_name == 'schedule' && github.repository_owner == 'colymba') || (github.event_name != 'schedule') | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Keepalive | ||
uses: silverstripe/gha-keepalive@v1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,16 @@ | ||
[main] | ||
host = https://www.transifex.com | ||
|
||
[gridfieldbulkeditingtools.yml] | ||
[o:silverstripe:p:silverstripe-gridfield-bulk-editing-tools:r:master] | ||
file_filter = lang/<lang>.yml | ||
minimum_perc = 0 | ||
source_file = lang/en.yml | ||
source_lang = en | ||
type = YML | ||
type = YML | ||
|
||
[gridfieldbulkeditingtools.js] | ||
file_filter = client/src/lang/<lang>.json | ||
minimum_perc = 0 | ||
source_file = client/src/lang/en.json | ||
[o:silverstripe:p:silverstripe-gridfield-bulk-editing-tools:r:master-js] | ||
file_filter = client/lang/src/<lang>.json | ||
source_file = client/lang/src/en.json | ||
source_lang = en | ||
type = JSON | ||
type = KEYVALUEJSON | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') { | ||
if(typeof(console) != 'undefined') console.error('Class ss.i18n not defined'); | ||
// This file was generated by silverstripe/tx-translator from client/lang/src/en.json. | ||
// See https://github.com/silverstripe/silverstripe-tx-translator for details | ||
if (typeof(ss) === 'undefined' || typeof(ss.i18n) === 'undefined') { | ||
if (typeof(console) !== 'undefined') { // eslint-disable-line no-console | ||
console.error('Class ss.i18n not defined'); // eslint-disable-line no-console | ||
} | ||
} else { | ||
ss.i18n.addDictionary('en', { | ||
"GRIDFIELD_BULK_UPLOAD.PROGRESS_INFO": "Uploading %s file(s). %s done. %s error(s).", | ||
"GRIDFIELD_BULK_MANAGER.BULKACTION_EMPTY_SELECT": "You must select at least one record.", | ||
"GRIDFIELD_BULK_MANAGER.CONFIRM_DESTRUCTIVE_ACTION": "The data will be lost permanently. Do you want to continue?" | ||
"GRIDFIELD_BULK_UPLOAD.PROGRESS_INFO": "Uploading %s file(s). %s done. %s error(s).", | ||
"GRIDFIELD_BULK_MANAGER.BULKACTION_EMPTY_SELECT": "You must select at least one record.", | ||
"GRIDFIELD_BULK_MANAGER.CONFIRM_DESTRUCTIVE_ACTION": "The data will be lost permanently. Do you want to continue?" | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"GRIDFIELD_BULK_UPLOAD.PROGRESS_INFO": "Uploading %s file(s). %s done. %s error(s).", | ||
"GRIDFIELD_BULK_MANAGER.BULKACTION_EMPTY_SELECT": "You must select at least one record.", | ||
"GRIDFIELD_BULK_MANAGER.CONFIRM_DESTRUCTIVE_ACTION": "The data will be lost permanently. Do you want to continue?" | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,18 @@ | ||
cs: | ||
GRIDFIELD_BULK_UPLOAD: null | ||
GRIDFIELD_BULK_MANAGER: | ||
COMPONENT_TITLE: '' | ||
EDIT_SELECT_LABEL: Upravit | ||
UNLINK_SELECT_LABEL: Odstranit vazbu | ||
UNLINK_SELECT_LABEL: 'Odstranit vazbu' | ||
DELETE_SELECT_LABEL: Smazat | ||
ACTION_BTN_LABEL: Provést | ||
SELECT_ALL_LABEL: Vybrat vše | ||
SELECT_ALL_LABEL: 'Vybrat vše' | ||
PUBLISH_SELECT_LABEL: '' | ||
UNPUBLISH_SELECT_LABEL: '' | ||
ARCHIVE_SELECT_LABEL: '' | ||
GRIDFIELD_BULKMANAGER_EDIT_HANDLER: | ||
SAVE_BTN_LABEL: Uložit vše | ||
HEADER_TEXT: '' | ||
TOGGLE_ALL_LINK: '' | ||
SAVE_BTN_LABEL: 'Uložit vše' | ||
CANCEL_BTN_LABEL: Storno | ||
SAVE_RESULT_TEXT: '' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
de: | ||
GRIDFIELD_BULK_UPLOAD: null | ||
GRIDFIELD_BULK_MANAGER: | ||
COMPONENT_TITLE: Einen oder mehrere Einträge gleichzeitig bearbeiten | ||
COMPONENT_TITLE: 'Einen oder mehrere Einträge gleichzeitig bearbeiten' | ||
EDIT_SELECT_LABEL: Bearbeiten | ||
UNLINK_SELECT_LABEL: Verbindung entfernen | ||
UNLINK_SELECT_LABEL: 'Verbindung entfernen' | ||
DELETE_SELECT_LABEL: Löschen | ||
ACTION_BTN_LABEL: Los | ||
SELECT_ALL_LABEL: Alle auswählen | ||
SELECT_ALL_LABEL: 'Alle auswählen' | ||
PUBLISH_SELECT_LABEL: '' | ||
UNPUBLISH_SELECT_LABEL: '' | ||
ARCHIVE_SELECT_LABEL: '' | ||
GRIDFIELD_BULKMANAGER_EDIT_HANDLER: | ||
HEADER_TEXT: Bearbeite {count} {class} | ||
TOGGLE_ALL_LINK: Alle Anzeigen/Verbergen | ||
SAVE_BTN_LABEL: Alle speichern | ||
HEADER_TEXT: 'Bearbeite {count} {class}' | ||
TOGGLE_ALL_LINK: 'Alle Anzeigen/Verbergen' | ||
SAVE_BTN_LABEL: 'Alle speichern' | ||
CANCEL_BTN_LABEL: Abbrechen | ||
SAVE_RESULT_TEXT: '{count} {class} erfolgreich gespeichert.' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
en: | ||
GRIDFIELD_BULK_UPLOAD: | ||
GRIDFIELD_BULK_MANAGER: | ||
COMPONENT_TITLE: Modify one or more entry at a time. | ||
EDIT_SELECT_LABEL: Edit | ||
UNLINK_SELECT_LABEL: Unlink | ||
DELETE_SELECT_LABEL: Delete | ||
ACTION_BTN_LABEL: Go | ||
SELECT_ALL_LABEL: Select all | ||
PUBLISH_SELECT_LABEL: Publish | ||
UNPUBLISH_SELECT_LABEL: UnPublish | ||
ARCHIVE_SELECT_LABEL: Archive | ||
GRIDFIELD_BULKMANAGER_EDIT_HANDLER: | ||
HEADER_TEXT: Editing {count} {class} | ||
TOGGLE_ALL_LINK: Show/Hide all | ||
SAVE_BTN_LABEL: Save all | ||
CANCEL_BTN_LABEL: Cancel | ||
SAVE_RESULT_TEXT: '{count} {class} saved successfully.' | ||
en: | ||
GRIDFIELD_BULKMANAGER_EDIT_HANDLER: | ||
CANCEL_BTN_LABEL: Cancel | ||
HEADER_TEXT: 'Editing {count} {class}' | ||
SAVE_BTN_LABEL: 'Save all' | ||
SAVE_RESULT_TEXT: '{count} {class} saved successfully.' | ||
TOGGLE_ALL_LINK: 'Show/Hide all' | ||
GRIDFIELD_BULK_MANAGER: | ||
ACTION_BTN_LABEL: Go | ||
ARCHIVE_SELECT_LABEL: Archive | ||
COMPONENT_TITLE: 'Modify one or more entry at a time.' | ||
DELETE_SELECT_LABEL: Delete | ||
EDIT_SELECT_LABEL: Edit | ||
PUBLISH_SELECT_LABEL: Publish | ||
SELECT_ALL_LABEL: 'Select all' | ||
UNLINK_SELECT_LABEL: Unlink | ||
UNPUBLISH_SELECT_LABEL: UnPublish | ||
GRIDFIELD_BULK_UPLOAD: null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,18 @@ | ||
fi: | ||
GRIDFIELD_BULK_UPLOAD: null | ||
GRIDFIELD_BULK_MANAGER: | ||
COMPONENT_TITLE: Muokkaa yhtä tai useampaa merkintää kerrallaan. | ||
COMPONENT_TITLE: 'Muokkaa yhtä tai useampaa merkintää kerrallaan.' | ||
EDIT_SELECT_LABEL: Muokkaa | ||
UNLINK_SELECT_LABEL: Erota | ||
DELETE_SELECT_LABEL: Poista | ||
ACTION_BTN_LABEL: Suorita | ||
SELECT_ALL_LABEL: Valitse kaikki | ||
SELECT_ALL_LABEL: 'Valitse kaikki' | ||
PUBLISH_SELECT_LABEL: '' | ||
UNPUBLISH_SELECT_LABEL: '' | ||
ARCHIVE_SELECT_LABEL: '' | ||
GRIDFIELD_BULKMANAGER_EDIT_HANDLER: | ||
HEADER_TEXT: Muokkaa {count} {class} | ||
TOGGLE_ALL_LINK: Näytä/Piilota kaikki | ||
SAVE_BTN_LABEL: Tallenna kaikki | ||
HEADER_TEXT: 'Muokkaa {count} {class}' | ||
TOGGLE_ALL_LINK: 'Näytä/Piilota kaikki' | ||
SAVE_BTN_LABEL: 'Tallenna kaikki' | ||
CANCEL_BTN_LABEL: Peruuta | ||
SAVE_RESULT_TEXT: '' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
fr: | ||
GRIDFIELD_BULK_UPLOAD: null | ||
GRIDFIELD_BULK_MANAGER: | ||
COMPONENT_TITLE: Modifier une ou plusieurs entrée à la fois. | ||
COMPONENT_TITLE: 'Modifier une ou plusieurs entrée à la fois.' | ||
EDIT_SELECT_LABEL: Editer | ||
UNLINK_SELECT_LABEL: Dissocier | ||
DELETE_SELECT_LABEL: Supprimer | ||
ACTION_BTN_LABEL: Go | ||
SELECT_ALL_LABEL: Sélectionner tout | ||
SELECT_ALL_LABEL: 'Sélectionner tout' | ||
PUBLISH_SELECT_LABEL: '' | ||
UNPUBLISH_SELECT_LABEL: '' | ||
ARCHIVE_SELECT_LABEL: '' | ||
GRIDFIELD_BULKMANAGER_EDIT_HANDLER: | ||
HEADER_TEXT: Edition de {count} {class} | ||
TOGGLE_ALL_LINK: Afficher/Masquer tout | ||
SAVE_BTN_LABEL: Sauvegarder tout | ||
HEADER_TEXT: 'Edition de {count} {class}' | ||
TOGGLE_ALL_LINK: 'Afficher/Masquer tout' | ||
SAVE_BTN_LABEL: 'Sauvegarder tout' | ||
CANCEL_BTN_LABEL: Annuler | ||
SAVE_RESULT_TEXT: '{count} {class} sauvegardés avec succès.' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
it: | ||
GRIDFIELD_BULK_UPLOAD: null | ||
GRIDFIELD_BULK_MANAGER: | ||
COMPONENT_TITLE: Modifica una o più voci alla volta. | ||
COMPONENT_TITLE: 'Modifica una o più voci alla volta.' | ||
EDIT_SELECT_LABEL: Modifica | ||
UNLINK_SELECT_LABEL: Scollega | ||
DELETE_SELECT_LABEL: Elimina | ||
ACTION_BTN_LABEL: Vai | ||
SELECT_ALL_LABEL: Seleziona tutto | ||
SELECT_ALL_LABEL: 'Seleziona tutto' | ||
PUBLISH_SELECT_LABEL: '' | ||
UNPUBLISH_SELECT_LABEL: '' | ||
ARCHIVE_SELECT_LABEL: '' | ||
GRIDFIELD_BULKMANAGER_EDIT_HANDLER: | ||
HEADER_TEXT: Modifica di {count} {class} | ||
TOGGLE_ALL_LINK: Mostra/Nascondi tutto | ||
SAVE_BTN_LABEL: Salva tutto | ||
HEADER_TEXT: 'Modifica di {count} {class}' | ||
TOGGLE_ALL_LINK: 'Mostra/Nascondi tutto' | ||
SAVE_BTN_LABEL: 'Salva tutto' | ||
CANCEL_BTN_LABEL: Annulla | ||
SAVE_RESULT_TEXT: '{count} {class} salvati con successo.' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,18 @@ | ||
nl: | ||
GRIDFIELD_BULK_UPLOAD: null | ||
GRIDFIELD_BULK_MANAGER: | ||
COMPONENT_TITLE: Bewerk één of meerdere items tegelijkertijd | ||
COMPONENT_TITLE: 'Bewerk één of meerdere items tegelijkertijd' | ||
EDIT_SELECT_LABEL: Bewerken | ||
UNLINK_SELECT_LABEL: Loskoppelen | ||
DELETE_SELECT_LABEL: Verwijderen | ||
ACTION_BTN_LABEL: Gaan | ||
SELECT_ALL_LABEL: Selecteer alles | ||
SELECT_ALL_LABEL: 'Selecteer alles' | ||
PUBLISH_SELECT_LABEL: '' | ||
UNPUBLISH_SELECT_LABEL: '' | ||
ARCHIVE_SELECT_LABEL: '' | ||
GRIDFIELD_BULKMANAGER_EDIT_HANDLER: | ||
HEADER_TEXT: '{count} {class} aan het bewerken' | ||
TOGGLE_ALL_LINK: Toon/verberg alle | ||
SAVE_BTN_LABEL: Alles opslaan | ||
TOGGLE_ALL_LINK: 'Toon/verberg alle' | ||
SAVE_BTN_LABEL: 'Alles opslaan' | ||
CANCEL_BTN_LABEL: Annuleren | ||
SAVE_RESULT_TEXT: '' |
Oops, something went wrong.