Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix table name tl_files #327

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
*/
$GLOBALS['TL_LANG']['tl_syncCto_clients_syncFrom']['sync_options'] = array('Dateien synchronisieren', 'Wählen Sie bitte aus, welche Dateien synchronisiert werden sollen.');
$GLOBALS['TL_LANG']['tl_syncCto_clients_syncFrom']['database_check'] = array('Datenbank synchronisieren', 'Wählen Sie diese Option, wenn Sie die Datenbank synchronisieren wollen.');
$GLOBALS['TL_LANG']['tl_syncCto_clients_syncFrom']['tl_files_check'] = array('\'tl-files\' überschreiben', 'Wählen Sie diese Option, wenn Sie die \'tl-files\' Tabelle synchronisieren wollen.');
$GLOBALS['TL_LANG']['tl_syncCto_clients_syncFrom']['tl_files_check'] = array('\'tl_files\' überschreiben', 'Wählen Sie diese Option, wenn Sie die \'tl_files\' Tabelle synchronisieren wollen.');
$GLOBALS['TL_LANG']['tl_syncCto_clients_syncFrom']['systemoperations_check'] = array('Systemwartung aktivieren', 'Wählen Sie diese Option, wenn die Systemwartung durchgeführt werden soll.');
$GLOBALS['TL_LANG']['tl_syncCto_clients_syncFrom']['systemoperations_maintenance'] = array('Daten bereinigen', 'Bitte wählen Sie die zu bereinigenden Daten aus.');
$GLOBALS['TL_LANG']['tl_syncCto_clients_syncFrom']['attention_flag'] = array('Warnhinweis aktivieren', 'Wählen Sie diese Option, wenn der Warnhinweis auf dem Client aktiviert werden soll.');
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
*/
$GLOBALS['TL_LANG']['tl_syncCto_clients_syncTo']['sync_options'] = array('Dateien synchronisieren', 'Wählen Sie bitte aus, welche Dateien synchronisiert werden sollen.');
$GLOBALS['TL_LANG']['tl_syncCto_clients_syncTo']['database_check'] = array('Datenbank synchronisieren', 'Wählen Sie diese Option, wenn Sie die Datenbank synchronisieren wollen.');
$GLOBALS['TL_LANG']['tl_syncCto_clients_syncTo']['tl_files_check'] = array('\'tl-files\' überschreiben', 'Wählen Sie diese Option, wenn Sie die \'tl-files\' Tabelle synchronisieren wollen.');
$GLOBALS['TL_LANG']['tl_syncCto_clients_syncTo']['tl_files_check'] = array('\'tl_files\' überschreiben', 'Wählen Sie diese Option, wenn Sie die \'tl_files\' Tabelle synchronisieren wollen.');
$GLOBALS['TL_LANG']['tl_syncCto_clients_syncTo']['systemoperations_check'] = array('Systemwartung aktivieren', 'Wählen Sie diese Option, wenn die Systemwartung durchgeführt werden soll.');
$GLOBALS['TL_LANG']['tl_syncCto_clients_syncTo']['systemoperations_maintenance'] = array('Daten bereinigen', 'Bitte wählen Sie die zu bereinigenden Daten aus.');
$GLOBALS['TL_LANG']['tl_syncCto_clients_syncTo']['attention_flag'] = array('Warnhinweis deaktivieren', 'Wählen Sie diese Option, wenn der Warnhinweis auf dem Client deaktiviert werden soll.');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
*/
$GLOBALS['TL_LANG']['tl_syncCto_clients_syncFrom']['sync_options'] = array('Synchronize files', 'Here you can select which files should be synchronized.');
$GLOBALS['TL_LANG']['tl_syncCto_clients_syncFrom']['database_check'] = array('Synchronize database', 'Choose this option for database synchronization.');
$GLOBALS['TL_LANG']['tl_syncCto_clients_syncFrom']['tl_files_check'] = array('Overwrite \'tl-files\'', 'Choose this option for the tl_files table synchronization.');
$GLOBALS['TL_LANG']['tl_syncCto_clients_syncFrom']['tl_files_check'] = array('Overwrite \'tl_files\'', 'Choose this option for the tl_files table synchronization.');
$GLOBALS['TL_LANG']['tl_syncCto_clients_syncFrom']['systemoperations_check'] = array('Activate maintenance', 'Choose these options to activate the system maintenance.');
$GLOBALS['TL_LANG']['tl_syncCto_clients_syncFrom']['systemoperations_maintenance'] = array('Purge data', 'Please select the data you want to purge.');
$GLOBALS['TL_LANG']['tl_syncCto_clients_syncFrom']['attention_flag'] = array('Activate warning notice', 'Choose this option to activate the syncronisation warning on the client.');
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
*/
$GLOBALS['TL_LANG']['tl_syncCto_clients_syncTo']['sync_options'] = array('Synchronize files', 'Here you can select which files should be synchronized.');
$GLOBALS['TL_LANG']['tl_syncCto_clients_syncTo']['database_check'] = array('Synchronize database', 'Choose this option for database synchronization.');
$GLOBALS['TL_LANG']['tl_syncCto_clients_syncTo']['tl_files_check'] = array('Overwrite \'tl-files\'', 'Choose this option for the tl_files table synchronization.');
$GLOBALS['TL_LANG']['tl_syncCto_clients_syncTo']['tl_files_check'] = array('Overwrite \'tl_files\'', 'Choose this option for the tl_files table synchronization.');
$GLOBALS['TL_LANG']['tl_syncCto_clients_syncTo']['systemoperations_check'] = array('Activate maintenance', 'Choose these options to activate the system maintenance.');
$GLOBALS['TL_LANG']['tl_syncCto_clients_syncTo']['systemoperations_maintenance'] = array('Purge data', 'Please select the data you want to purge.');
$GLOBALS['TL_LANG']['tl_syncCto_clients_syncTo']['attention_flag'] = array('Deactivate warning notice', 'Choose this option to deactivate the syncronisation warning on the client.');
Expand Down