@@ -1,7 +1,7 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | if (!defined('_ECRIRE_INC_VERSION')) { |
| 4 | - return; |
|
| 4 | + return; |
|
| 5 | 5 | } |
| 6 | 6 | |
| 7 | 7 | include_spip('inc/bandeau'); |
@@ -1,7 +1,7 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | if (!defined('_ECRIRE_INC_VERSION')) { |
| 4 | - return; |
|
| 4 | + return; |
|
| 5 | 5 | } |
| 6 | 6 | |
| 7 | 7 | include_spip('inc/bandeau'); |
@@ -1,7 +1,7 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | if (!defined('_ECRIRE_INC_VERSION')) { |
| 4 | - return; |
|
| 4 | + return; |
|
| 5 | 5 | } |
| 6 | 6 | |
| 7 | 7 | include_spip('inc/bandeau'); |
@@ -19,7 +19,7 @@ |
||
| 19 | 19 | **/ |
| 20 | 20 | |
| 21 | 21 | if (!defined('_ECRIRE_INC_VERSION')) { |
| 22 | - return; |
|
| 22 | + return; |
|
| 23 | 23 | } |
| 24 | 24 | |
| 25 | 25 | load_charset('iso-8859-1'); |
@@ -21,7 +21,7 @@ |
||
| 21 | 21 | **/ |
| 22 | 22 | |
| 23 | 23 | if (!defined('_ECRIRE_INC_VERSION')) { |
| 24 | - return; |
|
| 24 | + return; |
|
| 25 | 25 | } |
| 26 | 26 | |
| 27 | 27 | include_spip('base/objets'); |
@@ -12,7 +12,7 @@ |
||
| 12 | 12 | |
| 13 | 13 | # ou est l'espace prive ? |
| 14 | 14 | if (!defined('_DIR_RESTREINT_ABS')) { |
| 15 | - define('_DIR_RESTREINT_ABS', 'ecrire/'); |
|
| 15 | + define('_DIR_RESTREINT_ABS', 'ecrire/'); |
|
| 16 | 16 | } |
| 17 | 17 | include_once _DIR_RESTREINT_ABS.'inc_version.php'; |
| 18 | 18 | |
@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | * Code HTML du formulaire |
| 79 | 79 | */ |
| 80 | 80 | function redirige_action_auteur($action, $arg, $ret, $gra = '', $mode = false, $atts = '', $public = false) { |
| 81 | - $r = ($public ? _DIR_RESTREINT_ABS : _DIR_RESTREINT) . generer_url_ecrire($ret, $gra, true, true); |
|
| 81 | + $r = ($public ? _DIR_RESTREINT_ABS : _DIR_RESTREINT).generer_url_ecrire($ret, $gra, true, true); |
|
| 82 | 82 | |
| 83 | 83 | return generer_action_auteur($action, $arg, $r, $mode, $atts, $public); |
| 84 | 84 | } |
@@ -105,9 +105,9 @@ discard block |
||
| 105 | 105 | * URL, code HTML du formulaire ou tableau (action, arg, hash) |
| 106 | 106 | */ |
| 107 | 107 | function redirige_action_post($action, $arg, $ret, $gra, $corps, $att = '') { |
| 108 | - $r = _DIR_RESTREINT . generer_url_ecrire($ret, $gra, false, true); |
|
| 108 | + $r = _DIR_RESTREINT.generer_url_ecrire($ret, $gra, false, true); |
|
| 109 | 109 | |
| 110 | - return generer_action_auteur($action, $arg, $r, $corps, $att . " method='post'"); |
|
| 110 | + return generer_action_auteur($action, $arg, $r, $corps, $att." method='post'"); |
|
| 111 | 111 | } |
| 112 | 112 | |
| 113 | 113 | |
@@ -138,8 +138,8 @@ discard block |
||
| 138 | 138 | } |
| 139 | 139 | |
| 140 | 140 | $c = $GLOBALS['meta']['charset']; |
| 141 | - header('Content-Type: ' . $content_type . '; charset=' . $c); |
|
| 142 | - $debut = (($xml and strlen(trim($corps))) ? '<' . "?xml version='1.0' encoding='" . $c . "'?" . ">\n" : ''); |
|
| 141 | + header('Content-Type: '.$content_type.'; charset='.$c); |
|
| 142 | + $debut = (($xml and strlen(trim($corps))) ? '<'."?xml version='1.0' encoding='".$c."'?".">\n" : ''); |
|
| 143 | 143 | $fin = ''; |
| 144 | 144 | |
| 145 | 145 | echo $debut, $corps, $fin, $e; |
@@ -17,7 +17,7 @@ discard block |
||
| 17 | 17 | **/ |
| 18 | 18 | |
| 19 | 19 | if (!defined('_ECRIRE_INC_VERSION')) { |
| 20 | - return; |
|
| 20 | + return; |
|
| 21 | 21 | } |
| 22 | 22 | |
| 23 | 23 | /** |
@@ -43,9 +43,9 @@ discard block |
||
| 43 | 43 | * URL, code HTML du formulaire ou tableau (action, arg, hash) |
| 44 | 44 | */ |
| 45 | 45 | function generer_action_auteur($action, $arg = '', $redirect = '', $mode = false, $att = '', $public = false) { |
| 46 | - $securiser_action = charger_fonction('securiser_action', 'inc'); |
|
| 46 | + $securiser_action = charger_fonction('securiser_action', 'inc'); |
|
| 47 | 47 | |
| 48 | - return $securiser_action($action, $arg, $redirect, $mode, $att, $public); |
|
| 48 | + return $securiser_action($action, $arg, $redirect, $mode, $att, $public); |
|
| 49 | 49 | } |
| 50 | 50 | |
| 51 | 51 | /** |
@@ -78,9 +78,9 @@ discard block |
||
| 78 | 78 | * Code HTML du formulaire |
| 79 | 79 | */ |
| 80 | 80 | function redirige_action_auteur($action, $arg, $ret, $gra = '', $mode = false, $atts = '', $public = false) { |
| 81 | - $r = ($public ? _DIR_RESTREINT_ABS : _DIR_RESTREINT) . generer_url_ecrire($ret, $gra, true, true); |
|
| 81 | + $r = ($public ? _DIR_RESTREINT_ABS : _DIR_RESTREINT) . generer_url_ecrire($ret, $gra, true, true); |
|
| 82 | 82 | |
| 83 | - return generer_action_auteur($action, $arg, $r, $mode, $atts, $public); |
|
| 83 | + return generer_action_auteur($action, $arg, $r, $mode, $atts, $public); |
|
| 84 | 84 | } |
| 85 | 85 | |
| 86 | 86 | /** |
@@ -105,9 +105,9 @@ discard block |
||
| 105 | 105 | * URL, code HTML du formulaire ou tableau (action, arg, hash) |
| 106 | 106 | */ |
| 107 | 107 | function redirige_action_post($action, $arg, $ret, $gra, $corps, $att = '') { |
| 108 | - $r = _DIR_RESTREINT . generer_url_ecrire($ret, $gra, false, true); |
|
| 108 | + $r = _DIR_RESTREINT . generer_url_ecrire($ret, $gra, false, true); |
|
| 109 | 109 | |
| 110 | - return generer_action_auteur($action, $arg, $r, $corps, $att . " method='post'"); |
|
| 110 | + return generer_action_auteur($action, $arg, $r, $corps, $att . " method='post'"); |
|
| 111 | 111 | } |
| 112 | 112 | |
| 113 | 113 | |
@@ -122,26 +122,26 @@ discard block |
||
| 122 | 122 | * passer "text/html" comme $content_type |
| 123 | 123 | */ |
| 124 | 124 | function ajax_retour($corps, $content_type = null) { |
| 125 | - $xml = false; |
|
| 126 | - if (is_null($content_type) or $content_type === true) { |
|
| 127 | - $xml = true; |
|
| 128 | - $content_type = 'text/html'; |
|
| 129 | - } elseif (!$content_type or !is_string($content_type) or strpos($content_type, '/') === false) { |
|
| 130 | - $content_type = 'text/html'; |
|
| 131 | - } |
|
| 125 | + $xml = false; |
|
| 126 | + if (is_null($content_type) or $content_type === true) { |
|
| 127 | + $xml = true; |
|
| 128 | + $content_type = 'text/html'; |
|
| 129 | + } elseif (!$content_type or !is_string($content_type) or strpos($content_type, '/') === false) { |
|
| 130 | + $content_type = 'text/html'; |
|
| 131 | + } |
|
| 132 | 132 | |
| 133 | - $e = ''; |
|
| 134 | - if ( |
|
| 135 | - isset($_COOKIE['spip_admin']) |
|
| 136 | - and ((_request('var_mode') == 'debug') or !empty($GLOBALS['tableau_des_temps'])) |
|
| 137 | - ) { |
|
| 138 | - $e = erreur_squelette(); |
|
| 139 | - } |
|
| 133 | + $e = ''; |
|
| 134 | + if ( |
|
| 135 | + isset($_COOKIE['spip_admin']) |
|
| 136 | + and ((_request('var_mode') == 'debug') or !empty($GLOBALS['tableau_des_temps'])) |
|
| 137 | + ) { |
|
| 138 | + $e = erreur_squelette(); |
|
| 139 | + } |
|
| 140 | 140 | |
| 141 | - $c = $GLOBALS['meta']['charset']; |
|
| 142 | - header('Content-Type: ' . $content_type . '; charset=' . $c); |
|
| 143 | - $debut = (($xml and strlen(trim($corps))) ? '<' . "?xml version='1.0' encoding='" . $c . "'?" . ">\n" : ''); |
|
| 144 | - $fin = ''; |
|
| 141 | + $c = $GLOBALS['meta']['charset']; |
|
| 142 | + header('Content-Type: ' . $content_type . '; charset=' . $c); |
|
| 143 | + $debut = (($xml and strlen(trim($corps))) ? '<' . "?xml version='1.0' encoding='" . $c . "'?" . ">\n" : ''); |
|
| 144 | + $fin = ''; |
|
| 145 | 145 | |
| 146 | - echo $debut, $corps, $fin, $e; |
|
| 146 | + echo $debut, $corps, $fin, $e; |
|
| 147 | 147 | } |
@@ -4,118 +4,118 @@ |
||
| 4 | 4 | // ** ne pas modifier le fichier ** |
| 5 | 5 | |
| 6 | 6 | if (!defined('_ECRIRE_INC_VERSION')) { |
| 7 | - return; |
|
| 7 | + return; |
|
| 8 | 8 | } |
| 9 | 9 | |
| 10 | 10 | $GLOBALS[$GLOBALS['idx_lang']] = array( |
| 11 | 11 | |
| 12 | - // A |
|
| 13 | - 'accueil_site' => 'ホーム', |
|
| 14 | - 'article' => '記事', |
|
| 15 | - 'articles' => '記事', |
|
| 16 | - 'articles_auteur' => 'この著者の記事', |
|
| 17 | - 'articles_populaires' => '人気のある記事', |
|
| 18 | - 'articles_rubrique' => 'このセクションにある記事', |
|
| 19 | - 'aucun_article' => 'このアドレスに記事はありません', |
|
| 20 | - 'aucun_auteur' => 'このアドレスに著者はいません', |
|
| 21 | - 'aucun_site' => 'このアドレスにサイトはありません', |
|
| 22 | - 'aucune_breve' => 'このアドレスにニュースはありません', |
|
| 23 | - 'aucune_rubrique' => 'このアドレスにセクションはありません', |
|
| 24 | - 'auteur' => '著者', |
|
| 25 | - 'autres' => 'その他', |
|
| 26 | - 'autres_breves' => '他のニュース', |
|
| 27 | - 'autres_groupes_mots_clefs' => 'キーワードの他のグループ', |
|
| 28 | - 'autres_sites' => '他のサイト', |
|
| 29 | - |
|
| 30 | - // B |
|
| 31 | - 'bonjour' => 'こんにちは', |
|
| 32 | - |
|
| 33 | - // C |
|
| 34 | - 'commenter_site' => 'このサイトについてコメントして下さい', |
|
| 35 | - 'contact' => '連絡先', |
|
| 36 | - 'copie_document_impossible' => 'ファイルのコーピは不可能です', |
|
| 37 | - |
|
| 38 | - // D |
|
| 39 | - 'date' => '日付', |
|
| 40 | - 'dernier_ajout' => '最新の追加', |
|
| 41 | - 'dernieres_breves' => '最新のニュース', |
|
| 42 | - 'derniers_articles' => '最新の記事', |
|
| 43 | - 'derniers_commentaires' => '最新のコメント', |
|
| 44 | - 'derniers_messages_forum' => 'フォーラムで投稿された最新のメッセージ', |
|
| 45 | - |
|
| 46 | - // E |
|
| 47 | - 'edition_mode_texte' => 'テキストモード編集', |
|
| 48 | - 'en_reponse' => '返事として:', |
|
| 49 | - 'en_resume' => 'まとめとして', |
|
| 50 | - 'envoyer_message' => 'メッセージを送る', |
|
| 51 | - 'espace_prive' => '管理エリア', |
|
| 52 | - |
|
| 53 | - // F |
|
| 54 | - 'formats_acceptes' => '受け入れるファイルのフォーマット: @formats@です。', |
|
| 55 | - |
|
| 56 | - // H |
|
| 57 | - 'hierarchie_site' => 'サイトの階層', |
|
| 58 | - |
|
| 59 | - // J |
|
| 60 | - 'jours' => '日付', |
|
| 61 | - |
|
| 62 | - // L |
|
| 63 | - 'lien_connecter' => 'ログイン', |
|
| 64 | - |
|
| 65 | - // M |
|
| 66 | - 'meme_auteur' => '同じ著者', |
|
| 67 | - 'meme_rubrique' => '同じセクションの中で', |
|
| 68 | - 'memes_auteurs' => '同じ著者', |
|
| 69 | - 'message' => 'フォーラムのメッセージ', |
|
| 70 | - 'messages_forum' => 'フォーラムのメッセージ', |
|
| 71 | - 'messages_recents' => '最新のフォーラムのメッセージ', |
|
| 72 | - 'mots_clef' => 'キーワード', |
|
| 73 | - 'mots_clefs' => 'キーワード', |
|
| 74 | - 'mots_clefs_meme_groupe' => '同じグループのキーワード', |
|
| 75 | - |
|
| 76 | - // N |
|
| 77 | - 'navigation' => 'ナビゲーション', |
|
| 78 | - 'nom' => 'お名前', |
|
| 79 | - 'nouveautes' => '最新刊', |
|
| 80 | - 'nouveautes_web' => 'ウェブに関する最新刊', |
|
| 81 | - 'nouveaux_articles' => '新しい記事', |
|
| 82 | - 'nouvelles_breves' => '新しいニュース', |
|
| 83 | - |
|
| 84 | - // P |
|
| 85 | - 'page_precedente' => '前のページ', |
|
| 86 | - 'page_suivante' => '次のページ', |
|
| 87 | - 'par_auteur' => '著者:', |
|
| 88 | - 'participer_site' => 'サインアップすると、サイトにご自分の記事を書くことが出来ます。申し込みしてから、管理エリアへのアクセスコードがメールで届きます。', |
|
| 89 | - 'plan_site' => 'サイトマップ', |
|
| 90 | - 'popularite' => '人気', |
|
| 91 | - 'poster_message' => 'メッセージを投稿する', |
|
| 92 | - 'proposer_site' => '追加するサイトを提案できるセクション:', |
|
| 93 | - |
|
| 94 | - // R |
|
| 95 | - 'repondre_article' => 'この記事に返信する', |
|
| 96 | - 'repondre_breve' => 'このニュースに返信する', |
|
| 97 | - 'resultats_recherche' => '検索結果', |
|
| 98 | - 'retour_debut_forums' => 'フォーラムの最初のページに戻る', |
|
| 99 | - 'rubrique' => 'セクション', |
|
| 100 | - 'rubriques' => 'セクション', |
|
| 101 | - |
|
| 102 | - // S |
|
| 103 | - 'signatures_petition' => '署名', |
|
| 104 | - 'site_realise_avec_spip' => 'SPIPで創造されたサイトです', |
|
| 105 | - 'sites_web' => 'ウェブサイト', |
|
| 106 | - 'sous_rubriques' => 'サブセクション', |
|
| 107 | - 'spam' => '迷惑メール', |
|
| 108 | - 'suite' => '次へ', |
|
| 109 | - 'sur_web' => 'ウェブ上', |
|
| 110 | - 'syndiquer_rubrique' => 'このセクションを供給する', |
|
| 111 | - 'syndiquer_site' => '全サイトを供給する', |
|
| 112 | - |
|
| 113 | - // T |
|
| 114 | - 'texte_lettre_information' => 'サイトのニュースレター', |
|
| 115 | - 'texte_lettre_information_2' => '最新刊をまとめるニュースレター', |
|
| 116 | - |
|
| 117 | - // V |
|
| 118 | - 'ver_imprimer' => '印刷用のバージョン', |
|
| 119 | - 'voir_en_ligne' => 'オンラインで見る', |
|
| 120 | - 'voir_squelette' => 'ページのテンプレートを見る' |
|
| 12 | + // A |
|
| 13 | + 'accueil_site' => 'ホーム', |
|
| 14 | + 'article' => '記事', |
|
| 15 | + 'articles' => '記事', |
|
| 16 | + 'articles_auteur' => 'この著者の記事', |
|
| 17 | + 'articles_populaires' => '人気のある記事', |
|
| 18 | + 'articles_rubrique' => 'このセクションにある記事', |
|
| 19 | + 'aucun_article' => 'このアドレスに記事はありません', |
|
| 20 | + 'aucun_auteur' => 'このアドレスに著者はいません', |
|
| 21 | + 'aucun_site' => 'このアドレスにサイトはありません', |
|
| 22 | + 'aucune_breve' => 'このアドレスにニュースはありません', |
|
| 23 | + 'aucune_rubrique' => 'このアドレスにセクションはありません', |
|
| 24 | + 'auteur' => '著者', |
|
| 25 | + 'autres' => 'その他', |
|
| 26 | + 'autres_breves' => '他のニュース', |
|
| 27 | + 'autres_groupes_mots_clefs' => 'キーワードの他のグループ', |
|
| 28 | + 'autres_sites' => '他のサイト', |
|
| 29 | + |
|
| 30 | + // B |
|
| 31 | + 'bonjour' => 'こんにちは', |
|
| 32 | + |
|
| 33 | + // C |
|
| 34 | + 'commenter_site' => 'このサイトについてコメントして下さい', |
|
| 35 | + 'contact' => '連絡先', |
|
| 36 | + 'copie_document_impossible' => 'ファイルのコーピは不可能です', |
|
| 37 | + |
|
| 38 | + // D |
|
| 39 | + 'date' => '日付', |
|
| 40 | + 'dernier_ajout' => '最新の追加', |
|
| 41 | + 'dernieres_breves' => '最新のニュース', |
|
| 42 | + 'derniers_articles' => '最新の記事', |
|
| 43 | + 'derniers_commentaires' => '最新のコメント', |
|
| 44 | + 'derniers_messages_forum' => 'フォーラムで投稿された最新のメッセージ', |
|
| 45 | + |
|
| 46 | + // E |
|
| 47 | + 'edition_mode_texte' => 'テキストモード編集', |
|
| 48 | + 'en_reponse' => '返事として:', |
|
| 49 | + 'en_resume' => 'まとめとして', |
|
| 50 | + 'envoyer_message' => 'メッセージを送る', |
|
| 51 | + 'espace_prive' => '管理エリア', |
|
| 52 | + |
|
| 53 | + // F |
|
| 54 | + 'formats_acceptes' => '受け入れるファイルのフォーマット: @formats@です。', |
|
| 55 | + |
|
| 56 | + // H |
|
| 57 | + 'hierarchie_site' => 'サイトの階層', |
|
| 58 | + |
|
| 59 | + // J |
|
| 60 | + 'jours' => '日付', |
|
| 61 | + |
|
| 62 | + // L |
|
| 63 | + 'lien_connecter' => 'ログイン', |
|
| 64 | + |
|
| 65 | + // M |
|
| 66 | + 'meme_auteur' => '同じ著者', |
|
| 67 | + 'meme_rubrique' => '同じセクションの中で', |
|
| 68 | + 'memes_auteurs' => '同じ著者', |
|
| 69 | + 'message' => 'フォーラムのメッセージ', |
|
| 70 | + 'messages_forum' => 'フォーラムのメッセージ', |
|
| 71 | + 'messages_recents' => '最新のフォーラムのメッセージ', |
|
| 72 | + 'mots_clef' => 'キーワード', |
|
| 73 | + 'mots_clefs' => 'キーワード', |
|
| 74 | + 'mots_clefs_meme_groupe' => '同じグループのキーワード', |
|
| 75 | + |
|
| 76 | + // N |
|
| 77 | + 'navigation' => 'ナビゲーション', |
|
| 78 | + 'nom' => 'お名前', |
|
| 79 | + 'nouveautes' => '最新刊', |
|
| 80 | + 'nouveautes_web' => 'ウェブに関する最新刊', |
|
| 81 | + 'nouveaux_articles' => '新しい記事', |
|
| 82 | + 'nouvelles_breves' => '新しいニュース', |
|
| 83 | + |
|
| 84 | + // P |
|
| 85 | + 'page_precedente' => '前のページ', |
|
| 86 | + 'page_suivante' => '次のページ', |
|
| 87 | + 'par_auteur' => '著者:', |
|
| 88 | + 'participer_site' => 'サインアップすると、サイトにご自分の記事を書くことが出来ます。申し込みしてから、管理エリアへのアクセスコードがメールで届きます。', |
|
| 89 | + 'plan_site' => 'サイトマップ', |
|
| 90 | + 'popularite' => '人気', |
|
| 91 | + 'poster_message' => 'メッセージを投稿する', |
|
| 92 | + 'proposer_site' => '追加するサイトを提案できるセクション:', |
|
| 93 | + |
|
| 94 | + // R |
|
| 95 | + 'repondre_article' => 'この記事に返信する', |
|
| 96 | + 'repondre_breve' => 'このニュースに返信する', |
|
| 97 | + 'resultats_recherche' => '検索結果', |
|
| 98 | + 'retour_debut_forums' => 'フォーラムの最初のページに戻る', |
|
| 99 | + 'rubrique' => 'セクション', |
|
| 100 | + 'rubriques' => 'セクション', |
|
| 101 | + |
|
| 102 | + // S |
|
| 103 | + 'signatures_petition' => '署名', |
|
| 104 | + 'site_realise_avec_spip' => 'SPIPで創造されたサイトです', |
|
| 105 | + 'sites_web' => 'ウェブサイト', |
|
| 106 | + 'sous_rubriques' => 'サブセクション', |
|
| 107 | + 'spam' => '迷惑メール', |
|
| 108 | + 'suite' => '次へ', |
|
| 109 | + 'sur_web' => 'ウェブ上', |
|
| 110 | + 'syndiquer_rubrique' => 'このセクションを供給する', |
|
| 111 | + 'syndiquer_site' => '全サイトを供給する', |
|
| 112 | + |
|
| 113 | + // T |
|
| 114 | + 'texte_lettre_information' => 'サイトのニュースレター', |
|
| 115 | + 'texte_lettre_information_2' => '最新刊をまとめるニュースレター', |
|
| 116 | + |
|
| 117 | + // V |
|
| 118 | + 'ver_imprimer' => '印刷用のバージョン', |
|
| 119 | + 'voir_en_ligne' => 'オンラインで見る', |
|
| 120 | + 'voir_squelette' => 'ページのテンプレートを見る' |
|
| 121 | 121 | ); |
@@ -4,118 +4,118 @@ |
||
| 4 | 4 | // ** ne pas modifier le fichier ** |
| 5 | 5 | |
| 6 | 6 | if (!defined('_ECRIRE_INC_VERSION')) { |
| 7 | - return; |
|
| 7 | + return; |
|
| 8 | 8 | } |
| 9 | 9 | |
| 10 | 10 | $GLOBALS[$GLOBALS['idx_lang']] = array( |
| 11 | 11 | |
| 12 | - // A |
|
| 13 | - 'accueil_site' => 'Homepagina', |
|
| 14 | - 'article' => 'Artikel', |
|
| 15 | - 'articles' => 'Artikelen', |
|
| 16 | - 'articles_auteur' => 'Artikelen van deze auteur', |
|
| 17 | - 'articles_populaires' => 'Meest bekeken artikelen', |
|
| 18 | - 'articles_rubrique' => 'Artikelen in deze rubriek', |
|
| 19 | - 'aucun_article' => 'Op dit adres is geen artikel te vinden', |
|
| 20 | - 'aucun_auteur' => 'Op dit adres is geen auteur te vinden', |
|
| 21 | - 'aucun_site' => 'Op dit adres is geen site te vinden', |
|
| 22 | - 'aucune_breve' => 'Op dit adres is geen nieuwsflits te vinden', |
|
| 23 | - 'aucune_rubrique' => 'Op dit adres is geen rubriek te vinden', |
|
| 24 | - 'auteur' => 'Auteur', |
|
| 25 | - 'autres' => 'Anderen', |
|
| 26 | - 'autres_breves' => 'Andere nieuwsflitsen', |
|
| 27 | - 'autres_groupes_mots_clefs' => 'Andere groepen trefwoorden', |
|
| 28 | - 'autres_sites' => 'Andere sites', |
|
| 29 | - |
|
| 30 | - // B |
|
| 31 | - 'bonjour' => 'Hallo', |
|
| 32 | - |
|
| 33 | - // C |
|
| 34 | - 'commenter_site' => 'Reageren op de site', |
|
| 35 | - 'contact' => 'Contact', |
|
| 36 | - 'copie_document_impossible' => 'Het is niet mogelijk het document te kopiëren', |
|
| 37 | - |
|
| 38 | - // D |
|
| 39 | - 'date' => 'Datum', |
|
| 40 | - 'dernier_ajout' => 'Laatste toevoeging', |
|
| 41 | - 'dernieres_breves' => 'Laatste nieuwsflitsen', |
|
| 42 | - 'derniers_articles' => 'Laatste artikelen', |
|
| 43 | - 'derniers_commentaires' => 'Laatste commentaren', |
|
| 44 | - 'derniers_messages_forum' => 'Laatst gepubliceerde berichten in het forum', |
|
| 45 | - |
|
| 46 | - // E |
|
| 47 | - 'edition_mode_texte' => 'Uitgave in tekstmodus van', |
|
| 48 | - 'en_reponse' => 'Als antwoord op:', |
|
| 49 | - 'en_resume' => 'Samengevat', |
|
| 50 | - 'envoyer_message' => 'Een bericht sturen', |
|
| 51 | - 'espace_prive' => 'Privé gedeelte', |
|
| 52 | - |
|
| 53 | - // F |
|
| 54 | - 'formats_acceptes' => 'Toegelaten formaten: @formats@.', |
|
| 55 | - |
|
| 56 | - // H |
|
| 57 | - 'hierarchie_site' => 'Structuur van de site', |
|
| 58 | - |
|
| 59 | - // J |
|
| 60 | - 'jours' => 'dagen', |
|
| 61 | - |
|
| 62 | - // L |
|
| 63 | - 'lien_connecter' => 'Aanmelden', |
|
| 64 | - |
|
| 65 | - // M |
|
| 66 | - 'meme_auteur' => 'Van dezelfde auteur', |
|
| 67 | - 'meme_rubrique' => 'In dezelfde rubriek', |
|
| 68 | - 'memes_auteurs' => 'Van dezelfde auteurs', |
|
| 69 | - 'message' => 'Bericht', |
|
| 70 | - 'messages_forum' => 'Berichten', |
|
| 71 | - 'messages_recents' => 'Meest recente forumberichten', |
|
| 72 | - 'mots_clef' => 'Trefwoord', |
|
| 73 | - 'mots_clefs' => 'Trefwoorden', |
|
| 74 | - 'mots_clefs_meme_groupe' => 'Trefwoorden van dezelfde groep', |
|
| 75 | - |
|
| 76 | - // N |
|
| 77 | - 'navigation' => 'Navigatie', |
|
| 78 | - 'nom' => 'Naam', |
|
| 79 | - 'nouveautes' => 'Nieuwigheden', |
|
| 80 | - 'nouveautes_web' => 'Nieuwigheden op het Web', |
|
| 81 | - 'nouveaux_articles' => 'Nieuwe artikelen', |
|
| 82 | - 'nouvelles_breves' => 'Nieuwe nieuwsflitsen', |
|
| 83 | - |
|
| 84 | - // P |
|
| 85 | - 'page_precedente' => 'vorige pagina', |
|
| 86 | - 'page_suivante' => 'volgende pagina', |
|
| 87 | - 'par_auteur' => 'door ', |
|
| 88 | - 'participer_site' => 'Wanneer je je hieronder inschrijft, kun je zelf een bijdrage leveren aan deze site door je eigen artikelen voor te stellen. Je ontvangt meteen een e-mail met daarin de toegangscode voor het privé-gedeelte van de site.', |
|
| 89 | - 'plan_site' => 'Overzicht van de site', |
|
| 90 | - 'popularite' => 'Populariteit', |
|
| 91 | - 'poster_message' => 'Een bericht plaatsen', |
|
| 92 | - 'proposer_site' => 'Je kan voorstellen een site in deze rubriek op te nemen:', |
|
| 93 | - |
|
| 94 | - // R |
|
| 95 | - 'repondre_article' => 'Dit artikel beantwoorden', |
|
| 96 | - 'repondre_breve' => 'Op deze nieuwsflits reageren', |
|
| 97 | - 'resultats_recherche' => 'Resultaten van de zoekopdracht', |
|
| 98 | - 'retour_debut_forums' => 'Terug naar de startpagina van de forums', |
|
| 99 | - 'rubrique' => 'Rubriek', |
|
| 100 | - 'rubriques' => 'Rubrieken', |
|
| 101 | - |
|
| 102 | - // S |
|
| 103 | - 'signatures_petition' => 'Ondertekeningen', |
|
| 104 | - 'site_realise_avec_spip' => 'Site gebouwd met SPIP', |
|
| 105 | - 'sites_web' => 'Websites', |
|
| 106 | - 'sous_rubriques' => 'Subrubrieken', |
|
| 107 | - 'spam' => 'Spam', |
|
| 108 | - 'suite' => 'vervolg', |
|
| 109 | - 'sur_web' => 'Op het web', |
|
| 110 | - 'syndiquer_rubrique' => 'Nieuws overnemen uit deze rubriek', |
|
| 111 | - 'syndiquer_site' => 'Nieuws overnemen van de hele site', |
|
| 112 | - |
|
| 113 | - // T |
|
| 114 | - 'texte_lettre_information' => 'Dit is de nieuwsbrief van de site', |
|
| 115 | - 'texte_lettre_information_2' => 'Deze nieuwsbrief toont de publicaties vanaf', |
|
| 116 | - |
|
| 117 | - // V |
|
| 118 | - 'ver_imprimer' => 'Afdrukversie', |
|
| 119 | - 'voir_en_ligne' => 'Online bekijken', |
|
| 120 | - 'voir_squelette' => 'het skelet van deze bladzijde bekijken' |
|
| 12 | + // A |
|
| 13 | + 'accueil_site' => 'Homepagina', |
|
| 14 | + 'article' => 'Artikel', |
|
| 15 | + 'articles' => 'Artikelen', |
|
| 16 | + 'articles_auteur' => 'Artikelen van deze auteur', |
|
| 17 | + 'articles_populaires' => 'Meest bekeken artikelen', |
|
| 18 | + 'articles_rubrique' => 'Artikelen in deze rubriek', |
|
| 19 | + 'aucun_article' => 'Op dit adres is geen artikel te vinden', |
|
| 20 | + 'aucun_auteur' => 'Op dit adres is geen auteur te vinden', |
|
| 21 | + 'aucun_site' => 'Op dit adres is geen site te vinden', |
|
| 22 | + 'aucune_breve' => 'Op dit adres is geen nieuwsflits te vinden', |
|
| 23 | + 'aucune_rubrique' => 'Op dit adres is geen rubriek te vinden', |
|
| 24 | + 'auteur' => 'Auteur', |
|
| 25 | + 'autres' => 'Anderen', |
|
| 26 | + 'autres_breves' => 'Andere nieuwsflitsen', |
|
| 27 | + 'autres_groupes_mots_clefs' => 'Andere groepen trefwoorden', |
|
| 28 | + 'autres_sites' => 'Andere sites', |
|
| 29 | + |
|
| 30 | + // B |
|
| 31 | + 'bonjour' => 'Hallo', |
|
| 32 | + |
|
| 33 | + // C |
|
| 34 | + 'commenter_site' => 'Reageren op de site', |
|
| 35 | + 'contact' => 'Contact', |
|
| 36 | + 'copie_document_impossible' => 'Het is niet mogelijk het document te kopiëren', |
|
| 37 | + |
|
| 38 | + // D |
|
| 39 | + 'date' => 'Datum', |
|
| 40 | + 'dernier_ajout' => 'Laatste toevoeging', |
|
| 41 | + 'dernieres_breves' => 'Laatste nieuwsflitsen', |
|
| 42 | + 'derniers_articles' => 'Laatste artikelen', |
|
| 43 | + 'derniers_commentaires' => 'Laatste commentaren', |
|
| 44 | + 'derniers_messages_forum' => 'Laatst gepubliceerde berichten in het forum', |
|
| 45 | + |
|
| 46 | + // E |
|
| 47 | + 'edition_mode_texte' => 'Uitgave in tekstmodus van', |
|
| 48 | + 'en_reponse' => 'Als antwoord op:', |
|
| 49 | + 'en_resume' => 'Samengevat', |
|
| 50 | + 'envoyer_message' => 'Een bericht sturen', |
|
| 51 | + 'espace_prive' => 'Privé gedeelte', |
|
| 52 | + |
|
| 53 | + // F |
|
| 54 | + 'formats_acceptes' => 'Toegelaten formaten: @formats@.', |
|
| 55 | + |
|
| 56 | + // H |
|
| 57 | + 'hierarchie_site' => 'Structuur van de site', |
|
| 58 | + |
|
| 59 | + // J |
|
| 60 | + 'jours' => 'dagen', |
|
| 61 | + |
|
| 62 | + // L |
|
| 63 | + 'lien_connecter' => 'Aanmelden', |
|
| 64 | + |
|
| 65 | + // M |
|
| 66 | + 'meme_auteur' => 'Van dezelfde auteur', |
|
| 67 | + 'meme_rubrique' => 'In dezelfde rubriek', |
|
| 68 | + 'memes_auteurs' => 'Van dezelfde auteurs', |
|
| 69 | + 'message' => 'Bericht', |
|
| 70 | + 'messages_forum' => 'Berichten', |
|
| 71 | + 'messages_recents' => 'Meest recente forumberichten', |
|
| 72 | + 'mots_clef' => 'Trefwoord', |
|
| 73 | + 'mots_clefs' => 'Trefwoorden', |
|
| 74 | + 'mots_clefs_meme_groupe' => 'Trefwoorden van dezelfde groep', |
|
| 75 | + |
|
| 76 | + // N |
|
| 77 | + 'navigation' => 'Navigatie', |
|
| 78 | + 'nom' => 'Naam', |
|
| 79 | + 'nouveautes' => 'Nieuwigheden', |
|
| 80 | + 'nouveautes_web' => 'Nieuwigheden op het Web', |
|
| 81 | + 'nouveaux_articles' => 'Nieuwe artikelen', |
|
| 82 | + 'nouvelles_breves' => 'Nieuwe nieuwsflitsen', |
|
| 83 | + |
|
| 84 | + // P |
|
| 85 | + 'page_precedente' => 'vorige pagina', |
|
| 86 | + 'page_suivante' => 'volgende pagina', |
|
| 87 | + 'par_auteur' => 'door ', |
|
| 88 | + 'participer_site' => 'Wanneer je je hieronder inschrijft, kun je zelf een bijdrage leveren aan deze site door je eigen artikelen voor te stellen. Je ontvangt meteen een e-mail met daarin de toegangscode voor het privé-gedeelte van de site.', |
|
| 89 | + 'plan_site' => 'Overzicht van de site', |
|
| 90 | + 'popularite' => 'Populariteit', |
|
| 91 | + 'poster_message' => 'Een bericht plaatsen', |
|
| 92 | + 'proposer_site' => 'Je kan voorstellen een site in deze rubriek op te nemen:', |
|
| 93 | + |
|
| 94 | + // R |
|
| 95 | + 'repondre_article' => 'Dit artikel beantwoorden', |
|
| 96 | + 'repondre_breve' => 'Op deze nieuwsflits reageren', |
|
| 97 | + 'resultats_recherche' => 'Resultaten van de zoekopdracht', |
|
| 98 | + 'retour_debut_forums' => 'Terug naar de startpagina van de forums', |
|
| 99 | + 'rubrique' => 'Rubriek', |
|
| 100 | + 'rubriques' => 'Rubrieken', |
|
| 101 | + |
|
| 102 | + // S |
|
| 103 | + 'signatures_petition' => 'Ondertekeningen', |
|
| 104 | + 'site_realise_avec_spip' => 'Site gebouwd met SPIP', |
|
| 105 | + 'sites_web' => 'Websites', |
|
| 106 | + 'sous_rubriques' => 'Subrubrieken', |
|
| 107 | + 'spam' => 'Spam', |
|
| 108 | + 'suite' => 'vervolg', |
|
| 109 | + 'sur_web' => 'Op het web', |
|
| 110 | + 'syndiquer_rubrique' => 'Nieuws overnemen uit deze rubriek', |
|
| 111 | + 'syndiquer_site' => 'Nieuws overnemen van de hele site', |
|
| 112 | + |
|
| 113 | + // T |
|
| 114 | + 'texte_lettre_information' => 'Dit is de nieuwsbrief van de site', |
|
| 115 | + 'texte_lettre_information_2' => 'Deze nieuwsbrief toont de publicaties vanaf', |
|
| 116 | + |
|
| 117 | + // V |
|
| 118 | + 'ver_imprimer' => 'Afdrukversie', |
|
| 119 | + 'voir_en_ligne' => 'Online bekijken', |
|
| 120 | + 'voir_squelette' => 'het skelet van deze bladzijde bekijken' |
|
| 121 | 121 | ); |