From 07d4566096b1ca35ebc42ef5f5e73e63ec49924d Mon Sep 17 00:00:00 2001 From: cajus Date: Thu, 29 Jul 2010 16:21:26 +0000 Subject: [PATCH] Fixed spelling errors git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19290 594d385d-05f5-0310-b6e9-bd551577e9d8 --- gosa-core/html/helpviewer.php | 4 ++-- gosa-core/html/index.php | 4 ++-- gosa-core/html/main.php | 2 +- gosa-core/html/password.php | 2 +- gosa-core/ihtml/themes/default/acl.tpl | 4 ++-- gosa-core/ihtml/themes/default/copyPasteDialog.tpl | 2 +- gosa-core/ihtml/themes/default/islocked.tpl | 2 +- gosa-core/ihtml/themes/default/login.tpl | 4 ++-- gosa-core/ihtml/themes/default/msg_dialog.tpl | 10 +++++----- gosa-core/ihtml/themes/default/sizelimit.tpl | 2 +- gosa-core/ihtml/themes/default/snapshotdialog.tpl | 4 ++-- gosa-core/include/class_CopyPasteHandler.inc | 2 +- gosa-core/include/class_acl.inc | 2 +- gosa-core/include/class_core.inc | 2 +- gosa-core/include/class_management.inc | 4 ++-- gosa-core/include/class_multi_plug.inc | 2 +- gosa-core/include/functions_helpviewer.inc | 2 +- gosa-core/include/php_setup.inc | 2 +- gosa-core/include/utils/class_msgPool.inc | 2 +- .../addons/dyngroup/classDynamicLdapGroup.inc | 2 +- .../addons/propertyEditor/class_propertyEditor.inc | 2 +- .../addons/propertyEditor/commandVerifier.tpl | 4 ++-- .../plugins/addons/propertyEditor/migrate.tpl | 2 +- gosa-core/plugins/admin/acl/acl-list.xml | 4 ++-- gosa-core/plugins/admin/acl/acl_role.tpl | 2 +- gosa-core/plugins/admin/acl/class_aclRole.inc | 2 +- gosa-core/plugins/admin/acl/paste_role.tpl | 2 +- .../plugins/admin/departments/dep_move_confirm.tpl | 2 +- gosa-core/plugins/admin/groups/class_group.inc | 8 ++++---- .../plugins/admin/groups/class_groupManagement.inc | 4 ++-- gosa-core/plugins/admin/groups/generic.tpl | 4 ++-- gosa-core/plugins/admin/groups/paste_generic.tpl | 4 ++-- gosa-core/plugins/admin/ogroups/class_ogroup.inc | 6 +++--- .../plugins/generic/references/class_reference.inc | 2 +- gosa-core/plugins/personal/generic/class_user.inc | 4 ++-- gosa-core/plugins/personal/myaccount/main.inc | 2 +- gosa-core/plugins/personal/password/changed.tpl | 2 +- .../plugins/personal/password/class_password.inc | 2 +- gosa-core/plugins/personal/posix/generic.tpl | 2 +- gosa-core/plugins/personal/posix/paste_generic.tpl | 4 ++-- gosa-core/setup/class_setupStep_Checks.inc | 10 +++++----- gosa-core/setup/class_setupStep_Feedback.inc | 6 +++--- gosa-core/setup/class_setupStep_Finish.inc | 2 +- gosa-core/setup/class_setupStep_Migrate.inc | 14 +++++++------- gosa-core/setup/setup_checks.tpl | 4 ++-- gosa-core/setup/setup_feedback.tpl | 4 ++-- gosa-core/setup/setup_finish.tpl | 2 +- gosa-core/setup/setup_language.tpl | 2 +- gosa-core/setup/setup_ldap.tpl | 6 +++--- gosa-core/setup/setup_license.tpl | 2 +- gosa-core/setup/setup_schema.tpl | 4 ++-- gosa-core/setup/setup_welcome.tpl | 6 +++--- 52 files changed, 93 insertions(+), 93 deletions(-) diff --git a/gosa-core/html/helpviewer.php b/gosa-core/html/helpviewer.php index fa3b86694..1bcfa141c 100644 --- a/gosa-core/html/helpviewer.php +++ b/gosa-core/html/helpviewer.php @@ -115,7 +115,7 @@ if(session::global_is_set('current_class_for_help')){ /* If there is no entry in the xml file for this class, display an error message */ if($helpdir == ""){ - $smarty->assign("help_contents","

"._("There is no helpfile specified for this class"))."

"; + $smarty->assign("help_contents","

"._("There is no help file specified for this class"))."

"; $header= "".$smarty->fetch(get_template_path('headers.tpl')); $display= ( $header.$smarty->fetch(get_template_path('help.tpl'))); echo $display; @@ -265,7 +265,7 @@ if(isset($_POST['search'])){ }else{ /* There was a file requested which actually doesn't exists */ - $smarty->assign("help_contents","

".sprintf(_("Helpdir '%s' is not accessible, can't read any helpfiles."),$helpdir))."


"; + $smarty->assign("help_contents","

".sprintf(_("Help directory '%s' is not accessible, can't read any help files."),$helpdir))."


"; $header= "".$smarty->fetch(get_template_path('headers.tpl')); $display= ( $header.$smarty->fetch(get_template_path('help.tpl'))); echo $display; diff --git a/gosa-core/html/index.php b/gosa-core/html/index.php index 152ba449c..ba0d1d530 100644 --- a/gosa-core/html/index.php +++ b/gosa-core/html/index.php @@ -69,7 +69,7 @@ function displayLogin() /* Displasy SSL mode warning? */ if ($ssl != "" && $config->get_cfg_value("core",'warnSSL') == 'true') { - $smarty->assign("ssl", sprintf(_("This session is not ecrypted. Click %s to enter an encrypted session."), "".bold(_("here"))."")); + $smarty->assign("ssl", sprintf(_("This session is not encrypted. Click %s to enter an encrypted session."), "".bold(_("here"))."")); } else { $smarty->assign("ssl", ""); } @@ -286,7 +286,7 @@ if (($_SERVER["REQUEST_METHOD"] == "POST" && isset($_POST['login'])) || $htacces if (!$htaccess_authenticated) { $username= $_POST["username"]; if (!preg_match("/^[@A-Za-z0-9_.-]+$/", $username)) { - $message= _("Please specify a valid username!"); + $message= _("Please specify a valid user name!"); $ok= false; } elseif (mb_strlen($_POST["password"], 'UTF-8') == 0) { $message= _("Please specify your password!"); diff --git a/gosa-core/html/main.php b/gosa-core/html/main.php index 09dd56d22..07c69d1db 100644 --- a/gosa-core/html/main.php +++ b/gosa-core/html/main.php @@ -380,7 +380,7 @@ if (is_file("$plugin_dir/main.inc")){ require ("$plugin_dir/main.inc"); } else { msg_dialog::display( - _("Plugin"), + _("Plug-in"), sprintf(_("FATAL: Cannot find any plugin definitions for plugin %s!"), bold($plug)), FATAL_ERROR_DIALOG); exit(); diff --git a/gosa-core/html/password.php b/gosa-core/html/password.php index 99a5d49cb..b42aadf81 100644 --- a/gosa-core/html/password.php +++ b/gosa-core/html/password.php @@ -250,7 +250,7 @@ if ($_SERVER["REQUEST_METHOD"] == "POST" && isset($_POST['apply'])) { } } if(!passwordMethod::is_harmless($_POST['new_password'])){ - $message[]= _("The password contains possibly problematic unicode characters!"); + $message[]= _("The password contains possibly problematic Unicode characters!"); } /* Validate */ diff --git a/gosa-core/ihtml/themes/default/acl.tpl b/gosa-core/ihtml/themes/default/acl.tpl index d41f5733d..15ad1983b 100644 --- a/gosa-core/ihtml/themes/default/acl.tpl +++ b/gosa-core/ihtml/themes/default/acl.tpl @@ -20,12 +20,12 @@ {if !$acl_writeable} - {html_options options=$aclTypes selected=$aclType}   {else} - {html_options options=$aclTypes selected=$aclType}   diff --git a/gosa-core/ihtml/themes/default/copyPasteDialog.tpl b/gosa-core/ihtml/themes/default/copyPasteDialog.tpl index b2399f861..66d751967 100644 --- a/gosa-core/ihtml/themes/default/copyPasteDialog.tpl +++ b/gosa-core/ihtml/themes/default/copyPasteDialog.tpl @@ -4,7 +4,7 @@

{if $Complete == false} - {t}Some values need to be unique in the complete directory while some combinations make no sense. GOsa shows the relevant attributes. Please maintain the values below to fullfill the policies.{/t} + {t}Some values need to be unique in the complete directory while some combinations make no sense. GOsa shows the relevant attributes. Please maintain the values below to fulfill the policies.{/t}
{t}Remember that some properties like taken snapshots will not be copied!{/t}  {t}Or if you copy or cut an entry within GOsa and delete the source object, you may get errors while pasting this object again!{/t} diff --git a/gosa-core/ihtml/themes/default/islocked.tpl b/gosa-core/ihtml/themes/default/islocked.tpl index 566c1d432..b403b7087 100644 --- a/gosa-core/ihtml/themes/default/islocked.tpl +++ b/gosa-core/ihtml/themes/default/islocked.tpl @@ -11,7 +11,7 @@

- {t}If this lock detection is false, the other person has obviously closed the webbrowser during the edit operation. You may want to take over the lock by pressing the 'Edit anyway' button.{/t} + {t}If this lock detection is false, the other person has obviously closed the web browser during the edit operation. You may want to take over the lock by pressing the 'Edit anyway' button.{/t}


diff --git a/gosa-core/ihtml/themes/default/login.tpl b/gosa-core/ihtml/themes/default/login.tpl index 60e02adea..d0f498bff 100644 --- a/gosa-core/ihtml/themes/default/login.tpl +++ b/gosa-core/ihtml/themes/default/login.tpl @@ -34,10 +34,10 @@