Migrated (hopefully) all translations to PO/Gettext (references #161)

This commit is contained in:
Bernd Bestel
2019-05-01 20:19:18 +02:00
parent 40b5afe926
commit 9b2dba2397
372 changed files with 23242 additions and 16905 deletions

View File

@@ -4,7 +4,7 @@
'columnDefs': [
{ 'orderable': false, 'targets': 0 }
],
'language': JSON.parse(L('datatables_localization')),
'language': JSON.parse(__t('datatables_localization')),
'scrollY': false,
'colReorder': true,
'stateSave': true,
@@ -38,14 +38,14 @@ $(document).on('click', '.task-category-delete-button', function (e)
var objectId = $(e.currentTarget).attr('data-category-id');
bootbox.confirm({
message: L('Are you sure to delete task category "#1"?', objectName),
message: __t('Are you sure to delete task category "%s"?', objectName),
buttons: {
confirm: {
label: L('Yes'),
label: __t('Yes'),
className: 'btn-success'
},
cancel: {
label: L('No'),
label: __t('No'),
className: 'btn-danger'
}
},