Dotclear

Changeset 1668:496eacb230d8


Ignore:
Timestamp:
08/31/13 12:39:15 (11 years ago)
Author:
Anne Kozlika <kozlika@…>
Branch:
default
Message:

Lists enhancements (comments, blogs).
Minor typos.

Files:
33 edited

Legend:

Unmodified
Added
Removed
  • admin/blogs.php

    r1553 r1668  
    134134           
    135135          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>&nbsp;</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>'. 
    143142          '</tr>'; 
    144143           
     
    164163     if ($GLOBALS['core']->auth->isSuperAdmin()) { 
    165164          $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> '; 
    169167     } 
    170168      
     
    177175     return 
    178176     '<tr class="line">'. 
     177     '<td class="nowrap">'.$edit_link.'</td>'. 
    179178     '<td class="maximal"><a href="index.php?switchblog='.$rs->blog_id.'" '. 
    180179     'title="'.sprintf(__('Switch to blog %s'),$rs->blog_id).'">'. 
    181180     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>'. 
    186183     '<td class="status">'.$img_status.'</td>'. 
    187184     '</tr>'; 
  • admin/style/default.css

    r1636 r1668  
    575575     padding: 1em 3em; 
    576576     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; 
    578582} 
    579583#dashboard-items img { 
     
    13031307     border-style: solid; 
    13041308     border-color: #e3e3e3; 
    1305      padding: .3em .5em; 
     1309     padding: .3em 1em .3em .5em; 
    13061310     vertical-align: top; 
    13071311} 
     
    13111315     border-color: #ccc; 
    13121316     background: #f3f3ff; 
    1313      padding: .3em .5em; 
     1317     padding: .3em 1em .3em .5em; 
    13141318     vertical-align: top; 
    13151319     text-align: left; 
     
    13361340     white-space: nowrap; 
    13371341     vertical-align: top; 
     1342} 
     1343table .count { 
     1344     text-align: right; 
     1345     padding-right: 1.5em; 
    13381346} 
    13391347table.settings, table.prefs { 
  • inc/admin/lib.pager.php

    r1622 r1668  
    136136          '<td class="maximal" scope="row"><a href="'.$this->core->getPostAdminURL($this->rs->post_type,$this->rs->post_id).'">'. 
    137137          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>'. 
    139139          '<td class="nowrap">'.$cat_title.'</td>'. 
    140140          '<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>'. 
    143143          '<td class="nowrap status">'.$img_status.' '.$selected.' '.$protected.' '.$attach.'</td>'. 
    144144          '</tr>'; 
     
    234234          'title="'.html::escapeHTML($this->rs->getURL()).'">'. 
    235235          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>'. 
    237237          '<td class="nowrap">'.html::escapeHTML($this->rs->user_id).'</td>'. 
    238238          '<td class="nowrap status">'.$img_status.' '.$selected.' '.$protected.' '.$attach.'</td>'. 
     
    260260               $html_block = 
    261261               '<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>'. 
    263264               '<th scope="col">'.__('Date').'</th>'. 
    264265               '<th scope="col" class="txt-center">'.__('Status').'</th>'. 
     
    326327               $post_title = mb_strcut($post_title,0,57).'...'; 
    327328          } 
     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)); 
    328332           
    329333          $res = '<tr class="line'.($this->rs->comment_status != 1 ? ' offline' : '').'"'. 
     
    333337          '<td class="nowrap">'. 
    334338          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>'. 
    342345          '<td class="nowrap status txt-center">'.$img_status.'</td>'. 
    343346          '<td class="nowrap"><a href="'.$post_url.'">'. 
     
    418421          '<td class="nowrap">'.html::escapeHTML($this->rs->user_name).'</td>'. 
    419422          '<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.'">'. 
    421424          $this->rs->nb_post.'</a></td>'. 
    422425          '</tr>'; 
  • locales/bn/plugins.po

    r1636 r1668  
    10601060msgstr "" 
    10611061 
    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:" 
     1062msgid "Page status" 
     1063msgstr "" 
     1064 
     1065msgid "Page position" 
     1066msgstr "" 
     1067 
     1068msgid "Page lang" 
     1069msgstr "" 
     1070 
     1071msgid "Page password" 
    10721072msgstr "" 
    10731073 
  • locales/ca/plugins.po

    r1636 r1668  
    10561056msgstr "" 
    10571057 
    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:" 
     1058msgid "Page status" 
     1059msgstr "" 
     1060 
     1061msgid "Page position" 
     1062msgstr "" 
     1063 
     1064msgid "Page lang" 
     1065msgstr "" 
     1066 
     1067msgid "Page password" 
    10681068msgstr "" 
    10691069 
  • locales/cs/plugins.po

    r1636 r1668  
    10651065msgstr "" 
    10661066 
    1067 msgid "Page status:" 
     1067msgid "Page status" 
    10681068msgstr "Stav stránky:" 
    10691069 
    1070 msgid "Page position:" 
     1070msgid "Page position" 
    10711071msgstr "Pozice stránky:" 
    10721072 
    1073 msgid "Page lang:" 
     1073msgid "Page lang" 
    10741074msgstr "Jazyk stránky:" 
    10751075 
    1076 msgid "Page password:" 
     1076msgid "Page password" 
    10771077msgstr "Heslo stránky:" 
    10781078 
  • locales/da/plugins.po

    r1636 r1668  
    10561056msgstr "" 
    10571057 
    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:" 
     1058msgid "Page status" 
     1059msgstr "" 
     1060 
     1061msgid "Page position" 
     1062msgstr "" 
     1063 
     1064msgid "Page lang" 
     1065msgstr "" 
     1066 
     1067msgid "Page password" 
    10681068msgstr "" 
    10691069 
  • locales/de/plugins.po

    r1636 r1668  
    10661066msgstr "" 
    10671067 
    1068 msgid "Page status:" 
     1068msgid "Page status" 
    10691069msgstr "Status der Seite:" 
    10701070 
    1071 msgid "Page position:" 
     1071msgid "Page position" 
    10721072msgstr "Position der Seite:" 
    10731073 
    1074 msgid "Page lang:" 
     1074msgid "Page lang" 
    10751075msgstr "Sprache der Seite:" 
    10761076 
    1077 msgid "Page password:" 
     1077msgid "Page password" 
    10781078msgstr "Passwort der Seite:" 
    10791079 
  • locales/en/plugins.po

    r1636 r1668  
    10761076msgstr "" 
    10771077 
    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:" 
     1078msgid "Page status" 
     1079msgstr "" 
     1080 
     1081msgid "Page position" 
     1082msgstr "" 
     1083 
     1084msgid "Page lang" 
     1085msgstr "" 
     1086 
     1087msgid "Page password" 
    10881088msgstr "" 
    10891089 
  • locales/eo/plugins.po

    r1636 r1668  
    10561056msgstr "" 
    10571057 
    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:" 
     1058msgid "Page status" 
     1059msgstr "" 
     1060 
     1061msgid "Page position" 
     1062msgstr "" 
     1063 
     1064msgid "Page lang" 
     1065msgstr "" 
     1066 
     1067msgid "Page password" 
    10681068msgstr "" 
    10691069 
  • locales/es-ar/plugins.po

    r1636 r1668  
    10681068msgstr "" 
    10691069 
    1070 msgid "Page status:" 
     1070msgid "Page status" 
    10711071msgstr "Estado de la pagina:" 
    10721072 
    1073 msgid "Page position:" 
     1073msgid "Page position" 
    10741074msgstr "Posición de la pagina:" 
    10751075 
    1076 msgid "Page lang:" 
     1076msgid "Page lang" 
    10771077msgstr "Idioma de la pagina:" 
    10781078 
    1079 msgid "Page password:" 
     1079msgid "Page password" 
    10801080msgstr "Contraseña de la pagina:" 
    10811081 
  • locales/es/plugins.po

    r1636 r1668  
    10741074msgstr "" 
    10751075 
    1076 msgid "Page status:" 
     1076msgid "Page status" 
    10771077msgstr "Estado de la página:" 
    10781078 
    1079 msgid "Page position:" 
     1079msgid "Page position" 
    10801080msgstr "Posición de la página:" 
    10811081 
    1082 msgid "Page lang:" 
     1082msgid "Page lang" 
    10831083msgstr "Idioma de la página:" 
    10841084 
    1085 msgid "Page password:" 
     1085msgid "Page password" 
    10861086msgstr "Contraseña de la página:" 
    10871087 
  • locales/eu/plugins.po

    r1636 r1668  
    10561056msgstr "" 
    10571057 
    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:" 
     1058msgid "Page status" 
     1059msgstr "" 
     1060 
     1061msgid "Page position" 
     1062msgstr "" 
     1063 
     1064msgid "Page lang" 
     1065msgstr "" 
     1066 
     1067msgid "Page password" 
    10681068msgstr "" 
    10691069 
  • locales/fr/main.po

    r1637 r1668  
    32733273msgid "Save my options" 
    32743274msgstr "Enregistrer mes options" 
     3275 
     3276msgid "Blog id" 
     3277msgstr "Identifiant" 
     3278 
     3279msgid "Edit blog settings for %s" 
     3280msgstr "Modifier les paramètres de %s" 
     3281 
     3282msgid "Edit blog settings" 
     3283msgstr "Modifier les paramètres du blog" 
     3284 
     3285msgid "Edit the %1$s from %2$s" 
     3286msgstr "Modifier le %1$s de %2$s" 
  • locales/fr/plugins.po

    r1636 r1668  
    12551255msgstr "Voir cette page sur le site" 
    12561256 
    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 :" 
     1257msgid "Page status" 
     1258msgstr "État de la page" 
     1259 
     1260msgid "Page position" 
     1261msgstr "Position de la page" 
     1262 
     1263msgid "Page lang" 
     1264msgstr "Langue de la page" 
     1265 
     1266msgid "Page password" 
     1267msgstr "Mot de passe de la page" 
    12681268 
    12691269msgid "" 
  • locales/hu/plugins.po

    r1636 r1668  
    10771077msgstr "" 
    10781078 
    1079 msgid "Page status:" 
     1079msgid "Page status" 
    10801080msgstr "Oldal állapota:" 
    10811081 
    1082 msgid "Page position:" 
     1082msgid "Page position" 
    10831083msgstr "Oldal pozíciója:" 
    10841084 
    1085 msgid "Page lang:" 
     1085msgid "Page lang" 
    10861086msgstr "Oldal nyelve:" 
    10871087 
    1088 msgid "Page password:" 
     1088msgid "Page password" 
    10891089msgstr "Oldal jelszava:" 
    10901090 
  • locales/it/plugins.po

    r1636 r1668  
    10561056msgstr "" 
    10571057 
    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:" 
     1058msgid "Page status" 
     1059msgstr "" 
     1060 
     1061msgid "Page position" 
     1062msgstr "" 
     1063 
     1064msgid "Page lang" 
     1065msgstr "" 
     1066 
     1067msgid "Page password" 
    10681068msgstr "" 
    10691069 
  • locales/ja/plugins.po

    r1636 r1668  
    10721072msgstr "" 
    10731073 
    1074 msgid "Page status:" 
     1074msgid "Page status" 
    10751075msgstr "ページの状態:" 
    10761076 
    1077 msgid "Page position:" 
     1077msgid "Page position" 
    10781078msgstr "ページの位置:" 
    10791079 
    1080 msgid "Page lang:" 
     1080msgid "Page lang" 
    10811081msgstr "ページの言語:" 
    10821082 
    1083 msgid "Page password:" 
     1083msgid "Page password" 
    10841084msgstr "ページのパスワード:" 
    10851085 
  • locales/ko/plugins.po

    r1636 r1668  
    10791079msgstr "" 
    10801080 
    1081 msgid "Page status:" 
     1081msgid "Page status" 
    10821082msgstr "페이지 공개상태 :" 
    10831083 
    1084 msgid "Page position:" 
     1084msgid "Page position" 
    10851085msgstr "페이지 위치 :" 
    10861086 
    1087 msgid "Page lang:" 
     1087msgid "Page lang" 
    10881088msgstr "페이지 언어 :" 
    10891089 
    1090 msgid "Page password:" 
     1090msgid "Page password" 
    10911091msgstr "페이지 비밀번호 :" 
    10921092 
  • locales/lt/plugins.po

    r1499 r1668  
    10241024msgstr "Peržiūrėti puslapį" 
    10251025 
    1026 msgid "Page status:" 
     1026msgid "Page status" 
    10271027msgstr "Puslapio statusas:" 
    10281028 
    1029 msgid "Page position:" 
     1029msgid "Page position" 
    10301030msgstr "Puslapio pozicija:" 
    10311031 
    1032 msgid "Page lang:" 
     1032msgid "Page lang" 
    10331033msgstr "Puslapio kalba:" 
    10341034 
    1035 msgid "Page password:" 
     1035msgid "Page password" 
    10361036msgstr "Puslapio slaptažodis:" 
    10371037 
  • locales/nl/plugins.po

    r1636 r1668  
    10571057msgstr "" 
    10581058 
    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:" 
     1059msgid "Page status" 
     1060msgstr "" 
     1061 
     1062msgid "Page position" 
     1063msgstr "" 
     1064 
     1065msgid "Page lang" 
     1066msgstr "" 
     1067 
     1068msgid "Page password" 
    10691069msgstr "" 
    10701070 
  • locales/oc/plugins.po

    r1636 r1668  
    10561056msgstr "" 
    10571057 
    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:" 
     1058msgid "Page status" 
     1059msgstr "" 
     1060 
     1061msgid "Page position" 
     1062msgstr "" 
     1063 
     1064msgid "Page lang" 
     1065msgstr "" 
     1066 
     1067msgid "Page password" 
    10681068msgstr "" 
    10691069 
  • locales/pl/plugins.po

    r1636 r1668  
    10611061msgstr "" 
    10621062 
    1063 msgid "Page status:" 
     1063msgid "Page status" 
    10641064msgstr "Stan strony:" 
    10651065 
    1066 msgid "Page position:" 
     1066msgid "Page position" 
    10671067msgstr "Pozycja strony:" 
    10681068 
    1069 msgid "Page lang:" 
     1069msgid "Page lang" 
    10701070msgstr "Język strony:" 
    10711071 
    1072 msgid "Page password:" 
     1072msgid "Page password" 
    10731073msgstr "Hasło strony" 
    10741074 
  • locales/pt-br/plugins.po

    r1636 r1668  
    10561056msgstr "" 
    10571057 
    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:" 
     1058msgid "Page status" 
     1059msgstr "" 
     1060 
     1061msgid "Page position" 
     1062msgstr "" 
     1063 
     1064msgid "Page lang" 
     1065msgstr "" 
     1066 
     1067msgid "Page password" 
    10681068msgstr "" 
    10691069 
  • locales/pt/plugins.po

    r1636 r1668  
    10731073msgstr "" 
    10741074 
    1075 msgid "Page status:" 
     1075msgid "Page status" 
    10761076msgstr "Estatutos da página:" 
    10771077 
    1078 msgid "Page position:" 
     1078msgid "Page position" 
    10791079msgstr "Posição da página:" 
    10801080 
    1081 msgid "Page lang:" 
     1081msgid "Page lang" 
    10821082msgstr "Língua da página:" 
    10831083 
    1084 msgid "Page password:" 
     1084msgid "Page password" 
    10851085msgstr "Senha da página:" 
    10861086 
  • locales/ro/plugins.po

    r1636 r1668  
    10681068msgstr "" 
    10691069 
    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:" 
     1070msgid "Page status" 
     1071msgstr "" 
     1072 
     1073msgid "Page position" 
     1074msgstr "" 
     1075 
     1076msgid "Page lang" 
     1077msgstr "" 
     1078 
     1079msgid "Page password" 
    10801080msgstr "" 
    10811081 
  • locales/ru/plugins.po

    r1636 r1668  
    10641064msgstr "" 
    10651065 
    1066 msgid "Page status:" 
     1066msgid "Page status" 
    10671067msgstr "Статус страницы:" 
    10681068 
    1069 msgid "Page position:" 
     1069msgid "Page position" 
    10701070msgstr "Позиция страницы:" 
    10711071 
    1072 msgid "Page lang:" 
     1072msgid "Page lang" 
    10731073msgstr "Язык страницы:" 
    10741074 
    1075 msgid "Page password:" 
     1075msgid "Page password" 
    10761076msgstr "Пароль страницы:" 
    10771077 
  • locales/sr/plugins.po

    r1636 r1668  
    10561056msgstr "" 
    10571057 
    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:" 
     1058msgid "Page status" 
     1059msgstr "" 
     1060 
     1061msgid "Page position" 
     1062msgstr "" 
     1063 
     1064msgid "Page lang" 
     1065msgstr "" 
     1066 
     1067msgid "Page password" 
    10681068msgstr "" 
    10691069 
  • locales/sv/plugins.po

    r1636 r1668  
    10561056msgstr "" 
    10571057 
    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:" 
     1058msgid "Page status" 
     1059msgstr "" 
     1060 
     1061msgid "Page position" 
     1062msgstr "" 
     1063 
     1064msgid "Page lang" 
     1065msgstr "" 
     1066 
     1067msgid "Page password" 
    10681068msgstr "" 
    10691069 
  • locales/te/plugins.po

    r1636 r1668  
    10611061msgstr "" 
    10621062 
    1063 msgid "Page status:" 
     1063msgid "Page status" 
    10641064msgstr "పేజీ స్థితి:" 
    10651065 
    1066 msgid "Page position:" 
     1066msgid "Page position" 
    10671067msgstr "పేజీ స్థానం:" 
    10681068 
    1069 msgid "Page lang:" 
     1069msgid "Page lang" 
    10701070msgstr "పేజీ భాష:" 
    10711071 
    1072 msgid "Page password:" 
     1072msgid "Page password" 
    10731073msgstr "పేజీ సంకేతపదం:" 
    10741074 
  • locales/tr/plugins.po

    r1636 r1668  
    10611061msgstr "" 
    10621062 
    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:" 
     1063msgid "Page status" 
     1064msgstr "" 
     1065 
     1066msgid "Page position" 
     1067msgstr "" 
     1068 
     1069msgid "Page lang" 
     1070msgstr "" 
     1071 
     1072msgid "Page password" 
    10731073msgstr "" 
    10741074 
  • locales/zh-cn/plugins.po

    r1636 r1668  
    10711071msgstr "" 
    10721072 
    1073 msgid "Page status:" 
     1073msgid "Page status" 
    10741074msgstr "页面状态:" 
    10751075 
    1076 msgid "Page position:" 
     1076msgid "Page position" 
    10771077msgstr "页面位置:" 
    10781078 
    1079 msgid "Page lang:" 
     1079msgid "Page lang" 
    10801080msgstr "页面语言:" 
    10811081 
    1082 msgid "Page password:" 
     1082msgid "Page password" 
    10831083msgstr "页面密码:" 
    10841084 
  • plugins/pages/page.php

    r1625 r1668  
    403403               'items' => array( 
    404404                    'post_status' =>  
    405                          '<p><label for="post_status" class="ib">'.__('Page status:').'</label> '. 
     405                         '<p><label for="post_status" class="ib">'.__('Page status').'</label> '. 
    406406                         form::combo('post_status',$status_combo,$post_status,'','',!$can_publish). 
    407407                         '</p>', 
     
    411411                         '</p>', 
    412412                    'post_lang' => 
    413                          '<p><label for="post_lang" class="ib">'.__('Page lang:').'</label>'. 
     413                         '<p><label for="post_lang" class="ib">'.__('Page lang').'</label>'. 
    414414                         form::combo('post_lang',$lang_combo,$post_lang). 
    415415                         '</p>', 
     
    426426               'items' => array( 
    427427                    'post_position' =>  
    428                          '<p><label for="post_position" class="classic">'.__('Page position:').'</label> '. 
     428                         '<p><label for="post_position" class="classic">'.__('Page position').'</label> '. 
    429429                         form::field('post_position',3,3,(string) $post_position). 
    430430                         '</p>')), 
Note: See TracChangeset for help on using the changeset viewer.

Sites map