diff options
Diffstat (limited to '')
-rw-r--r-- | admin/include/c13y_internal.class.php | 4 | ||||
-rw-r--r-- | admin/include/functions_permalinks.php | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/admin/include/c13y_internal.class.php b/admin/include/c13y_internal.class.php index 5b0d89ebc..373829e36 100644 --- a/admin/include/c13y_internal.class.php +++ b/admin/include/c13y_internal.class.php @@ -208,7 +208,7 @@ class c13y_internal create_user_infos($id); - $page['infos'][] = sprintf(l10n('User \"%s\" created with \"%s\" like password'), $name, $password); + $page['infos'][] = sprintf(l10n('User "%s" created with "%s" like password'), $name, $password); $result = true; } @@ -239,7 +239,7 @@ class c13y_internal array('primary' => array('user_id'),'update' => array('status')), $updates); - $page['infos'][] = sprintf(l10n('Status of user \"%s\" updated'), get_username($id)); + $page['infos'][] = sprintf(l10n('Status of user "%s" updated'), get_username($id)); $result = true; } diff --git a/admin/include/functions_permalinks.php b/admin/include/functions_permalinks.php index fc5846b1f..3a613f96b 100644 --- a/admin/include/functions_permalinks.php +++ b/admin/include/functions_permalinks.php @@ -140,7 +140,7 @@ function set_cat_permalink( $cat_id, $permalink, $save ) if ( $sanitized_permalink != $permalink or preg_match( '#^(\d)+(-.*)?$#', $permalink) ) { - $page['errors'][] = l10n('The permalink name must be composed of a-z, A-Z, 0-9, \"-\", \"_\" or \"/\". It must not be numeric or start with number followed by \"-\"'); + $page['errors'][] = l10n('The permalink name must be composed of a-z, A-Z, 0-9, "-", "_" or "/". It must not be numeric or start with number followed by "-"'); return false; } |