Skip to content

Commit

Permalink
Merge branch 'pu/cf/rt/247284p1' into 'main'
Browse files Browse the repository at this point in the history
translation(Tinebase): add translation for key bindings

See merge request tine20/tine20!6602
  • Loading branch information
Christian Feitl committed Feb 18, 2025
2 parents 4dd93c1 + 38d602d commit 287ea14
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tine20/Tinebase/js/widgets/grid/GridPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -2521,15 +2521,15 @@ Ext.extend(Tine.widgets.grid.GridPanel, Ext.Panel, {

getKeyBindingData() {
const data = [
'A: select all visible rows',
'C: copy record',
'E: edit record',
'N: new record',
'F: find',
'ESC: focus grid',
'R: reload grid',
'A: ' + i18n._('select all visible rows'),
'C: ' + i18n._('copy record'),
'E: ' + i18n._('edit record'),
'N: ' + i18n._('new record'),
'F: ' + i18n._('find'),
'ESC: ' + i18n._('focus grid'),
'R: ' + i18n._('reload grid')
];
return data.map((item) => i18n._(item));
return data
},

/**
Expand Down
21 changes: 21 additions & 0 deletions tine20/Tinebase/translations/de.po
Original file line number Diff line number Diff line change
Expand Up @@ -3407,6 +3407,27 @@ msgstr "Zuletzt geändert von"
msgid "Grid Panel Key Bindings"
msgstr "Tastenkürzel Listenansicht"

msgid "select all visible rows"
msgstr "Alle sichtbaren Zeilen auswählen"

msgid "copy record"
msgstr "Datensatz kopieren"

msgid "edit record"
msgstr "Datensatz bearbeiten"

msgid "new record"
msgstr "Neuen Datensatz erstellen"

msgid "find"
msgstr "Suchen"

msgid "focus grid"
msgstr "Grid fokussieren"

msgid "reload grid"
msgstr "Grid aktualisieren"

#, python-brace-format
msgid "Moving {0}"
msgstr "Verschiebe {0}"
Expand Down

0 comments on commit 287ea14

Please sign in to comment.