diff options
author | Friendika <info@friendika.com> | 2010-12-25 01:24:51 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-12-25 01:24:51 -0800 |
commit | c0aa8f9312307d35bb95c21db4fb7ff3c2b6ddd6 (patch) | |
tree | 426d16a0d0400b1ce8fdefabd9a7c350486689a3 | |
parent | 7382c353e521f36db2d40ac9aa2b3ca14cc64369 (diff) | |
download | volse-hubzilla-c0aa8f9312307d35bb95c21db4fb7ff3c2b6ddd6.tar.gz volse-hubzilla-c0aa8f9312307d35bb95c21db4fb7ff3c2b6ddd6.tar.bz2 volse-hubzilla-c0aa8f9312307d35bb95c21db4fb7ff3c2b6ddd6.zip |
new string wasn't configured for translation.
-rw-r--r-- | mod/settings.php | 2 | ||||
-rw-r--r-- | util/strings.php | 1 | ||||
-rw-r--r-- | view/it/strings.php | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/mod/settings.php b/mod/settings.php index 000258db9..273e8baa8 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -193,7 +193,7 @@ function settings_content(&$a) { $r = q("SELECT * FROM `hook` WHERE `hook` = 'plugin_settings' "); if(! count($r)) - notice('No Plugin settings configured'); + notice( t('No Plugin settings configured') . EOL); call_hooks('plugin_settings', $o); $o .= '</form>'; diff --git a/util/strings.php b/util/strings.php index f42449690..cf7299cde 100644 --- a/util/strings.php +++ b/util/strings.php @@ -330,6 +330,7 @@ $a->strings[' Not valid email.'] = ' Not valid email.'; $a->strings['Settings updated.'] = 'Settings updated.'; $a->strings['Plugin Settings'] = 'Plugin Settings'; $a->strings['Account Settings'] = 'Account Settings'; +$a->strings['No Plugin settings configured'] = 'No Plugin settings configured'; $a->strings['OpenID: '] = 'OpenID: '; $a->strings[" \x28Optional\x29 Allow this OpenID to login to this account."] = " \x28Optional\x29 Allow this OpenID to login to this account."; $a->strings['Profile is <strong>not published</strong>.'] = 'Profile is <strong>not published</strong>.'; diff --git a/view/it/strings.php b/view/it/strings.php index 3640997d9..ca6ec3e92 100644 --- a/view/it/strings.php +++ b/view/it/strings.php @@ -326,6 +326,7 @@ $a->strings[' Not valid email.'] = ' Email non valida.'; $a->strings['Settings updated.'] = 'Impostazioni aggiornate.'; $a->strings['Plugin Settings'] = 'Impostazioni Plugin'; $a->strings['Account Settings'= = 'Impostazioni Account'; +$a->strings['No Plugin settings configured'] = 'Nessuna impostazione Plugin configurato'; $a->strings['OpenID: '] = 'OpenID: '; $a->strings[" \x28Optional\x29 Allow this OpenID to login to this account."] = " \x28Opzionale\x29 Permetti a questo OpenID di accedere a questo account."; $a->strings['Profile is <strong>not published</strong>.'] = 'Il profilo <strong>non è pubblicato</strong>.'; |