Changeset 1705:0f4123c4d1c5
- Timestamp:
- 09/03/13 19:12:39 (12 years ago)
- Branch:
- ticket #1406-2
- Children:
- 1706:ceda30178c06, 1707:0210876ac75e
- Files:
-
- 31 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/index.php
r1591 r1705 228 228 229 229 # Check cache directory 230 if (!is_dir(DC_TPL_CACHE)) { 231 $err[] = '<p>'.sprintf(__('Cache directory %s does not exist.'),DC_TPL_CACHE).'</p>'; 232 } else if (!is_writable(DC_TPL_CACHE)) { 233 $err[] = '<p>'.sprintf(__('Cache directory %s is not writable.'),DC_TPL_CACHE).'</p>'; 230 if ( $core->auth->isSuperAdmin() ) { 231 if (!is_dir(DC_TPL_CACHE) || !is_writable(DC_TPL_CACHE)) { 232 $err[] = '<p>'.__("Dotclear needs a directory write cache to function properly. You need to create a designated area in the line \"DC_TPL_CACHE\" in the file inc/config.php in your system and assign rights to read, write and execute for everyone.").'</p>'; 233 } 234 } else { 235 if (!is_dir(DC_TPL_CACHE) || !is_writable(DC_TPL_CACHE)) { 236 $err[] = '<p>'.__("Dotclear needs a directory write cache to function properly. You must contact your administrator.").'</p>'; 237 } 234 238 } 235 239 236 240 # Check public directory 237 if (!is_dir($core->blog->public_path)) { 238 $err[] = '<p>'.sprintf(__('Directory %s does not exist.'),$core->blog->public_path).'</p>'; 239 } else if (!is_writable($core->blog->public_path)) { 240 $err[] = '<p>'.sprintf(__('Directory %s is not writable.'),$core->blog->public_path).'</p>'; 241 if ( $core->auth->isSuperAdmin() ) { 242 if (!is_dir($core->blog->public_path) || !is_writable($core->blog->public_path)) { 243 $err[] = '<p>'.__("There is no directory /public/ write to the location indicated in about:config \"public_path\". You must create this directory in the specified location, or change the settings and assign permissions to read, write and execute for everyone.").'</p>'; 244 } 245 } else { 246 if (!is_dir($core->blog->public_path) || !is_writable($core->blog->public_path)) { 247 $err[] = '<p>'.__("There is no directory /public/ write to the location indicated in about:config \"public_path\". You must contact your administrator.").'</p>'; 248 } 241 249 } 242 250 -
inc/core/class.dc.media.php
r1677 r1705 74 74 75 75 if (!is_dir($root)) { 76 throw new Exception(sprintf(__('Directory %s does not exist.'),$root)); 76 # Check public directory 77 if ( $core->auth->isSuperAdmin() ) { 78 throw new Exception(__("There is no directory /public/ write to the location indicated in about:config \"public_path\". You must create this directory in the specified location, or change the settings and assign permissions to read, write and execute for everyone.")); 79 } else { 80 throw new Exception(__("There is no directory /public/ write to the location indicated in about:config \"public_path\". You must contact your administrator.")); 81 } 77 82 } 78 83 -
locales/_pot/main.pot
r1039 r1705 1344 1344 #: admin/install/index.php:302 1345 1345 #, php-format 1346 msgid "Dotclear needs a directory write cache to function properly. You need to create a designated area in the line \"DC_TPL_CACHE\" in the file inc/config.php in your system and assign rights to read, write and execute for everyone." 1347 msgstr "" 1348 1349 msgid "Dotclear needs a directory write cache to function properly. You must contact your administrator." 1350 msgstr "" 1351 1352 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must create this directory in the specified location, or change the settings and assign permissions to read, write and execute for everyone." 1353 msgstr "" 1354 1355 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must contact your administrator." 1356 msgstr "" 1357 1346 1358 msgid "Cache directory %s is not writable." 1347 1359 msgstr "" -
locales/bn/main.po
r1592 r1705 949 949 950 950 #, php-format 951 msgid "Dotclear needs a directory write cache to function properly. You need to create a designated area in the line \"DC_TPL_CACHE\" in the file inc/config.php in your system and assign rights to read, write and execute for everyone." 952 msgstr "" 953 954 msgid "Dotclear needs a directory write cache to function properly. You must contact your administrator." 955 msgstr "" 956 957 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must create this directory in the specified location, or change the settings and assign permissions to read, write and execute for everyone." 958 msgstr "" 959 960 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must contact your administrator." 961 msgstr "" 962 951 963 msgid "Cache directory %s is not writable." 952 964 msgstr "" -
locales/ca/main.po
r1592 r1705 981 981 982 982 #, php-format 983 msgid "Dotclear needs a directory write cache to function properly. You need to create a designated area in the line \"DC_TPL_CACHE\" in the file inc/config.php in your system and assign rights to read, write and execute for everyone." 984 msgstr "" 985 986 msgid "Dotclear needs a directory write cache to function properly. You must contact your administrator." 987 msgstr "" 988 989 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must create this directory in the specified location, or change the settings and assign permissions to read, write and execute for everyone." 990 msgstr "" 991 992 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must contact your administrator." 993 msgstr "" 994 983 995 msgid "Cache directory %s is not writable." 984 996 msgstr "El directori cache %s no es pot gravar." -
locales/cs/main.po
r1592 r1705 956 956 957 957 #, php-format 958 msgid "Dotclear needs a directory write cache to function properly. You need to create a designated area in the line \"DC_TPL_CACHE\" in the file inc/config.php in your system and assign rights to read, write and execute for everyone." 959 msgstr "" 960 961 msgid "Dotclear needs a directory write cache to function properly. You must contact your administrator." 962 msgstr "" 963 964 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must create this directory in the specified location, or change the settings and assign permissions to read, write and execute for everyone." 965 msgstr "" 966 967 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must contact your administrator." 968 msgstr "" 969 958 970 msgid "Cache directory %s is not writable." 959 971 msgstr "Cachovací adresář %s nemá právo zápisu" -
locales/da/main.po
r1592 r1705 958 958 959 959 #, php-format 960 msgid "Dotclear needs a directory write cache to function properly. You need to create a designated area in the line \"DC_TPL_CACHE\" in the file inc/config.php in your system and assign rights to read, write and execute for everyone." 961 msgstr "" 962 963 msgid "Dotclear needs a directory write cache to function properly. You must contact your administrator." 964 msgstr "" 965 966 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must create this directory in the specified location, or change the settings and assign permissions to read, write and execute for everyone." 967 msgstr "" 968 969 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must contact your administrator." 970 msgstr "" 971 960 972 msgid "Cache directory %s is not writable." 961 973 msgstr "Cache mappen %s er ikke skrivbar." -
locales/de/main.po
r1592 r1705 953 953 954 954 #, php-format 955 msgid "Dotclear needs a directory write cache to function properly. You need to create a designated area in the line \"DC_TPL_CACHE\" in the file inc/config.php in your system and assign rights to read, write and execute for everyone." 956 msgstr "" 957 958 msgid "Dotclear needs a directory write cache to function properly. You must contact your administrator." 959 msgstr "" 960 961 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must create this directory in the specified location, or change the settings and assign permissions to read, write and execute for everyone." 962 msgstr "" 963 964 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must contact your administrator." 965 msgstr "" 966 955 967 msgid "Cache directory %s is not writable." 956 968 msgstr "Das Cache-Verzeichnis %s ist nicht beschreibbar." -
locales/en/main.po
r1592 r1705 938 938 939 939 #, php-format 940 msgid "Dotclear needs a directory write cache to function properly. You need to create a designated area in the line \"DC_TPL_CACHE\" in the file inc/config.php in your system and assign rights to read, write and execute for everyone." 941 msgstr "" 942 943 msgid "Dotclear needs a directory write cache to function properly. You must contact your administrator." 944 msgstr "" 945 946 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must create this directory in the specified location, or change the settings and assign permissions to read, write and execute for everyone." 947 msgstr "" 948 949 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must contact your administrator." 950 msgstr "" 951 940 952 msgid "Cache directory %s is not writable." 941 953 msgstr "" -
locales/eo/main.po
r1592 r1705 934 934 935 935 #, php-format 936 msgid "Dotclear needs a directory write cache to function properly. You need to create a designated area in the line \"DC_TPL_CACHE\" in the file inc/config.php in your system and assign rights to read, write and execute for everyone." 937 msgstr "" 938 939 msgid "Dotclear needs a directory write cache to function properly. You must contact your administrator." 940 msgstr "" 941 942 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must create this directory in the specified location, or change the settings and assign permissions to read, write and execute for everyone." 943 msgstr "" 944 945 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must contact your administrator." 946 msgstr "" 947 936 948 msgid "Cache directory %s is not writable." 937 949 msgstr "" -
locales/es-ar/main.po
r1592 r1705 960 960 961 961 #, php-format 962 msgid "Dotclear needs a directory write cache to function properly. You need to create a designated area in the line \"DC_TPL_CACHE\" in the file inc/config.php in your system and assign rights to read, write and execute for everyone." 963 msgstr "" 964 965 msgid "Dotclear needs a directory write cache to function properly. You must contact your administrator." 966 msgstr "" 967 968 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must create this directory in the specified location, or change the settings and assign permissions to read, write and execute for everyone." 969 msgstr "" 970 971 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must contact your administrator." 972 msgstr "" 973 962 974 msgid "Cache directory %s is not writable." 963 975 msgstr "El directorio de cache %s no se puede escribir." -
locales/es/main.po
r1592 r1705 963 963 964 964 #, php-format 965 msgid "Dotclear needs a directory write cache to function properly. You need to create a designated area in the line \"DC_TPL_CACHE\" in the file inc/config.php in your system and assign rights to read, write and execute for everyone." 966 msgstr "" 967 968 msgid "Dotclear needs a directory write cache to function properly. You must contact your administrator." 969 msgstr "" 970 971 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must create this directory in the specified location, or change the settings and assign permissions to read, write and execute for everyone." 972 msgstr "" 973 974 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must contact your administrator." 975 msgstr "" 976 965 977 msgid "Cache directory %s is not writable." 966 978 msgstr "No se puede escribir en el directorio de cache %s." -
locales/eu/main.po
r1592 r1705 934 934 935 935 #, php-format 936 msgid "Dotclear needs a directory write cache to function properly. You need to create a designated area in the line \"DC_TPL_CACHE\" in the file inc/config.php in your system and assign rights to read, write and execute for everyone." 937 msgstr "" 938 939 msgid "Dotclear needs a directory write cache to function properly. You must contact your administrator." 940 msgstr "" 941 942 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must create this directory in the specified location, or change the settings and assign permissions to read, write and execute for everyone." 943 msgstr "" 944 945 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must contact your administrator." 946 msgstr "" 947 936 948 msgid "Cache directory %s is not writable." 937 949 msgstr "" -
locales/fr/main.po
r1592 r1705 986 986 987 987 #, php-format 988 msgid "Dotclear needs a directory write cache to function properly. You need to create a designated area in the line \"DC_TPL_CACHE\" in the file inc/config.php in your system and assign rights to read, write and execute for everyone." 989 msgstr "Dotclear a besoin d'un répertoire de cache en écriture pour fonctionner correctement. Vous devez créer un à l'endroit désigné dans la ligne \"DC_TPL_CACHE\" dans le fichier inc/config.php dans votre système et d'attribuer des droits en lecture, écriture et exécution pour tout le monde." 990 991 msgid "Dotclear needs a directory write cache to function properly. You must contact your administrator." 992 msgstr "Dotclear a besoin d'un répertoire de cache en écriture pour fonctionner correctement. Vous devez contacter votre administrateur." 993 994 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must create this directory in the specified location, or change the settings and assign permissions to read, write and execute for everyone." 995 msgstr "Il n'existe pas de répertoire /public/ écriture à l'endroit indiqué dans about:config \"public_path\". Vous devez créer ce répertoire à l'emplacement spécifié, ou modifier les paramètres et attribuer des droits de lecture, écriture et exécution pour tout le monde." 996 997 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must contact your administrator." 998 msgstr "Il n'existe pas de répertoire /public/ écriture à l'endroit indiqué dans about:config \"public_path\". Vous devez contacter votre administrateur." 999 988 1000 msgid "Cache directory %s is not writable." 989 1001 msgstr "Le répertoire de cache %s n'est pas accessible en écriture." -
locales/hu/main.po
r1592 r1705 981 981 982 982 #, php-format 983 msgid "Dotclear needs a directory write cache to function properly. You need to create a designated area in the line \"DC_TPL_CACHE\" in the file inc/config.php in your system and assign rights to read, write and execute for everyone." 984 msgstr "" 985 986 msgid "Dotclear needs a directory write cache to function properly. You must contact your administrator." 987 msgstr "" 988 989 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must create this directory in the specified location, or change the settings and assign permissions to read, write and execute for everyone." 990 msgstr "" 991 992 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must contact your administrator." 993 msgstr "" 994 983 995 msgid "Cache directory %s is not writable." 984 996 msgstr "%s cache mappa nem írható." -
locales/it/main.po
r1592 r1705 955 955 956 956 #, php-format 957 msgid "Dotclear needs a directory write cache to function properly. You need to create a designated area in the line \"DC_TPL_CACHE\" in the file inc/config.php in your system and assign rights to read, write and execute for everyone." 958 msgstr "" 959 960 msgid "Dotclear needs a directory write cache to function properly. You must contact your administrator." 961 msgstr "" 962 963 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must create this directory in the specified location, or change the settings and assign permissions to read, write and execute for everyone." 964 msgstr "" 965 966 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must contact your administrator." 967 msgstr "" 968 957 969 msgid "Cache directory %s is not writable." 958 970 msgstr "La cartella %s della cache non è scrivibile." -
locales/ja/main.po
r1592 r1705 965 965 966 966 #, php-format 967 msgid "Dotclear needs a directory write cache to function properly. You need to create a designated area in the line \"DC_TPL_CACHE\" in the file inc/config.php in your system and assign rights to read, write and execute for everyone." 968 msgstr "" 969 970 msgid "Dotclear needs a directory write cache to function properly. You must contact your administrator." 971 msgstr "" 972 973 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must create this directory in the specified location, or change the settings and assign permissions to read, write and execute for everyone." 974 msgstr "" 975 976 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must contact your administrator." 977 msgstr "" 978 967 979 msgid "Cache directory %s is not writable." 968 980 msgstr "キャッシュディレクトリ %s が書き込み可能ではありません。" -
locales/ko/main.po
r1592 r1705 964 964 965 965 #, php-format 966 msgid "Dotclear needs a directory write cache to function properly. You need to create a designated area in the line \"DC_TPL_CACHE\" in the file inc/config.php in your system and assign rights to read, write and execute for everyone." 967 msgstr "" 968 969 msgid "Dotclear needs a directory write cache to function properly. You must contact your administrator." 970 msgstr "" 971 972 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must create this directory in the specified location, or change the settings and assign permissions to read, write and execute for everyone." 973 msgstr "" 974 975 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must contact your administrator." 976 msgstr "" 977 966 978 msgid "Cache directory %s is not writable." 967 979 msgstr "캐시 폴더 %s 에 쓰기접근이 불허된 상태입니다." -
locales/lt/main.po
r1592 r1705 916 916 917 917 #, php-format 918 msgid "Dotclear needs a directory write cache to function properly. You need to create a designated area in the line \"DC_TPL_CACHE\" in the file inc/config.php in your system and assign rights to read, write and execute for everyone." 919 msgstr "" 920 921 msgid "Dotclear needs a directory write cache to function properly. You must contact your administrator." 922 msgstr "" 923 924 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must create this directory in the specified location, or change the settings and assign permissions to read, write and execute for everyone." 925 msgstr "" 926 927 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must contact your administrator." 928 msgstr "" 929 918 930 msgid "Cache directory %s is not writable." 919 931 msgstr "Cache direktorija %s neturi rašymo nustatymų." -
locales/nl/main.po
r1592 r1705 937 937 938 938 #, php-format 939 msgid "Dotclear needs a directory write cache to function properly. You need to create a designated area in the line \"DC_TPL_CACHE\" in the file inc/config.php in your system and assign rights to read, write and execute for everyone." 940 msgstr "" 941 942 msgid "Dotclear needs a directory write cache to function properly. You must contact your administrator." 943 msgstr "" 944 945 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must create this directory in the specified location, or change the settings and assign permissions to read, write and execute for everyone." 946 msgstr "" 947 948 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must contact your administrator." 949 msgstr "" 950 939 951 msgid "Cache directory %s is not writable." 940 952 msgstr "" -
locales/oc/main.po
r1592 r1705 944 944 945 945 #, php-format 946 msgid "Dotclear needs a directory write cache to function properly. You need to create a designated area in the line \"DC_TPL_CACHE\" in the file inc/config.php in your system and assign rights to read, write and execute for everyone." 947 msgstr "" 948 949 msgid "Dotclear needs a directory write cache to function properly. You must contact your administrator." 950 msgstr "" 951 952 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must create this directory in the specified location, or change the settings and assign permissions to read, write and execute for everyone." 953 msgstr "" 954 955 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must contact your administrator." 956 msgstr "" 957 946 958 msgid "Cache directory %s is not writable." 947 959 msgstr "" -
locales/pl/main.po
r1592 r1705 948 948 949 949 #, php-format 950 msgid "Dotclear needs a directory write cache to function properly. You need to create a designated area in the line \"DC_TPL_CACHE\" in the file inc/config.php in your system and assign rights to read, write and execute for everyone." 951 msgstr "" 952 953 msgid "Dotclear needs a directory write cache to function properly. You must contact your administrator." 954 msgstr "" 955 956 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must create this directory in the specified location, or change the settings and assign permissions to read, write and execute for everyone." 957 msgstr "" 958 959 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must contact your administrator." 960 msgstr "" 961 950 962 msgid "Cache directory %s is not writable." 951 963 msgstr "Katalog cache %s nie jest zapisywalny." -
locales/pt-br/main.po
r1592 r1705 984 984 985 985 #, php-format 986 msgid "Dotclear needs a directory write cache to function properly. You need to create a designated area in the line \"DC_TPL_CACHE\" in the file inc/config.php in your system and assign rights to read, write and execute for everyone." 987 msgstr "" 988 989 msgid "Dotclear needs a directory write cache to function properly. You must contact your administrator." 990 msgstr "" 991 992 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must create this directory in the specified location, or change the settings and assign permissions to read, write and execute for everyone." 993 msgstr "" 994 995 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must contact your administrator." 996 msgstr "" 997 986 998 msgid "Cache directory %s is not writable." 987 999 msgstr "O diretório de cache %s não está acessível em escritura." -
locales/pt/main.po
r1592 r1705 961 961 962 962 #, php-format 963 msgid "Dotclear needs a directory write cache to function properly. You need to create a designated area in the line \"DC_TPL_CACHE\" in the file inc/config.php in your system and assign rights to read, write and execute for everyone." 964 msgstr "" 965 966 msgid "Dotclear needs a directory write cache to function properly. You must contact your administrator." 967 msgstr "" 968 969 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must create this directory in the specified location, or change the settings and assign permissions to read, write and execute for everyone." 970 msgstr "" 971 972 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must contact your administrator." 973 msgstr "" 974 963 975 msgid "Cache directory %s is not writable." 964 976 msgstr "A pasta de cache %s não tem acesso de escrita." -
locales/ro/main.po
r1592 r1705 936 936 937 937 #, php-format 938 msgid "Dotclear needs a directory write cache to function properly. You need to create a designated area in the line \"DC_TPL_CACHE\" in the file inc/config.php in your system and assign rights to read, write and execute for everyone." 939 msgstr "" 940 941 msgid "Dotclear needs a directory write cache to function properly. You must contact your administrator." 942 msgstr "" 943 944 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must create this directory in the specified location, or change the settings and assign permissions to read, write and execute for everyone." 945 msgstr "" 946 947 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must contact your administrator." 948 msgstr "" 949 938 950 msgid "Cache directory %s is not writable." 939 951 msgstr "" -
locales/ru/main.po
r1592 r1705 958 958 959 959 #, php-format 960 msgid "Dotclear needs a directory write cache to function properly. You need to create a designated area in the line \"DC_TPL_CACHE\" in the file inc/config.php in your system and assign rights to read, write and execute for everyone." 961 msgstr "" 962 963 msgid "Dotclear needs a directory write cache to function properly. You must contact your administrator." 964 msgstr "" 965 966 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must create this directory in the specified location, or change the settings and assign permissions to read, write and execute for everyone." 967 msgstr "" 968 969 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must contact your administrator." 970 msgstr "" 971 960 972 msgid "Cache directory %s is not writable." 961 973 msgstr "Директория для кэширования %s не доступна для записи." -
locales/sr/main.po
r1592 r1705 969 969 970 970 #, php-format 971 msgid "Dotclear needs a directory write cache to function properly. You need to create a designated area in the line \"DC_TPL_CACHE\" in the file inc/config.php in your system and assign rights to read, write and execute for everyone." 972 msgstr "" 973 974 msgid "Dotclear needs a directory write cache to function properly. You must contact your administrator." 975 msgstr "" 976 977 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must create this directory in the specified location, or change the settings and assign permissions to read, write and execute for everyone." 978 msgstr "" 979 980 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must contact your administrator." 981 msgstr "" 982 971 983 msgid "Cache directory %s is not writable." 972 984 msgstr "Le répertoire de cache %s n'est pas accessible en écriture." -
locales/sv/main.po
r1592 r1705 934 934 935 935 #, php-format 936 msgid "Dotclear needs a directory write cache to function properly. You need to create a designated area in the line \"DC_TPL_CACHE\" in the file inc/config.php in your system and assign rights to read, write and execute for everyone." 937 msgstr "" 938 939 msgid "Dotclear needs a directory write cache to function properly. You must contact your administrator." 940 msgstr "" 941 942 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must create this directory in the specified location, or change the settings and assign permissions to read, write and execute for everyone." 943 msgstr "" 944 945 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must contact your administrator." 946 msgstr "" 947 936 948 msgid "Cache directory %s is not writable." 937 949 msgstr "" -
locales/te/main.po
r1592 r1705 967 967 968 968 #, php-format 969 msgid "Dotclear needs a directory write cache to function properly. You need to create a designated area in the line \"DC_TPL_CACHE\" in the file inc/config.php in your system and assign rights to read, write and execute for everyone." 970 msgstr "" 971 972 msgid "Dotclear needs a directory write cache to function properly. You must contact your administrator." 973 msgstr "" 974 975 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must create this directory in the specified location, or change the settings and assign permissions to read, write and execute for everyone." 976 msgstr "" 977 978 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must contact your administrator." 979 msgstr "" 980 969 981 msgid "Cache directory %s is not writable." 970 982 msgstr "" -
locales/tr/main.po
r1592 r1705 951 951 952 952 #, php-format 953 msgid "Dotclear needs a directory write cache to function properly. You need to create a designated area in the line \"DC_TPL_CACHE\" in the file inc/config.php in your system and assign rights to read, write and execute for everyone." 954 msgstr "" 955 956 msgid "Dotclear needs a directory write cache to function properly. You must contact your administrator." 957 msgstr "" 958 959 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must create this directory in the specified location, or change the settings and assign permissions to read, write and execute for everyone." 960 msgstr "" 961 962 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must contact your administrator." 963 msgstr "" 964 953 965 msgid "Cache directory %s is not writable." 954 966 msgstr "" -
locales/zh-cn/main.po
r1592 r1705 958 958 959 959 #, php-format 960 msgid "Dotclear needs a directory write cache to function properly. You need to create a designated area in the line \"DC_TPL_CACHE\" in the file inc/config.php in your system and assign rights to read, write and execute for everyone." 961 msgstr "" 962 963 msgid "Dotclear needs a directory write cache to function properly. You must contact your administrator." 964 msgstr "" 965 966 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must create this directory in the specified location, or change the settings and assign permissions to read, write and execute for everyone." 967 msgstr "" 968 969 msgid "There is no directory /public/ write to the location indicated in about:config \"public_path\". You must contact your administrator." 970 msgstr "" 971 960 972 msgid "Cache directory %s is not writable." 961 973 msgstr "缓存目录 %s 不可写。"
Note: See TracChangeset
for help on using the changeset viewer.