Changeset 1668:496eacb230d8
- Timestamp:
- 08/31/13 12:39:15 (10 years ago)
- Branch:
- default
- Files:
-
- 33 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/blogs.php
r1553 r1668 134 134 135 135 echo 136 '<table class="clear"><tr>'. 137 '<th>'.__('Blog name').'</th>'. 138 '<th class="nowrap">'.__('Last update').'</th>'. 139 '<th class="nowrap">'.__('Entries (all types)').'</th>'. 140 '<th class="nowrap">'.__('Blog ID').'</th>'. 141 '<th> </th>'. 142 '<th class="nowrap">'.__('Status').'</th>'. 136 '<table class="clear"><caption class="hidden">'.__('Blogs list').'</caption><tr>'. 137 '<th scope="col" class="nowrap">'.__('Blog id').'</th>'. 138 '<th scope="col">'.__('Blog name').'</th>'. 139 '<th scope="col" class="nowrap">'.__('Entries (all types)').'</th>'. 140 '<th scope="col" class="nowrap">'.__('Last update').'</th>'. 141 '<th scope="col" class="nowrap">'.__('Status').'</th>'. 143 142 '</tr>'; 144 143 … … 164 163 if ($GLOBALS['core']->auth->isSuperAdmin()) { 165 164 $edit_link = 166 '<a href="blog.php?id='.$blog_id.'" '. 167 'title="'.sprintf(__('Edit blog %s'),$blog_id).'">'. 168 __('edit').'</a>'; 165 '<a href="blog.php?id='.$blog_id.'" title="'.sprintf(__('Edit blog settings for %s'),$blog_id).'">'. 166 '<img src="images/edit-mini.png" alt="'.__('Edit blog settings').'" /> '.$blog_id.'</a> '; 169 167 } 170 168 … … 177 175 return 178 176 '<tr class="line">'. 177 '<td class="nowrap">'.$edit_link.'</td>'. 179 178 '<td class="maximal"><a href="index.php?switchblog='.$rs->blog_id.'" '. 180 179 'title="'.sprintf(__('Switch to blog %s'),$rs->blog_id).'">'. 181 180 html::escapeHTML($rs->blog_name).'</a></td>'. 182 '<td class="nowrap">'.$blog_upddt.'</td>'. 183 '<td class="nowrap">'.$core->countBlogPosts($rs->blog_id).'</td>'. 184 '<td class="nowrap">'.$blog_id.'</td>'. 185 '<td>'.$edit_link.'</td>'. 181 '<td class="nowrap count">'.$core->countBlogPosts($rs->blog_id).'</td>'. 182 '<td class="nowrap count">'.$blog_upddt.'</td>'. 186 183 '<td class="status">'.$img_status.'</td>'. 187 184 '</tr>'; -
admin/style/default.css
r1636 r1668 575 575 padding: 1em 3em; 576 576 vertical-align: top; 577 border: 1px solid #ccc; 577 border: 1px solid #ddd; 578 border-collapse: collapse; 579 } 580 .db-item h3 { 581 font-weight: normal; 578 582 } 579 583 #dashboard-items img { … … 1303 1307 border-style: solid; 1304 1308 border-color: #e3e3e3; 1305 padding: .3em .5em;1309 padding: .3em 1em .3em .5em; 1306 1310 vertical-align: top; 1307 1311 } … … 1311 1315 border-color: #ccc; 1312 1316 background: #f3f3ff; 1313 padding: .3em .5em;1317 padding: .3em 1em .3em .5em; 1314 1318 vertical-align: top; 1315 1319 text-align: left; … … 1336 1340 white-space: nowrap; 1337 1341 vertical-align: top; 1342 } 1343 table .count { 1344 text-align: right; 1345 padding-right: 1.5em; 1338 1346 } 1339 1347 table.settings, table.prefs { -
inc/admin/lib.pager.php
r1622 r1668 136 136 '<td class="maximal" scope="row"><a href="'.$this->core->getPostAdminURL($this->rs->post_type,$this->rs->post_id).'">'. 137 137 html::escapeHTML($this->rs->post_title).'</a></td>'. 138 '<td class="nowrap ">'.dt::dt2str(__('%Y-%m-%d %H:%M'),$this->rs->post_dt).'</td>'.138 '<td class="nowrap count">'.dt::dt2str(__('%Y-%m-%d %H:%M'),$this->rs->post_dt).'</td>'. 139 139 '<td class="nowrap">'.$cat_title.'</td>'. 140 140 '<td class="nowrap">'.html::escapeHTML($this->rs->user_id).'</td>'. 141 '<td class="nowrap ">'.$this->rs->nb_comment.'</td>'.142 '<td class="nowrap ">'.$this->rs->nb_trackback.'</td>'.141 '<td class="nowrap count">'.$this->rs->nb_comment.'</td>'. 142 '<td class="nowrap count">'.$this->rs->nb_trackback.'</td>'. 143 143 '<td class="nowrap status">'.$img_status.' '.$selected.' '.$protected.' '.$attach.'</td>'. 144 144 '</tr>'; … … 234 234 'title="'.html::escapeHTML($this->rs->getURL()).'">'. 235 235 html::escapeHTML($this->rs->post_title).'</a></td>'. 236 '<td class="nowrap ">'.dt::dt2str(__('%Y-%m-%d %H:%M'),$this->rs->post_dt).'</td>'.236 '<td class="nowrap count">'.dt::dt2str(__('%Y-%m-%d %H:%M'),$this->rs->post_dt).'</td>'. 237 237 '<td class="nowrap">'.html::escapeHTML($this->rs->user_id).'</td>'. 238 238 '<td class="nowrap status">'.$img_status.' '.$selected.' '.$protected.' '.$attach.'</td>'. … … 260 260 $html_block = 261 261 '<table><caption class="hidden">'.__('Comments and trackbacks list').'</caption><tr>'. 262 '<th colspan="3" scope="col" abbr="comm" class="first">'.__('Type and author').'</th>'. 262 '<th colspan="2" scope="col" abbr="comm" class="first">'.__('Type').'</th>'. 263 '<th scope="col">'.__('Author').'</th>'. 263 264 '<th scope="col">'.__('Date').'</th>'. 264 265 '<th scope="col" class="txt-center">'.__('Status').'</th>'. … … 326 327 $post_title = mb_strcut($post_title,0,57).'...'; 327 328 } 329 $comment_title = sprintf(__('Edit the %1$s from %2$s'), 330 $this->rs->comment_trackback ? __('trackback') : __('comment'), 331 html::escapeHTML($this->rs->comment_author)); 328 332 329 333 $res = '<tr class="line'.($this->rs->comment_status != 1 ? ' offline' : '').'"'. … … 333 337 '<td class="nowrap">'. 334 338 form::checkbox(array('comments[]'),$this->rs->comment_id,'','','',0).'</td>'. 335 '<td class="status txt-center">'. 336 '<a href="'.$comment_url.'">'. 337 '<img src="images/edit-mini.png" alt="" title="'.__('Edit').'" /> '. 338 '</a>'.'</td>'. 339 '<td class="maximal" scope="row">'.($this->rs->comment_trackback ? __('trackback from') : __('comment from')).' '. 340 '<a href="'.$author_url.'">'.html::escapeHTML($this->rs->comment_author).'</a></td>'. 341 '<td class="nowrap">'.dt::dt2str(__('%Y-%m-%d %H:%M'),$this->rs->comment_dt).'</td>'. 339 '<td class="nowrap" abbr="'.__('Type and author').'" scope="raw">'. 340 '<a href="'.$comment_url.'" title="'.$comment_title.'">'. 341 '<img src="images/edit-mini.png" alt="'.__('Edit').'"/> '. 342 ($this->rs->comment_trackback ? __('trackback') : __('comment')).' '.'</a></td>'. 343 '<td class="nowrap maximal"><a href="'.$author_url.'">'.html::escapeHTML($this->rs->comment_author).'</a></td>'. 344 '<td class="nowrap count">'.dt::dt2str(__('%Y-%m-%d %H:%M'),$this->rs->comment_dt).'</td>'. 342 345 '<td class="nowrap status txt-center">'.$img_status.'</td>'. 343 346 '<td class="nowrap"><a href="'.$post_url.'">'. … … 418 421 '<td class="nowrap">'.html::escapeHTML($this->rs->user_name).'</td>'. 419 422 '<td class="nowrap">'.html::escapeHTML($this->rs->user_displayname).'</td>'. 420 '<td class="nowrap "><a href="posts.php?user_id='.$this->rs->user_id.'">'.423 '<td class="nowrap count"><a href="posts.php?user_id='.$this->rs->user_id.'">'. 421 424 $this->rs->nb_post.'</a></td>'. 422 425 '</tr>'; -
locales/bn/plugins.po
r1636 r1668 1060 1060 msgstr "" 1061 1061 1062 msgid "Page status :"1063 msgstr "" 1064 1065 msgid "Page position :"1066 msgstr "" 1067 1068 msgid "Page lang :"1069 msgstr "" 1070 1071 msgid "Page password :"1062 msgid "Page status" 1063 msgstr "" 1064 1065 msgid "Page position" 1066 msgstr "" 1067 1068 msgid "Page lang" 1069 msgstr "" 1070 1071 msgid "Page password" 1072 1072 msgstr "" 1073 1073 -
locales/ca/plugins.po
r1636 r1668 1056 1056 msgstr "" 1057 1057 1058 msgid "Page status :"1059 msgstr "" 1060 1061 msgid "Page position :"1062 msgstr "" 1063 1064 msgid "Page lang :"1065 msgstr "" 1066 1067 msgid "Page password :"1058 msgid "Page status" 1059 msgstr "" 1060 1061 msgid "Page position" 1062 msgstr "" 1063 1064 msgid "Page lang" 1065 msgstr "" 1066 1067 msgid "Page password" 1068 1068 msgstr "" 1069 1069 -
locales/cs/plugins.po
r1636 r1668 1065 1065 msgstr "" 1066 1066 1067 msgid "Page status :"1067 msgid "Page status" 1068 1068 msgstr "Stav stránky:" 1069 1069 1070 msgid "Page position :"1070 msgid "Page position" 1071 1071 msgstr "Pozice stránky:" 1072 1072 1073 msgid "Page lang :"1073 msgid "Page lang" 1074 1074 msgstr "Jazyk stránky:" 1075 1075 1076 msgid "Page password :"1076 msgid "Page password" 1077 1077 msgstr "Heslo stránky:" 1078 1078 -
locales/da/plugins.po
r1636 r1668 1056 1056 msgstr "" 1057 1057 1058 msgid "Page status :"1059 msgstr "" 1060 1061 msgid "Page position :"1062 msgstr "" 1063 1064 msgid "Page lang :"1065 msgstr "" 1066 1067 msgid "Page password :"1058 msgid "Page status" 1059 msgstr "" 1060 1061 msgid "Page position" 1062 msgstr "" 1063 1064 msgid "Page lang" 1065 msgstr "" 1066 1067 msgid "Page password" 1068 1068 msgstr "" 1069 1069 -
locales/de/plugins.po
r1636 r1668 1066 1066 msgstr "" 1067 1067 1068 msgid "Page status :"1068 msgid "Page status" 1069 1069 msgstr "Status der Seite:" 1070 1070 1071 msgid "Page position :"1071 msgid "Page position" 1072 1072 msgstr "Position der Seite:" 1073 1073 1074 msgid "Page lang :"1074 msgid "Page lang" 1075 1075 msgstr "Sprache der Seite:" 1076 1076 1077 msgid "Page password :"1077 msgid "Page password" 1078 1078 msgstr "Passwort der Seite:" 1079 1079 -
locales/en/plugins.po
r1636 r1668 1076 1076 msgstr "" 1077 1077 1078 msgid "Page status :"1079 msgstr "" 1080 1081 msgid "Page position :"1082 msgstr "" 1083 1084 msgid "Page lang :"1085 msgstr "" 1086 1087 msgid "Page password :"1078 msgid "Page status" 1079 msgstr "" 1080 1081 msgid "Page position" 1082 msgstr "" 1083 1084 msgid "Page lang" 1085 msgstr "" 1086 1087 msgid "Page password" 1088 1088 msgstr "" 1089 1089 -
locales/eo/plugins.po
r1636 r1668 1056 1056 msgstr "" 1057 1057 1058 msgid "Page status :"1059 msgstr "" 1060 1061 msgid "Page position :"1062 msgstr "" 1063 1064 msgid "Page lang :"1065 msgstr "" 1066 1067 msgid "Page password :"1058 msgid "Page status" 1059 msgstr "" 1060 1061 msgid "Page position" 1062 msgstr "" 1063 1064 msgid "Page lang" 1065 msgstr "" 1066 1067 msgid "Page password" 1068 1068 msgstr "" 1069 1069 -
locales/es-ar/plugins.po
r1636 r1668 1068 1068 msgstr "" 1069 1069 1070 msgid "Page status :"1070 msgid "Page status" 1071 1071 msgstr "Estado de la pagina:" 1072 1072 1073 msgid "Page position :"1073 msgid "Page position" 1074 1074 msgstr "Posición de la pagina:" 1075 1075 1076 msgid "Page lang :"1076 msgid "Page lang" 1077 1077 msgstr "Idioma de la pagina:" 1078 1078 1079 msgid "Page password :"1079 msgid "Page password" 1080 1080 msgstr "Contraseña de la pagina:" 1081 1081 -
locales/es/plugins.po
r1636 r1668 1074 1074 msgstr "" 1075 1075 1076 msgid "Page status :"1076 msgid "Page status" 1077 1077 msgstr "Estado de la página:" 1078 1078 1079 msgid "Page position :"1079 msgid "Page position" 1080 1080 msgstr "Posición de la página:" 1081 1081 1082 msgid "Page lang :"1082 msgid "Page lang" 1083 1083 msgstr "Idioma de la página:" 1084 1084 1085 msgid "Page password :"1085 msgid "Page password" 1086 1086 msgstr "Contraseña de la página:" 1087 1087 -
locales/eu/plugins.po
r1636 r1668 1056 1056 msgstr "" 1057 1057 1058 msgid "Page status :"1059 msgstr "" 1060 1061 msgid "Page position :"1062 msgstr "" 1063 1064 msgid "Page lang :"1065 msgstr "" 1066 1067 msgid "Page password :"1058 msgid "Page status" 1059 msgstr "" 1060 1061 msgid "Page position" 1062 msgstr "" 1063 1064 msgid "Page lang" 1065 msgstr "" 1066 1067 msgid "Page password" 1068 1068 msgstr "" 1069 1069 -
locales/fr/main.po
r1637 r1668 3273 3273 msgid "Save my options" 3274 3274 msgstr "Enregistrer mes options" 3275 3276 msgid "Blog id" 3277 msgstr "Identifiant" 3278 3279 msgid "Edit blog settings for %s" 3280 msgstr "Modifier les paramètres de %s" 3281 3282 msgid "Edit blog settings" 3283 msgstr "Modifier les paramètres du blog" 3284 3285 msgid "Edit the %1$s from %2$s" 3286 msgstr "Modifier le %1$s de %2$s" -
locales/fr/plugins.po
r1636 r1668 1255 1255 msgstr "Voir cette page sur le site" 1256 1256 1257 msgid "Page status :"1258 msgstr "État de la page :"1259 1260 msgid "Page position :"1261 msgstr "Position de la page :"1262 1263 msgid "Page lang :"1264 msgstr "Langue de la page :"1265 1266 msgid "Page password :"1267 msgstr "Mot de passe de la page :"1257 msgid "Page status" 1258 msgstr "État de la page" 1259 1260 msgid "Page position" 1261 msgstr "Position de la page" 1262 1263 msgid "Page lang" 1264 msgstr "Langue de la page" 1265 1266 msgid "Page password" 1267 msgstr "Mot de passe de la page" 1268 1268 1269 1269 msgid "" -
locales/hu/plugins.po
r1636 r1668 1077 1077 msgstr "" 1078 1078 1079 msgid "Page status :"1079 msgid "Page status" 1080 1080 msgstr "Oldal állapota:" 1081 1081 1082 msgid "Page position :"1082 msgid "Page position" 1083 1083 msgstr "Oldal pozíciója:" 1084 1084 1085 msgid "Page lang :"1085 msgid "Page lang" 1086 1086 msgstr "Oldal nyelve:" 1087 1087 1088 msgid "Page password :"1088 msgid "Page password" 1089 1089 msgstr "Oldal jelszava:" 1090 1090 -
locales/it/plugins.po
r1636 r1668 1056 1056 msgstr "" 1057 1057 1058 msgid "Page status :"1059 msgstr "" 1060 1061 msgid "Page position :"1062 msgstr "" 1063 1064 msgid "Page lang :"1065 msgstr "" 1066 1067 msgid "Page password :"1058 msgid "Page status" 1059 msgstr "" 1060 1061 msgid "Page position" 1062 msgstr "" 1063 1064 msgid "Page lang" 1065 msgstr "" 1066 1067 msgid "Page password" 1068 1068 msgstr "" 1069 1069 -
locales/ja/plugins.po
r1636 r1668 1072 1072 msgstr "" 1073 1073 1074 msgid "Page status :"1074 msgid "Page status" 1075 1075 msgstr "ページの状態:" 1076 1076 1077 msgid "Page position :"1077 msgid "Page position" 1078 1078 msgstr "ページの位置:" 1079 1079 1080 msgid "Page lang :"1080 msgid "Page lang" 1081 1081 msgstr "ページの言語:" 1082 1082 1083 msgid "Page password :"1083 msgid "Page password" 1084 1084 msgstr "ページのパスワード:" 1085 1085 -
locales/ko/plugins.po
r1636 r1668 1079 1079 msgstr "" 1080 1080 1081 msgid "Page status :"1081 msgid "Page status" 1082 1082 msgstr "페이지 공개상태 :" 1083 1083 1084 msgid "Page position :"1084 msgid "Page position" 1085 1085 msgstr "페이지 위치 :" 1086 1086 1087 msgid "Page lang :"1087 msgid "Page lang" 1088 1088 msgstr "페이지 언어 :" 1089 1089 1090 msgid "Page password :"1090 msgid "Page password" 1091 1091 msgstr "페이지 비밀번호 :" 1092 1092 -
locales/lt/plugins.po
r1499 r1668 1024 1024 msgstr "Peržiūrėti puslapį" 1025 1025 1026 msgid "Page status :"1026 msgid "Page status" 1027 1027 msgstr "Puslapio statusas:" 1028 1028 1029 msgid "Page position :"1029 msgid "Page position" 1030 1030 msgstr "Puslapio pozicija:" 1031 1031 1032 msgid "Page lang :"1032 msgid "Page lang" 1033 1033 msgstr "Puslapio kalba:" 1034 1034 1035 msgid "Page password :"1035 msgid "Page password" 1036 1036 msgstr "Puslapio slaptažodis:" 1037 1037 -
locales/nl/plugins.po
r1636 r1668 1057 1057 msgstr "" 1058 1058 1059 msgid "Page status :"1060 msgstr "" 1061 1062 msgid "Page position :"1063 msgstr "" 1064 1065 msgid "Page lang :"1066 msgstr "" 1067 1068 msgid "Page password :"1059 msgid "Page status" 1060 msgstr "" 1061 1062 msgid "Page position" 1063 msgstr "" 1064 1065 msgid "Page lang" 1066 msgstr "" 1067 1068 msgid "Page password" 1069 1069 msgstr "" 1070 1070 -
locales/oc/plugins.po
r1636 r1668 1056 1056 msgstr "" 1057 1057 1058 msgid "Page status :"1059 msgstr "" 1060 1061 msgid "Page position :"1062 msgstr "" 1063 1064 msgid "Page lang :"1065 msgstr "" 1066 1067 msgid "Page password :"1058 msgid "Page status" 1059 msgstr "" 1060 1061 msgid "Page position" 1062 msgstr "" 1063 1064 msgid "Page lang" 1065 msgstr "" 1066 1067 msgid "Page password" 1068 1068 msgstr "" 1069 1069 -
locales/pl/plugins.po
r1636 r1668 1061 1061 msgstr "" 1062 1062 1063 msgid "Page status :"1063 msgid "Page status" 1064 1064 msgstr "Stan strony:" 1065 1065 1066 msgid "Page position :"1066 msgid "Page position" 1067 1067 msgstr "Pozycja strony:" 1068 1068 1069 msgid "Page lang :"1069 msgid "Page lang" 1070 1070 msgstr "Język strony:" 1071 1071 1072 msgid "Page password :"1072 msgid "Page password" 1073 1073 msgstr "Hasło strony" 1074 1074 -
locales/pt-br/plugins.po
r1636 r1668 1056 1056 msgstr "" 1057 1057 1058 msgid "Page status :"1059 msgstr "" 1060 1061 msgid "Page position :"1062 msgstr "" 1063 1064 msgid "Page lang :"1065 msgstr "" 1066 1067 msgid "Page password :"1058 msgid "Page status" 1059 msgstr "" 1060 1061 msgid "Page position" 1062 msgstr "" 1063 1064 msgid "Page lang" 1065 msgstr "" 1066 1067 msgid "Page password" 1068 1068 msgstr "" 1069 1069 -
locales/pt/plugins.po
r1636 r1668 1073 1073 msgstr "" 1074 1074 1075 msgid "Page status :"1075 msgid "Page status" 1076 1076 msgstr "Estatutos da página:" 1077 1077 1078 msgid "Page position :"1078 msgid "Page position" 1079 1079 msgstr "Posição da página:" 1080 1080 1081 msgid "Page lang :"1081 msgid "Page lang" 1082 1082 msgstr "Língua da página:" 1083 1083 1084 msgid "Page password :"1084 msgid "Page password" 1085 1085 msgstr "Senha da página:" 1086 1086 -
locales/ro/plugins.po
r1636 r1668 1068 1068 msgstr "" 1069 1069 1070 msgid "Page status :"1071 msgstr "" 1072 1073 msgid "Page position :"1074 msgstr "" 1075 1076 msgid "Page lang :"1077 msgstr "" 1078 1079 msgid "Page password :"1070 msgid "Page status" 1071 msgstr "" 1072 1073 msgid "Page position" 1074 msgstr "" 1075 1076 msgid "Page lang" 1077 msgstr "" 1078 1079 msgid "Page password" 1080 1080 msgstr "" 1081 1081 -
locales/ru/plugins.po
r1636 r1668 1064 1064 msgstr "" 1065 1065 1066 msgid "Page status :"1066 msgid "Page status" 1067 1067 msgstr "Статус страницы:" 1068 1068 1069 msgid "Page position :"1069 msgid "Page position" 1070 1070 msgstr "Позиция страницы:" 1071 1071 1072 msgid "Page lang :"1072 msgid "Page lang" 1073 1073 msgstr "Язык страницы:" 1074 1074 1075 msgid "Page password :"1075 msgid "Page password" 1076 1076 msgstr "Пароль страницы:" 1077 1077 -
locales/sr/plugins.po
r1636 r1668 1056 1056 msgstr "" 1057 1057 1058 msgid "Page status :"1059 msgstr "" 1060 1061 msgid "Page position :"1062 msgstr "" 1063 1064 msgid "Page lang :"1065 msgstr "" 1066 1067 msgid "Page password :"1058 msgid "Page status" 1059 msgstr "" 1060 1061 msgid "Page position" 1062 msgstr "" 1063 1064 msgid "Page lang" 1065 msgstr "" 1066 1067 msgid "Page password" 1068 1068 msgstr "" 1069 1069 -
locales/sv/plugins.po
r1636 r1668 1056 1056 msgstr "" 1057 1057 1058 msgid "Page status :"1059 msgstr "" 1060 1061 msgid "Page position :"1062 msgstr "" 1063 1064 msgid "Page lang :"1065 msgstr "" 1066 1067 msgid "Page password :"1058 msgid "Page status" 1059 msgstr "" 1060 1061 msgid "Page position" 1062 msgstr "" 1063 1064 msgid "Page lang" 1065 msgstr "" 1066 1067 msgid "Page password" 1068 1068 msgstr "" 1069 1069 -
locales/te/plugins.po
r1636 r1668 1061 1061 msgstr "" 1062 1062 1063 msgid "Page status :"1063 msgid "Page status" 1064 1064 msgstr "పేజీ స్థితి:" 1065 1065 1066 msgid "Page position :"1066 msgid "Page position" 1067 1067 msgstr "పేజీ స్థానం:" 1068 1068 1069 msgid "Page lang :"1069 msgid "Page lang" 1070 1070 msgstr "పేజీ భాష:" 1071 1071 1072 msgid "Page password :"1072 msgid "Page password" 1073 1073 msgstr "పేజీ సంకేతపదం:" 1074 1074 -
locales/tr/plugins.po
r1636 r1668 1061 1061 msgstr "" 1062 1062 1063 msgid "Page status :"1064 msgstr "" 1065 1066 msgid "Page position :"1067 msgstr "" 1068 1069 msgid "Page lang :"1070 msgstr "" 1071 1072 msgid "Page password :"1063 msgid "Page status" 1064 msgstr "" 1065 1066 msgid "Page position" 1067 msgstr "" 1068 1069 msgid "Page lang" 1070 msgstr "" 1071 1072 msgid "Page password" 1073 1073 msgstr "" 1074 1074 -
locales/zh-cn/plugins.po
r1636 r1668 1071 1071 msgstr "" 1072 1072 1073 msgid "Page status :"1073 msgid "Page status" 1074 1074 msgstr "页面状态:" 1075 1075 1076 msgid "Page position :"1076 msgid "Page position" 1077 1077 msgstr "页面位置:" 1078 1078 1079 msgid "Page lang :"1079 msgid "Page lang" 1080 1080 msgstr "页面语言:" 1081 1081 1082 msgid "Page password :"1082 msgid "Page password" 1083 1083 msgstr "页面密码:" 1084 1084 -
plugins/pages/page.php
r1625 r1668 403 403 'items' => array( 404 404 'post_status' => 405 '<p><label for="post_status" class="ib">'.__('Page status :').'</label> '.405 '<p><label for="post_status" class="ib">'.__('Page status').'</label> '. 406 406 form::combo('post_status',$status_combo,$post_status,'','',!$can_publish). 407 407 '</p>', … … 411 411 '</p>', 412 412 'post_lang' => 413 '<p><label for="post_lang" class="ib">'.__('Page lang :').'</label>'.413 '<p><label for="post_lang" class="ib">'.__('Page lang').'</label>'. 414 414 form::combo('post_lang',$lang_combo,$post_lang). 415 415 '</p>', … … 426 426 'items' => array( 427 427 'post_position' => 428 '<p><label for="post_position" class="classic">'.__('Page position :').'</label> '.428 '<p><label for="post_position" class="classic">'.__('Page position').'</label> '. 429 429 form::field('post_position',3,3,(string) $post_position). 430 430 '</p>')),
Note: See TracChangeset
for help on using the changeset viewer.