From 20b19505c750b741db566fa1df85c23ca86fbf25 Mon Sep 17 00:00:00 2001 From: "thomas.fellinger" Date: Tue, 22 Sep 2020 14:24:35 +0200 Subject: [PATCH] initial files load --- sandbox/404.php | 18 + sandbox/LICENSE | 339 ++ sandbox/README.md | 17 + sandbox/archive.php | 248 ++ sandbox/comments.php | 45 + sandbox/css/default.css | 567 +++ sandbox/css/login.css | 11 + sandbox/css/normalize.css | 76 + sandbox/css/print.css | 45 + sandbox/css/style.css | 3096 +++++++++++++++++ sandbox/fonts/apax.css | 12 + sandbox/fonts/apax/apax_medium.woff | Bin 0 -> 21940 bytes sandbox/fonts/apax/apax_medium.woff2 | Bin 0 -> 16588 bytes .../fork-awesome/forkawesome-webfont.eot | Bin 0 -> 188946 bytes .../fork-awesome/forkawesome-webfont.svg | 2849 +++++++++++++++ .../fork-awesome/forkawesome-webfont.ttf | Bin 0 -> 188756 bytes .../fork-awesome/forkawesome-webfont.woff | Bin 0 -> 115148 bytes .../fork-awesome/forkawesome-webfont.woff2 | Bin 0 -> 91624 bytes sandbox/fonts/material.css | 28 + .../_materialicons-regular-webfont.woff2 | Bin 0 -> 1368 bytes .../materialicons-regular-webfont.woff | Bin 0 -> 1976 bytes .../materialicons-regular-webfont.woff2 | Bin 0 -> 82512 bytes sandbox/fonts/ubuntu.css | 40 + .../fonts/ubuntu/ubuntu-v14-latin-300.woff | Bin 0 -> 43900 bytes .../fonts/ubuntu/ubuntu-v14-latin-300.woff2 | Bin 0 -> 38108 bytes .../ubuntu/ubuntu-v14-latin-300italic.woff | Bin 0 -> 43092 bytes .../ubuntu/ubuntu-v14-latin-300italic.woff2 | Bin 0 -> 37548 bytes .../fonts/ubuntu/ubuntu-v14-latin-500.woff | Bin 0 -> 34688 bytes .../fonts/ubuntu/ubuntu-v14-latin-500.woff2 | Bin 0 -> 29864 bytes .../ubuntu/ubuntu-v14-latin-500italic.woff | Bin 0 -> 36836 bytes .../ubuntu/ubuntu-v14-latin-500italic.woff2 | Bin 0 -> 31748 bytes .../fonts/ubuntu/ubuntu-v14-latin-italic.woff | Bin 0 -> 41016 bytes .../ubuntu/ubuntu-v14-latin-italic.woff2 | Bin 0 -> 35832 bytes .../ubuntu/ubuntu-v14-latin-regular.woff | Bin 0 -> 39164 bytes .../ubuntu/ubuntu-v14-latin-regular.woff2 | Bin 0 -> 34260 bytes sandbox/footer.php | 13 + sandbox/functions.php | 924 +++++ sandbox/header.php | 76 + sandbox/img/chosen-sprite.png | Bin 0 -> 538 bytes sandbox/img/chosen-sprite@2x.png | Bin 0 -> 738 bytes sandbox/img/favicon-32x32.png | Bin 0 -> 1625 bytes sandbox/img/socos-logo-color.svg | 12 + sandbox/img/socos-logo-dark.svg | 8 + sandbox/index.php | 77 + sandbox/js/actions.js | 979 ++++++ sandbox/js/allcountries.js | 1330 +++++++ sandbox/js/jquery.plugins.js | 58 + sandbox/page-alternate.php | 117 + sandbox/page-faqs.php | 123 + sandbox/page-home.php | 197 ++ sandbox/page-sections.php | 359 ++ sandbox/page-team.php | 193 + sandbox/page-user.php | 224 ++ sandbox/page.php | 136 + sandbox/readme.html | 817 +++++ sandbox/screenshot.png | Bin 0 -> 14163 bytes sandbox/search.php | 129 + sandbox/searchform.php | 15 + sandbox/sidebar-content-after.php | 7 + sandbox/sidebar-content-before.php | 8 + sandbox/sidebar-content-footer.php | 8 + sandbox/sidebar-footer-bar.php | 7 + sandbox/sidebar-footer.php | 8 + sandbox/sidebar-header.php | 8 + sandbox/sidebar-highlight.php | 8 + sandbox/sidebar-menu.php | 20 + sandbox/single.php | 106 + sandbox/style.css | 14 + sandbox/translations/de_DE.mo | Bin 0 -> 9632 bytes sandbox/translations/de_DE.po | 464 +++ sandbox/translations/de_DE_informal.mo | Bin 0 -> 9569 bytes sandbox/translations/de_DE_informal.po | 464 +++ sandbox/translations/default.mo | Bin 0 -> 386 bytes sandbox/translations/default.po | 13 + sandbox/translations/he_IL.mo | Bin 0 -> 9872 bytes sandbox/translations/he_IL.po | 429 +++ sandbox/translations/it_IT.mo | Bin 0 -> 9294 bytes sandbox/translations/it_IT.po | 490 +++ sandbox/translations/ng.pot | 464 +++ sandbox/translations/nn_NO.mo | Bin 0 -> 9252 bytes sandbox/translations/nn_NO.po | 478 +++ sandbox/translations/translation-readme.txt | 7 + 82 files changed, 16181 insertions(+) create mode 100644 sandbox/404.php create mode 100644 sandbox/LICENSE create mode 100644 sandbox/README.md create mode 100644 sandbox/archive.php create mode 100644 sandbox/comments.php create mode 100644 sandbox/css/default.css create mode 100644 sandbox/css/login.css create mode 100644 sandbox/css/normalize.css create mode 100644 sandbox/css/print.css create mode 100644 sandbox/css/style.css create mode 100644 sandbox/fonts/apax.css create mode 100644 sandbox/fonts/apax/apax_medium.woff create mode 100644 sandbox/fonts/apax/apax_medium.woff2 create mode 100644 sandbox/fonts/fork-awesome/forkawesome-webfont.eot create mode 100644 sandbox/fonts/fork-awesome/forkawesome-webfont.svg create mode 100644 sandbox/fonts/fork-awesome/forkawesome-webfont.ttf create mode 100644 sandbox/fonts/fork-awesome/forkawesome-webfont.woff create mode 100644 sandbox/fonts/fork-awesome/forkawesome-webfont.woff2 create mode 100644 sandbox/fonts/material.css create mode 100644 sandbox/fonts/material/_materialicons-regular-webfont.woff2 create mode 100644 sandbox/fonts/material/materialicons-regular-webfont.woff create mode 100644 sandbox/fonts/material/materialicons-regular-webfont.woff2 create mode 100644 sandbox/fonts/ubuntu.css create mode 100644 sandbox/fonts/ubuntu/ubuntu-v14-latin-300.woff create mode 100644 sandbox/fonts/ubuntu/ubuntu-v14-latin-300.woff2 create mode 100644 sandbox/fonts/ubuntu/ubuntu-v14-latin-300italic.woff create mode 100644 sandbox/fonts/ubuntu/ubuntu-v14-latin-300italic.woff2 create mode 100644 sandbox/fonts/ubuntu/ubuntu-v14-latin-500.woff create mode 100644 sandbox/fonts/ubuntu/ubuntu-v14-latin-500.woff2 create mode 100644 sandbox/fonts/ubuntu/ubuntu-v14-latin-500italic.woff create mode 100644 sandbox/fonts/ubuntu/ubuntu-v14-latin-500italic.woff2 create mode 100644 sandbox/fonts/ubuntu/ubuntu-v14-latin-italic.woff create mode 100644 sandbox/fonts/ubuntu/ubuntu-v14-latin-italic.woff2 create mode 100644 sandbox/fonts/ubuntu/ubuntu-v14-latin-regular.woff create mode 100644 sandbox/fonts/ubuntu/ubuntu-v14-latin-regular.woff2 create mode 100644 sandbox/footer.php create mode 100644 sandbox/functions.php create mode 100644 sandbox/header.php create mode 100644 sandbox/img/chosen-sprite.png create mode 100644 sandbox/img/chosen-sprite@2x.png create mode 100644 sandbox/img/favicon-32x32.png create mode 100644 sandbox/img/socos-logo-color.svg create mode 100644 sandbox/img/socos-logo-dark.svg create mode 100644 sandbox/index.php create mode 100644 sandbox/js/actions.js create mode 100644 sandbox/js/allcountries.js create mode 100644 sandbox/js/jquery.plugins.js create mode 100644 sandbox/page-alternate.php create mode 100644 sandbox/page-faqs.php create mode 100644 sandbox/page-home.php create mode 100644 sandbox/page-sections.php create mode 100644 sandbox/page-team.php create mode 100644 sandbox/page-user.php create mode 100644 sandbox/page.php create mode 100644 sandbox/readme.html create mode 100644 sandbox/screenshot.png create mode 100644 sandbox/search.php create mode 100644 sandbox/searchform.php create mode 100644 sandbox/sidebar-content-after.php create mode 100644 sandbox/sidebar-content-before.php create mode 100644 sandbox/sidebar-content-footer.php create mode 100644 sandbox/sidebar-footer-bar.php create mode 100644 sandbox/sidebar-footer.php create mode 100644 sandbox/sidebar-header.php create mode 100644 sandbox/sidebar-highlight.php create mode 100644 sandbox/sidebar-menu.php create mode 100644 sandbox/single.php create mode 100644 sandbox/style.css create mode 100644 sandbox/translations/de_DE.mo create mode 100644 sandbox/translations/de_DE.po create mode 100644 sandbox/translations/de_DE_informal.mo create mode 100644 sandbox/translations/de_DE_informal.po create mode 100644 sandbox/translations/default.mo create mode 100644 sandbox/translations/default.po create mode 100644 sandbox/translations/he_IL.mo create mode 100644 sandbox/translations/he_IL.po create mode 100644 sandbox/translations/it_IT.mo create mode 100644 sandbox/translations/it_IT.po create mode 100644 sandbox/translations/ng.pot create mode 100644 sandbox/translations/nn_NO.mo create mode 100644 sandbox/translations/nn_NO.po create mode 100644 sandbox/translations/translation-readme.txt diff --git a/sandbox/404.php b/sandbox/404.php new file mode 100644 index 0000000..79db405 --- /dev/null +++ b/sandbox/404.php @@ -0,0 +1,18 @@ + + +
+
+

+
+

+
+ +
+
+ + diff --git a/sandbox/LICENSE b/sandbox/LICENSE new file mode 100644 index 0000000..d7f1051 --- /dev/null +++ b/sandbox/LICENSE @@ -0,0 +1,339 @@ +GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + {description} + Copyright (C) {year} {fullname} + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + {signature of Ty Coon}, 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. diff --git a/sandbox/README.md b/sandbox/README.md new file mode 100644 index 0000000..cbe9899 --- /dev/null +++ b/sandbox/README.md @@ -0,0 +1,17 @@ +sandbox-wordpress-theme +======================= + +Simple, ready to use Wordpress Theme + +Goals: + +- Based on HTML5 Boilerplate +- Based on the good old Wordpress Sandbox theme +- Mobile/Responsive Ready +- develop individual templates fast and easy with HTML/CSS/Javascript + +### DEMO: +http://sandbox.netzgestaltung.at + +### Download: +http://sandbox.service4me.org diff --git a/sandbox/archive.php b/sandbox/archive.php new file mode 100644 index 0000000..03fcf92 --- /dev/null +++ b/sandbox/archive.php @@ -0,0 +1,248 @@ + + +post_types; + // archive related default values + $related_taxonomies = array(); + $public_taxonomies = get_taxonomies(array('public' => true )); + $post_ids = get_posts(array( + 'post_type' => $post_type, + 'posts_per_page' => -1, + 'fields' => 'ids', // return an array of ids + )); + // Default more button text + $more_text = __('Weiterlesen', 'sandbox'); + $more_text_label = ''; // used to use with printf + $use_tax_more_text = false; + // archive specificas based on archive type + if ( is_tax() || is_tag() || is_category() ) { + $related_taxonomies = array($term->taxonomy['WP_Taxonomy']->name); + $meta_args = array('date', 'author'); + + if ( $term->taxonomy['WP_Taxonomy']->name === 'typ' ) { + $meta_args = array(); + } + // More text button, %s gets replaced by + // $more_text_label which will be $post_type_object->labels->singular_name + // English default + $more_text = __('View', 'sandbox') . ' %s'; + $use_tax_more_text = true; + } else if ( is_post_type_archive() ) { + $related_taxonomies = array_intersect(get_object_taxonomies($post_type), $public_taxonomies); + // dont display post thumbnails in archives + // manual overwrite, requested by client + // $term->has_thumbnail = false; + // echo ''; + // echo 'c: ', var_dump($related_taxonomies); + + } + $header_style = ''; + if ( $term->has_thumbnail ) { + if ( is_post_type_archive() ) { + $term_thumbnail = array($term->thumbnail); + } else { + $term_thumbnail = wp_get_attachment_image_src($term->thumbnail_id, 'sandbox-hero'); + } + $header_style = ' style="background-image:url(' . $term_thumbnail[0] . ');"'; + } +?> +
+
> +

title; ?>

+ has_description ) { ?> +
+ description; ?> +
+ +
+ +
+ + +byline ?> */ ?> + + + + + + + + +
> +
+ + > + +
+ +
+ +
+ +

>

+ + + + + +
+ + +
+ +
+ + + +
+ + +
    + +
+ +
+
+
+ + + + + + + + + + + +
+
+
+

:-(

+

+

+
+ +
+
+ + +
+ +
+ diff --git a/sandbox/comments.php b/sandbox/comments.php new file mode 100644 index 0000000..91a1b74 --- /dev/null +++ b/sandbox/comments.php @@ -0,0 +1,45 @@ + + +
+ +

(One Comment', 'sandbox'), __('% Comments', 'sandbox') );?>)

+ + + + +
    + 'ol', + 'short_ping' => true, + 'avatar_size' => 150, + 'callback' => 'sandbox_comment_item', + )); + ?> +
+ + +

-

+ +
diff --git a/sandbox/css/default.css b/sandbox/css/default.css new file mode 100644 index 0000000..e4e2e38 --- /dev/null +++ b/sandbox/css/default.css @@ -0,0 +1,567 @@ +/** + * Basic elements + * + * very general basic rules for all fitting elements. + * + * @what + * everything reset + * html + * body + * headings + * content elements + * list styles + * code + * image + * abbreviation + * horizontal rule + * tables + * forms + * paginations + * helper classes + * columns + * skip link + */ +*{ + margin: 0; + padding: 0; +} + +/* Font size to 10px at body */ +html{ + font-size:1.25em; +} +body{ + font-size: 0.5em; +} + +/** + * container for non-responsive elements + * + * youtube/video 16:9 iframe + * @see https://benmarshall.me/responsive-iframes/?utm_source=duckduckgo.com&utm_medium=organic&utm_campaign=DuckDuckGo&redirect=1 + * + * tables + * @see https://mdbootstrap.com/docs/jquery/tables/responsive/ + * + * @see more posibilities with aspect ratio + * https://css-tricks.com/responsive-iframes/ + * + */ +.iframe-container{ + overflow:hidden; + padding-top:56.25%; /* 16:9 aspect ratio */ + position:relative; +} +.iframe-container > iframe{ + border:0; + height:100%; + left:0; + position:absolute; + top:0; + width:100%; +} +.table-container{ + width:100%; + overflow-x:auto; + -webkit-overflow-scrolling:touch; + -ms-overflow-style:-ms-autohiding-scrollbar; +} + +/* headings */ +h2, +h3, +h4, +h5, +h6 { + margin:0 0 0.3em 0; +} + +/* content elements */ +p, +table, +ul, +ol, +dl, +dt, +dd, +.columns, +img { + margin:0 0 1em 0; +} +ul, +ol{ + padding-left:1.5em; +} + +/* list styles */ +ul { list-style-type: disc; } +ul ul { list-style-type: circle; } +ul ul ul { list-style-type: square; } +ul ul ul ul { list-style-type: circle; } + +ol { list-style-type: decimal; } +ol ol { list-style-type: lower-alpha; } +ol ol ol { list-style-type: decimal; } +ul ul, +ul ol, +ol ol, +ol ul{ + padding-top:0.5em; +} +dt { + margin-bottom:0; +} +dd { + margin-bottom:0.5em; +} + +/* code */ +pre, code, tt{} +pre{} + +/* image */ +img{ + height:auto; +} + +/* abbreviation */ +abbr { + cursor: help; + white-space: nowrap; +} + +/* horizontal rule */ +hr{ + border:1px solid #E1E1E1; + border-width:0 0 1px 0; + margin:3em 0; +} +.content hr{ + clear:both; +} + +/* tables */ +table{ + width:100%; +} +th{ + text-align:left; +} +tbody{ + border-color:transparent; +} +tr.even, +tr.odd{ + background:none; +} +td, +th{ + padding:0.3em 0.5em; +} +tr.even td, +tr.odd td{ +} +tr + tr td, +thead + tbody tr:first-child td{ + border-top:1px solid #E1E1E1; +} +table .views-field-title{ + min-width:50vw; +} + +/* forms */ +fieldset{ + margin:0 0 0.5em 0; +} +label[for]{ + cursor:pointer; +} +button, +input, +select, +textarea{ + background:#F6F6F6; + border:none; + padding:0.3em 1em 0.4em 1em; + line-height:2; + margin:0 2% 1em 0; + color:#666666; + max-width:100%; + transition:all ease 500ms; + box-sizing:border-box; + border:1px solid #E6E6E6; +} +.content button, +.content input, +.content select, +.content textarea{ + font-size:1em; +} +.form-textarea-wrapper textarea{ + color:#666666; +} +input{ + padding-left:0; + text-indent:1em; +} +input.text-full{ + width:100%; + margin-right:0; +} +input, +select, +textarea{ +} + +input[type="text"], +input[type="email"], +input[type="url"], +input[type="password"], +input[type="search"], +textarea{ +} +input[type="text"]:focus, +input[type="email"]:focus, +input[type="url"]:focus, +input[type="password"]:focus, +input[type="search"]:focus, +textarea:focus, +select:focus, +textarea:focus{ + outline:0; + color:#000000; +} +.content button, +.content input, +.content select, +.content textarea{ + padding:0.285714286em 0.714285714em; +} +textarea{ + line-height:1.4; + padding-top:0.7em; + padding-bottom:0.7em; +} +/* It's rather heartwarming to know you can style a placeholder="first_name; ?>" disabled /> + + +
first_name; ?>
+ + +
+
> +
+ placeholder="last_name; ?>" disabled /> + +
+
last_name; ?>
+ +
+
+
> +
+ placeholder="nickname; ?>" disabled /> + +
+
nickname; ?>
+ +
+
+
> +
+ + +
+
display_name; ?>
+ +
+
+
> +
+ /> + + +
+
*****
+ +
:
+
+ + + + have_posts() ) { ?> +
+

ein Lernmaterial', '%s Lernmaterialien', $favorites->post_count, 'sandbox'), number_format_i18n($favorites->post_count));?>

+
    + have_posts() ) { + $favorites->the_post(); + $favoriteMeta = get_post_custom(); + $favorite_id = get_the_ID(); + $file_url = $favoriteMeta['_alpha_file_url'][0]; + $file_size = $favoriteMeta['_alpha_file_size'][0]; + $file_count = !empty($favoriteMeta['_alpha_file_count'][0]) ? intval($favoriteMeta['_alpha_file_count'][0]) : 0; + $file_options = unserialize($favoriteMeta['_alpha_file_options'][0]); + $description = $favoriteMeta['_download-description'][0]; + $exercise = $favoriteMeta['_download-challenge'][0]; + $author = $favoriteMeta['_download-author'][0]; + $license = $favoriteMeta['_download-license'][0]; + $favorite_post_type = get_post_type(); + ?> +
  1. > +

    +
  2. + + +
+
+ +
+

+ +
+ + +
+

eine Bewertung', '%s Bewertungen', $current_users_comments_number, 'sandbox'), number_format_i18n($current_users_comments_number));?>

+
    + comment_post_ID); + ?> +
  1. has_children ? 'parent' : '', $comment ); ?>> +

    comment_post_ID); ?>

    + comment_approved ) : ?> +

    + + + comment_content, $comment, $args); ?> +
  2. + +
+
+ + + + + ' . __('Pages:', 'sandbox') . '&after=') ?> + + diff --git a/sandbox/page.php b/sandbox/page.php new file mode 100644 index 0000000..e6eec52 --- /dev/null +++ b/sandbox/page.php @@ -0,0 +1,136 @@ + + + + + +
> +
+
+

+ + > +

+ +
+ +
+ + +
+ +
+ + +
    + +
+ +
+
+ +
+ + > + + + + +
+ + + + + +
+ + + diff --git a/sandbox/readme.html b/sandbox/readme.html new file mode 100644 index 0000000..52b62ad --- /dev/null +++ b/sandbox/readme.html @@ -0,0 +1,817 @@ + + + + The Sandbox · An explanation + + + + + + + +
+ + +
    +
  1. +

    Introduction

    +

    Sandbox is a lot of things:

    +
      +
    • For WordPress 2.6.x
    • +
    • Beautiful on the inside
    • +
    • Valid XHTML 1.0 Transitional
    • +
    • Widgets friendly
    • +
    • The basis for your GPL-licensed theme
    • +
    +

    More importantly, the Sandbox can be a lot of things.

    +

    What began as Scott Allan Wallick's leftovers has become an advanced, semantics-based theme. Andy Skelton added his innovative semantic class-generating functions and Scott edited it to oblivion.

    +

    So what can you do with the Sandbox?

    +
      +
    • You can just use it as-is and have a super-cool, truly minimalist theme.
    • +
    • You can thoroughly customize it with CSS alone.
    • +
    • You can use its functions, files, et al, as pleases you.
    • +
    • You can use it to learn a few things about CSS, XHTML, and PHP.
    • +
    +

    The real feature of the Sandbox is its markup. The use of class-generating functions in the body, post div, and comment/trackback li elements create an exceptionally extensible foundation. As Andy said, Given straightforward markup with plenty of selectors, there isn't much that can't be accomplished with CSS and a decent browser.

    +

    And the implementation of the hAtom and hCard microformats means we're looking forward. You might be able to improve on our markup, but who wants to work that hard?

    +
  2. +
  3. +

    Installing

    +

    The Sandbox theme is installed just like any other WordPress theme. To install this theme:

    +
      +
    1. Download the latest Sandbox release
    2. +
    3. Extract the /sandbox/ folder from the archive
    4. +
    5. Upload it to the ../wp-contents/themes/ directory
    6. +
    7. Activate the theme in the Design submenu
    8. +
    9. Enjoy
    10. +
    +

    You can read more detailed installation instructions on the WordPress Codex.

    +

    Subversion Access

    +

    Developers interested in Subversion access to the Sandbox repository may visit code.google.com/p/sandbox-theme. Please ignore if unfamiliar with Subversion.

    +

    For the latest and possibly unstable version, check out the /trunk/:

    +
    svn checkout http://sandbox-theme.googlecode.com/svn/trunk/
    +

    A legacy version for WordPress 2.0.x is in /branches/0.9/. Otherwise, please check out tagged versions in the /tags/ subdirectory. Tagged versions are stable and the latest release will be for the current stable version of WordPress.

    +
  4. +
  5. +

    Getting started

    +

    For beginners getting started, see the example layouts in /sandbox-layouts/. Instructions for using the included layouts can be found in the folder.

    +

    The simplest way to get started with the Sandbox is to jump right in to style.css, using CSS to design the appearence of the Sandbox.

    +

    For help learning CSS, visit:

    + +

    For Sandbox-related resources, including how-tos, Sandbox-based theme templates, and more, visit:

    + +

    If you are interested in developing theme templates based on the Sandbox, see Creating theme templates in this document.

    +
  6. +
  7. +

    Class functions

    +

    The three semantic class-generating functions used in the Sandbox are charted below, outlining what semantic classes are generated (“Class”), any related WordPress function (“WP Tag”), and the usage of these classes (“Usage”). For more on the WP Tag aspect, read Template Tags and Conditional Tags on the WordPress Codex.

    +
      +
    1. +

      sandbox_body_class()

      +

      The sandbox_body_class() function is definied in the functions.php file. It has no parameters. It adds semantic classes to the body element relative to the content of the page that is being displayed.

      +
      <body class="<?php sandbox_body_class() ?>">
      +

      The chart below lists the semantic classes added to the body tag by this function.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      sandbox_body_class()
      CSS example
      body.single div.sidebar { display: none; }
      ClassWP TagUsage
      archiveis_archive()When any archive page is displayed, i.e., applies to category-, date-, and author-based archive pages
      attachmentis_attachment()When the post subpage containing an attachment is displayed, as set with "Linked to Page" in the post editor
      attachmentid-[n]is_attachment()Displays the ID number of queried attachment page, where [n] is the ID, e.g., attachmentid-20
      attachment-[mime]is_attachment()For attachment posts (see above), where [mime] is the abbreviated MIME type, e.g., attachment-jpeg
      authoris_author()When a author archive page is displayed
      author-[name]is_author()When a specific author archive page is displayed, where [name] is the author's login name, e.g., author-admin
      author-paged-[n]is_author() & is_paged()Displays the "paged" number of author archive, where [n] is the paginated number
      blogis_home()When the page containing blog posts is displayed
      categoryis_category()When a category archive page is displayed
      category-[name]is_category()For a specific category, where [name] is the category slug, e.g., category-useful-links
      category-paged-[n]is_category() & is_paged()Displays the "paged" number of category archive, where [n] is the paginated number
      d01–31gmdate('d')The current day of when the page is displayed (Offset to GMT)
      dateis_date()When a date archive page is displayed, e.g., by month, by year
      date-paged-[n]is_date() & is_paged()Displays the "paged" number of date-based archive, where [n] is the paginated number
      h00–24gmdate('h')The current hour of when the page is displayed (Offset to GMT)
      four04is_404()When a request results in zero posts, i.e., a 404 error page
      homeis_front_page()When the front page is displayed
      m00–12gmdate('m')The current month of when the page is displayed (Offset to GMT)
      loggedinn/aWhen the page is displayed by a logged-in user
      pageis_page()When a page is displayed
      page-author-[name]is_page()For a page by a specific author, where [name] is the user's login name, e.g., page-author-admin
      page-childis_page()When the page is a child page to another page
      page-paged-[n]is_page() & is_paged()Displays the "paged" number of pages, where [n] is the paginated number
      page-parentis_page()When the page has one or more child pages
      page-templateis_page()When the page is using a page template
      page-template-[name]is_page()When the page is using a page template, where [name] is the file name of the page template
      pagedis_paged()When whatever is displayed is "paged," e.g., page 2 of the index
      paged-[n]is_paged()Displays the "paged" number, where [n] is the paginated number, e.g., paged-3 for third page of index
      pageid-[n]is_page()Displays the page ID number of queried page, where [n] is the ID, e.g., pageid-20
      parent-pageid-[n]is_page()Displays the page ID of the current page's parent, where [n] is the ID, e.g., parent-pageid-20
      postid-[n]is_single()Displays the post ID number of queried post, where [n] is the post ID, e.g., postid-20
      searchis_search()When the results of a search are displayed
      singleis_single()When a single post is displayed
      s-author-[name]is_single() & is_author()For a single post published by a specific author, where [name] is the user's login name, e.g., s-author-admin
      s-category-[name]is_single() & is_category()For a single post published in a specific category, where [name] is the category slug, e.g., s-category-news
      s-d01–31gmdate('d')For a single post published on a specific day (Offset to GMT)
      s-h00–24gmdate('h')For a single post published at a specific hour (Offset to GMT)
      s-m00–12gmdate('m')For a single post published in a specific month (Offset to GMT)
      s-tag-[name]is_single() & is_tag()For a single post published with a specific tag, where [name] is the tag slug, e.g., s-category-foo-bar
      s-y2007gmdate('Y')For a single post published in a specific year (Offset to GMT)
      tagis_tag()When a tag archive page is displayed
      tag-[name]is_tag()For a specific tag, where [name] is the tag slug, e.g., tag-foo-bar
      tag-paged-[n]is_tag() & is_paged()Displays the "paged" number of tag archive, where [n] is the paginated number
      wordpressn/aWhen anything is displayed; a class that is always applied
      y2007gmdate('Y')The current year of when the page is display (Offset to GMT)
      +
    2. +
    3. +

      sandbox_post_class()

      +

      The sandbox_post_class() function is definied in the functions.php file. It has no parameters. It adds semantic classes to each post div element, relative to the actual post it contains.

      +
      <div id="post-<?php the_ID(); ?>" class="<?php sandbox_post_class() ?>">
      +

      The chart below lists the semantic classes added to each post div element by this function.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      sandbox_post_class()
      CSS example
      div.category-news .entry-title { background: url('images/news.png'); }
      ClassWP TagUsage
      altn/aFor odd-numbered posts, e.g., for the 1st, 3rd, 5th posts
      author-[name]is_author()For any specific author, where [name] is the user's login name, e.g., author-admin
      category-[name]is_category()For any specific category, where [name] is the category slug, e.g., category-news
      d01–31gmdate('d')For a post published on a specific day (Offset to GMT)
      draftn/aFor a post saved as a draft, as contrasted with an published post
      h00–24gmdate('h')For a post published at a specific hour (Offset to GMT)
      hentryn/aFor the hAtom 0.1 specification, applied every post
      m00–12gmdate('m')For a post published in a specific month (Offset to GMT)
      p[n]n/aFor counting posts relative to the top of the page, where [n] is the number, e.g., p1 for the first post, p2 for the second, p3 for the third
      pagen/aA general class, applied to every page
      postn/aA general class, applied to every post
      privaten/aFor a post that has been saved as private
      protectedn/aFor a post protected by a password
      publishn/aFor any published post, as contrasted with an unpublished draft
      tag-[name]is_tag()For any specific tag, where [name] is the tag slug, e.g., tag-foo-bar
      untaggedis_tag()If there are no tags assigned to the post
      y2007gmdate('Y')For a post published in a certain year (Offset to GMT)
      +
    4. +
    5. +

      sandbox_comment_class()

      +

      The sandbox_comment_class() function is definied in the functions.php file. It has no parameters. It adds semantic classes to the each comment li element (“comment” here meaning comments, trackbacks, and pingbacks).

      +
      <li id="comment-<?php comment_ID(); ?>" class="<?php sandbox_comment_class() ?>">
      +

      The chart below lists the semantic classes added to each comment li element by this function.

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      sandbox_comment_class()
      CSS example
      div.comments li.bypostauthor { border: 1px solid red; }
      ClassWP TagUsage
      altn/aFor odd-numbered comments, e.g., for the 1st, 3rd, 5th comments
      bypostauthorn/aWhen the comment author is also the post author
      byusern/aFor comments by registered users
      c-h00–24gmdate('h')For a comment posted at a specific hour (Offset to GMT)
      c[n]n/aFor counting comments relative to the first, where [n] is the number, e.g., c1 for the first comment, c2 for the second, c3 for the third
      c-d01–31gmdate('d')For a comment posted on a specific date (Offset to GMT)
      c-m00–12gmdate('m')For a comment posted in a specific month (Offset to GMT)
      c-y2007gmdate('Y')For a comment posted in a specific year (Offset to GMT)
      commentn/aA general class, applied to every comment
      comment-author-[name]n/aFor a comment by a specific registered user, where [name] is the user's login name, e.g., comment-author-susan
      p[n]n/aFor counting pingbacks relative to the first, where [n] is the number, e.g., p1 for the first pingback, p2 for the second, p3 for the third
      pingbackis_pingback()When a comment is a pingback
      t[n]n/aFor counting trackbacks relative to the first, where [n] is the number, e.g., t1 for the first trackback, t2 for the second, t3 for the third
      trackbackis_trackback()When a comment is a trackback
      +
    6. +
    +
  8. +
  9. +

    Other features

    +

    In addition to the more advanced, code-related features of the Sandbox, there are at least two other features that make the Sandbox a highly viable choice as a base theme.

    +
      +
    1. +

      Comments on pages

      +

      Comments are not displayed on pages by default, but are displayed on posts, per the current convention. You can enable comments on a per page basis by adding a custom key/value with only the text comments.

      +

      To enable comments on a page:

      +
        +
      1. In the Write › Page menu, expand the Custom Fields box
      2. +
      3. In the Custom Fields box, add a new key with the exact text comments
      4. +
      5. Add any text for a value (some text must be included for the key to save)
      6. +
      7. Click Add Custom Field to save the key/value
      8. +
      9. Comments should now be enabled on that page
      10. +
      +

      Enabling comments simply includes the comments.php file with the page. You can turn off comments on a page by deleting the comments key/value. This does not delete any exisiting comments, but simply disables comments.php from loading with the page.

      +
    2. +
    3. +

      Page templates

      +

      There are two page templates included: Links Page (links.php) and Archives Page (archives.php). You can add a title, text, and enable comments (see above) with both of these page templates.

      +

      To use the page templates:

      +
        +
      1. In the Write › Page menu, expand the Page Templates box
      2. +
      3. From the drop-down, select the page template to use
      4. +
      5. Add a title and text (optional) for the page
      6. +
      7. Click Create New Page / Save to publish the page
      8. +
      +

      The Archive Page template displays archives by month and by category. The Links Page displays links by link category.

      +
    4. +
    +
  10. +
  11. +

    Creating a theme template

    +

    If you are interested in creating a design for public release, consider creating a theme template based on the Sandbox. First read Designing Themes for Public Release on the WordPress Codex and seek support on the WordPress.org Forums.

    +

    A theme template is a WordPress theme that uses the PHP files, e.g., index.php, single.php, in another theme folder but the style.css of the theme template.

    +

    For a collection of excellent theme templates designed for the Sandbox, visit the Sandbox Designs Competition. In 2007, there were 46 designs submitted in the competition. All are examples of theme templates based on the Sandbox.

    +

    Creating a theme template is essentially the same as creating a regular theme for WordPress, except you are not modifying any of the theme files and instead providing an alternate style.css.

    +
    /*
    +THEME NAME: My Design
    +THEME URI: http://www.example.com/my-design/
    +DESCRIPTION: New curtains for an old room
    +VERSION: 0.1
    +AUTHOR: John Doe
    +AUTHOR Uri: http://www.example.com
    +TAGS: one column, two columns, three columns, awesome, blue, pink
    +TEMPLATE: sandbox
    +*/
    +

    The line TEMPLATE: sandbox tells WordPress to use the theme files installed in the /sandbox/ folder with the "My Design" style.css style sheet.

    +

    You can read more detailed information about developing WordPress Theme Style Sheets or in Creating Sandbox-based theme templates in the Sandbox Forums.

    +
  12. +
  13. +

    Using filters

    +

    Filters allow plugins and theme templates to change the data that the Sandbox returns to the browser without having to alter the theme fiiles. Filters provide a simple, clean way of altering what the Sandbox does without modifying the actual theme files.

    +

    For example, if you wanted to add a link to globalnav page list, you would have to edit the theme files. When you upgrade the theme files (or accidentally break something), you will have to go back and make this change again. By using the globalnav_menu filter, however, you can alter the output of the sandbox_globalnav() without changing a single theme file.

    +

    The chart below lists the filters available in the Sandbox theme.

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Sandbox filters
    Filter examples
    // Sandbox produces 32px avatars -- too small!
    +function make_avatars_big() {
    +	return '64';
    +}
    +// Add our function to the filter in Sandbox
    +add_filter( 'avatar_size', 'make_avatars_big' );
    FilterReferenceUsage
    avatar_sizefunctions.php, 280Sets avatar image dimenions in pixels
    body_classfunctions.php, 143Adds classes to the body element
    comment_classfunctions.php, 222Adds classes to a comment li element
    gallery_img_classfunctions.php, 280Adds classes to gallery images
    gallery_img_relfunctions.php, 334Adds rel attributes to gallery images
    globalnav_menufunctions.php, 23Echos list of pages without white space
    post_classfunctions.php, 183Adds classes to a post div element
    +

    For more information on using filters, see Plugin API: Filters on the WordPress Codex. The initial discussion about filters in the Sandbox on the Sandbox Forums may be also useful.

    +
  14. +
  15. +

    Translations

    +

    The Sandbox allows for complete localization. For detailed information about translating the Sandbox into your language, see Sandbox in your language on the Sandbox wiki.

    +

    If you would like to submit a translation for the Sandbox, please open a new issue on the Sandbox project home. Please include both the PO and MO files. You're also welcome to help edit existing translations.

    +

    Translations have been graciously provided by the following individuals:

    + +
  16. +
  17. +

    Web standards

    +

    The Sandbox is compliant with both XHTML and CSS standards. What does this mean? An explanation of web standards from The Web Standards Project:

    +
    +

    Complying with web standards can give your web pages greater visibility in web searches. The structural information present in compliant documents makes it easy for search engines to access and evaluate the information in those documents, and they get indexed more accurately.

    +

    Accessibility is an important idea behind many web standards. Not only does this mean allowing the web to be used by people with disabilities, but also allowing web pages to be understood by people using browsers other than the usual ones—including voice browsers that read web pages aloud to people with sight impairments, Braille browsers, hand-held browsers, teletext displays, and other unusual output devices.

    +
    +

    You can read more about developing with web standards at 456 Berea Street.

    +
  18. +
  19. +

    Microformats

    +

    Microformats are markup that express semantic information in your blog. People and machines can extract information from webpages marked up in a microformat much like feed readers extract information from Atom or RSS syndicated feeds. Essentially it's about making content more accessible.

    +

    Microformats that have been implemented in the Sandbox theme include (less XFN, which is built into WordPress):

    +
      +
    • hAtom: For all blog posts and pages
    • +
    • hCard: For all post and comment authors
    • +
    • rel="home": For marking links pointing to the blog home page
    • +
    • XOXO: For menu, blogroll, archive, and sidebar lists
    • +
    +

    Microformats help the Sandbox be an especially POSH WordPress theme. POSH stands for "plain old semantic HTML." It is a term used to refer to best practices of semantic HTML development.

    +

    So the Sandbox can be highly POSH, but the semantic use of HTML elements is completely up to you, the end user. To learn more about semantic HTML, visit Mezzoblue.

    +
  20. +
  21. +

    Credits and thanks

    +

    The Sandbox is a collaboration between Andy Skelton and Scott Allan Wallick.

    +

    Thanks to all those who have provided their assistance, know-how, and generally sound advice on all things Sandbox. You are many. But a special thanks to the follow individuals:

    + +

    Thanks are due to those who helped ensure the success of the Sandbox Designs Competition:

    + +
  22. +
  23. +

    License

    +

    The Sandbox © 2006–2008 is licensed under the GNU General Public License:

    +
    +

    This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

    +

    This program is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose. See the GNU General Public License for more details.

    +

    You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

    +
    +
  24. +
+ +
+ + \ No newline at end of file diff --git a/sandbox/screenshot.png b/sandbox/screenshot.png new file mode 100644 index 0000000000000000000000000000000000000000..5fbcee946aebdb19d23389604eff31168d5abc0b GIT binary patch literal 14163 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%0DPkx$gh+3uD$W$$V2 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 literal 0 HcmV?d00001 diff --git a/sandbox/search.php b/sandbox/search.php new file mode 100644 index 0000000..e9a505c --- /dev/null +++ b/sandbox/search.php @@ -0,0 +1,129 @@ + + + true, + )); + $post_type_names = array_diff_key($post_type_names, array_flip($excluded_types)); + + $query_types = get_query_var('post_type'); + if ( empty($query_types) ) { + $query_types = array(); + } else if ( $query_types === 'any' ) { + $query_types = array('post', 'kurs', 'download'); + } +?> + +
+ +
> +

+
+ + +
+
+ + + 0 ); + $moreText = $useCustomMoreText ? $customPostsMeta["_custom_more_text"][0] : __('Weiterlesen', 'sandbox'); + // echo var_dump(!empty($customPostsMeta["_custom_more_text"])); + ?> + +
> +
+ + + +

+
+ +
+
+
+ + + + + + + + + + + + + + + +
+
+

+
+ +

+

+

+
+
+
+ + +
+ + diff --git a/sandbox/searchform.php b/sandbox/searchform.php new file mode 100644 index 0000000..effadb6 --- /dev/null +++ b/sandbox/searchform.php @@ -0,0 +1,15 @@ + + diff --git a/sandbox/sidebar-content-after.php b/sandbox/sidebar-content-after.php new file mode 100644 index 0000000..730ce55 --- /dev/null +++ b/sandbox/sidebar-content-after.php @@ -0,0 +1,7 @@ + + + diff --git a/sandbox/sidebar-content-before.php b/sandbox/sidebar-content-before.php new file mode 100644 index 0000000..7164d4b --- /dev/null +++ b/sandbox/sidebar-content-before.php @@ -0,0 +1,8 @@ + + + diff --git a/sandbox/sidebar-content-footer.php b/sandbox/sidebar-content-footer.php new file mode 100644 index 0000000..7cf6533 --- /dev/null +++ b/sandbox/sidebar-content-footer.php @@ -0,0 +1,8 @@ + + + diff --git a/sandbox/sidebar-footer-bar.php b/sandbox/sidebar-footer-bar.php new file mode 100644 index 0000000..9e66014 --- /dev/null +++ b/sandbox/sidebar-footer-bar.php @@ -0,0 +1,7 @@ + + + + diff --git a/sandbox/sidebar-footer.php b/sandbox/sidebar-footer.php new file mode 100644 index 0000000..ca55446 --- /dev/null +++ b/sandbox/sidebar-footer.php @@ -0,0 +1,8 @@ + diff --git a/sandbox/sidebar-header.php b/sandbox/sidebar-header.php new file mode 100644 index 0000000..e0d4c96 --- /dev/null +++ b/sandbox/sidebar-header.php @@ -0,0 +1,8 @@ + + + diff --git a/sandbox/sidebar-highlight.php b/sandbox/sidebar-highlight.php new file mode 100644 index 0000000..12c4d15 --- /dev/null +++ b/sandbox/sidebar-highlight.php @@ -0,0 +1,8 @@ + + + diff --git a/sandbox/sidebar-menu.php b/sandbox/sidebar-menu.php new file mode 100644 index 0000000..25f0234 --- /dev/null +++ b/sandbox/sidebar-menu.php @@ -0,0 +1,20 @@ + + + + + diff --git a/sandbox/single.php b/sandbox/single.php new file mode 100644 index 0000000..5a47cf4 --- /dev/null +++ b/sandbox/single.php @@ -0,0 +1,106 @@ + + + + + +
> + +
+ + + +
+
+

+ + > +

+ +
+ +
+ + +
+ +
+ + +
    + +
+ +
+
+ + + +
+ + + + + +
+ + + diff --git a/sandbox/style.css b/sandbox/style.css new file mode 100644 index 0000000..4d8a7ca --- /dev/null +++ b/sandbox/style.css @@ -0,0 +1,14 @@ +/* +THEME NAME: sandbox +THEME URI: http://www.netzgestaltung.at +DESCRIPTION: Rich with powerful and dynamic semantic class selectors, sandbox is a canvas for CSS artists +VERSION: 3 +Tested up to: 5.4.2 +Requires PHP: 7.1 +AUTHOR: Netzgestaltung.at +AUTHOR URI: +TEXT DOMAIN: sandbox +LICENSE: GPLv3 +LICENSE URI: https://www.gnu.org/licenses/gpl-3.0.en.html +TAGS: microformats, one-column, two-columns, three-columns, left-sidebar, right-sidebar +*/ diff --git a/sandbox/translations/de_DE.mo b/sandbox/translations/de_DE.mo new file mode 100644 index 0000000000000000000000000000000000000000..7b57d5c8d385f7d233b60b2cacc8041bb6a7df6d GIT binary patch literal 9632 zcmc(kZH!#idB;!EBqb&(fi!Jin&vRDfMI8L*90)*_26B5O>F$K-5sDoH0aLE*_q4U zxp%nt&Ms>ujam^^YNWhWt*R(#J|ui;CE5=aAgEELu0mTymD)y;QmG9@tyH!75;YQu z)S~A1oO568wJ`xD*L&taXYP4<&h!2pfA_k#{gLA7(teG0{;f(q20r|DK6vymDs>XP z9()%VfY*XM;C0|S0N(XZrEUj(@FU=#WcUL3e)|6geh_>m z>tDOi^=}1d_UzR!nfZ8<=lS-@~6JRhphK4@Ezd4fWrTm zL6%fM0EI8Ff-(3mI(NTCsZWFQ{y7HA`xil3_uCo11kTa_uM9u%9;Mp!Pk=J-2~ha( zMesx5mq6M7Y4E+^d622Lo?*gAk2^Yct0Yz?eA8`Ae1w}8@3_qXYpJn(BQ0RFXlykqG!NS+~fimw#J|J1$ z18#uppq%e{5Z0)_0fj%`0-NCXK%xH{nEO%iL!iuG1;tJVAgofK0!2T+0LnSP3<|%V z0%iYaGkh__Z-X-bKR~g|SHTa1e~GcnI{yTUJpMJqe+LiH|8G$A@xu)Mb+7?Se+j%3 zJPsZLKLyIZ&w;{+zXN5x?|^dNm$Kjg6O{A(2;@&)&7z+M_k*Gze+r7cuG7vQZvo|8 zM>0GK&eQLL3*cwK74TV5`1mR)`(1s#^JDJ?#ZKly;oF^{oc9Dc0=uB_`vvf8Z&B*+ zLD8$=21oy2gMUo_MNsJd1j3f}KM4w5Pk_Rg&w+jLDexe8?F_aHo&;IeJ{>-Vr?=B^ zul5mI$DZxS(@1CZ8UjA7vwqPz{*m-V!rkfnIIbb%{Ri9X1K zNUTi6o|b7>(emdWzAVzjx1s8)L6he`n%HOYyi=aVWa5RoA9zV}_~vQoO(t=)Wd=8Q zJ|0bD-H*m&6Q}~=`kOskTbKJ3Kh}1dNs2wX`7C|^+9|!k zdON}sp|_!96C7?7OEfyQ!Lol#Rax5zB4LgnHae&5H|>YoON1PELSb65b8U!lu+foE zyKKgDec|fSG;MUsL4*4H?cp^5Py@I9s<)_1L6dGxW9^otpyh zv1xQD-~DWW5?EFsx{3-lUSkGwoCYH9>YUg-HuYmOXmoDflL{2e$_O@eGaa+@J2Qiv zo}*3?vV|)z3c2L3&W7fKNsgFKGJezS>!+ zbk^3_^@cHna;zoPlIKJsZ13YBf4-jNnCHW`oYk3JDw0?k_^DbMGfEvtW0csnAI^!* zi(~c%V?Xp0yp?!uEshly7210mBUe@fF1yJYZ*0^VgN8c0uWLue?&GSb$Yx}Af2DJx zR3FDh4b&O5O0?SbR=pt#U_aXm-5+~$7BQ3=ewL7sYeE(es$GoGDwrsiC|FIoE%}L= zG&-Nmy~EzVw6?4Dru`xY# z?4y|h++m$Q(>g7^jNy;HnB$I2C2rhVar8CfX6}+VHcs`jsg2I0N@EMQ20^rql3H8lDEW3uG}(T0IxR7}Cw@p4!-b&x#j#3#Uo+l7 zpN=@?#VX)pU0s9MvhajAHo?F-GZ6$d))v?!jIEh;8i$#JW(KD+6!wmdWx#_`JXpm< z618rlO$K_+MN1jeR_mMoL{{qKtMQ|1J&NNU=cU5TO2%H=N2Oezk_E1Q>?080BUs?X z62eNnqrIU=K(azkB8V9H8ykq7OmEZdY(q`bQiR&l<*2SC4h&%OHhIf7t3pMt-m`g_ z!@ayAHJ^pa0Vlxr@iQ|hx2V=7mA|T!b>+YN%~k$|`O9g4x!D`ne#>alUrD-2##7VB z8d`bnL>4)?v)u%3!>Os>>P(oFz`NvW7%LW^&4?Uj3gkIIx)iPuvT%$t@A~lB}%J#yLI#Dgf zLa{ay8ik*WX50zQmWdbV_@b{4%KQLJ&NR- zCkD+2Oq>vR+d4D+eQRbC#cA_&GV}+{<>@eKcB8i5w|chQJQ^G8DVxXeply9%e*R!{ z{;uZ2-Fkk$JwM-^zhi!$fz36u<;$YkxP7O*ByA${Frm=GTj=FScb~!YY+;a)5(NH~ z)At^Y@XbfiD*HogU^>hUhg0HevunIDH1?x3)g-heJr8;e>u=)ajwJH)w(Gahmd?J@ zCr+=FM_Xvk?>p)oQ?rZPZ|jt-Zf+9bXAbE;d`?Vy`2Ozk=D~8Dkc-=Cu7v%F(rDP$ z2YY_H?>C#P5v5Yv%t>pb{6mSB<*TDoz{ERkegByg-IZf{y}Q(1SufwOBlf;I>h^8x zX}ZD2#lrVxPVN**QCmOq$e~9}`EnU2Iq}j_Ter#|onKz%=jJ@3QkSotPmE%HpNpqn zEP9;iFrtVUn$V2K{!mi=cwj08H2#jaQW>O|sGm)GP8@Ertg%&f_Up3o(|GsEp;52X zrdRy1x~NY2l%synU|Q?>SH12VZR!K9xyeNUl?Sdmtc)of&reruH*K-Kdp_21k%jHi zyy0akZkge{PtAIrYY->FA%{k~q{G3bYVHdLNjCPzs_q9cy#WP_8FPkknw~T9CKeKD zZ<<)zplm7s`cstPyH7}_WgLT??5pKkB_Xeu?)kj+DY-&CG(Ad#1jVUN-XoQ%y+={= ziu_)uwU)DPkxKPl(N;UZ@~Tjiyf8-qdFowE%NDG>DyAuZ)N+Omk}|!KDU7y7X_@Qc z$V}B{Y`?UYCFZ-*ToV*_pCJpPLiPKjlwz1yqApxs<(5ed#z3aQz#mS-;jH$07{In4 zYXmDvnGR*Dt=dgEtGA=jV-YbQ>K4{Z^@u4U>5ODg#5SuI&UjE2dmK~L?dm>Ps{5wt zN@K^2{2D;#Bq7%7rI7i5Q2#=x%#@kGNa*Q}_Df|K1 z%|@{MBznVXrDzu&cSY6M6;)GEs`h)0coN@mL>q(10*cdw<=32cRZvuZGq#E^UeKkE zuXd^ADFT{O4mkOjFRSD1kt!$2#3oYN+ zh{c3zrFmM4eQUy@vSpBC!6~kj!Z|*r_7~YMN$roC8Z>i{n!i-1i}%Y4{%Ot0kPMU; z#?{-tdd+mk*lBeibER{w5e?0T6ak?+BVDnU9=VLUrxVpypxF^zu?;?|TE` zVOh(U_XahJty?@rWIHEXCH@Q+ZbSj;jb*U7GF=?k=&^Mrpg+!TT$+ zoYf5*e!5c8HimF{~TeYi-Vr0cMDm1)VmUV%MD65=+cF$9_ zwDi3;50HpE;O=PE-CtOpp4BkCAkv7wCPrL}Tw|D^c8zfbf&6t=KgGruD2|jrE+;5Q zh`QOz$oZ0bBAMkl+&Eh5_qg#m=`sD%v0ZpG-aStu9%A!^>e5kPeCYvcu7I#r7!155 zt-{YN$!RHTr!I47E)C?mQSN!UN3ypfK9?i`|F*W^x73KHzYp+T9pl? literal 0 HcmV?d00001 diff --git a/sandbox/translations/de_DE.po b/sandbox/translations/de_DE.po new file mode 100644 index 0000000..6f8a975 --- /dev/null +++ b/sandbox/translations/de_DE.po @@ -0,0 +1,464 @@ +msgid "" +msgstr "" +"Project-Id-Version: Sandbox\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-07-19 00:00-0500\n" +"PO-Revision-Date: \n" +"Last-Translator: Björn von Prollius \n" +"Language-Team: Scott Allan Wallick \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: English\n" +"X-Poedit-Country: UNITED STATES\n" +"X-Poedit-SourceCharset: utf-8\n" +"X-Poedit-KeywordsList: __;_e\n" +"X-Poedit-Basepath: .\n" +"X-Poedit-SearchPath-0: \n" + +#: 404.php:7 +msgid "Not Found" +msgstr "Nicht gefunden" + +#: 404.php:9 +msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help." +msgstr "Entschuldigung, aber wir konnten nicht finden, wonach Sie gesucht haben. Bitte benutzen Sie die Suche." + +#: 404.php:14 +#: functions.php:362 +#: search.php:56 +#: sidebar.php:39 +msgid "Find" +msgstr "Suchen" + +#: archive.php:9 +#, php-format +msgid "Daily Archives: %s" +msgstr "Tages-Archiv: %s" + +#: archive.php:11 +#, php-format +msgid "Monthly Archives: %s" +msgstr "Monats-Archiv: %s" + +#: archive.php:13 +#, php-format +msgid "Yearly Archives: %s" +msgstr "Jahres-Archiv: %s" + +#: archive.php:15 +msgid "Blog Archives" +msgstr "Blog-Archiv" + +#: archive.php:21 +#: archive.php:48 +#: author.php:12 +#: author.php:39 +#: category.php:11 +#: category.php:40 +#: index.php:7 +#: index.php:37 +msgid "« Older posts" +msgstr "« Ältere Beiträge" + +#: archive.php:22 +#: archive.php:49 +#: author.php:13 +#: author.php:40 +#: category.php:12 +#: category.php:41 +#: index.php:8 +#: index.php:38 +msgid "Newer posts »" +msgstr "Neuere Beiträge »" + +#: archive.php:28 +#: author.php:21 +#: category.php:18 +#: index.php:14 +#: search.php:18 +#, php-format +msgid "Permalink to %s" +msgstr "Permalink zu %s" + +#: archive.php:29 +#: author.php:22 +#: category.php:19 +#: index.php:15 +#: search.php:19 +#, php-format +msgid "%1$s – %2$s" +msgstr "%1$s – %2$s" + +#: archive.php:31 +#: author.php:24 +#: category.php:21 +#: index.php:17 +#: search.php:21 +msgid "Read More »" +msgstr "Weiterlesen »" + +#: archive.php:35 +#: category.php:25 +#: index.php:22 +#: search.php:27 +#, php-format +msgid "By %s" +msgstr "Geschrieben von %s" + +#: archive.php:35 +#: attachment.php:20 +#: category.php:25 +#: image.php:21 +#: index.php:22 +#: search.php:27 +#, php-format +msgid "View all posts by %s" +msgstr "Alle Beiträge von %s ansehen" + +#: archive.php:37 +#: author.php:28 +#: index.php:24 +#: search.php:29 +#, php-format +msgid "Posted in %s" +msgstr "Veröffentlicht in %s" + +#: archive.php:39 +#: author.php:30 +#: category.php:31 +#: index.php:26 +#: search.php:31 +msgid "Tagged " +msgstr "Getaggt als " + +#: archive.php:40 +#: archives.php:32 +#: attachment.php:38 +#: author.php:31 +#: category.php:32 +#: comments.php:40 +#: comments.php:66 +#: image.php:39 +#: index.php:27 +#: links.php:22 +#: page.php:15 +#: search.php:32 +msgid "Edit" +msgstr "Bearbeiten" + +#: archive.php:41 +#: author.php:32 +#: category.php:33 +#: index.php:28 +#: search.php:33 +msgid "Comments (0)" +msgstr "Kommentare (0)" + +#: archive.php:41 +#: author.php:32 +#: category.php:33 +#: index.php:28 +#: search.php:33 +msgid "Comments (1)" +msgstr "Kommentare (1)" + +#: archive.php:41 +#: author.php:32 +#: category.php:33 +#: index.php:28 +#: search.php:33 +msgid "Comments (%)" +msgstr "Kommentare (%)" + +#: archives.php:20 +msgid "Archives by Category" +msgstr "Kategorie-Archiv" + +#: archives.php:26 +msgid "Archives by Month" +msgstr "Monats-Archiv" + +#: attachment.php:8 +#: image.php:8 +#, php-format +msgid "Return to %s" +msgstr "Zurück zu %s" + +#: attachment.php:19 +#: image.php:20 +#, php-format +msgid "Posted by %1$s on %4$s at %5$s. Bookmark the permalink. Follow any comments here with the RSS feed for this post." +msgstr "Veröffentlicht von %1$s am %4$s um %5$s. Benutzen Sie den Permalink als Lesezeichen. Verfolgen Sie die Kommentare mit dem RSS-Feed für diesen Beitrag." + +#: attachment.php:30 +#: image.php:31 +#, php-format +msgid "Post a comment or leave a trackback: Trackback URL." +msgstr "Schreiben Sie einen Kommentar oder senden Sie einen Trackback: Trackback-URL." + +#: attachment.php:32 +#: image.php:33 +#, php-format +msgid "Comments are closed, but you can leave a trackback: Trackback URL." +msgstr "Kommentare sind deaktiviert, aber Sie können einen Trackback senden: Trackback-URL." + +#: attachment.php:34 +#: image.php:35 +msgid "Trackbacks are closed, but you can post a comment." +msgstr "Trackbacks sind deaktiviert, aber Sie können einen Kommentar schreiben." + +#: attachment.php:36 +#: image.php:37 +msgid "Both comments and trackbacks are currently closed." +msgstr "Kommentare und Trackbacks sind zur Zeit deaktiviert." + +#: author.php:8 +#, php-format +msgid "Author Archives: %s" +msgstr "Autoren-Archiv: %s" + +#: category.php:6 +msgid "Category Archives:" +msgstr "Kategorie-Archiv:" + +#: category.php:28 +#, php-format +msgid "Also posted in %s" +msgstr "Auch in %s veröffentlicht" + +#: comments.php:10 +msgid "This post is protected. Enter the password to view any comments." +msgstr "Dieser Beitrag ist geschützt. Geben Sie das Passwort ein, um Kommentare zu sehen." + +#: comments.php:29 +#, php-format +msgid "%d Comments" +msgstr "%d Kommentare" + +#: comments.php:29 +msgid "One Comment" +msgstr "Ein Kommentar" + +#: comments.php:36 +#, php-format +msgid "Posted %1$s at %2$s | Permalink" +msgstr "Veröffentlicht %1$s um %2$s | Permalink" + +#: comments.php:41 +msgid "\t\t\t\t\tYour comment is awaiting moderation.\n" +msgstr "\t\t\t\t\tIhr Kommentar muss noch genehmigt werden.\n" + +#: comments.php:55 +#, php-format +msgid "%d Trackbacks" +msgstr "%d Trackbacks" + +#: comments.php:55 +msgid "One Trackback" +msgstr "Ein Trackback" + +#: comments.php:62 +#, php-format +msgid "By %1$s on %2$s at %3$s" +msgstr "Von %1$s am %2$s um %3$s" + +#: comments.php:67 +msgid "\\t\\t\\t\\t\\tYour trackback is awaiting moderation.\\n" +msgstr "\\t\\t\\t\\t\\tIhr Trackback muss noch genehmigt werden.\\n" + +#: comments.php:82 +msgid "Post a Comment" +msgstr "Schreiben Sie einen Kommentar" + +#: comments.php:85 +#, php-format +msgid "You must be logged in to post a comment." +msgstr "Sie müssen sich einloggen um einen Kommentar schreiben zu können." + +#: comments.php:93 +#, php-format +msgid "Logged in as %2$s. Log out?" +msgstr "Eingeloggt als %2$s. Ausloggen?" + +#: comments.php:100 +msgid "Your email is never shared." +msgstr "Ihre E-Mail-Adresse wird niemals weitergegeben." + +#: comments.php:100 +msgid "Required fields are marked *" +msgstr "Pflichtfelder sind mit einem * markiert" + +#: comments.php:102 +msgid "Name" +msgstr "Name" + +#: comments.php:102 +#: comments.php:105 +msgid "*" +msgstr "*" + +#: comments.php:105 +msgid "Email" +msgstr "E-Mail" + +#: comments.php:108 +msgid "Website" +msgstr "Website" + +#: comments.php:113 +msgid "Comment" +msgstr "Kommentar" + +#: comments.php:116 +msgid "Post Comment" +msgstr "Kommentar schreiben" + +#: footer.php:3 +msgid "WordPress" +msgstr "WordPress" + +#: footer.php:5 +msgid "Sandbox theme for WordPress" +msgstr "Sandbox Theme für WordPress" + +#: footer.php:5 +msgid "Sandbox" +msgstr "Sandbox" + +#: functions.php:361 +#: functions.php:469 +#: functions.php:471 +#: sidebar.php:35 +msgid "Search" +msgstr "Suche" + +#: functions.php:390 +#: functions.php:443 +msgid "Title:" +msgstr "Titel:" + +#: functions.php:391 +msgid "Button Text:" +msgstr "Schaltflächentext:" + +#: functions.php:400 +#: functions.php:478 +#: functions.php:480 +#: sidebar.php:55 +msgid "Meta" +msgstr "Meta" + +#: functions.php:419 +#: functions.php:487 +#: functions.php:488 +msgid "RSS Links" +msgstr "RSS-Links" + +#: functions.php:424 +msgid "Posts RSS feed" +msgstr "RSS-Feed für Beiträge" + +#: functions.php:424 +#: sidebar.php:49 +msgid "All posts" +msgstr "Alle Beiträge" + +#: functions.php:425 +msgid "Comments RSS feed" +msgstr "RSS-Feed für Kommentare" + +#: functions.php:425 +#: sidebar.php:50 +msgid "All comments" +msgstr "Alle Kommentare" + +#: functions.php:467 +msgid "A search form for your blog (Sandbox)" +msgstr "Ein Suchfeld für Ihr Blog (Sandbox)" + +#: functions.php:476 +msgid "Log in/out and administration links (Sandbox)" +msgstr "Links für Login/Logout und Adminbereich (Sandbox)" + +#: functions.php:485 +msgid "RSS links for both posts and comments (Sandbox)" +msgstr "RSS-Link für Beiträge und Kommentare (Sandbox)" + +#: header.php:8 +#: sidebar.php:49 +#, php-format +msgid "%s latest posts" +msgstr "%s letzten Beiträge" + +#: header.php:9 +#: sidebar.php:50 +#, php-format +msgid "%s latest comments" +msgstr "%s letzten Kommentare" + +#: header.php:23 +msgid "Skip to content" +msgstr "Zum Inhalt" + +#: index.php:19 +#: page.php:13 +msgid "Pages:" +msgstr "Seiten:" + +#: search.php:8 +msgid "Search Results for:" +msgstr "Suchergebnis für:" + +#: search.php:11 +#: search.php:42 +msgid "« Older results" +msgstr "« Ältere Suchergebnisse" + +#: search.php:12 +#: search.php:43 +msgid "Newer results »" +msgstr "Neuere Suchergebnisse »" + +#: search.php:49 +msgid "Nothing Found" +msgstr "Nichts gefunden" + +#: search.php:51 +msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords." +msgstr "Entschuldigung, aber Ihre Suche brachte keine Treffer. Bitte versuchen Sie es mit anderen Suchbegriffen." + +#: sidebar.php:6 +msgid "Pages" +msgstr "Seiten" + +#: sidebar.php:13 +msgid "Categories" +msgstr "Kategorien" + +#: sidebar.php:21 +msgid "Archives" +msgstr "Archive" + +#: sidebar.php:47 +msgid "RSS Feeds" +msgstr "RSS Feeds" + +#: single.php:21 +#, php-format +msgid "This entry was written by %1$s, posted on %4$s at %5$s, filed under %6$s%7$s. Bookmark the permalink. Follow any comments here with the RSS feed for this post." +msgstr "Dieser Beitrag wurde geschrieben von %1$s, veröffentlicht am %4$s um %5$s, abgelegt unter %6$s%7$s. Benutzen Sie den Permalink als Lesezeichen. Verfolgen Sie die Kommentare mit dem RSS-Feed für diesen Beitrag." + +#: single.php:28 +msgid " and tagged " +msgstr "und getaggt" + +#: tag.php:6 +msgid "Tag Archives:" +msgstr "Tag-Archiv:" + +#: tag.php:28 +#, php-format +msgid "Also tagged %s" +msgstr "Auch als %s getaggt" + diff --git a/sandbox/translations/de_DE_informal.mo b/sandbox/translations/de_DE_informal.mo new file mode 100644 index 0000000000000000000000000000000000000000..2ea82823d1c6abe7f491a83f1a568d2b5040c1fc GIT binary patch literal 9569 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 QVJp@$Bf56Q$`Qx^0_qs^oB#j- literal 0 HcmV?d00001 diff --git a/sandbox/translations/de_DE_informal.po b/sandbox/translations/de_DE_informal.po new file mode 100644 index 0000000..d74ef7e --- /dev/null +++ b/sandbox/translations/de_DE_informal.po @@ -0,0 +1,464 @@ +msgid "" +msgstr "" +"Project-Id-Version: Sandbox\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-07-19 00:00-0500\n" +"PO-Revision-Date: \n" +"Last-Translator: Björn von Prollius \n" +"Language-Team: Scott Allan Wallick \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: English\n" +"X-Poedit-Country: UNITED STATES\n" +"X-Poedit-SourceCharset: utf-8\n" +"X-Poedit-KeywordsList: __;_e\n" +"X-Poedit-Basepath: .\n" +"X-Poedit-SearchPath-0: \n" + +#: 404.php:7 +msgid "Not Found" +msgstr "Nicht gefunden" + +#: 404.php:9 +msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help." +msgstr "Entschuldigung, aber wir konnten nicht finden, wonach Du gesucht hast. Bitte benutze die Suche." + +#: 404.php:14 +#: functions.php:362 +#: search.php:56 +#: sidebar.php:39 +msgid "Find" +msgstr "Suchen" + +#: archive.php:9 +#, php-format +msgid "Daily Archives: %s" +msgstr "Tages-Archiv: %s" + +#: archive.php:11 +#, php-format +msgid "Monthly Archives: %s" +msgstr "Monats-Archiv: %s" + +#: archive.php:13 +#, php-format +msgid "Yearly Archives: %s" +msgstr "Jahres-Archiv: %s" + +#: archive.php:15 +msgid "Blog Archives" +msgstr "Blog-Archiv" + +#: archive.php:21 +#: archive.php:48 +#: author.php:12 +#: author.php:39 +#: category.php:11 +#: category.php:40 +#: index.php:7 +#: index.php:37 +msgid "« Older posts" +msgstr "« Ältere Beiträge" + +#: archive.php:22 +#: archive.php:49 +#: author.php:13 +#: author.php:40 +#: category.php:12 +#: category.php:41 +#: index.php:8 +#: index.php:38 +msgid "Newer posts »" +msgstr "Neuere Beiträge »" + +#: archive.php:28 +#: author.php:21 +#: category.php:18 +#: index.php:14 +#: search.php:18 +#, php-format +msgid "Permalink to %s" +msgstr "Permalink zu %s" + +#: archive.php:29 +#: author.php:22 +#: category.php:19 +#: index.php:15 +#: search.php:19 +#, php-format +msgid "%1$s – %2$s" +msgstr "%1$s – %2$s" + +#: archive.php:31 +#: author.php:24 +#: category.php:21 +#: index.php:17 +#: search.php:21 +msgid "Read More »" +msgstr "Weiterlesen »" + +#: archive.php:35 +#: category.php:25 +#: index.php:22 +#: search.php:27 +#, php-format +msgid "By %s" +msgstr "Geschrieben von %s" + +#: archive.php:35 +#: attachment.php:20 +#: category.php:25 +#: image.php:21 +#: index.php:22 +#: search.php:27 +#, php-format +msgid "View all posts by %s" +msgstr "Alle Beiträge von %s ansehen" + +#: archive.php:37 +#: author.php:28 +#: index.php:24 +#: search.php:29 +#, php-format +msgid "Posted in %s" +msgstr "Veröffentlicht in %s" + +#: archive.php:39 +#: author.php:30 +#: category.php:31 +#: index.php:26 +#: search.php:31 +msgid "Tagged " +msgstr "Getaggt als " + +#: archive.php:40 +#: archives.php:32 +#: attachment.php:38 +#: author.php:31 +#: category.php:32 +#: comments.php:40 +#: comments.php:66 +#: image.php:39 +#: index.php:27 +#: links.php:22 +#: page.php:15 +#: search.php:32 +msgid "Edit" +msgstr "Bearbeiten" + +#: archive.php:41 +#: author.php:32 +#: category.php:33 +#: index.php:28 +#: search.php:33 +msgid "Comments (0)" +msgstr "Kommentare (0)" + +#: archive.php:41 +#: author.php:32 +#: category.php:33 +#: index.php:28 +#: search.php:33 +msgid "Comments (1)" +msgstr "Kommentare (1)" + +#: archive.php:41 +#: author.php:32 +#: category.php:33 +#: index.php:28 +#: search.php:33 +msgid "Comments (%)" +msgstr "Kommentare (%)" + +#: archives.php:20 +msgid "Archives by Category" +msgstr "Kategorie-Archiv" + +#: archives.php:26 +msgid "Archives by Month" +msgstr "Monats-Archiv" + +#: attachment.php:8 +#: image.php:8 +#, php-format +msgid "Return to %s" +msgstr "Zurück zu %s" + +#: attachment.php:19 +#: image.php:20 +#, php-format +msgid "Posted by %1$s on %4$s at %5$s. Bookmark the permalink. Follow any comments here with the RSS feed for this post." +msgstr "Veröffentlicht von %1$s am %4$s um %5$s. Benutze den Permalink als Lesezeichen. Verfolge die Kommentare mit dem RSS-Feed für diesen Beitrag." + +#: attachment.php:30 +#: image.php:31 +#, php-format +msgid "Post a comment or leave a trackback: Trackback URL." +msgstr "Schreibe einen Kommentar oder sende einen Trackback: Trackback-URL." + +#: attachment.php:32 +#: image.php:33 +#, php-format +msgid "Comments are closed, but you can leave a trackback: Trackback URL." +msgstr "Kommentare sind deaktiviert, aber Du kannst einen Trackback senden: Trackback-URL." + +#: attachment.php:34 +#: image.php:35 +msgid "Trackbacks are closed, but you can post a comment." +msgstr "Trackbacks sind deaktiviert, aber Du kannst einen Kommentar schreiben." + +#: attachment.php:36 +#: image.php:37 +msgid "Both comments and trackbacks are currently closed." +msgstr "Kommentare und Trackbacks sind zur Zeit deaktiviert." + +#: author.php:8 +#, php-format +msgid "Author Archives: %s" +msgstr "Autoren-Archiv: %s" + +#: category.php:6 +msgid "Category Archives:" +msgstr "Kategorie-Archiv:" + +#: category.php:28 +#, php-format +msgid "Also posted in %s" +msgstr "Auch in %s veröffentlicht" + +#: comments.php:10 +msgid "This post is protected. Enter the password to view any comments." +msgstr "Dieser Beitrag ist geschützt. Gib das Passwort ein, um Kommentare zu sehen." + +#: comments.php:29 +#, php-format +msgid "%d Comments" +msgstr "%d Kommentare" + +#: comments.php:29 +msgid "One Comment" +msgstr "Ein Kommentar" + +#: comments.php:36 +#, php-format +msgid "Posted %1$s at %2$s | Permalink" +msgstr "Veröffentlicht %1$s um %2$s | Permalink" + +#: comments.php:41 +msgid "\t\t\t\t\tYour comment is awaiting moderation.\n" +msgstr "\t\t\t\t\tDein Kommentar muss noch genehmigt werden.\n" + +#: comments.php:55 +#, php-format +msgid "%d Trackbacks" +msgstr "%d Trackbacks" + +#: comments.php:55 +msgid "One Trackback" +msgstr "Ein Trackback" + +#: comments.php:62 +#, php-format +msgid "By %1$s on %2$s at %3$s" +msgstr "Von %1$s am %2$s um %3$s" + +#: comments.php:67 +msgid "\\t\\t\\t\\t\\tYour trackback is awaiting moderation.\\n" +msgstr "\\t\\t\\t\\t\\tDein Trackback muss noch genehmigt werden.\\n" + +#: comments.php:82 +msgid "Post a Comment" +msgstr "Schreibe einen Kommentar" + +#: comments.php:85 +#, php-format +msgid "You must be logged in to post a comment." +msgstr "Du musst dich einloggen um einen Kommentar schreiben zu können." + +#: comments.php:93 +#, php-format +msgid "Logged in as %2$s. Log out?" +msgstr "Eingeloggt als %2$s. Ausloggen?" + +#: comments.php:100 +msgid "Your email is never shared." +msgstr "Deine E-Mail-Adresse wird niemals weitergegeben." + +#: comments.php:100 +msgid "Required fields are marked *" +msgstr "Pflichtfelder sind mit einem * markiert" + +#: comments.php:102 +msgid "Name" +msgstr "Name" + +#: comments.php:102 +#: comments.php:105 +msgid "*" +msgstr "*" + +#: comments.php:105 +msgid "Email" +msgstr "E-Mail" + +#: comments.php:108 +msgid "Website" +msgstr "Website" + +#: comments.php:113 +msgid "Comment" +msgstr "Kommentar" + +#: comments.php:116 +msgid "Post Comment" +msgstr "Kommentar schreiben" + +#: footer.php:3 +msgid "WordPress" +msgstr "WordPress" + +#: footer.php:5 +msgid "Sandbox theme for WordPress" +msgstr "Sandbox Theme für WordPress" + +#: footer.php:5 +msgid "Sandbox" +msgstr "Sandbox" + +#: functions.php:361 +#: functions.php:469 +#: functions.php:471 +#: sidebar.php:35 +msgid "Search" +msgstr "Suche" + +#: functions.php:390 +#: functions.php:443 +msgid "Title:" +msgstr "Titel:" + +#: functions.php:391 +msgid "Button Text:" +msgstr "Schaltflächentext:" + +#: functions.php:400 +#: functions.php:478 +#: functions.php:480 +#: sidebar.php:55 +msgid "Meta" +msgstr "Meta" + +#: functions.php:419 +#: functions.php:487 +#: functions.php:488 +msgid "RSS Links" +msgstr "RSS-Links" + +#: functions.php:424 +msgid "Posts RSS feed" +msgstr "RSS-Feed für Beiträge" + +#: functions.php:424 +#: sidebar.php:49 +msgid "All posts" +msgstr "Alle Beiträge" + +#: functions.php:425 +msgid "Comments RSS feed" +msgstr "RSS-Feed für Kommentare" + +#: functions.php:425 +#: sidebar.php:50 +msgid "All comments" +msgstr "Alle Kommentare" + +#: functions.php:467 +msgid "A search form for your blog (Sandbox)" +msgstr "Ein Suchfeld für Ihr Blog (Sandbox)" + +#: functions.php:476 +msgid "Log in/out and administration links (Sandbox)" +msgstr "Links für Login/Logout und Adminbereich (Sandbox)" + +#: functions.php:485 +msgid "RSS links for both posts and comments (Sandbox)" +msgstr "RSS-Link für Beiträge und Kommentare (Sandbox)" + +#: header.php:8 +#: sidebar.php:49 +#, php-format +msgid "%s latest posts" +msgstr "%s letzten Beiträge" + +#: header.php:9 +#: sidebar.php:50 +#, php-format +msgid "%s latest comments" +msgstr "%s letzten Kommentare" + +#: header.php:23 +msgid "Skip to content" +msgstr "Zum Inhalt" + +#: index.php:19 +#: page.php:13 +msgid "Pages:" +msgstr "Seiten:" + +#: search.php:8 +msgid "Search Results for:" +msgstr "Suchergebnis für:" + +#: search.php:11 +#: search.php:42 +msgid "« Older results" +msgstr "« Ältere Suchergebnisse" + +#: search.php:12 +#: search.php:43 +msgid "Newer results »" +msgstr "Neuere Suchergebnisse »" + +#: search.php:49 +msgid "Nothing Found" +msgstr "Nichts gefunden" + +#: search.php:51 +msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords." +msgstr "Entschuldigung, aber Deine Suche brachte keine Treffer. Bitte versuche es mit anderen Suchbegriffen." + +#: sidebar.php:6 +msgid "Pages" +msgstr "Seiten" + +#: sidebar.php:13 +msgid "Categories" +msgstr "Kategorien" + +#: sidebar.php:21 +msgid "Archives" +msgstr "Archive" + +#: sidebar.php:47 +msgid "RSS Feeds" +msgstr "RSS Feeds" + +#: single.php:21 +#, php-format +msgid "This entry was written by %1$s, posted on %4$s at %5$s, filed under %6$s%7$s. Bookmark the permalink. Follow any comments here with the RSS feed for this post." +msgstr "Dieser Beitrag wurde geschrieben von %1$s, veröffentlicht am %4$s um %5$s, abgelegt unter %6$s%7$s. Benutze den Permalink als Lesezeichen. Verfolge die Kommentare mit dem RSS-Feed für diesen Beitrag." + +#: single.php:28 +msgid " and tagged " +msgstr "und getaggt" + +#: tag.php:6 +msgid "Tag Archives:" +msgstr "Tag-Archiv:" + +#: tag.php:28 +#, php-format +msgid "Also tagged %s" +msgstr "Auch als %s getaggt" + diff --git a/sandbox/translations/default.mo b/sandbox/translations/default.mo new file mode 100644 index 0000000000000000000000000000000000000000..041d195be237aaaf8103f601e03de00a1ce3f4d1 GIT binary patch literal 386 zcmZvW&rZWI4917x)FWpOIdB7)rrS`-#Dy_nq7xG;h}#re(*=#BO3a@<2(QPp;A%iG zSo+Db{n?+tc6UB|99zsDv(IcZhfEt8bH&3G&aLJz=H5MHNieP89(^#*DnVY`u+oIl z{HB1hM@`&^bM7dSCbADwLOKv>UnRqXL?#If;TGRayZ^uLc%#d8ASizBJFi5PYg@nS z8lgb_!u4!An{=8#@x^Qu}~(dRJUP*6G^wPv~J{OII0N zE0H}KiXPw+EqYC@@7!T!NXU2?4|uXE;TqTP&Q~Effs|N`YNXchH!rMnO{YH70UJ$A ICE}>}4J|ipkN^Mx literal 0 HcmV?d00001 diff --git a/sandbox/translations/default.po b/sandbox/translations/default.po new file mode 100644 index 0000000..2e8b140 --- /dev/null +++ b/sandbox/translations/default.po @@ -0,0 +1,13 @@ +msgid "" +msgstr "" +"Project-Id-Version: translate\n" +"POT-Creation-Date: 2013-11-24 23:05+0100\n" +"PO-Revision-Date: 2013-11-24 23:06+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 1.5.4\n" +"X-Poedit-KeywordsList: _;gettext;gettext_noop\n" +"X-Poedit-Basepath: .\n" diff --git a/sandbox/translations/he_IL.mo b/sandbox/translations/he_IL.mo new file mode 100644 index 0000000000000000000000000000000000000000..704cc0d457b7b58153b83c644f7ab1317a8c050b GIT binary patch literal 9872 zcmd6sYiu0Xb;qwA=cU+foTiT?ZGF8q{gQS`%Cb#U)J6|Wi4(m_(McURafiD@a;x1P zdS)q_KwzV3fdXwm=s`xNMbWY%I21pm`C=4J<1cNK0xgQB36g0(Bn{A_Md1$(P#_6V z^zr-OdF+g|lI6HXJJjrd?w$KM_niMZ=ibrx-*?N3;hN(9W$v%uY|Jy@Q*Y;o%f8c? zkAZiBw}Nf(c5n%NANc#=&w}gVH^DD~uY$kzE@MW)N8WABgJ28113aJNYv3I0dR=={h;PO4${Ot3u^w)fjAVZnI2DQGw16h)J9aQ^&OHl=tZ{tVvd=Oj*w}D#cUxBxP zuY(%*hiUmoV3qQ}r{((*>Q2fvQ0UDJ zGNkz-D82j#7=pJ_c=RS?o(J{*k7=y;Uk5erw^RIkaG3JHr1*jN8Z%D$aZvq!2b3O8 zfgb`_LCyav_;cV_LAsi6fKP)z01?6LMmclLe;C|N`HxVl`uzl40RIb=y%rcmQNH+d!6xm#3~F6}o|gXx{0QZL z03QUmVx-5wr$OoC5-9$>3TnRBK=uDFD7*e6D1F{iAvS>@0%f1`;POqzd>It4_CqpU z+`Isu1TTU2gAWZQ@;wd84gn}VE`h%RUI53zo2WbnPJj&St~$Tlxh40_t|pO9k92d_ zL4J2}ONNhe@8f=eTbK0zFn3jj^pcFSlP;}Sm-LI9IljneShDjq3rcsopkWecz)|jB zO*Hq-^}%w6t@m+%tv?wogtifMI)1lj zTaon^y;iT)owc2y>4#pg6?AJ8!|Gk%VyxF~+MYK%>o=_#8ofKR_uMtMeROoE9ol|( zWQHQ!_IiHQ%LXh~%?D90G80}ZL?xZG+HQ4^SL|Hq&+Mw)75dS9&}~+1uhnb&yDCTN zWa*N~SE-lF6T@EJ2BB^H-U**(z0hkMpXMI7{dw}r(o929KF3tn%RVuA(9SU4l5`?@ zD>n4oyDIq*m3pbM=C7HeYAfwP%4u~g^@Hxowz}4fBu=tIDJ`G5)I=Jr)b;CzO?7Us z96ea*RqFlW9xM-Md2NFk+nbXq8;xM0OLOMYiw|qyblkGk9lz&QyWWXP{hqe>%tEj; zoBc=|5;#?0x&nnNZ_oofF0^ItVxQ1|W}y}O%}V`&fl@#$XCu@wm2%AWuMagddG;kl zNCz&w$nBE7I@0y8=#&UkFTBV*nLRf0y|6JS^LP3jn8uv;zGJX{I(YVev!~t8s2I6I z!s$KjC~!K$D=_zv-cghKiHh?91GW5Uo1Ml!i$4EC-{OYTZQu3+JJZ6i7U#U4sF%EK z2f=Z&;#%A!}^*2EDml2}wN2{0GLds>VVX5=+`kIC>EI z&6?S}(CY(MnO?swe4{f?)#$WexRH_gJWrFRu@ehc@D}1QaE+uFeM(B(R#w0o+hQbR9l%}m~OYCIf7o6(j?TB zD36crNFCrI7xd{?ui3pge#Z-0?wnu98xI!(eMz{XNA$+!sp+(9r9NMjv4&dP?O+j- z;FM_uC3fJfi!HplJkeNTqExSul?O@v{kgn$&kwr<85XuQPpW21(QY*y^@hVJ+WKs# zU8!fD=R&Geqe5nqH)Xp#Vyci#;~Z7}4&bqo(bGXO**ztkR*s%l9MWKf5V)T&tIzjI z-)q`K0js>40!gkbGk7vhPefzC-Asa+41tWL0S2V8Nx!!cc2k0;4rfx7dON;Tz$b&S zc@!6k%rTd3Qm~Urwp5#ObL@C)UL!S#)x=SAEC|D;BuaHtFX?!_29!$nDQV(rge?rx z@<M*%`KTQf75ot@rse`yhEqM9Mq_Ct=D(#C-XbY5iNvdE}N zkLiU6cGpPL|34=>IJFM@O#5{{Ccdo&8SH;;%N{ zY{q+j18=C={a8J8E;-L$T{aRKPPF{8`(iikkjG8Fhe@;VfTY&n3#VRE+6lkmp4$nT z@4*w_{e+W;9Z2GVihhy#q(2=&Ler=DlhFLS$%fO1?JS^#>0+!a?U2cEl{#AxojF=v zO)rI%g{m0_3aziyD1A=&oqE?l;fE8$JlSZDe9uPYsb2P1a_IhXsFECq$e_tN;tdW& zPj$`FF!)U@SAD!${e&MzZE_7rGZQB9;uFu+R;bHN5-~} zJV?8PUev3?g>J+Nj4)#NbXuW((re38S&yq{kZ8BZizTmJo1usFRh#M5>E4}PAnR7A ze6KTZKk841{^FKHk009KU)E@CWXrxJC{?Ej`Qx_7j&69qO^n%T8|XOld%K>PI#3CwaWg+l|7Jm7=<=#^@g<&K zj$d#i6kao+d6S;SP#X+&-sV#-SLy>Q9m$z$#m395=VZKL2Da z43j<%7-ql@qclz7pv=H2w_S_EiP*i7F_<8cviLG*fXUk}C#tR^<=J>MJN-GXz#tqf znc<4pFEIY4_+?9u|Y+7}RVLuT0~|7C6$3pC9u$Z=M_tQs|4Nf<)35JgsTs>|_aP2E;#v07Tj zD#L!B`i+|5{RU#LQhKRaNXZ~4qVE@xM8Qe2EML2seB?}gx!3@vine&p8=c0Bl4ymg zrVVk$O`UkOG`CU=G>&X517iTI)5_$o#EEk(#d+?ybc@p@=NhLhjp)u)lrE#3<>cs| zwZj@k4LH*l^mc`Q7(XKcy2>6Ur%v_d3QqRr3QqSfl)}40&yo@f^?h2%UYm*wSvXw% ze-~TJ1{UMi zTr2wLIvi$zlHF3m4iw`uY0x=qo+8hR+zgGYN_v815;?LXaUn>S4`4K1LB2FdCc`-1 zzR6+O2Ur#-cV{KVl0`Ip%%Hq=<~k!OO9e=ot4@4X^t@;hX-ykk)_G|k8Ha{IMX6cFK0%EwQ+_`N|y>3`!Xo+JlE5Dko}`?B2F zK`$Gru$f}x;Y2N|+a)m(gSb`7cCIdAV{SFMuB$I_GOx2qF3cxXU-`7lkbN$=aGHMs zM4cP*jf*rqbE8gq88>lWc!7tF%(K^Bf?0PlIKOpUU?k5Ek`h-ErmDVrJt%q^N%Ad_B;gqAJ^}Hd iP`4JJPrd{3gvTd4qs{mWH}pY>5#$dy_`QKILjMgcKzW=1 literal 0 HcmV?d00001 diff --git a/sandbox/translations/he_IL.po b/sandbox/translations/he_IL.po new file mode 100644 index 0000000..55e427c --- /dev/null +++ b/sandbox/translations/he_IL.po @@ -0,0 +1,429 @@ +# Amir Yalon , 2008. http://www.yxejamir.net/ +# translation of sandbox.pot to Hebrew +msgid "" +msgstr "" +"Project-Id-Version: Sandbox 1.6\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-06-28 01:04-0500\n" +"PO-Revision-Date: 2008-07-01 19:08+0300\n" +"Last-Translator: Amir Yalon \n" +"Language-Team: Hebrew\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#: 404.php:7 +msgid "Not Found" +msgstr "לא נמצא" + +#: 404.php:9 +msgid "" +"Apologies, but we were unable to find what you were looking for. Perhaps " +"searching will help." +msgstr "מצטערים, אבל לא הצלחנו למצוא מה שביקשת. אולי חיפוש יעזור." + +#: 404.php:14 functions.php:362 search.php:56 sidebar.php:39 +msgid "Find" +msgstr "מצא" + +#: archive.php:9 +#, php-format +msgid "Daily Archives: %s" +msgstr "ארכיון יומי: %s" + +#: archive.php:11 +#, php-format +msgid "Monthly Archives: %s" +msgstr "ארכיון חודשי: %s" + +#: archive.php:13 +#, php-format +msgid "Yearly Archives: %s" +msgstr "ארכיון שנתי: %s" + +#: archive.php:15 +msgid "Blog Archives" +msgstr "ארכיון הבלוג" + +#: archive.php:21 archive.php:48 author.php:12 author.php:39 category.php:11 +#: category.php:40 index.php:7 index.php:37 +msgid "« Older posts" +msgstr "« פוסטים ישנים יותר" + +#: archive.php:22 archive.php:49 author.php:13 author.php:40 category.php:12 +#: category.php:41 index.php:8 index.php:38 +msgid "Newer posts »" +msgstr "פוסטים חדשים יותר »" + +#: archive.php:28 author.php:21 category.php:18 index.php:14 search.php:18 +#, php-format +msgid "Permalink to %s" +msgstr "קישור קבוע אל %s" + +#: archive.php:29 author.php:22 category.php:19 index.php:15 search.php:19 +#, php-format +msgid "%1$s – %2$s" +msgstr "%1$s – %2$s" + +#: archive.php:31 author.php:24 category.php:21 index.php:17 search.php:21 +msgid "Read More »" +msgstr "קרא עוד »" + +#: archive.php:35 category.php:25 index.php:22 search.php:27 +#, php-format +msgid "By %s" +msgstr "מאת %s" + +#: archive.php:35 attachment.php:20 category.php:25 image.php:21 index.php:22 +#: search.php:27 +#, php-format +msgid "View all posts by %s" +msgstr "הצג את כל הפוסטים מאת %s" + +#: archive.php:37 author.php:28 index.php:24 search.php:29 +#, php-format +msgid "Posted in %s" +msgstr "פורסם ב%s" + +#: archive.php:39 author.php:30 category.php:31 index.php:26 search.php:31 +msgid "Tagged " +msgstr "תגים " + +#: archive.php:40 archives.php:32 attachment.php:38 author.php:31 +#: category.php:32 comments.php:40 comments.php:66 image.php:39 index.php:27 +#: links.php:22 page.php:15 search.php:32 +msgid "Edit" +msgstr "ערוך" + +#: archive.php:41 author.php:32 category.php:33 index.php:28 search.php:33 +msgid "Comments (0)" +msgstr "תגובות (0)" + +#: archive.php:41 author.php:32 category.php:33 index.php:28 search.php:33 +msgid "Comments (1)" +msgstr "תגובות (1)" + +#: archive.php:41 author.php:32 category.php:33 index.php:28 search.php:33 +msgid "Comments (%)" +msgstr "תגובות (%)" + +#: archives.php:20 +msgid "Archives by Category" +msgstr "ארכיונים לפי קטגוריה" + +#: archives.php:26 +msgid "Archives by Month" +msgstr "ארכיונים לפי חודש" + +#: attachment.php:8 image.php:8 +#, php-format +msgid "Return to %s" +msgstr "חזור אל %s" + +#: attachment.php:19 image.php:20 +#, php-format +msgid "" +"Posted by %1$s on %4$s at %5" +"$s. Bookmark the permalink. Follow any comments here with the RSS feed for this post." +msgstr "" +"פורסם מאת %1$s ב%4" +"$s בשעה %5$s. שמור קישור קבוע. עקוב אחר תגובות כאן בעזרת רסס לפוסט זה." + +#: attachment.php:30 image.php:31 +#, php-format +msgid "" +"Post a " +"comment or leave a trackback: Trackback URL." +msgstr "" +"פרסם תגובה או השאר עקבות: Trackback URL." + +#: attachment.php:32 image.php:33 +#, php-format +msgid "" +"Comments are closed, but you can leave a trackback: Trackback URL." +msgstr "" +"סגור לתגובות, אבל ניתן להשאיר עקבות: Trackback URL." + +#: attachment.php:34 image.php:35 +msgid "" +"Trackbacks are closed, but you can post a comment." +msgstr "" +"סגור להשארת עקבות, אבל ניתן לפרסם תגובה." + +#: attachment.php:36 image.php:37 +msgid "Both comments and trackbacks are currently closed." +msgstr "סגור לפרסום תגובות והשארת עקבות." + +#: author.php:8 +#, php-format +msgid "Author Archives: %s" +msgstr "ארכיון מחבר: %s" + +#: category.php:6 +msgid "Category Archives:" +msgstr "ארכיון קטגוריה:" + +#: category.php:28 +#, php-format +msgid "Also posted in %s" +msgstr "פורסם גם ב%s" + +#: comments.php:10 +msgid "This post is protected. Enter the password to view any comments." +msgstr "פוסט זה מוגן. הכנס את הסיסמה כדי לראות תגובות." + +#: comments.php:29 +#, php-format +msgid "%d Comments" +msgstr "%d תגובות" + +#: comments.php:29 +msgid "One Comment" +msgstr "תגובה אחת" + +#: comments.php:36 +#, php-format +msgid "" +"Posted %1$s at %2$s | Permalink" +msgstr "" +"פורסמה ביום %1$s בשעה %2$s | קישור קבוע" + +#: comments.php:41 +msgid "" +"\t\t\t\t\tYour comment is awaiting moderation.\n" +msgstr "\t\t\t\t\tתגובתך ממתינה לאישור.\n" + +#: comments.php:55 +#, php-format +msgid "%d Trackbacks" +msgstr "%d עקבות" + +#: comments.php:55 +msgid "One Trackback" +msgstr "עקיבה אחת" + +#: comments.php:62 +#, php-format +msgid "By %1$s on %2$s at %3$s" +msgstr "מאת %1$s ביום %2$s בשעה %3$s" + +#: comments.php:67 +msgid "" +"\\t\\t\\t\\t\\tYour trackback is awaiting " +"moderation.\\n" +msgstr "\\t\\t\\t\\t\\tעקיבתך ממתינה לאישור.\\n" + +#: comments.php:82 +msgid "Post a Comment" +msgstr "פרסם תגובה" + +#: comments.php:85 +#, php-format +msgid "You must be logged in to post a comment." +msgstr "עליך להיות מחובר כדי לפרסם תגובה." + +#: comments.php:93 +#, php-format +msgid "" +"Logged in as %2$s. Log out?" +msgstr "" +"מחובר בתור %2$s. לצאת?" + +#: comments.php:100 +msgid "Your email is never shared." +msgstr "האימייל שלך לעולם לא ישותף." + +#: comments.php:100 +msgid "Required fields are marked *" +msgstr "שדות נדרשים מסומנים *" + +#: comments.php:102 +msgid "Name" +msgstr "שם" + +#: comments.php:102 comments.php:105 +msgid "*" +msgstr "*" + +#: comments.php:105 +msgid "Email" +msgstr "אימייל" + +#: comments.php:108 +msgid "Website" +msgstr "אתר ברשת" + +#: comments.php:113 +msgid "Comment" +msgstr "תגובה" + +#: comments.php:116 +msgid "Post Comment" +msgstr "פרסם תגובה" + +#: footer.php:3 +msgid "WordPress" +msgstr "WordPress" + +#: footer.php:5 +msgid "Sandbox theme for WordPress" +msgstr "Sandbox theme for WordPress" + +#: footer.php:5 +msgid "Sandbox" +msgstr "Sandbox" + +#: functions.php:361 functions.php:469 functions.php:471 sidebar.php:35 +msgid "Search" +msgstr "חיפוש" + +#: functions.php:390 functions.php:443 +msgid "Title:" +msgstr "כותרת:" + +#: functions.php:391 +msgid "Button Text:" +msgstr "כיתוב כפתור:" + +#: functions.php:400 functions.php:478 functions.php:480 sidebar.php:55 +msgid "Meta" +msgstr "מטא" + +#: functions.php:419 functions.php:487 functions.php:488 +msgid "RSS Links" +msgstr "קישורי רסס" + +#: functions.php:424 +msgid "Posts RSS feed" +msgstr "רסס פוסטים" + +#: functions.php:424 sidebar.php:49 +msgid "All posts" +msgstr "כל הפוסטים" + +#: functions.php:425 +msgid "Comments RSS feed" +msgstr "רסס תגובות" + +#: functions.php:425 sidebar.php:50 +msgid "All comments" +msgstr "כל התגובות" + +#: functions.php:467 +msgid "A search form for your blog (Sandbox)" +msgstr "טופס חיפוש לבלוג שלך (Sandbox)" + +#: functions.php:476 +msgid "Log in/out and administration links (Sandbox)" +msgstr "קישורי כניסה/יציאה וניהול (Sandbox)" + +#: functions.php:485 +msgid "RSS links for both posts and comments (Sandbox)" +msgstr "קישורי רסס גם לפוסטים וגם לתגובות (Sandbox)" + +#: header.php:8 sidebar.php:49 +#, php-format +msgid "%s latest posts" +msgstr "%s פוסטים אחרונים" + +#: header.php:9 sidebar.php:50 +#, php-format +msgid "%s latest comments" +msgstr "%s תגובות אחרונות" + +#: header.php:23 +msgid "Skip to content" +msgstr "דלג אל התוכן" + +#: index.php:19 page.php:13 +msgid "Pages:" +msgstr "עמודים:" + +#: search.php:8 +msgid "Search Results for:" +msgstr "חפש בתוצאות עבור:" + +#: search.php:11 search.php:42 +msgid "« Older results" +msgstr "« תוצאות ישנות יותר" + +#: search.php:12 search.php:43 +msgid "Newer results »" +msgstr "תוצאות חדשות יותר »" + +#: search.php:49 +msgid "Nothing Found" +msgstr "לא נמצא דבר" + +#: search.php:51 +msgid "" +"Sorry, but nothing matched your search criteria. Please try again with some " +"different keywords." +msgstr "מצטערים, אבל דבר לא תאם את שאילתת החיפוש. אנא נסה שוב עם מלות מפתח שונות." + +#: sidebar.php:6 +msgid "Pages" +msgstr "עמודים" + +#: sidebar.php:13 +msgid "Categories" +msgstr "קטגוריות" + +#: sidebar.php:21 +msgid "Archives" +msgstr "ארכיון" + +#: sidebar.php:47 +msgid "RSS Feeds" +msgstr "רססים" + +#: single.php:21 +#, php-format +msgid "" +"This entry was written by %1$s, posted on %4$s at %5$s, filed under %6$s%7$s. Bookmark the permalink. Follow " +"any comments here with the RSS feed for this post." +msgstr "" +"ערך זה מאת %1$s פורסם ביום %4" +"$s בשעה %5$s, תחת %6$s%7$s. שמור קישור קבוע. עקוב אחר תגובות כאן בעזרת רסס לפוסט זה. " + +#: single.php:28 +msgid " and tagged " +msgstr " ותגים " + +#: tag.php:6 +msgid "Tag Archives:" +msgstr "ארכיון תג:" + +#: tag.php:28 +#, php-format +msgid "Also tagged %s" +msgstr "גם בתגים %s" + diff --git a/sandbox/translations/it_IT.mo b/sandbox/translations/it_IT.mo new file mode 100644 index 0000000000000000000000000000000000000000..c022568a817494589951dabc12ba68561f865574 GIT binary patch literal 9294 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 literal 0 HcmV?d00001 diff --git a/sandbox/translations/it_IT.po b/sandbox/translations/it_IT.po new file mode 100644 index 0000000..778c672 --- /dev/null +++ b/sandbox/translations/it_IT.po @@ -0,0 +1,490 @@ +# Italian localization of the Sandbox theme for Wordpress +# This file is put in the public domain. +# +msgid "" +msgstr "" +"Project-Id-Version: Sandbox 1.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-07-19 00:00-0500\n" +"PO-Revision-Date: 2008-07-23 15:27+0100\n" +"Last-Translator: Jan Reister \n" +"Language-Team: Nokao , Jan , Brigitte bwat.it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Italian\n" +"X-Poedit-Country: ITALY\n" +"X-Poedit-SourceCharset: utf-8\n" + +#: 404.php:7 +msgid "Not Found" +msgstr "Non trovato" + +#: 404.php:9 +msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help." +msgstr "Siamo spiacenti, ma non siamo riusciti a trovare quello che cercavi. Prova a fare una ricerca." + +#: 404.php:14 +#: functions.php:362 +#: search.php:56 +#: sidebar.php:39 +msgid "Find" +msgstr "Trova" + +#: archive.php:9 +#, php-format +msgid "Daily Archives: %s" +msgstr "Archivio per giorni: %s" + +#: archive.php:11 +#, php-format +msgid "Monthly Archives: %s" +msgstr "Archivio per mese: %s" + +#: archive.php:13 +#, php-format +msgid "Yearly Archives: %s" +msgstr "Archivio per anno: %s" + +#: archive.php:15 +msgid "Blog Archives" +msgstr "Archivi" + +#: archive.php:21 +#: archive.php:48 +#: author.php:12 +#: author.php:39 +#: category.php:11 +#: category.php:40 +#: index.php:7 +#: index.php:37 +msgid "« Older posts" +msgstr "« Articoli più vecchi" + +#: archive.php:22 +#: archive.php:49 +#: author.php:13 +#: author.php:40 +#: category.php:12 +#: category.php:41 +#: index.php:8 +#: index.php:38 +msgid "Newer posts »" +msgstr "Articoli più recenti »" + +#: archive.php:28 +#: author.php:21 +#: category.php:18 +#: index.php:14 +#: search.php:18 +#, php-format +msgid "Permalink to %s" +msgstr "Permalink a %s" + +#: archive.php:29 +#: author.php:22 +#: category.php:19 +#: index.php:15 +#: search.php:19 +#, php-format +msgid "%1$s – %2$s" +msgstr "%1$s – %2$s" + +#: archive.php:31 +#: author.php:24 +#: category.php:21 +#: index.php:17 +#: search.php:21 +msgid "Read More »" +msgstr "Leggi il seguito »" + +#: archive.php:35 +#: category.php:25 +#: index.php:22 +#: search.php:27 +#, php-format +msgid "By %s" +msgstr "Di %s" + +#: archive.php:35 +#: attachment.php:20 +#: category.php:25 +#: image.php:21 +#: index.php:22 +#: search.php:27 +#, php-format +msgid "View all posts by %s" +msgstr "Leggi tutti gli articoli di %s" + +#: archive.php:37 +#: author.php:28 +#: index.php:24 +#: search.php:29 +#, php-format +msgid "Posted in %s" +msgstr "Archiviato in %s" + +#: archive.php:39 +#: author.php:30 +#: category.php:31 +#: index.php:26 +#: search.php:31 +msgid "Tagged " +msgstr "Contrassegnato con i tag " + +#: archive.php:40 +#: archives.php:32 +#: attachment.php:38 +#: author.php:31 +#: category.php:32 +#: comments.php:40 +#: comments.php:66 +#: image.php:39 +#: index.php:27 +#: links.php:22 +#: page.php:15 +#: search.php:32 +msgid "Edit" +msgstr "Modifica" + +#: archive.php:41 +#: author.php:32 +#: category.php:33 +#: index.php:28 +#: search.php:33 +msgid "Comments (0)" +msgstr "Nessun Commento" + +#: archive.php:41 +#: author.php:32 +#: category.php:33 +#: index.php:28 +#: search.php:33 +msgid "Comments (1)" +msgstr "Commenti (1)" + +#: archive.php:41 +#: author.php:32 +#: category.php:33 +#: index.php:28 +#: search.php:33 +msgid "Comments (%)" +msgstr "Commenti (%)" + +#: archives.php:20 +msgid "Archives by Category" +msgstr "Archivi per categoria" + +#: archives.php:26 +msgid "Archives by Month" +msgstr "Archivi per mese" + +#: attachment.php:8 +#: image.php:8 +#, php-format +msgid "Return to %s" +msgstr "Ritorna a %s" + +#: attachment.php:19 +#: image.php:20 +#, php-format +msgid "Posted by %1$s on %4$s at %5$s. Bookmark the permalink. Follow any comments here with the RSS feed for this post." +msgstr "Questo articolo è stato scritto da %1$s il %4$s alle %5$s. Salva nei segnalibri il permalink. Seguine i commenti qui con il feed RSS di questo articolo." + +#: attachment.php:30 +#: image.php:31 +#, php-format +msgid "Post a comment or leave a trackback: Trackback URL." +msgstr "Scrivi un commento o lascia un trackback: Indirizzo per il trackback." + +#: attachment.php:32 +#: image.php:33 +#, php-format +msgid "Comments are closed, but you can leave a trackback: Trackback URL." +msgstr "I commenti sono chiusi, ma puoi lasciare un trackback:Indirizzo per il trackback." + +#: attachment.php:34 +#: image.php:35 +msgid "Trackbacks are closed, but you can post a comment." +msgstr "I trackback sono chiusi, ma puoi scrivere un commento." + +#: attachment.php:36 +#: image.php:37 +msgid "Both comments and trackbacks are currently closed." +msgstr "Commenti e trackback sono attualmente chiusi." + +#: author.php:8 +#, php-format +msgid "Author Archives: %s" +msgstr "Archivi per autore: %s" + +#: category.php:6 +msgid "Category Archives:" +msgstr "Archivi delle categorie" + +#: category.php:28 +#, php-format +msgid "Also posted in %s" +msgstr "Pubblicato anche in %s" + +#: comments.php:10 +msgid "This post is protected. Enter the password to view any comments." +msgstr "Questo post è riservato. Per leggere i commenti inserisci la tua password:" + +#: comments.php:29 +#, php-format +msgid "%d Comments" +msgstr "%d commenti" + +#: comments.php:29 +msgid "One Comment" +msgstr "Un commento" + +#: comments.php:36 +#, php-format +msgid "Posted %1$s at %2$s | Permalink" +msgstr "Pubblicato %1$s alle %2$s | Permalink" + +#: comments.php:41 +msgid "\t\t\t\t\tYour comment is awaiting moderation.\n" +msgstr "\t\t\t\t\tIl tuo commento è attesa di moderazione.\n" + +#: comments.php:55 +#, php-format +msgid "%d Trackbacks" +msgstr "%d trackback" + +#: comments.php:55 +msgid "One Trackback" +msgstr "Un trackback" + +#: comments.php:62 +#, php-format +msgid "By %1$s on %2$s at %3$s" +msgstr "Di %1$s il %2$s alle %3$s" + +#: comments.php:67 +msgid "\\t\\t\\t\\t\\tYour trackback is awaiting moderation.\\n" +msgstr "\\t\\t\\t\\t\\tIl tuo trackback è in attesa di moderazione.\\n" + +#: comments.php:82 +msgid "Post a Comment" +msgstr "Scrivi un commento" + +#: comments.php:85 +#, php-format +msgid "You must be logged in to post a comment." +msgstr "Devi fare login per scrivere un commento." + +#: comments.php:93 +#, php-format +msgid "Logged in as %2$s. Log out?" +msgstr "Hai fatto login come %2$s. Fai log out?" + +#: comments.php:100 +msgid "Your email is never shared." +msgstr "La tua e-mail non sarà mai comunicata ad altri." + +#: comments.php:100 +msgid "Required fields are marked *" +msgstr "I campi obbligatori sono contrassegnati con un *" + +#: comments.php:102 +msgid "Name" +msgstr "Nome" + +#: comments.php:102 +#: comments.php:105 +msgid "*" +msgstr "*" + +#: comments.php:105 +msgid "Email" +msgstr "Email" + +#: comments.php:108 +msgid "Website" +msgstr "Sito web" + +#: comments.php:113 +msgid "Comment" +msgstr "Commenta" + +#: comments.php:116 +msgid "Post Comment" +msgstr "Scrivi un commento" + +#: footer.php:3 +msgid "WordPress" +msgstr "WordPress" + +#: footer.php:5 +msgid "Sandbox theme for WordPress" +msgstr "Tema Sandbox per WordPress" + +#: footer.php:5 +msgid "Sandbox" +msgstr "Sandbox" + +#: functions.php:361 +#: functions.php:469 +#: functions.php:471 +#: sidebar.php:35 +msgid "Search" +msgstr "Cerca" + +#: functions.php:390 +#: functions.php:443 +msgid "Title:" +msgstr "Titolo:" + +#: functions.php:391 +msgid "Button Text:" +msgstr "Pulsante testo:" + +#: functions.php:400 +#: functions.php:478 +#: functions.php:480 +#: sidebar.php:55 +msgid "Meta" +msgstr "Meta" + +#: functions.php:419 +#: functions.php:487 +#: functions.php:488 +msgid "RSS Links" +msgstr "Link ai feed RSS" + +#: functions.php:424 +msgid "Posts RSS feed" +msgstr "Feed RSS degli articoli" + +#: functions.php:424 +#: sidebar.php:49 +msgid "All posts" +msgstr "Tutti gli articoli" + +#: functions.php:425 +msgid "Comments RSS feed" +msgstr "Feed RSS dei commenti" + +#: functions.php:425 +#: sidebar.php:50 +msgid "All comments" +msgstr "Tutti i commenti" + +#: functions.php:467 +msgid "A search form for your blog (Sandbox)" +msgstr "Un modulo di ricerca per il tuo blog (Sandbox)" + +#: functions.php:476 +msgid "Log in/out and administration links (Sandbox)" +msgstr "Link per fare login, logout e per amministrare il sito (Sandbox)" + +#: functions.php:485 +msgid "RSS links for both posts and comments (Sandbox)" +msgstr "Feed RSS per articoli e commenti (Sandbox)" + +#: header.php:8 +#: sidebar.php:49 +#, php-format +msgid "%s latest posts" +msgstr "%s articoli recenti" + +#: header.php:9 +#: sidebar.php:50 +#, php-format +msgid "%s latest comments" +msgstr "%s commenti recenti" + +#: header.php:23 +msgid "Skip to content" +msgstr "Vai al contenuto" + +#: index.php:19 +#: page.php:13 +msgid "Pages:" +msgstr "Pagine:" + +#: search.php:8 +msgid "Search Results for:" +msgstr "Risultato della ricerca per:" + +#: search.php:11 +#: search.php:42 +#, fuzzy +msgid "« Older results" +msgstr "« Articoli più vecchi" + +#: search.php:12 +#: search.php:43 +#, fuzzy +msgid "Newer results »" +msgstr "Articoli più recenti »" + +#: search.php:49 +msgid "Nothing Found" +msgstr "Non ho trovato niente" + +#: search.php:51 +msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords." +msgstr "Mi dispiace, ma non c'è nulla che corrisponda ai tuoi criteri di ricerca. Prova ancora con delle parole diverse." + +#: sidebar.php:6 +msgid "Pages" +msgstr "Pagine" + +#: sidebar.php:13 +msgid "Categories" +msgstr "Categorie" + +#: sidebar.php:21 +msgid "Archives" +msgstr "Archivi" + +#: sidebar.php:47 +msgid "RSS Feeds" +msgstr "Feed RSS" + +#: single.php:21 +#, php-format +msgid "This entry was written by %1$s, posted on %4$s at %5$s, filed under %6$s%7$s. Bookmark the permalink. Follow any comments here with the RSS feed for this post." +msgstr "Questo articolo è stato scritto da %1$s, e pubblicato il %4$s alle %5$s, archiviato in %6$s%7$s. Salva nei segnalibri il permalink. Seguine i commenti qui con il feed RSS di questo articolo." + +#: single.php:28 +msgid " and tagged " +msgstr "e contrassegnato " + +#: tag.php:6 +msgid "Tag Archives:" +msgstr "Archivi dei tag:" + +#: tag.php:28 +#, php-format +msgid "Also tagged %s" +msgstr "Contrassegnato anche con i tag %s" + +#~ msgid "" +#~ "This entry was written by %1$s, posted on %4$s at %5$s, filed under %6$s and tagged %7$s. " +#~ "Bookmark the permalink. Follow any comments here with the RSS feed for this post." +#~ msgstr "" +#~ "Questo articolo è stato scritto da %1$s, pubblicato il %4$s alle %5$s, archiviato in %6" +#~ "$s e contrassegnato con i tag %7$s. Salva il permalink nei segnalibri. " +#~ "Segui i commenti a questo articolo con ilfeed RSS." +#~ msgid " » " +#~ msgstr " » " +#~ msgid "Skip navigation to the content" +#~ msgstr "Vai direttamente al contenuto" +#~ msgid "Pages: " +#~ msgstr "Pagine:" +#~ msgid "Tagged " +#~ msgstr "Contrassegnato con i tag " + diff --git a/sandbox/translations/ng.pot b/sandbox/translations/ng.pot new file mode 100644 index 0000000..c54d682 --- /dev/null +++ b/sandbox/translations/ng.pot @@ -0,0 +1,464 @@ +msgid "" +msgstr "" +"Project-Id-Version: Sandbox\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-07-19 00:00-0500\n" +"PO-Revision-Date: \n" +"Last-Translator: Scott Allan Wallick \n" +"Language-Team: Scott Allan Wallick \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: English\n" +"X-Poedit-Country: UNITED STATES\n" +"X-Poedit-SourceCharset: utf-8\n" +"X-Poedit-KeywordsList: __;_e\n" +"X-Poedit-Basepath: .\n" +"X-Poedit-SearchPath-0: \n" + +#: 404.php:7 +msgid "Not Found" +msgstr "" + +#: 404.php:9 +msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help." +msgstr "" + +#: 404.php:14 +#: functions.php:362 +#: search.php:56 +#: sidebar.php:39 +msgid "Find" +msgstr "" + +#: archive.php:9 +#, php-format +msgid "Daily Archives: %s" +msgstr "" + +#: archive.php:11 +#, php-format +msgid "Monthly Archives: %s" +msgstr "" + +#: archive.php:13 +#, php-format +msgid "Yearly Archives: %s" +msgstr "" + +#: archive.php:15 +msgid "Blog Archives" +msgstr "" + +#: archive.php:21 +#: archive.php:48 +#: author.php:12 +#: author.php:39 +#: category.php:11 +#: category.php:40 +#: index.php:7 +#: index.php:37 +msgid "« Older posts" +msgstr "" + +#: archive.php:22 +#: archive.php:49 +#: author.php:13 +#: author.php:40 +#: category.php:12 +#: category.php:41 +#: index.php:8 +#: index.php:38 +msgid "Newer posts »" +msgstr "" + +#: archive.php:28 +#: author.php:21 +#: category.php:18 +#: index.php:14 +#: search.php:18 +#, php-format +msgid "Permalink to %s" +msgstr "" + +#: archive.php:29 +#: author.php:22 +#: category.php:19 +#: index.php:15 +#: search.php:19 +#, php-format +msgid "%1$s – %2$s" +msgstr "" + +#: archive.php:31 +#: author.php:24 +#: category.php:21 +#: index.php:17 +#: search.php:21 +msgid "Read More »" +msgstr "" + +#: archive.php:35 +#: category.php:25 +#: index.php:22 +#: search.php:27 +#, php-format +msgid "By %s" +msgstr "" + +#: archive.php:35 +#: attachment.php:20 +#: category.php:25 +#: image.php:21 +#: index.php:22 +#: search.php:27 +#, php-format +msgid "View all posts by %s" +msgstr "" + +#: archive.php:37 +#: author.php:28 +#: index.php:24 +#: search.php:29 +#, php-format +msgid "Posted in %s" +msgstr "" + +#: archive.php:39 +#: author.php:30 +#: category.php:31 +#: index.php:26 +#: search.php:31 +msgid "Tagged " +msgstr "" + +#: archive.php:40 +#: archives.php:32 +#: attachment.php:38 +#: author.php:31 +#: category.php:32 +#: comments.php:40 +#: comments.php:66 +#: image.php:39 +#: index.php:27 +#: links.php:22 +#: page.php:15 +#: search.php:32 +msgid "Edit" +msgstr "" + +#: archive.php:41 +#: author.php:32 +#: category.php:33 +#: index.php:28 +#: search.php:33 +msgid "Comments (0)" +msgstr "" + +#: archive.php:41 +#: author.php:32 +#: category.php:33 +#: index.php:28 +#: search.php:33 +msgid "Comments (1)" +msgstr "" + +#: archive.php:41 +#: author.php:32 +#: category.php:33 +#: index.php:28 +#: search.php:33 +msgid "Comments (%)" +msgstr "" + +#: archives.php:20 +msgid "Archives by Category" +msgstr "" + +#: archives.php:26 +msgid "Archives by Month" +msgstr "" + +#: attachment.php:8 +#: image.php:8 +#, php-format +msgid "Return to %s" +msgstr "" + +#: attachment.php:19 +#: image.php:20 +#, php-format +msgid "Posted by %1$s on %4$s at %5$s. Bookmark the permalink. Follow any comments here with the RSS feed for this post." +msgstr "" + +#: attachment.php:30 +#: image.php:31 +#, php-format +msgid "Post a comment or leave a trackback: Trackback URL." +msgstr "" + +#: attachment.php:32 +#: image.php:33 +#, php-format +msgid "Comments are closed, but you can leave a trackback: Trackback URL." +msgstr "" + +#: attachment.php:34 +#: image.php:35 +msgid "Trackbacks are closed, but you can post a comment." +msgstr "" + +#: attachment.php:36 +#: image.php:37 +msgid "Both comments and trackbacks are currently closed." +msgstr "" + +#: author.php:8 +#, php-format +msgid "Author Archives: %s" +msgstr "" + +#: category.php:6 +msgid "Category Archives:" +msgstr "" + +#: category.php:28 +#, php-format +msgid "Also posted in %s" +msgstr "" + +#: comments.php:10 +msgid "This post is protected. Enter the password to view any comments." +msgstr "" + +#: comments.php:29 +#, php-format +msgid "%d Comments" +msgstr "" + +#: comments.php:29 +msgid "One Comment" +msgstr "" + +#: comments.php:36 +#, php-format +msgid "Posted %1$s at %2$s | Permalink" +msgstr "" + +#: comments.php:41 +msgid "\t\t\t\t\tYour comment is awaiting moderation.\n" +msgstr "" + +#: comments.php:55 +#, php-format +msgid "%d Trackbacks" +msgstr "" + +#: comments.php:55 +msgid "One Trackback" +msgstr "" + +#: comments.php:62 +#, php-format +msgid "By %1$s on %2$s at %3$s" +msgstr "" + +#: comments.php:67 +msgid "\\t\\t\\t\\t\\tYour trackback is awaiting moderation.\\n" +msgstr "" + +#: comments.php:82 +msgid "Post a Comment" +msgstr "" + +#: comments.php:85 +#, php-format +msgid "You must be logged in to post a comment." +msgstr "" + +#: comments.php:93 +#, php-format +msgid "Logged in as %2$s. Log out?" +msgstr "" + +#: comments.php:100 +msgid "Your email is never shared." +msgstr "" + +#: comments.php:100 +msgid "Required fields are marked *" +msgstr "" + +#: comments.php:102 +msgid "Name" +msgstr "" + +#: comments.php:102 +#: comments.php:105 +msgid "*" +msgstr "" + +#: comments.php:105 +msgid "Email" +msgstr "" + +#: comments.php:108 +msgid "Website" +msgstr "" + +#: comments.php:113 +msgid "Comment" +msgstr "" + +#: comments.php:116 +msgid "Post Comment" +msgstr "" + +#: footer.php:3 +msgid "WordPress" +msgstr "" + +#: footer.php:5 +msgid "Sandbox theme for WordPress" +msgstr "" + +#: footer.php:5 +msgid "Sandbox" +msgstr "" + +#: functions.php:361 +#: functions.php:469 +#: functions.php:471 +#: sidebar.php:35 +msgid "Search" +msgstr "" + +#: functions.php:390 +#: functions.php:443 +msgid "Title:" +msgstr "" + +#: functions.php:391 +msgid "Button Text:" +msgstr "" + +#: functions.php:400 +#: functions.php:478 +#: functions.php:480 +#: sidebar.php:55 +msgid "Meta" +msgstr "" + +#: functions.php:419 +#: functions.php:487 +#: functions.php:488 +msgid "RSS Links" +msgstr "" + +#: functions.php:424 +msgid "Posts RSS feed" +msgstr "" + +#: functions.php:424 +#: sidebar.php:49 +msgid "All posts" +msgstr "" + +#: functions.php:425 +msgid "Comments RSS feed" +msgstr "" + +#: functions.php:425 +#: sidebar.php:50 +msgid "All comments" +msgstr "" + +#: functions.php:467 +msgid "A search form for your blog (Sandbox)" +msgstr "" + +#: functions.php:476 +msgid "Log in/out and administration links (Sandbox)" +msgstr "" + +#: functions.php:485 +msgid "RSS links for both posts and comments (Sandbox)" +msgstr "" + +#: header.php:8 +#: sidebar.php:49 +#, php-format +msgid "%s latest posts" +msgstr "" + +#: header.php:9 +#: sidebar.php:50 +#, php-format +msgid "%s latest comments" +msgstr "" + +#: header.php:23 +msgid "Skip to content" +msgstr "" + +#: index.php:19 +#: page.php:13 +msgid "Pages:" +msgstr "" + +#: search.php:8 +msgid "Search Results for:" +msgstr "" + +#: search.php:11 +#: search.php:42 +msgid "« Older results" +msgstr "" + +#: search.php:12 +#: search.php:43 +msgid "Newer results »" +msgstr "" + +#: search.php:49 +msgid "Nothing Found" +msgstr "" + +#: search.php:51 +msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords." +msgstr "" + +#: sidebar.php:6 +msgid "Pages" +msgstr "" + +#: sidebar.php:13 +msgid "Categories" +msgstr "" + +#: sidebar.php:21 +msgid "Archives" +msgstr "" + +#: sidebar.php:47 +msgid "RSS Feeds" +msgstr "" + +#: single.php:21 +#, php-format +msgid "This entry was written by %1$s, posted on %4$s at %5$s, filed under %6$s%7$s. Bookmark the permalink. Follow any comments here with the RSS feed for this post." +msgstr "" + +#: single.php:28 +msgid " and tagged " +msgstr "" + +#: tag.php:6 +msgid "Tag Archives:" +msgstr "" + +#: tag.php:28 +#, php-format +msgid "Also tagged %s" +msgstr "" + diff --git a/sandbox/translations/nn_NO.mo b/sandbox/translations/nn_NO.mo new file mode 100644 index 0000000000000000000000000000000000000000..e5c72002c5693e67529e437be7dc5901b1e439e6 GIT binary patch literal 9252 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 S;fw4}_Bm(KMj4+uAN3#oWO?QQ literal 0 HcmV?d00001 diff --git a/sandbox/translations/nn_NO.po b/sandbox/translations/nn_NO.po new file mode 100644 index 0000000..4553383 --- /dev/null +++ b/sandbox/translations/nn_NO.po @@ -0,0 +1,478 @@ +# Norwegian Bokmal translations for PACKAGE package. +# This file is put in the public domain. +# , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: Sandbox 1.2\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-03-10 00:53-0500\n" +"PO-Revision-Date: 2008-06-09 10:52+0100\n" +"Last-Translator: Havard Grimelid \n" +"Language-Team: Norwegian Nynorsk \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Poedit-Language: Norwegian Nynorsk\n" +"X-Poedit-Country: NORWAY\n" + +#: 404.php:7 +#: header.php:4 +msgid "Not Found" +msgstr "Ikkje funne" + +#: 404.php:9 +msgid "Apologies, but we were unable to find what you were looking for. Perhaps searching will help." +msgstr "Vi fann ikkje det du leita etter. Kanskje det hjelper å søke?" + +#: 404.php:14 +#: functions.php:271 +#: search.php:53 +#: sidebar.php:39 +msgid "Find" +msgstr "Søk" + +#: archive.php:9 +#, php-format +msgid "Daily Archives: %s" +msgstr "Dagleg arkiv: %s" + +#: archive.php:11 +#, php-format +msgid "Monthly Archives: %s" +msgstr "Månadleg arkiv: %s" + +#: archive.php:13 +#, php-format +msgid "Yearly Archives: %s" +msgstr "Årleg arkiv: %s" + +#: archive.php:15 +msgid "Blog Archives" +msgstr "Bloggarkiv" + +#: archive.php:21 +#: archive.php:48 +#: author.php:12 +#: author.php:37 +#: category.php:10 +#: category.php:39 +#: index.php:7 +#: index.php:35 +#: search.php:11 +#: search.php:39 +#: tag.php:9 +#: tag.php:39 +msgid "« Older posts" +msgstr "« Eldre innlegg" + +#: archive.php:22 +#: archive.php:49 +#: author.php:13 +#: author.php:38 +#: category.php:11 +#: category.php:40 +#: index.php:8 +#: index.php:36 +#: search.php:12 +#: search.php:40 +#: tag.php:10 +#: tag.php:40 +msgid "Newer posts »" +msgstr "Nyare innlegg »" + +#: archive.php:28 +#: author.php:19 +#: category.php:17 +#: index.php:13 +#: search.php:18 +#: tag.php:16 +#, php-format +msgid "Permalink to %s" +msgstr "Permalenke til %s" + +#: archive.php:29 +#: author.php:20 +#: category.php:18 +#: index.php:14 +#: search.php:19 +#: tag.php:17 +#, php-format +msgid "%1$s – %2$s" +msgstr "%1$s – %2$s" + +#: archive.php:31 +#: attachment.php:13 +#: author.php:22 +#: category.php:20 +#: index.php:16 +#: search.php:21 +#: single.php:15 +#: tag.php:19 +msgid "Read More »" +msgstr "Les meir »" + +#: archive.php:35 +#: category.php:24 +#: index.php:21 +#: search.php:25 +#: tag.php:23 +#, php-format +msgid "By %s" +msgstr "Av %s" + +#: archive.php:35 +#: attachment.php:19 +#: category.php:24 +#: index.php:21 +#: search.php:25 +#: single.php:21 +#: tag.php:23 +#, php-format +msgid "View all posts by %s" +msgstr "Sjå alle innlegg av %s" + +#: archive.php:37 +#: author.php:26 +#: index.php:23 +#: search.php:27 +#: tag.php:25 +#, php-format +msgid "Posted in %s" +msgstr "Publisert i %s" + +#: archive.php:39 +#: author.php:28 +#: category.php:30 +#: index.php:25 +msgid "Tagged " +msgstr "Merka" + +#: archive.php:40 +#: archives.php:32 +#: attachment.php:39 +#: author.php:29 +#: category.php:31 +#: comments.php:41 +#: comments.php:67 +#: index.php:26 +#: links.php:21 +#: page.php:14 +#: search.php:31 +#: single.php:41 +#: tag.php:31 +msgid "Edit" +msgstr "Rediger" + +#: archive.php:41 +#: author.php:30 +#: category.php:32 +#: index.php:27 +#: search.php:32 +#: tag.php:32 +msgid "Comments (0)" +msgstr "Kommentarar (0)" + +#: archive.php:41 +#: author.php:30 +#: category.php:32 +#: index.php:27 +#: search.php:32 +#: tag.php:32 +msgid "Comments (1)" +msgstr "Kommentarar (1)" + +#: archive.php:41 +#: author.php:30 +#: category.php:32 +#: index.php:27 +#: search.php:32 +#: tag.php:32 +msgid "Comments (%)" +msgstr "Kommentarar (%)" + +#: archives.php:20 +msgid "Archives by Category" +msgstr "Arkivert etter kategori" + +#: archives.php:26 +msgid "Archives by Month" +msgstr "Arkivert etter månad" + +#: attachment.php:15 +#: index.php:18 +#: single.php:17 +msgid "Pages:" +msgstr "Sider:" + +#: attachment.php:18 +#, php-format +msgid "This entry was written by %1$s, posted on %4$s at %5$s, filed under %6$s and tagged %7$s. Bookmark the permalink. Follow any comments here with the RSS feed for this post." +msgstr "Dette innlegget vart skrive av %1$s, publisert %4$s klokka %5$s, arkivert under %6$s og merka %7$s. Bokmerk permalenka. Følg opp kommentarar ved hjelp av RSS-straum til dette innlegget." + +#: attachment.php:25 +#: single.php:27 +msgid "and tagged" +msgstr "og merka" + +#: attachment.php:31 +#: single.php:33 +#, php-format +msgid "Post a comment or leave a trackback: Trackback URL." +msgstr "Kommentér eller legg att ei tilbakesporing: Tibakesporings-URL." + +#: attachment.php:33 +#: single.php:35 +#, php-format +msgid "Comments are closed, but you can leave a trackback: Trackback URL." +msgstr "Kommentarar er stengt, men du kan legge att ei tilbakesporing: Tilbakesporings-URL." + +#: attachment.php:35 +#: single.php:37 +msgid "Trackbacks are closed, but you can post a comment." +msgstr "Tilbakesporing er stengt, men du kan kommentere." + +#: attachment.php:37 +#: single.php:39 +msgid "Both comments and trackbacks are currently closed." +msgstr "Både kommentarar og tilbakesporingar er sperra." + +#: author.php:8 +#, php-format +msgid "Author Archives: %s" +msgstr "Forfattararkiv: %s" + +#: category.php:6 +msgid "Category Archives:" +msgstr "Kategoriarkiv:" + +#: category.php:27 +#, php-format +msgid "Also posted in %s" +msgstr "Også arkivert under %s" + +#: comments.php:11 +msgid "This post is protected. Enter the password to view any comments." +msgstr "Dette innlegget er passordbeskytta. Skriv inn passordet for å lese kommentarar." + +#: comments.php:30 +#, php-format +msgid "%d Comments" +msgstr "%d Kommentarar" + +#: comments.php:30 +msgid "One Comment" +msgstr "Ein kommentar" + +#: comments.php:37 +#, php-format +msgid "Posted %1$s at %2$s | Permalink" +msgstr "Posted %1$s at %2$s | Permalink" + +#: comments.php:42 +msgid "\t\t\t\t\tYour comment is awaiting moderation.\n" +msgstr "\t\t\t\t\tDin kommentar ventar på godkjenning.\n" + +#: comments.php:56 +#, php-format +msgid "%d Trackbacks" +msgstr "%d tilbakesporing" + +#: comments.php:56 +msgid "One Trackback" +msgstr "Ei tilbakesporing" + +#: comments.php:63 +#, php-format +msgid "By %1$s on %2$s at %3$s" +msgstr "Av %1$s den %2$s kl %3$s" + +#: comments.php:68 +msgid "\\t\\t\\t\\t\\tYour trackback is awaiting moderation.\\n" +msgstr "\\t\\t\\t\\t\\tTilbakesporinga di ventar på godkjenning.\\n" + +#: comments.php:81 +msgid "Post a Comment" +msgstr "Legg inn ein kommentar" + +#: comments.php:84 +#, php-format +msgid "You must be logged in to post a comment." +msgstr "Du må vere pålogga for å kommentere." + +#: comments.php:92 +#, php-format +msgid "Logged in as %2$s. Log out?" +msgstr "Pålogga som %2$s. Logg ut?" + +#: comments.php:99 +msgid "Your email is never published nor shared." +msgstr "Epost-adressa di vil aldri bli vist eller videreformidla." + +#: comments.php:99 +msgid "Required fields are marked *" +msgstr "Obligatoriske felt er merka med *" + +#: comments.php:101 +msgid "Name" +msgstr "Namn" + +#: comments.php:101 +#: comments.php:104 +msgid "*" +msgstr "*" + +#: comments.php:104 +msgid "Email" +msgstr "E-post" + +#: comments.php:107 +msgid "Website" +msgstr "Nettstad" + +#: comments.php:112 +msgid "Comment" +msgstr "Kommentar" + +#: comments.php:115 +msgid "Post Comment" +msgstr "Legg til kommentar" + +#: footer.php:3 +msgid "WordPress" +msgstr "WordPress" + +#: footer.php:5 +msgid "Sandbox for WordPress" +msgstr "Sandbox for WordPress" + +#: footer.php:5 +msgid "Sandbox" +msgstr "Sandbox" + +#: functions.php:270 +#: functions.php:378 +#: functions.php:380 +#: sidebar.php:35 +msgid "Search" +msgstr "Søk" + +#: functions.php:299 +#: functions.php:352 +msgid "Title:" +msgstr "Tittel:" + +#: functions.php:300 +msgid "Button Text:" +msgstr "Knappetekst:" + +#: functions.php:309 +#: functions.php:387 +#: functions.php:389 +#: sidebar.php:55 +msgid "Meta" +msgstr "Meta" + +#: functions.php:328 +#: functions.php:396 +#: functions.php:397 +msgid "RSS Links" +msgstr "RSS-lenker" + +#: functions.php:333 +#: header.php:8 +#: sidebar.php:49 +msgid "Posts RSS feed" +msgstr "Innlegg RSS-straum" + +#: functions.php:333 +#: sidebar.php:49 +msgid "All posts" +msgstr "Alle innlegg" + +#: functions.php:334 +#: header.php:9 +#: sidebar.php:50 +msgid "Comments RSS feed" +msgstr "Kommentar RSS-straum" + +#: functions.php:334 +#: sidebar.php:50 +msgid "All comments" +msgstr "Alle kommentarar" + +#: functions.php:376 +msgid "A search form for your blog (Sandbox)" +msgstr "Ein søkeboks til bloggen din (Sandbox)" + +#: functions.php:385 +msgid "Log in/out and administration links (Sandbox)" +msgstr "Logg inn/ut og administrasjonslinker (Sandbox)" + +#: functions.php:394 +msgid "RSS links for both posts and comments (Sandbox)" +msgstr "RSS-lenker for både artiklar og kommentarar (Sandbox)" + +#: header.php:4 +msgid " » " +msgstr " » " + +#: header.php:25 +msgid "Skip navigation to the content" +msgstr "Hopp over navigasjon og gå til innhold" + +#: header.php:25 +msgid "Skip to content" +msgstr "Gå til innhold" + +#: page.php:12 +msgid "Pages: " +msgstr "Sider:" + +#: search.php:8 +msgid "Search Results for:" +msgstr "Søkeresultat for:" + +#: search.php:29 +msgid "Tagged " +msgstr "Merka" + +#: search.php:46 +msgid "Nothing Found" +msgstr "Ingenting funne" + +#: search.php:48 +msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords." +msgstr "Beklagar, men søket ditt fant ingenting. Prøv igjen med andre nøkkelord." + +#: sidebar.php:6 +msgid "Pages" +msgstr "Sider" + +#: sidebar.php:13 +msgid "Categories" +msgstr "Kategoriar" + +#: sidebar.php:21 +msgid "Archives" +msgstr "Arkiver" + +#: sidebar.php:47 +msgid "RSS Feeds" +msgstr "RSS-straumar" + +#: single.php:20 +#, php-format +msgid "This entry was written by %1$s, posted on %4$s at %5$s, filed under %6$s%7$s. Bookmark the permalink. Follow any comments here with the RSS feed for this post." +msgstr "Dette innleget vart skrive av %1$s, publisert %4$s klokka %5$s, arkivert under %6$s%7$s. Bokmerk permalinken. Hald deg oppdatert på kommentarar: RSS-straum for dette innlegget." + +#: tag.php:6 +msgid "Tag Archives:" +msgstr "Merkelapparkiv:" + +#: tag.php:28 +#, php-format +msgid "Also tagged %s" +msgstr "Også merka %s" + diff --git a/sandbox/translations/translation-readme.txt b/sandbox/translations/translation-readme.txt new file mode 100644 index 0000000..efd78fd --- /dev/null +++ b/sandbox/translations/translation-readme.txt @@ -0,0 +1,7 @@ +=== Sandbox Translations === + +This folder contains the source files for the translations provided with the Sandbox. The sandbox.pot file included here should be used for generating your translations. + +For more information on creating a Sandbox translation in your language, please visit + + http://code.google.com/p/sandbox-theme/wiki/SandboxInYourLanguage