-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
/** | ||
* Newsletter2Go Synchronization for Contao Open Source CMS | ||
* | ||
* Copyright (c) 2015-2017 Richard Henkenjohann | ||
* | ||
* @package Newsletter2GoSync | ||
* @author Richard Henkenjohann <richardhenkenjohann@googlemail.com> | ||
*/ | ||
|
||
|
||
$GLOBALS['TL_LANG']['MOD']['newsletter2go_users'][0] = 'Newsletter2Go users'; | ||
$GLOBALS['TL_LANG']['MOD']['newsletter2go_users'][1] = 'Configure the users to access the Newsletter2Go system with. Assign these users the backend users to enable sync.'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<?php | ||
/** | ||
* Newsletter2Go Synchronization for Contao Open Source CMS | ||
* | ||
* Copyright (c) 2015-2017 Richard Henkenjohann | ||
* | ||
* @package Newsletter2GoSync | ||
* @author Richard Henkenjohann <richardhenkenjohann@googlemail.com> | ||
*/ | ||
|
||
|
||
$table = Newsletter2Go\ContaoSync\Model\Newsletter2GoUser::getTable(); | ||
|
||
|
||
/** | ||
* Legends | ||
*/ | ||
$GLOBALS['TL_LANG'][$table]['title_legend'] = 'Name and key'; | ||
|
||
|
||
/** | ||
* Fields | ||
*/ | ||
$GLOBALS['TL_LANG'][$table]['name'][0] = 'Name'; | ||
$GLOBALS['TL_LANG'][$table]['name'][1] = 'Please enter an internal name for this user.'; | ||
$GLOBALS['TL_LANG'][$table]['authKey'][0] = 'Auth key'; | ||
$GLOBALS['TL_LANG'][$table]['authKey'][1] = 'Please enter the API auth key which can be found in the Newsletter2Go system.'; | ||
|
||
|
||
/** | ||
* Actions | ||
*/ | ||
$GLOBALS['TL_LANG'][$table]['new'][0] = 'New API user'; | ||
$GLOBALS['TL_LANG'][$table]['new'][1] = 'Create a new API user'; | ||
$GLOBALS['TL_LANG'][$table]['edit'][0] = 'Edit'; | ||
$GLOBALS['TL_LANG'][$table]['edit'][1] = 'Edit the API user ID %s'; | ||
$GLOBALS['TL_LANG'][$table]['delete'][0] = 'Delete'; | ||
$GLOBALS['TL_LANG'][$table]['delete'][1] = 'Delete the API user ID %s'; | ||
$GLOBALS['TL_LANG'][$table]['show'][0] = 'Show details'; | ||
$GLOBALS['TL_LANG'][$table]['show'][1] = 'Show details of API user ID %s'; | ||
$GLOBALS['TL_LANG'][$table]['authenticate'][0] = 'Authenticate'; | ||
$GLOBALS['TL_LANG'][$table]['authenticate'][1] = 'Authenticate API user ID %s'; | ||
|
||
|
||
/** | ||
* Authentication back end | ||
*/ | ||
$GLOBALS['TL_LANG'][$table]['be_user_auth']['headline'] = 'Authenticate the API user'; | ||
$GLOBALS['TL_LANG'][$table]['be_user_auth']['authentication_confirmation'] = 'You are logged in as: %s'; | ||
$GLOBALS['TL_LANG'][$table]['be_user_auth']['submit'] = 'Authenticate'; | ||
$GLOBALS['TL_LANG'][$table]['be_user_auth']['tip'] = 'Your credentials (username/password) will not be saved.'; |