Changeset 45246
- Timestamp:
- 05/11/08 15:57:36 (2 months ago)
- Files:
-
- ajaxd-wordpress/trunk/aWP.php (modified) (2 diffs)
- ajaxd-wordpress/trunk/control/aWP-admin.php (modified) (1 diff)
- ajaxd-wordpress/trunk/control/aWP-upgrade.php (modified) (1 diff)
- ajaxd-wordpress/trunk/js/core.css (modified) (1 diff)
- ajaxd-wordpress/trunk/modules/ajaxnav/ajaxnav.php (modified) (3 diffs)
- ajaxd-wordpress/trunk/modules/awp-lightbox.php (deleted)
- ajaxd-wordpress/trunk/modules/compatabilities.php (added)
- ajaxd-wordpress/trunk/translations/aWP-it_IT.mo (modified) (previous)
- ajaxd-wordpress/trunk/translations/aWP-it_IT.po (modified) (9 diffs)
- ajaxd-wordpress/trunk/translations/aWP-ja.mo (modified) (previous)
- ajaxd-wordpress/trunk/translations/aWP-ja.po (modified) (13 diffs)
- ajaxd-wordpress/trunk/translations/aWP.mo (added)
- ajaxd-wordpress/trunk/translations/aWP.pot (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
ajaxd-wordpress/trunk/aWP.php
r44985 r45246 5 5 Description: A plugin that incorporates the best AJAX Wordpress features and wrap them in a single framework--including such features as inline posts and comments, the ability to paginate posts, submit comments, thread comments, edit comments and posts inline. <strong> The Admin panel is under presentation tab.</strong> Need Help? <a href="http://anthologyoi.com/awp/">Visit the Official AWP support thread</a> or try reading <a href="http://anthologyoi.com/awp/ajaxd-wordpress-readme">the full documentation</a>. 6 6 Author: Aaron Harun 7 Version: 1.20 7 Version: 1.20.1 8 8 Author URI: http://anthologyoi.com/ 9 9 … … 12 12 */ 13 13 14 $aWP[version] = '120 0';14 $aWP[version] = '1201'; 15 15 16 16 if($_GET['awp'] == 'test') ajaxd-wordpress/trunk/control/aWP-admin.php
r44986 r45246 756 756 <desc><![CDATA[<?php _e('AJAXed WordPress News','awp'); ?>]]></desc> 757 757 <item type="checkbox" open="1" value="1" name="no_news"> 758 <d><?php _e('Disable all news announcements? .','awp'); ?></d>758 <d><?php _e('Disable all news announcements?','awp'); ?></d> 759 759 </item> 760 760 <item type="checkbox" open="1" value="1" name="news_no_donation"> ajaxd-wordpress/trunk/control/aWP-upgrade.php
r43300 r45246 62 62 $messages[] = __('News from the AWP twitter stream is now automatically updated here.','awp'); 63 63 } 64 if($last < 1201){ 65 if($awpall['lightbox'] == 'Enabled'){ 66 unset($awpall['lightbox']); 67 $options['comp_'.$awpall[lightbox_type]] = 1; 68 unset($awpall[lightbox_type]); 69 $awp_mods = get_option('awp_mods'); 70 $awp_mods[] = 'compatabilities.php'; 71 sort($awp_mods); 72 update_option('awp_mods', $awp_mods); 73 $messages[] = __('Threaded comments module has been activated.','awp'); 74 } 75 } 64 76 65 77 //$messages[] = __('','awp'); ajaxd-wordpress/trunk/js/core.css
r44813 r45246 78 78 } 79 79 .bigthrobber{ 80 right:30%; 80 81 position:absolute; 81 82 z-index:100; ajaxd-wordpress/trunk/modules/ajaxnav/ajaxnav.php
r44986 r45246 238 238 $response = str_replace('http://'.$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF'] ,get_settings('siteurl'),$match[0]); 239 239 240 if(!$response) 241 echo __('AJAX Page could not be loaded.','awp'); 240 $actions = AWP_nav::find_JS($response); 241 242 if(!$response){ 243 echo __('AJAX Page could not be loaded.','awp'); exit;} 242 244 243 245 if($awpall[ajax_nav_all] != '') … … 247 249 } 248 250 249 251 function find_JS($response){ 252 global $id, $aWP,$awpall; 253 $actions = array(); 254 preg_match_all('!\<script[^>]*\>([\S\s]*?)\<\/script\>!ims',$response,$matches, PREG_SET_ORDER); 255 256 if(count($matches) > 0){ 257 foreach($matches as $match){ 258 $match = str_replace(array('<!--','-->','/*','*/','<![CDATA[',']]>'),'',$match[1]); 259 $actions[] = "setTimeout(\"try{".trim($match)."}catch(e){}\",1000);"; 260 } 261 } 262 263 return $actions; 264 } 250 265 251 266 function set_defaults(){ … … 430 445 431 446 <submenu> 432 <desc><?php _e('The following options control the automatic addition of the required awp_loop div. If you select any of the following options, you will have to edit your theme manually to load th jat type of pages inline.','awp');?></desc>447 <desc><?php _e('The following options control the automatic addition of the required awp_loop div. If you select any of the following options, you will have to edit your theme manually to load that type of pages inline.','awp');?></desc> 433 448 <item name="ajax_nav_single_loop" open="1" type="checkbox" d="<?php _e('Do NOT automatically add awp_loop div on Single post/page pages.','awp');?>"> 434 449 </item> ajaxd-wordpress/trunk/translations/aWP-it_IT.po
r44808 r45246 3 3 "Project-Id-Version: aWP 1.10\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2008-05- 07 23:26-0500\n"6 "PO-Revision-Date: 2008-05- 07 23:26-0500\n"5 "POT-Creation-Date: 2008-05-11 11:53-0500\n" 6 "PO-Revision-Date: 2008-05-11 11:54-0500\n" 7 7 "Last-Translator: Aaron Huran <admin@anthologyoi.com>\n" 8 8 "Language-Team: gidibao.net <gidibao@gmail.com>\n" … … 22 22 23 23 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/aWP.php:443 24 #, fuzzy25 24 msgid "AJAXed WordPress" 26 msgstr " AJAXed WordPress reCAPTCHA"25 msgstr "" 27 26 28 27 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/aWP.php:466 … … 820 819 821 820 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/control/aWP-admin.php:756 822 #, fuzzy823 821 msgid "AJAXed WordPress News" 824 msgstr " AJAXed WordPress reCAPTCHA"822 msgstr "" 825 823 826 824 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/control/aWP-admin.php:758 827 msgid "Disable all news announcements? ."825 msgid "Disable all news announcements?" 828 826 msgstr "" 829 827 … … 849 847 850 848 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/control/aWP-upgrade.php:40 849 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/control/aWP-upgrade.php:73 851 850 msgid "Threaded comments module has been activated." 852 851 msgstr "Il modulo delle repliche ai commenti é stato attivato." … … 1122 1121 msgstr "Nascondi il testo (per gli articoli incorporati): %s" 1123 1122 1124 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/awp-lightbox.php:781125 msgid "Lightbox Options."1126 msgstr "Opzioni Lightbox."1127 1128 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/awp-lightbox.php:791129 msgid "Lightbox Support"1130 msgstr "Supporto Lightbox"1131 1132 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/awp-lightbox.php:801133 msgid "This module just forces Lightbox to update its image lists when new posts or comments are loaded inline."1134 msgstr "Questo modulo forza la Lightbox ad aggiornare la lista delle proprie immagini quando un nuovo articolo o commento é caricato inline."1135 1136 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/awp-lightbox.php:841137 msgid "Which \"Lightbox\" script do you use."1138 msgstr "Quale script \"Lightbox\" utilizzi?"1139 1140 1123 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/shift_pages.php:39 1141 1124 msgid "Move pages so the first page (the normal excerpt) is empty? " … … 1308 1291 msgstr "Incluse le risposte ai commenti di replica." 1309 1292 1293 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/compatabilities.php:81 1294 msgid "Add compatibility with the following Scripts and Plugins." 1295 msgstr "" 1296 1310 1297 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/inlinecomments/inlinecomments.php:118 1311 1298 msgid "Show Posts Comments" … … 1398 1385 1399 1386 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/inlinecomments/inlinecomments.php:327 1400 #, fuzzy1401 1387 msgid "To make a file not based on an &lt;ol> list compatible, you must add &lt;!--awp_comments--> directly before the tag that starts your comment list and directly after the tag that ends it. There must be no characters or blank space between the two." 1402 msgstr "con la creazione di un file non basato su di una lista &lt;ol>, in questo caso dovrai aggiungere manualmente &lt;!-- AWP_inlinecomments--> subito prima della tag che avvia la lista dei tuoi commenti e dopo la tag che li chiude. Assicurati che non ci siano dei caratteri o spazi vuoti tra le due."1388 msgstr "con la creazione di un file non basato su di una lista &lt;ol>, in questo caso dovrai aggiungere manualmente &lt;!--awp_comments--> subito prima della tag che avvia la lista dei tuoi commenti e dopo la tag che li chiude. Assicurati che non ci siano dei caratteri o spazi vuoti tra le due." 1403 1389 1404 1390 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/inlinecomments/inlinecomments.php:331 … … 1526 1512 msgstr "Trackbacks e Pingbacks" 1527 1513 1528 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:24 11514 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:243 1529 1515 msgid "AJAX Page could not be loaded." 1530 1516 msgstr "" 1531 1517 1532 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:3 811518 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:396 1533 1519 msgid "Ajax Navigation" 1534 1520 msgstr "Navigazione Ajax" 1535 1521 1536 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:3 821522 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:397 1537 1523 msgid "Ajax Navigation Options" 1538 1524 msgstr "Opzioni di navigazione Ajax" 1539 1525 1540 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:3 841526 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:399 1541 1527 msgid "Use AJAX navigation with specific parts of your blog." 1542 1528 msgstr "" 1543 1529 1544 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php: 3851530 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:400 1545 1531 msgid "Modify wp_list_pages to load pages inline?" 1546 1532 msgstr "Desideri modificare wp_list_pages affinché le pagine siano caricate inline?" 1547 1533 1548 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php: 3861534 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:401 1549 1535 #, fuzzy 1550 1536 msgid "Modify wp_list_categories to load archives inline?" 1551 1537 msgstr "Desideri modificare wp_list_pages affinché le pagine siano caricate inline?" 1552 1538 1553 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php: 3871539 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:402 1554 1540 msgid "Load single page navigation inline?" 1555 1541 msgstr "Voui caricare la singola pagina per la navigazione inline?" 1556 1542 1557 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php: 3881543 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:403 1558 1544 msgid "Load index page navigation inline?" 1559 1545 msgstr "Vuoi caricare la pagina index per la navigazione inline?" 1560 1546 1561 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php: 3891547 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:404 1562 1548 #, fuzzy 1563 1549 msgid "Attempt to AJAXify your theme's search form?" 1564 1550 msgstr "Prova a modificare il template predefinito dei commenti del tuo tema." 1565 1551 1566 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php: 3921552 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:407 1567 1553 msgid "AJAX everything" 1568 1554 msgstr "" 1569 1555 1570 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php: 3931556 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:408 1571 1557 msgid "Do not automatically attempt to load blog pages inline." 1572 1558 msgstr "" 1573 1559 1574 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php: 3941560 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:409 1575 1561 #, fuzzy 1576 1562 msgid "Attempt to load ALL blog pages inline?" 1577 1563 msgstr "Desideri modificare wp_list_pages affinché le pagine siano caricate inline?" 1578 1564 1579 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php: 3971565 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:412 1580 1566 msgid "Advanced options for Single Post Navigation" 1581 1567 msgstr "" 1582 1568 1583 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:3991584 1569 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:414 1570 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:429 1585 1571 msgid "Show links above posts." 1586 1572 msgstr "" 1587 1573 1588 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:4031589 1574 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:418 1575 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:433 1590 1576 msgid "Show navigation links below posts." 1591 1577 msgstr "" 1592 1578 1593 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:4 071594 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:4 261579 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:422 1580 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:441 1595 1581 msgid "Do not show navigation links automatically." 1596 1582 msgstr "" 1597 1583 1598 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:408 1584 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:423 1585 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:442 1586 msgid "You will have to edit your theme manually." 1587 msgstr "" 1588 1599 1589 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:427 1600 msgid "You will have to edit your theme manually."1601 msgstr ""1602 1603 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:4121604 1590 msgid "Advanced options for Home Page Navigation" 1605 1591 msgstr "" 1606 1592 1607 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:4 221593 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:437 1608 1594 msgid "Show navigation links both above and below posts." 1609 1595 msgstr "" 1610 1596 1611 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:4 321612 msgid "The following options control the automatic addition of the required awp_loop div. If you select any of the following options, you will have to edit your theme manually to load th jat type of pages inline."1613 msgstr "" 1614 1615 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:4 331597 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:447 1598 msgid "The following options control the automatic addition of the required awp_loop div. If you select any of the following options, you will have to edit your theme manually to load that type of pages inline." 1599 msgstr "" 1600 1601 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:448 1616 1602 msgid "Do NOT automatically add awp_loop div on Single post/page pages." 1617 1603 msgstr "" 1618 1604 1619 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:4 361605 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:451 1620 1606 msgid "Do NOT automatically add awp_loop div on Home and Archive pages." 1621 1607 msgstr "" 1622 1608 1623 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:4 381609 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:453 1624 1610 msgid "Do NOT automatically add awp_loop div on ANY page." 1625 1611 msgstr "" 1626 1612 1627 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:4 631613 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:478 1628 1614 #, fuzzy 1629 1615 msgid "Navigation" … … 1910 1896 msgstr "Vuoi convetire in automatico gli smilies in immagine? (potrebbe essere di intoppo per gli scrittori particolarmente veloci)" 1911 1897 1898 #~ msgid "Lightbox Options." 1899 #~ msgstr "Opzioni Lightbox." 1900 #~ msgid "Lightbox Support" 1901 #~ msgstr "Supporto Lightbox" 1902 #~ msgid "" 1903 #~ "This module just forces Lightbox to update its image lists when new posts " 1904 #~ "or comments are loaded inline." 1905 #~ msgstr "" 1906 #~ "Questo modulo forza la Lightbox ad aggiornare la lista delle proprie " 1907 #~ "immagini quando un nuovo articolo o commento é caricato inline." 1908 #~ msgid "Which \"Lightbox\" script do you use." 1909 #~ msgstr "Quale script \"Lightbox\" utilizzi?" 1912 1910 #~ msgid "AWP Managment" 1913 1911 #~ msgstr "Gestione AWP" ajaxd-wordpress/trunk/translations/aWP-ja.po
r44808 r45246 9 9 "Project-Id-Version: AJAXed Wordpress 1.19.2 ja\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 "POT-Creation-Date: 2008-05- 07 23:25-0500\n"12 "PO-Revision-Date: 2008-05- 07 23:26-0500\n"11 "POT-Creation-Date: 2008-05-11 11:53-0500\n" 12 "PO-Revision-Date: 2008-05-11 11:54-0500\n" 13 13 "Last-Translator: Aaron Huran <admin@anthologyoi.com>\n" 14 14 "Language-Team: Japanese\n" … … 23 23 24 24 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/aWP.php:443 25 #, fuzzy26 25 msgid "AJAXed WordPress" 27 msgstr "AJAXed WordPress reCAPTCHA"26 msgstr "AJAXed WordPress" 28 27 29 28 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/aWP.php:466 … … 88 87 89 88 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/aWP.php:493 90 #, fuzzy,php-format89 #, php-format 91 90 msgid "% comments" 92 msgstr " %件のコメント"91 msgstr "WP AJAX コメント編集オプション" 93 92 94 93 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/aWP-response.php:30 … … 137 136 138 137 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/control/aWP-ajax.php:275 139 #, fuzzy140 138 msgid "Advanced AJAX Options" 141 msgstr " AJAXオプション"139 msgstr "拡張AJAXオプション" 142 140 143 141 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/control/aWP-ajax.php:275 144 #, fuzzy145 142 msgid "Use the following at your own risk." 146 msgstr " ページ又は抜粋を作成するための方法として以下を使用します。"143 msgstr "自己責任で以下を使用します。" 147 144 148 145 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/control/aWP-ajax.php:277 149 146 msgid "Use the JS library selected above, but DO NOT load it." 150 msgstr " "147 msgstr "上で選択したJSライブラリを使用しますが、読み込みません。" 151 148 152 149 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/control/aWP-ajax.php:284 … … 821 818 822 819 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/control/aWP-admin.php:756 820 msgid "AJAXed WordPress News" 821 msgstr "AJAXed WordPress ニュース" 822 823 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/control/aWP-admin.php:758 823 824 #, fuzzy 824 msgid "AJAXed WordPress News" 825 msgstr "AJAXed WordPress reCAPTCHA" 826 827 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/control/aWP-admin.php:758 828 msgid "Disable all news announcements?." 829 msgstr "" 825 msgid "Disable all news announcements?" 826 msgstr "全てのニュースを無効にしますか?" 830 827 831 828 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/control/aWP-admin.php:761 832 829 msgid "Disable news announcments of donations?" 833 msgstr " "830 msgstr "寄付のニュースを無効にしますか?" 834 831 835 832 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/control/aWP-admin.php:766 … … 850 847 851 848 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/control/aWP-upgrade.php:40 849 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/control/aWP-upgrade.php:73 852 850 msgid "Threaded comments module has been activated." 853 851 msgstr "スレッド化コメントモジュールは有効になりました。" … … 863 861 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/control/aWP-upgrade.php:52 864 862 msgid "Version 1.19.2 fixes bugs with AJAX Nav and Inline Posts module." 865 msgstr " "863 msgstr "バージョン1.19.2はAJAXナビゲーションとインライン投稿モジュールでのバグを修正します。" 866 864 867 865 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/control/aWP-upgrade.php:53 868 866 msgid "Admin panel tabs that show empty panels are now hidden after load." 869 msgstr " "867 msgstr "空のパネルを表示する管理パネルタブは読み込み後すぐに隠されます。" 870 868 871 869 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/control/aWP-upgrade.php:57 872 870 msgid "Preview comment module now works with Rich Text Editor." 873 msgstr " "871 msgstr "プレビューコメントモジュールはリッチテキストエディタですぐに動作します。" 874 872 875 873 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/control/aWP-upgrade.php:62 876 874 msgid "News from the AWP twitter stream is now automatically updated here." 877 msgstr " "875 msgstr "AWPtwitterストリームからのニュースはすぐにここで自動的に更新されます。" 878 876 879 877 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/awp-edit-comments.php:44 … … 1123 1121 msgstr "非表示にするテキスト(埋め込み投稿用): %s" 1124 1122 1125 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/awp-lightbox.php:781126 msgid "Lightbox Options."1127 msgstr "Lightboxオプション"1128 1129 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/awp-lightbox.php:791130 msgid "Lightbox Support"1131 msgstr "Lightboxサポート"1132 1133 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/awp-lightbox.php:801134 msgid "This module just forces Lightbox to update its image lists when new posts or comments are loaded inline."1135 msgstr "このモジュールによって新しい投稿かコメントがインラインで読み込まれた時にLightboxは画像一覧を更新します。"1136 1137 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/awp-lightbox.php:841138 msgid "Which \"Lightbox\" script do you use."1139 msgstr "何処で「Lightbox」スクリプトを使用したいですか?"1140 1141 1123 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/shift_pages.php:39 1142 1124 msgid "Move pages so the first page (the normal excerpt) is empty? " … … 1309 1291 msgstr "子コメントへの返信も含まれます。" 1310 1292 1293 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/compatabilities.php:81 1294 #, fuzzy 1295 msgid "Add compatibility with the following Scripts and Plugins." 1296 msgstr "全てのニュースを無効にしますか?" 1297 1311 1298 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/inlinecomments/inlinecomments.php:118 1312 1299 msgid "Show Posts Comments" … … 1338 1325 1339 1326 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/inlinecomments/inlinecomments.php:290 1340 #, fuzzy1341 1327 msgid "The following texts are for comments. You can use the tags %title, %author, %date, %count, %trackbacks, %time, and %total to show their respective data in the following textboxes." 1342 1328 msgstr "以下のテキストはコメント用です。以下のテキストボックスにそれらのそれぞれのデータを表示するためにタグ「%title %author %date %count %time 」を使用することが出来ます。" … … 1399 1385 1400 1386 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/inlinecomments/inlinecomments.php:327 1401 #, fuzzy1402 1387 msgid "To make a file not based on an &lt;ol> list compatible, you must add &lt;!--awp_comments--> directly before the tag that starts your comment list and directly after the tag that ends it. There must be no characters or blank space between the two." 1403 1388 msgstr "&lt;ol>リストの互換性にに基づかないファイルを作成するために直接コメントリストを始めるタグの前とそれを終わらせるタグの後ろに&lt;!--AWP_inlinecomments-->を追加しなければなりません。2つの間には、どんな文字列も空白も必要ありません。" … … 1527 1512 msgstr "トラックバックとピンバック" 1528 1513 1529 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:24 11514 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:243 1530 1515 msgid "AJAX Page could not be loaded." 1531 msgstr " "1532 1533 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:3 811516 msgstr "AJAXページを読み込めませんでした。" 1517 1518 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:396 1534 1519 msgid "Ajax Navigation" 1535 1520 msgstr "Ajaxナビゲーション" 1536 1521 1537 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:3 821522 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:397 1538 1523 msgid "Ajax Navigation Options" 1539 1524 msgstr "Ajaxナビゲーションのオプション" 1540 1525 1541 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:3 841526 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:399 1542 1527 msgid "Use AJAX navigation with specific parts of your blog." 1543 msgstr " "1544 1545 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php: 3851528 msgstr "ブログの特定のパーツでAJAXナビゲーションを使用します。" 1529 1530 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:400 1546 1531 msgid "Modify wp_list_pages to load pages inline?" 1547 1532 msgstr "インラインページを読み込むためにwp_list_pagesを修正しますか?" 1548 1533 1549 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:386 1550 #, fuzzy 1534 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:401 1551 1535 msgid "Modify wp_list_categories to load archives inline?" 1552 msgstr "インライン ページを読み込むためにwp_list_pagesを修正しますか?"1553 1554 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php: 3871536 msgstr "インラインアーカイブを読み込むためにwp_list_categoriesを修正しますか?" 1537 1538 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:402 1555 1539 msgid "Load single page navigation inline?" 1556 1540 msgstr "単一ページのナビゲーションをインラインで読み込みますか?" 1557 1541 1558 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php: 3881542 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:403 1559 1543 msgid "Load index page navigation inline?" 1560 1544 msgstr "インデックスページのナビゲーションをインラインで読み込みますか?" 1561 1545 1562 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:389 1546 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:404 1547 msgid "Attempt to AJAXify your theme's search form?" 1548 msgstr "テーマの検索フォームのAJAX化を試みますか?" 1549 1550 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:407 1551 msgid "AJAX everything" 1552 msgstr "全てAJAX" 1553 1554 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:408 1555 msgid "Do not automatically attempt to load blog pages inline." 1556 msgstr "ブログページのインライン読込を自動的に試みません。" 1557 1558 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:409 1559 msgid "Attempt to load ALL blog pages inline?" 1560 msgstr "全てのブログページのインライン読込を試みますか?" 1561 1562 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:412 1563 msgid "Advanced options for Single Post Navigation" 1564 msgstr "単一投稿ナビゲーションの拡張オプション" 1565 1566 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:414 1567 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:429 1568 msgid "Show links above posts." 1569 msgstr "投稿の上にリンクを表示します。" 1570 1571 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:418 1572 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:433 1573 msgid "Show navigation links below posts." 1574 msgstr "投稿の下にナビゲーションリンクを表示します。" 1575 1576 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:422 1577 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:441 1578 msgid "Do not show navigation links automatically." 1579 msgstr "自動的にナビゲーションリンクを表示しません。" 1580 1581 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:423 1582 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:442 1583 msgid "You will have to edit your theme manually." 1584 msgstr "テーマを手動で編集する必要があります。" 1585 1586 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:427 1587 msgid "Advanced options for Home Page Navigation" 1588 msgstr "ホームページナビゲーションの拡張オプション" 1589 1590 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:437 1591 msgid "Show navigation links both above and below posts." 1592 msgstr "投稿の上下にナビゲーションリンクを表示します。" 1593 1594 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:447 1563 1595 #, fuzzy 1564 msgid "Attempt to AJAXify your theme's search form?" 1565 msgstr "デフォルトテーマのコメントテンプレートの修正を試みます。" 1566 1567 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:392 1568 msgid "AJAX everything" 1569 msgstr "" 1570 1571 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:393 1572 msgid "Do not automatically attempt to load blog pages inline." 1573 msgstr "" 1574 1575 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:394 1576 #, fuzzy 1577 msgid "Attempt to load ALL blog pages inline?" 1578 msgstr "インラインページを読み込むためにwp_list_pagesを修正しますか?" 1579 1580 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:397 1581 msgid "Advanced options for Single Post Navigation" 1582 msgstr "" 1583 1584 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:399 1585 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:414 1586 msgid "Show links above posts." 1587 msgstr "" 1588 1589 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:403 1590 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:418 1591 msgid "Show navigation links below posts." 1592 msgstr "" 1593 1594 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:407 1595 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:426 1596 msgid "Do not show navigation links automatically." 1597 msgstr "" 1598 1599 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:408 1600 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:427 1601 msgid "You will have to edit your theme manually." 1602 msgstr "" 1603 1604 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:412 1605 msgid "Advanced options for Home Page Navigation" 1606 msgstr "" 1607 1608 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:422 1609 msgid "Show navigation links both above and below posts." 1610 msgstr "" 1611 1612 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:432 1613 msgid "The following options control the automatic addition of the required awp_loop div. If you select any of the following options, you will have to edit your theme manually to load thjat type of pages inline." 1614 msgstr "" 1615 1616 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:433 1596 msgid "The following options control the automatic addition of the required awp_loop div. If you select any of the following options, you will have to edit your theme manually to load that type of pages inline." 1597 msgstr "以下のオプションは要求されたawp_loop divの自動追加をコントロールします。以下のオプションのどれを選択してもインラインページのタイプを読み込むために手動でテーマを編集する必要があります。" 1598 1599 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:448 1617 1600 msgid "Do NOT automatically add awp_loop div on Single post/page pages." 1618 msgstr " "1619 1620 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:4 361601 msgstr "単一投稿/ページ上で自動的にawp_loop divを追加しません。" 1602 1603 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:451 1621 1604 msgid "Do NOT automatically add awp_loop div on Home and Archive pages." 1622 msgstr " "1623 1624 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:4 381605 msgstr "ホーム及びアーカイブページ上で自動的にawp_loop divを追加しません。" 1606 1607 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:453 1625 1608 msgid "Do NOT automatically add awp_loop div on ANY page." 1626 msgstr "" 1627 1628 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:463 1629 #, fuzzy 1609 msgstr "全てのページ上で自動的にawp_loop divを追加しません。" 1610 1611 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:478 1630 1612 msgid "Navigation" 1631 msgstr " Ajaxナビゲーション"1613 msgstr "ナビゲーション" 1632 1614 1633 1615 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/richtext/awp-richeditor.php:77 … … 1911 1893 msgstr "自動的に画像をスマイリーに変換しますか?(タイピングが早い人には若干ラグがあるかもしれません)" 1912 1894 1913 #~ msgid "AWP Managment" 1914 #~ msgstr "AWP管理" 1915 #~ msgid "AJAX functionality has been disabled for this post." 1916 #~ msgstr "AJAX機能はこの投稿では無効です。" 1917 #~ msgid "You have new Messages." 1918 #~ msgstr "新しいメッセージがあります。" 1895 #~ msgid "Lightbox Options." 1896 #~ msgstr "Lightboxオプション" 1897 #~ msgid "Lightbox Support" 1898 #~ msgstr "Lightboxサポート" 1919 1899 #~ msgid "" 1920 #~ "To make a file not based on a not based on an &lt;ol> list " 1921 #~ "compatible, you must add &lt;!--awp_comments--> directly before the " 1922 #~ "tag that starts your comment list and directly after the tag that ends " 1923 #~ "it. There must be no characters or blank space between the two." 1900 #~ "This module just forces Lightbox to update its image lists when new posts " 1901 #~ "or comments are loaded inline." 1924 1902 #~ msgstr "" 1925 #~ " &lt;ol>リストの互換性にに基づかないファイルを作成するために直接コメン"1926 #~ " トリストを始めるタグの前とそれを終わらせるタグの後ろに&lt;!--"1927 #~ "AWP_inlinecomments-->を追加しなければなりません。2つの間には、どんな文字列"1928 #~ "も空白も必要ありません。"1929 1903 #~ "このモジュールによって新しい投稿かコメントがインラインで読み込まれた時に" 1904 #~ "Lightboxは画像一覧を更新します。" 1905 #~ msgid "Which \"Lightbox\" script do you use." 1906 #~ msgstr "何処で「Lightbox」スクリプトを使用したいですか?" 1907 ajaxd-wordpress/trunk/translations/aWP.pot
r44808 r45246 3 3 "Project-Id-Version: aWP 1.10\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2008-05- 07 23:25-0500\n"6 "PO-Revision-Date: 2008-05- 07 23:25-0500\n"5 "POT-Creation-Date: 2008-05-11 11:53-0500\n" 6 "PO-Revision-Date: 2008-05-11 11:53-0500\n" 7 7 "Last-Translator: Aaron Huran <admin@anthologyoi.com>\n" 8 8 "Language-Team: \n" … … 818 818 819 819 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/control/aWP-admin.php:758 820 msgid "Disable all news announcements? ."820 msgid "Disable all news announcements?" 821 821 msgstr "" 822 822 … … 842 842 843 843 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/control/aWP-upgrade.php:40 844 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/control/aWP-upgrade.php:73 844 845 msgid "Threaded comments module has been activated." 845 846 msgstr "" … … 1115 1116 msgstr "" 1116 1117 1117 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/awp-lightbox.php:781118 msgid "Lightbox Options."1119 msgstr ""1120 1121 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/awp-lightbox.php:791122 msgid "Lightbox Support"1123 msgstr ""1124 1125 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/awp-lightbox.php:801126 msgid "This module just forces Lightbox to update its image lists when new posts or comments are loaded inline."1127 msgstr ""1128 1129 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/awp-lightbox.php:841130 msgid "Which \"Lightbox\" script do you use."1131 msgstr ""1132 1133 1118 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/shift_pages.php:39 1134 1119 msgid "Move pages so the first page (the normal excerpt) is empty? " … … 1301 1286 msgstr "" 1302 1287 1288 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/compatabilities.php:81 1289 msgid "Add compatibility with the following Scripts and Plugins." 1290 msgstr "" 1291 1303 1292 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/inlinecomments/inlinecomments.php:118 1304 1293 msgid "Show Posts Comments" … … 1517 1506 msgstr "" 1518 1507 1519 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:24 11508 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:243 1520 1509 msgid "AJAX Page could not be loaded." 1521 1510 msgstr "" 1522 1511 1523 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:3 811512 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:396 1524 1513 msgid "Ajax Navigation" 1525 1514 msgstr "" 1526 1515 1527 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:3 821516 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:397 1528 1517 msgid "Ajax Navigation Options" 1529 1518 msgstr "" 1530 1519 1531 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:3 841520 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:399 1532 1521 msgid "Use AJAX navigation with specific parts of your blog." 1533 1522 msgstr "" 1534 1523 1535 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php: 3851524 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:400 1536 1525 msgid "Modify wp_list_pages to load pages inline?" 1537 1526 msgstr "" 1538 1527 1539 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php: 3861528 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:401 1540 1529 msgid "Modify wp_list_categories to load archives inline?" 1541 1530 msgstr "" 1542 1531 1543 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php: 3871532 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:402 1544 1533 msgid "Load single page navigation inline?" 1545 1534 msgstr "" 1546 1535 1547 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php: 3881536 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:403 1548 1537 msgid "Load index page navigation inline?" 1549 1538 msgstr "" 1550 1539 1551 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php: 3891540 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:404 1552 1541 msgid "Attempt to AJAXify your theme's search form?" 1553 1542 msgstr "" 1554 1543 1555 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php: 3921544 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:407 1556 1545 msgid "AJAX everything" 1557 1546 msgstr "" 1558 1547 1559 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php: 3931548 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:408 1560 1549 msgid "Do not automatically attempt to load blog pages inline." 1561 1550 msgstr "" 1562 1551 1563 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php: 3941552 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:409 1564 1553 msgid "Attempt to load ALL blog pages inline?" 1565 1554 msgstr "" 1566 1555 1567 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php: 3971556 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:412 1568 1557 msgid "Advanced options for Single Post Navigation" 1569 1558 msgstr "" 1570 1559 1571 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:3991572 1560 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:414 1561 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:429 1573 1562 msgid "Show links above posts." 1574 1563 msgstr "" 1575 1564 1576 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:4031577 1565 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:418 1566 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:433 1578 1567 msgid "Show navigation links below posts." 1579 1568 msgstr "" 1580 1569 1581 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:4 071582 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:4 261570 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:422 1571 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:441 1583 1572 msgid "Do not show navigation links automatically." 1584 1573 msgstr "" 1585 1574 1586 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:408 1575 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:423 1576 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:442 1577 msgid "You will have to edit your theme manually." 1578 msgstr "" 1579 1587 1580 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:427 1588 msgid "You will have to edit your theme manually."1589 msgstr ""1590 1591 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:4121592 1581 msgid "Advanced options for Home Page Navigation" 1593 1582 msgstr "" 1594 1583 1595 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:4 221584 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:437 1596 1585 msgid "Show navigation links both above and below posts." 1597 1586 msgstr "" 1598 1587 1599 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:4 321600 msgid "The following options control the automatic addition of the required awp_loop div. If you select any of the following options, you will have to edit your theme manually to load th jat type of pages inline."1601 msgstr "" 1602 1603 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:4 331588 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:447 1589 msgid "The following options control the automatic addition of the required awp_loop div. If you select any of the following options, you will have to edit your theme manually to load that type of pages inline." 1590 msgstr "" 1591 1592 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:448 1604 1593 msgid "Do NOT automatically add awp_loop div on Single post/page pages." 1605 1594 msgstr "" 1606 1595 1607 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:4 361596 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:451 1608 1597 msgid "Do NOT automatically add awp_loop div on Home and Archive pages." 1609 1598 msgstr "" 1610 1599 1611 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:4 381600 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:453 1612 1601 msgid "Do NOT automatically add awp_loop div on ANY page." 1613 1602 msgstr "" 1614 1603 1615 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:4 631604 #: /share/www/trunk/wp-content/plugins/ajaxd-wordpress/modules/ajaxnav/ajaxnav.php:478 1616 1605 msgid "Navigation" 1617 1606 msgstr ""
