Skip to content

Commit

Permalink
EN translations
Browse files Browse the repository at this point in the history
  • Loading branch information
richardhj committed Jun 3, 2017
1 parent e80c384 commit 2cfd7f1
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 0 deletions.
13 changes: 13 additions & 0 deletions module/languages/en/modules.php
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.';
51 changes: 51 additions & 0 deletions module/languages/en/tl_newsletter2go_user.php
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.';

0 comments on commit 2cfd7f1

Please sign in to comment.