Changeset 13224
- Timestamp:
- Feb 17, 2012, 8:30:52 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/configuration.php
r13087 r13224 125 125 ); 126 126 127 $comments_order = array( 128 'ASC' => l10n('Show oldest comments first'), 129 'DESC' => l10n('Show latest comment first'), 130 ); 131 127 132 128 133 //------------------------------ verification and registration of modifications … … 360 365 'NB_COMMENTS_PAGE'=>$conf['nb_comment_page'], 361 366 'comments_order'=>$conf['comments_order'], 362 'comments_order_options'=> $ sort_directions367 'comments_order_options'=> $comments_order 363 368 ) 364 369 ); -
trunk/include/picture_comment.inc.php
r13156 r13224 135 135 $template->assign(array( 136 136 'COMMENTS_ORDER_URL' => add_url_params( duplicate_picture_url(), array('comments_order'=> ($comments_order == 'ASC' ? 'DESC' : 'ASC') ) ), 137 'COMMENTS_ORDER_TITLE' => $comments_order == 'ASC' ? l10n(' old → new') : l10n('new → old'),137 'COMMENTS_ORDER_TITLE' => $comments_order == 'ASC' ? l10n('Show latest comment first') : l10n('Show oldest comments first'), 138 138 )); 139 139 -
trunk/language/bg_BG/common.lang.php
r13209 r13224 383 383 $lang['%d rates'] = '%d оценки'; 384 384 385 $lang['new → old'] = 'ново → старо';386 $lang['old → new'] = 'старо → ново';387 385 ?> -
trunk/language/de_DE/common.lang.php
r13119 r13224 382 382 $lang['xxlarge'] = 'xxgroß'; 383 383 $lang['Your username has been successfully changed to : %s'] = 'Dein Benutzername ist jetzt:'; 384 $lang['new → old'] = 'neu → alt';385 $lang['old → new'] = 'alt → neu';386 384 $lang['Photo sizes'] = 'Bildgrößen'; 387 385 ?> -
trunk/language/en_UK/common.lang.php
r13088 r13224 230 230 $lang['Most visited'] = "Most visited"; 231 231 $lang['N/A'] = "N/A"; 232 $lang['old → new'] = 'old → new';233 $lang['new → old'] = 'new → old';234 232 $lang['New on %s'] = "New on %s"; 235 233 $lang['New password'] = "New password"; … … 315 313 $lang['Show number of comments'] = "Show number of comments"; 316 314 $lang['Show number of hits'] = "Show number of hits"; 315 $lang['Show oldest comments first'] = 'Show oldest comments first'; 316 $lang['Show latest comment first'] = 'Show latest comment first'; 317 317 $lang['show tag cloud'] = "show tags cloud"; 318 318 $lang['Since'] = "Since"; -
trunk/language/fr_CA/common.lang.php
r13093 r13224 376 376 $lang['Successfully registered, you will soon receive an email with your connection settings. Welcome!'] = 'Inscription réussie, vous recevrez bientôt un email avec vos identifiants. Bienvenue !'; 377 377 $lang['Send my connection settings by email'] = 'Recevoir mes identifiants par email'; 378 379 $lang['new → old'] = 'nouveau → ancien';380 $lang['old → new'] = 'ancien → nouveau';381 378 ?> -
trunk/language/uk_UA/common.lang.php
r13178 r13224 381 381 $lang['Username: %s'] = 'Ім\'я користувача: %s'; 382 382 $lang['If you think you\'ve received this email in error, please contact us at %s'] = 'Якщо Ви думаєте, що Ви отримали цей лист помилково, будь ласка, зв\'яжіться з нами за адресою %s'; 383 $lang['new → old'] = 'нові → старі';384 $lang['old → new'] = 'старі → нові';385 383 $lang['Photo sizes'] = 'Розміри фотографій'; 386 384 ?> -
trunk/language/zh_CN/common.lang.php
r13112 r13224 384 384 $lang['xxlarge'] = '非常大尺寸'; 385 385 $lang['Your username has been successfully changed to : %s'] = '您的用户名成功修改为:%s'; 386 $lang['new → old'] = '新 → 旧';387 $lang['old → new'] = '旧 → 新';388 386 $lang['Photo sizes'] = ''; 389 387 ?> -
trunk/themes/default/template/picture.tpl
r13115 r13224 275 275 <h3>{$pwg->l10n_dec('%d comment', '%d comments',$COMMENT_COUNT)}</h3> 276 276 {if $COMMENT_COUNT > 2} 277 {'Sort order'|@translate}:<a href="{$COMMENTS_ORDER_URL}#comments" rel="nofollow">{$COMMENTS_ORDER_TITLE}</a>277 <a href="{$COMMENTS_ORDER_URL}#comments" rel="nofollow">{$COMMENTS_ORDER_TITLE}</a> 278 278 {/if} 279 279 {/if}
Note: See TracChangeset
for help on using the changeset viewer.