Changeset 559:7beacd71f36c
- Timestamp:
- 07/10/11 13:23:44 (14 years ago)
- Branch:
- default
- Children:
- 560:c5b0f64ba472, 561:98f837d6c506
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/categories.php
r557 r559 136 136 echo 137 137 '</select></label></p>'. 138 '<p><input type="submit" value="'.__(' Save').'" /></p>'.138 '<p><input type="submit" value="'.__('Create').'" /></p>'. 139 139 $core->formNonce(). 140 140 '</fieldset>'. -
admin/post.php
r544 r559 320 320 } 321 321 322 echo '<h2>'.html::escapeHTML($core->blog->name).' › '.'<a href="posts.php">'.__('Entries').'</a> › <span class="page-title">'.$page_title.' “'.$post_title.'”</span></h2>'; 322 echo '<h2>'.html::escapeHTML($core->blog->name).' › '.'<a href="posts.php">'.__('Entries').'</a> › <span class="page-title">'.$page_title; 323 324 if ($post_id) { 325 echo ' “'.$post_title.'”'; 326 } 327 echo '</span></h2>'; 323 328 324 329 if ($post_id && $post->post_status == 1) { -
locales/fr/main.po
r558 r559 424 424 425 425 msgid "Theme configuration" 426 msgstr "Configur ation duthème"426 msgstr "Configurer le thème" 427 427 428 428 msgid "Blog themes" … … 754 754 755 755 msgid "Delete" 756 msgstr " supprimer"756 msgstr "Supprimer" 757 757 758 758 msgid "Type:" … … 980 980 981 981 msgid "Save" 982 msgstr " enregistrer"982 msgstr "Enregistrer" 983 983 984 984 msgid "All done!" … … 1614 1614 msgid "remove" 1615 1615 msgstr "supprimer" 1616 1617 msgid "Remove" 1618 msgstr "Supprimer" 1616 1619 1617 1620 msgid "No attachment." -
locales/fr/plugins.po
r558 r559 1021 1021 1022 1022 msgid "Are you sure you want to delete this page?" 1023 msgstr "Êtes-vous certain de vouloir supprimer cette page s?"1023 msgstr "Êtes-vous certain de vouloir supprimer cette page ?" 1024 1024 1025 1025 msgid "Page has been successfully updated." -
locales/sr/main.po
r558 r559 1188 1188 msgstr "Êtes-vous certain de vouloir supprimer %s ?" 1189 1189 1190 msgid " Cancel"1190 msgid "cancel" 1191 1191 msgstr "annuler" 1192 1192 1193 msgid " Yes"1193 msgid "yes" 1194 1194 msgstr "oui" 1195 1195 … … 1453 1453 msgstr "Choisissez un ou plusieurs blogs pour lesquels les utilisateurs suivants auront des permissions : %s." 1454 1454 1455 msgid " Set permissions"1455 msgid "set permissions" 1456 1456 msgstr "définir les permissions" 1457 1457 -
plugins/pages/page.php
r536 r559 320 320 321 321 echo '<h2>'.html::escapeHTML($core->blog->name). 322 ' › <a href="'.$p_url.'">'.__('Pages').'</a> › <span class="page-title">'.$page_title.'</span>'; 322 ' › <a href="'.$p_url.'">'.__('Pages').'</a> › <span class="page-title">'.$page_title; 323 if ($post_id) { 324 echo ' “'.$post_title.'”'; 325 } 326 echo '</span></h2>'; 323 327 324 328 if ($post_id && $post->post_status == 1) { 325 echo ' - <a id="post-preview" href="'.$post->getURL().'" class="button">'.__('View page').'</a>'; 326 } elseif ($post_id) { 327 $preview_url = 328 $core->blog->url.$core->url->getBase('pagespreview').'/'. 329 $core->auth->userID().'/'. 330 http::browserUID(DC_MASTER_KEY.$core->auth->userID().$core->auth->getInfo('user_pwd')). 331 '/'.$post->post_url; 332 echo ' - <a id="post-preview" href="'.$preview_url.'" class="button">'.__('Preview page').'</a>'; 333 } 334 335 echo '</h2>'; 329 echo '<p><a href="'.$post->getURL().'" onclick="window.open(this.href);return false;" title="'.$post_title.' ('.__('new window').')'.'">'.__('Go to this page on the site').' <img src="images/outgoing-blue.png" alt="" /></a></p>'; 330 } 331 332 echo ''; 336 333 337 334 if ($post_id) … … 391 388 ($post_id ? form::hidden('id',$post_id) : ''). 392 389 '<input type="submit" value="'.__('Save').' (s)" '. 393 'accesskey="s" name="save" /> '. 390 'accesskey="s" name="save" /> '; 391 392 if ($post_id) { 393 $preview_url = 394 $core->blog->url.$core->url->getBase('pagespreview').'/'. 395 $core->auth->userID().'/'. 396 http::browserUID(DC_MASTER_KEY.$core->auth->userID().$core->auth->getInfo('user_pwd')). 397 '/'.$post->post_url; 398 echo '<a id="post-preview" href="'.$preview_url.'" class="button">'.__('Preview').'</a>'; 399 } 400 401 echo 394 402 ($can_delete ? '<input type="submit" class="delete" value="'.__('Delete').'" name="delete" />' : ''). 395 403 $core->formNonce().
Note: See TracChangeset
for help on using the changeset viewer.