summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul W. Frields <stickster@gmail.com>2010-07-17 17:39:03 -0400
committerPaul W. Frields <stickster@gmail.com>2010-07-17 17:39:03 -0400
commitd5a7e650fe83ed4fc5cdafcb61089513a3798ba7 (patch)
treec8541b13ebddb53cc7b39c90da574a024cf5867a
parentb9ee700a92c1b4bc4a71a1c935595a58717e01ef (diff)
downloaddrupal-authfas-6x-d5a7e650fe83ed4fc5cdafcb61089513a3798ba7.tar.gz
drupal-authfas-6x-d5a7e650fe83ed4fc5cdafcb61089513a3798ba7.tar.xz
drupal-authfas-6x-d5a7e650fe83ed4fc5cdafcb61089513a3798ba7.zip
Fix lots of missing translatables
-rw-r--r--authfas.module12
1 files changed, 6 insertions, 6 deletions
diff --git a/authfas.module b/authfas.module
index c89cbed..399b1be 100644
--- a/authfas.module
+++ b/authfas.module
@@ -69,13 +69,13 @@ function authfas_admin() {
);
$form['authfas_verify_fasurl']['fas_username'] = array(
'#type' => 'textfield',
- '#title' => 'FAS username',
+ '#title' => t('FAS username'),
'#size' => 40,
'#maxlength' => 255,
'#default_value' => '');
$form['authfas_verify_fasurl']['fas_password'] = array(
'#type' => 'password',
- '#title' => 'FAS password',
+ '#title' => t('FAS password'),
'#size' => 40,
'#maxlength' => 255,
'#default_value' => '');
@@ -106,8 +106,8 @@ function authfas_menu() {
$items = array();
$items['admin/settings/authfas'] = array(
- 'title' => 'AuthFAS module settings',
- 'description' => 'Settings for authenticating to a FAS instance',
+ 'title' => t('AuthFAS module settings'),
+ 'description' => t('Settings for authenticating to a FAS instance'),
'page callback' => 'drupal_get_form',
'page arguments' => array('authfas_admin'),
'access arguments' => array('access administration pages'),
@@ -183,8 +183,8 @@ function authfas_form_user_admin_role_alter(&$form, $form_state) {
$fasgroup = db_result(db_query("SELECT fasgroup FROM {authfas_ridmap} WHERE rid = %d;", $form['rid']['#value']));
$newform['fasgroup'] = array(
'#type' => 'textfield',
- '#title' => 'FAS group mapping',
- '#description' => 'Enter the name for a FAS group that maps to this role.',
+ '#title' => t('FAS group mapping'),
+ '#description' => t('Enter the name for a FAS group that maps to this role.'),
'#size' => 30,
'#maxlength' => 255,
'#default_value' => $fasgroup,