Skip to content

Commit

Permalink
MDL-32117 Removed dots from language key names
Browse files Browse the repository at this point in the history
  • Loading branch information
Dongsheng Cai authored and danpoltawski committed Jun 4, 2012
1 parent da1f4ae commit e88aa1e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions repository/equella/lang/en/repository_equella.php
Expand Up @@ -30,9 +30,9 @@
$string['restrictionitemsonly'] = 'Item summary only';
$string['restrictionattachmentsonly'] = 'Attached resource only';

$string['sharedsecrets.heading'] = 'Shared Secret Settings';
$string['sharedsecrets.help'] = '<p>Below you can set a default EQUELLA shared secret for single signing-on users. You can configure different shared secrets for general (read) usage, and a specialised role based shared secret for each <em>write</em> role in your Moodle site. If a shared secret ID is not configured for a role then the default shared secret ID and shared secret are used.</p><p>All shared secret IDs and shared secrets must also be configured within EQUELLA and the shared secret module enabled. This configuration is found in the EQUELLA Administration Console under User Management > Shared Secrets.</p>';
$string['sharedsecretsheading'] = 'Shared Secret Settings';
$string['sharedsecretshelp'] = '<p>Below you can set a default EQUELLA shared secret for single signing-on users. You can configure different shared secrets for general (read) usage, and a specialised role based shared secret for each <em>write</em> role in your Moodle site. If a shared secret ID is not configured for a role then the default shared secret ID and shared secret are used.</p><p>All shared secret IDs and shared secrets must also be configured within EQUELLA and the shared secret module enabled. This configuration is found in the EQUELLA Administration Console under User Management > Shared Secrets.</p>';
$string['group'] = '{$a} role settings';
$string['group.default'] = 'Default';
$string['sharedid.title'] = 'Shared secret ID';
$string['sharedsecret.title'] = 'Shared secret';
$string['groupdefault'] = 'Default';
$string['sharedidtitle'] = 'Shared secret ID';
$string['sharedsecrettitle'] = 'Shared secret';
2 changes: 1 addition & 1 deletion repository/equella/lib.php
Expand Up @@ -179,7 +179,7 @@ public function instance_config_form($mform) {
);
$mform->addElement('select', 'equella_select_restriction', get_string('selectrestriction', 'repository_equella'), $choices);

$mform->addElement('header', '', get_string('group', 'repository_equella', get_string('group.default', 'repository_equella')));
$mform->addElement('header', '', get_string('group', 'repository_equella', get_string('groupdefault', 'repository_equella')));
$mform->addElement('text', 'equella_shareid', get_string('sharedid', 'repository_equella'));
$mform->addElement('text', 'equella_sharedsecret', get_string('sharedsecrets', 'repository_equella'));

Expand Down

0 comments on commit e88aa1e

Please sign in to comment.