From 03bc68c0af27350403815718f92c0cb9c54dfb21 Mon Sep 17 00:00:00 2001 From: Thabo Date: Wed, 14 Oct 2015 20:53:31 -0700 Subject: [PATCH] added plugin for communtiy --- .../plugins/taxonomy-terms-order/css/to.css | 48 ++++ .../images/admin-icon-settings.gif | Bin 0 -> 2035 bytes .../taxonomy-terms-order/images/menu-icon.png | Bin 0 -> 3835 bytes .../images/wpspin_light.gif | Bin 0 -> 723 bytes .../include/functions.php | 73 ++++++ .../include/interface.php | 245 ++++++++++++++++++ .../taxonomy-terms-order/include/options.php | 86 ++++++ .../include/terms_walker.php | 48 ++++ .../taxonomy-terms-order/js/to-javascript.js | 135 ++++++++++ .../taxonomy-terms-order/lang/tto-de_DE.mo | Bin 0 -> 3195 bytes .../taxonomy-terms-order/lang/tto-de_DE.po | 175 +++++++++++++ .../taxonomy-terms-order/lang/tto-fa_IR.mo | Bin 0 -> 4665 bytes .../taxonomy-terms-order/lang/tto-fa_IR.po | 177 +++++++++++++ .../taxonomy-terms-order/lang/tto-fr_FR.mo | Bin 0 -> 3107 bytes .../taxonomy-terms-order/lang/tto-fr_FR.po | 175 +++++++++++++ .../taxonomy-terms-order/lang/tto-hu_HU.mo | Bin 0 -> 3941 bytes .../taxonomy-terms-order/lang/tto-hu_HU.po | 177 +++++++++++++ .../taxonomy-terms-order/lang/tto-ja.mo | Bin 0 -> 4096 bytes .../taxonomy-terms-order/lang/tto-ja.po | 182 +++++++++++++ .../taxonomy-terms-order/lang/tto-nl_NL.mo | Bin 0 -> 2574 bytes .../taxonomy-terms-order/lang/tto-nl_NL.po | 162 ++++++++++++ .../taxonomy-terms-order/lang/tto-pl_PL.mo | Bin 0 -> 4255 bytes .../taxonomy-terms-order/lang/tto-pl_PL.po | 188 ++++++++++++++ .../taxonomy-terms-order/lang/tto-pt_BR.mo | Bin 0 -> 3598 bytes .../taxonomy-terms-order/lang/tto-pt_BR.po | 192 ++++++++++++++ .../taxonomy-terms-order/lang/tto-pt_PT.mo | Bin 0 -> 3377 bytes .../taxonomy-terms-order/lang/tto-pt_PT.po | 163 ++++++++++++ .../taxonomy-terms-order/lang/tto-ro_RO.mo | Bin 0 -> 2318 bytes .../taxonomy-terms-order/lang/tto-ro_RO.po | 178 +++++++++++++ .../taxonomy-terms-order/lang/tto-sk_SK.mo | Bin 0 -> 3893 bytes .../taxonomy-terms-order/lang/tto-sk_SK.po | 189 ++++++++++++++ .../taxonomy-terms-order/lang/tto-uk_UA.mo | Bin 0 -> 4656 bytes .../taxonomy-terms-order/lang/tto-uk_UA.po | 175 +++++++++++++ .../taxonomy-terms-order/lang/tto-zh_TW.mo | Bin 0 -> 3828 bytes .../taxonomy-terms-order/lang/tto-zh_TW.po | 180 +++++++++++++ .../plugins/taxonomy-terms-order/lang/tto.mo | Bin 0 -> 630 bytes .../plugins/taxonomy-terms-order/lang/tto.po | 152 +++++++++++ .../plugins/taxonomy-terms-order/readme.txt | 105 ++++++++ .../taxonomy-terms-order/screenshot-1.gif | Bin 0 -> 15126 bytes .../taxonomy-terms-order/screenshot-2.gif | Bin 0 -> 31467 bytes .../taxonomy-terms-order.php | 201 ++++++++++++++ 41 files changed, 3406 insertions(+) create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/css/to.css create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/images/admin-icon-settings.gif create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/images/menu-icon.png create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/images/wpspin_light.gif create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/include/functions.php create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/include/interface.php create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/include/options.php create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/include/terms_walker.php create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/js/to-javascript.js create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/lang/tto-de_DE.mo create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/lang/tto-de_DE.po create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/lang/tto-fa_IR.mo create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/lang/tto-fa_IR.po create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/lang/tto-fr_FR.mo create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/lang/tto-fr_FR.po create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/lang/tto-hu_HU.mo create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/lang/tto-hu_HU.po create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/lang/tto-ja.mo create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/lang/tto-ja.po create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/lang/tto-nl_NL.mo create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/lang/tto-nl_NL.po create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/lang/tto-pl_PL.mo create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/lang/tto-pl_PL.po create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/lang/tto-pt_BR.mo create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/lang/tto-pt_BR.po create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/lang/tto-pt_PT.mo create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/lang/tto-pt_PT.po create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/lang/tto-ro_RO.mo create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/lang/tto-ro_RO.po create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/lang/tto-sk_SK.mo create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/lang/tto-sk_SK.po create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/lang/tto-uk_UA.mo create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/lang/tto-uk_UA.po create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/lang/tto-zh_TW.mo create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/lang/tto-zh_TW.po create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/lang/tto.mo create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/lang/tto.po create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/readme.txt create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/screenshot-1.gif create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/screenshot-2.gif create mode 100644 wp/wp-content/plugins/taxonomy-terms-order/taxonomy-terms-order.php diff --git a/wp/wp-content/plugins/taxonomy-terms-order/css/to.css b/wp/wp-content/plugins/taxonomy-terms-order/css/to.css new file mode 100644 index 00000000..3076f38e --- /dev/null +++ b/wp/wp-content/plugins/taxonomy-terms-order/css/to.css @@ -0,0 +1,48 @@ + +h2.subtitle {font-size: 15px; font-style: italic; font-weight: bold} + +#order-terms {} +#order-terms img {vertical-align: middle} +#order-terms #tto_sortable { list-style-type: none; margin: 20px 0 0; padding: 0; width: 100%; } +#order-terms ul {list-style: none;} +#order-terms ul.children {margin-left: 25px} +.term_type_li .item {background-color: #f9f9f9; + border: 1px solid #dddddd; + cursor: move; + margin: 4px 0; + padding: 2px 0;} +.term_type_li .item span { background: none repeat scroll 0 0 #F7F7F7; color: #555555; display: block; font-weight: bold; padding: 5px 15px; font-size: 13px;} +.term_type_li .item span.edit {position: absolute; right: 10px; top: 6px; padding: 0px; margin: 0px} +#order-terms .placeholder{border: dashed 2px #ccc;height:30px; background-color: #FFF;} +.term_type_li ul {margin-top: 6px} +#dragHelper li, #dragHelper ul {background: transparent !important;} +#dragHelper ul {list-style: none;} + +.wp-list-taxonomy {width: 100%} +.wp-list-taxonomy thead tr th{padding: 10px 0;} +.wp-list-taxonomy tr {background-color: #FCFCFC;} +.wp-list-taxonomy tbody th.check-column { padding: 9px 0 22px;} +.wp-list-taxonomy td { color: #555555;} +.wp-list-taxonomy td, .wp-list-taxonomy th { border-bottom-color: #DFDFDF; border-top-color: #FFFFFF;} +.wp-list-taxonomy th, .wp-list-taxonomy td { overflow: hidden;} +.wp-list-taxonomy td { padding: 9px 7px 4px 7px; vertical-align: top;} +.wp-list-taxonomy td, .wp-list-taxonomy th { border-style: solid; border-width: 1px 0;} +.wp-list-taxonomy * { word-wrap: break-word;} + +#cpt_info_box {padding: 0 10px; border: 1px dashed #6aadcc; background-color: #FFF; margin-top: 10px; +-webkit-box-shadow: 1px 1px 7px rgba(50, 50, 50, 0.17); +-moz-box-shadow: 1px 1px 7px rgba(50, 50, 50, 0.17); +box-shadow: 1px 1px 7px rgba(50, 50, 50, 0.17);} +#cpt_info_box p {font-size: 12px} +#cpt_info_box a {text-decoration: none} +#cpt_info_box #donate_form {float: right; padding: 10px 0 17px; text-align: center; width: 100%;} +#p_right {float: right; width: 210px; background-color:#f5f5f5; border-left: 1px dashed #dedede; border-right: 1px dashed #dedede} +.p_s_item {float: right; padding: 0px 5px; margin-top: 15px; margin-bottom: 5px; } +.p_s_item.s_gp {padding-top: 2px; margin-left: 5px} + +#icon-settings {background-image:url("../images/admin-icon-settings.gif");background-repeat:no-repeat;} +.menu_tto {margin-right: 4px; display: inline; vertical-align: middle; margin-top: -1px;} + +.clear {clear: both} + + diff --git a/wp/wp-content/plugins/taxonomy-terms-order/images/admin-icon-settings.gif b/wp/wp-content/plugins/taxonomy-terms-order/images/admin-icon-settings.gif new file mode 100644 index 0000000000000000000000000000000000000000..ce912ab781a34b521d4f27db68e14cfdc4e0cd80 GIT binary patch literal 2035 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 literal 0 HcmV?d00001 diff --git a/wp/wp-content/plugins/taxonomy-terms-order/images/menu-icon.png b/wp/wp-content/plugins/taxonomy-terms-order/images/menu-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..bb4cdba4df665e7386c7053a69037e87ed239a91 GIT binary patch literal 3835 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 literal 0 HcmV?d00001 diff --git a/wp/wp-content/plugins/taxonomy-terms-order/images/wpspin_light.gif b/wp/wp-content/plugins/taxonomy-terms-order/images/wpspin_light.gif new file mode 100644 index 0000000000000000000000000000000000000000..09d621ede9dbe610877292e554c858d60573359e GIT binary patch literal 723 zcmZ?wbhEHb6ky3UH!ouR`=lAT{vl};VeEIUl!ouRtojadCecHBd+kyoPPMtdS z?%g|}ArPSWpWDwhB-q(8z|~04fSC~}s`yXJxhOTUBsE2$JhLQ2Au%hlA}2pFMK3ci zEuTU0CkrPxP?ZiyKgf{`thx#ceJPpqmMq|Ubc$)6gFv&z8PkHx)%R}in9s-lM6i9! zBZm__dd2Imak;LY=7h}zm4rkI)`WR0GG*E)?mKYn(8@QLmiIn?v-kDx2z`w?tc})! zof1sgG@1de?oQNs+@Zp$B*l}wBx#YxN$K-jdS4q!9hlC1plNUP#}nRyjb|@j-XZKa z^H3#V%=s`!CV{ zGZTv~S)?jgU+dnbH8)5Rn@L8H@VK@q;+ad}wo4-xl69peI z>rMAn>7QZ36tBx*W_EhPz6U`Z*qo#fG3yD?Ju5c7TU8{Z8nlJ?f$93++hq!-bARhP dGOMsv=2x69g9)2+= 0;$i--) + { + if (current_user_can('level_' . $i) === TRUE) + { + $user_level = $i; + if ($return_as_numeric === FALSE) + $user_level = 'level_'.$i; + break; + } + } + return ($user_level); + } + + function tto_info_box() + { + ?> +
+
+ +
+
+ + + + +
+
+
+ +
+ +
+ +
+ +
+
+ + +
+ +


http://www.nsp-code.com/.

+

+

Post Terms Order

+

Post Types Order

+ +
+
+ + \ No newline at end of file diff --git a/wp/wp-content/plugins/taxonomy-terms-order/include/interface.php b/wp/wp-content/plugins/taxonomy-terms-order/include/interface.php new file mode 100644 index 00000000..35f64dc7 --- /dev/null +++ b/wp/wp-content/plugins/taxonomy-terms-order/include/interface.php @@ -0,0 +1,245 @@ +post_type) && !empty($screen->post_type)) + $post_type = $screen->post_type; + else + { + switch($screen->parent_file) + { + case "upload.php" : + $post_type = 'attachment'; + break; + + default: + $post_type = 'post'; + } + } + } + + $post_type_data = get_post_type_object($post_type); + + if (!taxonomy_exists($taxonomy)) + $taxonomy = ''; + + ?> +
+

+

+ + + +
+ + + +
+ + + +
+ + '; + + //output all available taxonomies for this post type + + $post_type_taxonomies = get_object_taxonomies($post_type); + + foreach ($post_type_taxonomies as $key => $taxonomy_name) + { + $taxonomy_info = get_taxonomy($taxonomy_name); + if ($taxonomy_info->hierarchical !== TRUE) + unset($post_type_taxonomies[$key]); + } + + //use the first taxonomy if emtpy taxonomy + if ($taxonomy == '' || !taxonomy_exists($taxonomy)) + { + reset($post_type_taxonomies); + $taxonomy = current($post_type_taxonomies); + } + + if (count($post_type_taxonomies) > 1) + { + + ?> + +

labels->name) ?>

+ + + + + + + + + + + + + + + + + +
 
name="taxonomy"> label ?> (labels->singular_name; ?>)
+
+ + +
+ + + +
+ +
    + +
+ +
+
+ +
+

+ +

+
+ +
+ +
+ + + +
+ 'term_order', + 'depth' => 0, + 'child_of' => 0, + 'hide_empty' => 0 + ); + $taxonomy_terms = get_terms($taxonomy, $args); + + $output = ''; + if (count($taxonomy_terms) > 0) + { + $output = TOwalkTree($taxonomy_terms, $args['depth'], $args); + } + + echo $output; + + } + + function TOwalkTree($taxonomy_terms, $depth, $r) + { + $walker = new TO_Terms_Walker; + $args = array($taxonomy_terms, $depth, $r); + return call_user_func_array(array(&$walker, 'walk'), $args); + } + +?> \ No newline at end of file diff --git a/wp/wp-content/plugins/taxonomy-terms-order/include/options.php b/wp/wp-content/plugins/taxonomy-terms-order/include/options.php new file mode 100644 index 00000000..2082b4ac --- /dev/null +++ b/wp/wp-content/plugins/taxonomy-terms-order/include/options.php @@ -0,0 +1,86 @@ +

+
+
+

+ + + +
+
+

+ + + + + + + + + + + + + + + + + + + + + + +
+ +
+ *() +
+ value="1" name="adminsort"> + +
+ + +

+ +

+ + + +
+ + '; + + + } + +?> \ No newline at end of file diff --git a/wp/wp-content/plugins/taxonomy-terms-order/include/terms_walker.php b/wp/wp-content/plugins/taxonomy-terms-order/include/terms_walker.php new file mode 100644 index 00000000..cbed17e6 --- /dev/null +++ b/wp/wp-content/plugins/taxonomy-terms-order/include/terms_walker.php @@ -0,0 +1,48 @@ + 'parent', 'id' => 'term_id'); + + + function start_lvl(&$output, $depth = 0, $args = array() ) + { + extract($args, EXTR_SKIP); + + $indent = str_repeat("\t", $depth); + $output .= "\n$indent
    \n"; + } + + + function end_lvl(&$output, $depth = 0, $args = array()) + { + extract($args, EXTR_SKIP); + + $indent = str_repeat("\t", $depth); + $output .= "$indent
\n"; + } + + + function start_el(&$output, $term, $depth = 0, $args = array(), $current_object_id = 0) + { + if ( $depth ) + $indent = str_repeat("\t", $depth); + else + $indent = ''; + + //extract($args, EXTR_SKIP); + $taxonomy = get_taxonomy($term->term_taxonomy_id); + $output .= $indent . '
  • '.apply_filters( 'the_title', $term->name, $term->term_id ).'
    '; + } + + + function end_el(&$output, $object, $depth = 0, $args = array()) + { + $output .= "
  • \n"; + } + + } + +?> \ No newline at end of file diff --git a/wp/wp-content/plugins/taxonomy-terms-order/js/to-javascript.js b/wp/wp-content/plugins/taxonomy-terms-order/js/to-javascript.js new file mode 100644 index 00000000..7ad31ba2 --- /dev/null +++ b/wp/wp-content/plugins/taxonomy-terms-order/js/to-javascript.js @@ -0,0 +1,135 @@ + + function to_change_taxonomy(element) + { + //select the default category (0) + jQuery('#to_form #cat').val(jQuery("#to_form #cat option:first").val()); + jQuery('#to_form').submit(); + } + + + + function serialize(mixed_value) + { + // http://kevin.vanzonneveld.net + // + original by: Arpad Ray (mailto:arpad@php.net) + // + improved by: Dino + // + bugfixed by: Andrej Pavlovic + // + bugfixed by: Garagoth + // + input by: DtTvB (http://dt.in.th/2008-09-16.string-length-in-bytes.html) + // + bugfixed by: Russell Walker (http://www.nbill.co.uk/) + // + bugfixed by: Jamie Beck (http://www.terabit.ca/) + // + input by: Martin (http://www.erlenwiese.de/) + // + bugfixed by: Kevin van Zonneveld (http://kevin.vanzonneveld.net/) + // + improved by: Le Torbi (http://www.letorbi.de/) + // + improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net/) + // + bugfixed by: Ben (http://benblume.co.uk/) + // - depends on: utf8_encode + // % note: We feel the main purpose of this function should be to ease the transport of data between php & js + // % note: Aiming for PHP-compatibility, we have to translate objects to arrays + // * example 1: serialize(['Kevin', 'van', 'Zonneveld']); + // * returns 1: 'a:3:{i:0;s:5:"Kevin";i:1;s:3:"van";i:2;s:9:"Zonneveld";}' + // * example 2: serialize({firstName: 'Kevin', midName: 'van', surName: 'Zonneveld'}); + // * returns 2: 'a:3:{s:9:"firstName";s:5:"Kevin";s:7:"midName";s:3:"van";s:7:"surName";s:9:"Zonneveld";}' + var _utf8Size = function (str) { + var size = 0, + i = 0, + l = str.length, + code = ''; + for (i = 0; i < l; i++) { + code = str.charCodeAt(i); + if (code < 0x0080) { + size += 1; + } else if (code < 0x0800) { + size += 2; + } else { + size += 3; + } + } + return size; + }; + var _getType = function (inp) { + var type = typeof inp, + match; + var key; + + if (type === 'object' && !inp) { + return 'null'; + } + if (type === "object") { + if (!inp.constructor) { + return 'object'; + } + var cons = inp.constructor.toString(); + match = cons.match(/(\w+)\(/); + if (match) { + cons = match[1].toLowerCase(); + } + var types = ["boolean", "number", "string", "array"]; + for (key in types) { + if (cons == types[key]) { + type = types[key]; + break; + } + } + } + return type; + }; + var type = _getType(mixed_value); + var val, ktype = ''; + + switch (type) { + case "function": + val = ""; + break; + case "boolean": + val = "b:" + (mixed_value ? "1" : "0"); + break; + case "number": + val = (Math.round(mixed_value) == mixed_value ? "i" : "d") + ":" + mixed_value; + break; + case "string": + val = "s:" + _utf8Size(mixed_value) + ":\"" + mixed_value + "\""; + break; + case "array": + case "object": + val = "a"; + /* + if (type == "object") { + var objname = mixed_value.constructor.toString().match(/(\w+)\(\)/); + if (objname == undefined) { + return; + } + objname[1] = this.serialize(objname[1]); + val = "O" + objname[1].substring(1, objname[1].length - 1); + } + */ + var count = 0; + var vals = ""; + var okey; + var key; + for (key in mixed_value) { + if (mixed_value.hasOwnProperty(key)) { + ktype = _getType(mixed_value[key]); + if (ktype === "function") { + continue; + } + + okey = (key.match(/^[0-9]+$/) ? parseInt(key, 10) : key); + vals += this.serialize(okey) + this.serialize(mixed_value[key]); + count++; + } + } + val += ":" + count + ":{" + vals + "}"; + break; + case "undefined": + // Fall-through + default: + // if the JS object has a property which contains a null value, the string cannot be unserialized by PHP + val = "N"; + break; + } + if (type !== "object" && type !== "array") { + val += ";"; + } + return val; + } \ No newline at end of file diff --git a/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-de_DE.mo b/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-de_DE.mo new file mode 100644 index 0000000000000000000000000000000000000000..34ee12058637b948f40378baf0a86cb69b3338d2 GIT binary patch literal 3195 zcmaJ@&2J<}6)zw_;_#7#Lr?_LJ0K#lZttu&BAZzV*lUw@V#k(emdzoORWtpjyVl)R zovLb2#(x4xTo4jR4l8ovfP^^hfyi*;#FYa=LPFwzloLdp_`T{Lk1YjSZvSTL<9+p@=fH0Oe+m2&@Q*$IxyOG1e}(mrfg?Hhlv1w){{xisuYFc2d{p;=yTAkB zzhKKxfxpN1AAMe_yTHSzmHI01$3XGpG4KZPL*UKf$;cfqwN!YuV=ywBs6NBoyZ_z>Nn!wYlO z3wW&1^TAI1m=F|qBwH3wE1Zt|b$c+6S z9aXFYQ)rvU`ADwyGdlQ+oCGDe`R`@t^ZCuGSmhcCCo+gzm zmLe)+Pbs=2IzWP2T6JpO9Jkps!6JR8O{FIymTHGJou6qt<($sghh)NRrAusAZ?I*r zD;jZ(#uh>CMXm!K`kXyIXmTAnr~_k7-PW|vXAI|^(6EwYta{tgdoB9~?5!%AFilHs z3(nWYHj3;aGHvOmVeQ37*>K(z#zMOjbsIExIA73!FEo|sW14IP(GkC;2cjGcky?s~!Tq%*w@x?r_DO>#F^ zWBtCfu3mIpt-g*;tXPfVo={@A_Z+0OiB6EBLDK&rMW~mQtF>)$bU``KjO82zN#5bl z^VHQf+Z=S5Svrg?dpXivTV#{#`A4EHgozpfaXBb*gaAOGu+tfk2!pkKK7;G2PJ)&R zEa~|Oi4~^aG;tllooWfci7$u5eeQJuMLFf(HR;3Fn_KT}bTU)WyJT2}gdDQ4&k0mg z$F|OEd@>drGd*QhRBnRI2wh$(NpU3=hePwyOi@@>CAkk@kp-@%AhjpVHZH`lj;I$5 z=yzq2;-Wz|A9?qPr!m{hvmbV4F{FFQ^THv44^!fcJD2etCsWhL+A&LsX9uA$dA8ja zAsf3Pl`%HMn>SJPdE+^R4d;uSQOn!qNS55q64`4;Ts5Wn{z8||Z6K#!Upv@4*j@2*Yh$o>&mkxl z(!t&kfqOsRY$|Q+UCA7~7q&pK6*WSsF9OouxZ}CE? z3i~F+A)VYsp^4Nbo>=FayC)~B3)^U~jgIAzro(qP-(77ieH;?oqB5aeZH>@prsWZC zWrHDYtf~8Y!j?vcsXz}$=~%KCPvUtc$&{l`QK?7EmcDIZ619?zA-7-u|&qh>VJegqkil&tBw1@qgwx!!I<)PC`!#{6f zf#~z}kSD3{KWsxlFvN{@g27-g=_B@YSi~My_ep(KQ?`dzzg1NQS^?~(U1K4ps#-K@ ztCprh--OdTG<W=9gURSA1)sAimV!3uK{5lfB)yUoOF0G4AqAuhOV@-< zd^-~(>We2KbQC6oq%`}vq1#z9Ced!Z1XvB-OOBB3A@OIjvcg@ z5*2ds+Y}1O)FDW!BE>4h6NBbVI~+`5>7L9cBvO|y5YlDY%2c>*JF+T-6+eD1ixu)t zH8ghGT#4L%6T@oM535`gD1iMoF{xrm;CB#?Mvx(mDbL4x6ePvR^4 hO1IKBFw!JyCi;uV1*(1|nFR@-a9ujI?at~#{THh51AYJi literal 0 HcmV?d00001 diff --git a/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-de_DE.po b/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-de_DE.po new file mode 100644 index 00000000..b520897e --- /dev/null +++ b/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-de_DE.po @@ -0,0 +1,175 @@ +msgid "" +msgstr "" +"Project-Id-Version: Category Order and Taxonomy Terms Order\n" +"Report-Msgid-Bugs-To: http://wordpress.org/tag/taxonomy-terms-order\n" +"POT-Creation-Date: 2012-03-04 23:32:48+00:00\n" +"PO-Revision-Date: 2012-07-06 18:02+0200\n" +"Last-Translator: \n" +"Language-Team: nsp-code \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n" +"X-Poedit-Basepath: c:\\2\\\n" +"X-Poedit-Language: english\n" +"X-Poedit-SearchPath-0: .\n" + +#: include/interface.php:19 +msgid "Taxonomy Order" +msgstr "Taxonomy Order" + +#: include/interface.php:52 +#: include/options.php:57 +msgid "Did you found useful this plug-in? Please support our work with a donation or write an article about this plugin in your blog with a link to our site" +msgstr "Haben Sie gefunden nützlich dieses Plug-in? Bitte unterstützen Sie unsere Arbeit mit einer Spende oder einen Artikel schreiben über dieses Plugin in Ihrem Blog mit einem Link zu unserer Website" + +#: include/interface.php:53 +#: include/options.php:58 +msgid "Did you know there is available a more advanced version of this plug-in?" +msgstr "Wussten Sie, es ist eine erweiterte Version dieses Plug-In?" + +#: include/interface.php:53 +#: include/options.php:58 +msgid "Read more" +msgstr "Lesen Sie mehr" + +#: include/interface.php:54 +#: include/options.php:59 +msgid "Check our" +msgstr "" + +#: include/interface.php:54 +#: include/options.php:59 +msgid "plugin which allow to custom sort all posts, pages, custom post types" +msgstr "Plugin, um benutzerdefinierte Sortierung erlauben alle Beiträge, Seiten, benutzerdefinierte Typen Beitrag" + +#: include/interface.php:60 +msgid "This plugin can't work without javascript, because it's use drag and drop and AJAX." +msgstr "Dieses Plugin kann nicht ohne JavaScript, da sie den Einsatz Drag & Drop und AJAX." + +#: include/interface.php:96 +msgid "Taxonomies" +msgstr "" + +#: include/interface.php:100 +msgid "Taxonomy Title" +msgstr "Taxonomy Title" + +#: include/interface.php:100 +msgid "Total Posts" +msgstr "" + +#: include/interface.php:150 +msgid "Update" +msgstr "" + +#: include/interface.php:199 +msgid "Items Order Updates" +msgstr "Artikel zu bestellen Updates" + +#: include/options.php:16 +msgid "Settings Saved" +msgstr "Gespeicherte Einstellungen" + +#: include/options.php:24 +msgid "General Settings" +msgstr "Allgemeine Einstellungen" + +#: include/options.php:64 +msgid "General" +msgstr "" + +#: include/options.php:69 +msgid "Minimum Level to use this plugin" +msgstr "Minimum Level um dieses Plugin zu verwenden" + +#: include/options.php:72 +msgid "Subscriber" +msgstr "" + +#: include/options.php:73 +msgid "Contributor" +msgstr "" + +#: include/options.php:74 +msgid "Author" +msgstr "" + +#: include/options.php:75 +msgid "Editor" +msgstr "" + +#: include/options.php:76 +msgid "Administrator" +msgstr "" + +#: include/options.php:83 +msgid "Auto Sort" +msgstr "" + +#: include/options.php:86 +msgid "OFF" +msgstr "" + +#: include/options.php:87 +msgid "ON" +msgstr "" + +#: include/options.php:88 +msgid "global setting" +msgstr "globale Einstellung" + +#: include/options.php:93 +msgid "Admin Sort" +msgstr "" + +#: include/options.php:97 +msgid "This will change the order of terms within the admin interface" +msgstr "Dadurch wird die Reihenfolge der Begriffe innerhalb des Admin-Interface ändern" + +#: include/options.php:105 +msgid "Autosort OFF" +msgstr "" + +#: include/options.php:106 +msgid "No query will be changed, the terms will appear in the original order. To retrieve the terms in the required order you must use the term_order on the orderby parameter" +msgstr "Keine Abfrage geändert werden, die Begriffe werden in der ursprünglichen Reihenfolge angezeigt werden. Um die Bedingungen in der gewünschten Reihenfolge abrufen, müssen Sie die term_order auf der orderby Parameter verwenden" + +#: include/options.php:114 +msgid "See more info on the get_terms usage" +msgstr "Weitere Informationen über die Nutzung get_terms" + +#: include/options.php:114 +msgid "here" +msgstr "hier" + +#: include/options.php:116 +msgid "Autosort ON" +msgstr "" + +#: include/options.php:117 +msgid "The queries will be updated, all terms will appear in the order you manually defined. This is recommended if you don't want to change any theme code to apply the terms order" +msgstr "Die Abfragen werden aktualisiert, werden alle Begriffe werden in der Reihenfolge, die Sie manuell definiert erscheinen. Dies wird empfohlen, wenn Sie nicht möchten, dass ein beliebiges Design Code zu ändern, um die Begriffe Ordnung gelten" + +#: include/options.php:127 +msgid "Save Settings" +msgstr "Einstellungen speichern" + +#. #-#-#-#-# plugin.pot (Category Order and Taxonomy Terms Order 1.2.7) #-#-#-#-# +#. Plugin Name of the plugin/theme +#. #-#-#-#-# plugin.pot (Category Order and Taxonomy Terms Order 1.2.7) #-#-#-#-# +#. Description of the plugin/theme +msgid "Category Order and Taxonomy Terms Order" +msgstr "" + +#. #-#-#-#-# plugin.pot (Category Order and Taxonomy Terms Order 1.2.7) #-#-#-#-# +#. Plugin URI of the plugin/theme +#. #-#-#-#-# plugin.pot (Category Order and Taxonomy Terms Order 1.2.7) #-#-#-#-# +#. Author URI of the plugin/theme +msgid "http://www.nsp-code.com" +msgstr "" + +#. Author of the plugin/theme +msgid "Nsp-Code" +msgstr "" + diff --git a/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-fa_IR.mo b/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-fa_IR.mo new file mode 100644 index 0000000000000000000000000000000000000000..413ec08e3e913cd4fb31f7cc9bf7dccd67d520ea GIT binary patch literal 4665 zcma);TWlOx8OIMal-4bm-ng_}4k=KgX0~gmIMIfr&BdXCB(`F=>Vv_IcgE{!c4xLT zvv&Oi3BC#Pg186?q)L&>Zmc9`?Szm%>Ui zvva=lo&Wd${^zX!`sA*kE3W6cKga#@hm?8=JoRBdxE^^(sUh%D@MGZ9;KSf<@KJCN z_&B%^d<=Xwe}5|f{st%u%!03h{|06LkzGoC6nqW*Bsc*+1-hUH8(7eL|rlN^7Yzi;OFJMb#we*h=J1Tu%gKY~)n!;lhwPl1x} zSr7_p4>$%Ezy*k;;HUZiPslt1KE$FD|2X&@_#F6Ea6c&gz6(nH4|Dt#_&2_9gAw>M z#1kEML4sH68SoiUgAOH&f~@~9Q1tsRDC<1|nLXer_yzELpu~S4 zd=~r>SODJxzXJXRe2l#R0sqAJhaocy{uvZsj6PxKO@g20dk9Ltb?`m#ry$eK^$9*j zGr6Q@s49ll)7)}NKZOHS)u*^6&)_9>%O!q#o?GgZOLGessq-`3ay`jSD~uQRFGUSK7d1jpHxhrYQPt^ukm!1~QE`Is z6+Kb)-Ne^Pqh6Q1WYCLId`>S0>AZHe7lm#bM4^s&9|x(g-B7!68kDO%&PI*2pN|^& zW4&0+-xCR(x--P}Qj)lhO>i^}6rIQnCz0aZm|Dx5@*{ z74%f3W1mK_%)rDvIQHLe1Tm$VVAG;nBS~{Ec9j`BhV(W)S!b7Y-HqLv4+|v@7(b)V z`mSg6Qj;!A^=hB=eJf)S&Y``{Qt{InTR|gnE57PRYnkh*$;NC_#ye!6a^H!5JI2=7tSIm$c{41)=Yuo_LhM*e^%5 znjd;-70j7n9Qi`37u^u&MR{{D<&wx$qg#=Oevzg-Boyf^0iz~tbMMoLvTG7`%`R4c z3loY0^>i6wFUImz0^nJ|j#2WR~Lgrgk4bvKEos8`P7Tb$+RbjQ&gYs9)UB`!5Py*dn`;Z z)}6AYK5dPWOs96sE;+_>jxqdnPn(jSb7xMTWnFt*8euJGJzN+q92lCYHaJC{6A>p| zNr$B6YjSA#p!`_yc&K==&w7$mzU&{f8kMvasVBlD2V;4Df~uTiNf(Axwvn~7jXM{! zmhP-%n>@6+H&pkF>a2Fwd9&SF%{Du0gYk5Iqq9yRc<18I{{0BtaR41>kkfV zOGsx`Wi5EMvu*qZ1J<~65f+=m>pBazcP?iedgn4@IWGb_s~EC#KHGxTYG+L|ze!b{ z^D>hM0RmPHzNwVsZQZ#o&pWaX1g;UjslR5EZo=mZ0T6{B@5#KTiD+fpGKqqu&^|JHL zj)0Ppa@vZemW2Z55CO8^lg{*BNHC(L9MM8rxFx+q1GLt6S&T8dMwWH-2g7hm#dax?wu25eY-A+rkZ>d~G3} zZ4XlB`wc^`Ys2jNKvKFPC11B4Eeur9V&az3s|6#Y@PijJAt*yT%`^;24jxTYw#@HU z{;vm;we$Z_2LJP5f{1m4GTGDGERO=FqdhIVWk_N*xGQ@*56zKjMKoJshb(6;mHjrm z#)P(QuxLbSs5EE;#aoGPX1BOmp1NhPK-KW=|BG|4fBM-?V-(Apd2*!Oq^1jY*%qsD zK%sYMEo+iQs$`9pzE6~_DHak(+VERu^J2;Sg?FO{oFubyMUA5kH=&T3%CWwjDF07q zVR}o<**R}>bPc^NdyH4IjbsyZun9ZVx30h2ub2xr*d4qgqMBysuQtV^on>jsdUk_H zXLb= zI6iGLoMbo`BJ^OuKb$(~Np8u*Ef#5WI?8s>MXDK+1{ hDQrm}NLq}JC_5a%WE55+d!c|6jbH=*G@dP}{{ez48Fc^v literal 0 HcmV?d00001 diff --git a/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-fa_IR.po b/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-fa_IR.po new file mode 100644 index 00000000..d7714ce3 --- /dev/null +++ b/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-fa_IR.po @@ -0,0 +1,177 @@ +msgid "" +msgstr "" +"Project-Id-Version: Category Order and Taxonomy Terms Order\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-07-06 17:32+0200\n" +"PO-Revision-Date: 2015-02-27 14:16+0330\n" +"Last-Translator: ای داد \n" +"Language-Team: Eydad \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: _;gettext;gettext_noop;_e\n" +"X-Poedit-Basepath: D:\\htdocs\\develop\\advanced_post_types_order\\wp-content" +"\\plugins\\taxonomy-terms-order\\\n" +"Language: fa_IR\n" +"X-Generator: Poedit 1.6.8\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-SearchPath-0: .\n" + +#: include/interface.php:19 +msgid "Taxonomy Order" +msgstr "ترتیب طبقه‌بندی دسته‌ها" + +#: include/interface.php:52 include/options.php:57 +msgid "" +"Did you found useful this plug-in? Please support our work with a donation " +"or write an article about this plugin in your blog with a link to our site" +msgstr "" +"این افزونه را مفید میدانید؟ لطفاً از آن با اهدای مبلغ یا نوشتن مقاله‌ای در " +"پایگاه خود (با درج پیوند به وبسایت ما) حمایت کنید." + +#: include/interface.php:53 include/options.php:58 +msgid "" +"Did you know there is available a more advanced version of this plug-in?" +msgstr "آیا میدانید که نسخه پیشرفته‌تری از این افزونه نیز موجود است؟" + +#: include/interface.php:53 include/options.php:58 +msgid "Read more" +msgstr "ادامه مطلب" + +#: include/interface.php:54 include/options.php:59 +msgid "Check our" +msgstr "بررسی نمایید" + +#: include/interface.php:54 include/options.php:59 +msgid "plugin which allow to custom sort all posts, pages, custom post types" +msgstr "" +"افزونه‌ای که به شما مرتب‌سازی دلخواه دسته‌های تمامی نوشته‌ها، برگه‌ها و ... را " +"خواهد داد." + +#: include/interface.php:60 +msgid "" +"This plugin can't work without javascript, because it's use drag and drop " +"and AJAX." +msgstr "" +"این افزونه بدون جاوااسکریپت بدرستی عمل نمی‌نماید، به این دلیل که از \"کشیدن و " +"رها کردن\" و آژاکس استفاده می‌نماید." + +#: include/interface.php:96 +msgid "Taxonomies" +msgstr "طبقه‌بندی‌ها" + +#: include/interface.php:100 +msgid "Taxonomy Title" +msgstr "عنوان طبقه‌بندی‌ها" + +#: include/interface.php:100 +msgid "Total Posts" +msgstr "تمامی نوشته‌ها" + +#: include/interface.php:150 +msgid "Update" +msgstr "به‌روز‌رسانی" + +#: include/interface.php:199 +msgid "Items Order Updates" +msgstr "به‌روزرسانی ترتیب موارد" + +#: include/options.php:16 +msgid "Settings Saved" +msgstr "تنظیمات ذخیره شد" + +#: include/options.php:24 +msgid "General Settings" +msgstr "تنظیمات کلی" + +#: include/options.php:64 +msgid "General" +msgstr "کلیات" + +#: include/options.php:69 +msgid "Minimum Level to use this plugin" +msgstr "سطح حداقلی برای استفاده از این افزونه" + +#: include/options.php:72 +msgid "Subscriber" +msgstr "مشترک" + +#: include/options.php:73 +msgid "Contributor" +msgstr "مشارکت کننده" + +#: include/options.php:74 +msgid "Author" +msgstr "نویسنده" + +#: include/options.php:75 +msgid "Editor" +msgstr "ویرایشگر" + +#: include/options.php:76 +msgid "Administrator" +msgstr "مدیر" + +#: include/options.php:83 +msgid "Auto Sort" +msgstr "ترتیب اتوماتیک" + +#: include/options.php:86 +msgid "OFF" +msgstr "خاموش" + +#: include/options.php:87 +msgid "ON" +msgstr "روشن" + +#: include/options.php:88 +msgid "global setting" +msgstr "تنظیمات جهانی" + +#: include/options.php:93 +msgid "Admin Sort" +msgstr "ترتیب مدیریت" + +#: include/options.php:97 +msgid "This will change the order of terms within the admin interface" +msgstr "این گزینه ترتیب را براساس طرح مدیریتی تنظیم می‌نماید." + +#: include/options.php:105 +msgid "Autosort OFF" +msgstr "ترتیب اتوماتیک خاموش" + +#: include/options.php:106 +msgid "" +"No query will be changed, the terms will appear in the original order. To " +"retrieve the terms in the required order you must use the term_order on the " +"orderby parameter" +msgstr "" +"هیچ کوئری ای تغییر داده نخواهد شد و موارد براساس ترتیب اصلی نمایش داده " +"می‌شوند. برای بازیابی موارد براساس ترتیب مورد نیاز باید از term_order در " +"order by parameter به صورت زیر استفاده نمایید" + +#: include/options.php:114 +msgid "See more info on the get_terms usage" +msgstr "اطلاعات بیشتر در get_terms " + +#: include/options.php:114 +msgid "here" +msgstr "اینجا" + +#: include/options.php:116 +msgid "Autosort ON" +msgstr "ترتیب اتوماتیک روشن" + +#: include/options.php:117 +msgid "" +"The queries will be updated, all terms will appear in the order you manually " +"defined. This is recommended if you don't want to change any theme code to " +"apply the terms order" +msgstr "" +"کوئری ها به روز شدند، تمامی موارد براساس ترتیب تعریف شده از سوی شما نشان " +"داده خواهد شد. این امر به این دلیل توصیه می‌شود که کد پوسته تغییر داده نشود." + +#: include/options.php:127 +msgid "Save Settings" +msgstr "ذخیره‌سازی تنظیمات" diff --git a/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-fr_FR.mo b/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-fr_FR.mo new file mode 100644 index 0000000000000000000000000000000000000000..e241f3cd05178d5a1bf79ad22188b2bd0f397984 GIT binary patch literal 3107 zcmaJ@&u=8f6|N+Z5Ccg72}Mdk?||e3Zttvj37g&oSj-X@Y}Q&2KMpHdHQjG|%G*=b zTU9;Y;liB*7X;$SX~9TDLgIiF4nZSM5fbMdazx@EKv7QlUUiShAfV;;*Y2)*@74Fd z_n!ZA{~d2DTo2&>BkoUdKZJYdXZVHdpFmmgIq*5)D?eB2cfj|6vgczU0lxsg5BwVV zYv7x|Q0iXbyTC_)w}HO_{;S7-_xKI)BfS4Fa9`Hlq0|$={{dzFpYK!(kLo$#W#BIG zTg37f@I(Cl#;=sR0(|T)r5*&n4itay05jk}fS&=s0ZKf#5!@eup8(GTzXJXqc;}i@ z_W>UUir)e7OW>2h>%e>OR_Y?~5Gd3?{qoSw&0Rx>_ZA+yz(WntG}^j zuWQ=p7>%uhx)OOB=&CQ-(@RaMBL}r>teLh`+Tj`F@J?u0*)dkV=;&t4evWwSnnp~; zMB9qX4T+5+dzeh0bknf*az^>!ys3 zK9!cC`aOVDA)X)#o`9_dJ1sLA#GLuhkhVv2;g5)?T?0$@kZEA=+Ng;JVPs z&{Du6&qD|+6y7v(1IaD4q~FB#khm|suHdMo(z_--TzdY}tDBw8l=MyvtCWy~3VThU zk~+3^ImMH)_%PN5tEzS*C?j;bR3dRD6^BJf6H}nD>RPmqvqA-KN)V$~2Ar~>bQf4oAWs%c1bY3|K_-Ycq9Oopz!xU=zuy&25#IxN{nKFC2 ztwJ_*IZa}0@-t^p^kw5YgiYtGGf~UkX(UU>%@Wybdsm0qw&&CnvS;8pr>()+t!!{E z8=R-DbNRWg{QQMS2ZMYtz~by0&x{oBch)|h4gN%DAI~4d!Y!=Z(II9-uWhJxbUr7% zu~iEWvLWkfPBt`I62V`%#_7GYrr?8;>tYF>`M!^VVk;h?;&+}G#IlC_GT+F zG1Oa{&>(Bl-doEjEgeOXI=?Lz$Bb67beh`xp0vKj2XGsxS{&QOvDfV_H1vQMi}&bI zCQXTFH#+1P(spzf=%3Y#X2u#_sBiwM|6=ON4q*-^P90EPY72=X2*JW7vX{zIZ ztuVgc5z~$Pllh@eXMvZ-7so+eO^5Eggu%S{{utQ-TT4pegHg5-89B)v2COLh6gNN4 zEzI{MEsilyOqwrT*BB2rZqhb`0MS`DTp$6INHE=cD9iJkMNHO1u2u$;|AQLh$Qr4U4oM; z2Mrm5LrcdFj?~SY6#uLj+zpfv&lQ737DzU99KOddISKZH_#WcbKt8AYj3OV?`4>i>K0?7jd1 literal 0 HcmV?d00001 diff --git a/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-fr_FR.po b/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-fr_FR.po new file mode 100644 index 00000000..77112ba1 --- /dev/null +++ b/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-fr_FR.po @@ -0,0 +1,175 @@ +msgid "" +msgstr "" +"Project-Id-Version: Category Order and Taxonomy Terms Order\n" +"Report-Msgid-Bugs-To: http://wordpress.org/tag/taxonomy-terms-order\n" +"POT-Creation-Date: 2012-03-04 23:32:48+00:00\n" +"PO-Revision-Date: 2012-07-06 17:58+0200\n" +"Last-Translator: \n" +"Language-Team: nsp-code \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n" +"X-Poedit-Basepath: c:\\2\\\n" +"X-Poedit-Language: english\n" +"X-Poedit-SearchPath-0: .\n" + +#: include/interface.php:19 +msgid "Taxonomy Order" +msgstr "Ordre taxonomique" + +#: include/interface.php:52 +#: include/options.php:57 +msgid "Did you found useful this plug-in? Please support our work with a donation or write an article about this plugin in your blog with a link to our site" +msgstr "Avez-vous trouvé utile ce plug-in? S'il vous plaît soutenir notre travail avec un don ou d'écrire un article sur ce plugin dans votre blog avec un lien vers notre site" + +#: include/interface.php:53 +#: include/options.php:58 +msgid "Did you know there is available a more advanced version of this plug-in?" +msgstr "Saviez-vous qu'il est disponible une version plus avancée de ce plug-in?" + +#: include/interface.php:53 +#: include/options.php:58 +msgid "Read more" +msgstr "Lire la suite" + +#: include/interface.php:54 +#: include/options.php:59 +msgid "Check our" +msgstr "" + +#: include/interface.php:54 +#: include/options.php:59 +msgid "plugin which allow to custom sort all posts, pages, custom post types" +msgstr "plug-in qui permettent de tri personnalisé tous les messages, des pages, les types de poste de douane" + +#: include/interface.php:60 +msgid "This plugin can't work without javascript, because it's use drag and drop and AJAX." +msgstr "Ce plugin ne peut pas fonctionner sans javascript, parce que c'est glisser-déposer et AJAX." + +#: include/interface.php:96 +msgid "Taxonomies" +msgstr "" + +#: include/interface.php:100 +msgid "Taxonomy Title" +msgstr "Taxonomy Title" + +#: include/interface.php:100 +msgid "Total Posts" +msgstr "" + +#: include/interface.php:150 +msgid "Update" +msgstr "" + +#: include/interface.php:199 +msgid "Items Order Updates" +msgstr "Mises à jour des objets de commande" + +#: include/options.php:16 +msgid "Settings Saved" +msgstr "Paramètres enregistrés" + +#: include/options.php:24 +msgid "General Settings" +msgstr "Paramètres généraux" + +#: include/options.php:64 +msgid "General" +msgstr "" + +#: include/options.php:69 +msgid "Minimum Level to use this plugin" +msgstr "Niveau minimum requis pour utiliser ce plugin" + +#: include/options.php:72 +msgid "Subscriber" +msgstr "" + +#: include/options.php:73 +msgid "Contributor" +msgstr "" + +#: include/options.php:74 +msgid "Author" +msgstr "" + +#: include/options.php:75 +msgid "Editor" +msgstr "" + +#: include/options.php:76 +msgid "Administrator" +msgstr "" + +#: include/options.php:83 +msgid "Auto Sort" +msgstr "" + +#: include/options.php:86 +msgid "OFF" +msgstr "" + +#: include/options.php:87 +msgid "ON" +msgstr "" + +#: include/options.php:88 +msgid "global setting" +msgstr "paramètre global" + +#: include/options.php:93 +msgid "Admin Sort" +msgstr "" + +#: include/options.php:97 +msgid "This will change the order of terms within the admin interface" +msgstr "Cela va changer l'ordre des termes dans l'interface d'admin" + +#: include/options.php:105 +msgid "Autosort OFF" +msgstr "" + +#: include/options.php:106 +msgid "No query will be changed, the terms will appear in the original order. To retrieve the terms in the required order you must use the term_order on the orderby parameter" +msgstr "Aucune requête ne sera changé, les termes apparaissent dans l'ordre original. Pour récupérer les termes dans l'ordre requis, vous devez utiliser le term_order sur le paramètre orderby" + +#: include/options.php:114 +msgid "See more info on the get_terms usage" +msgstr "Voir plus d'informations sur l'utilisation get_terms" + +#: include/options.php:114 +msgid "here" +msgstr "ici" + +#: include/options.php:116 +msgid "Autosort ON" +msgstr "" + +#: include/options.php:117 +msgid "The queries will be updated, all terms will appear in the order you manually defined. This is recommended if you don't want to change any theme code to apply the terms order" +msgstr "Les requêtes seront mis à jour, tous les termes apparaissent dans l'ordre que vous défini manuellement. Cela est recommandé si vous ne voulez pas modifier le code thème à appliquer l'ordre des termes" + +#: include/options.php:127 +msgid "Save Settings" +msgstr "Enregistrer les paramètres" + +#. #-#-#-#-# plugin.pot (Category Order and Taxonomy Terms Order 1.2.7) #-#-#-#-# +#. Plugin Name of the plugin/theme +#. #-#-#-#-# plugin.pot (Category Order and Taxonomy Terms Order 1.2.7) #-#-#-#-# +#. Description of the plugin/theme +msgid "Category Order and Taxonomy Terms Order" +msgstr "" + +#. #-#-#-#-# plugin.pot (Category Order and Taxonomy Terms Order 1.2.7) #-#-#-#-# +#. Plugin URI of the plugin/theme +#. #-#-#-#-# plugin.pot (Category Order and Taxonomy Terms Order 1.2.7) #-#-#-#-# +#. Author URI of the plugin/theme +msgid "http://www.nsp-code.com" +msgstr "" + +#. Author of the plugin/theme +msgid "Nsp-Code" +msgstr "" + diff --git a/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-hu_HU.mo b/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-hu_HU.mo new file mode 100644 index 0000000000000000000000000000000000000000..a3d82516ec635af0d72300c1aa20c3d002e6b6d4 GIT binary patch literal 3941 zcma)8%WoUU8K1UEnyBf^NnhzB6Q@8BM9WaN6B|@xN0z19kz@%L9ps>b7;=Z?aCc`m zGqY4k^wOSsC{VaSbLvGWLkArS6$Tpk)UDw^Aou(OeITcz$Ns+A6)Cwz(FK>k-FbZT zeZTLupPhT^cMR97xPO5A(ia$e6S(l!?2hssu;7#DafV6+*DaO7Gyb1gUa0mDTPyjiw0Nw|F48#_8^=ZaPrRzXC zcMVATYy*D`{2B0Tz+VDM-+MLwz8=3{;{)Ik<{trffey-C1wICn9nU~1((eTz$$JS1 z71-;*HDCj{1w}mY`*{B|l=(XFGa!c8KY-r?{uB5r@Odah*aVWiHjvi$fIkO1;3n{M zAo2GO{s?d3?}H@8^|Bz15h8X zm+?=&d!MIgka-q4fUiDHuc1_{u@?ZmgIM4EKY6d4FQl%5_ zO%UxMVWw50%|3QZD>*b0W1&*fC9ym+7!&bW=$?%ESXviU=+Dn0-Pu~K$jYBeEv-mT zknc+Gl^!^D%gfC1Z5vC=@8+@a(y=Y2RaRttQ;sFLFvQAStkUeZ;U5;#PN068@~-5) zq0j>vFOsUUZzHF(=_E8z$nb82I~*vbzJWno%a99)zY z&eytBr*x`0P+y6M)b51m!ir2n3q}#JeVg5pA`X19U4f%!w(m+=(WrDE+*eWt(swEg z3MU4Vovh}xH)gv<*YyxPklq#_8ErBJ#_GpOMdbXot$Zq38@3Z)SUF>?2wa0P0S5mE zW8@bK&rIk7OD8;*eWhg#_9#a2v$AKhOzIe1seV|DhYyY#lJjy2=M4B)ig>=!+f*G#*jIcZ~CnRZ+?Ysp(?SRe{VX zMHpo)MC=b$4~dzklsm8=VPi5LY67vHlbA(>$v^_?SsLVilEaxh){JD&N4MhW{VJ_m zd=-f?Fo^i=kSS#1%;)W(ewbLeBdJ70TW+A@=z1}5QQNfm!p?R(TD3BiiRcDowfKeR z(uJsbIcmPmmoB$1Hs5GoXg0Ahx+BMma(TY)Qq+7aYF^<>ORcvqztLR6x=rDH)V4yq zl&WBhYnMmCuRoC~l($B!p6tXj&4=pUi5MEwK$u*`Mm;ECdDNC7`~SCX-P&54v$51@ zE>I1X8cKk(7F_s|e=|>o(#sTY7H)axZhJktGG9l^_N9&1H1tI6Y4Iyv z#tyl*6I@%>i@klKDrmn~MU30?RW47W5Q|aBggu;7)y=?gr6yl$yxq7oqp`(@Md#+- zxkkIFcfH{bbc&iS-dH&4R#R`wgPtmnDPfVT)AG=rnWHMbJC%0&=w9er8GmK|bPrtDM8s zSk78vU#3Ii2b;=c#oZJ|>In_`$pQhHLo;P-P&Jha2&>$Vnw4R|P00siBG^p5@MEzE zcOW$I@i65mXR-7+!C2Czi%|~=9JRqsMT4&lA-d)X<709Q8gW`4=A%kN`N^o>9V#^k z%PFso723dG)2g?gw9N7l!Cx^>Sx`4u2*<&R^lU@1>ymA!sQ(Ui6`FUu7&*-!EYeu* zsAPwEh2Gyc7NJ0~PtKh8*V8=N@;H4`mP|<+$X}PK!pB}>rsZ+fTg&52l?Msipt4*Z zTP03qRVd7~LiEa`jIGq-FOu@N4%O2|i85#kYF zcGQMpuyP2&S?Cy#m~HU2DHlnCk3csqA11Cm4E<#&xQ0xTpeVxQ<#B8%ri4}?16+Zc zxGQvn(e^W07WUP72}RyREPrePmGp_^hsK&Gn9S=qKUQH mNs_7w;@zaNpl(E^D6lY?pvj=1SyTah4EXXW$M;=W!2S)unf}`V literal 0 HcmV?d00001 diff --git a/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-hu_HU.po b/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-hu_HU.po new file mode 100644 index 00000000..780fdc0c --- /dev/null +++ b/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-hu_HU.po @@ -0,0 +1,177 @@ +msgid "" +msgstr "" +"Project-Id-Version: Category Order and Taxonomy Terms Order\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-07-06 17:30+0200\n" +"PO-Revision-Date: 2014-05-08 11:57+0100\n" +"Last-Translator: nsp-code \n" +"Language-Team: nsp-code \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n" +"X-Poedit-Basepath: D:\\htdocs\\develop\\advanced_post_types_order\\wp-content" +"\\plugins\\taxonomy-terms-order\\\n" +"X-Generator: Poedit 1.6.4\n" +"Language: hu_HU\n" +"X-Poedit-SearchPath-0: .\n" + +#: include/interface.php:19 +msgid "Taxonomy Order" +msgstr "Kategória rendezés" + +#: include/interface.php:52 include/options.php:57 +msgid "" +"Did you found useful this plug-in? Please support our work with a donation " +"or write an article about this plugin in your blog with a link to our site" +msgstr "" +"Hasznosnak találtad a bővítményt? Kérünk támogasd a munkánkat adománnyal, " +"vagy cikkel a blogodon, ami linkel ránk." + +#: include/interface.php:53 include/options.php:58 +msgid "" +"Did you know there is available a more advanced version of this plug-in?" +msgstr "" +"Tudtad, hogy ennek a bővítménynek van egy sokkal fejlettebb verziója is?" + +#: include/interface.php:53 include/options.php:58 +msgid "Read more" +msgstr "Olvass tovább" + +#: include/interface.php:54 include/options.php:59 +msgid "Check our" +msgstr "Nézd meg a mi" + +#: include/interface.php:54 include/options.php:59 +msgid "plugin which allow to custom sort all posts, pages, custom post types" +msgstr "" +"bővítmény, melynek segítségével rendezhetjük a bejegyzéseinket, oldalainkat " +"és egyedi tartalom típusainkat" + +#: include/interface.php:60 +msgid "" +"This plugin can't work without javascript, because it's use drag and drop " +"and AJAX." +msgstr "" +"Ez a bővítmény nem működik JavaScript nélkül, mert AJAX-ot használ a \"fogd " +"és ejtsd\" funkció megvalósításához." + +#: include/interface.php:96 +msgid "Taxonomies" +msgstr "Taxonómiák" + +#: include/interface.php:100 +msgid "Taxonomy Title" +msgstr "Taxonómiacím" + +#: include/interface.php:100 +msgid "Total Posts" +msgstr "Összes bejegyzés" + +#: include/interface.php:150 +msgid "Update" +msgstr "Frissítés" + +#: include/interface.php:199 +msgid "Items Order Updates" +msgstr "Elem sorrend frissítve" + +#: include/options.php:16 +msgid "Settings Saved" +msgstr "Beállítások elmentve" + +#: include/options.php:24 +msgid "General Settings" +msgstr "Általános beállítások" + +#: include/options.php:64 +msgid "General" +msgstr "Általános" + +#: include/options.php:69 +msgid "Minimum Level to use this plugin" +msgstr "Minimum felhasználói szint a bővítmény használatához" + +#: include/options.php:72 +msgid "Subscriber" +msgstr "Feliratkozó" + +#: include/options.php:73 +msgid "Contributor" +msgstr "Közreműködő" + +#: include/options.php:74 +msgid "Author" +msgstr "Szerző" + +#: include/options.php:75 +msgid "Editor" +msgstr "Szerkesztő" + +#: include/options.php:76 +msgid "Administrator" +msgstr "Adminisztrátor" + +#: include/options.php:83 +msgid "Auto Sort" +msgstr "Automatikus rendezés" + +#: include/options.php:86 +msgid "OFF" +msgstr "Ki" + +#: include/options.php:87 +msgid "ON" +msgstr "Be" + +#: include/options.php:88 +msgid "global setting" +msgstr "globális beállítások" + +#: include/options.php:93 +msgid "Admin Sort" +msgstr "Adminisztrációs rendezés" + +#: include/options.php:97 +msgid "This will change the order of terms within the admin interface" +msgstr "Ez megváltoztatja az elemek elrendezését az adminisztrációs felületen" + +#: include/options.php:105 +msgid "Autosort OFF" +msgstr "Automatikus rendezés kikapcsolása" + +#: include/options.php:106 +msgid "" +"No query will be changed, the terms will appear in the original order. To " +"retrieve the terms in the required order you must use the term_order on the " +"orderby parameter" +msgstr "" +"Egy lekérdezés sem lesz megváltoztatva, minden az eredeti sorrendben tér " +"vissza. Ahhoz, hogy érvénybe lépjen az új sorrent, be kell állítanod az " +"orderby paraméternek a term_order értéket" + +#: include/options.php:114 +msgid "See more info on the get_terms usage" +msgstr "További információk a get_terms használatáról" + +#: include/options.php:114 +msgid "here" +msgstr "itt" + +#: include/options.php:116 +msgid "Autosort ON" +msgstr "Automatikus rendezés bekapcsolása" + +#: include/options.php:117 +msgid "" +"The queries will be updated, all terms will appear in the order you manually " +"defined. This is recommended if you don't want to change any theme code to " +"apply the terms order" +msgstr "" +"A lekérések frissítve lesznek, az összes elem úgy jelenik meg, ahogy te " +"manuálisan beállítottad. Ez akkor szükséges, ha nem akarsz módosítani a " +"témádban." + +#: include/options.php:127 +msgid "Save Settings" +msgstr "Beállítások mentése" diff --git a/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-ja.mo b/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-ja.mo new file mode 100644 index 0000000000000000000000000000000000000000..70311e23380697750c7470b9f6705dab2e2bc738 GIT binary patch literal 4096 zcmai0TWlOx89qRO)|5-yQp%-pC`eI-$Csp0(@kmOBo1|B$5y{ zBTv4WbI$zd`@jGD&*m>rZX08`zK8o;xL^DfWA(t+Pvak4k9~%*8sOu=F9M$ieh&CN z@NwV^z$bvafL{RakH%Z0_Y=U27*7CS1O6LG-|yST*yn+VfnNb01wIAr0&<`WoCaP3 z;uH4DXBi_(`+>CYK_KyI1AZU)6X2JC13=%BZ@qQg-h|g+-e*k_N?|%e73;ZkatHA#NAuZbu za(HA<0sjPi4oJHEGaBCu5o!NsAn|DhQhq-M?gIV{_-Ej+fwb-{77<Uza{!1?tOZEl zodCWGJPoA$=)$AYjGn)So7Qi~{WNa6sGi@zjjh--xW9vY>qY$OLW;_lkEyrN7vxd$ z3293g<$_YGT2Y=Ti{cA8)kU0%=htylzT~y%anlu9oIOV`O-9zVc&F`n;iKt#j_%nG zYs!1+5bS6=@7XTa@%F=qX*PN}$_}PQvWMGwhaI#n&oL92bJ!u%;Qe-EKtpQ+)1yjM7`qR?I4OEax~tl2Or#~%qxIC^FSd8hC^(@MFl#S>YVw>yS#`0<>fd%|UH zre$XHS>7soMTTfWh-z5VVn=O$DleRV(9dLeLhxi-w^G8WC92#L4nnFaJ(m-@!;vyg z*p3NV^$Z@cT^*0x+z}`Pw%PJwwAc}+@}`5-)M8bjY~J-EF5xa+;T)t7!y{^=~eYp~9I!cD?C zh#uEZ+m@X*p;+|T9|~E0jhkLZusCujy|8jqvAoh6is?}B6BMJmkU6uumB-S4ZV32P z7*LO#ia$pr?QB+92DCD})nYhuhsXPL3(m8n;=q*sBvTgEvJL2Gb5sWbNxG1LQWI>e z9gx&jpbfK=l~2Niq(IKAMdgz^dBgN}xT-LQqo=Tu!41dGsfVW5o8G7kV=704PN~+5 z+i+}T81!CP16{ScX!LLC;`Aw-Pvoehn%gxY97~`+E$D59{ z)PkGo=6eKx#S=Yx&fcHO;^3%*PhPEQMW^PGx)v9DHU{l!!6z+5R6VC#!WA`bEp5$J zO&aSOYUmsl7Dzxj3U=D7&t-Je+Doo;P@Eqgj~~|dRM!#NZsBOn7F>uED8~0BOt0n* zEj*!A79F<0sl^-XcGvC3O!%rD5&bxI4Yw5se~fo^?d=lP$pbi`bGny~@%rN~idGK= z>JPz$3Hx+?Z<;Dz-`CgIl?G1-vex(IxLJf|hYG{Bt>ezzL86USFF-GRtj1M&+y zzF$+0)l|RKu=3(m`R$?drH|IHUYGu~^cQ7eMF#g|FdWTQ1_oK_>{xl`K0Q_5oGXrw zRo6W9uD+j>!PvtKWdWnhjI-j>nJAR>FVgbhT^Y>E!Yx_2ffdqUl72z@bJCy0Y;om7 z>CczvN2Na{{Z;9|tHwwFes2*1=_`* zFMWVeNb@&p$6@K;Q8b93EG$t>{~V;K%v@Q!JBs+F2`o4x{hRbja5WT1?R$283X3rX zR^T=s^28#(U%xg~9-C7vZmQThXSdZ=R4_0oXI$(fey#)qHBK)>^{&H~@+{cwT^JInrUpW;&jWW1E zP6?)HXYB7!tHU??9fbsID;ONw2p?*EHmnTtQm%|_C=0OIFF~O)2U85NP*nUo4LAK8j*su~yVeu2E;-%^c> zgJDV*M(`B`$9n0bjz|GzLD*2#@kjWZnrKM|Bg!j*I#{k#Ytsn+7Gx06nd8rM`g!NX zCh7+aLZCA$0rb{1emi>gPW9gfUOqFWHm2Z^Y;EQJ4IWWPL~J&MT-tiD7Ka8A?m_LT zb4k1h#Gpe2-4dO*rLkKqEF>!q&aACmjGAAaF-jj&=2GP*LT?;?ppWlA?oh2dAUw?> zbaCP?RXxBTI_eHdUznE#D30#F7A=ch2614W=%--|YwS&jh%De(8&ZuCm4|rz7pzLP ADF6Tf literal 0 HcmV?d00001 diff --git a/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-ja.po b/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-ja.po new file mode 100644 index 00000000..c8f63b78 --- /dev/null +++ b/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-ja.po @@ -0,0 +1,182 @@ +# Copyright (C) 2012 Category Order and Taxonomy Terms Order +# This file is distributed under the same license as the Category Order and Taxonomy Terms Order package. +msgid "" +msgstr "" +"Project-Id-Version: Category Order and Taxonomy Terms Order 1.2.7\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-04-19 15:02+0900\n" +"PO-Revision-Date: 2013-04-20 17:30+0900\n" +"Last-Translator: JOTAKI, Taisuke \n" +"Language-Team: tekapo \n" +"Language: Japanese\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 1.5.5\n" +"X-Poedit-KeywordsList: __;_e\n" +"X-Poedit-Basepath: /Users/Tai/Dropbox/vhosts/www_hyperion/wp_plugins/wp-" +"content/plugins\n" +"X-Poedit-SearchPath-0: taxonomy-terms-order\n" + +#: taxonomy-terms-order/include/interface.php:19 +msgid "Taxonomy Order" +msgstr "タクソノミーオーダー" + +#: taxonomy-terms-order/include/interface.php:52 +#: taxonomy-terms-order/include/options.php:57 +msgid "" +"Did you find this plugin useful? Please support our work with a donation or " +"write an article about this plugin in your blog with a link to our site" +msgstr "" +"このプラグインはあなたの役に立ちましたか?寄付をしてくださるか、あなたのブロ" +"グに次のサイトへのリンク付きで記事を書いてサポートをお願いします: " + +#: taxonomy-terms-order/include/interface.php:53 +#: taxonomy-terms-order/include/options.php:58 +msgid "" +"Did you know there is available a more advanced version of this plug-in?" +msgstr "このプラグインの高機能版があるのを御存じですか?" + +#: taxonomy-terms-order/include/interface.php:53 +#: taxonomy-terms-order/include/options.php:58 +msgid "Read more" +msgstr "もっと読む" + +#: taxonomy-terms-order/include/interface.php:54 +#: taxonomy-terms-order/include/options.php:59 +msgid "Check our" +msgstr " " + +#: taxonomy-terms-order/include/interface.php:54 +#: taxonomy-terms-order/include/options.php:59 +msgid "plugin which allow to custom sort all posts, pages, custom post types" +msgstr "" +"プラグインはすべての投稿、固定ページ、カスタム投稿タイプのソートを変更できる" +"ようにします。" + +#: taxonomy-terms-order/include/interface.php:60 +msgid "" +"This plugin can't work without javascript, because it's use drag and drop " +"and AJAX." +msgstr "" +"このプラグインではドラッグアンドドロップに AJAX を利用しているので " +"JavaScript 無しでは動作しません。" + +#: taxonomy-terms-order/include/interface.php:96 +msgid "Taxonomies" +msgstr "タクソノミー" + +#: taxonomy-terms-order/include/interface.php:100 +msgid "Taxonomy Title" +msgstr "タクソノミーのタイトル" + +#: taxonomy-terms-order/include/interface.php:100 +msgid "Total Posts" +msgstr "投稿数" + +#: taxonomy-terms-order/include/interface.php:150 +msgid "Update" +msgstr "更新" + +#: taxonomy-terms-order/include/interface.php:199 +msgid "Items Order Updates" +msgstr "項目の順番を更新しました" + +#: taxonomy-terms-order/include/options.php:16 +msgid "Settings Saved" +msgstr "設定を保存しました" + +#: taxonomy-terms-order/include/options.php:24 +msgid "General Settings" +msgstr "一般設定" + +#: taxonomy-terms-order/include/options.php:64 +msgid "General" +msgstr "一般" + +#: taxonomy-terms-order/include/options.php:69 +msgid "Minimum Level to use this plugin" +msgstr "このプラグインを利用できる最小権限" + +#: taxonomy-terms-order/include/options.php:72 +msgid "Subscriber" +msgstr "購読者" + +#: taxonomy-terms-order/include/options.php:73 +msgid "Contributor" +msgstr "寄稿者" + +#: taxonomy-terms-order/include/options.php:74 +msgid "Author" +msgstr "投稿者" + +#: taxonomy-terms-order/include/options.php:75 +msgid "Editor" +msgstr "編集者" + +#: taxonomy-terms-order/include/options.php:76 +msgid "Administrator" +msgstr "管理者" + +#: taxonomy-terms-order/include/options.php:83 +msgid "Auto Sort" +msgstr "自動ソート" + +#: taxonomy-terms-order/include/options.php:86 +msgid "OFF" +msgstr "オフ" + +#: taxonomy-terms-order/include/options.php:87 +msgid "ON" +msgstr "オン" + +#: taxonomy-terms-order/include/options.php:88 +msgid "global setting" +msgstr "全体設定" + +#: taxonomy-terms-order/include/options.php:93 +msgid "Admin Sort" +msgstr "管理画面でのソート" + +#: taxonomy-terms-order/include/options.php:97 +msgid "This will change the order of terms within the admin interface" +msgstr "この設定は管理画面内でのタームの順序を変更します。" + +#: taxonomy-terms-order/include/options.php:105 +msgid "Autosort OFF" +msgstr "自動ソートのオフ" + +#: taxonomy-terms-order/include/options.php:106 +msgid "" +"No query will be changed, the terms will appear in the original order. To " +"retrieve the terms in the required order you must use the term_order on the " +"orderby parameter" +msgstr "" +"クエリーは変更されません。タームは元の順序で表示されます。タームを必要とされ" +"る順序で取得するには、orderby パラメータで term_order を使う必要があります" + +#: taxonomy-terms-order/include/options.php:114 +msgid "See more info on the get_terms usage" +msgstr "get_terms の利用方法についての詳細は" + +#: taxonomy-terms-order/include/options.php:114 +msgid "here" +msgstr "こちらをご覧ください。" + +#: taxonomy-terms-order/include/options.php:116 +msgid "Autosort ON" +msgstr "自動ソートオン" + +#: taxonomy-terms-order/include/options.php:117 +msgid "" +"The queries will be updated, all terms will appear in the order you manually " +"defined. This is recommended if you don't want to change any theme code to " +"apply the terms order" +msgstr "" +"クエリーは更新され、すべてのタームは手動で設定した順序で表示されます。ターム" +"の順序に適用させるためにテーマのコードを変更したくなければ、こちらの方をおす" +"すめします" + +#: taxonomy-terms-order/include/options.php:127 +msgid "Save Settings" +msgstr "設定を保存する" diff --git a/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-nl_NL.mo b/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-nl_NL.mo new file mode 100644 index 0000000000000000000000000000000000000000..ffa3f61dee7da8616099f93a71a3087c7a2002b2 GIT binary patch literal 2574 zcma)7O^+Kz5N$#r$wCN(5ICSv0z?qWEY1dz;Dv} z^$^!Ik> z$AN9&o4_IPIpB9d@$=K<{r&`h0d8adci$HodO;Qxo3c{1HT8(1Fr#p10I!i++G5n2EGD34?G840}8J@K(X@;@Ezc{K+){M zWc?xVB;Nl7o&f#@yahajpcjB&0Y#U4K+)kx+=TbfKn=VP6v@Sh4AD*o!d3`JJtZ#~ zVp|5x*Z#zY42eyKa1}qIkqq%AdW%-4alL>`cuTAZz19c-(XyejwC#LUOI38^r->OrP3)1T%vl|c zv*a-EO=QxRw2vk&@Yr!xoY?~t{NT@1r*QeyL}BcJz)j`@EIeX0ux=N-*)xHW9%)nP zj+mvP!<^1W+NPY*h<&IjbZ5SVyZV$ZdtFSCwmC*)^Ptuv4+CBI8GE`}W;$|Eo5q@9 zHKYw5F+^}8$IPCw>IUnq_N=z`h-b#Ona6~T?IH>*lqu)fj_l#33OZ*sbxpE2Q!Rbh zSvNHBJ9*q2)0w@tOe|QnrpbVEskUe1OnuR|4^=|yO&QNqhf^(_O*|`JnKG|)q$9(F zE9-})YfHE1$2NCOQBc~`HkT+F`4cf5B&=CWdf`%5bX`NnVxg;3P;yZhL|ZPzpvLMc zNs^M9!JgfoNl_X_A=z`3Rw23}1*slPQYrh+Qwdc7lU13dxK~1tE${lA#$-K9ZjBS$ zq!nZ+cYdN#9m*rwS~cG~mvc8*iZs~_xyh2{Di2A^HEC|^dMjD+To-Dx3R_KDXk1uG z8kdsB`*h(_^J3#%W1-Q&hsg~d8L6iK{BA>sn6$jMq0rI!CfQIXsmqu?2k-!x!cK>>@{h%xzmf8OT$hk$H$dB)6?0O)VAx?w(A<(*%hg3_B-Q> z2|ICo9QKmB_>%E=Ge1++n)C%rKPXVtv(;_ZKJ9IRN7880{M@AJNx`8iZQb~W$bCRn zKAK$SeaC2mcAwQPgEP{{c`=cgE!hff0>@&^?kZikI2s{xg)V0U?K0ZmkjLMS`yY-^ zmtfzUez!Iu9dLj);?SEY*TE)cwzDjnfA<_1e7p5^1P8Y54KA%^~BV zGBM|lXMMW{|K=Lcv^4\n" +"Language-Team: nsp-code \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n" +"X-Poedit-Basepath: D:\\htdocs\\develop\\advanced_post_types_order\\wp-content\\plugins\\taxonomy-terms-order\\\n" +"X-Poedit-Language: Netherland\n" +"X-Poedit-SearchPath-0: .\n" + +#: include/interface.php:19 +msgid "Taxonomy Order" +msgstr "Structuur volgorde" + +#: include/interface.php:52 +#: include/options.php:57 +msgid "Did you found useful this plug-in? Please support our work with a donation or write an article about this plugin in your blog with a link to our site" +msgstr "Vind je dit een nuttige plugin? Ondersteun ons werk met een donatie of schrijf een artikel over deze plugin op je site met een link naar onze site." + +#: include/interface.php:53 +#: include/options.php:58 +msgid "Did you know there is available a more advanced version of this plug-in?" +msgstr "Wist je dat er een meer uitgebreide versie van deze plugin beschikbaar is?" + +#: include/interface.php:53 +#: include/options.php:58 +msgid "Read more" +msgstr "Meer lezen" + +#: include/interface.php:54 +#: include/options.php:59 +msgid "Check our" +msgstr "Bezoek onze" + +#: include/interface.php:54 +#: include/options.php:59 +msgid "plugin which allow to custom sort all posts, pages, custom post types" +msgstr "een plugin die je toestaat om alle berichten, pagina's en aangepaste berichttypen te sorteren" + +#: include/interface.php:60 +msgid "This plugin can't work without javascript, because it's use drag and drop and AJAX." +msgstr "Deze plugin kan niet werken zonder javascript, om dat het AJAX klik-en-sleep gebruikt." + +#: include/interface.php:96 +msgid "Taxonomies" +msgstr "Structuren" + +#: include/interface.php:100 +msgid "Taxonomy Title" +msgstr "Structuur Titel" + +#: include/interface.php:100 +msgid "Total Posts" +msgstr "Totale berichten" + +#: include/interface.php:150 +msgid "Update" +msgstr "Bijwerken" + +#: include/interface.php:199 +msgid "Items Order Updates" +msgstr "Bestel artikelen Updates" + +#: include/options.php:16 +msgid "Settings Saved" +msgstr "Instellingen bijgewerkt" + +#: include/options.php:24 +msgid "General Settings" +msgstr "Algemene instellingen" + +#: include/options.php:64 +msgid "General" +msgstr "Algemeen" + +#: include/options.php:69 +msgid "Minimum Level to use this plugin" +msgstr "Minimale niveau om deze plugin te gebruiken" + +#: include/options.php:72 +msgid "Subscriber" +msgstr "" + +#: include/options.php:73 +msgid "Contributor" +msgstr "" + +#: include/options.php:74 +#, fuzzy +msgid "Author" +msgstr "Automatisch sorteren" + +#: include/options.php:75 +msgid "Editor" +msgstr "" + +#: include/options.php:76 +#, fuzzy +msgid "Administrator" +msgstr "Admin sorteren" + +#: include/options.php:83 +msgid "Auto Sort" +msgstr "Automatisch sorteren" + +#: include/options.php:86 +msgid "OFF" +msgstr "" + +#: include/options.php:87 +msgid "ON" +msgstr "" + +#: include/options.php:88 +#, fuzzy +msgid "global setting" +msgstr "Algemene instellingen" + +#: include/options.php:93 +msgid "Admin Sort" +msgstr "Admin sorteren" + +#: include/options.php:97 +msgid "This will change the order of terms within the admin interface" +msgstr "Dit zal de volgorde wijzigen in de admin interface" + +#: include/options.php:105 +msgid "Autosort OFF" +msgstr "" + +#: include/options.php:106 +#, fuzzy +msgid "No query will be changed, the terms will appear in the original order. To retrieve the terms in the required order you must use the term_order on the orderby parameter" +msgstr "Er word geen query gewijzigd, de termen zullen verschijnen in de originele volgorde. Om de terms in de verplichte volgorde op te halen moet de de menu_order op de orderby parameter opgehaald worden" + +#: include/options.php:114 +msgid "See more info on the get_terms usage" +msgstr "Meer informatie over het get_terms gebruik" + +#: include/options.php:114 +msgid "here" +msgstr "hier" + +#: include/options.php:116 +msgid "Autosort ON" +msgstr "" + +#: include/options.php:117 +#, fuzzy +msgid "The queries will be updated, all terms will appear in the order you manually defined. This is recommended if you don't want to change any theme code to apply the terms order" +msgstr "De query wordt bijgewerkt, alle termen verschijnen in de volgorde die je handmatig instelt. Dit wordt aanbevolen als je de themacode voor de volgorde niet wilt wijzigen" + +#: include/options.php:127 +msgid "Save Settings" +msgstr "Instellingen opslaan" + diff --git a/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-pl_PL.mo b/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-pl_PL.mo new file mode 100644 index 0000000000000000000000000000000000000000..bbd27d62dc3d405e9c2a7ff04394212a3eda33a5 GIT binary patch literal 4255 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 K)ZoFBd;bM0wkaL} literal 0 HcmV?d00001 diff --git a/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-pl_PL.po b/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-pl_PL.po new file mode 100644 index 00000000..85f8d1ca --- /dev/null +++ b/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-pl_PL.po @@ -0,0 +1,188 @@ +msgid "" +msgstr "" +"Project-Id-Version: Category Order and Taxonomy Terms Order\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-08-23 13:26+0100\n" +"PO-Revision-Date: 2013-08-28 09:31+0100\n" +"Last-Translator: Mateusz Czardybon \n" +"Language-Team: \n" +"Language: pl_PL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2;\n" +"X-Generator: Poedit 1.5.7\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" +"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;" +"esc_attr_x:1,2c\n" +"X-Poedit-Basepath: ../\n" +"X-Textdomain-Support: yes\n" +"X-Poedit-SearchPath-0: .\n" + +#: taxonomy-terms-order.php:88 +msgid "Taxonomy Terms Order" +msgstr "Sortowanie taksonomii" + +#: taxonomy-terms-order.php:114 taxonomy-terms-order.php:116 +#: include/interface.php:19 +msgid "Taxonomy Order" +msgstr "Sortowanie taksonomii" + +#: include/interface.php:52 include/options.php:57 +msgid "" +"Did you find this plugin useful? Please support our work with a donation or " +"write an article about this plugin in your blog with a link to our site" +msgstr "" +"Podoba Ci się ta wtyczka i uważasz, że jest przydatna? Wesprzyj naszą pracę " +"dotacją lub napisz artykuł o naszej wtyczce na Twojej stronie z odnośnikiem " +"do naszej strony" + +#: include/interface.php:53 include/options.php:58 +msgid "" +"Did you know there is available a more advanced version of this plug-in?" +msgstr "Czy wiesz, że jest dostępna bardziej rozbudowana wersja tej wtyczki?" + +#: include/interface.php:53 include/options.php:58 +msgid "Read more" +msgstr "Czytaj więcej" + +#: include/interface.php:54 include/options.php:59 +msgid "Check our" +msgstr "Sprawdź naszą wtyczkę" + +#: include/interface.php:54 include/options.php:59 +msgid "plugin which allow to custom sort all posts, pages, custom post types" +msgstr "" +", dzięki której będziesz mógł dowolnie sortować wszystkie wpisy, strony i " +"wpisy własnego typu" + +#: include/interface.php:60 +msgid "" +"This plugin can't work without javascript, because it's use drag and drop " +"and AJAX." +msgstr "Ta wtyczka wygama do działania javascript." + +#: include/interface.php:96 +msgid "Taxonomies" +msgstr "Taksonomie" + +#: include/interface.php:100 +msgid "Taxonomy Title" +msgstr "Tytuł taksonomii" + +#: include/interface.php:100 +msgid "Total Posts" +msgstr "Wszystkie wpisy" + +#: include/interface.php:150 +msgid "Update" +msgstr "Zaktualizuj" + +#: include/interface.php:199 +msgid "Items Order Updates" +msgstr "Kolejność elementów zaktualizowana" + +#: include/options.php:16 +msgid "Settings Saved" +msgstr "Ustawienia zapisane" + +#: include/options.php:24 +msgid "General Settings" +msgstr "Ustawienia ogólne" + +#: include/options.php:64 +msgid "General" +msgstr "Ogólne" + +#: include/options.php:69 +msgid "Minimum Level to use this plugin" +msgstr "Minimalny poziom uprawnień, aby używać tej wtyczki" + +#: include/options.php:72 +msgid "Subscriber" +msgstr "Subskrybent" + +#: include/options.php:73 +msgid "Contributor" +msgstr "Współpracownik" + +#: include/options.php:74 +msgid "Author" +msgstr "Autor" + +#: include/options.php:75 +msgid "Editor" +msgstr "Redaktor" + +#: include/options.php:76 +msgid "Administrator" +msgstr "Administrator" + +#: include/options.php:83 +msgid "Auto Sort" +msgstr "Sortowanie automatyczne" + +#: include/options.php:86 +msgid "OFF" +msgstr "WYŁĄCZONE" + +#: include/options.php:87 +msgid "ON" +msgstr "ZAŁĄCZONE" + +#: include/options.php:88 +msgid "global setting" +msgstr "ustawienie globalne" + +#: include/options.php:93 +msgid "Admin Sort" +msgstr "Sortowanie na zapleczu" + +#: include/options.php:97 +msgid "This will change the order of terms within the admin interface" +msgstr "" +"Załączenie tej opcji powoduje zmienę sortowania również na stronach zaplecza" + +#: include/options.php:105 +msgid "Autosort OFF" +msgstr "Sortowanie automatyczne WYŁĄCZONE" + +#: include/options.php:106 +msgid "" +"No query will be changed, the terms will appear in the original order. To " +"retrieve the terms in the required order you must use the term_order on the " +"orderby parameter" +msgstr "" +"Zapytania do bazy nie będą zmieniane i wszystkie taksonomie zostaną " +"wyświetlone według ich orygilanych koleności. Jeśli chcesz pobrać z bazy " +"taksonomie uwzględniająć ich sortowanie, musisz parametru orderby z " +"wartością term_order" + +#: include/options.php:114 +msgid "See more info on the get_terms usage" +msgstr "Przeczytaj jak używać funcji get_terms() klikając" + +#: include/options.php:114 +msgid "here" +msgstr "tutaj" + +#: include/options.php:116 +msgid "Autosort ON" +msgstr "Sortowanie automatyczne ZAŁĄCZONE" + +#: include/options.php:117 +msgid "" +"The queries will be updated, all terms will appear in the order you manually " +"defined. This is recommended if you don't want to change any theme code to " +"apply the terms order" +msgstr "" +"Zapytania do bazy będą aktualizowane i wszystkie taksonomie będą wyświetlane " +"zgodnie z kolejnoscią która zostanie ustawiona na zapleczu. Jest to sposób " +"polecany, jeśli chcesz aby w Twoim motywie działało sortowanie taksonomii " +"bez zmian w jego kodzie" + +#: include/options.php:127 +msgid "Save Settings" +msgstr "Zapisz ustawienia" diff --git a/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-pt_BR.mo b/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-pt_BR.mo new file mode 100644 index 0000000000000000000000000000000000000000..a2415a70f5e4c6cef78b60d254f1c028fb7fb29c GIT binary patch literal 3598 zcma)8O^h5z6)sFd$nu{6A%uiyDbiZX_Uw4=I93~yteth(u`uARakuD=3TfPVvi4frqMmw>0fD8z%n2Z3J&J`DT{ zkh<};?)?Ig6B$ro|6~HnJ<_g^X|*>t^H%)`C=dWdIC4|!#1+N2t%|JARfof9R3hD+sygPxkR}6 zLfGQPaS@w&r41ce7urYdgOkBJvDt)i3$~kXg7sKOdsnaWZ1-|aTp6qE7TLy$E7k<3 zhnREX1)bB>HZ-!0$*J*b)RYv)+EZONMWW4fv|lRe75S#FSuP~dv30lTScfr5%B_(> zTSFG(P6tKOkaR(3B_4;i2}^nK0YB(-G%Rf~7g1_+i-L`!JtQowx@GJ!b}Od{7Ria! zr5v(Ysw~E2K9MF@1sn;9r;96W9LsT_Bbhflw4%<0U--?IS;go9WWTjw* zxUOU#i4q4AIu=eJDAn?(%?PBo+Y1#AThkja3nk{OiTCE>pc(oMNdvJ1dD|LWX;9TY zPFn_-uLB)QB?fSsiNeYSRZS!rR7p_xKd9n>a9&o@G*~*NT#d9*IcVeL#LubBR+Tb2 zNYbOY7^%1#=vW%0ob955Y@9Mb6~bh55N8Qtfk5W0H6YRmYrCXJ1Tq-~&9j_y_z2m@ z4Afx_AF&{+pX^@Yxp z%T3{vflX-~LY=O!qgv#(Q{MNiE7pVLJEqVyi4-I;04w`@gXD@+v6v(;KygYN{j(cM z|6I~PPaEgba~tXTi%<3YX}^!f$#pf+eCn5L&nNwjWaAm?pG!9`U?0})NFS1clg5`^ zFH^#ZDH?E)43w-=GQLh?V*E&z@ZMRYGj*7&vL5T_r*dp<4|(?N%I@~=){>XAz5WW9 zQDq<k@r}XNM!Apt`4YcnL?6rOxrtSX*B@JX~(LjJjOQFit5;U)^|h;aW<{U{zc7qSvhkI@^1? z_snwt0jg6r-iL&wpHgo{a4-!jR%|yXI!)fS7`Ip<(LE}JDnqRS4gYOCcA>e{&+VbT zYvQIll4Pv+7F`Lo-8#v-ZrW`28#QtdliCcZc=`>A zF2@I>f)^-wNHs66&F*nes%H1lqF^i=)_@VLc1xnTMJY380%9BSx+TFYH+vVAKi4C~ z4VJ-SAFB|6Ct)@`8ERH&=Gy0Nt4I5+E|YbD!S2M?#Zu2l2q%(dPhtph>@)2-5Nz!1 zJv1hVXmBw>s{+Y3>Tf%l*iqoKlG>wTl@sX5PVn;~N>of2UVy5`@me&k&oGIVN3rK-F7fEFr+-_?-(;21*8lgjFEf;ZEzki1d**UOj#v+V(a9=h}%YuiS$ES zMK3KH7An8vEbTIdRzK6OR^h}dx2shV4V$auT$$$pyU3-w&5K2Y!Uq^WOOg8c7S$8k z^(!35*lNT)k>eNVBG1`}*u)TKiI1Gvz3{OX4^j;!{0Ye!!i8wT?!0-;-sNv7CjLJg G*uMc5+Cb(2 literal 0 HcmV?d00001 diff --git a/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-pt_BR.po b/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-pt_BR.po new file mode 100644 index 00000000..7b1f7352 --- /dev/null +++ b/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-pt_BR.po @@ -0,0 +1,192 @@ +msgid "" +msgstr "" +"Project-Id-Version: Category Order and Taxonomy Terms Order\n" +"Report-Msgid-Bugs-To: http://wordpress.org/tag/taxonomy-terms-order\n" +"POT-Creation-Date: 2012-03-04 23:32:48+00:00\n" +"PO-Revision-Date: 2014-02-27 03:26-0300\n" +"Last-Translator: \n" +"Language-Team: nsp-code \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n" +"X-Poedit-Basepath: c:\\2\\\n" +"Language: en\n" +"X-Generator: Poedit 1.5.7\n" +"X-Poedit-SearchPath-0: .\n" + +#: include/interface.php:19 +msgid "Taxonomy Order" +msgstr "Ordenar categorias" + +#: include/interface.php:52 include/options.php:57 +msgid "" +"Did you found useful this plug-in? Please support our work with a donation " +"or write an article about this plugin in your blog with a link to our site" +msgstr "" +"Você achou este plug-in útil? Por favor, ajude nosso trabalho com uma doação " +"ou escreva um artigo em seu blog sobre o plug-in com um link para o nosso " +"site" + +#: include/interface.php:53 include/options.php:58 +msgid "" +"Did you know there is available a more advanced version of this plug-in?" +msgstr "Você sabia que existe uma versão avançada deste plug-in" + +#: include/interface.php:53 include/options.php:58 +msgid "Read more" +msgstr "Leia mais" + +#: include/interface.php:54 include/options.php:59 +msgid "Check our" +msgstr "Veja nosso" + +#: include/interface.php:54 include/options.php:59 +msgid "plugin which allow to custom sort all posts, pages, custom post types" +msgstr "" +"plug-in que permite ordenar todos os posts, páginas e custom post types" + +#: include/interface.php:60 +msgid "" +"This plugin can't work without javascript, because it's use drag and drop " +"and AJAX." +msgstr "" +"Este plug-in não funciona sem Javascript porque utiliza 'drag and drop' e " +"'AJAX'" + +#: include/interface.php:96 +msgid "Taxonomies" +msgstr "Taxonomias" + +#: include/interface.php:100 +msgid "Taxonomy Title" +msgstr "Título da taxonomia" + +#: include/interface.php:100 +msgid "Total Posts" +msgstr "Total de posts" + +#: include/interface.php:150 +msgid "Update" +msgstr "Atualizar" + +#: include/interface.php:199 +msgid "Items Order Updates" +msgstr "Atualiza a ordem dos itens" + +#: include/options.php:16 +msgid "Settings Saved" +msgstr "Configurações salvas" + +#: include/options.php:24 +msgid "General Settings" +msgstr "Configuração geral" + +#: include/options.php:64 +msgid "General" +msgstr "Geral" + +#: include/options.php:69 +msgid "Minimum Level to use this plugin" +msgstr "Nível mínimo para utilizar este plugin" + +#: include/options.php:72 +msgid "Subscriber" +msgstr "Assinante" + +#: include/options.php:73 +msgid "Contributor" +msgstr "Colaborador" + +#: include/options.php:74 +msgid "Author" +msgstr "Autor" + +#: include/options.php:75 +msgid "Editor" +msgstr "Editor" + +#: include/options.php:76 +msgid "Administrator" +msgstr "Administrador" + +#: include/options.php:83 +msgid "Auto Sort" +msgstr "Ordenar automaticamente" + +#: include/options.php:86 +msgid "OFF" +msgstr "" + +#: include/options.php:87 +msgid "ON" +msgstr "" + +#: include/options.php:88 +msgid "global setting" +msgstr "Configurações globais" + +#: include/options.php:93 +msgid "Admin Sort" +msgstr "Ordenar Admin" + +#: include/options.php:97 +msgid "This will change the order of terms within the admin interface" +msgstr "Isto modificará a ordem dos termos na interface administrativa" + +#: include/options.php:105 +msgid "Autosort OFF" +msgstr "Ordenar automaticamente OFF" + +#: include/options.php:106 +msgid "" +"No query will be changed, the terms will appear in the original order. To " +"retrieve the terms in the required order you must use the term_order on the " +"orderby parameter" +msgstr "" +"Nenhuma requisição será modificada e os termos serão exibidos na ordem " +"original. Para capturar os termos na ordem selecionada você precisa do " +"parâmetro orderby como term_order" + +#: include/options.php:114 +msgid "See more info on the get_terms usage" +msgstr "Veja mais sobre get_terms" + +#: include/options.php:114 +msgid "here" +msgstr "aqui" + +#: include/options.php:116 +msgid "Autosort ON" +msgstr "Ordenar automaticamente ON" + +#: include/options.php:117 +msgid "" +"The queries will be updated, all terms will appear in the order you manually " +"defined. This is recommended if you don't want to change any theme code to " +"apply the terms order" +msgstr "" +"A requisições serão atualizadas e todos os termos serão exibidos na ordem " +"definida. Isto é recomendado se você não deseja fazer modificações no tema." + +#: include/options.php:127 +msgid "Save Settings" +msgstr "Salvar configurações" + +#. #-#-#-#-# plugin.pot (Category Order and Taxonomy Terms Order 1.2.7) #-#-#-#-# +#. Plugin Name of the plugin/theme +#. #-#-#-#-# plugin.pot (Category Order and Taxonomy Terms Order 1.2.7) #-#-#-#-# +#. Description of the plugin/theme +msgid "Category Order and Taxonomy Terms Order" +msgstr "" + +#. #-#-#-#-# plugin.pot (Category Order and Taxonomy Terms Order 1.2.7) #-#-#-#-# +#. Plugin URI of the plugin/theme +#. #-#-#-#-# plugin.pot (Category Order and Taxonomy Terms Order 1.2.7) #-#-#-#-# +#. Author URI of the plugin/theme +msgid "http://www.nsp-code.com" +msgstr "" + +#. Author of the plugin/theme +msgid "Nsp-Code" +msgstr "" diff --git a/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-pt_PT.mo b/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-pt_PT.mo new file mode 100644 index 0000000000000000000000000000000000000000..bada3a7c209c9db60d15d1d0bad14e17fc5e6738 GIT binary patch literal 3377 zcmb7G-HT+!6|cli)HX(=F@7a_79^`=Zrd|#;?m=~j`Ojs&g?eZt&xB>)%VtP*Y3Sl z*Q&ZbGv+z(0V5g$fhC9#*@r|#@Xho~K=K&yNeBc?{)Lc-{7&85A0|SQVs8KHzB5;y_=5s1);gX4r{=E1u1eI6`7512aY!1m$s zJ$%e_bv%d#%f*BJ%j1z6qTH+#L=<=7W4+lo58-3oSx(lG2gDMO;=7+07#vfC?=(J+ zA07|$&sLV{pskTPWy+^cm%JirGOUBtxhEM2WQ8`=w=UFE?SqrSI+S>kEF zPe;~Wrz0IEBq@X3QCy3Cr-OprBwf&Hj_Jr&;R{^B7_T`R<#s%0k!y3EATjTIa9GH6 z-Pj}CR!$M*l2e#Mj+iZ8$fnYyDx;}#o~>mMm+vInToAi3D)hUkjB+xcBlT4X+Kj!p z6jb5qip!Lv7t2frm5BpwbWs(wucj(zkzj-+TW!RZy*+W|vbd^bMul}s^yO47dCr*= zZ)c)kjo6(d<-|Z9TVo5Y{Cs*+zr9=zl$#5*vZ+I^#9+lQsWfN8(gkebYcNe6H)}Lf zsbr~jIOC)EnUmu>mYgl)Wb65@m)kYZBc11zPNW&Lo{DTV2ir0V!#;+`_(aC&(*_5J zGKEMsAYQ3weej~TpBU$MgiT+YSTuojG|?#{CC}NJmeR@xTaf2q!X}l>VU0>TR)FS| zHz}NyFxP+QlEQam>tNfcUc(|REZ!(n!qJiMNP6u>&)I7#4aub}d8v+}E^XJG8rMW_ zjpI&e#XYU7igO`3@ME1N&sAfe3~ZNLy(@!c+o_lj$qsmRX`{3L!=&?6vawF3}e~s-~I)_e<%{Hgx;ahh*TS@i}LDmwGC5mJXCb+RfgT^mM7R_E`E-x@X4) z@}r&F;+fVy99qGk$w0~C|Gw3wG7Niz*1@HN-KA~T+np8{4rL$`Jky0)kHeE?F16X@ z7;^CY`4{;YO zmkgYbr9Z#1$z=)C^N$-keV*2z*aVYayqWY-I8wD;OVFiSgvIF#>IC&F^ZTfmT^bHI zhiY>;M8F4@zq`J+u{ks~EOv*++Oj!XnWt+*lXlOhYw^-C6QsC&yx20wHT9fCH8iNg zLm7g@>x-#cPFJWVp~xGmIIXGTw5D3B{T#}2DZ`{o?e=oFucS*SJ?tkPoU}yU0%q^d zeq)iuI;|UximfG|AZJuTg3Dk*M%HN_J4?K=(rL1$#khu8qJ0#z8z}UWJJ6RjoR`!! zNtTTD-ZotYtp_FCI?3D+OUzuqe=AHM?rJjK|eW^)A-Agj;dU@nkm%4A2%;_ z3|vi}n#ObPI%A8xWofXfs=DVOKPcB@SsMg-1D&IYlFHc)G(L%%K2r2rrD!s{ zfp=x>G0}YJIglko*IQw~(rUQT>?pKS4fY?vwqt0AT2q@hvmRwx8I-9UWfXkG<=IW{ zG{x*D8V`)b;#AOIzb@UX3hYIeI}1(Cz^ z2BWdr2q$S?G3EU93q?;1W;a8XTY~ya%H0*u8Me`3WnzfI;srgA#?+7h(4fFu$2M)W zBW^;qzS23AIo6kQ>BgAM?bH^R&?_2i!A(eGFl94xdji0*i;e^X{73ZGO^Od\n" +"Language-Team: Pedro Mendonça \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 1.8.2\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" +"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;" +"esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-SearchPath-0: .\n" + +#: include/functions.php:62 +msgid "" +"Did you find this plugin useful? Please support our work with a donation or " +"write an article about this plugin in your blog with a link to our site" +msgstr "" +"Considera este plugin útil? Por favor faça um donativo ao autor ou escreva " +"um artigo sobre este plugin no seu blog com ligação para a nossa página" + +#: include/functions.php:63 +msgid "Did you know there is available an advanced version of this plug-in?" +msgstr "Sabe que há uma versão avançada deste plugin?" + +#: include/functions.php:63 +msgid "Read more" +msgstr "Ler mais" + +#: include/functions.php:64 include/functions.php:65 +msgid "Check our" +msgstr "Veja o nosso plugin" + +#: include/functions.php:64 +msgid "" +"plugin which allow to custom sort categories and custom taxonomies terms per " +"post basis" +msgstr "" +"que permite personalizar a ordem das categorias e das taxonomias " +"personalizadas para cada tipo de artigo" + +#: include/functions.php:65 +msgid "plugin which allow to custom sort all posts, pages, custom post types" +msgstr "" +"que permite personalizar a ordem dos artigos, páginas e tipos de artigo " +"personalizados" + +#: include/interface.php:38 taxonomy-terms-order.php:125 +#: taxonomy-terms-order.php:127 taxonomy-terms-order.php:129 +msgid "Taxonomy Order" +msgstr "Ordem da taxonomia" + +#: include/interface.php:46 +msgid "" +"This plugin can't work without javascript, because it's use drag and drop " +"and AJAX." +msgstr "" +"Este plugin não funciona sem JavaScript, porque utiliza AJAX para arrastar e " +"largar os itens." + +#: include/interface.php:100 +msgid "Taxonomies" +msgstr "Taxonomias" + +#: include/interface.php:104 +msgid "Taxonomy Title" +msgstr "Título da taxonomia" + +#: include/interface.php:104 +msgid "Total Posts" +msgstr "Total de artigos" + +#: include/interface.php:154 +msgid "Update" +msgstr "Atualizar" + +#: include/interface.php:203 +msgid "Items Order Updated" +msgstr "Ordem dos itens alterada" + +#: include/options.php:16 +msgid "Settings Saved" +msgstr "Definições guardadas" + +#: include/options.php:24 +msgid "General Settings" +msgstr "Definições gerais" + +#: include/options.php:30 +msgid "General" +msgstr "Geral" + +#: include/options.php:35 +msgid "Minimum Level to use this plugin" +msgstr "Nível mínimo para utilizar este plugin" + +#: include/options.php:38 +msgid "Subscriber" +msgstr "Assinante" + +#: include/options.php:39 +msgid "Contributor" +msgstr "Colaborador" + +#: include/options.php:40 +msgid "Author" +msgstr "Autor" + +#: include/options.php:41 +msgid "Editor" +msgstr "Editor" + +#: include/options.php:42 +msgid "Administrator" +msgstr "Administrador" + +#: include/options.php:49 +msgid "Auto Sort" +msgstr "Ordem automática" + +#: include/options.php:52 +msgid "OFF" +msgstr "Desligado" + +#: include/options.php:53 +msgid "ON" +msgstr "Ligado" + +#: include/options.php:54 +msgid "global setting" +msgstr "definição geral" + +#: include/options.php:54 include/options.php:62 +msgid "Additional description and details at " +msgstr "Descrição adicional e detalhes em " + +#: include/options.php:54 include/options.php:62 +msgid "Auto Sort Description" +msgstr "Auto Sort Description" + +#: include/options.php:59 +msgid "Admin Sort" +msgstr "Ordem na administração" + +#: include/options.php:62 +msgid "This will change the order of terms within the admin interface" +msgstr "Isto altera a ordem dos termos no interface de administração" + +#: include/options.php:73 +msgid "Save Settings" +msgstr "Guardar definições" + +#: taxonomy-terms-order.php:90 +msgid "Taxonomy Terms Order" +msgstr "Taxonomy Terms Order" diff --git a/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-ro_RO.mo b/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-ro_RO.mo new file mode 100644 index 0000000000000000000000000000000000000000..3165ab6cb60d228593b1f0c7e05d40e8641c39db GIT binary patch literal 2318 zcma)7O^X~w7;ZIcT#fPL;6a7=AcT7D)39->sa$A@H@O8c`D1+fjx+q;8|zEi1)|Id z(HjnxY8keIbnp_rsAV>DO}w|t24dG5+w65Q%wGp8XqgRW%!8&Pab7~UBVg@YuN}+Ns;gV-W z)ub|EVkAnLG5Z-e14ehoszlAT=CW8SqYt(r&uxK0YON3cG_^<@FrDQ=3VSVx-gI_b zmLb1Z<+r+u6|{yD)YeV;NMRpRG)S?fVlCW|+Nc*V=P=?@c;$u2?yHs<(`F>%xb8;Dqs71nUYizRgQpNxCRCvUS#|Qf^gJ zw`29ro)}xZSlZ?iHkvwus(c_t^Z&PPT-&%hr|-;SZ(+@vAPs^5$ps3!8 zXg&1Jp$OeN*e4h3gMG9c9)0W7wlX+=(UgLWMG@S=J~tiNBuNjxQqU|BiO-7+isDq2 ztfoq0KRW%;1zP);?@gyk$%2+}6(UUH7zV6mS;`@e2Hosp_TYX{0xqb;3b_lOfR*ws ziak_NDBEdLM%D}2;q=?r&TgT!y`38XrBgkl^V+Gg`S8YvX2yN z6i%pWsKump!{%IRjnOQ6*Kj`Y78bLM(6qX@vU06}}-fI@o8vAJw>N zhNy5#B|zaMv;N=jXqls8Y?8u*3ig;2OA34GD2dL+Q&GH41t!)jOm#Sp=g) aV\n" +"Language-Team: nsp-code \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n" +"X-Poedit-Basepath: c:\\2\\\n" +"X-Poedit-Language: english\n" +"X-Poedit-SearchPath-0: .\n" + +#: include/interface.php:19 +msgid "Taxonomy Order" +msgstr "Taxonomy Order" + +#: include/interface.php:52 +#: include/options.php:57 +msgid "Did you found useful this plug-in? Please support our work with a donation or write an article about this plugin in your blog with a link to our site" +msgstr "Ai gasit util acest plug-in? Vă rugăm să sprijine munca noastră, cu o donaţie sau scrieti un articol despre acest plugin în blog cu o legătură catre site-ul nostru" + +#: include/interface.php:53 +#: include/options.php:58 +msgid "Did you know there is available a more advanced version of this plug-in?" +msgstr "Ştiaţi că există disponibile o versiune mai avansată a acestui plug-in?" + +#: include/interface.php:53 +#: include/options.php:58 +msgid "Read more" +msgstr "Citeste mai mult" + +#: include/interface.php:54 +#: include/options.php:59 +msgid "Check our" +msgstr "" + +#: include/interface.php:54 +#: include/options.php:59 +msgid "plugin which allow to custom sort all posts, pages, custom post types" +msgstr "plugin care permit să sortare particularizată toate posturile, pagini, tipuri personalizate mesaj" + +#: include/interface.php:60 +msgid "This plugin can't work without javascript, because it's use drag and drop and AJAX." +msgstr "Acest plugin nu poate funcţiona fără javascript, pentru ca este trageţi şi de folosit picătură şi AJAX." + +#: include/interface.php:96 +msgid "Taxonomies" +msgstr "" + +#: include/interface.php:100 +msgid "Taxonomy Title" +msgstr "Titlul Taxonomiei" + +#: include/interface.php:100 +msgid "Total Posts" +msgstr "" + +#: include/interface.php:150 +msgid "Update" +msgstr "" + +#: include/interface.php:199 +msgid "Items Order Updates" +msgstr "Ordinea elementelor salvata" + +#: include/options.php:16 +msgid "Settings Saved" +msgstr "Setari salvate" + +#: include/options.php:24 +msgid "General Settings" +msgstr "Setari generale" + +#: include/options.php:64 +msgid "General" +msgstr "" + +#: include/options.php:69 +msgid "Minimum Level to use this plugin" +msgstr "Nivel minim pentru a utiliza acest plugin" + +#: include/options.php:72 +msgid "Subscriber" +msgstr "" + +#: include/options.php:73 +msgid "Contributor" +msgstr "" + +#: include/options.php:74 +msgid "Author" +msgstr "" + +#: include/options.php:75 +msgid "Editor" +msgstr "" + +#: include/options.php:76 +msgid "Administrator" +msgstr "" + +#: include/options.php:83 +msgid "Auto Sort" +msgstr "" + +#: include/options.php:86 +msgid "OFF" +msgstr "" + +#: include/options.php:87 +msgid "ON" +msgstr "" + +#: include/options.php:88 +#, fuzzy +msgid "global setting" +msgstr "Setari generale" + +#: include/options.php:93 +msgid "Admin Sort" +msgstr "" + +#: include/options.php:97 +msgid "This will change the order of terms within the admin interface" +msgstr "Acest lucru se va schimba ordinea termenilor în cadrul interfata de administrare" + +#: include/options.php:105 +msgid "Autosort OFF" +msgstr "" + +#: include/options.php:106 +#, fuzzy +msgid "No query will be changed, the terms will appear in the original order. To retrieve the terms in the required order you must use the term_order on the orderby parameter" +msgstr "Nr interogarea va fi schimbat, ceea ce va apărea în ordinea iniţială. Pentru a prelua termenii în ordinea cerută trebuie să utilizaţi menu_order pe parametrul orderby" + +#: include/options.php:114 +msgid "See more info on the get_terms usage" +msgstr "A se vedea mai multe informaţii despre utilizarea get_terms" + +#: include/options.php:114 +msgid "here" +msgstr "aici" + +#: include/options.php:116 +msgid "Autosort ON" +msgstr "" + +#: include/options.php:117 +#, fuzzy +msgid "The queries will be updated, all terms will appear in the order you manually defined. This is recommended if you don't want to change any theme code to apply the terms order" +msgstr "Interogarea va fi actualizat, toţi termenii vor apărea în ordinea în care manual definit. Acest lucru este recomandat dacă nu doriţi să modificaţi codul din temă pentru a aplica ordinul de termeni" + +#: include/options.php:127 +msgid "Save Settings" +msgstr "Salveaza Setarile" + +#. #-#-#-#-# plugin.pot (Category Order and Taxonomy Terms Order 1.2.7) #-#-#-#-# +#. Plugin Name of the plugin/theme +#. #-#-#-#-# plugin.pot (Category Order and Taxonomy Terms Order 1.2.7) #-#-#-#-# +#. Description of the plugin/theme +msgid "Category Order and Taxonomy Terms Order" +msgstr "" + +#. #-#-#-#-# plugin.pot (Category Order and Taxonomy Terms Order 1.2.7) #-#-#-#-# +#. Plugin URI of the plugin/theme +#. #-#-#-#-# plugin.pot (Category Order and Taxonomy Terms Order 1.2.7) #-#-#-#-# +#. Author URI of the plugin/theme +msgid "http://www.nsp-code.com" +msgstr "" + +#. Author of the plugin/theme +msgid "Nsp-Code" +msgstr "" + diff --git a/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-sk_SK.mo b/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-sk_SK.mo new file mode 100644 index 0000000000000000000000000000000000000000..aeb10929797903ac7559e06a020b9af7ab93cabe GIT binary patch literal 3893 zcma)8O^h5z6)qqSun-7=gnxJth!1S9ch`2X1~A#I*T!bOUc6%~he%eOX{ zANXzH`+&EA$ALd=p1w5VE>`o&M$!P#{I8=j{<)S{4nqhAOZgld=>cc zF(KXqd<_T_;+H^n@z+51;{lNU`#tarz&`;$0Q@(Q{hxu;jE@6(oEkg<+`;`>;0Ev? zz_Y+-;1tL8A`nC3`#^s0B_Lc9KLvgi_$qJ(_#5EM;O-cl{2=as0;kyDyFj=g?gO6y z?g9z;2JjQWe*&KdJ_6_1-Z^048F&}>1K=g#6CjuUkU-|Sk3Y8Ofu99_4>$|F3;Y@I z&p=-PMFhco-2#Rz_Eg+DAUj=`D7fR6${1bhGj*oM}TF)_D;wb>W@#)`_Lk_iM1tv#^XSU?^Zc~A zSrg0BtDbcuy5eHxNSc`1@&#*bHlnt2Sy4X_%YD^N$d*nlTjQPXz=jj&bW9^#(xxr( zVp*uoG9};F1?6eki?sPVt*1&Bii$GNd3{)*E$b56(!NiUVr!(=){w=x(_X;^lFsXH zip!2I{nQ>}#SiN_>ZGE}hI2ybxgStcE1uaf* z+uEl}v_S$Bhna`em4S3nCqd=^ppK=@I?bdhF?B?-+SEqHppnIjpHp3%Wy-`LO>c(D zkmhkuThc&+w#gFIIbyytqz&Bg1EdKCnZw$FKr6g$HUToymBG+N^{nXu)W{6veijnw zN*0Os$BU4m*vVeliLtYJxLCTh^xRx+Gf1PB%rtRiA>Bqf*nV{mWT+0>;K8QsfvbAcD= z%4QUb3uhr`^Rv)VPXU^zJV<_&BgyN|4pi4i7vt!9z3*D|e-o=R=L!ZLAS z^J~}I=c6;zc}|*QQ@LoxfKJqo7MzK#YN)yTOuaY-7ox>8v~aq$02dbE!Ky5< z7#m5szPAV?rdNXFsI6qyqSd9f3)hw|tk73iSD#5W2Y+_vxu~vO;f-~xP|ZN$({rZ| z-)>Qn+}QZ$Ox-?cY@Lji(b%uKtG0(-8G1$NCpH6F-K4s6WY$uGc)O?;$Uh#BajaZxOtMW^5?GF2Um33;_s$b(m~ep+oCi^d3}gT^TKNNlMX+Ckrj zMpeRyjT1S>J~1-b$B>78la%7RiWMA$ud{UU01hMefue+BL}bU+PFHLAmNN*Iqs49q69J$8Ag-7`{8fi^D3ZWh&L@i+*xd@nA@T8Kui&fhx z+^u#IzB;&tSs=068FJuL3enLH_Oy&q7h@EdF%^==D5TZSEDftYC&!~OWIMRT8bivf z`$HS!3!`4Q+L@y@N!Lf{1|VvZcA0V12M=T%$lt?ltpkb7Q=thBt=hq5a7zcDT-G!- zxE=QSn;Y83dX!Z6;?U6cf3UQ=atX3g`?q0cVsxlwS6mA$z~T|Y*6rA7;>T#n=yO!-U26gz%Wwn@$_w&ZuS`O18#ksP*wN7+5mq>KtM=Y(0;WGM+uwOsAgXyk%8Lk zPF50=2VJ7l`5>16wm;j4dkfpZsI0ornnq#hVMS2dQDeG<=C=`=Ux`M6uNWqZHD9L^ zwS?Z%0;y?$wviTQvSLwbg2KSqkg%PyuEtj#zKQumxY|bDD^Reo3!NSJQ9U92WtAqZ zJck{et6^e?Z{7=`Bi1|}W?u72YYX_zDNAN#SwW&i*H literal 0 HcmV?d00001 diff --git a/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-sk_SK.po b/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-sk_SK.po new file mode 100644 index 00000000..fb618a52 --- /dev/null +++ b/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-sk_SK.po @@ -0,0 +1,189 @@ +# Copyright (C) 2012 Category Order and Taxonomy Terms Order +# This file is distributed under the same license as the Category Order and Taxonomy Terms Order package. +msgid "" +msgstr "" +"Project-Id-Version: Category Order and Taxonomy Terms Order 1.2.7\n" +"Report-Msgid-Bugs-To: http://wordpress.org/tag/taxonomy-terms-order\n" +"POT-Creation-Date: 2012-03-04 23:32:48+00:00\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"PO-Revision-Date: 2014-04-28 15:18+0100\n" +"Last-Translator: \n" +"Language-Team: LANGUAGE \n" +"X-Generator: Poedit 1.6.4\n" +"Language: sk_SK\n" + +#: include/interface.php:19 +msgid "Taxonomy Order" +msgstr "Poradie taxonómie" + +#: include/interface.php:52 include/options.php:57 +msgid "" +"Did you found useful this plug-in? Please support our work with a donation " +"or write an article about this plugin in your blog with a link to our site" +msgstr "" +"Urobil ste našli užitočné tento plug-in? Prosím podporu našej práce s " +"darovaním alebo napísať článok o tejto plugin do svojho blogu s odkazom na " +"našu stránku" + +#: include/interface.php:53 include/options.php:58 +msgid "" +"Did you know there is available a more advanced version of this plug-in?" +msgstr "Vedeli ste, že nie je k dispozícii pokročilejšiu verziu tohto plug-in?" + +#: include/interface.php:53 include/options.php:58 +msgid "Read more" +msgstr "Prečítajte si viac" + +#: include/interface.php:54 include/options.php:59 +msgid "Check our" +msgstr "Skontrolujte, či naše" + +#: include/interface.php:54 include/options.php:59 +msgid "plugin which allow to custom sort all posts, pages, custom post types" +msgstr "" +"plugin, ktorý umožní vlastné zoradenie všetkých príspevkov, stránok, vlastné " +"post typy" + +#: include/interface.php:60 +msgid "" +"This plugin can't work without javascript, because it's use drag and drop " +"and AJAX." +msgstr "" +"Tento plugin nemôže fungovať bez JavaScriptu, pretože je použitie drag and " +"drop a AJAX." + +#: include/interface.php:96 +msgid "Taxonomies" +msgstr "Taxonómie" + +#: include/interface.php:100 +msgid "Taxonomy Title" +msgstr "Názov taxonómie" + +#: include/interface.php:100 +msgid "Total Posts" +msgstr "Celkom príspevkov" + +#: include/interface.php:150 +msgid "Update" +msgstr "Aktualizácia" + +#: include/interface.php:199 +msgid "Items Order Updates" +msgstr "Aktualizácia poradia položiek" + +#: include/options.php:16 +msgid "Settings Saved" +msgstr "Nastavenia uložené" + +#: include/options.php:24 +msgid "General Settings" +msgstr "Všeobecné nastavenia" + +#: include/options.php:64 +msgid "General" +msgstr "Všeobecné" + +#: include/options.php:69 +msgid "Minimum Level to use this plugin" +msgstr "Minimálna úroveň používať tento plugin" + +#: include/options.php:72 +msgid "Subscriber" +msgstr "Účastníka" + +#: include/options.php:73 +msgid "Contributor" +msgstr "Prispievateľ" + +#: include/options.php:74 +msgid "Author" +msgstr "Autor" + +#: include/options.php:75 +msgid "Editor" +msgstr "Editor" + +#: include/options.php:76 +msgid "Administrator" +msgstr "Správca" + +#: include/options.php:83 +msgid "Auto Sort" +msgstr "Automatické zoradenie" + +#: include/options.php:86 +msgid "OFF" +msgstr "OFF" + +#: include/options.php:87 +msgid "ON" +msgstr "ĎALEJ" + +#: include/options.php:88 +msgid "global setting" +msgstr "globálne nastavenie" + +#: include/options.php:93 +msgid "Admin Sort" +msgstr "Admin zoradenie" + +#: include/options.php:97 +msgid "This will change the order of terms within the admin interface" +msgstr "To zmení poradie výrazov v rámci administrátorského rozhrania" + +#: include/options.php:105 +msgid "Autosort OFF" +msgstr "Ak chcete tieto funkcie vypnúť" + +#: include/options.php:106 +msgid "" +"No query will be changed, the terms will appear in the original order. To " +"retrieve the terms in the required order you must use the term_order on the " +"orderby parameter" +msgstr "" +"Žiadny dotaz sa zmení, výrazy sa zobrazia v pôvodnom poradí. Na Vyber s " +"podmienkami požadovanými objednajte si musíte použiť term_order na orderby " +"parameter" + +#: include/options.php:114 +msgid "See more info on the get_terms usage" +msgstr "Pozri viac info na get_terms využitie" + +#: include/options.php:114 +msgid "here" +msgstr "tu" + +#: include/options.php:116 +msgid "Autosort ON" +msgstr "Ak chcete tieto funkcie na" + +#: include/options.php:117 +msgid "" +"The queries will be updated, all terms will appear in the order you manually " +"defined. This is recommended if you don't want to change any theme code to " +"apply the terms order" +msgstr "" +"Otázky budú aktualizované, všetky výrazy sa zobrazia v poradí ste manuálne " +"definované. Toto sa odporúča Ak nechcete meniť tému kód k platia podmienky " +"objednávky" + +#: include/options.php:127 +msgid "Save Settings" +msgstr "Uložiť nastavenia" + +#. Plugin Name of the plugin/theme +#. Description of the plugin/theme +msgid "Category Order and Taxonomy Terms Order" +msgstr "Poradí kategórií a taxonómie podmienky objednávky" + +#. Plugin URI of the plugin/theme +#. Author URI of the plugin/theme +msgid "http://www.nsp-code.com" +msgstr "http://www.NSP-code.com" + +#. Author of the plugin/theme +msgid "Nsp-Code" +msgstr "NSP-kód" diff --git a/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-uk_UA.mo b/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-uk_UA.mo new file mode 100644 index 0000000000000000000000000000000000000000..2754e12ef4819de6da76f315c4e980de3516aa36 GIT binary patch literal 4656 zcmai$-)|gO6~`~Ml-5vwgz}@5AD6Z$RLQP?B&E>;Nu4yIsp8ngo2Uq(XuNy9o@RGu zJ3s7NJdngK4U$!-D7ZkHLO>!~0q}9~A@C{i zli)7!6X3JO^CQLm2~ZqNfX{>f0p;G^I0k+W^gs=!;1zHYLXD+Rs_{)zSX!ErE#%wF)XpzwbHQo?T=DE1x& zp`gA69t2C^O>z{2U**0ZGG7KqK=C^TJ_g3%XTb$fcwPn{1^*0+-M@j7>wkbg_YdP- z@-PE#1J8j^ffvEu;QQbS@W0@bocjSue~|lWj0?Y?f{%c&f^zQH;6Cs#;12LUoQmIm z{>Z+);C65v{08_Fu!`MF;3e+=^=YLh!Sj%M0{k~9ydEQ{Z-Qk|@>B)?4*m$_xchL_ zagv)aa)~}zc76d@Psth7)EBrUZ}Rzi4(js-5~}kpamq(?iAF^yU*eLFaH5nhHpx3> zarywtA+lKZc5Nsb@ql20LVS4TBmZ~1{952Gai>c>gsC1Iq7(_|`#uvku$FlL_~ zJ#Hq+hP|BdM1oc=@~zn(w?q|ftUDUphKQVeqyv2XfI0qT9dC6VVd;p5d;76 z7wL&+*w`@9^n+7637zQ}3td*Hf^de@CNdgE-n8d8y$La^TOrT9`m`6+OkGc#D0UPk zd%lFbI#~B5%I}-NL|$_P^|(nAKWN12aAI1q9*ycI(#P9%FEOzi@dLk=w)7D*ZOBC^ zS?QVe19ddiFQ+D&g?_WCCycI5c|pU}cM4UVmuNlmh-+vE>s9ZSFbG>d87scd z=85dxR{f-DRF&8zU+nB=EOogiV;&j&KN*v{h&)?fkg|1F*Uh9Km^#@Ljq*P-wXoGP zL7iOrlWsGL+@9zeFF<)=Q5-}$D`{#`t*}o1LQQorD5=W{xNO3<&_0EzdCt&=*hR`O zAwtPOJK0I)Yo2JsPqxRdF!ji5;Ha+aQP_50hF=(dv7FmavxZ&4J`_o2Ts)iLkl_c#-e?OC>-i}Nhm&2&hpLlXP9nF?p9!jnXePg55 z(t*gh!BTn-_Z2-fFgR2i*i{VJkTc-&IC!R zN=OwF{7TZ_ZhC(39Z^F>*1mVVdZ@Igw=eR7c+y0rg8}MbGF0@Q2|s~G>6n@JWw!KK z>@E#FT^btFgS#q&&+Hf&g253l#+evt%2clC5o+KuJ${%n9QAjL+p@cTw$Wmam67dU z4hD^sQk1I3Yju-E6HbSITekFfw^Vd`>g4g^z86dRG;@B&Lc@g9gXM3RpYBukyj`)k zvPFAa+sk%6JDr`)=IpY)nw_{rc7~vGw9KB(U+-o?UMKPn()JhjSN1pd zV($fGe{0`S{8`27D#jMYxn0%vHcrkd`-kjxzMSE=7rJ)VZn=jY*`w^+Qe7^oV%IAL0X`F7%pw%cuMPS=H@sd&!{SUbJ0mZb;#Dn!149y%qzj}0d9-Ob%UqK-C!&02X7lQULsT)L\n" +"Language-Team: http://getvoip.com/\n" +"Language: uk_UA\n" +"X-Generator: Poedit 1.6.5\n" + +#: include/interface.php:19 +msgid "Taxonomy Order" +msgstr "Систематика Замовити" + +#: include/interface.php:52 include/options.php:57 +msgid "" +"Did you found useful this plug-in? Please support our work with a donation " +"or write an article about this plugin in your blog with a link to our site" +msgstr "" +"Чи знаєте ви знайдете корисну цей плагін? Ласка, підтримайте нашу роботу з " +"пожертвуванням або написати статтю про це плагіні у вашому блозі з " +"посиланням на нашому сайті" + +#: include/interface.php:53 include/options.php:58 +msgid "" +"Did you know there is available a more advanced version of this plug-in?" +msgstr "Чи знаєте ви, там є більше просунута версія цього плагіна?" + +#: include/interface.php:53 include/options.php:58 +msgid "Read more" +msgstr "Детальніше" + +#: include/interface.php:54 include/options.php:59 +msgid "Check our" +msgstr "Перевірте наш" + +#: include/interface.php:54 include/options.php:59 +msgid "plugin which allow to custom sort all posts, pages, custom post types" +msgstr "" +"плагін, який дозволить у звичай сортувати всі повідомлення, сторінки, " +"призначені для користувача типи повідомлення" + +#: include/interface.php:60 +msgid "" +"This plugin can't work without javascript, because it's use drag and drop " +"and AJAX." +msgstr "" +"Цей плагін не може працювати без JavaScript, тому що це використовувати " +"перетягування і AJAX." + +#: include/interface.php:96 +msgid "Taxonomies" +msgstr "Таксономії" + +#: include/interface.php:100 +msgid "Taxonomy Title" +msgstr "Систематика Назва" + +#: include/interface.php:100 +msgid "Total Posts" +msgstr "Всього повідомлень" + +#: include/interface.php:150 +msgid "Update" +msgstr "Оновлення" + +#: include/interface.php:199 +msgid "Items Order Updates" +msgstr "Продукти Оновлення Замовити" + +#: include/options.php:16 +msgid "Settings Saved" +msgstr "Налаштування Збережені" + +#: include/options.php:24 +msgid "General Settings" +msgstr "Загальні налаштування" + +#: include/options.php:64 +msgid "General" +msgstr "Загальний" + +#: include/options.php:69 +msgid "Minimum Level to use this plugin" +msgstr "Мінімальний рівень використовувати цей плагін" + +#: include/options.php:72 +msgid "Subscriber" +msgstr "Абонент" + +#: include/options.php:73 +msgid "Contributor" +msgstr "Учасник" + +#: include/options.php:74 +msgid "Author" +msgstr "Автор" + +#: include/options.php:75 +msgid "Editor" +msgstr "Редактор" + +#: include/options.php:76 +msgid "Administrator" +msgstr "Адміністратор" + +#: include/options.php:83 +msgid "Auto Sort" +msgstr "Авто Сортувати" + +#: include/options.php:86 +msgid "OFF" +msgstr "ВИКЛ" + +#: include/options.php:87 +msgid "ON" +msgstr "НА" + +#: include/options.php:88 +msgid "global setting" +msgstr "глобальний параметр" + +#: include/options.php:93 +msgid "Admin Sort" +msgstr "Адмін Сортувати" + +#: include/options.php:97 +msgid "This will change the order of terms within the admin interface" +msgstr "Це змінить порядок термінів в інтерфейс адміністратора" + +#: include/options.php:105 +msgid "Autosort OFF" +msgstr "AutoSort ВИКЛ" + +#: include/options.php:106 +msgid "" +"No query will be changed, the terms will appear in the original order. To " +"retrieve the terms in the required order you must use the term_order on the " +"orderby parameter" +msgstr "" +"Ні запит не буде змінений, умови з'являться в первісному порядку. Для " +"отримання умови в обов'язковому порядку необхідно використовувати term_order " +"на параметра OrderBy" + +#: include/options.php:114 +msgid "See more info on the get_terms usage" +msgstr "Див докладніше на споживання get_terms" + +#: include/options.php:114 +msgid "here" +msgstr "тут" + +#: include/options.php:116 +msgid "Autosort ON" +msgstr "Autosort ПО" + +#: include/options.php:117 +msgid "" +"The queries will be updated, all terms will appear in the order you manually " +"defined. This is recommended if you don't want to change any theme code to " +"apply the terms order" +msgstr "" +"Запити будуть оновлені, всі умови будуть з'являтися в тому порядку вручну " +"визначені. Це рекомендується, якщо ви не хочете, щоб змінити будь-яку тему " +"код для застосовувати порядок терміни" + +#: include/options.php:127 +msgid "Save Settings" +msgstr "Зберегти налаштування" diff --git a/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-zh_TW.mo b/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-zh_TW.mo new file mode 100644 index 0000000000000000000000000000000000000000..fe2fa7dc1b2fe128d9b431dd5fc3cf003491f5e3 GIT binary patch literal 3828 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 literal 0 HcmV?d00001 diff --git a/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-zh_TW.po b/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-zh_TW.po new file mode 100644 index 00000000..accb136d --- /dev/null +++ b/wp/wp-content/plugins/taxonomy-terms-order/lang/tto-zh_TW.po @@ -0,0 +1,180 @@ +# Copyright (C) 2012 Category Order and Taxonomy Terms Order +# This file is distributed under the same license as the Category Order and Taxonomy Terms Order package. +msgid "" +msgstr "" +"Project-Id-Version: Category Order and Taxonomy Terms Order 1.2.7\n" +"Report-Msgid-Bugs-To: http://wordpress.org/tag/taxonomy-terms-order\n" +"POT-Creation-Date: 2014-01-27 19:04+0800\n" +"PO-Revision-Date: 2014-01-27 19:34+0800\n" +"Last-Translator: 張香腸 \n" +"Language-Team: 香腸炒魷魚 \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 1.5.7\n" +"X-Poedit-KeywordsList: __;_e\n" +"X-Poedit-Basepath: .\n" +"X-Poedit-SearchPath-0: ..\n" + +#: ../taxonomy-terms-order.php:88 +msgid "Taxonomy Terms Order" +msgstr "分類標籤自訂排序" + +#: ../taxonomy-terms-order.php:114 ../taxonomy-terms-order.php:116 +#: ../include/interface.php:19 +msgid "Taxonomy Order" +msgstr "分類排序" + +#: ../include/interface.php:52 ../include/options.php:57 +msgid "" +"Did you find this plugin useful? Please support our work with a donation or " +"write an article about this plugin in your blog with a link to our site" +msgstr "" +"你覺得這外掛有幫助你嗎?請讚助我們落寫篇文章介紹這個外掛並連結我們網站,支持" +"我們的開發。" + +#: ../include/interface.php:53 ../include/options.php:58 +msgid "" +"Did you know there is available a more advanced version of this plug-in?" +msgstr "你知道這個外掛有一個進階的版本嗎?" + +#: ../include/interface.php:53 ../include/options.php:58 +msgid "Read more" +msgstr "了解詳情" + +#: ../include/interface.php:54 ../include/options.php:59 +msgid "Check our" +msgstr "查看我們的" + +#: ../include/interface.php:54 ../include/options.php:59 +msgid "plugin which allow to custom sort all posts, pages, custom post types" +msgstr "" +",這外掛允許您自訂所有的文章、頁面、自訂文章型態的排序。

    外掛正" +"體中文化:
    香腸炒魷魚阿腸網頁設計工作室。" + +#: ../include/interface.php:60 +msgid "" +"This plugin can't work without javascript, because it's use drag and drop " +"and AJAX." +msgstr "" +"這個外掛無法運行在不支援JavaScript的環境下,因為他的拖曳排序功能是使用ajax。" + +#: ../include/interface.php:96 +msgid "Taxonomies" +msgstr "自訂分類" + +#: ../include/interface.php:100 +msgid "Taxonomy Title" +msgstr "自訂分類標題" + +#: ../include/interface.php:100 +msgid "Total Posts" +msgstr "總文章" + +#: ../include/interface.php:150 +msgid "Update" +msgstr "更新" + +#: ../include/interface.php:199 +msgid "Items Order Updates" +msgstr "已更新項目順序。" + +#: ../include/options.php:16 +msgid "Settings Saved" +msgstr "儲存變更" + +#: ../include/options.php:24 +msgid "General Settings" +msgstr "一般設定" + +#: ../include/options.php:64 +msgid "General" +msgstr "一般" + +#: ../include/options.php:69 +msgid "Minimum Level to use this plugin" +msgstr "最低可用此外掛的角色" + +#: ../include/options.php:72 +msgid "Subscriber" +msgstr "訂閱者" + +#: ../include/options.php:73 +msgid "Contributor" +msgstr "貢獻者" + +#: ../include/options.php:74 +msgid "Author" +msgstr "作者" + +#: ../include/options.php:75 +msgid "Editor" +msgstr "編輯" + +#: ../include/options.php:76 +msgid "Administrator" +msgstr "管理者" + +#: ../include/options.php:83 +msgid "Auto Sort" +msgstr "自動排序" + +#: ../include/options.php:86 +msgid "OFF" +msgstr "關閉" + +#: ../include/options.php:87 +msgid "ON" +msgstr "開啟" + +#: ../include/options.php:88 +msgid "global setting" +msgstr "全站設定" + +#: ../include/options.php:93 +msgid "Admin Sort" +msgstr "管理排序" + +#: ../include/options.php:97 +msgid "This will change the order of terms within the admin interface" +msgstr "這將改變分類、標籤管理介面中的分類順序" + +#: ../include/options.php:105 +msgid "Autosort OFF" +msgstr "停用自動排序" + +#: ../include/options.php:106 +msgid "" +"No query will be changed, the terms will appear in the original order. To " +"retrieve the terms in the required order you must use the term_order on the " +"orderby parameter" +msgstr "" +"沒有變更任何查詢,排序將保持系統預設。自訂分類、標籤的輸出若要採用自訂順序," +"必須在 orderby 上使用 term_order 參數" + +#: ../include/options.php:114 +msgid "See more info on the get_terms usage" +msgstr "查看更多關於 get_terms 的使用方法" + +#: ../include/options.php:114 +msgid "here" +msgstr "這裡" + +#: ../include/options.php:116 +msgid "Autosort ON" +msgstr "啟用自動排序" + +#: ../include/options.php:117 +msgid "" +"The queries will be updated, all terms will appear in the order you manually " +"defined. This is recommended if you don't want to change any theme code to " +"apply the terms order" +msgstr "" +"查詢將被更新,所有的項目將使用您手動定義的順序。這是建議:如果你不想要改變任" +"何佈景主題代碼就有自訂順序。" + +#: ../include/options.php:127 +msgid "Save Settings" +msgstr "儲存變更" diff --git a/wp/wp-content/plugins/taxonomy-terms-order/lang/tto.mo b/wp/wp-content/plugins/taxonomy-terms-order/lang/tto.mo new file mode 100644 index 0000000000000000000000000000000000000000..57626d3aec0d6197e60f42928170e0a72cd20e69 GIT binary patch literal 630 zcmb7>!EV$r5QZ1ZDM!v6eBcHXl1Qs=y#=9eTU4>zu1Y{0B1I-15~Hkb*|Xc`L3ll$ zrIRjVZgFJJtga6MzaV!dV^vEH)Anz2rwPbMdPj-G$D4(=B=1Xmiq zVTi_ADHe*bbzu-UL1PfgYEi0tXWeEHC5BDhUnIBaT_9M+)@V4}wh>AvMY6srVG&Rf zhru~#Nl|3^6tZI|a#7^6IC+y5S;j`V#hn?OKIvPkNKgi4W3R{sDXybmIE~^Idu9*L zng(l)z36Z{BEA1wUc&6)8^M2KfD6mrjcuiv{V#vS&~S4!`cZBW\n" +"Language-Team: nsp-code \n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: _;gettext;__;_e\n" +"X-Poedit-Basepath: D:\\htdocs\\develop\\advanced_post_types_order\\wp-content" +"\\plugins\\taxonomy-terms-order\\\n" +"X-Generator: Poedit 1.5.5\n" +"X-Poedit-SearchPath-0: .\n" + +#: taxonomy-terms-order.php:90 +msgid "Taxonomy Terms Order" +msgstr "" + +#: taxonomy-terms-order.php:125 taxonomy-terms-order.php:127 +#: taxonomy-terms-order.php:129 include/interface.php:38 +msgid "Taxonomy Order" +msgstr "" + +#: include/functions.php:62 +msgid "" +"Did you find this plugin useful? Please support our work with a donation or " +"write an article about this plugin in your blog with a link to our site" +msgstr "" + +#: include/functions.php:63 +msgid "Did you know there is available an advanced version of this plug-in?" +msgstr "" + +#: include/functions.php:63 +msgid "Read more" +msgstr "" + +#: include/functions.php:64 include/functions.php:65 +msgid "Check our" +msgstr "" + +#: include/functions.php:64 +msgid "" +"plugin which allow to custom sort categories and custom taxonomies terms per " +"post basis" +msgstr "" + +#: include/functions.php:65 +msgid "plugin which allow to custom sort all posts, pages, custom post types" +msgstr "" + +#: include/interface.php:46 +msgid "" +"This plugin can't work without javascript, because it's use drag and drop " +"and AJAX." +msgstr "" + +#: include/interface.php:100 +msgid "Taxonomies" +msgstr "" + +#: include/interface.php:104 +msgid "Taxonomy Title" +msgstr "" + +#: include/interface.php:104 +msgid "Total Posts" +msgstr "" + +#: include/interface.php:154 +msgid "Update" +msgstr "" + +#: include/interface.php:203 +msgid "Items Order Updated" +msgstr "" + +#: include/options.php:16 +msgid "Settings Saved" +msgstr "" + +#: include/options.php:24 +msgid "General Settings" +msgstr "" + +#: include/options.php:30 +msgid "General" +msgstr "" + +#: include/options.php:35 +msgid "Minimum Level to use this plugin" +msgstr "" + +#: include/options.php:38 +msgid "Subscriber" +msgstr "" + +#: include/options.php:39 +msgid "Contributor" +msgstr "" + +#: include/options.php:40 +msgid "Author" +msgstr "" + +#: include/options.php:41 +msgid "Editor" +msgstr "" + +#: include/options.php:42 +msgid "Administrator" +msgstr "" + +#: include/options.php:49 +msgid "Auto Sort" +msgstr "" + +#: include/options.php:52 +msgid "OFF" +msgstr "" + +#: include/options.php:53 +msgid "ON" +msgstr "" + +#: include/options.php:54 +msgid "global setting" +msgstr "" + +#: include/options.php:54 include/options.php:62 +msgid "Additional description and details at " +msgstr "" + +#: include/options.php:54 include/options.php:62 +msgid "Auto Sort Description" +msgstr "" + +#: include/options.php:59 +msgid "Admin Sort" +msgstr "" + +#: include/options.php:62 +msgid "This will change the order of terms within the admin interface" +msgstr "" + +#: include/options.php:73 +msgid "Save Settings" +msgstr "" diff --git a/wp/wp-content/plugins/taxonomy-terms-order/readme.txt b/wp/wp-content/plugins/taxonomy-terms-order/readme.txt new file mode 100644 index 00000000..4513db21 --- /dev/null +++ b/wp/wp-content/plugins/taxonomy-terms-order/readme.txt @@ -0,0 +1,105 @@ +=== Category Order and Taxonomy Terms Order === +Contributors: Nsp Code +Donate link: http://www.nsp-code.com/donate.php +Tags: category order,terms order, taxonomy order, admin order +Requires at least: 2.8 +Tested up to: 4.3 + +Order Categories and all custom taxonomies terms (hierarchically) and child terms using a Drag and Drop Sortable javascript capability. No Theme update is required. + +== Description == + +Order Categories and all custom taxonomies terms (hierarchically) using a Drag and Drop Sortable javascript capability. No Theme update is required the code will change the query on the fly. +If multiple taxonomies are created for a custom post type, a menu will allow to chose the one need sorted. If child categories (terms) are defined, tose can be sorder too using the same interface +
    Also you can have the admin terms interface sorted per your new sort. +
    This plugin is developed by Nsp-Code + +== Installation == + +1. Upload `taxonomy-terms-order` folder to your `/wp-content/plugins/` directory. +2. Activate the plugin from Admin > Plugins menu. +3. Once activated you should check with Settings > Taxonomy Terms Order +4. Use Taxonomy Order link which appear into each post type section to make your sort. + +== Screenshots == + +1. Category Order Interface. +2. Multiple Taxonomies Interface. + +== Frequently Asked Questions == + +Feel free to contact me at electronice_delphi@yahoo.com + += I have no PHP knowledge at all, i will still be able to use this plugin? = + +Yes, this is the right tool for you. The plugin come with a unique feature to update the queries on the fly and return the terms in the required ored without changing any line of code. Or as alternative you can do that manually. + += What taxonomies will allow me to sort? = + +You can sort ALL taxonomies, including the default Categories. + += Is there any way i can get my admin interface to use the custom terms order? = + +Absolutelly, the plugin can do that. In fact you can configure so only the admin will update and the front side template will display the terms as before. + += There is a feature that i want it implemented, can you do something about it? = + +All ideas are welcome and i put them on my list to be implemented into the new versions. Anyway this may take time, but if you are in a rush, please consider a small donation and we can arrange something. + +== Change Log == + += 1.4.6.1 = + - Translation textdomain fix - thanks to Pedro Mendonça + - Portuguese localization update - Pedro Mendonça + += 1.4.4 = + - User role switch from deprecated user_level to capabilities + - Taxonomy sort for media + - Admin Options update + += 1.4.2 = + - Iranian Language (eydaaad@gmail.com) + - Admin css updates. + += 1.4.1 = + - Polish Language(Pozdrawiam - www.difreo.pl/ ; Mateusz - www.czar-net.com ) + += 1.4.0 = + - Hungarian Language(Adam Laki - http://codeguide.hu/) + - Ukrainian translation (Michael Yunat - http://getvoip.com) + - Czech translation + += 1.3.7 = + - Brazilian Portuguese Language (Rafael Forcadell - www.rafaelforcadell.com.br) + += 1.3.6 = + - Traditional Chineze Language (Danny - http://sofree.cc) + - Minor admin styling + += 1.3.4 = + - Menu walker update + - Translations load fix + - Japanese language + += 1.3.0 = + - Headers already sent bug fix + - Slovak Language (Branco Slovak http://webhostinggeeks.com/user-reviews/) + += 1.2.9 = + - Small updates + - German and French languages. + += 1.2.7 = + - Localisation Implement, Dutch and Romanian. + - Many thanks to Anja Fokker http://www.werkgroepen.net/ + + +== Upgrade Notice == + +Make sure you get the latest version + + +== Localization == + +Available in English, Dutch, French, Deutch, Slovak, Japanese, Traditional Chineze, Brazilian Portuguese, Hungarian, Ukrainian, Czech and Romanian +Whant to contribute with a translation to your language? Please use the attached to.pot file diff --git a/wp/wp-content/plugins/taxonomy-terms-order/screenshot-1.gif b/wp/wp-content/plugins/taxonomy-terms-order/screenshot-1.gif new file mode 100644 index 0000000000000000000000000000000000000000..3f9b04d06a05609fb372a22ba5fcc5fb15838cab GIT binary patch literal 15126 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 literal 0 HcmV?d00001 diff --git a/wp/wp-content/plugins/taxonomy-terms-order/screenshot-2.gif b/wp/wp-content/plugins/taxonomy-terms-order/screenshot-2.gif new file mode 100644 index 0000000000000000000000000000000000000000..5398ae2066a0bce569786780f8a79e45781e8104 GIT binary patch literal 31467 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 + + if ($result == 0) + { + $query = "ALTER TABLE $wpdb->terms ADD `term_order` INT( 4 ) NULL DEFAULT '0'"; + $result = $wpdb->query($query); + } + + $options = get_option('tto_options'); + + $defaults = array ( + 'autosort' => '1', + 'adminsort' => '1', + 'capability' => 'install_plugins' + ); + + // Parse incoming $args into an array and merge it with $defaults + $options = wp_parse_args( $options, $defaults ); + + update_option('tto_options', $options); + } + + function TO_deactivated() + { + + } + + include_once(TOPATH . '/include/functions.php'); + + add_action( 'plugins_loaded', 'to_load_textdomain'); + function to_load_textdomain() + { + load_plugin_textdomain('tto', FALSE, dirname( plugin_basename( __FILE__ ) ) . '/lang'); + } + + add_action('admin_print_scripts', 'TO_admin_scripts'); + function TO_admin_scripts() + { + wp_enqueue_script('jquery'); + + wp_enqueue_script('jquery-ui-sortable'); + + $myJsFile = TOURL . '/js/to-javascript.js'; + wp_register_script('to-javascript.js', $myJsFile); + wp_enqueue_script( 'to-javascript.js'); + + } + + add_action('admin_print_styles', 'TO_admin_styles'); + function TO_admin_styles() + { + $myCssFile = TOURL . '/css/to.css'; + wp_register_style('to.css', $myCssFile); + wp_enqueue_style( 'to.css'); + } + + add_action('admin_menu', 'TOPluginMenu', 99); + + function TOPluginMenu() + { + include (TOPATH . '/include/interface.php'); + include (TOPATH . '/include/terms_walker.php'); + + include (TOPATH . '/include/options.php'); + add_options_page('Taxonomy Terms Order', '' . __('Taxonomy Terms Order', 'tto'), 'manage_options', 'to-options', 'to_plugin_options'); + + $options = get_option('tto_options'); + + if(isset($options['capability']) && !empty($options['capability'])) + $capability = $options['capability']; + else if (is_numeric($options['level'])) + { + //maintain the old user level compatibility + $capability = tto_userdata_get_user_level(); + } + else + { + $capability = 'install_plugins'; + } + + //put a menu within all custom types if apply + $post_types = get_post_types(); + foreach( $post_types as $post_type) + { + + //check if there are any taxonomy for this post type + $post_type_taxonomies = get_object_taxonomies($post_type); + + foreach ($post_type_taxonomies as $key => $taxonomy_name) + { + $taxonomy_info = get_taxonomy($taxonomy_name); + if ($taxonomy_info->hierarchical !== TRUE) + unset($post_type_taxonomies[$key]); + } + + if (count($post_type_taxonomies) == 0) + continue; + + if ($post_type == 'post') + add_submenu_page('edit.php', __('Taxonomy Order', 'tto'), __('Taxonomy Order', 'tto'), $capability, 'to-interface-'.$post_type, 'TOPluginInterface' ); + elseif ($post_type == 'attachment') + $hookID = add_submenu_page('upload.php', __('Taxonomy Order', 'tto'), __('Taxonomy Order', 'tto'), $capability, 'to-interface-'.$post_type, 'TOPluginInterface' ); + else + add_submenu_page('edit.php?post_type='.$post_type, __('Taxonomy Order', 'tto'), __('Taxonomy Order', 'tto'), $capability, 'to-interface-'.$post_type, 'TOPluginInterface' ); + } + } + + + add_action( 'wp_ajax_update-custom-type-order-hierarchical', array(&$this, 'saveAjaxOrderHierarchical') ); + + + function TO_applyorderfilter($orderby, $args) + { + $options = get_option('tto_options'); + + //if admin make sure use the admin setting + if (is_admin()) + { + if ($options['adminsort'] == "1") + return 't.term_order'; + + return $orderby; + } + + //if autosort, then force the menu_order + if ($options['autosort'] == 1) + { + return 't.term_order'; + } + + return $orderby; + } + + add_filter('get_terms_orderby', 'TO_applyorderfilter', 10, 2); + + add_filter('get_terms_orderby', 'TO_get_terms_orderby', 1, 2); + function TO_get_terms_orderby($orderby, $args) + { + if (isset($args['orderby']) && $args['orderby'] == "term_order" && $orderby != "term_order") + return "t.term_order"; + + return $orderby; + } + + add_action( 'wp_ajax_update-taxonomy-order', 'TOsaveAjaxOrder' ); + function TOsaveAjaxOrder() + { + global $wpdb; + $taxonomy = stripslashes($_POST['taxonomy']); + $data = stripslashes($_POST['order']); + $unserialised_data = unserialize($data); + + if (is_array($unserialised_data)) + foreach($unserialised_data as $key => $values ) + { + //$key_parent = str_replace("item_", "", $key); + $items = explode("&", $values); + unset($item); + foreach ($items as $item_key => $item_) + { + $items[$item_key] = trim(str_replace("item[]=", "",$item_)); + } + + if (is_array($items) && count($items) > 0) + foreach( $items as $item_key => $term_id ) + { + $wpdb->update( $wpdb->terms, array('term_order' => ($item_key + 1)), array('term_id' => $term_id) ); + } + } + + + die(); + } + + +?> \ No newline at end of file