Skip to content

Commit

Permalink
Add translation string for Toast message "Records reordered."
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Oude Rengerink committed Jun 3, 2021
1 parent 7738a0b commit f7f65e6
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 1 deletion.
2 changes: 2 additions & 0 deletions lang/de_DE.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ de_DE:
ADDEXISTING: 'Bestehenden Eintrag hinzufügen'
SEARCH: 'Suche'
SELECTTYPETOCREATE: '(Bitte Typ auswählen)'
GridFieldOrderableRows:
REORDERED: 'Aufzeichnungen neu geordnet.'
2 changes: 2 additions & 0 deletions lang/en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@ en:
SELECTTYPETOCREATE: '(Select type to create)'
Symbiote\GridFieldExtensions\GridFieldConfigurablePaginator:
SHOW: Show
GridFieldOrderableRows:
REORDERED: 'Records reordered.'
2 changes: 2 additions & 0 deletions lang/es_ES.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ es_ES:
ADDEXISTING: 'Agregar existente'
SEARCH: 'Buscar'
SELECTTYPETOCREATE: '(Seleccionar tipo para crear)'
GridFieldOrderableRows:
REORDERED: 'Registros reordenados.'
2 changes: 2 additions & 0 deletions lang/et_EE.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ et_EE:
ADDEXISTING: 'Lisa olemasolev'
SEARCH: Otsi
SELECTTYPETOCREATE: '(Valige lisamiseks tüüp)'
GridFieldOrderableRows:
REORDERED: 'Kirjed järjestati ümber.'
2 changes: 2 additions & 0 deletions lang/fi_FI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ fi_FI:
ADDEXISTING: 'Lisää olemassa oleva'
SEARCH: 'Etsi'
SELECTTYPETOCREATE: 'Valitse lisättävä tyyppi'
GridFieldOrderableRows:
REORDERED: 'Tietueet järjestetty uudelleen.'
2 changes: 2 additions & 0 deletions lang/it_IT.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ it_IT:
ADDEXISTING: 'Aggiungi esistente'
SEARCH: 'Cerca'
SELECTTYPETOCREATE: '(Seleziona tipo per creare)'
GridFieldOrderableRows:
REORDERED: 'Registri riordinati.'
3 changes: 3 additions & 0 deletions lang/nl_NL.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@ nl_NL:
ADDEXISTING: 'Bestaande toevoegen'
SEARCH: 'Zoeken'
SELECTTYPETOCREATE: '(Selecteer type om te creeën)'
GridFieldOrderableRows:
REORDERED: 'Records opnieuw geordend.'

2 changes: 2 additions & 0 deletions lang/ru_RU.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ ru_RU:
ADDEXISTING: 'Добавить существующий'
SEARCH: 'Поиск'
SELECTTYPETOCREATE: '(Выберите тип для создания)'
GridFieldOrderableRows:
REORDERED: 'Записи переупорядочены.'
2 changes: 2 additions & 0 deletions lang/sk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ sk:
ADDEXISTING: Pridať existujúci
SEARCH: Hľadať
SELECTTYPETOCREATE: '(Prosím, vyberte typ)'
GridFieldOrderableRows:
REORDERED: 'Poradie záznamov bolo zmenené.'
2 changes: 1 addition & 1 deletion src/GridFieldOrderableRows.php
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ public function handleReorder($grid, $request)
$this->httpError(400);
}

Controller::curr()->getResponse()->addHeader('X-Status', rawurlencode('Records reordered.'));
Controller::curr()->getResponse()->addHeader('X-Status', rawurlencode(_t('GridFieldOrderableRows.REORDERED', 'Records reordered.')));
return $grid->FieldHolder();
}

Expand Down

0 comments on commit f7f65e6

Please sign in to comment.