Skip to content

Commit da82550

Browse files
committed
Fixed missing language strings in dbsync form.
1 parent 1e24146 commit da82550

File tree

4 files changed

+18
-13
lines changed

4 files changed

+18
-13
lines changed

interface/web/admin/dbsync_list.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
}
9797
}
9898

99-
$app->tpl->setLoop('records',$records_new);
99+
@$app->tpl->setLoop('records',$records_new);
100100

101101
// Language File setzen
102102
$lng_file = "lib/lang/".$_SESSION["s"]["language"]."_".$app->listform->listDef['name']."_list.lng";

interface/web/admin/lib/lang/de_dbsync.lng

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,6 @@ $wb['db_tables_txt'] = 'Tabellen';
1111
$wb['empty_datalog_txt'] = 'Datalog nach Synchronistaion löschen.';
1212
$wb['sync_datalog_external_txt'] = 'Externes Datalog füllen.';
1313
$wb['active_txt'] = 'active';
14+
$wb["btn_save_txt"] = 'Save';
15+
$wb["btn_cancel_txt"] = 'Cancel';
1416
?>

interface/web/admin/lib/lang/en_dbsync.lng

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,6 @@ $wb["db_tables_txt"] = 'Tables';
1111
$wb["empty_datalog_txt"] = 'Delete datalog after sync.';
1212
$wb["sync_datalog_external_txt"] = 'Fill external datalog.';
1313
$wb["active_txt"] = 'active';
14+
$wb["btn_save_txt"] = 'Save';
15+
$wb["btn_cancel_txt"] = 'Cancel';
1416
?>
Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
1-
<?php
2-
$wb["list_head_txt"] = 'Database Synchronisation';
3-
$wb["jobname_txt"] = 'Jobname';
4-
$wb["db_host_txt"] = 'DB Host';
5-
$wb["db_name_txt"] = 'DB Name';
6-
7-
$wb["page_txt"] = 'Page';
8-
$wb["page_of_txt"] = 'of';
9-
$wb["page_next_txt"] = 'Next';
10-
$wb["page_back_txt"] = 'Back';
11-
$wb["delete_txt"] = 'Delete';
12-
$wb["filter_txt"] = 'Filter';
1+
<?php
2+
$wb["list_head_txt"] = 'Database Synchronisation';
3+
$wb["jobname_txt"] = 'Jobname';
4+
$wb["db_host_txt"] = 'DB Host';
5+
$wb["db_name_txt"] = 'DB Name';
6+
7+
$wb["page_txt"] = 'Page';
8+
$wb["page_of_txt"] = 'of';
9+
$wb["page_next_txt"] = 'Next';
10+
$wb["page_back_txt"] = 'Back';
11+
$wb["delete_txt"] = 'Delete';
12+
$wb["filter_txt"] = 'Filter';
13+
$wb["add_new_record_txt"] = 'Add new DBSync record';
1314
?>

0 commit comments

Comments
 (0)