--- wordpress-2.5.1.orig/debian/compat +++ wordpress-2.5.1/debian/compat @@ -0,0 +1 @@ +4 --- wordpress-2.5.1.orig/debian/apache.conf +++ wordpress-2.5.1/debian/apache.conf @@ -0,0 +1,55 @@ +There are several ways to setup Wordpress & Apache in Debian. However the +maintainer's recommended way with the helper script `setup-mysql` uses: + +## Virtual host VirtualDocumentRoot + + NameVirtualHost *:80 + + + UseCanonicalName Off + VirtualDocumentRoot /var/www/%0 + Options All + #ServerAdmin admin@example.com + + # Store uploads in /var/www/wp-uploads/$0 + RewriteEngine On + RewriteRule ^/wp-uploads/(.*)$ /var/www/wp-uploads/%{HTTP_HOST}/$1 + + + +And then link the blog to your preferred domain, e.g.: +ln -s /usr/share/wordpress /var/www/blog.example.com + +The above example is checked. Here are some _alternative_ suggestions: + +## A defined Virtual host + + NameVirtualHost *:80 + + + VirtualDocumentRoot /usr/share/wordpress/ + ServerName blog.example.com + ErrorLog /var/log/apache/wp-error.log + TransferLog /var/log/apache/wp-access.log + + +## Without using Virtual host, hosted off /blog + + Alias /blog /usr/share/wordpress + + Options FollowSymLinks + AllowOverride Limit Options FileInfo + DirectoryIndex index.php + + +# Tips + +If permalinks or rewrite is not working you might need: + + + Options FollowSymLinks + AllowOverride All + + +If NameVirtualHost *:80 is not working, you probably need to replace the * with +the actual IP or hostname of your server. --- wordpress-2.5.1.orig/debian/NEWS +++ wordpress-2.5.1/debian/NEWS @@ -0,0 +1,64 @@ +wordpress (2.5.1-10) unstable; urgency=low + + Patch for CVE-2008-2392 (unrestricted upload capability issue) has + been modified. Now there is a new option menu in the admin panel + tha makes you enable unrestricted upload for administrators + + WARNING: For security reasons the package comes with the option + disabled by default. Please check out the README file before enabling + unrestricted upload. + + -- Andrea De Iacovo Thu, 6 Nov 2008 10:15:24 +0200 + +wordpress (2.5.1-4) unstable; urgency=low + + Unrestricted upload capability for blog administrators has been + disabled to fix CVE-2008-2392 (). + + If you run a SINGLE blog with wordpress it might be safe to activate + this option again. + + Please refer to the README file for more informations. + + -- Andrea De Iacovo Sat, 24 Jun 2008 17:58:00 +0200 + +wordpress (2.0.1-1) unstable; urgency=low + + In accordance with http://bugs.debian.org/348458 + + It might be necessary to manually run: + /wp-admin/upgrade.php + + -- Kai Hendry Thu, 2 Feb 2006 11:20:15 +0900 + +wordpress (1.5.0-1) unstable; urgency=high + + Background read http://codex.wordpress.org/Upgrading_WordPress + Please http://codex.wordpress.org/Backing_up_your_database + + You need to run wp-admin/upgrade.php + + A new theme system means you need to: + http://codex.wordpress.org/Upgrade_1.2_to_1.5#Upgrading_Old_Templates + + Update your (rewrites) + Check your plugins (e.g. Markdown) are activated + + -- Kai Hendry Tue, 22 Feb 2005 05:53:50 +0200 + +wordpress (1.2.0-1) unstable; urgency=low + + UPGRADE NOTICES + When upgrading from wordpress 1.0 you will need to run + http://your-wordpress-installation/wp-admin/upgrade.php otherwise you might get + a post_date_gmt error. + + The configuration files are now kept in /etc/wordpress. Please + copy in your wp-config.php into /etc/wordpress and run: ln -s + /etc/wordpress/wp-config.php /usr/share/wordpress/wp-config.php + Modify 'ABSPATH' to: + define('ABSPATH', '/usr/share/wordpress/'); + + And do not forget to check your .htaccess rewrite rules. + + -- Kai Hendry Sat, 29 May 2004 23:40:53 +0300 --- wordpress-2.5.1.orig/debian/htaccess +++ wordpress-2.5.1/debian/htaccess @@ -0,0 +1,3 @@ +# For rewrite rules needed for making Wordpress URL friendly +# See Options -> Permalinks for details and please use the defaults, +# especially in mind when hosting several blogs on one machine! --- wordpress-2.5.1.orig/debian/get-upstream-i18n +++ wordpress-2.5.1/debian/get-upstream-i18n @@ -0,0 +1,68 @@ +#! /bin/sh + +set -e + +usage () { + printf "Usage: %s version\n" "$0" +} + +if [ "$#" -lt 1 ]; then + usage 1>&2 + exit 1 +fi + +if ! [ -d wp-content ]; then + printf "Cannot find wp-content directory\n" 1>&2 + exit 2 +fi + +UPSTREAM_I18N_SVN=http://svn.automattic.com/wordpress-i18n/ +BASEDIR="${PWD}" + +version="$1" + +if ! [ -e wp-content/languages ]; then + mkdir wp-content/languages +fi + +url_escape () { + printf "%s" "$1" | sed -e 's/@/%40/g' -e 's|/|%2f|g' -e 's/;/%3b/g' -e 's/?/%3f/g' -e 's/:/%3a/g' -e 's/&/%26/g' -e 's/=/%3d/g' -e 's/+/%2b/g' -e 's/\$/%24/g' -e 's/,/%2c/g' -e 's//%3e/g' -e 's/#/%23/g' -e 's/%/%25/g' -e 's/"/%22/g' +} + +base_lang () { + printf "%s" "$1" | sed -e 's/_.*//' +} + +do_file () { + local lang dir fname + lang="$1" + rdir="$2" + ldir="$3" + fname="$4" + + url_fname="$(url_escape "${fname}")" + if ! [ -e "${ldir}" ]; then + mkdir -p "${ldir}" + fi + OLD_PWD="${PWD}" + cd "${ldir}" + if ! svn export -r "${HEAD_REV}" -q "${UPSTREAM_I18N_SVN}/${lang}/tags/${version}/${rdir}/${url_fname}"; then + if [ -e "${fname}" ]; then + printf "WARNING: deleting outdated '%s', no up-to-date version found.\n" "${fname}" + rm -f "${fname}" + fi + fi + cd "${OLD_PWD}" +} + +do_file_prefix () { + do_file "$1" "$2/$3" "$3" "$4" +} + +HEAD_REV="$(svn info "${UPSTREAM_I18N_SVN}" | sed -n -e 's/^Revision:[[:space:]]\+//p')" + +for lang in $(svn ls "${UPSTREAM_I18N_SVN}" | sed -n -e 's|/$||p' | egrep -v '^(theme|tools)$'); do + url_lang="$(url_escape "${lang}")" + baselang="$(base_lang "${lang}")" + do_file "${url_lang}" "messages" "wp-content/languages" "${lang}.po" +done --- wordpress-2.5.1.orig/debian/copyright +++ wordpress-2.5.1/debian/copyright @@ -0,0 +1,74 @@ +This package was initially debianized by Gabriel Rodríguez Alberich +chewie@the-geek.org on Thu, 26 Feb 2004 19:37:33 +0000. Since Aug 2004 this +package has been maintained and enhanced by Kai Hendry. Lionel Elie +Mamane joined ship in January 2008 to integrate French language support. + +It was downloaded from: http://wordpress.org/download/release-archive/ + http://fr.wordpress.org/releases/ + +Upstream authors and contributors from http://wordpress.org/about/ and +examining the source code: + + * Matt Mullenweg + * Ryan Boren + * Michael Adams + * Robert Deaton + * David House + * Mark Jaquith + * Donncha O'Caoimh + * Andy Skelton + * Dougal Campbell + * Alex King + * Mike Little + * Michel Valdrighi + * Owen Winkler + * Michael Heilemann + * Matt Thomas + * Ulf Harnhammar + * Nico Kaiser + * Danilo Segan + * Moxiecode Systems AB (TinyMCE) + * Maarten Meijer + * Monte Ohrt + * The SquirrelMail Project Team + +For general inquiries, press requests, email Matt Mullenweg + +The French translation is done by the Wordpress Francophone team +http://www.wordpress-fr.net/ + +License: + +You are free to distribute this software under the terms of +the GNU General Public License. +On Debian systems, the complete text of the GNU General Public +License can be found in the file `/usr/share/common-licenses/GPL'. + +The Debian packaging is copyrighted Kai Hendry and is licensed +also under the GPL. + + + +Wordpress includes the http://script.aculo.us/ javascript library which is +under a MIT License: + +Copyright (c) 2005 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us) + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --- wordpress-2.5.1.orig/debian/README.debian +++ wordpress-2.5.1/debian/README.debian @@ -0,0 +1,71 @@ +#### General warnings + +In November 2008 developers discovered a grave security issue which leads to +serious data loss (posts, comments, user data) and to DoS problems. +The issue affects Wordpress only and NOT the machine Wordpress runs on. +A workaround was introduced in version 2.5.1-10 of the package but the issue +is still not resolved. To avoid serious problems, please, DO NOT log in +Wordpress as the blog administrator. After the blog setup, create +immediately a user to log in with and to write your posts with. + +#### Quick setup + +Setup apache to point to /usr/share/wordpress. See the examples/apache.conf + +Database setup can be done with the help of a script in examples/setup-mysql + +#### A little more about the (multiple blog) configuration + +The default wp-config.php searches for a (mysql) configuration filename based +on the blog's host. This allows you to host more than one blog on a Debian +system. + +#### Upgrading from 1.5-1 and below + +If you would like to use the optional default multiple blog configuration from +version 1.5-2 then: + +Backup your database. http://codex.wordpress.org/Backing_up_your_database +Backup your configs, sudo cp -r /etc/wordpress/ ~/asafeplace +Purge wordpress, apt-get remove --purge wordpress +Install wordpress, apt-get install wordpress +Point your browser to your blog and you should get an error message similar to above. +Copy in your backed up wp-config.php to what it failed to open in the Fatal error, e.g. /etc/wordpress/config-my.blog.example.com.php +Ensure correct permissions, sudo chown :www-data /etc/wordpress/* + +#### Plugins, themes and extra bits related to Wordpress + +Currently plugins and themes need to be dropped in by root into: +/usr/share/wordpress/wp-content +Or better by utilising symbolic links. e.g. +ln -s /home/user/mytheme /usr/share/wordpress/wp-content/themes/mytheme + +#### Switching a blog to a new language + + - in the admin pages, select a theme in the desired language; + - add "define ('WPLANG', 'LANGUAGE');" to the + /etc/wordpress/config-HOSTNAME.php of the blog; LANGUAGE is 'en' + for English and 'fr_FR' for French; this value should be the + filename of the .mo file (in + /usr/share/wordpress/wp-content/languages) without the ".mo"; + - with MySQL, change the rss_language option to 'LANGAGE': + + #DB_USER is the MySQL user, as in /etc/wordpress/config-HOSTNAME.php + #DB_NAME is the MySQL database, as in /etc/wordpress/config-HOSTNAME.php + mysql -uUSER -p DB_NAME + #enter the password (as DB_PASSWORD in /etc/wordpress/config-HOSTNAME.php) + #if your $table_prefix is not wp_, adapt the following line + UPDATE wp_options SET option_value='LANGAGE' WHERE option_name='rss_language'; + exit; + + You can drop the _FR suffix for French (just 'fr', not 'fr_FR'). + (See Debian bug #461584) + +#### Activating unrestreicted upload capability for administrators + +WARNING: this operation is unsafe and leads to security issues if you're running + multiple blogs with wordpress! See CVE-2008-2392 and BTS #485807 + +You can enable unrestricted upload by simply checking the option in the +Admin panel->Settings->Security page. +Please DO NOT enable unrestricted upload if you run multiple blogs with wordpress. --- wordpress-2.5.1.orig/debian/wordpress.examples +++ wordpress-2.5.1/debian/wordpress.examples @@ -0,0 +1,2 @@ +debian/apache.conf +debian/setup-mysql --- wordpress-2.5.1.orig/debian/setup-mysql +++ wordpress-2.5.1/debian/setup-mysql @@ -0,0 +1,182 @@ +#!/bin/bash -e + +usage() { +cat < $CONFIG_FILE << EOF + +EOF +chgrp www-data "${CONFIG_FILE}" +echo $CONFIG_FILE written +} + +create() { +# Create the database and user +# Wordpress's install.php creates the tables btw +mysql --defaults-extra-file=/etc/mysql/debian.cnf < $BACKUPFILE && echo Wrote $BACKUPFILE +} + +destroy() { +echo Destroying $NAME +prompt +mysql --defaults-extra-file=/etc/mysql/debian.cnf <&2 ; exit 1 ;; + esac +done +shift $(($OPTIND - 1)) + +if [ "$(id -u)" != "0" ] +then + echo "You must be root to use this script." + exit 1 +fi + +DOMAIN=$1 +UPLOAD="/var/www/wp-uploads/$DOMAIN" + +if [ $DOMAIN ] ; then +ping -c 1 `echo $DOMAIN | sed 's/:[0-9]\+//'` || exit 1 +else + usage + exit 0 +fi + +CONFIG_FILE=/etc/wordpress/config-$DOMAIN.php + +if [ ! $NAME ] ; then +NAME=$(echo $DOMAIN | sed 's,\.,,g') +echo Constructed database name and user: $NAME from $DOMAIN +fi + +if [ ${#NAME} -gt 16 ]; then +echo "$NAME is longer than MySQL's limit of 16 characters. Please specify a shorter one." +exit 1 +fi + +if [ $BACKUP ] ; then +backup +exit 0 +fi + +if [ $DESTROY ] ; then +destroy +exit 0 +fi + +checkforexistingsetup +create --- wordpress-2.5.1.orig/debian/wp-config.php +++ wordpress-2.5.1/debian/wp-config.php @@ -0,0 +1,21 @@ + --- wordpress-2.5.1.orig/debian/rules +++ wordpress-2.5.1/debian/rules @@ -0,0 +1,49 @@ +#!/usr/bin/make -f + +export DH_VERBOSE=0 +include /usr/share/dpatch/dpatch.make + +all: + +%.mo: %.po + msgfmt '$<' -o '$@' + +POFILES:=$(shell find wp-content -name '*.po') +MOFILES:=$(POFILES:.po=.mo) + +install: $(MOFILES) patch-stamp + dh_testdir + dh_testroot + chmod -R a-x,a+X wp-includes/ + dh_install -Xlicense.txt -Xlicense.html -XMIT-LICENSE -Xclass-phpmailer.php -Xclass-smtp.php -X.po + dh_installdocs + dh_installchangelogs + dh_installexamples + dh_compress + dh_fixperms + dh_installdeb + #Removing unneeded tinymce files + rm -R debian/wordpress/usr/share/wordpress/wp-includes/js/tinymce/plugins/media + rm -R debian/wordpress/usr/share/wordpress/wp-includes/js/tinymce/plugins/autosave/ + rm -R debian/wordpress/usr/share/wordpress/wp-includes/js/tinymce/plugins/directionality/ + rm -R debian/wordpress/usr/share/wordpress/wp-includes/js/tinymce/plugins/fullscreen/ + rm -R debian/wordpress/usr/share/wordpress/wp-includes/js/tinymce/plugins/paste/ + rm -R debian/wordpress/usr/share/wordpress/wp-includes/js/tinymce/plugins/safari/ + rm -R debian/wordpress/usr/share/wordpress/wp-includes/js/tinymce/tiny_mce.js + rm -R debian/wordpress/usr/share/wordpress/wp-includes/js/tinymce/tiny_mce_popup.js + rm -R debian/wordpress/usr/share/wordpress/wp-includes/js/tinymce/plugins/wordpress/js + #and now libphp-snoopy files + rm -R debian/wordpress/usr/share/wordpress/wp-includes/class-snoopy.php + dh_link + dh_gencontrol + dh_md5sums + dh_builddeb + +clean: unpatch + dh_clean $(MOFILES) + +binary: install + +build: +binary-arch: +binary-indep: --- wordpress-2.5.1.orig/debian/postrm +++ wordpress-2.5.1/debian/postrm @@ -0,0 +1,16 @@ +#!/bin/sh + +NAME="wordpress" + +case "$1" in + + purge) + rm -rf /etc/wordpress + rm -rf /usr/share/wordpress + ;; + +esac + +#DEBHELPER# + +exit 0 --- wordpress-2.5.1.orig/debian/postinst +++ wordpress-2.5.1/debian/postinst @@ -0,0 +1,12 @@ +#!/bin/sh -e + +# To address security bug #363580, but don't change them again and +# again if local admin put something else. +if [ "$1" = upgrade ] && dpkg --compare-versions "$2" lt 2.0.2-2; then + chmod 640 /etc/wordpress/config* >/dev/null 2>&1 || true + chgrp www-data /etc/wordpress/config* >/dev/null 2>&1 || true +fi + +#DEBHELPER# + +exit 0 --- wordpress-2.5.1.orig/debian/control +++ wordpress-2.5.1/debian/control @@ -0,0 +1,23 @@ +Source: wordpress +Section: web +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Andrea De Iacovo +Standards-Version: 3.8.0 +Build-Depends: debhelper, gettext, dpatch +Homepage: http://wordpress.org + +Package: wordpress +Architecture: all +Depends: apache2 | httpd, virtual-mysql-client, libapache2-mod-php5 | php5 | php5-cgi | libapache2-mod-php4 | php4 | php4-cgi, php5-mysql | php4-mysql, libphp-phpmailer (>= 1.73-4), php5-gd | php4-gd, libjs-prototype, libjs-scriptaculous, tinymce (>= 3.0.7), libphp-snoopy (>= 1.2.4) +Suggests: virtual-mysql-server +Conflicts: mysql-server (<< 4.0.20-8) +Description: weblog manager + WordPress is a full featured web blogging tool: + * Instant publishing (no rebuilding) + * Comment pingback support with spam protection + * Non-crufty URLs + * Themable + * Plugin support + . + This package includes French language support. --- wordpress-2.5.1.orig/debian/dirs +++ wordpress-2.5.1/debian/dirs @@ -0,0 +1,3 @@ +usr/bin +usr/sbin +etc/wordpress --- wordpress-2.5.1.orig/debian/docs +++ wordpress-2.5.1/debian/docs @@ -0,0 +1 @@ +readme.html --- wordpress-2.5.1.orig/debian/install +++ wordpress-2.5.1/debian/install @@ -0,0 +1,8 @@ +debian/wp-config.php etc/wordpress +debian/htaccess etc/wordpress +wp-admin usr/share/wordpress +wp-content usr/share/wordpress +wp-includes usr/share/wordpress +*.php usr/share/wordpress +wp-content/themes/default/images usr/share/wordpress/wp-content/themes/default-fr +wp-content/themes/default/screenshot.png usr/share/wordpress/wp-content/themes/default-fr --- wordpress-2.5.1.orig/debian/changelog +++ wordpress-2.5.1/debian/changelog @@ -0,0 +1,677 @@ +wordpress (2.5.1-10ubuntu1) jaunty; urgency=low + + * Merge from debian unstable, remaining changes: (LP: #301340) + + debian/apache.conf: + - Changed to use /var/www instead of /srv/www for virtual webroot. + + debian/setup-mysql: + - Changed to use /var/www instead of /srv/www. + * debian/patches/010_remove_update_notice.patch: + - Reworked original patch to remove Wordpress upgrade notify + in admin dashboard (Rolf Leggewie) (LP: #227547) + * Include patch for CVE2008-3747 (LP: #269301) + + -- Stefan Lesicnik Sun, 23 Nov 2008 18:12:33 +0200 + +wordpress (2.5.1-10) unstable; urgency=high + + * 007CVE2008-2392.patch modified. + Now users chan dinamically choose to enable unrestricted upload for admins. + * 010_REQUEST.patch added. + This patch is only a workaround for #504771. Now cookies are properly + checked; if something malicious is found wordpress stops any other execution + until cookies are not cleaned. + + -- Andrea De Iacovo Thu, 06 Nov 2008 10:12:35 +0100 + +wordpress (2.5.1-9ubuntu1) jaunty; urgency=low + + * Merge from debian unstable, remaining changes: + + debian/apache.conf: + - Changed to use /var/www instead of /srv/www for virtual webroot. + + debian/setup-mysql: + - Changed to use /var/www instead of /srv/www. + - modified to fix permissions on /var/www + + debian/patches/010_remove_update_notice.patch: + - Removed Wordpress upgrade notify in admin dashboard. + + -- Emanuele Gentili Fri, 07 Nov 2008 05:44:33 +0100 + +wordpress (2.5.1-9) unstable; urgency=high + + * Wordpress now depends on libphp-snoopy (Closes: #443948) + * libphp-snoopy dependance solves grave security issue (Closes: #504234) + Thanks to the new version of snoopy class the user input is now sanitized + so it's not possibile to inject malicius code anymore (CVE-2008-4796) + * setup-mysql modified to fix permissions on /srv/www + + -- Andrea De Iacovo Mon, 03 Nov 2008 08:39:16 +0100 + +wordpress (2.5.1-8ubuntu1) intrepid; urgency=low + + * Merge from debian unstable, remaining changes: + + debian/apache.conf: + - Changed to use /var/www instead of /srv/www for virtual webroot. + + debian/setup-mysql: + - Changed to use /var/www instead of /srv/www. + + debian/patches/010_remove_update_notice.patch: + - Removed Wordpress upgrade notify in admin dashboard. + * Drop debian/patches/008CVE2008-3747.patch as we don't support SSL + in our version we don't need it. (See LP: #269301) + + -- Stefan Ebner Thu, 02 Oct 2008 22:24:20 +0200 + +wordpress (2.5.1-8) unstable; urgency=high + + * Added 009CVE2008-4106 patch. (Closes: #500115) + Whitespaces in user name are now checked during login. + It's not possible to register an "admin(n-whitespaces)" user anymore + to gain unauthorized access to the admin panel. + + -- Andrea De Iacovo Thu, 25 Sep 2008 17:02:47 +0200 + +wordpress (2.5.1-7) unstable; urgency=high + + * Modified CVE2008-3747 patch. (Closes: #497524) + The old patch made the package completely unusable. The new + one should solve the issue. (Thanks to Del Gurt) + + -- Andrea De Iacovo Thu, 04 Sep 2008 00:42:11 +0200 + +wordpress (2.5.1-6) unstable; urgency=high + + * Added patch to fix remote attack vulnerability (Closes: #497216) + Attackers could gain administrative powers by sniffing cookies. + This patch force wordpress over a ssl connection to prevent + this issue. (CVE-2008-3747) + + -- Andrea De Iacovo Sun, 31 Aug 2008 09:02:22 +0200 + +wordpress (2.5.1-5ubuntu2) intrepid; urgency=low + + * Change tinymce from 3.0.7 to 3.0.8-1 + + -- Emanuele Gentili Sat, 09 Aug 2008 04:35:43 +0200 + +wordpress (2.5.1-5ubuntu1) intrepid; urgency=low + + * Merge from debian unstable, remaining changes: (LP: #237348) + + debian/apache.conf: + - Changed to use /var/www instead of /srv/www for virtual webroot. + + debian/setup-mysql: + - Changed to use /var/www instead of /srv/www. + + * other changes: + + debian/patches/008_remove_update_notice.patch: (LP: #227547) + - Removed Wordpress upgrade notify in admin dashboard. + + -- Emanuele Gentili Wed, 23 Jul 2008 02:25:27 +0200 + +wordpress (2.5.1-5) unstable; urgency=low + + * Modified rules file to have a lintian clean package. + + -- Andrea De Iacovo Mon, 16 Jun 2008 18:41:21 +0200 + +wordpress (2.5.1-4) unstable; urgency=low + + * Added patch to fix unrestricted file upload vulnerability (Closes: #485807) + Now administrators can upload only files that are in the standard + mime-type set (Fixes CVE-2008-2392) + + -- Andrea De Iacovo Sat, 14 Jun 2008 17:31:04 +0200 + +wordpress (2.5.1-3) unstable; urgency=low + + * rss_language is now modifiable through wp-admin panel. + Thanks to Lionel Elie Mamane (Closes: #461584) + * Makes Wordpress depend on tinymce (>= 3.0.7) + + -- Andrea De Iacovo Mon, 05 May 2008 23:39:35 +0200 + +wordpress (2.5.1-2ubuntu1) intrepid; urgency=low + + * Merge from debian unstable, Ubuntu remaining changes: (LP: #226667) + - debian/apache.conf: Changed to use /var/www instead of /srv/www for + virtual webroot. + - debian/setup-mysql: Changed to use /var/www instead of /srv/www. + - Update maintainer field in debian/control. + + -- Emanuele Gentili Mon, 05 May 2008 00:07:26 +0200 + +wordpress (2.5.1-2) unstable; urgency=low + + * Wordpress provides a MODIFIED tinymce (Closes: #478257) + * Setup-mysql script modified to handle SECURITY_KEY. (Closes: #478515) + + -- Andrea De Iacovo Mon, 28 Apr 2008 18:45:10 +0200 + +wordpress (2.5.1-1) unstable; urgency=high + + * Merged with upstream 2.5.1 security release + * CVE-2008-1930 integrity protection vulnerability (Closes: #477910) + * Depends on tinymce + + -- Andrea De Iacovo Sat, 26 Apr 2008 19:08:14 +0200 + +wordpress (2.5.0-2) unstable; urgency=low + + * New maintainer. (Closes: #473451: ITA: wordpress -- weblog manager) + * Doesn't have a sane upload directory set (Closes: #430781) + * Don't embedd prototype/scriptaculous (Closes: #475284 + + -- Andrea De Iacovo Fri, 18 Apr 2008 20:50:26 +0100 + +wordpress (2.5.0-1) unstable; urgency=low + + [ Kai Hendry ] + * New Upstream Version + + [ Lionel Elie Mamane ] + * Import translations as of 2008-04-01: + ca.po, fr_FR, id_ID, ja, pt_PT, ru_RU, sr_RS + * Update French theme to 2.5.0 + + -- Lionel Elie Mamane Wed, 02 Apr 2008 00:33:30 +0200 + +wordpress (2.3.3+fr-2) unstable; urgency=low + + * Update French translation to 2.3.3 upstream version. + + -- Lionel Elie Mamane Mon, 03 Mar 2008 11:09:56 +0100 + +wordpress (2.3.3+fr-1) unstable; urgency=low + + * Add French language support back (accidentally dropped in 2.3.2-1, + closes: #461617) + + -- Lionel Elie Mamane Sat, 09 Feb 2008 09:44:24 +0100 + +wordpress (2.3.3-1ubuntu1) hardy; urgency=low + + * Merge from Debian unstable (LP: #189481), Ubuntu remaining changes: + - debian/apache.conf: Changed to use /var/www instead of /srv/www for + virtual webroot. + - debian/README.debian: Updated to include documentation on the change. + - debian/setup-mysql: Changed to use /var/www instead of /srv/www. + * Modify Maintainer value to match Debian-Maintainer-Field Spec + + -- Emanuele Gentili Wed, 06 Feb 2008 06:14:36 +0100 + +wordpress (2.3.3-1) unstable; urgency=high + + * New upstream security release: + http://wordpress.org/development/2008/02/wordpress-233/ + - Fix for security flaw in XML-RPC implementation (CVE-2008-0664, + closes: #464170) and http://trac.wordpress.org/ticket/5313 + + -- Kai Hendry Tue, 05 Feb 2008 16:22:57 +0000 + +wordpress (2.3.2+fr-1ubuntu1) hardy; urgency=low + + * Merge from Debian unstable (LP: #187465), Ubuntu remaining changes: + - debian/apache.conf: Changed to use /var/www instead of /srv/www for + virtual webroot. + - debian/README.debian: Updated to include documentation on the change. + - debian/setup-mysql: Changed to use /var/www instead of /srv/www. + * Modify Maintainer value to match Debian-Maintainer-Field Spec + + -- Pedro Fragoso Tue, 22 Jan 2008 09:45:59 +0000 + +wordpress (2.3.2+fr-1) unstable; urgency=low + + * Add French language support (Closes: #461617) + * Bump up Standards-Version to 3.7.3 + * Move Homepage from description to dpkg field + * Tweak description to make it less advertisy + * Consistently prefer php5 over php4 in dependency alternatives + * Don't override local admin's idea of permissions on + /etc/wordpress/config-* on every upgrade. + + -- Lionel Elie Mamane Mon, 21 Jan 2008 23:08:32 +0100 + +wordpress (2.3.2-1ubuntu1) hardy; urgency=low + + * Merge from Debian unstable (LP: #180922), Ubuntu remaining changes: + - debian/apache.conf: Changed to use /var/www instead of /srv/www for + virtual webroot. + - debian/README.debian: Updated to include documentation on the change. + - debian/setup-mysql: Changed to use /var/www instead of /srv/www. + * Modify Maintainer value to match Debian-Maintainer-Field Spec + + -- Pedro Fragoso Sun, 06 Jan 2008 21:38:43 +0000 + +wordpress (2.3.2-1) unstable; urgency=high + + * New upstream security release + * http://wordpress.org/development/2007/12/wordpress-232/ + * new version 2.3.2 fixes security bugs (Closes: #459305) + + -- Kai Hendry Sun, 06 Jan 2008 18:12:21 +0000 + +wordpress (2.3.1-1ubuntu1) hardy; urgency=low + + * New upstream release. (LP: #138819) + * Merge from debian unstable, remaining changes: + - debian/apache.conf: Changed to use /var/www instead of /srv/www for + virtual webroot. + - debian/README.debian: Updated to include documentation on the change. + - debian/setup-mysql: Changed to use /var/www instead of /srv/www. + - Update maintainer field in debian/control. + + -- William Grant Wed, 14 Nov 2007 08:50:22 +1100 + +wordpress (2.3.1-1) unstable; urgency=high + + * New upstream security release + * http://wordpress.org/development/2007/10/wordpress-231/ + * should depend on php4-gd | php5-gd (Closes: #447492) + php4-gd | php5-gd moves from suggests to depends + * Bugs closed in this release: + http://trac.wordpress.org/query?status=closed&milestone=2.3.1 + + -- Kai Hendry Sun, 28 Oct 2007 17:20:12 +0000 + +wordpress (2.3-1) unstable; urgency=low + + * New upstream release + * Maintainer meets upstream: + http://flickr.com/photos/hendry/1468125949/ + * http://wordpress.org/development/2007/09/wordpress-23/ + + -- Kai Hendry Mon, 01 Oct 2007 23:51:59 +0100 + +wordpress (2.2.3-1) unstable; urgency=high + + * New upstream security release + * http://wordpress.org/development/2007/09/wordpress-223/ + * wordpress debian config overrides $file, $server in upstream php + files (Closes: #440572) + + -- Kai Hendry Mon, 10 Sep 2007 19:36:34 +0100 + +wordpress (2.2.2-1ubuntu1) gutsy; urgency=low + + * Merge from Debian unstable, remaining changes: + - Changed Blogroll to point to Planet Ubuntu instead of Planet Debian. + - debian/apache.conf: Changed to use /var/www instead of /srv/www for + virtual webroot. + - debian/README.debian: Updated to include documentation on the change. + - debian/setup-mysql: Changed to use /var/www instead of /srv/www. + - Update maintainer field in debian/control. + + -- Michele Angrisano Mon, 06 Aug 2007 01:29:18 +0200 + +wordpress (2.2.2-1) unstable; urgency=high + + * New upstream security release + * http://wordpress.org/development/2007/08/wordpress-222-and-2011/ + * Bugs closed http://trac.wordpress.org/query?status=closed&milestone=2.2.2 + * Changed files + http://trac.wordpress.org/changeset?new=branches%2F2.2%405849&old=branches%2F2.2%405725 + * Several vulnerabilities detected (XSS, SQL-injection) (Closes: + #435848) + * wp-config.php breaks when accessed with port (Closes: #435289) + + -- Kai Hendry Sun, 05 Aug 2007 09:59:15 +0100 + +wordpress (2.2.1-1ubuntu1) gutsy; urgency=low + + * Merge from Debian unstable, remaining changes: + - Changed Blogroll to point to Planet Ubuntu instead of Planet Debian. + - debian/apache.conf: Changed to use /var/www instead of /srv/www for + virtual webroot. + - debian/README.debian: Updated to include documentation on the change. + - debian/setup-mysql: Changed to use /var/www instead of /srv/www. + - Update maintainer in field debian/control. + + -- Michele Angrisano Mon, 2 Jul 2007 12:38:17 +0200 + +wordpress (2.2.1-1) unstable; urgency=high + + * New upstream release + * http://wordpress.org/development/2007/06/wordpress-221/ + * Needs to use libphp-phpmailer (Closes: #429346) + * [CVE-2007-3215] remote shell command injection in PHPMailer (Closes: + #429194) + * remote SQL injection vulnerability (Closes: #428073) + + -- Kai Hendry Sat, 23 Jun 2007 12:47:10 +0100 + +wordpress (2.2-1ubuntu1) gutsy; urgency=low + + * Merge from Debian unstable. Remaining Ubuntu changes: + - Changed Blogroll to point to Planet Ubuntu instead of Planet Debian + - debian/control: Change Maintainer/XSBC-Original-Maintainer field. + - debian/apache.conf: Changed to use /var/www instead of /srv/www for + virtual webroot + - debian/README.debian: Updated to include documentation on the change + - debian/setup-mysql: Changed to use /var/www instead of /srv/www + + -- Kjell Braden Fri, 25 May 2007 15:47:58 +0200 + +wordpress (2.2-1) unstable; urgency=low + + * New upstream release + * http://wordpress.org/development/2007/05/wordpress-22/ + + -- Kai Hendry Wed, 16 May 2007 09:54:36 +0100 + +wordpress (2.1.3-1ubuntu1) feisty; urgency=low + + * Merge from Debian unstable. Remaining changes: + - Changed Blogroll to point to Planet Ubuntu instead of Planet Debian + - debian/control: Change Maintainer/XSBC-Original-Maintainer field. + - debian/apache.conf: Changed to use /var/www instead of /srv/www for virtual webroot + - debian/README.debian: Updated to include documentation on the change + - debian/setup-mysql: Changed to use /var/www instead of /srv/www + * UVF exception: LP: #103396 + + -- Michael Bienia Thu, 5 Apr 2007 22:39:12 +0200 + +wordpress (2.1.3-1) unstable; urgency=high + + * New upstream security release + * http://wordpress.org/development/2007/04/wordpress-213-and-2010/ + * attempt to create a link into /srv/www/, directory which may not + exist (Closes: #409258) + + -- Kai Hendry Wed, 04 Apr 2007 20:35:40 +0100 + +wordpress (2.1.2-1ubuntu2) feisty; urgency=low + + * Closes LP: #53001 + - debian/apache.conf: Changed to use /var/www instead of /srv/www for virtual webroot + - debian/README.debian: Updated to include documentation on the change + - debian/setup-mysql: Changed to use /var/www instead of /srv/www + + -- Joseph Jackson IV Sun, 25 Mar 2007 03:16:00 +0500 + +wordpress (2.1.2-1ubuntu1) feisty; urgency=low + + * Merge from Debian unstable. Remaining changes: + - Changed Blogroll to point to Planet Ubuntu instead of Planet Debian + - debian/control: Change Maintainer/XSBC-Original-Maintainer field. + * Fixes CVE-2007-1230 + * UVF exception: LP: #90532 + + -- Michael Bienia Thu, 8 Mar 2007 12:26:41 +0100 + +wordpress (2.1.2-1) unstable; urgency=high + + * New upstream security release + * possible security issue (Closes: #413171) + * http://trac.wordpress.org/ticket/3879 + * http://wordpress.org/development/2007/03/upgrade-212/ + + -- Kai Hendry Sun, 4 Mar 2007 20:53:12 +0000 + +wordpress (2.1.1-1ubuntu1) feisty; urgency=low + + * Merge from Debian unstable. Remaining changes: + - Changed Blogroll to point to Planet Ubuntu instead of Planet Debian + * debian/control: Change Maintainer/XSBC-Original-Maintainer field. + * UVF exception: LP: #87097 + + -- Michael Bienia Fri, 23 Feb 2007 14:10:37 +0100 + +wordpress (2.1.1-1) unstable; urgency=high + + * New upstream security release + * Updated copyright with new download link + * http://wordpress.org/development/2007/02/new-releases + * http://trac.wordpress.org/milestone/2.1.1 + * http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-1049 + + -- Kai Hendry Wed, 21 Feb 2007 11:14:33 +0000 + +wordpress (2.1.0-1ubuntu1) feisty; urgency=low + + * Changed Blogroll to point to Planet Ubuntu instead of Planet Debian + + -- Martin Meredith Mon, 5 Feb 2007 15:05:21 +0000 + +wordpress (2.1.0-1) unstable; urgency=low + + * New upstream release + * http://wordpress.org/development/2007/01/ella-21/ + * Thanks to #debian-devel's Sesse and seanius to help fix the execute perm + problems on wp-includes/ + * Modified Blogroll to point only to Planet Debian + + -- Kai Hendry Tue, 23 Jan 2007 14:47:30 +0000 + +wordpress (2.0.7-1) unstable; urgency=low + + * New upstream release + * New upstream available (security fix) (Closes: #407116) + * Thanks to Fabio Tranchitella and Moritz Muehlenhoff for their support + * Improved the copyright at Moritz's request + * Moritz says the security fix does not apply to Debian's PHP hence low + urgency + * See http://wordpress.org/development/2007/01/wordpress-207/ for details of + minor changes + * Tweaked the dependency line for better php5 support + * setup-mysql -h minor usage summary error + should be executable + (Closes: #407496) + + -- Kai Hendry Fri, 19 Jan 2007 10:35:57 +0000 + +wordpress (2.0.6-1) unstable; urgency=high + + * New upstream release + * Security fix, urgency high. + * FrSIRT/ADV-2006-5191, CVE-2006-6808: WordPress "get_file_description()" + Function Client-Side Cross Site Scripting Vulnerability. + (Closes: #405299, #405691) + + -- Kai Hendry Fri, 5 Jan 2007 14:04:56 +0000 + +wordpress (2.0.5-0.1) unstable; urgency=medium + + * NMU on maintainer's request. + * Security fix, urgency medium. + * readme.html: s/license.txt/copyright/. (Closes: #382283) + * New upstream release, which fixes: + - CVE-2006-4208: Directory traversal vulnerability in WP-DB-Backup + plugin for WordPress. (Closes: #384800) + + -- Fabio Tranchitella Fri, 3 Nov 2006 15:12:06 +0100 + +wordpress (2.0.4-2) unstable; urgency=low + + * examples/setup-mysql doesn't work with dash (Closes: #372128) + * installs apache AND apache2 by default (Closes: #379118) + Many thanks to Fabio Tranchitella and Jesus Climent + * "Publish" produces broken links (Closes: #367001) + Disabled "Rich editor" by default + + -- Kai Hendry Sun, 6 Aug 2006 12:39:56 +0100 + +wordpress (2.0.4-1) unstable; urgency=high + + * New upstream release + * examples/setup-mysql doesn't work with dash (Closes: #372128) + + -- Kai Hendry Sun, 6 Aug 2006 11:59:39 +0100 + +wordpress (2.0.3-1) unstable; urgency=high + + * New upstream release + * 'Cache' shell injection vulnerability (Closes: #369014) + + -- Kai Hendry Fri, 2 Jun 2006 21:00:51 +0900 + +wordpress (2.0.2-2) unstable; urgency=high + + * setup-mysql fails if the domain contains a port number (Closes: + #362171) + * Insecure file permissions in /etc/wordpress (Closes: #363580) + * Added a postinst to help users correct permissions + + -- Kai Hendry Thu, 20 Apr 2006 10:12:56 +0900 + +wordpress (2.0.2-1) unstable; urgency=high + + * New upstream release + * 'This would have been out sooner, if I wasn't in hospital' release ;) + * Changed blogroll link to Planet Debian + * Altered 'plugin policy', it's now DIY + * mysql syntax error when running setup-mysql script (Closes: #355958) + * Several vulnerabilities discovered by 'snake oil' Neo Security Team + (Closes: #355055) + http://somethingunpredictable.com/archives/01/03/2006/wordpress-vulnerabilities-bogus/ + * http://wordpress.org/development/2006/03/security-202/ + + -- Kai Hendry Mon, 13 Mar 2006 12:44:44 +0900 + +wordpress (2.0.1-1) unstable; urgency=low + + * New upstream release + * CSS Security Vulnerability (Closes: #328909) + * Please announce that upgrade.php needs to be run after update + (Closes: #348458) + + -- Kai Hendry Thu, 2 Feb 2006 11:22:31 +0900 + +wordpress (2.0-1) unstable; urgency=low + + * New upstream release + * Closes: #320462: Wordpress replaces valid characters in urls with + HTML entities, breaking the URL + * Closes: #326685: Incorrectly mangles URLs using the wptexturize + function + * Closes: #347339: Wordpress version 2 is available + * Closes: #345508: Should have a dependancy on the php5-gd package + + -- Kai Hendry Fri, 13 Jan 2006 03:58:59 +0000 + +wordpress (1.5.2-2) unstable; urgency=low + + * Now with support for PHP5 + * Requires mysql-server when the server can actually be on a remote + server (Closes: #328554) + + -- Kai Hendry Thu, 22 Sep 2005 13:56:50 +1000 + +wordpress (1.5.2-1) unstable; urgency=high + + * New upstream "security fix" release + * Closes: #323040: CAN-2005-2612 + * See: http://wordpress.org/development/2005/08/one-five-two/ + + -- Kai Hendry Fri, 19 Aug 2005 10:58:17 +1000 + +wordpress (1.5.1.3-4) unstable; urgency=medium + + * 'I really should have tested this on another machine' release + * Closes: #319007: dbconfig dep screws upgrade + + -- Kai Hendry Tue, 19 Jul 2005 20:03:10 +1000 + +wordpress (1.5.1.3-3) unstable; urgency=low + + * Improved the setup-mysql script for Wordpress MASS hosting with Apache's + VirtualDocumentRoot + + -- Kai Hendry Fri, 15 Jul 2005 10:50:59 +1000 + +wordpress (1.5.1.3-2) unstable; urgency=high + + * The no XML-RPC vulnerabilities here release. ;) + * Strongly advised to upgrade due to inconsistencies between 1.5.1.3-1 orig + tar.gz and the upstream 1.5.1.3 latest.tar.gz after checking. + * Closes: #312721: wordpress does not see mysql + * Changed upstream's default links. Controversial? + + -- Kai Hendry Fri, 8 Jul 2005 12:11:23 +1000 + +wordpress (1.5.1.3-1) unstable; urgency=high + + * New upstream release + * Yet another security release: + http://wordpress.org/development/2005/06/wordpress-1513 + + -- Kai Hendry Thu, 30 Jun 2005 15:25:27 +1000 + +wordpress (1.5.1.2-1) unstable; urgency=high + + * New upstream release + * Another security release: + http://wordpress.org/development/2005/05/security-update/ + + -- Kai Hendry Sun, 29 May 2005 00:52:39 +1000 + +wordpress (1.5.1-1) unstable; urgency=high + + * Upstream changelog is here: + http://codex.wordpress.org/Changelog/1.5.1 + * Fixes an unannounced "important security fix" + + -- Tue, 10 May 2005 01:48:34 +0100 + +wordpress (1.5.0-2) unstable; urgency=low + + * Thanks to NOKUBI Takatsugu and the Debian Japan people for making this + release possible + * Moved mysql setup out of postinst allowing multiple blogs on the host at + the loss of automated mysql setup. + * Closes: #298563: incompatible with mysql-server-4.1 + * Closes: #298571: multiple installation support + * Closes: #300200: multiple installation support + * Closes: #300757: How would one add plugins to wordpress ? + + -- Kai Hendry Sat, 23 Apr 2005 15:17:45 +0900 + +wordpress (1.5.0-1) unstable; urgency=high + + * Closes: #275814: New version fixes security flaws + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2004-1559 + * Closes: #288613: /usr/share/wordpress/readme.html missing + * Closes: #287086: new upstream 1.2.2 + * Added some NEWS that users will find helpful in the upgrade + + -- Kai Hendry Fri, 25 Feb 2005 07:11:47 +0200 + +wordpress (1.2.2-1.1) unstable; urgency=medium + + * NMU + * Thank you Dominic Hargreaves and svn-upgrade + + -- Kai Hendry Sat, 18 Dec 2004 09:32:14 +0200 + +wordpress (1.2.1-1.1) unstable; urgency=medium + + * NMU + * Closes: #275814: New upstream release that fixes security problem + detailed: http://secunia.com/advisories/12773/ + * Closes: #276112: Need more complete README.Debian for new users + Added some detail to README.Debian + * Escaped a mysql line in the postrm that might avoid a bug. + + -- Kai Hendry Sat, 27 Nov 2004 16:48:32 +0200 + +wordpress (1.2.0-1.1) unstable; urgency=low + + * NMU + * Closes: #250812: New upstream + * Closes: #251653: apache2 support + * Closes: #255121: conffiles not marked + * Revised dependency on mysql-server otherwise debian-sys-maint will never work + * Thanks to Teemu Hukkanen, Corey Wright, Christian Hammers and Matt Mullenweg + + -- Kai Hendry Thu, 12 Aug 2004 21:50:04 +0300 + +wordpress (1.0.2-1) unstable; urgency=low + + * New upstream release + * New package description (Closes: #237137) + * Made a plain text version of readme.html + + -- Gabriel Rodríguez Alberich Sun, 21 Mar 2004 18:25:20 +0000 + +wordpress (1.0.1-1) unstable; urgency=low + + * Initial release (Closes: #230034) + + -- Gabriel Rodríguez Alberich Thu, 26 Feb 2004 19:37:33 +0000 + --- wordpress-2.5.1.orig/debian/wordpress.links +++ wordpress-2.5.1/debian/wordpress.links @@ -0,0 +1,24 @@ +/usr/share/php/libphp-phpmailer/class.phpmailer.php usr/share/wordpress/wp-includes/class-phpmailer.php +/usr/share/php/libphp-phpmailer/class.smtp.php usr/share/wordpress/wp-includes/class-smtp.php +etc/wordpress/htaccess usr/share/wordpress/.htaccess +etc/wordpress/wp-config.php usr/share/wordpress/wp-config.php +usr/share/doc/wordpress/readme.html usr/share/wordpress/readme.html +usr/share/javascript/prototype/prototype.js usr/share/wordpress/wp-includes/js/prototype.js +usr/share/javascript/scriptaculous/builder.js usr/share/wordpress/wp-includes/js/scriptaculous/builder.js +usr/share/javascript/scriptaculous/controls.js usr/share/wordpress/wp-includes/js/scriptaculous/controls.js +usr/share/javascript/scriptaculous/dragdrop.js usr/share/wordpress/wp-includes/js/scriptaculous/dragdrop.js +usr/share/javascript/scriptaculous/effects.js usr/share/wordpress/wp-includes/js/scriptaculous/effects.js +usr/share/javascript/scriptaculous/prototype.js usr/share/wordpress/wp-includes/js/scriptaculous/prototype.js +usr/share/javascript/scriptaculous/scriptaculous.js usr/share/wordpress/wp-includes/js/scriptaculous/scriptaculous.js +usr/share/javascript/scriptaculous/slider.js usr/share/wordpress/wp-includes/js/scriptaculous/slider.js +usr/share/javascript/scriptaculous/sound.js usr/share/wordpress/wp-includes/js/scriptaculous/sound.js +usr/share/javascript/scriptaculous/unittest.js usr/share/wordpress/wp-includes/js/scriptaculous/unittest.js +usr/share/tinymce/www/tiny_mce.js usr/share/wordpress/wp-includes/js/tinymce/tiny_mce.js +usr/share/tinymce/www/tiny_mce_popup.js usr/share/wordpress/wp-includes/js/tinymce/tiny_mce_popup.js +usr/share/tinymce/www/plugins/autosave usr/share/wordpress/wp-includes/js/tinymce/plugins/autosave +usr/share/tinymce/www/plugins/directionality usr/share/wordpress/wp-includes/js/tinymce/plugins/directionality +usr/share/tinymce/www/plugins/fullscreen usr/share/wordpress/wp-includes/js/tinymce/plugins/fullscreen +usr/share/tinymce/www/plugins/media usr/share/wordpress/wp-includes/js/tinymce/plugins/media +usr/share/tinymce/www/plugins/paste usr/share/wordpress/wp-includes/js/tinymce/plugins/paste +usr/share/tinymce/www/plugins/safari usr/share/wordpress/wp-includes/js/tinymce/plugins/safari +usr/share/php/libphp-snoopy/Snoopy.class.php usr/share/wordpress/wp-includes/class-snoopy.php --- wordpress-2.5.1.orig/debian/patches/010_remove_update_notice.patch +++ wordpress-2.5.1/debian/patches/010_remove_update_notice.patch @@ -0,0 +1,50 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 010_remove_update_notice.patch.dpatch by Stefan Lesicnik +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: No description. + +@DPATCH@ +diff -urNad wordpress-2.5.1-10ubuntu1~/wp-admin/includes/update.php wordpress-2.5.1-10ubuntu1/wp-admin/includes/update.php +--- wordpress-2.5.1-10ubuntu1~/wp-admin/includes/update.php 2008-11-23 18:03:39.000000000 +0200 ++++ wordpress-2.5.1-10ubuntu1/wp-admin/includes/update.php 2008-11-23 18:07:28.000000000 +0200 +@@ -3,27 +3,8 @@ + // The admin side of our 1.1 update system + + function core_update_footer( $msg = '' ) { +- if ( !current_user_can('manage_options') ) +- return sprintf( '| '.__( 'Version %s' ), $GLOBALS['wp_version'] ); +- +- $cur = get_option( 'update_core' ); +- +- switch ( $cur->response ) { +- case 'development' : +- return sprintf( '| '.__( 'You are using a development version (%s). Cool! Please stay updated.' ), $GLOBALS['wp_version'], $cur->url, $cur->current ); +- break; +- +- case 'upgrade' : +- if ( current_user_can('manage_options') ) { +- return sprintf( '| '.__( 'Get Version %3$s' ).'', $GLOBALS['wp_version'], $cur->url, $cur->current ); +- break; +- } +- +- case 'latest' : +- default : +- return sprintf( '| '.__( 'Version %s' ), $GLOBALS['wp_version'], $cur->url, $cur->current ); +- break; +- } ++ // updates are managed by the distribution, no need for a warning ++ return sprintf( '| '.__( 'Version %s' ), $GLOBALS['wp_version'] ); + } + add_filter( 'update_footer', 'core_update_footer' ); + +@@ -40,7 +21,8 @@ + + echo "
$msg
"; + } +-add_action( 'admin_notices', 'update_nag', 3 ); ++// updates are managed by the distribution, no need for a warning ++// add_action( 'admin_notices', 'update_nag', 3 ); + + // Called directly from dashboard + function update_right_now_message() { --- wordpress-2.5.1.orig/debian/patches/007CVE2008-2392.patch +++ wordpress-2.5.1/debian/patches/007CVE2008-2392.patch @@ -0,0 +1,123 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## CVE-2008-2392.dpatch by +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Fixes unrestrictd upload issue for blog administrators + +@DPATCH@ + +diff -Nru wordpress/wp-admin/includes/schema.php wordpress-new/wp-admin/includes/schema.php +--- wordpress/wp-admin/includes/schema.php 2008-11-06 10:07:00.000000000 +0100 ++++ wordpress-new/wp-admin/includes/schema.php 2008-11-06 10:06:38.000000000 +0100 +@@ -411,7 +411,9 @@ + $role = get_role( 'administrator' ); + + if ( !empty( $role ) ) { +- $role->add_cap( 'unfiltered_upload' ); ++ //Commenting out this line fixes CVE-2008-2392 ++ //Administrators will not have unrestricted upload capability anymore. ++ //$role->add_cap( 'unfiltered_upload' ); + } + } + +diff -Nru wordpress/wp-admin/menu.php wordpress-new/wp-admin/menu.php +--- wordpress/wp-admin/menu.php 2008-04-17 02:10:20.000000000 +0200 ++++ wordpress-new/wp-admin/menu.php 2008-11-05 18:59:14.000000000 +0100 +@@ -64,6 +64,7 @@ + $submenu['options-general.php'][30] = array(__('Privacy'), 'manage_options', 'options-privacy.php'); + $submenu['options-general.php'][35] = array(__('Permalinks'), 'manage_options', 'options-permalink.php'); + $submenu['options-general.php'][40] = array(__('Miscellaneous'), 'manage_options', 'options-misc.php'); ++$submenu['options-general.php'][45] = array(__('Security'), 'manage_options', 'options-security.php'); + + $submenu['plugins.php'][5] = array(__('Plugins'), 'activate_plugins', 'plugins.php'); + $submenu['plugins.php'][10] = array(__('Plugin Editor'), 'edit_plugins', 'plugin-editor.php'); +diff -Nru wordpress/wp-admin/options-sec.php wordpress-new/wp-admin/options-sec.php +--- wordpress/wp-admin/options-sec.php 1970-01-01 01:00:00.000000000 +0100 ++++ wordpress-new/wp-admin/options-sec.php 2008-11-06 09:51:29.000000000 +0100 +@@ -0,0 +1,41 @@ ++ ++
++remove_cap('unfiltered_upload'); ++ print("Changes applied"); ++ } ++else if (isset($_POST["unfiltered_upload"]) && $_POST["unf_up"]=="false"){ ++ $role->add_cap('unfiltered_upload'); ++ print("Changes applied"); ++ } ++else ++ print("Nothing to do"); ++ ++$wp_rewrite->flush_rules(); ++ ++wp_cache_flush(); ++ ++?> ++
++ ++ +diff -Nru wordpress/wp-admin/options-security.php wordpress-new/wp-admin/options-security.php +--- wordpress/wp-admin/options-security.php 1970-01-01 01:00:00.000000000 +0100 ++++ wordpress-new/wp-admin/options-security.php 2008-11-06 09:48:10.000000000 +0100 +@@ -0,0 +1,41 @@ ++ ++ ++
++

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

++

++
++ ++
++ ++ ++ ++ --- wordpress-2.5.1.orig/debian/patches/00list +++ wordpress-2.5.1/debian/patches/00list @@ -0,0 +1,11 @@ +001readme.patch +002js-library.patch +003installer.patch +004languages.patch +005french.patch +006rss_language.patch +007CVE2008-2392.patch +008CVE2008-3747.patch +009CVE2008-4106.patch +010_remove_update_notice.patch +010_REQUEST.patch --- wordpress-2.5.1.orig/debian/patches/005french.patch +++ wordpress-2.5.1/debian/patches/005french.patch @@ -0,0 +1,1728 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## French language patch.dpatch by +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Making a new french theme + +@DPATCH@ + +diff -Nru wordpress/wp-content/themes/default-fr/404.php wordpress-2.5.0/wp-content/themes/default-fr/404.php +--- wordpress/wp-content/themes/default-fr/404.php 1970-01-01 01:00:00.000000000 +0100 ++++ wordpress-2.5.0/wp-content/themes/default-fr/404.php 2008-04-18 14:21:14.000000000 +0200 +@@ -0,0 +1,8 @@ ++ ++ ++
++

Erreur 404 - Rien n'a été trouvé

++
++ ++ ++ +\ No newline at end of file +diff -Nru wordpress/wp-content/themes/default-fr/archive.php wordpress-2.5.0/wp-content/themes/default-fr/archive.php +--- wordpress/wp-content/themes/default-fr/archive.php 1970-01-01 01:00:00.000000000 +0100 ++++ wordpress-2.5.0/wp-content/themes/default-fr/archive.php 2008-04-18 14:21:14.000000000 +0200 +@@ -0,0 +1,51 @@ ++ ++ ++
++ ++ ++ ++

Archive pour la catégorie ‘

++ ++

Articles taggés avec ‘

++ ++

Archive pour

++ ++

Archive pour

++ ++

Archive pour

++ ++

Archive par auteur

++ ++

Archives du blog

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

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

Introuvable

++ ++ ++
++ ++ ++ +\ No newline at end of file +diff -Nru wordpress/wp-content/themes/default-fr/archives.php wordpress-2.5.0/wp-content/themes/default-fr/archives.php +--- wordpress/wp-content/themes/default-fr/archives.php 1970-01-01 01:00:00.000000000 +0100 ++++ wordpress-2.5.0/wp-content/themes/default-fr/archives.php 2008-04-18 14:21:14.000000000 +0200 +@@ -0,0 +1,23 @@ ++ ++ ++ ++ ++
++ ++ ++

Archives par mois :

++
    ++ ++
++ ++

Archives par sujet :

++
    ++ ++
++
++ ++ +\ No newline at end of file +diff -Nru wordpress/wp-content/themes/default-fr/attachment.php wordpress-2.5.0/wp-content/themes/default-fr/attachment.php +--- wordpress/wp-content/themes/default-fr/attachment.php 1970-01-01 01:00:00.000000000 +0100 ++++ wordpress-2.5.0/wp-content/themes/default-fr/attachment.php 2008-04-18 14:21:14.000000000 +0200 +@@ -0,0 +1,53 @@ ++ ++ ++
++ ++ ++ ++ ++ ID, true, array(450, 800)); // This also populates the iconsize for the next line ?> ++ ID); $classname = ($_post->iconsize[0] <= 128 ? 'small' : '') . 'attachment'; // This lets us style narrow icons specially ?> ++ ++
++

post_parent); ?> »

++
++


guid); ?>

++ Lire la suite de cet article »

'); ?> ++ Pages : ', '

', 'number'); ?> ++ ++
++
++ ++ ++ ++ ++

Désolé, aucun fichier attaché ne correspond à vos critères.

++ ++ ++
++ ++ +\ No newline at end of file +diff -Nru wordpress/wp-content/themes/default-fr/comments.php wordpress-2.5.0/wp-content/themes/default-fr/comments.php +--- wordpress/wp-content/themes/default-fr/comments.php 1970-01-01 01:00:00.000000000 +0100 ++++ wordpress-2.5.0/wp-content/themes/default-fr/comments.php 2008-04-18 14:21:14.000000000 +0200 +@@ -0,0 +1,90 @@ ++post_password)) { // if there's a password ++ if ($_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password) { // and it doesn't match the cookie ++ ?> ++

Cet article est protégé par un mot de passe. Entrez ce mot de passe pour lire les commentaires.

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

pour “

++ ++
    ++ ++
  1. id="comment-"> ++ ++ dit : ++ comment_approved == '0') : ?> ++ Votre commentaire est en attente de modération. ++ ++
    ++ ++ ++
  2. ++ ++
++ ++ ++ ++ comment_status) : ?> ++ ++ ++ ++

Les commentaires sont fermés.

++ ++ ++ ++ ++comment_status) : ?> ++

Laisser un commentaire

++ ++ ++

Vous devez être connecté pour publier un commentaire.

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

Connecté en tant que . Se déconnecter »

++ ++ ++ ++

++

++ ++

++

++ ++

++

++ ++ ++ ++ ++

++ ++

++

++ ++ ID); ?> ++
++ ++ ++ +\ No newline at end of file +diff -Nru wordpress/wp-content/themes/default-fr/comments-popup.php wordpress-2.5.0/wp-content/themes/default-fr/comments-popup.php +--- wordpress/wp-content/themes/default-fr/comments-popup.php 1970-01-01 01:00:00.000000000 +0100 ++++ wordpress-2.5.0/wp-content/themes/default-fr/comments-popup.php 2008-04-18 14:21:14.000000000 +0200 +@@ -0,0 +1,121 @@ ++ ++ ++ ++ ++ <?php echo get_settings('blogname'); ?> - Commentaires de <?php the_title(); ?> ++ ++ ++ ++ ++ ++ ++ ++

++

Commentaires

++ ++

Flux RSS pour les commentaires de cet article.

++ ++ping_status) { ?> ++

L'URL à utiliser pour le trackback est :

++ ++ ++post_password) && $_COOKIE['wp-postpass_'. COOKIEHASH] != $post->post_password) { // and it doesn't match the cookie ++ echo(get_the_password_form()); ++} else { ?> ++ ++ ++ ++
    ++ ++
  1. ++ ++

    par à

    ++
  2. ++ ++
++ ++ ++ ++

Pas encore de commentaire.

++ ++ ++ ++comment_status) { ?> ++ ++

Laisser un commentaire

++

Les retours à la ligne et les paragraphes seront mis automatiquement, l'adresse e-mail n'est jamais affichée, les balises HTML acceptées sont :

++ ++
++ ++

Connecté en tant que . Se déconnecter »

++ ++

++ ++ ++ ++ " /> ++

++ ++

++ ++ ++

++ ++

++ ++ ++

++ ++

++ ++
++ ++

++ ++

++ ++

++ ID); ?> ++
++ ++ ++ ++

Désolé, les commentaires sont fermés pour l'instant.

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

Propulsé par WordPress

++ ++ ++ ++ +\ No newline at end of file +diff -Nru wordpress/wp-content/themes/default-fr/footer.php wordpress-2.5.0/wp-content/themes/default-fr/footer.php +--- wordpress/wp-content/themes/default-fr/footer.php 1970-01-01 01:00:00.000000000 +0100 ++++ wordpress-2.5.0/wp-content/themes/default-fr/footer.php 2008-04-18 14:21:14.000000000 +0200 +@@ -0,0 +1,16 @@ ++
++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff -Nru wordpress/wp-content/themes/default-fr/functions.php wordpress-2.5.0/wp-content/themes/default-fr/functions.php +--- wordpress/wp-content/themes/default-fr/functions.php 1970-01-01 01:00:00.000000000 +0100 ++++ wordpress-2.5.0/wp-content/themes/default-fr/functions.php 2008-04-18 14:21:14.000000000 +0200 +@@ -0,0 +1,418 @@ ++ '
  • ', ++ 'after_widget' => '
  • ', ++ 'before_title' => '

    ', ++ 'after_title' => '

    ', ++ )); ++ ++function kubrick_head() { ++ $head = "\n"; ++ if ( '' != $output ) ++ echo $head . $output . $foot; ++} ++ ++add_action('wp_head', 'kubrick_head'); ++ ++function kubrick_header_image() { ++ return apply_filters('kubrick_header_image', get_option('kubrick_header_image')); ++} ++ ++function kubrick_upper_color() { ++ if (strpos($url = kubrick_header_image_url(), 'header-img.php?') !== false) { ++ parse_str(substr($url, strpos($url, '?') + 1), $q); ++ return $q['upper']; ++ } else ++ return '69aee7'; ++} ++ ++function kubrick_lower_color() { ++ if (strpos($url = kubrick_header_image_url(), 'header-img.php?') !== false) { ++ parse_str(substr($url, strpos($url, '?') + 1), $q); ++ return $q['lower']; ++ } else ++ return '4180b6'; ++} ++ ++function kubrick_header_image_url() { ++ if ( $image = kubrick_header_image() ) ++ $url = get_template_directory_uri() . '/images/' . $image; ++ else ++ $url = get_template_directory_uri() . '/images/kubrickheader.jpg'; ++ ++ return $url; ++} ++ ++function kubrick_header_color() { ++ return apply_filters('kubrick_header_color', get_option('kubrick_header_color')); ++} ++ ++function kubrick_header_color_string() { ++ $color = kubrick_header_color(); ++ if ( false === $color ) ++ return 'white'; ++ ++ return $color; ++} ++ ++function kubrick_header_display() { ++ return apply_filters('kubrick_header_display', get_option('kubrick_header_display')); ++} ++ ++function kubrick_header_display_string() { ++ $display = kubrick_header_display(); ++ return $display ? $display : 'inline'; ++} ++ ++add_action('admin_menu', 'kubrick_add_theme_page'); ++ ++function kubrick_add_theme_page() { ++ if ( isset( $_GET['page'] ) && $_GET['page'] == basename(__FILE__) ) { ++ if ( isset( $_REQUEST['action'] ) && 'save' == $_REQUEST['action'] ) { ++ check_admin_referer('kubrick-header'); ++ if ( isset($_REQUEST['njform']) ) { ++ if ( isset($_REQUEST['defaults']) ) { ++ delete_option('kubrick_header_image'); ++ delete_option('kubrick_header_color'); ++ delete_option('kubrick_header_display'); ++ } else { ++ if ( '' == $_REQUEST['njfontcolor'] ) ++ delete_option('kubrick_header_color'); ++ else { ++ $fontcolor = preg_replace('/^.*(#[0-9a-fA-F]{6})?.*$/', '$1', $_REQUEST['njfontcolor']); ++ update_option('kubrick_header_color', $fontcolor); ++ } ++ if ( preg_match('/[0-9A-F]{6}|[0-9A-F]{3}/i', $_REQUEST['njuppercolor'], $uc) && preg_match('/[0-9A-F]{6}|[0-9A-F]{3}/i', $_REQUEST['njlowercolor'], $lc) ) { ++ $uc = ( strlen($uc[0]) == 3 ) ? $uc[0]{0}.$uc[0]{0}.$uc[0]{1}.$uc[0]{1}.$uc[0]{2}.$uc[0]{2} : $uc[0]; ++ $lc = ( strlen($lc[0]) == 3 ) ? $lc[0]{0}.$lc[0]{0}.$lc[0]{1}.$lc[0]{1}.$lc[0]{2}.$lc[0]{2} : $lc[0]; ++ update_option('kubrick_header_image', "header-img.php?upper=$uc&lower=$lc"); ++ } ++ ++ if ( isset($_REQUEST['toggledisplay']) ) { ++ if ( false === get_option('kubrick_header_display') ) ++ update_option('kubrick_header_display', 'none'); ++ else ++ delete_option('kubrick_header_display'); ++ } ++ } ++ } else { ++ ++ if ( isset($_REQUEST['headerimage']) ) { ++ check_admin_referer('kubrick-header'); ++ if ( '' == $_REQUEST['headerimage'] ) ++ delete_option('kubrick_header_image'); ++ else { ++ $headerimage = preg_replace('/^.*?(header-img.php\?upper=[0-9a-fA-F]{6}&lower=[0-9a-fA-F]{6})?.*$/', '$1', $_REQUEST['headerimage']); ++ update_option('kubrick_header_image', $headerimage); ++ } ++ } ++ ++ if ( isset($_REQUEST['fontcolor']) ) { ++ check_admin_referer('kubrick-header'); ++ if ( '' == $_REQUEST['fontcolor'] ) ++ delete_option('kubrick_header_color'); ++ else { ++ $fontcolor = preg_replace('/^.*?(#[0-9a-fA-F]{6})?.*$/', '$1', $_REQUEST['fontcolor']); ++ update_option('kubrick_header_color', $fontcolor); ++ } ++ } ++ ++ if ( isset($_REQUEST['fontdisplay']) ) { ++ check_admin_referer('kubrick-header'); ++ if ( '' == $_REQUEST['fontdisplay'] || 'inline' == $_REQUEST['fontdisplay'] ) ++ delete_option('kubrick_header_display'); ++ else ++ update_option('kubrick_header_display', 'none'); ++ } ++ } ++ //print_r($_REQUEST); ++ wp_redirect("themes.php?page=functions.php&saved=true"); ++ die; ++ } ++ add_action('admin_head', 'kubrick_theme_page_head'); ++ } ++ add_theme_page(__('Customize Header'), __('Header Image and Color'), 'edit_themes', basename(__FILE__), 'kubrick_theme_page'); ++} ++ ++function kubrick_theme_page_head() { ++?> ++ ++ ++ ++

    '.__('Options saved.').'

    '; ++?> ++
    ++
    ++

    ++
    ++ ++
    ++
    ++
    ++
    ++ ++
    ++ ++
    ++ red', '#FF0000', 'rgb(255, 0, 0)'); ?>
    ++ #FF0000', '#F00'); ?>
    ++ #FF0000', '#F00'); ?>
    ++ ++ ++ ++ ++ ++ ++
    ++
    ++
    ++
    ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++

    ++
    ++ ++
    ++ ++
    ++
    ++
    ++
    ++ +diff -Nru wordpress/wp-content/themes/default-fr/header.php wordpress-2.5.0/wp-content/themes/default-fr/header.php +--- wordpress/wp-content/themes/default-fr/header.php 1970-01-01 01:00:00.000000000 +0100 ++++ wordpress-2.5.0/wp-content/themes/default-fr/header.php 2008-04-18 14:21:14.000000000 +0200 +@@ -0,0 +1,31 @@ ++ ++> ++ ++ ++ ++ <?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> » Archive du blog <?php } ?> <?php wp_title(); ?> ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++
    ++ ++
    +\ No newline at end of file +diff -Nru wordpress/wp-content/themes/default-fr/index.php wordpress-2.5.0/wp-content/themes/default-fr/index.php +--- wordpress/wp-content/themes/default-fr/index.php 1970-01-01 01:00:00.000000000 +0100 ++++ wordpress-2.5.0/wp-content/themes/default-fr/index.php 2008-04-18 14:21:14.000000000 +0200 +@@ -0,0 +1,34 @@ ++ ++ ++
    ++ ++ ++ ++ ++
    ++

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

    Introuvable

    ++

    Désolé, mais vous cherchez quelque chose qui ne se trouve pas ici .

    ++ ++ ++ ++
    ++ ++ ++ +\ No newline at end of file +diff -Nru wordpress/wp-content/themes/default-fr/links.php wordpress-2.5.0/wp-content/themes/default-fr/links.php +--- wordpress/wp-content/themes/default-fr/links.php 1970-01-01 01:00:00.000000000 +0100 ++++ wordpress-2.5.0/wp-content/themes/default-fr/links.php 2008-04-18 14:21:14.000000000 +0200 +@@ -0,0 +1,16 @@ ++ ++ ++ ++ ++
    ++

    Liens :

    ++
      ++ ++
    ++
    ++ ++ +\ No newline at end of file +diff -Nru wordpress/wp-content/themes/default-fr/page.php wordpress-2.5.0/wp-content/themes/default-fr/page.php +--- wordpress/wp-content/themes/default-fr/page.php 1970-01-01 01:00:00.000000000 +0100 ++++ wordpress-2.5.0/wp-content/themes/default-fr/page.php 2008-04-18 14:21:14.000000000 +0200 +@@ -0,0 +1,19 @@ ++ ++ ++
    ++ ++ ++
    ++

    ++
    ++ Lire le reste de cette page »

    '); ?> ++ '

    Pages: ', 'after' => '

    ', 'next_or_number' => 'number')); ?> ++
    ++
    ++ ', '

    '); ?> ++ ++ ++
    ++ ++ ++ +\ No newline at end of file +diff -Nru wordpress/wp-content/themes/default-fr/rtl.css wordpress-2.5.0/wp-content/themes/default-fr/rtl.css +--- wordpress/wp-content/themes/default-fr/rtl.css 1970-01-01 01:00:00.000000000 +0100 ++++ wordpress-2.5.0/wp-content/themes/default-fr/rtl.css 2008-04-18 14:21:14.000000000 +0200 +@@ -0,0 +1,98 @@ ++/* Based on Arabic (RTL) version of Kubrick theme, converted by Serdal (Serdal.com) */ ++.narrowcolumn, .alignleft, .widecolumn .smallattachment { ++ float: right; ++} ++.alignright, #commentform #submit { ++ float: left; ++} ++#page, .post, #wp-calendar #prev a { ++ text-align: right; ++} ++body, #commentform p { ++ font-family: 'Geeza Pro', Tahoma, 'Lucida Grande', Verdana, Arial, Sans-Serif; ++} ++small { ++ font-family: 'Geeza Pro', Tahoma, Arial, Helvetica, Sans-Serif; ++} ++h1, h2, h3 { ++ font-family: 'Al Bayan', 'Traditional Arabic', 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, Sans-Serif; ++} ++#sidebar h2 { ++ font-family: 'Al Bayan', 'Traditional Arabic', 'Lucida Grande', Verdana, Sans-Serif; ++} ++.commentlist li, #commentform input, #commentform textarea { ++ font-family: 'Geeza Pro', Tahoma, 'Lucida Grande', Verdana, Arial, Sans-Serif; ++} ++#sidebar { ++ font-family: 'Geeza Pro', Tahoma, 'Lucida Grande', Verdana, Arial, Sans-Serif; ++} ++#wp-calendar caption { ++ font-family: 'Geeza Pro', Tahoma, 'Lucida Grande', Verdana, Arial, Sans-Serif; ++} ++acronym, abbr, span.caps { ++ letter-spacing: normal; ++} ++#header { ++ margin: 0 1px 0 0; ++} ++.narrowcolumn { ++ padding: 0 45px 20px 0; ++} ++.widecolumn { ++ margin: 5px 150px 0 0; ++} ++.widecolumn .smallattachment { ++ margin: 5px 0px 5px 5px; ++} ++.postmetadata { ++ clear: right; ++} ++img.alignright { ++ margin: 0 7px 2px 0; ++} ++img.alignleft { ++ margin: 0 0 2px 7px; ++} ++.entry ol { ++ padding: 0 35px 0 0; ++} ++#sidebar ul ul, #sidebar ul ol { ++ margin: 5px 10px 0 0; ++} ++#sidebar ul ul ul, #sidebar ul ol { ++ margin: 0 10px 0 0; ++} ++#commentform input { ++ margin: 5px 0 1px 5px; ++} ++.commentlist p { ++ margin: 10px 0 10px 5px; ++} ++html > body .entry li { ++ margin: 7px 10px 8px 0; ++} ++html > body .entry ul { ++ margin-left: auto; ++ margin-right: 0px; ++ padding: 0 30px 0 0; ++} ++#sidebar { ++ margin-left: auto; ++ margin-right: 545px; ++} ++#wp-calendar #prev a, html > body .entry ul { ++ padding-left: 0; ++ padding-right: 10px; ++} ++blockquote { ++ border-left: 0; ++ border-right: 5px solid #ddd; ++ padding-left: 0; ++ padding-right: 20px; ++ margin: 15px 10px 0 30px; ++} ++#wp-calendar #next a { ++ padding-right: 0; ++ padding-left: 10px; ++ text-align: left; ++} +\ No newline at end of file +diff -Nru wordpress/wp-content/themes/default-fr/searchform.php wordpress-2.5.0/wp-content/themes/default-fr/searchform.php +--- wordpress/wp-content/themes/default-fr/searchform.php 1970-01-01 01:00:00.000000000 +0100 ++++ wordpress-2.5.0/wp-content/themes/default-fr/searchform.php 2008-04-18 14:21:14.000000000 +0200 +@@ -0,0 +1,6 @@ ++
    ++
    ++ ++ ++
    ++
    +\ No newline at end of file +diff -Nru wordpress/wp-content/themes/default-fr/search.php wordpress-2.5.0/wp-content/themes/default-fr/search.php +--- wordpress/wp-content/themes/default-fr/search.php 1970-01-01 01:00:00.000000000 +0100 ++++ wordpress-2.5.0/wp-content/themes/default-fr/search.php 2008-04-18 14:21:14.000000000 +0200 +@@ -0,0 +1,34 @@ ++ ++ ++
    ++ ++ ++

    Résultats de recherche

    ++ ++ ++ ++
    ++

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

    Aucun article trouvé. Essayer une autre recherche ?

    ++ ++ ++ ++
    ++ ++ ++ +\ No newline at end of file +diff -Nru wordpress/wp-content/themes/default-fr/sidebar.php wordpress-2.5.0/wp-content/themes/default-fr/sidebar.php +--- wordpress/wp-content/themes/default-fr/sidebar.php 1970-01-01 01:00:00.000000000 +0100 ++++ wordpress-2.5.0/wp-content/themes/default-fr/sidebar.php 2008-04-18 14:21:14.000000000 +0200 +@@ -0,0 +1,63 @@ ++ +\ No newline at end of file +diff -Nru wordpress/wp-content/themes/default-fr/single.php wordpress-2.5.0/wp-content/themes/default-fr/single.php +--- wordpress/wp-content/themes/default-fr/single.php 1970-01-01 01:00:00.000000000 +0100 ++++ wordpress-2.5.0/wp-content/themes/default-fr/single.php 2008-04-18 14:21:14.000000000 +0200 +@@ -0,0 +1,50 @@ ++ ++ ++
    ++ ++ ++ ++ ++
    ++

    ++
    ++ Lire la suite de l\'article »

    '); ?> ++ '

    Pages: ', 'after' => '

    ', 'next_or_number' => 'number')); ?> ++ Tags: ', ', ', '

    '); ?> ++ ++
    ++
    ++ ++ ++ ++ ++

    Désolé, aucun article ne correspond à vos critères.

    ++ ++ ++
    ++ ++ +\ No newline at end of file +diff -Nru wordpress/wp-content/themes/default-fr/style.css wordpress-2.5.0/wp-content/themes/default-fr/style.css +--- wordpress/wp-content/themes/default-fr/style.css 1970-01-01 01:00:00.000000000 +0100 ++++ wordpress-2.5.0/wp-content/themes/default-fr/style.css 2008-04-18 14:21:14.000000000 +0200 +@@ -0,0 +1,501 @@ ++/* ++Theme Name: WordPress Default Fr ++Theme URI: http://wordpress.org/ ++Description: Le thème par défaut de WordPress, basé sur le fameux thème Kubrick. ++Version: 1.6 ++Author: Michael Heilemann ++Author URI: http://binarybonsai.com/ ++Tags: blue, custom header, fixed width, two columns, widgets ++ ++Kubrick v1.5 ++http://binarybonsai.com/kubrick/ ++ ++This theme was designed and built by Michael Heilemann, ++whose blog you will find at http://binarybonsai.com/ ++ ++The CSS, XHTML and design is released under GPL: ++http://www.opensource.org/licenses/gpl-license.php ++ ++*/ ++/* Begin Typography & Colors */ ++body { ++font-size: 62.5%; /* Resets 1em to 10px */ ++font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif; ++background: #d5d6d7 url('images/kubrickbgcolor.jpg'); ++color: #333; ++text-align: center; ++} ++#page { ++background-color: white; ++border: 1px solid #959596; ++text-align: left; ++} ++#header { ++background: #73a0c5 url('images/kubrickheader.jpg') no-repeat bottom center; ++} ++#headerimg { ++margin: 7px 9px 0; ++height: 192px; ++width: 740px; ++} ++#content { ++font-size: 1.2em; ++} ++.widecolumn .entry p { ++font-size: 1.05em; ++} ++.narrowcolumn .entry, .widecolumn .entry { ++line-height: 1.4em; ++} ++.widecolumn { ++line-height: 1.6em; ++} ++.narrowcolumn .postmetadata { ++text-align: center; ++} ++.alt { ++background-color: #f8f8f8; ++border-top: 1px solid #ddd; ++border-bottom: 1px solid #ddd; ++} ++#footer { ++background: #eee url('images/kubrickfooter.jpg') no-repeat top; ++border: none; ++} ++small { ++font-family: Arial, Helvetica, Sans-Serif; ++font-size: 0.9em; ++line-height: 1.5em; ++} ++h1, h2, h3 { ++font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, Sans-Serif; ++font-weight: bold; ++} ++h1 { ++font-size: 4em; ++text-align: center; ++} ++#headerimg .description { ++font-size: 1.2em; ++text-align: center; ++} ++h2 { ++font-size: 1.6em; ++} ++h2.pagetitle { ++font-size: 1.6em; ++} ++#sidebar h2 { ++font-family: 'Lucida Grande', Verdana, Sans-Serif; ++font-size: 1.2em; ++} ++h3 { ++font-size: 1.3em; ++} ++h1, h1 a, h1 a:hover, h1 a:visited, #headerimg .description { ++text-decoration: none; ++color: white; ++} ++h2, h2 a, h2 a:visited, h3, h3 a, h3 a:visited { ++color: #333; ++} ++h2, h2 a, h2 a:hover, h2 a:visited, h3, h3 a, h3 a:hover, h3 a:visited, #sidebar h2, #wp-calendar caption, cite { ++text-decoration: none; ++} ++.entry p a:visited { ++color: #b85b5a; ++} ++.commentlist li, #commentform input, #commentform textarea { ++font: 0.9em 'Lucida Grande', Verdana, Arial, Sans-Serif; ++} ++.commentlist li { ++font-weight: bold; ++} ++.commentlist cite, .commentlist cite a { ++font-weight: bold; ++font-style: normal; ++font-size: 1.1em; ++} ++.commentlist p { ++font-weight: normal; ++line-height: 1.5em; ++text-transform: none; ++} ++#commentform p { ++font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif; ++} ++.commentmetadata { ++font-weight: normal; ++} ++#sidebar { ++font: 1em 'Lucida Grande', Verdana, Arial, Sans-Serif; ++} ++small, #sidebar ul ul li, #sidebar ul ol li, .nocomments, .postmetadata, blockquote, strike { ++color: #777; ++} ++code { ++font: 1.1em 'Courier New', Courier, Fixed; ++} ++acronym, abbr, span.caps { ++font-size: 0.9em; ++letter-spacing: .07em; ++} ++a, h2 a:hover, h3 a:hover { ++color: #06c; ++text-decoration: none; ++} ++a:hover { ++color: #147; ++text-decoration: underline; ++} ++#wp-calendar #prev a, #wp-calendar #next a { ++font-size: 9pt; ++} ++#wp-calendar a { ++text-decoration: none; ++} ++#wp-calendar caption { ++font: bold 1.3em 'Lucida Grande', Verdana, Arial, Sans-Serif; ++text-align: center; ++} ++#wp-calendar th { ++font-style: normal; ++text-transform: capitalize; ++} ++/* End Typography & Colors */ ++/* Begin Structure */ ++body { ++margin: 0 0 20px 0; ++padding: 0; ++} ++#page { ++background-color: white; ++margin: 20px auto; ++padding: 0; ++width: 760px; ++border: 1px solid #959596; ++} ++#header { ++background-color: #73a0c5; ++margin: 0 0 0 1px; ++padding: 0; ++height: 200px; ++width: 758px; ++} ++#headerimg { ++margin: 0; ++height: 200px; ++width: 100%; ++} ++.narrowcolumn { ++float: left; ++padding: 0 0 20px 45px; ++margin: 0px 0 0; ++width: 450px; ++} ++.widecolumn { ++padding: 10px 0 20px 0; ++margin: 5px 0 0 150px; ++width: 450px; ++} ++.post { ++margin: 0 0 40px; ++text-align: justify; ++} ++.post hr { ++display: block; ++} ++.widecolumn .post { ++margin: 0; ++} ++.narrowcolumn .postmetadata { ++padding-top: 5px; ++} ++.widecolumn .postmetadata { ++margin: 30px 0; ++} ++.widecolumn .smallattachment { ++text-align: center; ++float: left; ++width: 128px; ++margin: 5px 5px 5px 0px; ++} ++.widecolumn .attachment { ++text-align: center; ++margin: 5px 0px; ++} ++.postmetadata { ++clear: left; ++} ++.clear { ++clear: both; ++} ++#footer { ++padding: 0; ++margin: 0 auto; ++width: 760px; ++clear: both; ++} ++#footer p { ++margin: 0; ++padding: 20px 0; ++text-align: center; ++} ++/* End Structure */ ++/* Begin Headers */ ++h1 { ++padding-top: 70px; ++margin: 0; ++} ++h2 { ++margin: 30px 0 0; ++} ++h2.pagetitle { ++margin-top: 30px; ++text-align: center; ++} ++#sidebar h2 { ++margin: 5px 0 0; ++padding: 0; ++} ++h3 { ++padding: 0; ++margin: 30px 0 0; ++} ++h3.comments { ++padding: 0; ++margin: 40px auto 20px; ++} ++/* End Headers */ ++/* Begin Images */ ++p img { ++padding: 0; ++max-width: 100%; ++} ++/* Using 'class="alignright"' on an image will (who would've ++thought?!) align the image to the right. And using 'class="centered', ++will of course center the image. This is much better than using ++align="center", being much more futureproof (and valid) */ ++img.centered { ++display: block; ++margin-left: auto; ++margin-right: auto; ++} ++img.alignright { ++padding: 4px; ++margin: 0 0 2px 7px; ++display: inline; ++} ++img.alignleft { ++padding: 4px; ++margin: 0 7px 2px 0; ++display: inline; ++} ++.alignright { ++float: right; ++} ++.alignleft { ++float: left; ++} ++/* End Images */ ++/* Begin Lists ++ ++Special stylized non-IE bullets ++Do not work in Internet Explorer, which merely default to normal bullets. */ ++html > body .entry ul { ++margin-left: 0px; ++padding: 0 0 0 30px; ++list-style: none; ++padding-left: 10px; ++text-indent: -10px; ++} ++html > body .entry li { ++margin: 7px 0 8px 10px; ++} ++.entry ul li:before, #sidebar ul ul li:before { ++content: "\00BB \0020"; ++} ++.entry ol { ++padding: 0 0 0 35px; ++margin: 0; ++} ++.entry ol li { ++margin: 0; ++padding: 0; ++} ++.postmetadata ul, .postmetadata li { ++display: inline; ++list-style-type: none; ++list-style-image: none; ++} ++#sidebar ul, #sidebar ul ol { ++margin: 0; ++padding: 0; ++} ++#sidebar ul li { ++list-style-type: none; ++list-style-image: none; ++margin-bottom: 15px; ++} ++#sidebar ul p, #sidebar ul select { ++margin: 5px 0 8px; ++} ++#sidebar ul ul, #sidebar ul ol { ++margin: 5px 0 0 10px; ++} ++#sidebar ul ul ul, #sidebar ul ol { ++margin: 0 0 0 10px; ++} ++ol li, #sidebar ul ol li { ++list-style: decimal outside; ++} ++#sidebar ul ul li, #sidebar ul ol li { ++margin: 3px 0 0; ++padding: 0; ++} ++/* End Entry Lists */ ++/* Begin Form Elements */ ++#searchform { ++margin: 10px auto; ++padding: 5px 3px; ++text-align: center; ++} ++#sidebar #searchform #s { ++width: 108px; ++padding: 2px; ++} ++#sidebar #searchsubmit { ++padding: 1px; ++} ++.entry form { ++/* This is mainly for password protected posts, makes them look better. */ ++text-align: center; ++} ++select { ++width: 130px; ++} ++#commentform input { ++width: 170px; ++padding: 2px; ++margin: 5px 5px 1px 0; ++} ++#commentform textarea { ++width: 100%; ++padding: 2px; ++} ++#commentform #submit { ++margin: 0; ++float: right; ++} ++/* End Form Elements */ ++/* Begin Comments*/ ++.alt { ++margin: 0; ++padding: 10px; ++} ++.commentlist { ++padding: 0; ++text-align: justify; ++} ++.commentlist li { ++margin: 15px 0 3px; ++padding: 5px 10px 3px; ++list-style: none; ++} ++.commentlist li .avatar { ++float: right; ++border: 1px solid #eee; ++padding: 2px; ++background: #fff; ++} ++.commentlist p { ++margin: 10px 5px 10px 0; ++} ++#commentform p { ++margin: 5px 0; ++} ++.nocomments { ++text-align: center; ++margin: 0; ++padding: 0; ++} ++.commentmetadata { ++margin: 0; ++display: block; ++} ++/* End Comments */ ++/* Begin Sidebar */ ++#sidebar { ++padding: 20px 0 10px 0; ++margin-left: 545px; ++width: 190px; ++} ++#sidebar form { ++margin: 0; ++} ++/* End Sidebar */ ++/* Begin Calendar */ ++#wp-calendar { ++empty-cells: show; ++margin: 10px auto 0; ++width: 155px; ++} ++#wp-calendar #next a { ++padding-right: 10px; ++text-align: right; ++} ++#wp-calendar #prev a { ++padding-left: 10px; ++text-align: left; ++} ++#wp-calendar a { ++display: block; ++} ++#wp-calendar caption { ++text-align: center; ++width: 100%; ++} ++#wp-calendar td { ++padding: 3px 0; ++text-align: center; ++} ++#wp-calendar td.pad:hover { ++/* Doesn't work in IE */ ++background-color: #fff; ++} ++/* End Calendar */ ++/* Begin Various Tags & Classes */ ++acronym, abbr, span.caps { ++cursor: help; ++} ++acronym, abbr { ++border-bottom: 1px dashed #999; ++} ++blockquote { ++margin: 15px 30px 0 10px; ++padding-left: 20px; ++border-left: 5px solid #ddd; ++} ++blockquote cite { ++margin: 5px 0 0; ++display: block; ++} ++.center { ++text-align: center; ++} ++hr { ++display: none; ++} ++a img { ++border: none; ++} ++.navigation { ++display: block; ++text-align: center; ++margin-top: 10px; ++margin-bottom: 60px; ++} ++/* End Various Tags & Classes*/ ++/* "Daisy, Daisy, give me your answer do. I'm half crazy all for the love of you. ++It won't be a stylish marriage, I can't afford a carriage. ++But you'll look sweet upon the seat of a bicycle built for two." */ --- wordpress-2.5.1.orig/debian/patches/004languages.patch +++ wordpress-2.5.1/debian/patches/004languages.patch @@ -0,0 +1,71265 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## Locales patch.dpatch by +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Creating a buch of locales + +@DPATCH@ + +diff -Nru wordpress/wp-content/languages/ca.po wordpress-2.5.0/wp-content/languages/ca.po +--- wordpress/wp-content/languages/ca.po 1970-01-01 01:00:00.000000000 +0100 ++++ wordpress-2.5.0/wp-content/languages/ca.po 2008-04-18 14:21:14.000000000 +0200 +@@ -0,0 +1,10573 @@ ++# translation of WordPress to Catalan ++# ++# Francesc Hervada-Sala , 2008. ++msgid "" ++msgstr "" ++"Project-Id-Version: WordPress 2.5 (devel) ca\n" ++"Report-Msgid-Bugs-To: wp-polyglots@lists.automattic.com\n" ++"POT-Creation-Date: 2008-03-29 18:38+0100\n" ++"PO-Revision-Date: 2008-03-29 18:44+0100\n" ++"Last-Translator: Francesc Hervada-Sala \n" ++"Language-Team: Catalan \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-Generator: KBabel 1.11.4\n" ++ ++#: wp-admin/admin-ajax.php:69 wp-admin/categories.php:40 ++#: wp-admin/categories.php:60 wp-admin/edit-link-categories.php:16 ++#: wp-admin/link-category.php:34 ++#, php-format ++msgid "Can’t delete the %s category: this is the default one" ++msgstr "" ++"No pots esborrar la categoria %s: és la categoria " ++"predeterminada" ++ ++#: wp-admin/admin-ajax.php:227 wp-admin/admin-ajax.php:279 ++#: wp-admin/includes/taxonomy.php:62 ++msgid "You did not enter a category name." ++msgstr "No has donat cap nom de categoria." ++ ++#: wp-admin/admin-ajax.php:235 ++msgid "The category you are trying to create already exists." ++msgstr "La categoria que estàs intentant crear ja existia." ++ ++#: wp-admin/admin-ajax.php:267 ++#, php-format ++msgid "Category %s added" ++msgstr "Categoria %s afegida" ++ ++#: wp-admin/admin-ajax.php:313 ++msgid "You did not enter a tag name." ++msgstr "No has donat cap nom d'etiqueta." ++ ++#: wp-admin/admin-ajax.php:338 ++#, php-format ++msgid "Tag %s added" ++msgstr "Etiqueta %s afegida" ++ ++#: wp-admin/admin-ajax.php:456 ++#, php-format ++msgid "User %s added" ++msgstr "Usuari %s afegit" ++ ++#: wp-admin/admin-ajax.php:476 ++#, php-format ++msgid "Draft Saved at %s." ++msgstr "Esborrany desat a les %s." ++ ++#: wp-admin/admin-ajax.php:476 ++msgid "g:i:s a" ++msgstr "G:i:s" ++ ++#: wp-admin/admin-ajax.php:496 ++msgid "Someone" ++msgstr "Algú" ++ ++#: wp-admin/admin-ajax.php:498 ++#, php-format ++msgid "Autosave disabled: %s is currently editing this page." ++msgstr "Desat automàtic desactivat: %s està editant aquesta pàgina en aquest moment." ++ ++#: wp-admin/admin-ajax.php:498 ++#, php-format ++msgid "Autosave disabled: %s is currently editing this post." ++msgstr "Desat automàtic desactivat: %s està editant aquesta entrada en aquest moment." ++ ++#: wp-admin/admin-ajax.php:507 wp-admin/includes/post.php:10 ++#: wp-admin/page.php:97 ++msgid "You are not allowed to edit this page." ++msgstr "No tens autorizació per a editar aquesta pàgina." ++ ++#: wp-admin/admin-ajax.php:510 wp-admin/includes/post.php:13 ++#: wp-admin/post.php:104 ++msgid "You are not allowed to edit this post." ++msgstr "No tens autorizació per a editar aquesta entrada." ++ ++#: wp-admin/admin-footer.php:8 ++msgid "Thank you for creating with WordPress" ++msgstr "Gràcies per crear amb el WordPress" ++ ++#: wp-admin/admin-footer.php:8 ++msgid "Documentation" ++msgstr "Documentació" ++ ++#: wp-admin/admin-footer.php:8 ++msgid "Feedback" ++msgstr "Fòrum de suport" ++ ++#: wp-admin/admin-header.php:64 ++msgid "Visit Site" ++msgstr "Visitar el web" ++ ++#: wp-admin/admin-header.php:66 ++#, php-format ++msgid "Howdy, %2$s!" ++msgstr "Hola, %2$s!" ++ ++#: wp-admin/admin-header.php:66 ++msgid "Log Out" ++msgstr "Sortir" ++ ++#: wp-admin/admin-header.php:66 ++msgid "Help" ++msgstr "Ajuda" ++ ++#: wp-admin/admin-header.php:66 ++msgid "Forums" ++msgstr "Fòrums" ++ ++#: wp-admin/admin.php:29 ++msgid "Classic" ++msgstr "Clàssic" ++ ++#: wp-admin/admin.php:30 ++msgid "Fresh" ++msgstr "Fresc" ++ ++#: wp-admin/admin.php:58 ++msgid "Invalid plugin page" ++msgstr "Pàgina d'extensió incorrecta" ++ ++#: wp-admin/admin.php:62 ++#, php-format ++msgid "Cannot load %s." ++msgstr "%s no es pot carregar." ++ ++#: wp-admin/admin.php:80 ++msgid "You are not allowed to import." ++msgstr "No tens autorizació per a importar." ++ ++#: wp-admin/admin.php:83 ++msgid "Invalid importer." ++msgstr "Importador incorrecte." ++ ++#: wp-admin/admin.php:91 ++msgid "Cannot load importer." ++msgstr "No s'ha pogut carregar l'importador." ++ ++#: wp-admin/admin.php:98 wp-admin/import/blogger.php:151 wp-admin/import.php:3 ++#: wp-admin/import.php:9 wp-admin/import/textpattern.php:49 ++#: wp-admin/menu.php:47 ++msgid "Import" ++msgstr "Importar" ++ ++#: wp-admin/async-upload.php:21 wp-admin/media-upload.php:11 ++#: wp-admin/upload.php:5 wp-app.php:407 wp-app.php:562 ++msgid "You do not have permission to upload files." ++msgstr "No tens permisos per a editar carregar fitxers." ++ ++#: wp-admin/bookmarklet.php:6 wp-admin/categories.php:19 ++#: wp-admin/categories.php:34 wp-admin/categories.php:86 ++#: wp-admin/edit-link-categories.php:9 wp-admin/edit-tags.php:19 ++#: wp-admin/edit-tags.php:35 wp-admin/edit-tags.php:48 ++#: wp-admin/edit-tags.php:82 wp-admin/import/wp-cat2tag.php:210 ++#: wp-admin/includes/bookmark.php:9 wp-admin/link-category.php:13 ++#: wp-admin/link-category.php:28 wp-admin/link-category.php:68 ++#: wp-admin/link-import.php:17 wp-admin/link-import.php:69 ++#: wp-admin/options.php:11 wp-admin/sidebar.php:7 wp-admin/users.php:6 ++#: wp-admin/widgets.php:7 wp-content/plugins/akismet/akismet.php:50 ++msgid "Cheatin’ uh?" ++msgstr "Fent trampes, eh?" ++ ++#: wp-admin/categories.php:4 wp-admin/edit-form-advanced.php:217 ++#: wp-admin/edit-form.php:19 wp-admin/edit-link-form.php:101 ++#: wp-admin/includes/template.php:295 wp-admin/link-category.php:52 ++#: wp-admin/link-manager.php:123 wp-admin/menu.php:43 ++#: wp-includes/category-template.php:276 wp-includes/widgets.php:686 ++#: wp-includes/widgets.php:814 ++msgid "Categories" ++msgstr "Categories" ++ ++#: wp-admin/categories.php:53 ++msgid "You are not allowed to delete categories." ++msgstr "No tens autorització per a eliminar categories." ++ ++#: wp-admin/categories.php:108 wp-admin/edit-link-categories.php:43 ++msgid "Category added." ++msgstr "Categoria creada." ++ ++#: wp-admin/categories.php:109 wp-admin/edit-link-categories.php:44 ++msgid "Category deleted." ++msgstr "Categoria esborrada." ++ ++#: wp-admin/categories.php:110 wp-admin/edit-link-categories.php:45 ++msgid "Category updated." ++msgstr "Categoria actualitzada." ++ ++#: wp-admin/categories.php:111 wp-admin/edit-link-categories.php:46 ++msgid "Category not added." ++msgstr "Categoria no s'ha afegit." ++ ++#: wp-admin/categories.php:112 wp-admin/edit-link-categories.php:47 ++msgid "Category not updated." ++msgstr "Categoria no s'ha actualitzat." ++ ++#: wp-admin/categories.php:123 ++#, php-format ++msgid "Manage Categories (add new)" ++msgstr "Gestionar categories (crear-ne una)" ++ ++#: wp-admin/categories.php:125 ++msgid "Manage Categories" ++msgstr "Gestionar categories" ++ ++#: wp-admin/categories.php:130 wp-admin/edit-link-categories.php:66 ++msgid "Search Categories" ++msgstr "Cercar categories" ++ ++#: wp-admin/categories.php:138 wp-admin/edit-comments.php:173 ++#: wp-admin/edit-link-categories.php:92 wp-admin/edit-pages.php:121 ++#: wp-admin/edit.php:138 wp-admin/edit-post-rows.php:174 ++#: wp-admin/edit-tags.php:163 wp-admin/includes/media.php:690 ++#: wp-admin/includes/template.php:689 wp-admin/includes/template.php:778 ++#: wp-admin/link-manager.php:90 wp-admin/upload.php:149 wp-admin/users.php:301 ++msgid "Delete" ++msgstr "Eliminar" ++ ++#: wp-admin/categories.php:151 wp-admin/edit-form-comment.php:67 ++#: wp-admin/edit-link-categories.php:105 wp-admin/edit-link-form.php:77 ++#: wp-admin/edit-tags.php:176 wp-admin/link-manager.php:121 ++#: wp-admin/themes.php:100 wp-admin/user-edit.php:194 wp-admin/users.php:335 ++#: wp-content/themes/classic/comments.php:51 ++#: wp-content/themes/classic/comments-popup.php:64 ++#: wp-includes/js/tinymce/langs/wp-langs.php:299 ++msgid "Name" ++msgstr "Nom" ++ ++#: wp-admin/categories.php:152 wp-admin/edit-category-form.php:45 ++#: wp-admin/edit-link-categories.php:106 wp-admin/edit-link-form.php:93 ++#: wp-admin/includes/media.php:447 wp-admin/includes/media.php:544 ++#: wp-admin/includes/media.php:626 wp-admin/includes/media.php:1089 ++#: wp-admin/plugins.php:108 wp-admin/themes.php:101 ++#: wp-includes/script-loader.php:185 ++msgid "Description" ++msgstr "Descripció" ++ ++#: wp-admin/categories.php:153 wp-admin/edit.php:34 wp-admin/edit-tags.php:177 ++#: wp-admin/import/blogger.php:162 wp-admin/menu.php:40 wp-admin/users.php:338 ++msgid "Posts" ++msgstr "Entrades" ++ ++#: wp-admin/categories.php:173 ++#, php-format ++msgid "" ++"Note:
    Deleting a category does not delete the posts in " ++"that category. Instead, posts that were only assigned to the deleted " ++"category are set to the category %s." ++msgstr "" ++"Nota:
    Esborrant una categoria no s'esborren les seves " ++"entrades. Les entrades que només estaven assignades a aquesta categoria " ++"passaran a formar part de la categoria %s." ++ ++#: wp-admin/categories.php:174 ++#, php-format ++msgid "" ++"Categories can be selectively converted to tags using the category to tag converter." ++msgstr "" ++"Les categories es poden convertir selectivament a etiquetes usant el conversor de categories a etiquetes." ++ ++#: wp-admin/comment.php:21 wp-admin/edit-form-comment.php:2 ++msgid "Edit Comment" ++msgstr "Editar el comentari" ++ ++#: wp-admin/comment.php:30 wp-admin/comment.php:52 wp-admin/comment.php:134 ++#: wp-admin/comment.php:162 wp-admin/comment.php:187 ++msgid "Oops, no comment with this ID." ++msgstr "No hi ha cap comentari amb aquesta ID." ++ ++#: wp-admin/comment.php:30 wp-admin/comment.php:52 wp-admin/comment.php:134 ++#: wp-admin/comment.php:162 wp-admin/comment.php:187 ++msgid "Go back" ++msgstr "Tornar enrere" ++ ++#: wp-admin/comment.php:33 wp-admin/comment.php:137 ++msgid "You are not allowed to edit comments on this post." ++msgstr "No tens autorització per a editar els comentaris d'aquesta entrada." ++ ++#: wp-admin/comment.php:55 ++msgid "You are not allowed to delete comments on this post." ++msgstr "No tens autorització per a eliminar els comentaris d'aquesta entrada." ++ ++#: wp-admin/comment.php:55 wp-admin/comment.php:190 ++msgid "" ++"You are not allowed to edit comments on this post, so you cannot approve " ++"this comment." ++msgstr "" ++"No tens autorització per a editar els comentaris d'aquesta entrada; no pots " ++"aprovar aquest comentari." ++ ++#: wp-admin/comment.php:62 ++msgid "You are about to mark the following comment as spam:" ++msgstr "Estàs a punt de marcar com a brossa el segÃŒent comentari:" ++ ++#: wp-admin/comment.php:63 ++msgid "Spam Comment" ++msgstr "És brossa" ++ ++#: wp-admin/comment.php:65 ++msgid "You are about to delete the following comment:" ++msgstr "Estàs a punt d'eliminar el segÃŒent comentari:" ++ ++#: wp-admin/comment.php:66 ++msgid "Delete Comment" ++msgstr "Eliminar comentari" ++ ++#: wp-admin/comment.php:68 ++msgid "You are about to approve the following comment:" ++msgstr "Estàs a punt d'aprovar el segÃŒent comentari:" ++ ++#: wp-admin/comment.php:69 ++msgid "Approve Comment" ++msgstr "Aprovar el comentari" ++ ++#: wp-admin/comment.php:73 ++msgid "Caution:" ++msgstr "Atenció:" ++ ++#: wp-admin/comment.php:75 ++msgid "Are you sure you want to do that?" ++msgstr "Estàs segur que vols fer això?" ++ ++#: wp-admin/comment.php:81 wp-admin/link-manager.php:163 ++#: wp-admin/update.php:64 ++msgid "No" ++msgstr "No" ++ ++#: wp-admin/comment.php:98 wp-admin/includes/template.php:294 ++#: wp-admin/includes/template.php:331 ++#: wp-includes/js/tinymce/langs/wp-langs.php:243 ++msgid "Author" ++msgstr "Autor" ++ ++#: wp-admin/comment.php:103 wp-admin/edit-form-comment.php:74 ++#: wp-admin/user-edit.php:270 wp-admin/users.php:336 ++#: wp-content/themes/classic/comments-popup.php:71 wp-login.php:320 ++msgid "E-mail" ++msgstr "Correu electrònic" ++ ++#: wp-admin/comment.php:109 wp-admin/edit-form-comment.php:81 ++#: wp-admin/includes/media.php:1179 wp-admin/includes/template.php:938 ++#: wp-admin/link-manager.php:122 wp-includes/script-loader.php:184 ++msgid "URL" ++msgstr "URL" ++ ++#: wp-admin/comment.php:114 wp-admin/edit-comments.php:190 ++#: wp-admin/edit-form-comment.php:88 wp-admin/edit-pages.php:191 ++#: wp-admin/edit.php:217 wp-admin/upload.php:227 ++#: wp-content/themes/classic/comments.php:18 ++#: wp-content/themes/classic/comments-popup.php:45 ++msgid "Comment" ++msgstr "Comentari" ++ ++#: wp-admin/comment.php:165 ++msgid "" ++"You are not allowed to edit comments on this post, so you cannot disapprove " ++"this comment." ++msgstr "" ++"No tens autorització per a editar els comentaris d'aquesta entrada; no pots " ++"refusar aquest comentari." ++ ++#: wp-admin/comment.php:223 ++msgid "Unknown action." ++msgstr "Acció desconeguda." ++ ++#: wp-admin/custom-header.php:11 ++msgid "Custom Image Header" ++msgstr "Imatge de capçalera personalitzada" ++ ++#: wp-admin/custom-header.php:128 ++msgid "Show Text" ++msgstr "Mostrar text" ++ ++#: wp-admin/custom-header.php:139 wp-admin/custom-header.php:169 ++msgid "Hide Text" ++msgstr "Amagar text" ++ ++#: wp-admin/custom-header.php:155 ++msgid "Header updated." ++msgstr "Capçalera actualitzada." ++ ++#: wp-admin/custom-header.php:160 ++msgid "Your Header Image" ++msgstr "La teva imatge de capçalera" ++ ++#: wp-admin/custom-header.php:161 ++msgid "" ++"This is your header image. You can change the text color or upload and crop " ++"a new image." ++msgstr "" ++"Aquesta és la teva imatge de capçalera. Pots canviar el color de text o " ++"pujar i retallar una altra imatge." ++ ++#: wp-admin/custom-header.php:170 ++msgid "Select a Text Color" ++msgstr "Escull un color de text" ++ ++#: wp-admin/custom-header.php:170 ++msgid "Use Original Color" ++msgstr "Usar el color original" ++ ++#: wp-admin/custom-header.php:172 wp-admin/edit-link-form.php:4 ++#: wp-admin/import/blogger.php:616 wp-admin/media.php:78 ++#: wp-admin/options-discussion.php:119 wp-admin/options-general.php:113 ++#: wp-admin/options-misc.php:94 wp-admin/options-permalink.php:181 ++#: wp-admin/options.php:88 wp-admin/options-privacy.php:27 ++#: wp-admin/options-reading.php:70 wp-admin/options-writing.php:114 ++#: wp-admin/widgets.php:307 ++msgid "Save Changes" ++msgstr "Desar els canvis" ++ ++#: wp-admin/custom-header.php:178 ++msgid "Upload New Header Image" ++msgstr "Pujar una altra imatge de capçalera" ++ ++#: wp-admin/custom-header.php:178 ++msgid "" ++"Here you can upload a custom header image to be shown at the top of your " ++"blog instead of the default one. On the next screen you will be able to crop " ++"the image." ++msgstr "" ++"Aquí pots pujar una imatge de capçalera personalitzada que serà mostrada al " ++"cap del teu blog en lloc de la imatge per defecte. A la pantalla segÃŒent " ++"podràs retallar-ne un tros per ser mostrat." ++ ++#: wp-admin/custom-header.php:179 ++#, php-format ++msgid "Images of exactly %1$d x %2$d pixels will be used as-is." ++msgstr "" ++"Imatges amb exactament %1$d x %2$d pixels s'usaran tal com " ++"són." ++ ++#: wp-admin/custom-header.php:182 ++msgid "Choose an image from your computer:" ++msgstr "Escull una imatge des del teu ordinador:" ++ ++#: wp-admin/custom-header.php:186 wp-admin/includes/media.php:834 ++msgid "Upload" ++msgstr "Enviar" ++ ++#: wp-admin/custom-header.php:194 ++msgid "Reset Header Image and Color" ++msgstr "Reinicialitzar color i imatge de capçalera" ++ ++#: wp-admin/custom-header.php:195 ++msgid "" ++"This will restore the original header image and color. You will not be able " ++"to retrieve any customizations." ++msgstr "" ++"Això reinicialitzarà imatge i color de capçalera. No podràs recuperar cap " ++"personalització." ++ ++#: wp-admin/custom-header.php:198 ++msgid "Restore Original Header" ++msgstr "Restaurar la capçalera original" ++ ++#: wp-admin/custom-header.php:254 ++msgid "Choose the part of the image you want to use as your header." ++msgstr "Escull la part de la imatge que vols usar com a capçalera." ++ ++#: wp-admin/custom-header.php:269 ++msgid "Crop Header" ++msgstr "Retallar la capçalera" ++ ++#: wp-admin/custom-header.php:321 ++msgid "Header complete!" ++msgstr "Capçalera completa!" ++ ++#: wp-admin/custom-header.php:323 ++msgid "Visit your site and you should see the new header now." ++msgstr "Visita la teva pàgina i ara hauries de veure la nova capçalera." ++ ++#: wp-admin/edit-attachment-rows.php:53 wp-admin/edit-post-rows.php:75 ++#: wp-admin/includes/template.php:46 wp-admin/includes/template.php:79 ++#: wp-admin/includes/template.php:245 wp-admin/includes/template.php:403 ++#: wp-admin/link-manager.php:172 ++#, php-format ++msgid "Edit \"%s\"" ++msgstr "Editar \"%s\"" ++ ++#: wp-admin/edit-attachment-rows.php:68 wp-admin/edit-form-advanced.php:96 ++#: wp-admin/edit-page-form.php:84 wp-admin/edit-post-rows.php:49 ++#: wp-admin/edit-post-rows.php:151 wp-admin/includes/template.php:377 ++#: wp-admin/includes/template.php:447 ++msgid "Unpublished" ++msgstr "No publicat" ++ ++#: wp-admin/edit-attachment-rows.php:70 wp-admin/edit-post-rows.php:52 ++#: wp-admin/edit-post-rows.php:56 wp-admin/includes/template.php:380 ++#: wp-admin/includes/template.php:384 ++msgid "Y/m/d g:i:s A" ++msgstr "Y-m-d G:i:s" ++ ++#: wp-admin/edit-attachment-rows.php:75 wp-admin/edit-post-rows.php:62 ++#: wp-admin/includes/template.php:390 ++#, php-format ++msgid "%s from now" ++msgstr "%s a partir d'ara" ++ ++#: wp-admin/edit-attachment-rows.php:77 wp-admin/edit-post-rows.php:64 ++#: wp-admin/includes/template.php:392 wp-admin/includes/template.php:640 ++#, php-format ++msgid "%s ago" ++msgstr "fa %s" ++ ++#: wp-admin/edit-attachment-rows.php:79 wp-admin/edit-post-rows.php:66 ++#: wp-admin/includes/template.php:394 wp-admin/includes/template.php:669 ++msgid "Y/m/d" ++msgstr "d-m-Y" ++ ++#: wp-admin/edit-attachment-rows.php:88 wp-admin/edit-post-rows.php:31 ++#: wp-admin/includes/template.php:358 ++msgid "(no title)" ++msgstr "(sense títol)" ++ ++#: wp-admin/edit-attachment-rows.php:111 wp-admin/edit-post-rows.php:117 ++#: wp-admin/includes/template.php:413 ++#, php-format ++msgid "%s pending" ++msgstr "%s pendent" ++ ++#: wp-admin/edit-attachment-rows.php:114 wp-admin/edit-post-rows.php:120 ++#: wp-admin/includes/template.php:416 ++msgid "0" ++msgstr "0" ++ ++#: wp-admin/edit-attachment-rows.php:114 wp-admin/edit-post-rows.php:120 ++#: wp-admin/includes/template.php:416 ++msgid "1" ++msgstr "1" ++ ++#: wp-admin/edit-attachment-rows.php:114 wp-admin/edit-post-rows.php:120 ++#: wp-admin/includes/template.php:416 ++msgid "%" ++msgstr "%" ++ ++#: wp-admin/edit-attachment-rows.php:124 ++msgid "Permalink" ++msgstr "Enllaç permanent" ++ ++#: wp-admin/edit-attachment-rows.php:142 wp-admin/edit-post-rows.php:192 ++msgid "No posts found." ++msgstr "No s'han trobat entrades." ++ ++#: wp-admin/edit-category-form.php:3 wp-admin/edit-category-form.php:4 ++#: wp-admin/edit-link-category-form.php:3 ++#: wp-admin/edit-link-category-form.php:4 ++msgid "Edit Category" ++msgstr "Editar la categoria" ++ ++#: wp-admin/edit-category-form.php:10 wp-admin/edit-category-form.php:11 ++#: wp-admin/edit-link-category-form.php:10 ++#: wp-admin/edit-link-category-form.php:11 ++msgid "Add Category" ++msgstr "Crear una categoria" ++ ++#: wp-admin/edit-category-form.php:28 ++msgid "Category Name" ++msgstr "Nom de la categoria" ++ ++#: wp-admin/edit-category-form.php:30 ++msgid "" ++"The name is used to identify the category almost everywhere, for example " ++"under the post or in the category widget." ++msgstr "" ++"El nom s'usa per a identificar la categoria pràcticament a tot arreu, per " ++"exemple sota una entrada o en un widget de categories." ++ ++#: wp-admin/edit-category-form.php:33 ++msgid "Category Slug" ++msgstr "URL de la categoria" ++ ++#: wp-admin/edit-category-form.php:35 wp-admin/edit-link-category-form.php:34 ++#: wp-admin/edit-tag-form.php:35 ++msgid "" ++"The “slug” is the URL-friendly version of the name. It is " ++"usually all lowercase and contains only letters, numbers, and hyphens." ++msgstr "" ++"La URL d'una categoria és el seu nom expressat en caràcters admesos en una " ++"URL, sol ser en minúscules i consta només de lletres, xifres i guionets." ++ ++#: wp-admin/edit-category-form.php:38 ++msgid "Category Parent" ++msgstr "Categoria superior" ++ ++#: wp-admin/edit-category-form.php:40 wp-admin/includes/media.php:456 ++#: wp-admin/includes/media.php:553 wp-admin/includes/media.php:1099 ++#: wp-includes/deprecated.php:741 wp-includes/script-loader.php:181 ++msgid "None" ++msgstr "Cap" ++ ++#: wp-admin/edit-category-form.php:41 ++msgid "" ++"Categories, unlike tags, can have a hierarchy. You might have a Jazz " ++"category, and under that have children categories for Bebop and Big Band. " ++"Totally optional." ++msgstr "" ++"Les categories, al contrari de les etiquetes, poden formar una jerarquia: " ++"Pots tenir una categoria de Jazz, i a sota seu subcategories per a Bebop i " ++"Big Band. Totalment opcional." ++ ++#: wp-admin/edit-category-form.php:47 ++msgid "The description is not prominent by default, however some themes may show it." ++msgstr "" ++"La descripció no acostuma a ser gaire visible per defecte, però alguns temes " ++"potser la mostren." ++ ++#: wp-admin/edit-comments.php:4 ++msgid "Edit Comments" ++msgstr "Editar els comentaris" ++ ++#: wp-admin/edit-comments.php:74 ++#, php-format ++msgid "%s comment approved" ++msgid_plural "%s comments approved" ++msgstr[0] "%s comentari aprovat" ++msgstr[1] "%s comentaris aprovats" ++ ++#: wp-admin/edit-comments.php:79 ++#, php-format ++msgid "%s comment deleted" ++msgid_plural "%s comments deleted" ++msgstr[0] "%s comentari esborrat" ++msgstr[1] "%s comentaris esborrats" ++ ++#: wp-admin/edit-comments.php:84 ++#, php-format ++msgid "%s comment marked as spam" ++msgid_plural "%s comments marked as spam" ++msgstr[0] "%s comentari marcat com a brossa" ++msgstr[1] "%s comentaris marcats com a brossa" ++ ++#: wp-admin/edit-comments.php:94 ++msgid "Manage Comments" ++msgstr "Gestionar comentaris" ++ ++#: wp-admin/edit-comments.php:100 ++#, php-format ++msgid "Awaiting Moderation (%s)" ++msgid_plural "Awaiting Moderation (%s)" ++msgstr[0] "Pendent de moderació (%s)" ++msgstr[1] "Pendent de moderació (%s)" ++ ++#: wp-admin/edit-comments.php:100 ++msgid "Approved|plural" ++msgstr "Aprovats" ++ ++#: wp-admin/edit-comments.php:102 ++msgid "Show All Comments" ++msgstr "Mostrar tots els comentaris" ++ ++#: wp-admin/edit-comments.php:121 ++msgid "Search Comments" ++msgstr "Cercar comentaris" ++ ++#: wp-admin/edit-comments.php:129 ++msgid "Detail View" ++msgstr "Mostrar detalls" ++ ++#: wp-admin/edit-comments.php:130 ++msgid "List View" ++msgstr "Mostrar llista" ++ ++#: wp-admin/edit-comments.php:167 wp-admin/includes/template.php:675 ++#: wp-admin/includes/template.php:680 ++msgid "Approve" ++msgstr "Aprovar" ++ ++#: wp-admin/edit-comments.php:169 ++msgid "Mark as Spam" ++msgstr "Marcar com a brossa" ++ ++#: wp-admin/edit-comments.php:171 wp-admin/includes/template.php:676 ++#: wp-admin/includes/template.php:683 ++msgid "Unapprove" ++msgstr "Rebutjar" ++ ++#: wp-admin/edit-comments.php:191 wp-admin/edit-pages.php:192 ++#: wp-admin/edit.php:218 wp-admin/includes/template.php:292 ++#: wp-admin/includes/template.php:329 wp-admin/upload.php:228 ++msgid "Date" ++msgstr "Data" ++ ++#: wp-admin/edit-comments.php:192 wp-admin/edit-pages.php:193 ++#: wp-admin/edit.php:219 wp-admin/upload.php:229 ++msgid "Actions" ++msgstr "Accions" ++ ++#: wp-admin/edit-comments.php:224 ++msgid "No comments awaiting moderation… yet." ++msgstr "Cap comentari esperant moderació… per ara." ++ ++#: wp-admin/edit-comments.php:230 wp-content/plugins/akismet/akismet.php:614 ++msgid "No results found." ++msgstr "No s'han trobat resultats." ++ ++#: wp-admin/edit-form-advanced.php:5 ++#, php-format ++msgid "Post updated. Continue editing below or go back." ++msgstr "" ++"Entrada actualitzada. Pots continuar editant aquí sota o tornar enrere." ++ ++#: wp-admin/edit-form-advanced.php:6 wp-admin/edit-page-form.php:5 ++msgid "Custom field updated." ++msgstr "Camp personalitzat actualitzat." ++ ++#: wp-admin/edit-form-advanced.php:7 wp-admin/edit-page-form.php:6 ++msgid "Custom field deleted." ++msgstr "Camp personalitzat esborrat." ++ ++#: wp-admin/edit-form-advanced.php:8 ++msgid "Post updated." ++msgstr "Entrada actualitzada." ++ ++#: wp-admin/edit-form-advanced.php:20 wp-admin/edit-form.php:3 ++msgid "Write Post" ++msgstr "Escriure una entrada" ++ ++#: wp-admin/edit-form-advanced.php:42 ++msgid "Already pinged:" ++msgstr "Retropings ja efectuats:" ++ ++#: wp-admin/edit-form-advanced.php:50 ++msgid "Save and Continue Editing" ++msgstr "Desar i continuar editant" ++ ++#: wp-admin/edit-form-advanced.php:78 ++msgid "View this Post" ++msgstr "Veure entrada" ++ ++#: wp-admin/edit-form-advanced.php:80 wp-includes/script-loader.php:499 ++msgid "Preview this Post" ++msgstr "Mostrar aquesta entrada" ++ ++#: wp-admin/edit-form-advanced.php:86 wp-admin/edit-page-form.php:72 ++msgid "Publish Status" ++msgstr "Estat de l'entrada" ++ ++#: wp-admin/edit-form-advanced.php:90 wp-admin/edit-page-form.php:76 ++#: wp-admin/edit-page-form.php:78 wp-admin/edit-pages.php:39 ++#: wp-admin/edit-post-rows.php:142 wp-admin/includes/post.php:522 ++#: wp-admin/includes/template.php:438 wp-includes/post.php:306 ++#: wp-includes/post.php:328 ++msgid "Published" ++msgstr "Publicat" ++ ++#: wp-admin/edit-form-advanced.php:92 wp-admin/edit-pages.php:40 ++#: wp-admin/edit-post-rows.php:145 wp-admin/includes/post.php:523 ++#: wp-admin/includes/template.php:441 ++msgid "Scheduled" ++msgstr "Previst" ++ ++#: wp-admin/edit-form-advanced.php:95 wp-admin/edit-page-form.php:83 ++#: wp-admin/edit-pages.php:41 wp-admin/edit-post-rows.php:148 ++#: wp-admin/includes/post.php:524 wp-admin/includes/template.php:444 ++#: wp-includes/post.php:304 ++msgid "Pending Review" ++msgstr "Revisió pendent" ++ ++#: wp-admin/edit-form-advanced.php:101 ++msgid "Keep this post private" ++msgstr "Entrada privada" ++ ++#: wp-admin/edit-form-advanced.php:106 wp-admin/edit-page-form.php:92 ++#, php-format ++msgid "Scheduled for:
    %1$s at %2$s" ++msgstr "Previst per al:
    %1$s a les %2$s" ++ ++#: wp-admin/edit-form-advanced.php:108 wp-admin/edit-page-form.php:94 ++#, php-format ++msgid "Published on:
    %1$s at %2$s" ++msgstr "Publicat el:
    %1$s a les %2$s" ++ ++#: wp-admin/edit-form-advanced.php:110 wp-admin/edit-form-advanced.php:117 ++#: wp-admin/edit-page-form.php:96 wp-admin/edit-page-form.php:103 ++msgid "Publish immediately" ++msgstr "Publicar immediatament" ++ ++#: wp-admin/edit-form-advanced.php:112 wp-admin/edit-page-form.php:98 ++#, php-format ++msgid "Publish on:
    %1$s at %2$s" ++msgstr "Publicar el:
    %1$s a les %2$s" ++ ++#: wp-admin/edit-form-advanced.php:124 wp-admin/edit-form-comment.php:40 ++#: wp-admin/edit-page-form.php:109 wp-admin/edit-post-rows.php:168 ++#: wp-admin/includes/dashboard.php:220 wp-admin/includes/post.php:658 ++#: wp-admin/includes/widgets.php:110 wp-admin/includes/widgets.php:231 ++#: wp-admin/page.php:66 wp-admin/plugins.php:127 wp-admin/post.php:68 ++#: wp-includes/script-loader.php:154 wp-includes/script-loader.php:159 ++#: wp-includes/script-loader.php:165 wp-includes/script-loader.php:172 ++#: wp-includes/script-loader.php:193 ++msgid "Edit" ++msgstr "Editar" ++ ++#: wp-admin/edit-form-advanced.php:132 wp-admin/edit-form-comment.php:47 ++#: wp-admin/edit-link-form.php:55 wp-admin/edit-page-form.php:116 ++#: wp-admin/includes/dashboard.php:217 ++#: wp-content/themes/default/functions.php:374 ++#: wp-content/themes/default/functions.php:381 ++#: wp-includes/js/tinymce/langs/wp-langs.php:63 ++#: wp-includes/script-loader.php:144 ++msgid "Save" ++msgstr "Desar" ++ ++#: wp-admin/edit-form-advanced.php:137 wp-admin/edit-form.php:52 ++#: wp-admin/edit-page-form.php:121 wp-admin/sidebar.php:78 ++msgid "Publish" ++msgstr "Publicar" ++ ++#: wp-admin/edit-form-advanced.php:139 wp-admin/edit-page-form.php:123 ++msgid "Submit for Review" ++msgstr "Enviar per a revisió" ++ ++#: wp-admin/edit-form-advanced.php:145 wp-admin/edit-page-form.php:129 ++#, php-format ++msgid "" ++"You are about to delete this draft '%s'\n" ++" 'Cancel' to stop, 'OK' to delete." ++msgstr "" ++"Estàs a punt d'esborrar l'esborrany '%s'\n" ++"'D'acord' per esborrar, 'Cancel·la' per sortir." ++ ++#: wp-admin/edit-form-advanced.php:145 ++#, php-format ++msgid "" ++"You are about to delete this post '%s'\n" ++" 'Cancel' to stop, 'OK' to delete." ++msgstr "" ++"Estàs a punt d'esborrar l'entrada '%s'\n" ++"'D'acord' per esborrar, 'Cancel·la' per sortir." ++ ++#: wp-admin/edit-form-advanced.php:145 ++msgid "Delete post" ++msgstr "Esborrar entrada" ++ ++#: wp-admin/edit-form-advanced.php:151 wp-admin/edit-page-form.php:135 ++#, php-format ++msgid "Last edited by %1$s on %2$s at %3$s" ++msgstr "Darrera modificació per %1$s el %2$s a les %3$s" ++ ++#: wp-admin/edit-form-advanced.php:153 wp-admin/edit-page-form.php:137 ++#, php-format ++msgid "Last edited on %1$s at %2$s" ++msgstr "Darrera modificació el %1$s a les %2$s" ++ ++#: wp-admin/edit-form-advanced.php:162 wp-admin/edit-form-comment.php:54 ++#: wp-admin/edit-link-form.php:63 wp-admin/edit-page-form.php:146 ++msgid "Related" ++msgstr "Relacionat" ++ ++#: wp-admin/edit-form-advanced.php:166 ++msgid "See Comments on this Post" ++msgstr "Veure comentaris a aquesta entrada" ++ ++#: wp-admin/edit-form-advanced.php:168 wp-admin/edit-form-comment.php:57 ++#: wp-admin/edit-page-form.php:152 ++msgid "Manage All Comments" ++msgstr "Gestionar tots els comentaris" ++ ++#: wp-admin/edit-form-advanced.php:169 ++msgid "Manage All Posts" ++msgstr "Gestionar totes les entrades" ++ ++#: wp-admin/edit-form-advanced.php:170 ++msgid "Manage All Categories" ++msgstr "Gestionar totes les categories" ++ ++#: wp-admin/edit-form-advanced.php:171 ++msgid "Manage All Tags" ++msgstr "Gestionar totes les etiquetes" ++ ++#: wp-admin/edit-form-advanced.php:172 ++msgid "View Drafts" ++msgstr "Veure esborranys" ++ ++#: wp-admin/edit-form-advanced.php:182 wp-admin/edit-form.php:14 ++#: wp-admin/edit-page-form.php:162 wp-admin/includes/media.php:536 ++#: wp-admin/includes/media.php:625 wp-admin/includes/media.php:1130 ++#: wp-admin/includes/media.php:1158 wp-admin/includes/media.php:1186 ++#: wp-admin/includes/template.php:293 wp-admin/includes/template.php:330 ++#: wp-includes/js/tinymce/langs/wp-langs.php:282 ++#: wp-includes/script-loader.php:176 ++msgid "Title" ++msgstr "Títol" ++ ++#: wp-admin/edit-form-advanced.php:197 wp-admin/edit-form.php:25 ++#: wp-admin/menu.php:34 ++msgid "Post" ++msgstr "Entrada" ++ ++#: wp-admin/edit-form-advanced.php:209 wp-admin/edit-tags.php:4 ++#: wp-admin/includes/media.php:627 wp-admin/includes/template.php:296 ++#: wp-admin/menu.php:44 wp-includes/widgets.php:1326 ++msgid "Tags" ++msgstr "Etiquetes" ++ ++#: wp-admin/edit-form-advanced.php:221 wp-admin/edit-link-form.php:105 ++msgid "+ Add New Category" ++msgstr "+ Afegir una categoria" ++ ++#: wp-admin/edit-form-advanced.php:223 wp-admin/edit-link-form.php:107 ++msgid "New category name" ++msgstr "Nom de la nova categoria" ++ ++#: wp-admin/edit-form-advanced.php:224 ++msgid "Parent category" ++msgstr "Categoria superior" ++ ++#: wp-admin/edit-form-advanced.php:225 wp-admin/edit-link-form.php:108 ++#: wp-admin/includes/widgets.php:104 wp-includes/script-loader.php:116 ++#: wp-includes/script-loader.php:150 wp-includes/script-loader.php:192 ++msgid "Add" ++msgstr "Afegir" ++ ++#: wp-admin/edit-form-advanced.php:232 wp-admin/edit-link-form.php:115 ++msgid "All Categories" ++msgstr "Totes les categories" ++ ++#: wp-admin/edit-form-advanced.php:233 wp-admin/edit-link-form.php:116 ++msgid "Most Used" ++msgstr "Més usades" ++ ++#: wp-admin/edit-form-advanced.php:255 wp-admin/edit-link-form.php:136 ++#: wp-admin/edit-page-form.php:189 ++msgid "Advanced Options" ++msgstr "Opcions avançades" ++ ++#: wp-admin/edit-form-advanced.php:258 ++msgid "Excerpt" ++msgstr "Extracte" ++ ++#: wp-admin/edit-form-advanced.php:260 ++msgid "" ++"Excerpts are optional hand-crafted summaries of your content. You can use them in your template" ++msgstr "" ++"Els extractes són resums opcionals del contingut escrits manualment. Els " ++"pots utilitzar en la teva plantilla (documentació en anglÚs)" ++ ++#: wp-admin/edit-form-advanced.php:265 ++msgid "Trackbacks" ++msgstr "Retroenllaços" ++ ++#: wp-admin/edit-form-advanced.php:267 ++msgid "Send trackbacks to:" ++msgstr "Enviar retroenllaços a:" ++ ++#: wp-admin/edit-form-advanced.php:267 ++msgid "Separate multiple URLs with spaces" ++msgstr "Separa múltiples URLs amb espais" ++ ++#: wp-admin/edit-form-advanced.php:268 ++msgid "" ++"Trackbacks are a way to notify legacy blog systems that you’ve linked " ++"to them. If you link other WordPress blogs they’ll be notified " ++"automatically using pingbacks, no other action necessary." ++msgstr "" ++"Els retroenllaços són per a notificar a sistemes de blog antics que els has " ++"enllaçat. Si enllaces amb altres blogs amb WordPress aquests seran " ++"notificats automàticament mitjançant retropings (documentació en anglÚs) sense que calgui que facis res més." ++ ++#: wp-admin/edit-form-advanced.php:277 wp-admin/edit-page-form.php:192 ++msgid "Custom Fields" ++msgstr "Camps personalitzats" ++ ++#: wp-admin/edit-form-advanced.php:292 wp-admin/edit-page-form.php:207 ++msgid "" ++"Custom fields can be used to add extra metadata to a post that you can use in your theme." ++msgstr "" ++"Els camps personalitzats poden ser usats per a afegir metadades addicionals " ++"a una entrada que pots utilitzar en el teu tema (documentació en " ++"anglÚs)." ++ ++#: wp-admin/edit-form-advanced.php:299 wp-admin/edit-page-form.php:212 ++msgid "Comments & Pings" ++msgstr "Comentaris & pings" ++ ++#: wp-admin/edit-form-advanced.php:304 wp-admin/edit-page-form.php:217 ++msgid "Allow Comments" ++msgstr "Permetre comentaris" ++ ++#: wp-admin/edit-form-advanced.php:305 wp-admin/edit-page-form.php:218 ++msgid "Allow Pings" ++msgstr "Permetre pings" ++ ++#: wp-admin/edit-form-advanced.php:306 ++msgid "" ++"These settings apply to this post only. “Pings” are trackbacks and pingbacks." ++msgstr "" ++"Aquestes opcions s'apliquen només a aquesta entrada. “Pings” són " ++"retroenllaços i retropings (documentació " ++"en anglÚs)." ++ ++#: wp-admin/edit-form-advanced.php:311 ++msgid "Password Protect This Post" ++msgstr "Protegir l'entrada amb contrasenya" ++ ++#: wp-admin/edit-form-advanced.php:314 ++msgid "" ++"Setting a password will require people who visit your blog to enter the " ++"above password to view this post and its comments." ++msgstr "" ++"Si poses una contrasenya els visitants del teu blog hauran d'introduir-la " ++"per poder veure aquesta entrada i els seus comentaris." ++ ++#: wp-admin/edit-form-advanced.php:319 ++msgid "Post Slug" ++msgstr "URL de l'entrada" ++ ++#: wp-admin/edit-form-advanced.php:332 ++msgid "Post Author" ++msgstr "Autor de l'entrada" ++ ++#: wp-admin/edit-form-comment.php:3 ++#, php-format ++msgid "Editing Comment # %s" ++msgstr "Editant comentari # %s" ++ ++#: wp-admin/edit-form-comment.php:20 ++msgid "View this Comment" ++msgstr "Veure aquest comentari" ++ ++#: wp-admin/edit-form-comment.php:25 ++msgid "Approval Status" ++msgstr "Estat d'aprovació" ++ ++#: wp-admin/edit-form-comment.php:28 ++msgid "Approved" ++msgstr "Aprovat" ++ ++#: wp-admin/edit-form-comment.php:29 ++msgid "Moderated" ++msgstr "Moderat" ++ ++#: wp-admin/edit-form-comment.php:30 wp-admin/includes/template.php:688 ++#: wp-content/plugins/akismet/akismet.php:639 ++msgid "Spam" ++msgstr "Correu brossa" ++ ++#: wp-admin/edit-form-comment.php:35 ++#, php-format ++msgid "%1$s at %2$s" ++msgstr "%1$s a les %2$s" ++ ++#: wp-admin/edit-form-comment.php:49 ++msgid "" ++"You are about to delete this comment. \n" ++" 'Cancel' to stop, 'OK' to delete." ++msgstr "" ++"Estàs a punt d'esborrar aquest comentari.\n" ++" 'D'acord' per esborrar, 'Cancel·la' per sortir." ++ ++#: wp-admin/edit-form-comment.php:49 ++msgid "Delete comment" ++msgstr "Eliminar comentari" ++ ++#: wp-admin/edit-form-comment.php:58 ++msgid "Moderate Comments" ++msgstr "Moderar comentaris" ++ ++#: wp-admin/edit-form.php:14 ++msgid "Help on titles" ++msgstr "Ajuda sobre els títols" ++ ++#: wp-admin/edit-form.php:19 ++msgid "Help on categories" ++msgstr "Ajuda sobre les categories" ++ ++#: wp-admin/edit-form.php:25 ++msgid "Help with post field" ++msgstr "Ajuda sobre el camp de l'entrada" ++ ++#: wp-admin/edit-form.php:45 ++#, php-format ++msgid "" ++"TrackBack a " ++"URL: (Separate " ++"multiple URLs with spaces.)" ++msgstr "" ++"Enviar retroenllaços a una URL (separar múltiples URLs amb " ++"espais):
    " ++ ++#: wp-admin/edit-form.php:48 wp-admin/sidebar.php:76 ++msgid "Save as Draft" ++msgstr "Desa com a esborrany" ++ ++#: wp-admin/edit-form.php:49 ++msgid "Save as Private" ++msgstr "Desa com a privat" ++ ++#: wp-admin/edit-form.php:56 ++msgid "Advanced Editing" ++msgstr "Edició avançada" ++ ++#: wp-admin/edit-link-categories.php:35 wp-admin/menu.php:45 ++msgid "Link Categories" ++msgstr "Categories d'enllaços" ++ ++#: wp-admin/edit-link-categories.php:48 ++msgid "Categories deleted." ++msgstr "Categories esborrades." ++ ++#: wp-admin/edit-link-categories.php:59 ++#, php-format ++msgid "Manage Link Categories (add new)" ++msgstr "Gestionar categories d'enllaços (crear-ne una)" ++ ++#: wp-admin/edit-link-categories.php:61 ++msgid "Manage Link Categories" ++msgstr "Gestionar categories d'enllaços" ++ ++#: wp-admin/edit-link-categories.php:107 wp-admin/menu.php:42 ++#: wp-includes/widgets.php:1372 ++msgid "Links" ++msgstr "Enllaços" ++ ++#: wp-admin/edit-link-categories.php:148 ++#, php-format ++msgid "" ++"Note:
    Deleting a category does not delete the links in " ++"that category. Instead, links that were only assigned to the deleted " ++"category are set to the category %s." ++msgstr "" ++"Nota:
    Esborrant una categoria no s'esborren els seus " ++"enllaços. Els enllaços que només estaven assignats a aquesta categoria " ++"passaran a %s." ++ ++#: wp-admin/edit-link-category-form.php:28 ++msgid "Category name" ++msgstr "Nom de la categoria" ++ ++#: wp-admin/edit-link-category-form.php:32 ++msgid "Category slug" ++msgstr "URL de la categoria" ++ ++#: wp-admin/edit-link-category-form.php:37 ++msgid "Description (optional)" ++msgstr "Descripció (opcional)" ++ ++#: wp-admin/edit-link-form.php:3 wp-admin/link.php:92 ++msgid "Edit Link" ++msgstr "Editar enllaç" ++ ++#: wp-admin/edit-link-form.php:8 wp-admin/edit-link-form.php:9 ++#: wp-admin/link-add.php:4 ++msgid "Add Link" ++msgstr "Afegir un enllaç" ++ ++#: wp-admin/edit-link-form.php:46 ++msgid "Visit Link" ++msgstr "Visittar enllaç" ++ ++#: wp-admin/edit-link-form.php:51 ++msgid "Keep this link private" ++msgstr "Mantenir l'enllaç privat" ++ ++#: wp-admin/edit-link-form.php:58 ++#, php-format ++msgid "" ++"You are about to delete this link '%s'\n" ++"'Cancel' to stop, 'OK' to delete." ++msgstr "" ++"Estàs a punt d'esborrar aquest enllaç '%s'\n" ++"'D'acord' per esborrar, 'Cancel·la' per sortir." ++ ++#: wp-admin/edit-link-form.php:58 ++msgid "Delete link" ++msgstr "Esborrar enllaç" ++ ++#: wp-admin/edit-link-form.php:66 ++msgid "Manage All Links" ++msgstr "Gestionar tots els enllaços" ++ ++#: wp-admin/edit-link-form.php:67 ++msgid "Manage All Link Categories" ++msgstr "Gestionar totes les categories d'enllaços" ++ ++#: wp-admin/edit-link-form.php:68 wp-admin/import/dotclear.php:587 ++#: wp-admin/import/textpattern.php:523 ++msgid "Import Links" ++msgstr "Importar Enllaços" ++ ++#: wp-admin/edit-link-form.php:80 ++msgid "Example: Nifty blogging software" ++msgstr "Exemple: Gran programari de blog" ++ ++#: wp-admin/edit-link-form.php:85 ++msgid "Web Address" ++msgstr "Adreça Web" ++ ++#: wp-admin/edit-link-form.php:88 ++msgid "" ++"Example: http://wordpress.org/ — don’t forget the " ++"http://" ++msgstr "" ++"Exemple: http://wordpress.org/ — no oblidis http://" ++"" ++ ++#: wp-admin/edit-link-form.php:96 ++msgid "" ++"This will be shown when someone hovers over the link in the blogroll, or " ++"optionally below the link." ++msgstr "" ++"Això es mostrarà quan algú sobrevoli amb el ratolí l'enllaç a la llista " ++"d'enllaços, o opcionalment sota l'enllaç." ++ ++#: wp-admin/edit-link-form.php:139 ++#: wp-includes/js/tinymce/langs/wp-langs.php:279 ++#: wp-includes/js/tinymce/langs/wp-langs.php:328 ++msgid "Target" ++msgstr "Destinació" ++ ++#: wp-admin/edit-link-form.php:149 wp-admin/edit-link-form.php:183 ++#: wp-admin/edit-link-form.php:216 wp-admin/edit-link-form.php:239 ++msgid "none" ++msgstr "cap" ++ ++#: wp-admin/edit-link-form.php:150 ++msgid "" ++"Choose the frame your link targets. Essentially this means if you choose " ++"_blank your link will open in a new window." ++msgstr "" ++"Especifica la finestra de destinació dels enllaços. Essencialment significa " ++"que si uses _blank el teu enllaç s'obrirà en una finestra nova." ++ ++#: wp-admin/edit-link-form.php:155 ++msgid "Link Relationship (XFN)" ++msgstr "Relació amb l'enllaç (XFN)" ++ ++#: wp-admin/edit-link-form.php:159 ++msgid "rel:" ++msgstr "rel:" ++ ++#: wp-admin/edit-link-form.php:166 ++msgid "identity" ++msgstr "identitat" ++ ++#: wp-admin/edit-link-form.php:170 ++msgid "another web address of mine" ++msgstr "una altra adreça web meva" ++ ++#: wp-admin/edit-link-form.php:174 ++msgid "friendship" ++msgstr "amistat" ++ ++#: wp-admin/edit-link-form.php:177 ++msgid "contact" ++msgstr "contacte" ++ ++#: wp-admin/edit-link-form.php:179 ++msgid "acquaintance" ++msgstr "conegut/da" ++ ++#: wp-admin/edit-link-form.php:181 ++msgid "friend" ++msgstr "amic/ga" ++ ++#: wp-admin/edit-link-form.php:187 ++msgid "physical" ++msgstr "físic" ++ ++#: wp-admin/edit-link-form.php:191 ++msgid "met" ++msgstr "conegut/da en persona " ++ ++#: wp-admin/edit-link-form.php:195 ++msgid "professional" ++msgstr "professional" ++ ++#: wp-admin/edit-link-form.php:199 ++msgid "co-worker" ++msgstr "company/a" ++ ++#: wp-admin/edit-link-form.php:202 ++msgid "colleague" ++msgstr "col·lega" ++ ++#: wp-admin/edit-link-form.php:206 ++msgid "geographical" ++msgstr "geogràfic" ++ ++#: wp-admin/edit-link-form.php:210 ++msgid "co-resident" ++msgstr "co-resident" ++ ++#: wp-admin/edit-link-form.php:213 ++msgid "neighbor" ++msgstr "veí/veïna" ++ ++#: wp-admin/edit-link-form.php:220 ++msgid "family" ++msgstr "família" ++ ++#: wp-admin/edit-link-form.php:224 ++msgid "child" ++msgstr "fill/a" ++ ++#: wp-admin/edit-link-form.php:227 ++msgid "kin" ++msgstr "parent" ++ ++#: wp-admin/edit-link-form.php:230 ++msgid "parent" ++msgstr "pare/mare" ++ ++#: wp-admin/edit-link-form.php:233 ++msgid "sibling" ++msgstr "germà/germana" ++ ++#: wp-admin/edit-link-form.php:236 ++msgid "spouse" ++msgstr "cònjuge" ++ ++#: wp-admin/edit-link-form.php:243 ++msgid "romantic" ++msgstr "sentimental" ++ ++#: wp-admin/edit-link-form.php:247 ++msgid "muse" ++msgstr "inspiració" ++ ++#: wp-admin/edit-link-form.php:250 ++msgid "crush" ++msgstr "amor sobtat" ++ ++#: wp-admin/edit-link-form.php:253 ++msgid "date" ++msgstr "lligue" ++ ++#: wp-admin/edit-link-form.php:256 ++msgid "sweetheart" ++msgstr "parella" ++ ++#: wp-admin/edit-link-form.php:263 ++msgid "" ++"If the link is to a person, you can specify your relationship with them " ++"using the above form. If you would like to learn more about the idea check " ++"out XFN." ++msgstr "" ++"Si l'enllaç és cap a una persona, pots especificar la teva relació amb ella " ++"usant el formulari anterior. Si vols aprendre'n més sobre aquesta indicació " ++"visita XFN (en anglÚs)." ++ ++#: wp-admin/edit-link-form.php:268 wp-content/themes/default/functions.php:393 ++#: wp-includes/js/tinymce/langs/wp-langs.php:291 ++#: wp-includes/js/tinymce/wp-mce-help.php:163 ++msgid "Advanced" ++msgstr "Avançat" ++ ++#: wp-admin/edit-link-form.php:272 ++msgid "Image Address" ++msgstr "Adreça de la imatge" ++ ++#: wp-admin/edit-link-form.php:276 ++msgid "RSS Address" ++msgstr "Adreça de RSS" ++ ++#: wp-admin/edit-link-form.php:280 ++msgid "Notes" ++msgstr "Notes" ++ ++#: wp-admin/edit-link-form.php:284 ++msgid "Rating" ++msgstr "Puntuació" ++ ++#: wp-admin/edit-link-form.php:293 ++msgid "(Leave at 0 for no rating.)" ++msgstr "(Deixa en 0 per a no puntuar)" ++ ++#: wp-admin/edit-page-form.php:4 ++#, php-format ++msgid "Page updated. Continue editing below or go back." ++msgstr "" ++"Pàgina actualitzada. Pots continuar editant aquí sota o tornar enrere." ++ ++#: wp-admin/edit-page-form.php:7 ++msgid "Page updated." ++msgstr "Pâgina actualitzada." ++ ++#: wp-admin/edit-page-form.php:36 ++msgid "Write Page" ++msgstr "Escriure una pàgina" ++ ++#: wp-admin/edit-page-form.php:64 ++msgid "View this Page" ++msgstr "Veure aquesta pàgina" ++ ++#: wp-admin/edit-page-form.php:66 wp-includes/script-loader.php:498 ++msgid "Preview this Page" ++msgstr "Mostrar aquesta pàgina" ++ ++#: wp-admin/edit-page-form.php:81 ++msgid "Pending" ++msgstr "Pendent" ++ ++#: wp-admin/edit-page-form.php:88 ++msgid "Keep this page private" ++msgstr "Mantenir la pàgina privada" ++ ++#: wp-admin/edit-page-form.php:129 ++#, php-format ++msgid "" ++"You are about to delete this page '%s'\n" ++" 'Cancel' to stop, 'OK' to delete." ++msgstr "" ++"Estàs a punt d'esborrar la pàgina '%s'\n" ++"'Acceptar' per a esborrar, 'Cancel·lar' per a sortir." ++ ++#: wp-admin/edit-page-form.php:129 ++msgid "Delete page" ++msgstr "Esborrar pàgina" ++ ++#: wp-admin/edit-page-form.php:150 ++msgid "See Comments on this Page" ++msgstr "Veure comentaris en aquesta pàgina" ++ ++#: wp-admin/edit-page-form.php:153 ++msgid "Manage All Pages" ++msgstr "Gestionar totes les pàgines" ++ ++#: wp-admin/edit-page-form.php:177 wp-admin/menu.php:35 ++#: wp-includes/script-loader.php:180 ++msgid "Page" ++msgstr "Pàgina" ++ ++#: wp-admin/edit-page-form.php:219 ++msgid "" ++"These settings apply to this page only. “Pings” are trackbacks and pingbacks." ++msgstr "" ++"Aquestes opcions s'apliquen només a aquesta pàgina. “Pings” són " ++"retroenllaços i retropings (documentació " ++"en anglÚs)." ++ ++#: wp-admin/edit-page-form.php:224 ++msgid "Password Protect This Page" ++msgstr "Protegir la pàgina amb contrasenya" ++ ++#: wp-admin/edit-page-form.php:227 ++msgid "" ++"Setting a password will require people who visit your blog to enter the " ++"above password to view this page and its comments." ++msgstr "" ++"Si poses una contrasenya els visitants del teu blog hauran d'introduir-la " ++"per poder veure aquesta pàgina i els seus comentaris." ++ ++#: wp-admin/edit-page-form.php:232 ++msgid "Page Slug" ++msgstr "URL de la pàgina" ++ ++#: wp-admin/edit-page-form.php:239 ++msgid "Page Parent" ++msgstr "Pàgina superior" ++ ++#: wp-admin/edit-page-form.php:242 ++msgid "Main Page (no parent)" ++msgstr "Pàgina principal (sense superior)" ++ ++#: wp-admin/edit-page-form.php:245 ++msgid "" ++"You can arrange your pages in hierarchies, for example you could have an " ++"“About” page that has “Life Story” and “My " ++"Dog” pages under it. There are no limits to how deeply nested you can " ++"make pages." ++msgstr "" ++"Pots organitzar les teves pàgines en jerarquies, per exemple podries tenir " ++"una pàgina “Quant a…” que consta de les pàgines “La " ++"meva història” i “El meu gos”. No hi ha límits en la " ++"quantitat de nivells de pàgines." ++ ++#: wp-admin/edit-page-form.php:251 wp-admin/includes/file.php:3 ++msgid "Page Template" ++msgstr "Plantilla de la pàgina" ++ ++#: wp-admin/edit-page-form.php:254 ++msgid "Default Template" ++msgstr "Plantilla predeterminada" ++ ++#: wp-admin/edit-page-form.php:257 ++msgid "" ++"Some themes have custom templates you can use for certain pages that might " ++"have additional features or custom layouts. If so, you’ll see them " ++"above." ++msgstr "" ++"Alguns temes tenen plantilles personalitzades que pots usar en certes " ++"pàgines que possiblement tinguin funcionalitat addicional o un disseny " ++"especial. Si és així, les veuràs aquí sobre." ++ ++#: wp-admin/edit-page-form.php:263 ++msgid "Page Order" ++msgstr "Ordre de la pàgina" ++ ++#: wp-admin/edit-page-form.php:266 ++msgid "" ++"Pages are usually ordered alphabetically, but you can put a number above to " ++"change the order pages appear in. (We know this is a little janky, it’" ++"ll be better in future releases.)" ++msgstr "" ++"Les pàgines s'acostumen a ordenar alfabÚticament, però pots escriure un " ++"nombre aquí sobre per canviar l'ordre d'aparició de les pàgines. (Sí, ja ho " ++"sabem, és una mica penós, ho millorarem en versions futures.)" ++ ++#: wp-admin/edit-page-form.php:277 ++msgid "Page Author" ++msgstr "Autor de la pàgina" ++ ++#: wp-admin/edit-pages.php:11 wp-admin/page.php:134 ++msgid "You are not allowed to delete this page." ++msgstr "No tens autorització per a eliminar aquesta pàgina." ++ ++#: wp-admin/edit-pages.php:15 wp-admin/edit-pages.php:18 wp-admin/edit.php:15 ++#: wp-admin/edit.php:18 wp-admin/page.php:138 wp-admin/page.php:141 ++#: wp-admin/post.php:149 wp-admin/post.php:152 wp-admin/upload.php:18 ++msgid "Error in deleting..." ++msgstr "Error quan eliminava..." ++ ++#: wp-admin/edit-pages.php:34 wp-admin/menu.php:41 ++#: wp-includes/post-template.php:306 wp-includes/widgets.php:366 ++#: wp-includes/widgets.php:1360 wp-includes/widgets.php:1361 ++msgid "Pages" ++msgstr "Pàgines" ++ ++#: wp-admin/edit-pages.php:39 ++msgid "Published pages" ++msgstr "Pàgines publicades" ++ ++#: wp-admin/edit-pages.php:39 wp-admin/includes/post.php:522 ++#, php-format ++msgid "Published (%s)" ++msgid_plural "Published (%s)" ++msgstr[0] "Publicat (%s)" ++msgstr[1] "Publicats (%s)" ++ ++#: wp-admin/edit-pages.php:40 ++msgid "Scheduled pages" ++msgstr "Pàgines previstes" ++ ++#: wp-admin/edit-pages.php:40 wp-admin/includes/post.php:523 ++#, php-format ++msgid "Scheduled (%s)" ++msgid_plural "Scheduled (%s)" ++msgstr[0] "Previst (%s)" ++msgstr[1] "Previst (%s)" ++ ++#: wp-admin/edit-pages.php:41 ++msgid "Pending pages" ++msgstr "Pàgines pendents" ++ ++#: wp-admin/edit-pages.php:41 wp-admin/includes/post.php:524 ++#, php-format ++msgid "Pending Review (%s)" ++msgid_plural "Pending Review (%s)" ++msgstr[0] "Pendent de revisió (%s)" ++msgstr[1] "Pendents de revisió (%s)" ++ ++#: wp-admin/edit-pages.php:42 wp-admin/includes/post.php:525 ++#: wp-includes/post.php:303 wp-includes/post.php:326 ++msgid "Draft" ++msgstr "Esborrany" ++ ++#: wp-admin/edit-pages.php:42 wp-admin/includes/post.php:525 ++msgid "Drafts|manage posts header" ++msgstr "Esborranys|manage posts header" ++ ++#: wp-admin/edit-pages.php:42 wp-admin/includes/post.php:525 ++#, php-format ++msgid "Draft (%s)" ++msgid_plural "Drafts (%s)" ++msgstr[0] "Esborrany (%s)" ++msgstr[1] "Esborranys (%s)" ++ ++#: wp-admin/edit-pages.php:43 wp-admin/includes/post.php:526 ++#: wp-includes/post.php:305 wp-includes/post.php:327 ++msgid "Private" ++msgstr "Privat" ++ ++#: wp-admin/edit-pages.php:43 ++msgid "Private pages" ++msgstr "Pàgines privades" ++ ++#: wp-admin/edit-pages.php:43 wp-admin/includes/post.php:526 ++#, php-format ++msgid "Private (%s)" ++msgid_plural "Private (%s)" ++msgstr[0] "Privat (%s)" ++msgstr[1] "Privat (%s)" ++ ++#: wp-admin/edit-pages.php:46 ++msgid "Manage Pages" ++msgstr "Gestió de pàgines" ++ ++#: wp-admin/edit-pages.php:68 wp-admin/edit.php:74 wp-admin/upload.php:77 ++#, php-format ++msgid "matching “%s”" ++msgstr "buscant “%s”" ++ ++#: wp-admin/edit-pages.php:72 wp-admin/edit.php:71 wp-admin/upload.php:74 ++#, php-format ++msgid "by %s" ++msgstr "per %s" ++ ++#: wp-admin/edit-pages.php:74 ++#, php-format ++msgid "%1$s%2$s%3$s|You can reorder these: 1: Pages, 2: by {s}, 3: matching {s}" ++msgstr "%1$s%2$s%3$s|You can reorder these: 1: Pages, 2: by {s}, 3: matching {s}" ++ ++#: wp-admin/edit-pages.php:85 ++msgid "All Pages" ++msgstr "Tot" ++ ++#: wp-admin/edit-pages.php:108 ++msgid "Your page has been saved." ++msgstr "La teva pàgina ha sigut desada." ++ ++#: wp-admin/edit-pages.php:108 wp-admin/page-new.php:17 ++msgid "View page" ++msgstr "Veure pàgina" ++ ++#: wp-admin/edit-pages.php:108 ++msgid "Edit page" ++msgstr "Editar pàgina" ++ ++#: wp-admin/edit-pages.php:115 ++msgid "Search Pages" ++msgstr "Cercar pàgines" ++ ++#: wp-admin/edit-pages.php:165 ++msgid "No pages found." ++msgstr "No s'ha trobat cap pàgina." ++ ++#: wp-admin/edit.php:11 wp-admin/post.php:145 wp-admin/upload.php:14 ++msgid "You are not allowed to delete this post." ++msgstr "No tens autorització per a eliminar aquesta entrada." ++ ++#: wp-admin/edit.php:54 wp-admin/upload.php:57 ++#: wp-content/themes/classic/comments-popup.php:9 ++#, php-format ++msgid "Comments on %s" ++msgstr "Comentaris a %s" ++ ++#: wp-admin/edit.php:56 ++msgid "Manage Posts|manage posts header" ++msgstr "Gestionar entrades|manage posts header" ++ ++#: wp-admin/edit.php:60 wp-admin/upload.php:63 ++#, php-format ++msgid "Previous %s" ++msgstr "Anteriors %s" ++ ++#: wp-admin/edit.php:60 wp-admin/upload.php:63 ++#, php-format ++msgid "Latest %s" ++msgstr "Darrers %s" ++ ++#: wp-admin/edit.php:68 wp-admin/upload.php:71 ++msgid "by other authors" ++msgstr "per altres autors" ++ ++#: wp-admin/edit.php:75 wp-admin/upload.php:78 ++#, php-format ++msgid "in “%s”" ++msgstr "dins de “%s”" ++ ++#: wp-admin/edit.php:76 wp-admin/upload.php:79 ++#, php-format ++msgid "tagged with “%s”" ++msgstr "etiquetat amb “%s”" ++ ++#: wp-admin/edit.php:77 wp-admin/upload.php:80 ++#, php-format ++msgid "during %s" ++msgstr "durant %s" ++ ++#: wp-admin/edit.php:78 wp-admin/upload.php:81 ++#, php-format ++msgid "" ++"%1$s%2$s%3$s%4$s%5$s%6$s|You can reorder these: 1: Posts, 2: by {s}, 3: " ++"matching {s}, 4: in {s}, 5: tagged with {s}, 6: during {s}" ++msgstr "" ++"%1$s%2$s%3$s%4$s%5$s%6$s|You can reorder these: 1: Posts, 2: by {s}, 3: " ++"matching {s}, 4: in {s}, 5: tagged with {s}, 6: during {s}" ++ ++#: wp-admin/edit.php:87 ++msgid "All Posts" ++msgstr "Tot" ++ ++#: wp-admin/edit.php:113 wp-admin/post-new.php:28 ++msgid "Your post has been saved." ++msgstr "La teva entrada ha sigut desada." ++ ++#: wp-admin/edit.php:113 wp-admin/post-new.php:28 ++msgid "View post" ++msgstr "Veure-la" ++ ++#: wp-admin/edit.php:113 wp-admin/post-new.php:28 ++#: wp-includes/link-template.php:484 ++msgid "Edit post" ++msgstr "Editar-la" ++ ++#: wp-admin/edit.php:120 ++msgid "Search Posts" ++msgstr "Buscar entrades" ++ ++#: wp-admin/edit.php:150 wp-admin/includes/media.php:1023 ++#: wp-admin/upload.php:162 ++msgid "Show all dates" ++msgstr "Veure totes les dates" ++ ++#: wp-admin/edit.php:170 ++msgid "View all categories" ++msgstr "Veure totes les categories" ++ ++#: wp-admin/edit.php:172 wp-admin/link-manager.php:110 wp-admin/upload.php:182 ++msgid "Filter" ++msgstr "Filtre" ++ ++#: wp-admin/edit-post-rows.php:76 ++msgid " — Protected" ++msgstr " — Protegit" ++ ++#: wp-admin/edit-post-rows.php:76 wp-admin/includes/template.php:404 ++msgid " — Private" ++msgstr " — Privat" ++ ++#: wp-admin/edit-post-rows.php:90 wp-admin/includes/upgrade.php:64 ++#: wp-admin/includes/upgrade.php:65 wp-includes/category-template.php:116 ++msgid "Uncategorized" ++msgstr "General" ++ ++#: wp-admin/edit-post-rows.php:106 ++msgid "No Tags" ++msgstr "Cap etiqueta" ++ ++#: wp-admin/edit-post-rows.php:137 wp-admin/includes/template.php:433 ++#, php-format ++msgid "View \"%s\"" ++msgstr "Veure \"%s\"" ++ ++#: wp-admin/edit-post-rows.php:162 ++msgid "View" ++msgstr "Veure" ++ ++#: wp-admin/edit-tag-form.php:3 wp-admin/edit-tag-form.php:4 ++msgid "Edit Tag" ++msgstr "Editar etiqueta" ++ ++#: wp-admin/edit-tag-form.php:10 wp-admin/edit-tag-form.php:11 ++msgid "Add Tag" ++msgstr "Afegir etiqueta" ++ ++#: wp-admin/edit-tag-form.php:28 ++msgid "Tag name" ++msgstr "Nom de l'etiqueta" ++ ++#: wp-admin/edit-tag-form.php:30 ++msgid "The name is how the tag appears on your site." ++msgstr "El nom és tal com apareix l'etiqueta al teu web." ++ ++#: wp-admin/edit-tag-form.php:33 ++msgid "Tag slug" ++msgstr "URL de l'etiqueta" ++ ++#: wp-admin/edit-tags.php:113 ++msgid "Tag added." ++msgstr "Etiqueta creada." ++ ++#: wp-admin/edit-tags.php:114 ++msgid "Tag deleted." ++msgstr "Etiqueta esborrada." ++ ++#: wp-admin/edit-tags.php:115 ++msgid "Tag updated." ++msgstr "Etiqueta actualitzada." ++ ++#: wp-admin/edit-tags.php:116 ++msgid "Tag not added." ++msgstr "L'etiqueta no s'ha afegit." ++ ++#: wp-admin/edit-tags.php:117 ++msgid "Tag not updated." ++msgstr "L'etiqueta no s'ha actualitzat." ++ ++#: wp-admin/edit-tags.php:118 ++msgid "Tags deleted." ++msgstr "Etiquetes esborrades." ++ ++#: wp-admin/edit-tags.php:130 ++#, php-format ++msgid "Manage Tags (add new)" ++msgstr "Gestionar etiquetes (crear-ne una)" ++ ++#: wp-admin/edit-tags.php:132 ++msgid "Manage Tags" ++msgstr "Gestionar etiquetes" ++ ++#: wp-admin/edit-tags.php:137 ++msgid "Search Tags" ++msgstr "Cercar etiquetes" ++ ++#: wp-admin/export.php:4 wp-admin/export.php:16 wp-admin/menu.php:48 ++msgid "Export" ++msgstr "Exportar" ++ ++#: wp-admin/export.php:17 ++msgid "" ++"When you click the button below WordPress will create an XML file for you to " ++"save to your computer." ++msgstr "" ++"Quan facis clic al botó segÃŒent WordPress crearà un fitxer XML que podràs " ++"desar al teu ordinador." ++ ++#: wp-admin/export.php:18 ++msgid "" ++"This format, which we call WordPress eXtended RSS or WXR, will contain your " ++"posts, pages, comments, custom fields, categories, and tags." ++msgstr "" ++"Aquest format, que nosaltres anomenem WordPress eXtended RSS o bé WXR, " ++"contindrà les teves entrades, comentaris, camps personalitzats categories i " ++"etiquetes." ++ ++#: wp-admin/export.php:19 ++msgid "" ++"Once you’ve saved the download file, you can use the Import function " ++"on another WordPress blog to import this blog." ++msgstr "" ++"Després d'haver desat el fitxer que hagis descarregat, podràs usar la funció " ++"d'Importar en un altre blog WordPress per a importar aquest blog." ++ ++#: wp-admin/export.php:21 ++msgid "Options" ++msgstr "Opcions" ++ ++#: wp-admin/export.php:25 ++msgid "Restrict Author" ++msgstr "Restringir l'autor" ++ ++#: wp-admin/export.php:28 ++msgid "All Authors" ++msgstr "Tots els autors" ++ ++#: wp-admin/export.php:40 ++msgid "Download Export File" ++msgstr "Descarregar fitxer d'exportació" ++ ++#: wp-admin/import/blogger.php:13 ++msgid "Import Blogger" ++msgstr "Importar des de Blogger" ++ ++#: wp-admin/import/blogger.php:14 ++msgid "" ++"Howdy! This importer allows you to import posts and comments from your " ++"Blogger account into your WordPress blog." ++msgstr "" ++"Aquest importador et permet importar al teu WordPress les entrades i " ++"comentaris del teu compte Blogger." ++ ++#: wp-admin/import/blogger.php:15 ++msgid "" ++"To use this importer, you must have a Google account and an upgraded (New, " ++"was Beta) blog hosted on blogspot.com or a custom domain (not FTP)." ++msgstr "" ++"Per a usar aquest importador, has de tenir un compte de Google i un blog " ++"actualitzat (dels nous, abans anomenats Beta) que ha d'estar a blogspot.com " ++"o en un domini propi (no FTP)." ++ ++#: wp-admin/import/blogger.php:16 ++msgid "" ++"The first thing you need to do is tell Blogger to let WordPress access your " ++"account. You will be sent back here after providing authorization." ++msgstr "" ++"El primer que has de fer és dir a Blogger que deixi a WordPress accedir al " ++"teu compte. Seràs redirigit altre cop cap aquí després de fer l'autorització." ++ ++#: wp-admin/import/blogger.php:17 ++msgid "Authorize" ++msgstr "Autoritzar" ++ ++#: wp-admin/import/blogger.php:51 ++msgid "Authorization failed" ++msgstr "ha fallat l'autentificació " ++ ++#: wp-admin/import/blogger.php:52 ++msgid "Something went wrong. If the problem persists, send this info to support:" ++msgstr "" ++"Hi ha hagut un problema tÚcnic. Si persisteix, envia aquesta informació al " ++"suport:" ++ ++#: wp-admin/import/blogger.php:109 ++msgid "Trouble signing in" ++msgstr "Hi ha hagut un problema intentant entrar al compte d'usuari" ++ ++#: wp-admin/import/blogger.php:110 ++msgid "We were not able to gain access to your account. Try starting over." ++msgstr "No ens ha sigut possible accedir al teu compte. Torna-ho a provar." ++ ++#: wp-admin/import/blogger.php:143 ++msgid "No blogs found" ++msgstr "No s'ha trobat cap blog" ++ ++#: wp-admin/import/blogger.php:144 ++msgid "" ++"We were able to log in but there were no blogs. Try a different account next " ++"time." ++msgstr "Hem tingut accés però no hi ha cap blog. Prova-ho amb un altre compte." ++ ++#: wp-admin/import/blogger.php:152 wp-admin/upgrade.php:30 ++#: wp-admin/upgrade.php:57 ++msgid "Continue" ++msgstr "Continuar" ++ ++#: wp-admin/import/blogger.php:153 wp-admin/link-import.php:73 ++msgid "Importing..." ++msgstr "Important..." ++ ++#: wp-admin/import/blogger.php:154 ++msgid "Set Authors" ++msgstr "Determinar els autors" ++ ++#: wp-admin/import/blogger.php:155 ++msgid "Preparing author mapping form..." ++msgstr "Preparant el formulari de correspondÚncia d'autors..." ++ ++#: wp-admin/import/blogger.php:156 ++msgid "Final Step: Author Mapping" ++msgstr "L'útlim pas: CorrespondÚncia d'autors" ++ ++#: wp-admin/import/blogger.php:157 ++msgid "Nothing was imported. Had you already imported this blog?" ++msgstr "No s'ha importat res. Potser ja havies importat aquest blog?" ++ ++#: wp-admin/import/blogger.php:158 ++msgid "Blogger Blogs" ++msgstr "Blogs de Blogger" ++ ++#: wp-admin/import/blogger.php:159 ++msgid "Blog Name" ++msgstr "Nom del blog" ++ ++#: wp-admin/import/blogger.php:160 ++msgid "Blog URL" ++msgstr "URL del blog" ++ ++#: wp-admin/import/blogger.php:161 ++msgid "The Magic Button" ++msgstr "El botó màgic" ++ ++#: wp-admin/import/blogger.php:163 wp-admin/includes/file.php:3 ++#: wp-admin/menu.php:38 wp-content/plugins/akismet/akismet.php:488 ++#: wp-content/themes/classic/comments-popup.php:22 ++msgid "Comments" ++msgstr "Comentaris" ++ ++#: wp-admin/import/blogger.php:164 ++msgid "" ++"This feature requires Javascript but it seems to be disabled. Please enable " ++"Javascript and then reload this page. Don't worry, you can turn it back off " ++"when you're done." ++msgstr "" ++"Aquesta opció requereix Javascript, que sembla estar desactivat. Sisplau " ++"activa Javascript i torna a carregar aquesta pàgina. No et preocupis, pots " ++"tornar a desactivar-lo després." ++ ++#: wp-admin/import/blogger.php:611 ++msgid "" ++"All posts were imported with the current user as author. Use this form to " ++"move each Blogger user's posts to a different WordPress user. You may add users and then return to this page and complete " ++"the user mapping. This form may be used as many times as you like until you " ++"activate the \"Restart\" function below." ++msgstr "" ++"Totes les entrades han sigut importades amb l'usuari actual com a autor. Usa " ++"aquest formulari per a traslladar les entrades de Blogger de cada autor cap " ++"a un altre autor de WordPress. Pots afegir usuaris " ++"i en acabat tornar aquí i completar la correspondÚncia. Aquest formulari pot " ++"ser usat tantes vegades com vulguis fins que activis la segÃŒent funció " ++"\"Reiniciar\"." ++ ++#: wp-admin/import/blogger.php:612 ++msgid "Author mapping" ++msgstr "CorrespondÚncia d'autors" ++ ++#: wp-admin/import/blogger.php:614 ++msgid "Blogger username" ++msgstr "Nom d'usuari de Blogger" ++ ++#: wp-admin/import/blogger.php:615 ++msgid "WordPress login" ++msgstr "Compte d'usuari de WordPress" ++ ++#: wp-admin/import/blogger.php:673 ++msgid "Could not connect to https://www.google.com" ++msgstr "No s'ha pogut connectar amb https://www.google.com" ++ ++#: wp-admin/import/blogger.php:674 ++msgid "" ++"There was a problem opening a secure connection to Google. This is what went " ++"wrong:" ++msgstr "" ++"Hi ha hagut un problema obrint una connexió segura amb Google. Això ha " ++"fallat:" ++ ++#: wp-admin/import/blogger.php:685 ++#, php-format ++msgid "Could not connect to %s" ++msgstr "No s'ha pogut connectar amb %s" ++ ++#: wp-admin/import/blogger.php:686 ++msgid "There was a problem opening a connection to Blogger. This is what went wrong:" ++msgstr "Hi ha hagut un problema obrint una connexió amb Blogger. Això ha fallat:" ++ ++#: wp-admin/import/blogger.php:752 ++msgid "Congratulations!" ++msgstr "Enhorabona!" ++ ++#: wp-admin/import/blogger.php:752 ++msgid "" ++"Now that you have imported your Blogger blog into WordPress, what are you " ++"going to do? Here are some suggestions:" ++msgstr "" ++"Ara que has importat el blog del Blogger al WordPress, QuÚ penses fer? " ++"Algunes suggerÚncies:" ++ ++#: wp-admin/import/blogger.php:752 ++msgid "That was hard work! Take a break." ++msgstr "Ha sigut una feinada! Descansa." ++ ++#: wp-admin/import/blogger.php:754 ++msgid "" ++"In case you haven't done it already, you can import the posts from your " ++"other blogs:" ++msgstr "Si encara no ho has fet, pots importar les entrades dels altres blogs:" ++ ++#: wp-admin/import/blogger.php:756 ++#, php-format ++msgid "" ++"Go to Authors & Users, where you can " ++"modify the new user(s) or delete them. If you want to make all of the " ++"imported posts yours, you will be given that option when you delete the new " ++"authors." ++msgstr "" ++"Vés a Autors i Usuaris, on podràs modificar " ++"els nous usuaris o eliminar-los. Si vols assignar-te totes les entrades " ++"importades, se't donarà l'opció quan eliminis els nous autors." ++ ++#: wp-admin/import/blogger.php:757 ++msgid "For security, click the link below to reset this importer." ++msgstr "Per seguretat, clica el segÃŒent enllaç per restablir l'importador." ++ ++#: wp-admin/import/blogger.php:788 ++msgid "Restart" ++msgstr "Reiniciar" ++ ++#: wp-admin/import/blogger.php:789 ++msgid "" ++"We have saved some information about your Blogger account in your WordPress " ++"database. Clearing this information will allow you to start over. Restarting " ++"will not affect any posts you have already imported. If you attempt to re-" ++"import a blog, duplicate posts and comments will be skipped." ++msgstr "" ++"Hem registrat informacions sobre el teu compte de Blogger a la teva base de " ++"dades de WordPress. Esborrant aquesta informació et permetrà reiniciar el " ++"procés. Reiniciar no afectarà les entrades que ja has importat. Si proves de " ++"re-importar un blog, les entrades i comentaris duplicats se saltaran." ++ ++#: wp-admin/import/blogger.php:790 ++msgid "Clear account information" ++msgstr "Esborrar la informació del compte" ++ ++#: wp-admin/import/blogger.php:840 ++msgid "Blogger" ++msgstr "Blogger" ++ ++#: wp-admin/import/blogger.php:840 ++msgid "Import posts, comments, and users from a Blogger blog." ++msgstr "Importar les entrades, comentaris i usuaris des d'un blog de Blogger." ++ ++#: wp-admin/import/blogware.php:11 ++msgid "Import Blogware" ++msgstr "Importar Blogware" ++ ++#: wp-admin/import/blogware.php:26 ++msgid "" ++"Howdy! This importer allows you to extract posts from Blogware XML export " ++"file into your blog. Pick a Blogware file to upload and click Import." ++msgstr "" ++"Aquest importador et permetrà extreure les entrades d'un fitxer XML exportat " ++"per Blogware i afegir-les al teu blog. Tria un arxiu de Blogware per pujar-" ++"lo i clica a Importar." ++ ++#: wp-admin/import/blogware.php:89 wp-admin/import/livejournal.php:69 ++#: wp-admin/import/mt.php:210 wp-admin/import/wordpress.php:387 ++#, php-format ++msgid "Post %s already exists." ++msgstr "L'entrada %s ja existeix." ++ ++#: wp-admin/import/blogware.php:91 wp-admin/import/livejournal.php:71 ++#: wp-admin/import/mt.php:213 wp-admin/import/wordpress.php:418 ++#, php-format ++msgid "Importing post %s..." ++msgstr "Important entrada %s..." ++ ++#: wp-admin/import/blogware.php:98 wp-admin/import/livejournal.php:77 ++#: wp-admin/import/rss.php:116 ++msgid "Couldn't get post ID" ++msgstr "No es troba l'ID de l'entrada" ++ ++#: wp-admin/import/blogware.php:144 wp-includes/pluggable.php:892 ++#, php-format ++msgid "%s comment" ++msgid_plural "%s comments" ++msgstr[0] "%s comentari" ++msgstr[1] "%s comentaris" ++ ++#: wp-admin/import/blogware.php:167 wp-admin/import/livejournal.php:144 ++#: wp-admin/import/mt.php:423 wp-admin/import/rss.php:147 ++#, php-format ++msgid "All done. Have fun!" ++msgstr "Fet. A disfrutar!" ++ ++#: wp-admin/import/blogware.php:200 ++msgid "Blogware" ++msgstr "Blogware" ++ ++#: wp-admin/import/blogware.php:200 ++msgid "Import posts from Blogware." ++msgstr "Importar entrades des de Blogware." ++ ++#: wp-admin/import/btt.php:7 ++msgid "Import Bunny’s Technorati Tags" ++msgstr "Importar Bunny’s Technorati Tags" ++ ++#: wp-admin/import/btt.php:8 wp-admin/import/dotclear.php:116 ++#: wp-admin/import/jkw.php:8 wp-admin/import/stp.php:6 ++#: wp-admin/import/textpattern.php:33 wp-admin/import/utw.php:8 ++msgid "" ++"Steps may take a few minutes depending on the size of your database. Please " ++"be patient." ++msgstr "" ++"El procés pot durar uns minuts depenent de la grandària de la teva base de " ++"dades. Sisplau sigues pacient." ++ ++#: wp-admin/import/btt.php:17 ++msgid "" ++"Howdy! This imports tags from Bunny’s Technorati Tags into WordPress " ++"tags." ++msgstr "" ++"Aquí s'importen etiquetes de Bunny’s Technorati Tags cap a etiquetes de " ++"WordPress." ++ ++#: wp-admin/import/btt.php:18 ++msgid "This is suitable for Bunny’s Technorati Tags version 0.6." ++msgstr "Suporta la versió 0.6 de Bunny’s Technorati Tags." ++ ++#: wp-admin/import/btt.php:19 ++msgid "All existing Bunny’s Technorati Tags will be removed after import." ++msgstr "" ++"Totes les paraules clau de Bunny’s Technorati Tags existents seran " ++"eliminades després d'importar." ++ ++#: wp-admin/import/btt.php:20 wp-admin/import/jkw.php:20 ++#: wp-admin/import/stp.php:18 wp-admin/import/utw.php:20 ++msgid "Don’t be stupid - backup your database before proceeding!" ++msgstr "No oblidis de fer una còpia de seguretat abans de procedir!" ++ ++#: wp-admin/import/btt.php:23 ++msgid "Import Tags" ++msgstr "Importar etiquetes" ++ ++#: wp-admin/import/btt.php:62 ++msgid "Reading Bunny’s Technorati Tags…" ++msgstr "Llegint etiquetes de Bunny’s Technorati Tags
" ++ ++#: wp-admin/import/btt.php:67 wp-admin/import/jkw.php:83 ++#: wp-admin/import/jkw.php:124 wp-admin/import/utw.php:72 ++msgid "No Tags Found!" ++msgstr "No s'ha trobat cap etiqueta!" ++ ++#: wp-admin/import/btt.php:71 wp-admin/import/jkw.php:87 ++#, php-format ++msgid "Done! %s post with tags were read." ++msgid_plural "Done! %s posts with tags were read." ++msgstr[0] "Fet! Llegida %s entrada amb etiquetes." ++msgstr[1] "Fet! Llegides %s entrades amb etiquetes." ++ ++#: wp-admin/import/btt.php:93 wp-admin/import/jkw.php:109 ++#: wp-admin/import/jkw.php:142 ++msgid "Next" ++msgstr "SegÃŒent" ++ ++#: wp-admin/import/btt.php:100 wp-admin/import/jkw.php:163 ++#: wp-admin/import/stp.php:139 wp-admin/import/utw.php:250 ++msgid "Import Complete!" ++msgstr "Importació completa!" ++ ++#: wp-admin/import/btt.php:113 ++msgid "Import Bunny’s Technorati Tags into WordPress tags." ++msgstr "Importar Bunny’s Technorati Tags cap a etiquetes de WordPress." ++ ++#: wp-admin/import/dotclear.php:115 ++msgid "Import DotClear" ++msgstr "Importar DotClear" ++ ++#: wp-admin/import/dotclear.php:126 ++msgid "" ++"Howdy! This importer allows you to extract posts from a DotClear database " ++"into your blog. Mileage may vary." ++msgstr "" ++"Aquest importador et permetrà extreure les entrades d'una base de dades " ++"DotClear i afegir-les al teu blog. Els resultats poden variar." ++ ++#: wp-admin/import/dotclear.php:127 ++msgid "Your DotClear Configuration settings are as follows:" ++msgstr "La teva configuració de DotClear és la segÃŒent:" ++ ++#: wp-admin/import/dotclear.php:131 ++msgid "Import Categories" ++msgstr "Importar categories" ++ ++#: wp-admin/import/dotclear.php:204 wp-admin/import/textpattern.php:156 ++msgid "Importing Categories..." ++msgstr "Important categories..." ++ ++#: wp-admin/import/dotclear.php:228 wp-admin/import/textpattern.php:180 ++#, php-format ++msgid "Done! %1$s category imported." ++msgid_plural "Done! %1$s categories imported." ++msgstr[0] "Fet!%1$s categoria importada." ++msgstr[1] "Fet!%1$s categories importades." ++ ++#: wp-admin/import/dotclear.php:231 wp-admin/import/textpattern.php:183 ++msgid "No Categories to Import!" ++msgstr "No hi ha categories per importar!" ++ ++#: wp-admin/import/dotclear.php:245 wp-admin/import/textpattern.php:197 ++msgid "Importing Users..." ++msgstr "Important usuaris..." ++ ++#: wp-admin/import/dotclear.php:302 wp-admin/import/textpattern.php:252 ++#, php-format ++msgid "Done! %1$s users imported." ++msgstr "Fet!%1$s usuaris importats." ++ ++#: wp-admin/import/dotclear.php:306 wp-admin/import/textpattern.php:256 ++msgid "No Users to Import!" ++msgstr "No hi ha usuaris per importar!" ++ ++#: wp-admin/import/dotclear.php:322 wp-admin/import/textpattern.php:272 ++msgid "Importing Posts..." ++msgstr "Important entrades..." ++ ++#: wp-admin/import/dotclear.php:405 wp-admin/import/textpattern.php:346 ++#, php-format ++msgid "Done! %1$s posts imported." ++msgstr "Fet!%1$s entrades importades." ++ ++#: wp-admin/import/dotclear.php:420 wp-admin/import/textpattern.php:361 ++msgid "Importing Comments..." ++msgstr "Important comentaris..." ++ ++#: wp-admin/import/dotclear.php:475 wp-admin/import/textpattern.php:413 ++#, php-format ++msgid "Done! %1$s comments imported." ++msgstr "Fet!%1$s comentaris importats." ++ ++#: wp-admin/import/dotclear.php:478 wp-admin/import/textpattern.php:416 ++msgid "No Comments to Import!" ++msgstr "No hi ha comentaris per importar!" ++ ++#: wp-admin/import/dotclear.php:491 wp-admin/import/textpattern.php:429 ++msgid "Importing Links..." ++msgstr "Important enllaços..." ++ ++#: wp-admin/import/dotclear.php:529 ++#, php-format ++msgid "Done! %s link or link category imported." ++msgid_plural "Done! %s links or link categories imported." ++msgstr[0] "Fet! S'ha importat %s enllaç o categoria d'enllaços." ++msgstr[1] "Fet! S'han importat %s enllaços o categories d'enllaços." ++ ++#: wp-admin/import/dotclear.php:533 wp-admin/import/textpattern.php:469 ++msgid "No Links to Import!" ++msgstr "No hi ha enllaços per importar!" ++ ++#: wp-admin/import/dotclear.php:548 wp-admin/import/textpattern.php:484 ++msgid "Import Users" ++msgstr "Importar usuaris" ++ ++#: wp-admin/import/dotclear.php:561 wp-admin/import/textpattern.php:497 ++msgid "Import Posts" ++msgstr "Importar entrades" ++ ++#: wp-admin/import/dotclear.php:575 wp-admin/import/textpattern.php:511 ++msgid "Import Comments" ++msgstr "Importar comentaris" ++ ++#: wp-admin/import/dotclear.php:600 wp-admin/import/textpattern.php:536 ++msgid "Finish" ++msgstr "Acabar" ++ ++#: wp-admin/import/dotclear.php:624 ++msgid "" ++"Welcome to WordPress. We hope (and expect!) that you will find this " ++"platform incredibly rewarding! As a new WordPress user coming from " ++"DotClear, there are some things that we would like to point out. Hopefully, " ++"they will help your transition go as smoothly as possible." ++msgstr "" ++"Benvingut al WordPress. Desitgem (i esperem) que aquesta plataforma et " ++"resulti molt gratificant. Al ser un nou usuari del WordPress provinent de " ++"DotClear, hi ha algunes coses que cal aclarir. Confiem que faran la teva " ++"transició el més suau possible." ++ ++#: wp-admin/import/dotclear.php:625 wp-admin/import/textpattern.php:560 ++#: wp-admin/menu.php:29 wp-admin/users.php:8 ++msgid "Users" ++msgstr "Usuaris" ++ ++#: wp-admin/import/dotclear.php:626 ++#, php-format ++msgid "" ++"You have already setup WordPress and have been assigned an administrative " ++"login and password. Forget it. You didn't have that login in DotClear, why " ++"should you have it here? Instead we have taken care to import all of your " ++"users into our system. Unfortunately there is one downside. Because both " ++"WordPress and DotClear uses a strong encryption hash with passwords, it is " ++"impossible to decrypt it and we are forced to assign temporary passwords to " ++"all your users. Every user has the same username, but their " ++"passwords are reset to password123. So Login " ++"and change it." ++msgstr "" ++"Ja tens el WordPress instal·lat i assignat un nom d'usuari i una " ++"contrasenya. Oblida'ls. Aquesta no era la teva identificació en DotClear, " ++"per quÚ hauries de tenir-la aquí? En comptes d'això, ens em ocupat " ++"d'importar al nostre sistema tots els teus usuaris. Tot i això, hi ha una " ++"complicació. Tan el WordPress com DotClear fan servir un hash d'encriptació " ++"molt robust, el que fa impossible desencriptar-lo i ens obliga a assignar " ++"contrasenyes temporals a tots els teus usuaris. Cada usuari manté el " ++"seu propi nom d'usuari, però les seves contrasenyes s'han posat com " ++"password123. Així que entra i canvia-les." ++ ++#: wp-admin/import/dotclear.php:627 wp-admin/import/textpattern.php:562 ++msgid "Preserving Authors" ++msgstr "Mantenir els autors" ++ ++#: wp-admin/import/dotclear.php:628 wp-admin/import/textpattern.php:563 ++msgid "" ++"Secondly, we have attempted to preserve post authors. If you are the only " ++"author or contributor to your blog, then you are safe. In most cases, we " ++"are successful in this preservation endeavor. However, if we cannot " ++"ascertain the name of the writer due to discrepancies between database " ++"tables, we assign it to you, the administrative user." ++msgstr "" ++"En segon lloc, hem intentat conservar els autors de les entrades. Si tu ets " ++"l'únic autor o col·laborador del teu blog, això no t'afecta. En la major " ++"part dels casos, tenim Úxit en aquesta tasca de conservació. No obstant, en " ++"cas de dubtes sobre el nom de l'escriptor degudes a discrepàncies entre " ++"taules de la base de dades, t'assignarem l'entrada a tu, l'usuari " ++"administratiu." ++ ++#: wp-admin/import/dotclear.php:629 wp-admin/import/textpattern.php:564 ++msgid "Textile" ++msgstr "Textile" ++ ++#: wp-admin/import/dotclear.php:630 ++msgid "" ++"Also, since you're coming from DotClear, you probably have been using " ++"Textile to format your comments and posts. If this is the case, we " ++"recommend downloading and installing Textile for WordPress. Trust " ++"me... You'll want it." ++msgstr "" ++"A més, donat que véns de DotClear, probablement feies servir Textile per " ++"donar format a les teves entrades i comentaris. Si aquest és el cas, et " ++"recomanem descarregar i instal·lar Textile per al WordPress. " ++"Voldràs fer-ho, segur!" ++ ++#: wp-admin/import/dotclear.php:631 wp-admin/import/textpattern.php:566 ++msgid "WordPress Resources" ++msgstr "Recursos per al WordPress" ++ ++#: wp-admin/import/dotclear.php:632 wp-admin/import/textpattern.php:567 ++msgid "" ++"Finally, there are numerous WordPress resources around the internet. Some " ++"of them are:" ++msgstr "" ++"Finalment, hi ha nombrosos recursos per al WordPress a internet. Alguns " ++"d'ells són:" ++ ++#: wp-admin/import/dotclear.php:634 wp-admin/import/textpattern.php:569 ++msgid "The official WordPress site" ++msgstr "" ++"El lloc oficial del WordPress (Català)" ++ ++#: wp-admin/import/dotclear.php:635 wp-admin/import/textpattern.php:570 ++msgid "The WordPress support forums" ++msgstr "Fòrums de suport de WordPress" ++ ++#: wp-admin/import/dotclear.php:636 wp-admin/import/textpattern.php:571 ++msgid "" ++"The Codex (In other words, the " ++"WordPress Bible)" ++msgstr "" ++" El Codex (dit d'una altra manera, la " ++"bíblia del WordPress)" ++ ++#: wp-admin/import/dotclear.php:638 ++#, php-format ++msgid "That's it! What are you waiting for? Go login!" ++msgstr "Ja està! A quÚ esperes? Entra!" ++ ++#: wp-admin/import/dotclear.php:644 ++msgid "DotClear Database User:" ++msgstr "Usuari de la base de dades de DotClear:" ++ ++#: wp-admin/import/dotclear.php:645 ++msgid "DotClear Database Password:" ++msgstr "Contrasenya de la base de dades de DotClear:" ++ ++#: wp-admin/import/dotclear.php:646 ++msgid "DotClear Database Name:" ++msgstr "Nom de la base de dades de DotClear:" ++ ++#: wp-admin/import/dotclear.php:647 ++msgid "DotClear Database Host:" ++msgstr "Host de la base de dades de DotClear:" ++ ++#: wp-admin/import/dotclear.php:648 ++msgid "DotClear Table prefix:" ++msgstr "Prefix de taula de DotClear:" ++ ++#: wp-admin/import/dotclear.php:649 ++msgid "Originating character set:" ++msgstr "Joc de caràcters original:" ++ ++#: wp-admin/import/dotclear.php:745 ++msgid "DotClear" ++msgstr "DotClear" ++ ++#: wp-admin/import/dotclear.php:745 ++msgid "Import categories, users, posts, comments, and links from a DotClear blog." ++msgstr "" ++"Importar categories, usuaris, entrades, comentaris i enllaços des d'un blog " ++"DotClear." ++ ++#: wp-admin/import/greymatter.php:9 ++msgid "Import GreyMatter" ++msgstr "Importar GreyMatter" ++ ++#: wp-admin/import/greymatter.php:19 ++msgid "This is a basic GreyMatter to WordPress import script." ++msgstr "Això és un script bàsic per importar GreyMatter cap a WordPress." ++ ++#: wp-admin/import/greymatter.php:20 ++msgid "What it does:" ++msgstr "QuÚ és el que fa:" ++ ++#: wp-admin/import/greymatter.php:22 ++msgid "" ++"Parses gm-authors.cgi to import (new) authors. Everyone is imported at level " ++"1." ++msgstr "" ++"Analitza gm-authors.cgi per a importar autors (nous). Tothom és importat a " ++"nivell 1." ++ ++#: wp-admin/import/greymatter.php:23 ++msgid "" ++"Parses the entries cgi files to import posts, comments, and karma on posts " ++"(although karma is not used on WordPress yet).
    If authors are found not " ++"to be in gm-authors.cgi, imports them at level 0." ++msgstr "" ++"Analitza els fitxers cgi d'entrades per a importar entrades, comentaris i " ++"karma en les entrades (tot i que karma per ara no s'usa a WordPress).
    Si es troben autors presents a gm-authors.cgi, són importats a nivell 0." ++ ++#: wp-admin/import/greymatter.php:24 ++msgid "" ++"Detects duplicate entries or comments. If you don't import everything the " ++"first time, or this import should fail in the middle, duplicate entries will " ++"not be made when you try again." ++msgstr "" ++"Detecta entrades o comentaris duplicats. Si no ho importeu tot el primer cop " ++"o el procés d'importació s'estronca, no hi haurà duplicats si ho torneu a " ++"importar." ++ ++#: wp-admin/import/greymatter.php:26 ++msgid "What it does not:" ++msgstr "QuÚ és el que no fa:" ++ ++#: wp-admin/import/greymatter.php:28 ++msgid "" ++"Parse gm-counter.cgi, gm-banlist.cgi, gm-cplog.cgi (you can make a CP log " ++"hack if you really feel like it, but I question the need of a CP log)." ++msgstr "" ++"Analitzar gm-counter.cgi, gm-banlist.cgi, gm-cplog.cgi (pots fer un hack a " ++"CP log si realment ho vols, però jo qÌestiono la necessitat d'un CP log)." ++ ++#: wp-admin/import/greymatter.php:29 ++msgid "Import gm-templates." ++msgstr "Importar plantilles de GM." ++ ++#: wp-admin/import/greymatter.php:30 ++msgid "Doesn't keep entries on top." ++msgstr "No manté les entrades a dalt de tot." ++ ++#: wp-admin/import/greymatter.php:38 ++msgid "Second step: GreyMatter details:" ++msgstr "Segon pas: Detalls de GreyMatter:" ++ ++#: wp-admin/import/greymatter.php:41 ++msgid "Path to GM files:" ++msgstr "Directori dels fitxers GM:" ++ ++#: wp-admin/import/greymatter.php:45 ++msgid "Path to GM entries:" ++msgstr "Directori de les entrades GM:" ++ ++#: wp-admin/import/greymatter.php:49 ++msgid "Last entry's number:" ++msgstr "Número de l'última entrada:" ++ ++#: wp-admin/import/greymatter.php:51 ++msgid "" ++"This importer will search for files 00000001.cgi to 000-whatever.cgi,
    so you need to enter the number of the last GM post here.
    (if you " ++"don't know that number, just log into your FTP and look it out
    in the " ++"entries' folder)" ++msgstr "" ++"Aquesta importació buscarà fitxers entre 00000001.cgi i 000-XX.cgi,
    per " ++"això has de donar el número de la darrera entrada a GM.
    (Si no en saps " ++"el número, simplement entra al teu FTP i mira-ho
    en el directori " ++"d'entrades)" ++ ++#: wp-admin/import/greymatter.php:55 ++msgid "Start Importing" ++msgstr "Començar a importar" ++ ++#: wp-admin/import/greymatter.php:88 ++msgid "Wrong path, the path to the GM entries does not exist on the server" ++msgstr "" ++"El directori és incorrecte, el directori d'entrades de GM no existeix en el " ++"servidor" ++ ++#: wp-admin/import/greymatter.php:91 ++msgid "Wrong path, the path to the GM files does not exist on the server" ++msgstr "" ++"El directori és incorrecte, el directori de fitxers de GM no existeix en el " ++"servidor" ++ ++#: wp-admin/import/greymatter.php:97 ++msgid "The importer is running..." ++msgstr "La importació és en procés..." ++ ++#: wp-admin/import/greymatter.php:99 ++msgid "importing users..." ++msgstr "important usuaris..." ++ ++#: wp-admin/import/greymatter.php:123 ++#, php-format ++msgid "user %s" ++msgstr "usuari %s" ++ ++#: wp-admin/import/greymatter.php:123 ++msgid "Already exists" ++msgstr "Ja existeix" ++ ++#: wp-admin/import/greymatter.php:132 ++#, php-format ++msgid "user %s..." ++msgstr "usuari %s..." ++ ++#: wp-admin/import/greymatter.php:132 wp-admin/import/greymatter.php:135 ++#: wp-admin/import/greymatter.php:280 wp-admin/import/greymatter.php:285 ++msgid "Done" ++msgstr "Fet" ++ ++#: wp-admin/import/greymatter.php:136 ++msgid "importing posts, comments, and karma..." ++msgstr "important entrades, comentaris i karma..." ++ ++#: wp-admin/import/greymatter.php:172 ++#, php-format ++msgid "entry # %s : %s : by %s" ++msgstr "entrada # %s : %s : per %s" ++ ++#: wp-admin/import/greymatter.php:200 ++msgid "(already exists)" ++msgstr "(ja existeix)" ++ ++#: wp-admin/import/greymatter.php:222 ++#, php-format ++msgid "registered deleted user %s at level 0 " ++msgstr "usuari registrat esborrat %s a nivell 0 " ++ ++#: wp-admin/import/greymatter.php:272 ++#, php-format ++msgid "imported %s comment" ++msgid_plural "imported %s comments" ++msgstr[0] "importat %s comentari" ++msgstr[1] "importats %s comentaris" ++ ++#: wp-admin/import/greymatter.php:277 ++#, php-format ++msgid "ignored %s pre-existing comment" ++msgid_plural "ignored %s pre-existing comments" ++msgstr[0] "ignorat %s comentari pre-existent" ++msgstr[1] "ignorats %s comentaris pre-existents" ++ ++#: wp-admin/import/greymatter.php:287 ++msgid "Completed GreyMatter import!" ++msgstr "Importació de GreyMatter completa!" ++ ++#: wp-admin/import/greymatter.php:319 ++msgid "GreyMatter" ++msgstr "GreyMatter" ++ ++#: wp-admin/import/greymatter.php:319 ++msgid "Import users, posts, and comments from a Greymatter blog." ++msgstr "Importar usuaris, entrades i comentaris des d'un blog de GreyMatter." ++ ++#: wp-admin/import/jkw.php:7 ++msgid "Import Jerome’s Keywords" ++msgstr "Importar Jerome's Keywords" ++ ++#: wp-admin/import/jkw.php:17 ++msgid "Howdy! This imports tags from Jerome’s Keywords into WordPress tags." ++msgstr "Aquí s'importen etiquetes de Jerome's Keywords cap a etiquetes de WordPress." ++ ++#: wp-admin/import/jkw.php:18 ++msgid "This is suitable for Jerome’s Keywords version 1.x and 2.0a." ++msgstr "Suporta les versions 1.x i 2.0a de Jerome's Keywords." ++ ++#: wp-admin/import/jkw.php:19 ++msgid "All existing Jerome’s Keywords will be removed after import." ++msgstr "" ++"Totes les paraules clau de Jerome's Keywords existents seran eliminades " ++"després d'importar." ++ ++#: wp-admin/import/jkw.php:23 ++msgid "Import Version 1.x" ++msgstr "Importar versió 1.x" ++ ++#: wp-admin/import/jkw.php:27 ++msgid "Import Version 2.0a" ++msgstr "Importar versió 2.0a" ++ ++#: wp-admin/import/jkw.php:78 wp-admin/import/jkw.php:118 ++msgid "Reading Jerome’s Keywords Tags…" ++msgstr "Llegint etiquetes de Jerome's Keywords
" ++ ++#: wp-admin/import/jkw.php:128 wp-admin/import/utw.php:87 ++#, php-format ++msgid "Done! %s tag were read." ++msgid_plural "Done! %s tags were read." ++msgstr[0] "Fet! Llegida %s etiqueta." ++msgstr[1] "Fet! Llegides %s etiquetes." ++ ++#: wp-admin/import/jkw.php:176 ++msgid "Import Jerome’s Keywords into WordPress tags." ++msgstr "Importar etiquetes de Jerome's Keywords cap a etiquetes de WordPress." ++ ++#: wp-admin/import/livejournal.php:9 ++msgid "Import LiveJournal" ++msgstr "Importar LiveJournal" ++ ++#: wp-admin/import/livejournal.php:24 ++msgid "" ++"Howdy! Upload your LiveJournal XML export file and we’ll import the " ++"posts into this blog." ++msgstr "" ++"Carrega el fitxer XML exportat de LiveJournal i n'importarem les entrades en " ++"aquest blog." ++ ++#: wp-admin/import/livejournal.php:25 ++msgid "Choose a LiveJournal XML file to upload, then click Upload file and import." ++msgstr "" ++"Escull el fitxer XML de LiveJournal per a ser carregat i fes clic a Pujar " ++"fitxer i importar." ++ ++#: wp-admin/import/livejournal.php:122 wp-admin/import/mt.php:250 ++#: wp-admin/import/wordpress.php:493 ++#, php-format ++msgid "(%s comment)" ++msgid_plural "(%s comments)" ++msgstr[0] "(%s comentari)" ++msgstr[1] "(%s comentaris)" ++ ++#: wp-admin/import/livejournal.php:178 ++msgid "LiveJournal" ++msgstr "LiveJournal" ++ ++#: wp-admin/import/livejournal.php:178 ++msgid "Import posts from a LiveJournal XML export file." ++msgstr "Importar entrades des d'un fitxer XML exportat de LiveJournal." ++ ++#: wp-admin/import/mt.php:14 ++msgid "Import Movable Type or TypePad" ++msgstr "Importar de Movable Type o TypePad" ++ ++#: wp-admin/import/mt.php:25 ++msgid "" ++"Howdy! We’re about to begin importing all of your Movable Type or " ++"Typepad entries into WordPress. To begin, either choose a file to upload and " ++"click \"Upload file and import,\" or use FTP to upload your MT export file " ++"as mt-export.txt in your /wp-content/ directory " ++"and then click \"Import mt-export.txt\"" ++msgstr "" ++"Començarem el procés per a importar totes les entrades del teu Movable Type " ++"o Typepad al WordPress. Per començar, selecciona un arxiu per pujar i clica " ++"a \"Pujar fixer i importar\", o bé usa FTP per a pujar el teu fitxer MT per " ++"exportar com a mt-export.txt al teu directori /wp-content/" ++" i després clica a \"Importar mt-export.txt\"" ++ ++#: wp-admin/import/mt.php:33 ++msgid "Or use mt-export.txt in your /wp-content/ directory" ++msgstr "" ++"O bé usa mt-export.txt en el teu directori /wp-content/" ++ ++#: wp-admin/import/mt.php:35 ++msgid "Import mt-export.txt" ++msgstr "Importar mt-export.txt" ++ ++#: wp-admin/import/mt.php:38 ++msgid "" ++"The importer is smart enough not to import duplicates, so you can run this " ++"multiple times without worry if—for whatever reason—it doesn't " ++"finish. If you get an out of memory error try splitting up " ++"the import file into pieces." ++msgstr "" ++"L'importador és suficientment intel·ligent com per no importar duplicats, de " ++"manera que pots executar-lo diverses vegades sense por si —per qualsevol raó" ++"— no acabés. Si obtens un error de memòria insuficient, " ++"prova a separar l'arxiu en diversos fragments." ++ ++#: wp-admin/import/mt.php:48 wp-admin/import/wordpress.php:232 ++#: wp-admin/includes/template.php:807 wp-admin/options-reading.php:30 ++#: wp-admin/options-reading.php:31 ++msgid "- Select -" ++msgstr "- Seleccionar -" ++ ++#: wp-admin/import/mt.php:155 wp-admin/import/wordpress.php:181 ++msgid "Assign Authors" ++msgstr "Assignar autors" ++ ++#: wp-admin/import/mt.php:156 ++msgid "" ++"To make it easier for you to edit and save the imported posts and drafts, " ++"you may want to change the name of the author of the posts. For example, you " ++"may want to import all the entries as admin's entries." ++msgstr "" ++"Per a editar i desar més facilment les entrades i esborranys importats, " ++"potser vulguis canviar el nom de l'autor de les entrades. Per exemple, " ++"potser vulguis que totes pertanyin a admin." ++ ++#: wp-admin/import/mt.php:157 ++msgid "" ++"Below, you can see the names of the authors of the MovableType posts in " ++"italics. For each of these names, you can either pick an author in " ++"your WordPress installation from the menu, or enter a name for the author in " ++"the textbox." ++msgstr "" ++"Aquí sota pots veure els noms dels autors de les entrades de Movable Type en " ++"cursiva. Per cadascun d'ells, pots seleccionar un autor del " ++"WordPress des del menú, o definir un nom nou al camp de text." ++ ++#: wp-admin/import/mt.php:158 wp-admin/import/wordpress.php:185 ++msgid "" ++"If a new user is created by WordPress, a password will be randomly " ++"generated. Manually change the user's details if necessary." ++msgstr "" ++"Si el WordPress crea un nou usuari, la contrasenya predeterminada serà " ++"generada automàticament. Canvia manualment els detalls dels usuaris si cal." ++ ++#: wp-admin/import/mt.php:169 ++msgid "Current author:" ++msgstr "Autor actual:" ++ ++#: wp-admin/import/mt.php:169 wp-admin/import/wordpress.php:221 ++#, php-format ++msgid "Create user %1$s or map to existing" ++msgstr "Crear usuari %1$s o fer-lo correspondre amb un d'existent" ++ ++#: wp-admin/import/mt.php:174 wp-admin/import/wordpress.php:213 ++#: wp-includes/post-template.php:527 ++msgid "Submit" ++msgstr "Enviar" ++ ++#: wp-admin/import/mt.php:184 ++msgid "mt-export.txt does not exist" ++msgstr "mt-export.txt no existeix" ++ ++#: wp-admin/import/mt.php:190 ++msgid "Sorry, there has been an error" ++msgstr "Ho sento, s'ha produït un error" ++ ++#: wp-admin/import/mt.php:231 ++#, php-format ++msgid "
    Adding tags %s..." ++msgstr "
    Afegint etiquetes %s..." ++ ++#: wp-admin/import/mt.php:267 ++#, php-format ++msgid "(%s ping)" ++msgid_plural "(%s pings)" ++msgstr[0] "(%s ping)" ++msgstr[1] "(%s pings)" ++ ++#: wp-admin/import/mt.php:468 ++msgid "Movable Type and TypePad" ++msgstr "Movable Type i TypePad" ++ ++#: wp-admin/import/mt.php:468 ++msgid "Import posts and comments from a Movable Type or Typepad blog." ++msgstr "Importar les entrades i comentaris d'un blog de Movable Type o Typepad." ++ ++#: wp-admin/import.php:10 ++msgid "" ++"If you have posts or comments in another system, WordPress can import those " ++"into this blog. To get started, choose a system to import from below:" ++msgstr "" ++"Si tens entrades o comentaris en un altre sistema, el WordPress pot importar-" ++"los al teu blog actual. Per a començar, tria el sistema des del qual els " ++"importaràs:" ++ ++#: wp-admin/import.php:32 ++msgid "No importers are available." ++msgstr "No hi ha importadors disponibles." ++ ++#: wp-admin/import/rss.php:10 ++msgid "Import RSS" ++msgstr "Importar RSS" ++ ++#: wp-admin/import/rss.php:25 ++msgid "" ++"Howdy! This importer allows you to extract posts from an RSS 2.0 file into " ++"your blog. This is useful if you want to import your posts from a system " ++"that is not handled by a custom import tool. Pick an RSS file to upload and " ++"click Import." ++msgstr "" ++"Aquest importador et permetrà extreure les entrades de qualsevol arxiu RSS " ++"2.0 i afegir-les al teu blog. Això és útil si vols importar les entrades de " ++"qualsevol sistema que no s'ajusti a les eines d'importació específiques " ++"disponibles. Tria un arxiu RSS 2.0 per pujar-lo i clica a Importar." ++ ++#: wp-admin/import/rss.php:105 ++msgid "Importing post..." ++msgstr "Important entrada..." ++ ++#: wp-admin/import/rss.php:110 ++msgid "Post already imported" ++msgstr "L'entrada ja s'havia importat" ++ ++#: wp-admin/import/rss.php:122 ++msgid "Done !" ++msgstr "Fet!" ++ ++#: wp-admin/import/rss.php:181 wp-admin/includes/dashboard.php:225 ++#: wp-includes/widgets.php:1304 ++msgid "RSS" ++msgstr "RSS" ++ ++#: wp-admin/import/rss.php:181 ++msgid "Import posts from an RSS feed." ++msgstr "Importar entrades d'un fil de RSS." ++ ++#: wp-admin/import/stp.php:5 ++msgid "Import Simple Tagging" ++msgstr "Importar Simple Tagging" ++ ++#: wp-admin/import/stp.php:15 ++msgid "Howdy! This imports tags from Simple Tagging 1.6.2 into WordPress tags." ++msgstr "" ++"Aquí s'importen etiquetes de Simple Tagging 1.6.2 cap a etiquetes de " ++"WordPress." ++ ++#: wp-admin/import/stp.php:16 ++msgid "" ++"This has not been tested on any other versions of Simple Tagging. Mileage " ++"may vary." ++msgstr "" ++"No s'ha provat en versions anteriors de Simple Tagging. Els resultats poden " ++"variar." ++ ++#: wp-admin/import/stp.php:17 ++msgid "" ++"To accommodate larger databases for those tag-crazy authors out there, we " ++"have made this into an easy 4-step program to help you kick that nasty " ++"Simple Tagging habit. Just keep clicking along and we will let you know when " ++"you are in the clear!" ++msgstr "" ++"Per acollir grans bases de dades per a aquests sonats per les etiquetes que " ++"hi ha pel món, hem preparat un programa fàcil en 4 passes per facilitar-te " ++"deixar córrer aquest mal costum de Simple Tagging. Simplement vés clicant i " ++"t'ho farem saber quan te n'hagis sortit!" ++ ++#: wp-admin/import/stp.php:21 wp-admin/import/utw.php:22 ++msgid "Step 1" ++msgstr "Primer pas" ++ ++#: wp-admin/import/stp.php:58 ++msgid "Reading STP Post Tags…" ++msgstr "Llegint etiquetes de STP de les entrades
" ++ ++#: wp-admin/import/stp.php:65 wp-admin/import/utw.php:124 ++msgid "No posts were found to have tags!" ++msgstr "No s'ha trobat cap entrada amb etiquetes!" ++ ++#: wp-admin/import/stp.php:76 wp-admin/import/utw.php:139 ++#, php-format ++msgid "Done! %s tag to post relationships were read." ++msgid_plural "Done! %s tags to post relationships were read." ++msgstr[0] "Fet! Llegida %s relació etiqueta/entrada." ++msgstr[1] "Fet! Llegides %s relacions etiqueta/entrada." ++ ++#: wp-admin/import/stp.php:81 wp-admin/import/utw.php:109 ++msgid "Step 2" ++msgstr "Segon pas" ++ ++#: wp-admin/import/stp.php:89 wp-admin/import/utw.php:155 ++msgid "Adding Tags to Posts…" ++msgstr "Afegint etiquetes a les entrades
" ++ ++#: wp-admin/import/stp.php:94 ++#, php-format ++msgid "Done! %s tag was added!" ++msgid_plural "Done! %s tags were added!" ++msgstr[0] "Fet! Afegida %s etiqueta!" ++msgstr[1] "Fet! Afegides %s etiquetes!" ++ ++#: wp-admin/import/stp.php:97 wp-admin/import/utw.php:145 ++msgid "Step 3" ++msgstr "Tercer pas" ++ ++#: wp-admin/import/stp.php:140 ++msgid "OK, so we lied about this being a 4-step program! You’re done!" ++msgstr "Ok, això de les 4 passes era una broma! Ja estàs!" ++ ++#: wp-admin/import/stp.php:141 wp-admin/import/utw.php:254 ++msgid "Now wasn’t that easy?" ++msgstr "Oi que ha estat fàcil?" ++ ++#: wp-admin/import/stp.php:154 ++msgid "Import Simple Tagging tags into WordPress tags." ++msgstr "Importar etiquetes de Simple Tagging cap a etiquetes de WordPress." ++ ++#: wp-admin/import/textpattern.php:32 ++msgid "Import Textpattern" ++msgstr "Importar Textpattern" ++ ++#: wp-admin/import/textpattern.php:43 ++msgid "" ++"Howdy! This imports categories, users, posts, comments, and links from any " ++"Textpattern 4.0.2+ into this blog." ++msgstr "" ++"Això importa categories, usuaris, entrades, comentaris i enllaços des de " ++"Textpattern 4.0.2+ cap a aquest blog." ++ ++#: wp-admin/import/textpattern.php:44 ++msgid "" ++"This has not been tested on previous versions of Textpattern. Mileage may " ++"vary." ++msgstr "" ++"No s'ha provat en versions anteriors de Textpattern. Els resultats poden " ++"variar." ++ ++#: wp-admin/import/textpattern.php:45 ++msgid "Your Textpattern Configuration settings are as follows:" ++msgstr "La teva configuració de Textpattern és la segÃŒent:" ++ ++#: wp-admin/import/textpattern.php:465 ++#, php-format ++msgid "Done! %s link imported" ++msgid_plural "Done! %s links imported" ++msgstr[0] "Fet!%s enllaç importat" ++msgstr[1] "Fet!%s enllaços importats" ++ ++#: wp-admin/import/textpattern.php:559 ++msgid "" ++"Welcome to WordPress. We hope (and expect!) that you will find this " ++"platform incredibly rewarding! As a new WordPress user coming from " ++"Textpattern, there are some things that we would like to point out. " ++"Hopefully, they will help your transition go as smoothly as possible." ++msgstr "" ++"Benvingut al WordPress. Desitgem (i esperem) que aquesta plataforma et " ++"resulti molt gratificant. Essent un nou usuari del WordPress provinent de " ++"Textpattern, hi ha algunes coses que cal aclarir. Confiem en que faran la " ++"teva transició el més suau possible." ++ ++#: wp-admin/import/textpattern.php:561 ++#, php-format ++msgid "" ++"You have already setup WordPress and have been assigned an administrative " ++"login and password. Forget it. You didn’t have that login in " ++"Textpattern, why should you have it here? Instead we have taken care to " ++"import all of your users into our system. Unfortunately there is one " ++"downside. Because both WordPress and Textpattern uses a strong encryption " ++"hash with passwords, it is impossible to decrypt it and we are forced to " ++"assign temporary passwords to all your users. Every user has the " ++"same username, but their passwords are reset to password123. So Login and change it." ++msgstr "" ++"Ja tens el WordPress instal·lat i assignat un nom d'usuari i una " ++"contrasenya. Oblida-ho. Aquesta no era la teva identificació en Textpattern, " ++"per quÚ hauries de tenir-la aquí? En comptes d'això, ens hem ocupat " ++"d'importar al nostre sistema tots els teus usuaris. Tot i això, hi ha una " ++"complicació. Tan el WordPress com Textpattern fan servir un hash " ++"d'encriptació molt robust, el que fa impossible desencriptar-lo i ens obliga " ++"a assignar contrasenyes temporals a tots els teus usuaris. Cada " ++"usuari manté el seu nom d'usuari, però les seves contrasenyes s'han posat " ++"com password123. Així que entra i canvia-les." ++ ++#: wp-admin/import/textpattern.php:565 ++msgid "" ++"Also, since you’re coming from Textpattern, you probably have been " ++"using Textile to format your comments and posts. If this is the case, we " ++"recommend downloading and installing Textile for WordPress. Trust " ++"me... You’ll want it." ++msgstr "" ++"A més, donat que véns de Textpattern, probablement feies servir Textile per " ++"donar format a les teves entrades i comentaris. Si aquest és el cas, et " ++"recomanem descarregar i instal·lar Textile per al WordPress. " ++"Voldràs fer-ho, segur!" ++ ++#: wp-admin/import/textpattern.php:573 ++#, php-format ++msgid "That’s it! What are you waiting for? Go login!" ++msgstr "Ja està! A quÚ esperes? Entra!" ++ ++#: wp-admin/import/textpattern.php:579 ++msgid "Textpattern Database User:" ++msgstr "Usuari de la base de dades de Textpattern:" ++ ++#: wp-admin/import/textpattern.php:580 ++msgid "Textpattern Database Password:" ++msgstr "Contrasenya de la base de dades de Textpattern:" ++ ++#: wp-admin/import/textpattern.php:581 ++msgid "Textpattern Database Name:" ++msgstr "Nom de la base de dades de Textpattern:" ++ ++#: wp-admin/import/textpattern.php:582 ++msgid "Textpattern Database Host:" ++msgstr "Host de la base de dades de Textpattern:" ++ ++#: wp-admin/import/textpattern.php:583 ++msgid "Textpattern Table prefix (if any):" ++msgstr "Prefix de taula de Textpattern (si n'hi ha):" ++ ++#: wp-admin/import/textpattern.php:673 ++msgid "Textpattern" ++msgstr "Textpattern" ++ ++#: wp-admin/import/textpattern.php:673 ++msgid "Import categories, users, posts, comments, and links from a Textpattern blog." ++msgstr "" ++"Importar categories, usuaris, entrades, comentaris i enllaços d'un blog de " ++"Textpattern." ++ ++#: wp-admin/import/utw.php:7 ++msgid "Import Ultimate Tag Warrior" ++msgstr "Importar Ultimate Tag Warrior" ++ ++#: wp-admin/import/utw.php:17 ++msgid "Howdy! This imports tags from Ultimate Tag Warrior 3 into WordPress tags." ++msgstr "" ++"Aquí s'importen etiquetes d'Ultimate Tag Warrior 3 cap a etiquetes de " ++"WordPress." ++ ++#: wp-admin/import/utw.php:18 ++msgid "" ++"This has not been tested on any other versions of Ultimate Tag Warrior. " ++"Mileage may vary." ++msgstr "" ++"No s'ha provat en versions anteriors d'Ultimate Tag Warrior. Els resultats " ++"poden variar." ++ ++#: wp-admin/import/utw.php:19 ++msgid "" ++"To accommodate larger databases for those tag-crazy authors out there, we " ++"have made this into an easy 5-step program to help you kick that nasty UTW " ++"habit. Just keep clicking along and we will let you know when you are in the " ++"clear!" ++msgstr "" ++"Per acollir grans bases de dades per a aquests sonats per les etiquetes que " ++"hi ha pel món, hem preparat un programa fàcil en 5 passes per facilitar-vos " ++"deixar córrer aquest mal costum de UTW. Simplement vés clicant i t'ho farem " ++"saber quan te n'hagis sortit!" ++ ++#: wp-admin/import/utw.php:66 ++msgid "Reading UTW Tags…" ++msgstr "Llegint etiquetes de UTW 
" ++ ++#: wp-admin/import/utw.php:88 ++msgid "The following tags were found:" ++msgstr "S'han trobat les segÃŒents etiquetes:" ++ ++#: wp-admin/import/utw.php:102 ++msgid "" ++"If you don’t want to import any of these tags, you should delete them " ++"from the UTW tag management page and then re-run this import." ++msgstr "" ++"Si no vols importar algunes d'aquestes etiquetes, hauries d'esborrar-les des " ++"de la pàgina d'administració de UTW i tornar a executar aquesta importació." ++ ++#: wp-admin/import/utw.php:117 ++msgid "Reading UTW Post Tags…" ++msgstr "Llegint etiquetes de UTW de les entrades
" ++ ++#: wp-admin/import/utw.php:160 ++#, php-format ++msgid "Done! %s tag were added!" ++msgid_plural "Done! %s tags were added!" ++msgstr[0] "Fet! Afegida %s etiqueta!" ++msgstr[1] "Fet! Afegides %s etiquetes!" ++ ++#: wp-admin/import/utw.php:164 ++msgid "Step 4" ++msgstr "Quart pas" ++ ++#: wp-admin/import/utw.php:252 ++msgid "OK, so we lied about this being a 5-step program! You’re done!" ++msgstr "Ok, això de les 5 passes era una broma! Ja estàs!" ++ ++#: wp-admin/import/utw.php:274 ++msgid "Import Ultimate Tag Warrior tags into WordPress tags." ++msgstr "Importar etiquetes d'Ultimate Tag Warrior cap a etiquetes de WordPress." ++ ++#: wp-admin/import/wordpress.php:23 ++msgid "Import WordPress" ++msgstr "Importar WordPress" ++ ++#: wp-admin/import/wordpress.php:38 ++msgid "" ++"Howdy! Upload your WordPress eXtended RSS (WXR) file and we’ll import " ++"the posts, comments, custom fields, and categories into this blog." ++msgstr "" ++"Puja el teu fitxer de WordPress eXtended RSS (WXR) i n'importarem les " ++"entrades, comentaris, camps personalitzats i categories cap a aquest blog." ++ ++#: wp-admin/import/wordpress.php:39 ++msgid "Choose a WordPress WXR file to upload, then click Upload file and import." ++msgstr "" ++"Escull un fitxer de WordPress WXR per a pujar i fes clic a Pujar el fitxer i " ++"importar." ++ ++#: wp-admin/import/wordpress.php:182 ++msgid "" ++"To make it easier for you to edit and save the imported posts and drafts, " ++"you may want to change the name of the author of the posts. For example, you " ++"may want to import all the entries as admins entries." ++msgstr "" ++"Per a editar i desar més facilment les entrades i comentaris que importaràs, " ++"potser vulguis canviar el nom de l'autor de les entrades. Per exemple, " ++"potser vulguis que totes pertanyin a admin." ++ ++#: wp-admin/import/wordpress.php:196 ++msgid "Import author:" ++msgstr "Importar autor:" ++ ++#: wp-admin/import/wordpress.php:204 ++msgid "Import Attachments" ++msgstr "Importar fitxers adjunts" ++ ++#: wp-admin/import/wordpress.php:207 ++msgid "Download and import file attachments" ++msgstr "Descarregar i importar fitxers adjunts" ++ ++#: wp-admin/import/wordpress.php:224 ++msgid "Map to existing" ++msgstr "Fer correspondre" ++ ++#: wp-admin/import/wordpress.php:248 ++msgid "Invalid file" ++msgstr "Arxiu invàlid" ++ ++#: wp-admin/import/wordpress.php:249 ++msgid "Please upload a valid WXR (WordPress eXtended RSS) export file." ++msgstr "Sisplau carrega un fitxer d'exportació WXR (WordPress eXtenden RSS) vàlid." ++ ++#: wp-admin/import/wordpress.php:333 ++msgid "All done." ++msgstr "Fet." ++ ++#: wp-admin/import/wordpress.php:333 ++msgid "Have fun!" ++msgstr "Gaudeix-ne!" ++ ++#: wp-admin/import/wordpress.php:522 ++#, php-format ++msgid "Importing attachment %s... " ++msgstr "Important el fitxer adjunt %s... " ++ ++#: wp-admin/import/wordpress.php:525 ++#, php-format ++msgid "Remote file error: %s" ++msgstr "Error en el fitxer remot: %s" ++ ++#: wp-admin/import/wordpress.php:536 wp-includes/functions.php:1164 ++msgid "Invalid file type" ++msgstr "Tipus d'arxiu invàlid" ++ ++#: wp-admin/import/wordpress.php:557 ++#, php-format ++msgid "Skipping attachment %s" ++msgstr "Saltant l'adjunt %s" ++ ++#: wp-admin/import/wordpress.php:580 ++#, php-format ++msgid "Remote file returned error response %d" ++msgstr "El fitxer remot ha retornat una resposta d'error %d" ++ ++#: wp-admin/import/wordpress.php:584 ++msgid "Remote file is incorrect size" ++msgstr "La mida del fitxer remot és incorrecta" ++ ++#: wp-admin/import/wordpress.php:590 ++#, php-format ++msgid "Remote file is too large, limit is %s" ++msgstr "El fitxer remot és massa gran, el límit és %s" ++ ++#: wp-admin/import/wordpress.php:704 ++msgid "Sorry, there has been an error." ++msgstr "Ho sento, ha ocorregut un error." ++ ++#: wp-admin/import/wordpress.php:746 ++msgid "" ++"Import posts, comments, custom fields, pages, and categories from a WordPress export file." ++msgstr "" ++"Importar entrades, comentaris, camps personalitzats, pàgines i " ++"categories d'un fitxer exportat per WordPress." ++ ++#: wp-admin/import/wp-cat2tag.php:9 ++msgid "Convert Categories to Tags" ++msgstr "Convertir categories en etiquetes" ++ ++#: wp-admin/import/wp-cat2tag.php:32 ++msgid "" ++"Hey there. Here you can selectively converts existing categories to tags. To " ++"get started, check the categories you wish to be converted, then click the " ++"Convert button." ++msgstr "" ++"Aquest conversor et permet de convertir selectivament categories en " ++"etiquetes. Per a iniciar-lo, activa les caselles de les categories que " ++"desitges convertir, i després prem el botó Convertir." ++ ++#: wp-admin/import/wp-cat2tag.php:33 ++msgid "" ++"Keep in mind that if you convert a category with child categories, the " ++"children become top-level orphans." ++msgstr "" ++"Tingues present que si converteixes una categoria amb subcategories, les " ++"subcategories perderan l'afiliació i passaran a ser categories de primer " ++"nivell." ++ ++#: wp-admin/import/wp-cat2tag.php:37 ++msgid "You have no categories to convert!" ++msgstr "No hi ha categories per convertir!" ++ ++#: wp-admin/import/wp-cat2tag.php:56 ++msgid "Uncheck All" ++msgstr "Desactivar-ho tot" ++ ++#: wp-admin/import/wp-cat2tag.php:63 wp-admin/import/wp-cat2tag.php:71 ++msgid "Check All" ++msgstr "Activar-ho tot" ++ ++#: wp-admin/import/wp-cat2tag.php:93 ++msgid "Convert Tags" ++msgstr "Convertir etiquetes" ++ ++#: wp-admin/import/wp-cat2tag.php:133 ++#, php-format ++msgid "Uh, oh. Something didn’t work. Please try again." ++msgstr "S'ha produït algun error. Sisplau intenta-ho altre cop." ++ ++#: wp-admin/import/wp-cat2tag.php:148 ++#, php-format ++msgid "Converting category #%s ... " ++msgstr "Convertint categoria #%s ... " ++ ++#: wp-admin/import/wp-cat2tag.php:151 ++msgid "Category doesn't exist!" ++msgstr "La categoria no existeix!" ++ ++#: wp-admin/import/wp-cat2tag.php:156 ++msgid "Category is already a tag." ++msgstr "La categoria ja era una etiqueta." ++ ++#: wp-admin/import/wp-cat2tag.php:192 ++msgid "Converted successfully." ++msgstr "Convertides amb Úxit." ++ ++#: wp-admin/import/wp-cat2tag.php:199 ++#, php-format ++msgid "" ++"We’re all done here, but you can always convert more." ++msgstr "Ja hem acabat, però pots seguir convertint." ++ ++#: wp-admin/import/wp-cat2tag.php:237 ++msgid "Categories to Tags Converter" ++msgstr "Conversor de categories a etiquetes" ++ ++#: wp-admin/import/wp-cat2tag.php:237 ++msgid "Convert existing categories to tags, selectively." ++msgstr "Convertir categories existents en etiquetes, selectivament." ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:31 ++msgid "The ftp PHP extension is not available" ++msgstr "L'extensió ftp de PHP no està disponible" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:42 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:41 ++msgid "FTP hostname is required" ++msgstr "Es requereix el nom del host de FTP" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:51 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:50 ++msgid "FTP username is required" ++msgstr "Es requereix el nom d'usuari de FTP" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:56 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:55 ++msgid "FTP password is required" ++msgstr "Es requereix la contrasenya de FTP" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:71 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:67 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:71 ++#, php-format ++msgid "Failed to connect to FTP Server %1$s:%2$s" ++msgstr "No s'ha pogut connectar amb el servidor de FTP %1$s:%2$s" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:76 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:76 ++#, php-format ++msgid "Username/Password incorrect for %s" ++msgstr "Nom d'usuari/contrasenya incorrecta per a %s" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:105 ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:128 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:107 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:130 ++#, php-format ++msgid "Changing to %s" ++msgstr "Canviant a %s" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:108 ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:136 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:110 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:138 ++#, php-format ++msgid "Found %s" ++msgstr "Trobat %s" ++ ++#: wp-admin/includes/comment.php:15 ++msgid "" ++"You are not allowed to edit comments on this post, so you cannot edit this " ++"comment." ++msgstr "" ++"No tens autorització per a editar els comentaris d'aquesta entrada i per " ++"tant no pots editar aquest comentari." ++ ++#: wp-admin/includes/dashboard.php:26 ++#, php-format ++msgid "%d comment awaiting moderation" ++msgid_plural "%d comments awaiting moderation" ++msgstr[0] "%d comentari esperant moderació" ++msgstr[1] "%d comentaris esperant moderació" ++ ++#: wp-admin/includes/dashboard.php:31 wp-includes/widgets.php:930 ++#: wp-includes/widgets.php:993 wp-includes/widgets.php:994 ++msgid "Recent Comments" ++msgstr "Comentaris recents" ++ ++#: wp-admin/includes/dashboard.php:45 wp-admin/includes/dashboard.php:49 ++msgid "Incoming Links" ++msgstr "Enllaços entrants" ++ ++#: wp-admin/includes/dashboard.php:55 wp-admin/menu.php:27 ++#: wp-admin/menu.php:66 wp-admin/plugin-editor.php:119 ++#: wp-includes/js/tinymce/langs/wp-langs.php:241 ++msgid "Plugins" ++msgstr "Extensions" ++ ++#: wp-admin/includes/dashboard.php:65 ++msgid "http://wordpress.org/development/" ++msgstr "http://wordpress.org/development/" ++ ++#: wp-admin/includes/dashboard.php:66 ++msgid "http://wordpress.org/development/feed/" ++msgstr "http://wordpress.org/development/feed/" ++ ++#: wp-admin/includes/dashboard.php:67 ++msgid "WordPress Development Blog" ++msgstr "Blog de desenvolupament del WordPress" ++ ++#: wp-admin/includes/dashboard.php:78 ++msgid "Primary Feed" ++msgstr "Fil de RSS principal" ++ ++#: wp-admin/includes/dashboard.php:87 ++msgid "http://planet.wordpress.org/" ++msgstr "http://planet.wordpress.org/" ++ ++#: wp-admin/includes/dashboard.php:88 ++msgid "http://planet.wordpress.org/feed/" ++msgstr "http://planet.wordpress.org/feed/" ++ ++#: wp-admin/includes/dashboard.php:89 ++msgid "Other WordPress News" ++msgstr "Altres notícies del WordPress" ++ ++#: wp-admin/includes/dashboard.php:97 ++msgid "Secondary Feed" ++msgstr "Fil de RSS secundari" ++ ++#: wp-admin/includes/dashboard.php:206 ++msgid "See All" ++msgstr "Veure-ho tot" ++ ++#: wp-admin/includes/dashboard.php:218 wp-admin/includes/media.php:834 ++#: wp-admin/includes/widgets.php:227 ++#: wp-includes/js/tinymce/langs/wp-langs.php:17 ++#: wp-includes/script-loader.php:145 wp-includes/script-loader.php:153 ++#: wp-includes/script-loader.php:158 wp-includes/script-loader.php:164 ++#: wp-includes/script-loader.php:194 ++msgid "Cancel" ++msgstr "Cancel·lar" ++ ++#: wp-admin/includes/dashboard.php:225 ++msgid "rss icon" ++msgstr "Icona RSS" ++ ++#: wp-admin/includes/dashboard.php:281 ++#, php-format ++msgid "From %1$s on %2$s %3$s" ++msgstr "Per %1$s a %2$s %3$s" ++ ++#: wp-admin/includes/dashboard.php:332 wp-admin/page.php:85 ++#: wp-admin/post.php:92 ++msgid "Somebody" ++msgstr "Algú" ++ ++#: wp-admin/includes/dashboard.php:345 ++msgid "something" ++msgstr "quelcom" ++ ++#: wp-admin/includes/dashboard.php:348 ++#, php-format ++msgid "%1$s linked here saying, \"%3$s\"|feed_display" ++msgstr "%1$s enllacen aquí dient, \"%3$s\"|feed_display" ++ ++#: wp-admin/includes/dashboard.php:350 ++#, php-format ++msgid "%1$s linked here saying, \"%3$s\"|feed_display" ++msgstr "%1$s enllacen aquí dient, \"%3$s\"|feed_display" ++ ++#: wp-admin/includes/dashboard.php:354 ++#, php-format ++msgid " on %4$s|feed_display" ++msgstr " el dia %4$s|feed_display" ++ ++#: wp-admin/includes/dashboard.php:366 ++msgid "" ++"This dashboard widget queries Google Blog Search so that when another blog links to your site it " ++"will show up here. It has found no incoming links… yet. It’s " ++"okay — there is no rush." ++msgstr "" ++"Aquest widget del tauler consulta la cerca de blogs de Google i si algun altre blog enllaça cap al teu ho " ++"mostra aquí. No s'han trobat enllaços entrants… per ara. Cap " ++"problema, tot arribarà." ++ ++#: wp-admin/includes/dashboard.php:405 ++msgid "Most Popular" ++msgstr "Més popular" ++ ++#: wp-admin/includes/dashboard.php:405 ++msgid "Newest Plugins" ++msgstr "Extensions més noves" ++ ++#: wp-admin/includes/dashboard.php:405 ++msgid "Recently Updated" ++msgstr "Recentment actualitzat" ++ ++#: wp-admin/includes/dashboard.php:436 ++msgid "Download" ++msgstr "Descarregar" ++ ++#: wp-admin/includes/dashboard.php:446 ++msgid "Loading…" ++msgstr "Llegint …" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Main Index Template" ++msgstr "Plantilla de la pàgina principal" ++ ++#: wp-admin/includes/file.php:3 wp-admin/includes/file.php:5 ++msgid "Stylesheet" ++msgstr "Full d'estils" ++ ++#: wp-admin/includes/file.php:3 ++msgid "RTL Stylesheet" ++msgstr "Full d'estils RTL" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Popup Comments" ++msgstr "Popup de comentaris" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Footer" ++msgstr "Peu de pàgina" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Header" ++msgstr "Capçalera" ++ ++#: wp-admin/includes/file.php:3 wp-includes/widgets.php:26 ++msgid "Sidebar" ++msgstr "Barra lateral" ++ ++#: wp-admin/includes/file.php:3 wp-includes/widgets.php:457 ++#: wp-includes/widgets.php:1368 wp-includes/widgets.php:1369 ++msgid "Archives" ++msgstr "Arxius" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Category Template" ++msgstr "Plantilla de la pàgina de categories" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Search Results" ++msgstr "Resultat de la cerca" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Search Form" ++msgstr "Formulari de cerca" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Single Post" ++msgstr "Entrada" ++ ++#: wp-admin/includes/file.php:3 ++msgid "404 Template" ++msgstr "No s'ha trobat la plantilla de la pàgina (error 404)" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Links Template" ++msgstr "Plantilla d'enllaços" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Theme Functions" ++msgstr "Funcions del tema" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Attachment Template" ++msgstr "Plantilla del fitxer adjunt" ++ ++#: wp-admin/includes/file.php:3 ++msgid "my-hacks.php (legacy hacks support)" ++msgstr "my-hacks.php (suport per a antics hacks)" ++ ++#: wp-admin/includes/file.php:3 ++msgid ".htaccess (for rewrite rules )" ++msgstr ".htaccess (per a regles del mod_rewrite)" ++ ++#: wp-admin/includes/file.php:5 ++msgid "Comments Template" ++msgstr "Plantilla dels comentaris" ++ ++#: wp-admin/includes/file.php:5 ++msgid "Popup Comments Template" ++msgstr "Plantilla dels comentaris en pop-up" ++ ++#: wp-admin/includes/file.php:85 ++msgid "" ++"Sorry, can’t edit files with \"..\" in the name. If you are trying to " ++"edit a file in your WordPress home directory, you can just type the name of " ++"the file in." ++msgstr "" ++"No pots editar arxius amb \"..\" al nom. Si estàs intentant editar un arxiu " ++"al directori arrel del WordPress, escriu-ne només el nom." ++ ++#: wp-admin/includes/file.php:88 ++msgid "Sorry, can’t call files with their real path." ++msgstr "No pots cridar arxius amb el directori real." ++ ++#: wp-admin/includes/file.php:91 ++msgid "Sorry, that file cannot be edited." ++msgstr "Aquest arxiu no es pot editar." ++ ++#: wp-admin/includes/file.php:116 ++msgid "" ++"The uploaded file exceeds the upload_max_filesize directive in " ++"php.ini." ++msgstr "" ++"L'arxiu que vols pujar excedeix la directriu upload_max_filesize (mida màxima de pujada) al php.ini." ++ ++#: wp-admin/includes/file.php:117 ++msgid "" ++"The uploaded file exceeds the MAX_FILE_SIZE directive that was " ++"specified in the HTML form." ++msgstr "" ++"L'arxiu que vols pujar excedeix la directriu MAX_FILE_SIZE " ++"(mida màxima d'arxiu) especificada al formulari HTML." ++ ++#: wp-admin/includes/file.php:118 ++msgid "The uploaded file was only partially uploaded." ++msgstr "Només s'ha pogut pujar l'arxiu parcialment." ++ ++#: wp-admin/includes/file.php:119 ++msgid "No file was uploaded." ++msgstr "No s'ha pujat cap arxiu." ++ ++#: wp-admin/includes/file.php:120 ++msgid "Missing a temporary folder." ++msgstr "Manca un directori temporal." ++ ++#: wp-admin/includes/file.php:121 ++msgid "Failed to write file to disk." ++msgstr "No s'ha pogut desar l'arxiu al disc." ++ ++#: wp-admin/includes/file.php:137 ++msgid "Invalid form submission." ++msgstr "Enviament d'un formulari erroni." ++ ++#: wp-admin/includes/file.php:145 ++msgid "" ++"File is empty. Please upload something more substantial. This error could " ++"also be caused by uploads being disabled in your php.ini." ++msgstr "" ++"El fitxer és buit. Sisplau carrega alguna cosa més substancial! Aquest error " ++"també podria ser causat pel teu php.ini, si en aquest l'opció de carregar " ++"fitxers és desactivada." ++ ++#: wp-admin/includes/file.php:149 ++msgid "Specified file failed upload test." ++msgstr "L'arxiu indicat no compleix els requisits de pujada." ++ ++#: wp-admin/includes/file.php:158 ++msgid "File type does not meet security guidelines. Try another." ++msgstr "" ++"El tipus d'arxiu no s'ajusta a les directrius de seguretat. Prova-ho amb un " ++"altre." ++ ++#: wp-admin/includes/file.php:176 ++#, php-format ++msgid "The uploaded file could not be moved to %s." ++msgstr "L'arxiu que s'ha pujat no s'ha pogut moure a %s." ++ ++#: wp-admin/includes/file.php:200 ++msgid "Invalid URL Provided" ++msgstr "Arxiu invàlid" ++ ++#: wp-admin/includes/file.php:204 wp-admin/includes/file.php:208 ++msgid "Could not create Temporary file" ++msgstr "No s'ha pogut crear el fitxer temporal" ++ ++#: wp-admin/includes/file.php:229 wp-admin/includes/update.php:157 ++msgid "Could not access filesystem." ++msgstr "No s'ha pogut accedir al sistema de fitxers." ++ ++#: wp-admin/includes/file.php:239 ++msgid "Incompatible archive" ++msgstr "Fitxer incompatible" ++ ++#: wp-admin/includes/file.php:242 ++msgid "Empty archive" ++msgstr "Arxiu buit" ++ ++#: wp-admin/includes/file.php:262 ++msgid "Could not create directory" ++msgstr "No s'ha pogut crear el directori" ++ ++#: wp-admin/includes/file.php:268 ++msgid "Could not copy file" ++msgstr "No s'ha pogut copiar l'arxiu" ++ ++#: wp-admin/includes/image.php:131 ++#, php-format ++msgid "File '%s' doesn't exist?" ++msgstr "Fitxer '%s' inexistent?" ++ ++#: wp-admin/includes/image.php:134 ++msgid "The GD image library is not installed." ++msgstr "La bilblioteca d'imatges de GD no està instal·lada." ++ ++#: wp-admin/includes/image.php:141 ++#, php-format ++msgid "File '%s' is not an image." ++msgstr "El fitxer '%s' no és cap imatge." ++ ++#: wp-admin/includes/media.php:5 ++msgid "Choose File" ++msgstr "Escull un fitxer" ++ ++#: wp-admin/includes/media.php:6 ++msgid "Gallery" ++msgstr "Galeria" ++ ++#: wp-admin/includes/media.php:7 wp-admin/menu.php:46 wp-admin/upload.php:36 ++msgid "Media Library" ++msgstr "Mediateca" ++ ++#: wp-admin/includes/media.php:22 ++#, php-format ++msgid "Gallery (%s)" ++msgstr "Galeria (%s)" ++ ++#: wp-admin/includes/media.php:127 ++msgid "Uploads" ++msgstr "Fitxers pujats" ++ ++#: wp-admin/includes/media.php:127 wp-admin/update.php:152 ++msgid "WordPress" ++msgstr "WordPress" ++ ++#: wp-admin/includes/media.php:159 ++#, php-format ++msgid "Add media: %s" ++msgstr "Afegir un mÚdia: %s" ++ ++#: wp-admin/includes/media.php:161 ++msgid "Add Media" ++msgstr "Afegir un mÚdia" ++ ++#: wp-admin/includes/media.php:163 ++msgid "Add an Image" ++msgstr "Afegir imatge" ++ ++#: wp-admin/includes/media.php:165 ++msgid "Add Video" ++msgstr "Afegir vídeo" ++ ++#: wp-admin/includes/media.php:167 ++msgid "Add Audio" ++msgstr "Afegir Audio" ++ ++#: wp-admin/includes/media.php:296 wp-admin/includes/media.php:334 ++#: wp-admin/includes/media.php:372 wp-admin/includes/media.php:410 ++msgid "Saved." ++msgstr "Desat." ++ ++#: wp-admin/includes/media.php:444 wp-admin/includes/media.php:540 ++msgid "Caption" ++msgstr "Descripció" ++ ++#: wp-admin/includes/media.php:445 wp-admin/includes/media.php:1094 ++msgid "Alternate text, e.g. \"The Mona Lisa\"" ++msgstr "Text alternatiu, p. e., \"La Gioconda\"" ++ ++#: wp-admin/includes/media.php:452 wp-admin/includes/media.php:1096 ++#: wp-includes/js/tinymce/langs/wp-langs.php:29 ++#: wp-includes/js/tinymce/langs/wp-langs.php:268 ++msgid "Alignment" ++msgstr "Alineació" ++ ++#: wp-admin/includes/media.php:458 wp-admin/includes/media.php:1101 ++#: wp-includes/js/tinymce/langs/wp-langs.php:30 ++#: wp-includes/js/tinymce/langs/wp-langs.php:275 ++#: wp-includes/js/tinymce/langs/wp-langs.php:372 ++msgid "Left" ++msgstr "A l'esquerra" ++ ++#: wp-admin/includes/media.php:460 wp-admin/includes/media.php:1103 ++#: wp-includes/js/tinymce/langs/wp-langs.php:31 ++#: wp-includes/js/tinymce/langs/wp-langs.php:352 ++#: wp-includes/js/tinymce/langs/wp-langs.php:373 ++msgid "Center" ++msgstr "Al centre" ++ ++#: wp-admin/includes/media.php:462 wp-admin/includes/media.php:1105 ++#: wp-includes/js/tinymce/langs/wp-langs.php:32 ++#: wp-includes/js/tinymce/langs/wp-langs.php:276 ++#: wp-includes/js/tinymce/langs/wp-langs.php:370 ++msgid "Right" ++msgstr "A la dreta" ++ ++#: wp-admin/includes/media.php:465 ++msgid "Size" ++msgstr "Mida" ++ ++#: wp-admin/includes/media.php:469 wp-includes/script-loader.php:173 ++msgid "Thumbnail" ++msgstr "Miniatura" ++ ++#: wp-admin/includes/media.php:471 ++msgid "Medium" ++msgstr "MÚdia" ++ ++#: wp-admin/includes/media.php:473 wp-includes/script-loader.php:174 ++msgid "Full size" ++msgstr "Mida completa" ++ ++#: wp-admin/includes/media.php:490 ++msgid "Empty Title filled from filename." ++msgstr "Títol buit basat en el nom del fitxer." ++ ++#: wp-admin/includes/media.php:549 ++#: wp-includes/js/tinymce/langs/wp-langs.php:278 ++msgid "Link URL" ++msgstr "URL de l'enllaç" ++ ++#: wp-admin/includes/media.php:554 ++msgid "File URL" ++msgstr "URL del fitxer" ++ ++#: wp-admin/includes/media.php:555 ++msgid "Post URL" ++msgstr "URL de l'entrada" ++ ++#: wp-admin/includes/media.php:559 ++msgid "Enter a link URL or click above for presets." ++msgstr "" ++"Introdueix l'URL d'un enllaç o clica aquí sobre per als valors " ++"predeterminats." ++ ++#: wp-admin/includes/media.php:629 wp-admin/widgets.php:248 ++#: wp-admin/widgets.php:265 ++msgid "Show" ++msgstr "Mostrar" ++ ++#: wp-admin/includes/media.php:630 ++msgid "Hide" ++msgstr "Amagar" ++ ++#: wp-admin/includes/media.php:688 wp-admin/includes/media.php:1111 ++#: wp-admin/includes/media.php:1139 wp-admin/includes/media.php:1167 ++#: wp-admin/includes/media.php:1195 ++msgid "Insert into Post" ++msgstr "Inserir en l'entrada" ++ ++#: wp-admin/includes/media.php:826 ++msgid "Choose files to upload" ++msgstr "Escollir fitxers per a carregar" ++ ++#: wp-admin/includes/media.php:827 ++msgid "After a file has been uploaded, you can add titles and descriptions." ++msgstr "Després de pujar cada fitxer podràs afegir títols i descripcions." ++ ++#: wp-admin/includes/media.php:839 ++msgid "" ++"If you want to use all capabilities of the uploader, like uploading multiple " ++"files at once, please upgrade to lighttpd 1.5." ++msgstr "" ++"Si vols usar tota la potÚncia del carregador, com pujar diversos fitxers de " ++"cop, sisplau actualitza a lightppd 1.5." ++ ++#: wp-admin/includes/media.php:858 ++msgid "From Computer" ++msgstr "Des de l'ordinador" ++ ++#: wp-admin/includes/media.php:876 wp-admin/includes/media.php:890 ++#: wp-admin/includes/media.php:923 wp-admin/includes/media.php:1071 ++msgid "Save all changes" ++msgstr "Desar tots els canvis" ++ ++#: wp-admin/includes/media.php:881 ++msgid "— OR —" ++msgstr "— O BÉ —" ++ ++#: wp-admin/includes/media.php:882 ++msgid "From URL" ++msgstr "Des d'una URL" ++ ++#: wp-admin/includes/media.php:924 ++msgid "Insert gallery into post" ++msgstr "Inserir galeria en l'entrada" ++ ++#: wp-admin/includes/media.php:961 wp-admin/upload.php:129 ++msgid "Search Media" ++msgstr "Cercar mÚdia" ++ ++#: wp-admin/includes/media.php:980 wp-admin/upload.php:94 ++msgid "All Types" ++msgstr "Tots els tipus" ++ ++#: wp-admin/includes/media.php:1043 ++msgid "Filter »" ++msgstr "Filtrar »" ++ ++#: wp-admin/includes/media.php:1082 ++#: wp-includes/js/tinymce/langs/wp-langs.php:261 ++msgid "Image URL" ++msgstr "URL de la imatge" ++ ++#: wp-admin/includes/media.php:1123 ++msgid "Audio File URL" ++msgstr "URL de l'arxiu d'audio" ++ ++#: wp-admin/includes/media.php:1135 ++msgid "Link text, e.g. \"Still Alive by Jonathan Coulton\"" ++msgstr "Text de l'enllaç, p. ex. \"L'estaca per Lluís Llach\"" ++ ++#: wp-admin/includes/media.php:1151 ++msgid "Video URL" ++msgstr "URL del vídeo" ++ ++#: wp-admin/includes/media.php:1163 ++msgid "Link text, e.g. \"Lucy on YouTube\"" ++msgstr "Text de l'enllaç, p. e. \"Llúcia a YouTube\"" ++ ++#: wp-admin/includes/media.php:1191 ++msgid "Link text, e.g. \"Ransom Demands (PDF)\"" ++msgstr "Text de l'enllaç, p. e. \"Peticions de rescat (PDF)\"" ++ ++#: wp-admin/includes/plugin.php:22 ++msgid "Visit plugin homepage" ++msgstr "Visitar el lloc web de l'extensió" ++ ++#: wp-admin/includes/plugin.php:28 wp-includes/theme.php:113 ++msgid "Visit author homepage" ++msgstr "Visitar lloc web de l'autor" ++ ++#: wp-admin/includes/plugin.php:164 ++msgid "One of the plugins is invalid." ++msgstr "Una de les extensions és invàlida." ++ ++#: wp-admin/includes/plugin.php:195 ++msgid "Invalid plugin." ++msgstr "Extensió incorrecta." ++ ++#: wp-admin/includes/plugin.php:197 ++msgid "Plugin file does not exist." ++msgstr "El fitxer d'extensió no existeix." ++ ++#: wp-admin/includes/post.php:45 ++msgid "You are not allowed to edit pages as this user." ++msgstr "Amb aquest nom d'usuari no tens autorizació per a editar pàgines." ++ ++#: wp-admin/includes/post.php:48 ++msgid "You are not allowed to edit posts as this user." ++msgstr "Amb aquest nom d'usuari no tens autorització per a editar entrades." ++ ++#: wp-admin/includes/post.php:214 ++msgid "You are not allowed to create pages on this blog." ++msgstr "No tens autorizació per a crear pàgines en aquest blog." ++ ++#: wp-admin/includes/post.php:217 ++msgid "You are not allowed to create posts or drafts on this blog." ++msgstr "No tens autorizació per a crear entrades o esborranys en aquest blog." ++ ++#: wp-admin/includes/post.php:259 ++msgid "You are not allowed to create pages as this user." ++msgstr "" ++"Amb aquest nom d'usuari no tens autorizació per a crear pàgines en aquest " ++"blog." ++ ++#: wp-admin/includes/post.php:262 ++msgid "You are not allowed to post as this user." ++msgstr "Amb aquest nom d'usuari no tens autorització per a escriure entrades." ++ ++#: wp-admin/includes/post.php:522 ++msgid "Published posts" ++msgstr "Entrades publicades" ++ ++#: wp-admin/includes/post.php:523 ++msgid "Scheduled posts" ++msgstr "Entrades previstes" ++ ++#: wp-admin/includes/post.php:524 ++msgid "Pending posts" ++msgstr "Entrades pendents" ++ ++#: wp-admin/includes/post.php:526 ++msgid "Private posts" ++msgstr "Entrades privades" ++ ++#: wp-admin/includes/post.php:572 ++msgid "Images" ++msgstr "Imatges" ++ ++#: wp-admin/includes/post.php:572 ++msgid "Manage Images" ++msgstr "Gestionar imatges" ++ ++#: wp-admin/includes/post.php:572 ++#, php-format ++msgid "Image (%s)" ++msgid_plural "Images (%s)" ++msgstr[0] "Imatge (%s)" ++msgstr[1] "Imatges (%s)" ++ ++#: wp-admin/includes/post.php:573 ++msgid "Audio" ++msgstr "Audio" ++ ++#: wp-admin/includes/post.php:573 ++msgid "Manage Audio" ++msgstr "Gestionar audio" ++ ++#: wp-admin/includes/post.php:573 ++#, php-format ++msgid "Audio (%s)" ++msgid_plural "Audio (%s)" ++msgstr[0] "Audio (%s)" ++msgstr[1] "Audio (%s)" ++ ++#: wp-admin/includes/post.php:574 ++msgid "Video" ++msgstr "Vídeo" ++ ++#: wp-admin/includes/post.php:574 ++msgid "Manage Video" ++msgstr "Gestionar vídeo" ++ ++#: wp-admin/includes/post.php:574 ++#, php-format ++msgid "Video (%s)" ++msgid_plural "Video (%s)" ++msgstr[0] "Vídeo (%s)" ++msgstr[1] "Vídeo (%s)" ++ ++#: wp-admin/includes/post.php:649 ++msgid "Click to edit this part of the permalink" ++msgstr "Clicar per a editar aquesta part de l'enllaç permanent" ++ ++#: wp-admin/includes/post.php:657 ++msgid "Permalink:" ++msgstr "Enllaç permanent:" ++ ++#: wp-admin/includes/schema.php:160 ++msgid "My Blog" ++msgstr "El meu blog" ++ ++#: wp-admin/includes/schema.php:161 ++msgid "Just another WordPress weblog" ++msgstr "Blog funcionant amb el WordPress" ++ ++#: wp-admin/includes/schema.php:183 ++msgid "F j, Y" ++msgstr "j F Y" ++ ++#: wp-admin/includes/schema.php:184 ++msgid "g:i a" ++msgstr "G:i" ++ ++#: wp-admin/includes/schema.php:185 ++msgid "F j, Y g:i a" ++msgstr "j F Y G:i" ++ ++#: wp-admin/includes/schema.php:277 ++msgid "Administrator|User role" ++msgstr "Administrador" ++ ++#: wp-admin/includes/schema.php:278 ++msgid "Editor|User role" ++msgstr "Editor" ++ ++#: wp-admin/includes/schema.php:279 ++msgid "Author|User role" ++msgstr "Autor" ++ ++#: wp-admin/includes/schema.php:280 ++msgid "Contributor|User role" ++msgstr "Col·laborador" ++ ++#: wp-admin/includes/schema.php:281 ++msgid "Subscriber|User role" ++msgstr "Subscriptor" ++ ++#: wp-admin/includes/template.php:288 wp-admin/includes/template.php:325 ++msgid "Modified" ++msgstr "Modificat" ++ ++#: wp-admin/includes/template.php:290 wp-admin/includes/template.php:327 ++msgid "Submitted" ++msgstr "Enviat" ++ ++#: wp-admin/includes/template.php:299 wp-admin/includes/template.php:334 ++#: wp-admin/plugins.php:109 ++msgid "Status" ++msgstr "Estat" ++ ++#: wp-admin/includes/template.php:310 ++msgid "Media|media column header" ++msgstr "MÚdia" ++ ++#: wp-admin/includes/template.php:311 ++msgid "Description|media column header" ++msgstr "Descripció" ++ ++#: wp-admin/includes/template.php:312 ++msgid "Date Added|media column header" ++msgstr "Afegit el dia" ++ ++#: wp-admin/includes/template.php:313 ++msgid "Appears with|media column header" ++msgstr "Apareix a" ++ ++#: wp-admin/includes/template.php:315 ++msgid "Location|media column header" ++msgstr "Lloc" ++ ++#: wp-admin/includes/template.php:561 ++#, php-format ++msgid "e-mail: %s" ++msgstr "correu electrònic: %s" ++ ++#: wp-admin/includes/template.php:565 ++msgid "View posts by this author" ++msgstr "Veure les entrades fetes per aquest autor" ++ ++#: wp-admin/includes/template.php:624 wp-includes/link-template.php:516 ++msgid "Edit comment" ++msgstr "Editar el comentari" ++ ++#: wp-admin/includes/template.php:642 ++msgid "Y/m/d \\a\\t g:i A" ++msgstr "Y-m-d \\a\\t G:i:s" ++ ++#: wp-admin/includes/template.php:667 ++#, php-format ++msgid "From %1$s, %2$s" ++msgstr "De %1$s, %2$s" ++ ++#: wp-admin/includes/template.php:675 wp-admin/includes/template.php:680 ++msgid "Approve this comment" ++msgstr "Aprovar aquest comentari" ++ ++#: wp-admin/includes/template.php:676 wp-admin/includes/template.php:683 ++msgid "Unapprove this comment" ++msgstr "Rebutjar aquest comentari" ++ ++#: wp-admin/includes/template.php:688 ++msgid "Mark this comment as spam" ++msgstr "Marcar aquest comentari com a brossa" ++ ++#: wp-admin/includes/template.php:730 wp-admin/includes/template.php:800 ++msgid "Key" ++msgstr "Clau" ++ ++#: wp-admin/includes/template.php:731 wp-admin/includes/template.php:801 ++msgid "Value" ++msgstr "Valor" ++ ++#: wp-admin/includes/template.php:732 wp-admin/plugins.php:110 ++#: wp-includes/js/tinymce/wp-mce-help.php:194 ++#: wp-includes/js/tinymce/wp-mce-help.php:210 ++msgid "Action" ++msgstr "Acció" ++ ++#: wp-admin/includes/template.php:776 ++#: wp-includes/js/tinymce/langs/wp-langs.php:16 ++msgid "Update" ++msgstr "Actualitzar" ++ ++#: wp-admin/includes/template.php:797 ++msgid "Add a new custom field:" ++msgstr "Afegir un camp personalitzat:" ++ ++#: wp-admin/includes/template.php:815 ++msgid "or" ++msgstr "o" ++ ++#: wp-admin/includes/template.php:823 ++msgid "Add Custom Field" ++msgstr "Afegir un camp personalitzat" ++ ++#: wp-admin/includes/template.php:864 ++#, php-format ++msgid "" ++"%1$s%2$s, %3$s
    @ %4$s : %5$s|1: month input, 2: day input, 3: year " ++"input, 4: hour input, 5: minute input" ++msgstr "" ++"%1$s%2$s, %3$s
    @ %4$s : %5$s|1: month input, 2: day input, 3: year " ++"input, 4: hour input, 5: minute input" ++ ++#: wp-admin/includes/template.php:913 ++msgid "WordPress recommends a better browser" ++msgstr "El WordPress recomana un navegador millor" ++ ++#: wp-admin/includes/template.php:943 ++msgid "Thumbnail linked to file" ++msgstr "Miniatura enllaçada a l'arxiu" ++ ++#: wp-admin/includes/template.php:943 ++msgid "Image linked to file" ++msgstr "Imatge enllaçada a l'arxiu" ++ ++#: wp-admin/includes/template.php:947 ++msgid "Thumbnail linked to page" ++msgstr "Miniatura enllaçada a la pàgina" ++ ++#: wp-admin/includes/template.php:947 ++msgid "Image linked to page" ++msgstr "Imatge enllaçada a la pàgina" ++ ++#: wp-admin/includes/template.php:952 ++msgid "Link to file" ++msgstr "Enllaça a l'arxiu" ++ ++#: wp-admin/includes/template.php:956 ++msgid "Link to page" ++msgstr "Enllaç a la p&ahrave;gina" ++ ++#: wp-admin/includes/template.php:1012 ++msgid "Choose a file from your computer:" ++msgstr "Tria un fitxer del teu ordinador:" ++ ++#: wp-admin/includes/template.php:1012 ++#, php-format ++msgid "Maximum size: %s" ++msgstr "Mida màxima: %s" ++ ++#: wp-admin/includes/template.php:1018 ++msgid "Upload file and import" ++msgstr "Pujar el fitxer i importar-lo" ++ ++#: wp-admin/includes/update.php:7 wp-admin/includes/update.php:24 ++#, php-format ++msgid "Version %s" ++msgstr "Versió %s" ++ ++#: wp-admin/includes/update.php:13 ++#, php-format ++msgid "" ++"You are using a development version (%s). Cool! Please stay " ++"updated." ++msgstr "" ++"Uses una versió en desenvolupament (%s). Sisplau mantingue-la " ++"al dia." ++ ++#: wp-admin/includes/update.php:18 ++#, php-format ++msgid "Get Version %3$s" ++msgstr "Descarregar la versió %3$s" ++ ++#: wp-admin/includes/update.php:37 ++#, php-format ++msgid "WordPress %2$s is available! Please update now." ++msgstr "WordPress %2$s és disponible! Sisplau actualitza ara." ++ ++#: wp-admin/includes/update.php:39 ++#, php-format ++msgid "WordPress %2$s is available! Please notify the site administrator." ++msgstr "WordPress %2$s és disponible! Sisplau avisa l'administració del web." ++ ++#: wp-admin/includes/update.php:49 ++#, php-format ++msgid "This is WordPress version %s." ++msgstr "Això es el WordPress versió %s." ++ ++#: wp-admin/includes/update.php:51 ++#, php-format ++msgid "Update to %s" ++msgstr "Actualitzar a %s" ++ ++#: wp-admin/includes/update.php:51 ++msgid "Latest" ++msgstr "Darrera" ++ ++#: wp-admin/includes/update.php:131 ++#, php-format ++msgid "" ++"There is a new version of %1$s available. Download version %" ++"3$s here." ++msgstr "" ++"Hi ha una nova versió de %1$s disponible. Descarrega la " ++"versió %3$s aquí." ++ ++#: wp-admin/includes/update.php:133 ++#, php-format ++msgid "" ++"There is a new version of %1$s available. Download version %" ++"3$s here automatic upgrade unavailable for this plugin." ++msgstr "" ++"Hi ha una nova versió de %1$s disponible. Descarrega la " ++"versió %3$s aquí actualització automàtica no disponible per a " ++"aquesta extensió." ++ ++#: wp-admin/includes/update.php:135 ++#, php-format ++msgid "" ++"There is a new version of %1$s available. Download version %" ++"3$s here or upgrade automatically." ++msgstr "" ++"Hi ha una nova versió de %1$s disponible. Descarrega la " ++"versió %3$s aquí o bé actualitza automàticament." ++ ++#: wp-admin/includes/update.php:150 ++msgid "The plugin is at the latest version." ++msgstr "L'extensió està en la darrera versió." ++ ++#: wp-admin/includes/update.php:160 ++msgid "Filesystem error" ++msgstr "Error en el sistem de fitxers" ++ ++#: wp-admin/includes/update.php:166 ++msgid "Unable to locate WordPress directory." ++msgstr "No s'ha pogut localitzar el directori del WordPress." ++ ++#: wp-admin/includes/update.php:172 ++msgid "Upgrade package not available." ++msgstr "Paquet d'actualització no disponible." ++ ++#: wp-admin/includes/update.php:176 ++#, php-format ++msgid "Downloading update from %s" ++msgstr "Descarregant l'actualització de %s" ++ ++#: wp-admin/includes/update.php:180 ++msgid "Download failed." ++msgstr "La descàrrega de fitxer ha fallat." ++ ++#: wp-admin/includes/update.php:188 ++msgid "Unpacking the update" ++msgstr "Desempaquetant l'actualització" ++ ++#: wp-admin/includes/update.php:202 ++msgid "Deactivating the plugin" ++msgstr "Desactivant l'extensió" ++ ++#: wp-admin/includes/update.php:207 ++msgid "Removing the old version of the plugin" ++msgstr "Eliminant la versió antiga de l'extensió" ++ ++#: wp-admin/includes/update.php:219 ++msgid "Could not remove the old plugin" ++msgstr "No s'ha pogut esborrar l'extensió antiga" ++ ++#: wp-admin/includes/update.php:222 ++msgid "Installing the latest version" ++msgstr "Instal·lant la darrera versió" ++ ++#: wp-admin/includes/update.php:226 ++msgid "Installation failed" ++msgstr "La instal·lació ha fallat" ++ ++#: wp-admin/includes/upgrade.php:41 ++msgid "User already exists. Password inherited." ++msgstr "L'usuari ja existeix. La contrasenya ha sigut reproduïda." ++ ++#: wp-admin/includes/upgrade.php:70 wp-admin/includes/upgrade.php:71 ++msgid "Blogroll" ++msgstr "Blogroll" ++ ++#: wp-admin/includes/upgrade.php:101 ++msgid "" ++"Welcome to WordPress. This is your first post. Edit or delete it, then start " ++"blogging!" ++msgstr "" ++"Benvingut al WordPress. Aquesta és la teva primera entrada. Edita-la o " ++"esborra-la ..... i comença a publicar!" ++ ++#: wp-admin/includes/upgrade.php:101 ++msgid "Hello world!" ++msgstr "Hola, món!" ++ ++#: wp-admin/includes/upgrade.php:101 ++msgid "hello-world" ++msgstr "hola-món" ++ ++#: wp-admin/includes/upgrade.php:105 ++msgid "Mr WordPress" ++msgstr "Mr WordPress" ++ ++#: wp-admin/includes/upgrade.php:105 ++msgid "" ++"Hi, this is a comment.
    To delete a comment, just log in and view the " ++"post's comments. There you will have the option to edit or delete them." ++msgstr "" ++"Hola, això és un comentari.
    Per a esborrar un comentari només has " ++"d'entrar i veure els comentaris de l'entrada, allí tindràs l'opció d'editar-" ++"los o d'esborrar-los." ++ ++#: wp-admin/includes/upgrade.php:109 ++msgid "" ++"This is an example of a WordPress page, you could edit this to put " ++"information about yourself or your site so readers know where you are coming " ++"from. You can create as many pages like this one or sub-pages as you like " ++"and manage all of your content inside of WordPress." ++msgstr "" ++"Això és un exemple de pàgina del WordPress, pots editar-la per mostrar " ++"informació sobre tu o el teu lloc; així els teus lectors sabran qui ets. " ++"Pots crear tantes pàgines com aquesta o pàgines subordinades com vulguis i " ++"gestionar tot el teu contingut dins del WordPress." ++ ++#: wp-admin/includes/upgrade.php:109 ++#: wp-includes/js/tinymce/langs/wp-langs.php:238 ++#: wp-includes/js/tinymce/wp-mce-help.php:165 ++msgid "About" ++msgstr "Quant a" ++ ++#: wp-admin/includes/upgrade.php:109 ++msgid "about" ++msgstr "quant-a" ++ ++#: wp-admin/includes/upgrade.php:119 ++#, php-format ++msgid "" ++"Your new WordPress blog has been successfully set up at:\n" ++"\n" ++"%1$s\n" ++"\n" ++"You can log in to the administrator account with the following information:\n" ++"\n" ++"Username: %2$s\n" ++"Password: %3$s\n" ++"\n" ++"We hope you enjoy your new blog. Thanks!\n" ++"\n" ++"--The WordPress Team\n" ++"http://wordpress.org/\n" ++msgstr "" ++"El teu nou blog amb el WordPress s'ha instal·lat correctament a:\n" ++"\n" ++"%1$s\n" ++"\n" ++"Pots entrar al compte d'administrador amb la segÃŒent informació:\n" ++"\n" ++"Nom d'usuari: %2$s\n" ++"Contrasenya: %3$s\n" ++"\n" ++"Esperem que gaudeixis del teu nou blog. Gràcies!\n" ++"\n" ++"--L'equip del WordPress\n" ++"http://ca.wordpress.org/\n" ++ ++#: wp-admin/includes/upgrade.php:134 ++msgid "New WordPress Blog" ++msgstr "Nou blog amb el WordPress" ++ ++#: wp-admin/includes/user.php:87 wp-login.php:155 ++msgid "ERROR: Please enter a username." ++msgstr "ERROR: Sisplau, introdueix un nom d'usuari." ++ ++#: wp-admin/includes/user.php:94 wp-admin/includes/user.php:96 ++msgid "ERROR: You entered your new password only once." ++msgstr "ERROR: Has escrit la nova contrasenya només una vegada." ++ ++#: wp-admin/includes/user.php:99 ++msgid "ERROR: Please enter your password." ++msgstr "ERROR: Sisplau, escriu la teva contrasenya." ++ ++#: wp-admin/includes/user.php:101 ++msgid "ERROR: Please enter your password twice." ++msgstr "ERROR: Sisplau, escriu la contrasenya dues vegades." ++ ++#: wp-admin/includes/user.php:106 ++msgid "ERROR: Passwords may not contain the character \"\\\"." ++msgstr "ERROR: La contrasenya no pot contenir el caràcter \"\\\"." ++ ++#: wp-admin/includes/user.php:110 ++msgid "" ++"ERROR: Please enter the same password in the two password " ++"fields." ++msgstr "" ++"ERROR: Sisplau, introdueix la mateixa contrasenya als dos " ++"camps." ++ ++#: wp-admin/includes/user.php:116 ++msgid "" ++"ERROR: This username is invalid. Please enter a valid " ++"username." ++msgstr "" ++"ERROR: El nom d'usuari és invàlid. Sisplau, introdueix un " ++"nom d'usuari vàlid." ++ ++#: wp-admin/includes/user.php:119 ++msgid "" ++"ERROR: This username is already registered. Please choose " ++"another one." ++msgstr "" ++"ERROR: Aquest nom d'usuari ja existeix. Sisplau, escull-ne " ++"un altre." ++ ++#: wp-admin/includes/user.php:123 ++msgid "ERROR: Please enter an e-mail address." ++msgstr "ERROR: Sisplau, introdueix una adreça de correu electrònic." ++ ++#: wp-admin/includes/user.php:126 ++msgid "ERROR: The e-mail address isn't correct." ++msgstr "ERROR: L'adreça de correu electrònic és incorrecta." ++ ++#: wp-admin/includes/user.php:354 ++msgid "No matching users were found!" ++msgstr "No s'han trobat usuaris corresponents!" ++ ++#: wp-admin/includes/widgets.php:136 ++msgid "No matching widgets" ++msgstr "Cap widget corresponent" ++ ++#: wp-admin/includes/widgets.php:216 ++#, php-format ++msgid "%1$s: %2$s|1: widget name, 2: widget title" ++msgstr "%1$s: %2$s|1: widget name, 2: widget title" ++ ++#: wp-admin/includes/widgets.php:243 ++msgid "There are no options for this widget." ++msgstr "No hi ha opcions per a aquest widget." ++ ++#: wp-admin/includes/widgets.php:253 wp-admin/users.php:303 ++msgid "Change" ++msgstr "Canviar" ++ ++#: wp-admin/includes/widgets.php:257 ++msgid "Remove" ++msgstr "Eliminar" ++ ++#: wp-admin/index.php:30 wp-admin/index.php:39 wp-admin/menu.php:7 ++msgid "Dashboard" ++msgstr "Tauler" ++ ++#: wp-admin/index.php:43 ++msgid "Right Now" ++msgstr "Ara mateix" ++ ++#: wp-admin/index.php:46 ++msgid "Write a New Post" ++msgstr "Escriure una entrada nova" ++ ++#: wp-admin/index.php:48 ++msgid "Write a New Page" ++msgstr "Escriure una pàgina nova" ++ ++#: wp-admin/index.php:64 ++#, php-format ++msgid "%s post" ++msgid_plural "%s posts" ++msgstr[0] "%s entrada" ++msgstr[1] "%s entrades" ++ ++#: wp-admin/index.php:68 ++#, php-format ++msgid "%s page" ++msgid_plural "%s pages" ++msgstr[0] "%s pàgina" ++msgstr[1] "%s pàgines" ++ ++#: wp-admin/index.php:71 ++#, php-format ++msgid "%s draft" ++msgid_plural "%s drafts" ++msgstr[0] "%s esborrany" ++msgstr[1] "%s esborrany" ++ ++#: wp-admin/index.php:74 ++#, php-format ++msgid "%s scheduled post" ++msgid_plural "%s scheduled posts" ++msgstr[0] "%s entrada prevista" ++msgstr[1] "%s entrades previstes" ++ ++#: wp-admin/index.php:78 ++#, php-format ++msgid "There is %2$s post pending your review." ++msgid_plural "There are %2$s posts pending your review." ++msgstr[0] "Hi ha %2$s entrada pendent de moderació." ++msgstr[1] "Hi ha %2$s entrades pendents de moderació." ++ ++#: wp-admin/index.php:83 ++#, php-format ++msgid "%s category" ++msgid_plural "%s categories" ++msgstr[0] "%s categoria" ++msgstr[1] "%s categories" ++ ++#: wp-admin/index.php:84 ++#, php-format ++msgid "%s tag" ++msgid_plural "%s tags" ++msgstr[0] "%s etiqueta" ++msgstr[1] "%s etiquetes" ++ ++#: wp-admin/index.php:93 ++#, php-format ++msgid "You have %1$s, contained within %2$s and %3$s. %4$s" ++msgstr "Tens %1$s, en %2$s i amb %3$s. %4$s" ++ ++#: wp-admin/index.php:102 ++#, php-format ++msgid "%d widget" ++msgid_plural "%d widgets" ++msgstr[0] "%d widget" ++msgstr[1] "%d widgets" ++ ++#: wp-admin/index.php:107 ++#, php-format ++msgid "You are using %1$s theme with %2$s." ++msgstr "Estàs usant el tema %1$s amb %2$s." ++ ++#: wp-admin/index.php:109 ++msgid "Change Theme" ++msgstr "Canviar el tema" ++ ++#: wp-admin/install.php:23 ++msgid "WordPress › Installation" ++msgstr "Instal·lació del WordPress" ++ ++#: wp-admin/install.php:33 ++msgid "Already Installed" ++msgstr "Ja s'havia instal·lat" ++ ++#: wp-admin/install.php:33 ++msgid "" ++"You appear to have already installed WordPress. To reinstall please clear " ++"your old database tables first." ++msgstr "" ++"Sembla que el WordPress ja està instal·lat. Si vols tornar-lo a instal·lar, " ++"sisplau, esborra les taules de la base de dades." ++ ++#: wp-admin/install.php:40 ++msgid "Welcome" ++msgstr "Benvinguts" ++ ++#: wp-admin/install.php:41 ++#, php-format ++msgid "" ++"Welcome to the famous five minute WordPress installation process! You may " ++"want to browse the ReadMe documentation at your leisure. " ++"Otherwise, just fill in the information below and you'll be on your way to " ++"using the most extendable and powerful personal publishing platform in the " ++"world." ++msgstr "" ++"Benvinguda, benvingut al famós procés d'instal·lació de WordPress en cinc " ++"minuts! Potser vols consultar la documentació del LlegeixMe. Si no, simplement omple la informació aquí sota i passaràs a utilitzar " ++"la plataforma de publicació personal més extensible i potent del món." ++ ++#: wp-admin/install.php:42 ++msgid "First Step" ++msgstr "Primer pas" ++ ++#: wp-admin/install.php:44 ++msgid "Information needed" ++msgstr "Informació requerida" ++ ++#: wp-admin/install.php:45 ++msgid "" ++"Please provide the following information. Don't worry, you can always " ++"change these settings later." ++msgstr "" ++"Abans de començar, necessitem algunes dades. No et preocupis, sempre podràs " ++"canviar-les més endavant." ++ ++#: wp-admin/install.php:50 wp-admin/options-general.php:16 ++msgid "Blog Title" ++msgstr "Títol del blog" ++ ++#: wp-admin/install.php:54 ++msgid "Your E-mail" ++msgstr "La teva adreça electrònica" ++ ++#: wp-admin/install.php:56 ++msgid "Double-check your email address before continuing." ++msgstr "Comprova bé aquesta adreça abans de continuar." ++ ++#: wp-admin/install.php:59 ++msgid "Allow my blog to appear in search engines like Google and Technorati." ++msgstr "Desitjo que el meu blog apareixi a cercadors com Google i Technorati." ++ ++#: wp-admin/install.php:62 ++msgid "Install WordPress" ++msgstr "Instal·lar el WordPress" ++ ++#: wp-admin/install.php:79 ++msgid "ERROR: you must provide an e-mail address." ++msgstr "ERROR: has d'introduir una adreça electrònica." ++ ++#: wp-admin/install.php:82 ++msgid "" ++"ERROR: that isn’t a valid e-mail address. E-mail " ++"addresses look like: username@example.com" ++msgstr "" ++"ERROR: això no és cap adreça vàlida de correu electrònic. " ++"Les adreces electròniques tenen la forma: usuari@exemple.com" ++ ++#: wp-admin/install.php:90 ++msgid "Success!" ++msgstr "Èxit!" ++ ++#: wp-admin/install.php:92 ++msgid "" ++"WordPress has been installed. Were you expecting more steps? Sorry to " ++"disappoint." ++msgstr "" ++"WordPress ha sigut instal·lat. Esperaves encara més passes? No voldríem " ++"decebre't, però ja hem acabat! :-)" ++ ++#: wp-admin/install.php:96 wp-admin/user-edit.php:198 wp-admin/users.php:334 ++#: wp-login.php:316 wp-login.php:381 ++msgid "Username" ++msgstr "Nom d'usuari" ++ ++#: wp-admin/install.php:100 wp-admin/options-writing.php:76 wp-login.php:385 ++msgid "Password" ++msgstr "Contrasenya" ++ ++#: wp-admin/install.php:102 ++msgid "" ++"Note that password carefully! It is a random password that was generated just for you." ++msgstr "" ++"Apunta aquesta contrasenya amb cura! És una " ++"contrasenya aleatòria generada només per a tu." ++ ++#: wp-admin/install.php:106 wp-login.php:391 ++msgid "Log In" ++msgstr "Identificar-se" ++ ++#: wp-admin/link-add.php:22 ++msgid "Link added." ++msgstr "Enllaç afegit." ++ ++#: wp-admin/link-import.php:7 ++msgid "Import Blogroll" ++msgstr "Importar Blogroll" ++ ++#: wp-admin/link-import.php:24 ++msgid "Import your blogroll from another system" ++msgstr "Importar el teu blogroll des d'un altre sistema" ++ ++#: wp-admin/link-import.php:28 ++msgid "" ++"If a program or website you use allows you to export your links or " ++"subscriptions as OPML you may import them here." ++msgstr "" ++"Si fas servir un programa o lloc web que et permeti exportar els teus " ++"enllaços o suscripcions com a OPML, pots importar-los des d'aquí." ++ ++#: wp-admin/link-import.php:33 ++msgid "Specify an OPML URL:" ++msgstr "Especifica una URL d'OPML:" ++ ++#: wp-admin/link-import.php:38 ++msgid "Or choose from your local disk:" ++msgstr "O tria'ls del teu disc dur:" ++ ++#: wp-admin/link-import.php:44 ++msgid "Now select a category you want to put these links in." ++msgstr "Ara selecciona la categoria on vols incloure aquests enllaços." ++ ++#: wp-admin/link-import.php:45 ++msgid "Category:" ++msgstr "Categoria:" ++ ++#: wp-admin/link-import.php:56 ++msgid "Import OPML File" ++msgstr "Importar arxiu OPML" ++ ++#: wp-admin/link-import.php:111 ++#, php-format ++msgid "Inserted %s" ++msgstr "Creats %s" ++ ++#: wp-admin/link-import.php:115 ++#, php-format ++msgid "" ++"Inserted %1$d links into category %2$s. All done! Go manage " ++"those links." ++msgstr "" ++"Creats %1$d enllaços en la categoria %2$s. Tot a punt! Anar a gestionar aquests enllaços." ++ ++#: wp-admin/link-import.php:121 ++msgid "You need to supply your OPML url. Press back on your browser and try again" ++msgstr "" ++"Cal que introdueixis la URL del teu OPML. Fes retrocedir el teu navegador i " ++"torna-ho a provar" ++ ++#: wp-admin/link-manager.php:10 wp-admin/link-manager.php:42 ++#: wp-admin/link.php:7 ++msgid "You do not have sufficient permissions to edit the links for this blog." ++msgstr "No tens els permisos necessaris per a editar els enllaços d'aquest blog." ++ ++#: wp-admin/link-manager.php:37 ++msgid "Manage Links" ++msgstr "Gestionar enllaços" ++ ++#: wp-admin/link-manager.php:69 ++#, php-format ++msgid "%s link deleted." ++msgid_plural "%s links deleted" ++msgstr[0] "%s enllaç esborrat." ++msgstr[1] "%s enllaços esborrat." ++ ++#: wp-admin/link-manager.php:78 ++#, php-format ++msgid "Manage Links (add new)" ++msgstr "Gestionar enllaços (crear-ne un)" ++ ++#: wp-admin/link-manager.php:82 ++msgid "Search Links" ++msgstr "Cercar enllaços" ++ ++#: wp-admin/link-manager.php:94 ++msgid "View all Categories" ++msgstr "Veure totes les categories" ++ ++#: wp-admin/link-manager.php:100 ++msgid "Order by Link ID" ++msgstr "Ordenar segons ID de l'enllaç" ++ ++#: wp-admin/link-manager.php:101 ++msgid "Order by Name" ++msgstr "Ordenar segons el nom" ++ ++#: wp-admin/link-manager.php:102 ++msgid "Order by Address" ++msgstr "Ordenar segons l'adreça" ++ ++#: wp-admin/link-manager.php:103 ++msgid "Order by Rating" ++msgstr "Ordenar segons la puntuació" ++ ++#: wp-admin/link-manager.php:124 ++msgid "rel" ++msgstr "rel" ++ ++#: wp-admin/link-manager.php:125 ++msgid "Visible" ++msgstr "Visible" ++ ++#: wp-admin/link-manager.php:163 wp-admin/update.php:64 ++msgid "Yes" ++msgstr "Sí" ++ ++#: wp-admin/link-manager.php:176 ++#, php-format ++msgid "Visit %s" ++msgstr "Visitar %s" ++ ++#: wp-admin/link-manager.php:214 ++msgid "No links found." ++msgstr "No s'ha trobat cap enllaç." ++ ++#: wp-admin/link-parse-opml.php:58 ++#, php-format ++msgid "XML error: %1$s at line %2$s" ++msgstr "Error de XML: %1$s en la línia %2$s" ++ ++#: wp-admin/link.php:97 ++msgid "Link not found." ++msgstr "Enllaç no trobat." ++ ++#: wp-admin/media.php:32 wp-admin/media.php:68 ++msgid "Edit Media" ++msgstr "Editar un mÚdia" ++ ++#: wp-admin/media.php:56 ++msgid "Media attachment updated." ++msgstr "Fitxer adjunt del mÚdia actualitzat." ++ ++#: wp-admin/media-upload.php:19 ++msgid "You are not allowed to be here" ++msgstr "No tens autorizació per a estar aquí" ++ ++#: wp-admin/menu.php:10 wp-admin/menu.php:12 wp-admin/menu.php:14 ++msgid "Write" ++msgstr "Escriure" ++ ++#: wp-admin/menu.php:17 wp-admin/menu.php:19 wp-admin/menu.php:21 ++msgid "Manage" ++msgstr "Gestionar" ++ ++#: wp-admin/menu.php:24 ++msgid "Design" ++msgstr "Presentació" ++ ++#: wp-admin/menu.php:25 ++#, php-format ++msgid "Comments %s" ++msgstr "Comentaris %s" ++ ++#: wp-admin/menu.php:26 wp-admin/options.php:4 ++msgid "Settings" ++msgstr "Opcions" ++ ++#: wp-admin/menu.php:31 wp-admin/user-edit.php:63 ++msgid "Profile" ++msgstr "Perfil" ++ ++#: wp-admin/menu.php:36 ++msgid "Link" ++msgstr "Enllaç" ++ ++#: wp-admin/menu.php:52 ++msgid "Authors & Users" ++msgstr "Autors i usuaris" ++ ++#: wp-admin/menu.php:53 wp-admin/menu.php:55 ++msgid "Your Profile" ++msgstr "Perfil" ++ ++#: wp-admin/menu.php:58 wp-includes/js/tinymce/langs/wp-langs.php:290 ++msgid "General" ++msgstr "General" ++ ++#: wp-admin/menu.php:59 ++msgid "Writing" ++msgstr "Escriptura" ++ ++#: wp-admin/menu.php:60 ++msgid "Reading" ++msgstr "Lectura" ++ ++#: wp-admin/menu.php:61 ++msgid "Discussion" ++msgstr "Discussió" ++ ++#: wp-admin/menu.php:62 ++msgid "Privacy" ++msgstr "Privacitat" ++ ++#: wp-admin/menu.php:63 ++msgid "Permalinks" ++msgstr "Enllaços permanents" ++ ++#: wp-admin/menu.php:64 ++msgid "Miscellaneous" ++msgstr "Diversos" ++ ++#: wp-admin/menu.php:67 wp-admin/plugin-editor.php:95 ++msgid "Plugin Editor" ++msgstr "Editor d'extensions" ++ ++#: wp-admin/menu.php:69 ++msgid "Themes" ++msgstr "Temes" ++ ++#: wp-admin/menu.php:70 wp-admin/theme-editor.php:93 ++msgid "Theme Editor" ++msgstr "Editor de temes" ++ ++#: wp-admin/menu.php:140 ++msgid "You do not have sufficient permissions to access this page." ++msgstr "No tens els permisos necessaris per a accedir a aquesta pàgina." ++ ++#: wp-admin/options-discussion.php:4 wp-admin/options-discussion.php:11 ++msgid "Discussion Settings" ++msgstr "Opcions de discussió" ++ ++#: wp-admin/options-discussion.php:16 ++msgid "Default article settings" ++msgstr "Opcions per defecte per a les entrades" ++ ++#: wp-admin/options-discussion.php:20 ++msgid "Attempt to notify any blogs linked to from the article (slows down posting.)" ++msgstr "" ++"Intentar enviament de notificació a tots els blogs enllaçats en l'entrada " ++"(ralenteix la publicació)." ++ ++#: wp-admin/options-discussion.php:24 ++msgid "Allow link notifications from other blogs (pingbacks and trackbacks.)" ++msgstr "" ++"Permetre notificacions d'enllaç des d'altres blogs (retropings i " ++"retroenllaços)." ++ ++#: wp-admin/options-discussion.php:28 ++msgid "Allow people to post comments on the article" ++msgstr "Permetre comentaris a l'entrada" ++ ++#: wp-admin/options-discussion.php:30 ++msgid "These settings may be overridden for individual articles." ++msgstr "Aquests valors es poden modificar per a entrades individuals." ++ ++#: wp-admin/options-discussion.php:34 ++msgid "E-mail me whenever" ++msgstr "Enviar-me un correu electrònic quan" ++ ++#: wp-admin/options-discussion.php:38 ++msgid "Anyone posts a comment" ++msgstr "Algú envia un comentari" ++ ++#: wp-admin/options-discussion.php:42 ++msgid "A comment is held for moderation" ++msgstr "S'ha rebut un comentari per a moderar" ++ ++#: wp-admin/options-discussion.php:46 ++msgid "Before a comment appears" ++msgstr "Per quÚ un comentari aparegui" ++ ++#: wp-admin/options-discussion.php:50 ++msgid "An administrator must always approve the comment" ++msgstr "Un administrador ha d'aprovar el comentari sempre" ++ ++#: wp-admin/options-discussion.php:52 ++msgid "Comment author must fill out name and e-mail" ++msgstr "L'autor del comentari ha d'emplenar el nom i el correu electrònic" ++ ++#: wp-admin/options-discussion.php:54 ++msgid "Comment author must have a previously approved comment" ++msgstr "L'autor del comentari ha de tenir un comentari prÚviament aprovat" ++ ++#: wp-admin/options-discussion.php:58 ++msgid "Comment Moderation" ++msgstr "Moderació de comentaris" ++ ++#: wp-admin/options-discussion.php:60 ++#, php-format ++msgid "" ++"Hold a comment in the queue if it contains %s or more links. (A common " ++"characteristic of comment spam is a large number of hyperlinks.)" ++msgstr "" ++"Mantenir un comentari en espera si conté més de %s enllaços (una " ++"característica comú dels comentaris brossa és el gran nombre d'enllaços)." ++ ++#: wp-admin/options-discussion.php:62 ++msgid "" ++"When a comment contains any of these words in its content, name, URL, e-" ++"mail, or IP, it will be held in the moderation queue. One word or IP per line. It " ++"will match inside words, so \"press\" will match \"WordPress\"." ++msgstr "" ++"Quan un comentari inclogui qualsevol de les segÃŒents paraules en el seu " ++"contingut, nom, URL, correu electrònic, o IP, mantenir-lo en la cua de moderació Una " ++"paraula o IP en cada línia. Es busca dins de cada paraula, així \"press\" " ++"serà identificat en un comentari que contingui \"WordPress\"." ++ ++#: wp-admin/options-discussion.php:69 ++msgid "Comment Blacklist" ++msgstr "Llista negra de comentaris" ++ ++#: wp-admin/options-discussion.php:71 ++msgid "" ++"When a comment contains any of these words in its content, name, URL, e-" ++"mail, or IP, it will be marked as spam. One word or IP per line. It will " ++"match inside words, so \"press\" will match \"WordPress\"." ++msgstr "" ++"Quan un comentari inclogui qualsevol de les segÃŒents paraules en el seu " ++"contingut, nom, URL, correu electrònic, o IP, marcar-lo com a brossa (escriu " ++"cada paraula en una línia diferent). Es busca dins de cada paraula, així " ++"\"press\" serà identificat en un comentari que contingui \"WordPress\"." ++ ++#: wp-admin/options-discussion.php:79 ++msgid "Avatars" ++msgstr "Avatars" ++ ++#: wp-admin/options-discussion.php:81 ++msgid "" ++"By default WordPress uses Gravatars " ++"— short for Globally Recognized Avatars — for the pictures that " ++"show up next to comments. Plugins may override this." ++msgstr "" ++"Per defecte WordPress usa Gravatars " ++"— de l'anglês Globally Recognized Avatars, avatars globalment " ++"reconeguts — per a les imatges que es mostren al costat dels " ++"comentaris. Les extensions poden substituir-ho." ++ ++#: wp-admin/options-discussion.php:87 ++msgid "Avatar display" ++msgstr "Mostrar avatars" ++ ++#: wp-admin/options-discussion.php:90 ++msgid "Don’t show Avatars" ++msgstr "No mostrar els avatars" ++ ++#: wp-admin/options-discussion.php:90 ++msgid "Show Avatars" ++msgstr "Mostrar avatars" ++ ++#: wp-admin/options-discussion.php:99 ++msgid "Maximum Rating" ++msgstr "Puntuació mâxima" ++ ++#: wp-admin/options-discussion.php:103 ++msgid "G — Suitable for all audiences" ++msgstr "G — Adequat per a tots els públics" ++ ++#: wp-admin/options-discussion.php:103 ++msgid "PG — Possibly offensive, usually for audiences 13 and above" ++msgstr "PG — Possiblement ofensiu, usualment per a públic a partir de 13 anys" ++ ++#: wp-admin/options-discussion.php:103 ++msgid "R — Intended for adult audiences above 17" ++msgstr "R — Per a audiência adulta major de 17 anys" ++ ++#: wp-admin/options-discussion.php:103 ++msgid "X — Even more mature than above" ++msgstr "X — Per a un públic encara més madur que l'anterior" ++ ++#: wp-admin/options-general.php:4 wp-admin/options-general.php:11 ++msgid "General Settings" ++msgstr "Opcions generals" ++ ++#: wp-admin/options-general.php:20 ++msgid "Tagline" ++msgstr "Descripció curta" ++ ++#: wp-admin/options-general.php:23 ++msgid "In a few words, explain what this blog is about." ++msgstr "En poques paraules, explicació del que tracta el blog." ++ ++#: wp-admin/options-general.php:26 ++msgid "WordPress address (URL)" ++msgstr "Adreça del WordPress (URL)" ++ ++#: wp-admin/options-general.php:30 ++msgid "Blog address (URL)" ++msgstr "Adreça del blog (URL)" ++ ++#: wp-admin/options-general.php:31 ++msgid "" ++"Enter the address here if you want your blog homepage to be different from the " ++"directory you installed WordPress." ++msgstr "" ++"Si vols que la pàgina principal del blog difereixi del directori en el " ++"qual has instal·lat el WordPress, escriu l'adreça aquí." ++ ++#: wp-admin/options-general.php:34 ++msgid "E-mail address" ++msgstr "Adreça electrònica" ++ ++#: wp-admin/options-general.php:37 ++msgid "This address is used for admin purposes, like new user notification." ++msgstr "" ++"Aquesta adreça s'usa amb fins administratius, com per exemple per tal de " ++"notificar que hi ha nous usuaris." ++ ++#: wp-admin/options-general.php:40 ++msgid "Membership" ++msgstr "Pertinença" ++ ++#: wp-admin/options-general.php:43 ++msgid "Anyone can register" ++msgstr "Qualsevol pot registrar-se" ++ ++#: wp-admin/options-general.php:46 ++msgid "Users must be registered and logged in to comment" ++msgstr "Els usuaris han de registrar-se i identificar-se per a comentar" ++ ++#: wp-admin/options-general.php:51 ++msgid "New User Default Role" ++msgstr "Rol inicial dels nous usuaris" ++ ++#: wp-admin/options-general.php:57 ++msgid "Timezone" ++msgstr "Zona horària" ++ ++#: wp-admin/options-general.php:79 ++#, php-format ++msgid "UTC %s" ++msgstr "UTC %s" ++ ++#: wp-admin/options-general.php:83 ++msgid "hours" ++msgstr "hores" ++ ++#: wp-admin/options-general.php:84 ++#, php-format ++msgid "UTC time is %s" ++msgstr "" ++"L'hora UTC és %s" ++ ++#: wp-admin/options-general.php:84 wp-admin/options-general.php:85 ++msgid "Y-m-d G:i:s" ++msgstr "Y-m-d G:i:s" ++ ++#: wp-admin/options-general.php:85 ++#, php-format ++msgid "UTC %1$s is %2$s" ++msgstr "UTC %1$s és %2$s" ++ ++#: wp-admin/options-general.php:86 ++msgid "" ++"Unfortunately, you have to manually update this for Daylight Savings Time. " ++"Lame, we know, but will be fixed in the future." ++msgstr "" ++"Desgraciadament, has d'ajustar manualment el canvi d'hora d'estiu i hivern. " ++"Sí, això és certament rudimentari, ja ho corregirem en el futur." ++ ++#: wp-admin/options-general.php:90 ++msgid "Date Format" ++msgstr "Format de data" ++ ++#: wp-admin/options-general.php:92 wp-admin/options-general.php:97 ++msgid "Output:" ++msgstr "Mostra:" ++ ++#: wp-admin/options-general.php:95 ++msgid "Time Format" ++msgstr "Format d'hora" ++ ++#: wp-admin/options-general.php:98 ++msgid "" ++"Documentation on date formatting. Click \"Save Changes\" to update " ++"sample output." ++msgstr "" ++"Documentació " ++"sobre el format de la data. Clica a \"Desar els canvis\" per a " ++"actualitzar l'exemple." ++ ++#: wp-admin/options-general.php:101 ++msgid "Week Starts On" ++msgstr "La setmana comença en" ++ ++#: wp-admin/options-head.php:4 ++msgid "Settings saved." ++msgstr "Opcions desades." ++ ++#: wp-admin/options-misc.php:4 wp-admin/options-misc.php:12 ++msgid "Miscellaneous Settings" ++msgstr "Opcions diverses" ++ ++#: wp-admin/options-misc.php:15 ++msgid "Uploading" ++msgstr "Pujar fitxers" ++ ++#: wp-admin/options-misc.php:18 ++msgid "Store uploads in this folder" ++msgstr "Desar els fitxers pujats a aquesta carpeta" ++ ++#: wp-admin/options-misc.php:21 ++msgid "Default is wp-content/uploads" ++msgstr "Per defecte és wp-content/uploads" ++ ++#: wp-admin/options-misc.php:26 ++msgid "Full URL path to files (optional)" ++msgstr "Adreça URL completa dels fitxers (opcional)" ++ ++#: wp-admin/options-misc.php:35 ++msgid "Organize my uploads into month- and year-based folders" ++msgstr "Organitzar els meus fitxers en carpetes per mes i any" ++ ++#: wp-admin/options-misc.php:41 ++msgid "Image sizes" ++msgstr "Mides de la matge" ++ ++#: wp-admin/options-misc.php:42 ++msgid "" ++"The sizes listed below determine the maximum dimensions to use when " ++"inserting an image into the body of a post." ++msgstr "" ++"Les mides d'aquí sota determinen les dimensions màximes que cal usar quan " ++"s'insereix una imatge en una entrada." ++ ++#: wp-admin/options-misc.php:46 ++msgid "Thumbnail size" ++msgstr "Mida de la miniatura" ++ ++#: wp-admin/options-misc.php:48 ++msgid "Width" ++msgstr "Amplada" ++ ++#: wp-admin/options-misc.php:50 ++msgid "Height" ++msgstr "Alçada" ++ ++#: wp-admin/options-misc.php:53 ++msgid "Crop thumbnail to exact dimensions (normally thumbnails are proportional)" ++msgstr "" ++"Retallar la miniatura a la mida exacta (normalment les miniatures són " ++"proporcionades)" ++ ++#: wp-admin/options-misc.php:57 ++msgid "Medium size" ++msgstr "Mida del mÚdia" ++ ++#: wp-admin/options-misc.php:59 ++msgid "Max Width" ++msgstr "Amplada mâxima" ++ ++#: wp-admin/options-misc.php:61 ++msgid "Max Height" ++msgstr "Alçada mâxima" ++ ++#: wp-admin/options-misc.php:75 ++msgid "Track Links’ Update Times" ++msgstr "Comprovar l'actualització de les pàgines web enllaçades" ++ ++#: wp-admin/options-misc.php:84 ++msgid "Use legacy my-hacks.php file support" ++msgstr "Utilitzar suport per a l'antic arxiu my-hacks.php" ++ ++#: wp-admin/options-permalink.php:4 ++msgid "Permalink Settings" ++msgstr "Opcions d'enllaços permanents" ++ ++#: wp-admin/options-permalink.php:105 ++msgid "You should update your .htaccess now." ++msgstr "Ara hauries d'actualitzar el teu .htaccess." ++ ++#: wp-admin/options-permalink.php:107 ++msgid "Permalink structure updated." ++msgstr "Estructura d'enllaços permanents actualitzada." ++ ++#: wp-admin/options-permalink.php:112 ++msgid "Customize Permalink Structure" ++msgstr "Personalitzar l'estructura dels enllaços permanents" ++ ++#: wp-admin/options-permalink.php:115 ++msgid "" ++"By default WordPress uses web URLs which have question marks and lots of numbers in them, " ++"however WordPress offers you the ability to create a custom URL structure " ++"for your permalinks and archives. This can improve the aesthetics, " ++"usability, and forward-compatibility of your links. A number of tags are available, and here " ++"are some examples to get you started." ++msgstr "" ++"Per defecte el WordPress fa servir URLs amb signes d'interrogació i moltes " ++"xifres, encara que s'ofereix la possibilitat de crear una estructura d'URL " ++"per als teus enllaços permanents i arxius. Això pot millorar estÚtica, " ++"usabilitat i durabilitat dels teus enllaços. Hi ha disponibles algunes etiquetes i aquí " ++"hi ha alguns exemples per començar." ++ ++#: wp-admin/options-permalink.php:130 ++msgid "Common settings" ++msgstr "Opcions generals" ++ ++#: wp-admin/options-permalink.php:133 ++msgid "Default" ++msgstr "Predeterminada" ++ ++#: wp-admin/options-permalink.php:137 ++msgid "Day and name" ++msgstr "Dia i nom" ++ ++#: wp-admin/options-permalink.php:141 ++msgid "Month and name" ++msgstr "Mes i nom" ++ ++#: wp-admin/options-permalink.php:145 ++msgid "Numeric" ++msgstr "NumÚrica" ++ ++#: wp-admin/options-permalink.php:155 ++msgid "Custom Structure" ++msgstr "Estructura personalitzada" ++ ++#: wp-admin/options-permalink.php:164 ++msgid "Optional" ++msgstr "Opcional" ++ ++#: wp-admin/options-permalink.php:166 ++msgid "" ++"If you like, you may enter custom structures for your category and tag URLs here. For example, using " ++"/topics/ as your category base would make your category links " ++"like http://example.org/topics/uncategorized/. If you leave " ++"these blank the defaults will be used." ++msgstr "" ++"Si vols, aquí pots establir un prefix personalitzat per a les URL de les teves categories i " ++"etiquetes. Per exemple, /taxonomia com a base de categoria " ++"faria els teus enllaços de la categoria 'general' com http://exemple." ++"org/taxonomia/general/. Si ho deixes en blanc s'usarà l'opció per " ++"defecte." ++ ++#: wp-admin/options-permalink.php:168 ++msgid "" ++"If you like, you may enter custom structures for your category and tag URLs here. For example, using " ++"/topics/ as your category base would make your category links " ++"like http://example.org/index.php/topics/uncategorized/. If you " ++"leave these blank the defaults will be used." ++msgstr "" ++"Si vols, aquí pots establir un prefix personalitzat per a les URL de les teves categories i " ++"etiquetes. Per exemple, /taxonomia/ com a base de categoria " ++"faria els teus enllaços de categoria com http://exemple.org/index.php/" ++"taxonomia/general/. Si ho deixes en blanc s'usarà l'opció per defecte." ++ ++#: wp-admin/options-permalink.php:173 ++msgid "Category base" ++msgstr "Categoria base" ++ ++#: wp-admin/options-permalink.php:177 ++msgid "Tag base" ++msgstr "Etiqueta base" ++ ++#: wp-admin/options-permalink.php:184 ++msgid "" ++"If your .htaccess file were writable, we could do this " ++"automatically, but it isn’t so these are the mod_rewrite rules you " ++"should have in your .htaccess file. Click in the field and " ++"press CTRL + a to select all." ++msgstr "" ++"Si el teu arxiu .htaccess tingués permís d'escriptura podriem " ++"fer-ho automàticament però, com que no en té, aquestes són les regles de " ++"mod_rewrite que has de tenir al teu arxiu .htaccess. Clica en " ++"el camp i pressiona CTRL + a per a seleccionar-ho tot." ++ ++#: wp-admin/options.php:47 ++msgid "All Settings" ++msgstr "Totes les opcions" ++ ++#: wp-admin/options-privacy.php:4 wp-admin/options-privacy.php:11 ++msgid "Privacy Settings" ++msgstr "Opcions de privacitat" ++ ++#: wp-admin/options-privacy.php:16 ++msgid "Blog Visibility" ++msgstr "Visibilitat del blog" ++ ++#: wp-admin/options-privacy.php:19 ++msgid "" ++"I would like my blog to be visible to everyone, including search engines " ++"(like Google, Sphere, Technorati) and archivers" ++msgstr "" ++"Desitjo que el meu blog sigui visible per tothom, incloent cercadors (com " ++"Google, Sphere, Technorati) i arxivadors" ++ ++#: wp-admin/options-privacy.php:21 ++msgid "I would like to block search engines, but allow normal visitors" ++msgstr "Desitjo bloquejar els cercadors, però permetre visites normals" ++ ++#: wp-admin/options-reading.php:4 wp-admin/options-reading.php:11 ++msgid "Reading Settings" ++msgstr "Opcions de lectura" ++ ++#: wp-admin/options-reading.php:17 ++msgid "Front page displays" ++msgstr "La pàgina inicial mostra" ++ ++#: wp-admin/options-reading.php:21 ++msgid "Your latest posts" ++msgstr "Les teves últimes entrades" ++ ++#: wp-admin/options-reading.php:26 ++#, php-format ++msgid "A static page (select below)" ++msgstr "Una pàgina estàtica (seleccionar a continuació)" ++ ++#: wp-admin/options-reading.php:30 ++#, php-format ++msgid "Front page: %s" ++msgstr "Pàgina inicial: %s" ++ ++#: wp-admin/options-reading.php:31 ++#, php-format ++msgid "Posts page: %s" ++msgstr "Pàgina d'entrades: %s" ++ ++#: wp-admin/options-reading.php:36 ++msgid "Warning: these pages should not be the same!" ++msgstr "AdvertÚncia: aquestes pàgines haurien de ser diferents!" ++ ++#: wp-admin/options-reading.php:44 ++msgid "Blog pages show at most" ++msgstr "Les pàgines mostren com a màxim" ++ ++#: wp-admin/options-reading.php:46 wp-admin/options-reading.php:51 ++msgid "posts" ++msgstr "entrades" ++ ++#: wp-admin/options-reading.php:50 ++msgid "Syndication feeds show the most recent" ++msgstr "Els fils de RSS mostren les més recents" ++ ++#: wp-admin/options-reading.php:54 ++msgid "For each article in a feed, show" ++msgstr "Per a cada entrada en el fil, mostrar" ++ ++#: wp-admin/options-reading.php:56 ++msgid "Full text" ++msgstr "Text complet" ++ ++#: wp-admin/options-reading.php:57 ++msgid "Summary" ++msgstr "Sumari" ++ ++#: wp-admin/options-reading.php:62 ++msgid "Encoding for pages and feeds" ++msgstr "Codificació per a pàgines i fils de RSS" ++ ++#: wp-admin/options-reading.php:64 ++msgid "" ++"The character encoding you write your blog in (UTF-8 is recommended)" ++msgstr "" ++"La codificació de caràcters que fas servir al teu blog (UTF-8 és la recomanada)" ++ ++#: wp-admin/options-writing.php:4 wp-admin/options-writing.php:11 ++msgid "Writing Settings" ++msgstr "Opcions d'escriptura" ++ ++#: wp-admin/options-writing.php:17 ++msgid "Size of the post box" ++msgstr "Grandària de la caixa de text per l'entrada" ++ ++#: wp-admin/options-writing.php:19 ++msgid "lines" ++msgstr "línies" ++ ++#: wp-admin/options-writing.php:22 ++msgid "Formatting" ++msgstr "Format" ++ ++#: wp-admin/options-writing.php:26 ++msgid "" ++"Convert emoticons like :-) and :-P to graphics on " ++"display" ++msgstr "" ++"Convertir emoticones com :-) i :-P a gràfics en " ++"pantalla" ++ ++#: wp-admin/options-writing.php:27 ++msgid "WordPress should correct invalidly nested XHTML automatically" ++msgstr "El WordPress ha de corregir automàticament l'XHTML incorrectament escrit" ++ ++#: wp-admin/options-writing.php:31 ++msgid "Default Post Category" ++msgstr "Categoria per defecte" ++ ++#: wp-admin/options-writing.php:45 ++msgid "Default Link Category" ++msgstr "Categoria d'enllaços per defecte" ++ ++#: wp-admin/options-writing.php:60 ++msgid "Post via e-mail" ++msgstr "Fer entrades per correu electrònic" ++ ++#: wp-admin/options-writing.php:61 ++#, php-format ++msgid "" ++"To post to WordPress by e-mail you must set up a secret e-mail account with " ++"POP3 access. Any mail received at this address will be posted, so it’s " ++"a good idea to keep this address very secret. Here are three random strings " ++"you could use: %s, %s, %s." ++msgstr "" ++"Per escriure al WordPress mitjançant el correu electrònic cal que facis un " ++"compte de correu secret amb accés POP3. Tot el correu rebut en aquesta " ++"adreça es publicarà. Seria molt convenient que mantinguessis secreta aquesta " ++"adreça. Aquí tens tres cadenes aleatòries que pots utilitzar com a nom de " ++"compte: %s, %s, %s." ++ ++#: wp-admin/options-writing.php:65 ++msgid "Mail Server" ++msgstr "Servidor de correu" ++ ++#: wp-admin/options-writing.php:67 ++msgid "Port" ++msgstr "Port" ++ ++#: wp-admin/options-writing.php:72 ++msgid "Login Name" ++msgstr "Nom d'usuari" ++ ++#: wp-admin/options-writing.php:82 ++msgid "Default Mail Category" ++msgstr "Categoria per defecte per a les entrades fetes per correu electrònic" ++ ++#: wp-admin/options-writing.php:97 ++msgid "Update Services" ++msgstr "Serveis d'actualització" ++ ++#: wp-admin/options-writing.php:101 ++msgid "" ++"When you publish a new post, WordPress automatically notifies the following " ++"site update services. For more about this, see Update Services on the Codex. Separate " ++"multiple service URLs with " ++"line breaks." ++msgstr "" ++"Quan publiques una nova entrada, el WordPress ho notifica automàticament als " ++"segÃŒents serveis d'actualització. Per a més informació vés a Serveis d'actualizació al " ++"Codex. Escriu cada URL en una línia diferent." ++ ++#: wp-admin/options-writing.php:107 ++#, php-format ++msgid "" ++"WordPress is not notifying any Update Services because of your blog's privacy settings." ++msgstr "" ++"WordPress no notifica cap servei d'actualització a causa de les teves opcions de privacitat." ++ ++#: wp-admin/page-new.php:3 ++msgid "New Page" ++msgstr "Pàgina nova" ++ ++#: wp-admin/page-new.php:17 ++msgid "Page saved." ++msgstr "Pàgina desada." ++ ++#: wp-admin/page-new.php:17 ++msgid "Manage pages" ++msgstr "Gestió de pàgines" ++ ++#: wp-admin/page.php:71 ++msgid "You attempted to edit a page that doesn't exist. Perhaps it was deleted?" ++msgstr "Has provat d'editar una pàgina que no existeix. Potser ha sigut esborrada?" ++ ++#: wp-admin/page.php:86 ++#, php-format ++msgid "Warning: %s is currently editing this page" ++msgstr "Atenció: ara %s està editant aquesta pàgina" ++ ++#: wp-admin/plugin-editor.php:4 ++msgid "Edit Plugins" ++msgstr "Editar extensions" ++ ++#: wp-admin/plugin-editor.php:30 wp-admin/theme-editor.php:44 ++msgid "You do not have sufficient permissions to edit templates for this blog." ++msgstr "No tens prou permisos com per a editar les plantilles d'aquest blog." ++ ++#: wp-admin/plugin-editor.php:56 ++msgid "You do not have sufficient permissions to edit plugins for this blog." ++msgstr "No tens prou permisos com per a editar les extensions d'aquest blog." ++ ++#: wp-admin/plugin-editor.php:84 wp-admin/theme-editor.php:85 ++msgid "File edited successfully." ++msgstr "Fitxer editat correctament." ++ ++#: wp-admin/plugin-editor.php:86 ++msgid "" ++"This plugin has been deactivated because your changes resulted in a " ++"fatal error." ++msgstr "" ++"L'extensió s'ha desactivat perquÚ els teus canvis han provocat un " ++"error fatal." ++ ++#: wp-admin/plugin-editor.php:102 ++#, php-format ++msgid "Editing %s (active)" ++msgstr "Editant %s (actiu)" ++ ++#: wp-admin/plugin-editor.php:104 ++#, php-format ++msgid "Browsing %s (active)" ++msgstr "Veient %s (actiu)" ++ ++#: wp-admin/plugin-editor.php:107 ++#, php-format ++msgid "Editing %s (inactive)" ++msgstr "Editant %s (inactiu)" ++ ++#: wp-admin/plugin-editor.php:109 ++#, php-format ++msgid "Browsing %s (inactive)" ++msgstr "Veient %s (inactiu)" ++ ++#: wp-admin/plugin-editor.php:117 ++msgid "Plugin Files" ++msgstr "Fitxers d'extensions" ++ ++#: wp-admin/plugin-editor.php:135 ++msgid "" ++"Warning: Making changes to active plugins is not " ++"recommended. If your changes cause a fatal error, the plugin will be " ++"automatically deactivated." ++msgstr "" ++"AdvertÚncia: No es recomana de fer canvis a extensions " ++"actives. Si els canvis produeixen un error fatal l'extensió serà " ++"automàticament desactivada." ++ ++#: wp-admin/plugin-editor.php:140 ++msgid "Update File and Attempt to Reactivate" ++msgstr "Actualitzar el fitxer i provar de reactivar-lo" ++ ++#: wp-admin/plugin-editor.php:142 wp-admin/theme-editor.php:162 ++msgid "Update File" ++msgstr "Actualitzar el fitxer" ++ ++#: wp-admin/plugin-editor.php:146 wp-admin/theme-editor.php:166 ++msgid "" ++"You need to make this file writable before you can save your changes. See the Codex " ++"for more information." ++msgstr "" ++"Has de donar permís d'escriptura a aquest arxiu abans de desar els canvis. " ++"Llegeix el Còdex (en anglÚs) per a més informació." ++ ++#: wp-admin/plugin-editor.php:151 wp-admin/theme-editor.php:172 ++msgid "Oops, no such file exists! Double check the name and try again, merci." ++msgstr "El fitxer no existeix! Comprova el nom i torna-ho a provar, merci." ++ ++#: wp-admin/plugins.php:39 ++msgid "Manage Plugins" ++msgstr "Gestionar extensions" ++ ++#: wp-admin/plugins.php:47 ++msgid "" ++"Plugin could not be activated because it triggered a fatal error." ++msgstr "" ++"L'extensió no ha sigut activada perquÚ ha provocat un error fatal." ++ ++#: wp-admin/plugins.php:57 ++msgid "" ++"Some plugins could not be reactivated because they triggered a fatal " ++"error." ++msgstr "" ++"Algunes extensions no han sigut activades perquÚ han provocat un " ++"error fatal." ++ ++#: wp-admin/plugins.php:59 ++msgid "Plugin activated." ++msgstr "Extensió activada." ++ ++#: wp-admin/plugins.php:61 ++msgid "Plugin deactivated." ++msgstr "Extensió desactivada." ++ ++#: wp-admin/plugins.php:63 ++msgid "All plugins deactivated." ++msgstr "Totes les extensions desactivades." ++ ++#: wp-admin/plugins.php:65 ++msgid "Plugins reactivated." ++msgstr "Extensió reactivada." ++ ++#: wp-admin/plugins.php:69 ++msgid "Plugin Management" ++msgstr "Gestió d'extensions" ++ ++#: wp-admin/plugins.php:70 ++msgid "" ++"Plugins extend and expand the functionality of WordPress. Once a plugin is " ++"installed, you may activate it or deactivate it here." ++msgstr "" ++"Les extensions amplien les possibilitats del WordPress. Una vegada " ++"instal·lades, les pots activar o desactivar aquí." ++ ++#: wp-admin/plugins.php:77 ++msgid "Couldn’t open plugins directory or there are no plugins available." ++msgstr "" ++"No ha sigut possible obrir el directori de les extensions o no hi ha " ++"extensions disponibles." ++ ++#: wp-admin/plugins.php:89 ++msgid "Deactivate All Plugins" ++msgstr "Desactivar totes les extensions" ++ ++#: wp-admin/plugins.php:93 ++msgid "Reactivate Plugins" ++msgstr "Reactivar extensions" ++ ++#: wp-admin/plugins.php:106 wp-includes/js/tinymce/langs/wp-langs.php:242 ++msgid "Plugin" ++msgstr "Extensió" ++ ++#: wp-admin/plugins.php:107 wp-includes/js/tinymce/langs/wp-langs.php:244 ++msgid "Version" ++msgstr "Versió" ++ ++#: wp-admin/plugins.php:121 ++msgid "Deactivate this plugin" ++msgstr "Desactivar aquesta extensió" ++ ++#: wp-admin/plugins.php:121 ++msgid "Deactivate" ++msgstr "Desactivar" ++ ++#: wp-admin/plugins.php:124 ++msgid "Activate this plugin" ++msgstr "Activar aquesta extensió" ++ ++#: wp-admin/plugins.php:124 ++msgid "Activate" ++msgstr "Activar" ++ ++#: wp-admin/plugins.php:127 ++msgid "Open this file in the Plugin Editor" ++msgstr "Obrir aquest fitxer en l'editor d'extensions" ++ ++#: wp-admin/plugins.php:136 ++#, php-format ++msgid "By %s" ++msgstr "Per %s" ++ ++#: wp-admin/plugins.php:150 ++msgid "Active" ++msgstr "Actiu" ++ ++#: wp-admin/plugins.php:152 ++msgid "Inactive" ++msgstr "Inactiu" ++ ++#: wp-admin/plugins.php:169 ++#, php-format ++msgid "" ++"If something goes wrong with a plugin and you can’t use WordPress, " ++"delete or rename that file in the %s directory and it will be " ++"automatically deactivated." ++msgstr "" ++"Si apareix un error en una extensió i no pots usar WordPress, elimina o " ++"canvia el nom de l'arxiu en el directori %s i es desactivarà " ++"automàticament." ++ ++#: wp-admin/plugins.php:171 ++msgid "Get More Plugins" ++msgstr "Més extensions" ++ ++#: wp-admin/plugins.php:172 ++msgid "" ++"You can find additional plugins for your site in the WordPress plugin directory." ++msgstr "" ++"Pots trobar extensions addicionals per a la teva pàgina web al directori de plugins de WordPress (en anglÚs)." ++ ++#: wp-admin/plugins.php:173 ++#, php-format ++msgid "" ++"To install a plugin you generally just need to upload the plugin file into " ++"your %s directory. Once a plugin is uploaded, you may activate " ++"it here." ++msgstr "" ++"Per a instal·lar una extensió normalment només cal pujar l'arxiu al " ++"directori %s. Un cop pujada l'extensió, la pots activar aquí " ++"mateix." ++ ++#: wp-admin/post-new.php:3 ++msgid "Create New Post" ++msgstr "Crear una nova entrada" ++ ++#: wp-admin/post-new.php:17 ++#, php-format ++msgid "" ++"Since you’re a newcomer, you’ll have to wait for an admin to add " ++"the edit_posts capability to your user, in order to be " ++"authorized to post.
    \n" ++"You can also
    e-mail the admin " ++"to ask for a promotion.
    \n" ++"When you’re promoted, just reload this page and you’ll be able " ++"to blog. :)" ++msgstr "" ++"Ets un nouvingut i cal que esperis que un administrador t'atribueixi la " ++"capacitat edit_posts, que t'autoritzarà per a publicar.
    \n" ++"També pots enviar un correu de " ++"l'administrador per demanar una promoció.
    \n" ++"Podràs publicar des d'aquesta mateixa pàgina, torna-la a carregar en tenir " ++"l'aprovació. :)" ++ ++#: wp-admin/post.php:78 ++msgid "You attempted to edit a post that doesn't exist. Perhaps it was deleted?" ++msgstr "Has provat d'editar una entrada que no existeix. Potser ha sigut esborrada?" ++ ++#: wp-admin/post.php:93 ++#, php-format ++msgid "Warning: %s is currently editing this post" ++msgstr "Atenció: ara %s està editant aquesta entrada" ++ ++#: wp-admin/sidebar.php:15 ++msgid "WordPress › Posted" ++msgstr "WordPress › Publicat" ++ ++#: wp-admin/sidebar.php:22 ++msgid "Posted !" ++msgstr "Publicat !" ++ ++#: wp-admin/sidebar.php:23 ++#, php-format ++msgid "Click here to post again." ++msgstr "Clica aquí per a tornar-ho a publicar." ++ ++#: wp-admin/sidebar.php:33 ++msgid "WordPress › Sidebar" ++msgstr "WordPress › Barra lateral" ++ ++#: wp-admin/sidebar.php:63 wp-content/plugins/akismet/akismet.php:807 ++#: wp-includes/widgets.php:410 wp-includes/widgets.php:492 ++#: wp-includes/widgets.php:531 wp-includes/widgets.php:559 ++#: wp-includes/widgets.php:779 wp-includes/widgets.php:916 ++#: wp-includes/widgets.php:975 wp-includes/widgets.php:1349 ++msgid "Title:" ++msgstr "Títol:" ++ ++#: wp-admin/sidebar.php:66 wp-content/themes/classic/sidebar.php:10 ++msgid "Categories:" ++msgstr "Categories:" ++ ++#: wp-admin/theme-editor.php:4 ++msgid "Edit Themes" ++msgstr "Editar els temes" ++ ++#: wp-admin/theme-editor.php:24 ++msgid "The requested theme does not exist." ++msgstr "El tema que demanes no existeix." ++ ++#: wp-admin/theme-editor.php:68 ++msgid "You do not have sufficient permissions to edit themes for this blog." ++msgstr "No tens els permisos necessaris per a editar els temes del blog." ++ ++#: wp-admin/theme-editor.php:95 ++msgid "Select theme to edit:" ++msgstr "Selecciona el tema per a editar:" ++ ++#: wp-admin/theme-editor.php:107 ++msgid "Select" ++msgstr "Seleccionar" ++ ++#: wp-admin/theme-editor.php:118 ++msgid "Theme Files" ++msgstr "Arxius del tema" ++ ++#: wp-admin/theme-editor.php:123 ++msgid "Templates" ++msgstr "Plantilles" ++ ++#: wp-admin/theme-editor.php:134 ++msgid "Styles|Theme stylesheets in theme editor" ++msgstr "Estils" ++ ++#: wp-admin/themes.php:14 ++msgid "Manage Themes" ++msgstr "Gestió dels temes" ++ ++#: wp-admin/themes.php:20 ++msgid "The active theme is broken. Reverting to the default theme." ++msgstr "El tema actiu està fet malbé. Cal tornar enrere cap al tema per defecte." ++ ++#: wp-admin/themes.php:22 ++#, php-format ++msgid "New theme activated. Visit site" ++msgstr "Nou tema activat. Veure el web" ++ ++#: wp-admin/themes.php:31 ++msgid "Current Theme" ++msgstr "Tema actual" ++ ++#: wp-admin/themes.php:34 ++msgid "Current theme preview" ++msgstr "Vista prÚvia del tema actual" ++ ++#: wp-admin/themes.php:36 ++#, php-format ++msgid "%1$s %2$s by %3$s|1: theme title, 2: theme version, 3: theme author" ++msgstr "%1$s %2$s per %3$s|1: theme title, 2: theme version, 3: theme author" ++ ++#: wp-admin/themes.php:39 ++#, php-format ++msgid "" ++"The template files are located in %2$s. The stylesheet files " ++"are located in %3$s. %4$s uses templates from " ++"%5$s. Changes made to the templates will affect both " ++"themes." ++msgstr "" ++"Els arxius de les plantilles són a %2$s. Els arxius de fulls " ++"d'estil són a %3$s. %4$s fan servir plantilles " ++"de %5$s. Els canvis que facis a les plantilles afectaran " ++"ambdós temes." ++ ++#: wp-admin/themes.php:41 ++#, php-format ++msgid "All of this theme’s files are located in %2$s." ++msgstr "Tots els arxius d'aquest tema són a %2$s." ++ ++#: wp-admin/themes.php:44 wp-admin/themes.php:82 ++msgid "Tags:" ++msgstr "Etiquetes:" ++ ++#: wp-admin/themes.php:48 ++msgid "Available Themes" ++msgstr "Temes disponibles" ++ ++#: wp-admin/themes.php:95 ++msgid "Broken Themes" ++msgstr "Temes fets malbé" ++ ++#: wp-admin/themes.php:96 ++msgid "" ++"The following themes are installed but incomplete. Themes must have a " ++"stylesheet and a template." ++msgstr "" ++"Aquests temes s'han instal·lat al blog de manera incompleta. Els temes han " ++"de tenir un full d'estil i una plantilla." ++ ++#: wp-admin/themes.php:126 ++msgid "Get More Themes" ++msgstr "Aconsegueix més temes" ++ ++#: wp-admin/themes.php:127 ++msgid "" ++"You can find additional themes for your site in the WordPress theme directory. To install a " ++"theme you generally just need to upload the theme folder into your wp-" ++"content/themes directory. Once a theme is uploaded, you should see it " ++"on this page." ++msgstr "" ++"Pots trobar més temes per al teu blog al Wiki dels traductors de WordPress al català i al directori de temes per al " ++"WordPress (en anglÚs). Per a instal·lar un tema cal que el descarreguis " ++"dins al teu directori (o carpeta) wp-content/themes. Quan ho " ++"hagis fet, podràs activar-lo des d'aquí mateix." ++ ++#: wp-admin/update-links.php:6 ++msgid "Feature disabled." ++msgstr "Característica desactivada." ++ ++#: wp-admin/update-links.php:11 ++msgid "No links" ++msgstr "No hi ha enllaços" ++ ++#: wp-admin/update.php:6 ++msgid "You do not have sufficient permissions to update plugins for this blog." ++msgstr "No tens prou permisos com per a actualitzar les extensions d'aquest blog." ++ ++#: wp-admin/update.php:40 ++msgid "" ++"Error: There was an error connecting to the server, Please " ++"verify the settings are correct." ++msgstr "" ++"Error: Hi ha hagut un error intentant conectar amb el " ++"servidor. Sisplau comprova que les dades de connexió són correctes." ++ ++#: wp-admin/update.php:44 ++msgid "FTP Connection Information" ++msgstr "Informació de connexió FTP" ++ ++#: wp-admin/update.php:45 ++msgid "To perform the requested update, FTP connection information is required." ++msgstr "" ++"Per a efectuar l'actualització demanada, es necessita informació de connexió " ++"FTP." ++ ++#: wp-admin/update.php:48 ++msgid "Hostname:" ++msgstr "Nom del host:" ++ ++#: wp-admin/update.php:52 ++msgid "Username:" ++msgstr "Nom d'usuari:" ++ ++#: wp-admin/update.php:56 wp-includes/post-template.php:527 ++msgid "Password:" ++msgstr "Contrasenya:" ++ ++#: wp-admin/update.php:57 ++msgid "(Password not shown)" ++msgstr "(La contrasenya no es mostrarà)" ++ ++#: wp-admin/update.php:60 ++msgid "Use SSL:" ++msgstr "Usar SSL:" ++ ++#: wp-admin/update.php:74 ++msgid "Proceed" ++msgstr "Procedir" ++ ++#: wp-admin/update.php:105 wp-admin/update.php:135 ++msgid "Upgrade Plugin" ++msgstr "Actualitzar l'extensió" ++ ++#: wp-admin/update.php:121 ++msgid "Plugin upgraded successfully" ++msgstr "Extensió actualitzada correctament" ++ ++#: wp-admin/update.php:123 ++msgid "Attempting reactivation of the plugin" ++msgstr "Intentant reactivar l'extensió" ++ ++#: wp-admin/update.php:152 ++msgid "Plugin Reactivation" ++msgstr "Reactivació d'extensions" ++ ++#: wp-admin/update.php:161 ++msgid "Plugin reactivated successfully." ++msgstr "Extensió reactivada correctament." ++ ++#: wp-admin/update.php:164 ++msgid "Plugin failed to reactivate due to a fatal error." ++msgstr "L'extensió no ha sigut reactivada perquÚ ha provocat un error fatal." ++ ++#: wp-admin/upgrade.php:20 ++msgid "WordPress › Upgrade" ++msgstr "WordPress » Actualització" ++ ++#: wp-admin/upgrade.php:28 ++msgid "No Upgrade Required" ++msgstr "No és necessari actualitzar" ++ ++#: wp-admin/upgrade.php:29 ++msgid "Your WordPress database is already up-to-date!" ++msgstr "La teva base de dades de WordPress ja està al dia!" ++ ++#: wp-admin/upgrade.php:39 ++msgid "Database Upgrade Required" ++msgstr "Es necessita actualitzar la base de dades" ++ ++#: wp-admin/upgrade.php:40 ++msgid "" ++"Your WordPress database is out-of-date, and must be upgraded before you can " ++"continue." ++msgstr "" ++"La teva base de dades de WordPress ja no és actual i s'ha de posar al dia " ++"abans de continuar." ++ ++#: wp-admin/upgrade.php:41 ++msgid "The upgrade process may take a while, so please be patient." ++msgstr "L'actualització pot durar una estona, sisplau tingues paciÚncia." ++ ++#: wp-admin/upgrade.php:42 ++msgid "Upgrade WordPress" ++msgstr "Actualitzar el WordPress" ++ ++#: wp-admin/upgrade.php:55 ++msgid "Upgrade Complete" ++msgstr "Actualització completa" ++ ++#: wp-admin/upgrade.php:56 ++msgid "Your WordPress database has been successfully upgraded!" ++msgstr "La teva base de dades de WordPress ha sigut actualitzada amb Úxit!" ++ ++#: wp-admin/upgrade.php:61 ++#, php-format ++msgid "%s queries" ++msgstr "%s consultes" ++ ++#: wp-admin/upgrade.php:63 ++#, php-format ++msgid "%s seconds" ++msgstr "%s segons" ++ ++#: wp-admin/upload.php:59 ++msgid "Manage Media|manage media header" ++msgstr "Gestionar els mÚdia" ++ ++#: wp-admin/upload.php:114 ++msgid "Your media has been saved." ++msgstr "Els teus mêdia ha sigun desats." ++ ++#: wp-admin/upload.php:114 ++msgid "View media" ++msgstr "Veure mÚdia" ++ ++#: wp-admin/upload.php:114 ++msgid "Edit media" ++msgstr "Editar mÚdia" ++ ++#: wp-admin/upload.php:118 ++msgid "Media updated." ++msgstr "MÚdia actualitzat." ++ ++#: wp-admin/upload.php:119 ++msgid "Media deleted." ++msgstr "MÚdia esborrat." ++ ++#: wp-admin/user-edit.php:63 wp-admin/user-edit.php:142 ++msgid "Edit User" ++msgstr "Editar l'usuari" ++ ++#: wp-admin/user-edit.php:81 ++msgid "Invalid user ID." ++msgstr "ID d'usuari és invàlid." ++ ++#: wp-admin/user-edit.php:98 wp-admin/user-edit.php:117 ++msgid "You do not have permission to edit this user." ++msgstr "No tens permís per a editar l'usuari." ++ ++#: wp-admin/user-edit.php:124 ++msgid "User updated." ++msgstr "Usuari actualitzat." ++ ++#: wp-admin/user-edit.php:126 ++msgid "« Back to Authors and Users" ++msgstr "« Tornar a autors i usuaris" ++ ++#: wp-admin/user-edit.php:142 ++msgid "Your Profile and Personal Options" ++msgstr "El teu perfil i les teves opcions personals" ++ ++#: wp-admin/user-edit.php:154 ++msgid "Personal Options" ++msgstr "Opcions personals" ++ ++#: wp-admin/user-edit.php:159 ++msgid "Visual Editor" ++msgstr "Editor visual" ++ ++#: wp-admin/user-edit.php:160 ++msgid "Use the visual editor when writing" ++msgstr "Utilitzar l'editor visual per a escriure" ++ ++#: wp-admin/user-edit.php:164 ++msgid "Admin Color Scheme" ++msgstr "Joc de colors de l'administrador" ++ ++#: wp-admin/user-edit.php:199 ++msgid "Your username cannot be changed" ++msgstr "El teu nom d'usuari no es pot canviar" ++ ++#: wp-admin/user-edit.php:203 ++msgid "Role:" ++msgstr "Rol:" ++ ++#: wp-admin/user-edit.php:220 wp-admin/user-edit.php:222 ++msgid "— No role for this blog —" ++msgstr "— Cap rol en aquest blog —" ++ ++#: wp-admin/user-edit.php:228 ++msgid "First name" ++msgstr "Nom propi" ++ ++#: wp-admin/user-edit.php:233 ++msgid "Last name" ++msgstr "Cognoms" ++ ++#: wp-admin/user-edit.php:238 ++msgid "Nickname" ++msgstr "Àlies" ++ ++#: wp-admin/user-edit.php:243 ++msgid "Display name publicly as" ++msgstr "Mostrar el nom públicament com a" ++ ++#: wp-admin/user-edit.php:266 ++msgid "Contact Info" ++msgstr "Informació de contacte" ++ ++#: wp-admin/user-edit.php:271 ++msgid "Required" ++msgstr "Necessari" ++ ++#: wp-admin/user-edit.php:275 wp-admin/users.php:421 ++#: wp-content/themes/classic/comments.php:57 ++msgid "Website" ++msgstr "Lloc web" ++ ++#: wp-admin/user-edit.php:280 ++msgid "AIM" ++msgstr "AIM" ++ ++#: wp-admin/user-edit.php:285 ++msgid "Yahoo IM" ++msgstr "Yahoo IM" ++ ++#: wp-admin/user-edit.php:290 ++msgid "Jabber / Google Talk" ++msgstr "Jabber / Google Talk" ++ ++#: wp-admin/user-edit.php:295 ++msgid "About Yourself" ++msgstr "Sobre tu" ++ ++#: wp-admin/user-edit.php:295 ++msgid "About the user" ++msgstr "Quant a l'usuari" ++ ++#: wp-admin/user-edit.php:299 ++msgid "Biographical Info" ++msgstr "Informació biogràfica" ++ ++#: wp-admin/user-edit.php:300 ++msgid "" ++"Share a little biographical information to fill out your profile. This may " ++"be shown publicly." ++msgstr "" ++"Afegeix també alguna informació biogràfica al teu perfil. Podrà mostrar-se " ++"públicament." ++ ++#: wp-admin/user-edit.php:308 ++msgid "New Password:" ++msgstr "Contrasenya nova:" ++ ++#: wp-admin/user-edit.php:309 ++msgid "" ++"If you would like to change the password type a new one. Otherwise leave " ++"this blank." ++msgstr "" ++"Si vols canviar la contrasenya, tecleja'n una de nova. Si no ho vols, " ++"simplement deixa-ho en blanc." ++ ++#: wp-admin/user-edit.php:310 ++msgid "Type your new password again." ++msgstr "Tecleja la teva nova contrasenya un altre cop." ++ ++#: wp-admin/user-edit.php:312 ++msgid "Password Strength:" ++msgstr "Fiabilitat de la contrasenya:" ++ ++#: wp-admin/user-edit.php:313 wp-includes/script-loader.php:124 ++msgid "Too short" ++msgstr "Massa curta" ++ ++#: wp-admin/user-edit.php:313 ++msgid "" ++"Hint: Use upper and lower case characters, numbers and symbols like !\"?$%" ++"^&( in your password." ++msgstr "" ++"Indicació: usa majúscules, minúscules, xifres i signes com !\"?$%^&( en " ++"la contrasenya." ++ ++#: wp-admin/user-edit.php:332 ++msgid "Additional Capabilities:" ++msgstr "CompetÚncies addicionals:" ++ ++#: wp-admin/user-edit.php:350 ++msgid "Update Profile" ++msgstr "Actualitzar el perfil" ++ ++#: wp-admin/user-edit.php:350 ++msgid "Update User" ++msgstr "Actualitzar l'usuari" ++ ++#: wp-admin/users.php:41 ++msgid "You can’t edit users." ++msgstr "No pots editar usuaris." ++ ++#: wp-admin/users.php:47 ++msgid "You can’t edit that user." ++msgstr "No pots editar aquest usuari." ++ ++#: wp-admin/users.php:73 wp-admin/users.php:114 ++msgid "You can’t delete users." ++msgstr "No pots esborrar usuaris." ++ ++#: wp-admin/users.php:81 ++msgid "You can’t delete that user." ++msgstr "No pots esborrar aquest usuari." ++ ++#: wp-admin/users.php:125 ++msgid "Delete Users" ++msgstr "Esborrar usuaris" ++ ++#: wp-admin/users.php:126 ++msgid "You have specified these users for deletion:" ++msgstr "Has dit que vols esborrar aquests usuaris:" ++ ++#: wp-admin/users.php:133 ++#, php-format ++msgid "ID #%1s: %2s The current user will not be deleted." ++msgstr "ID #%1s: %2s Aquest usuari no es pot esborrar." ++ ++#: wp-admin/users.php:135 ++#, php-format ++msgid "ID #%1s: %2s" ++msgstr "ID #%1s: %2s" ++ ++#: wp-admin/users.php:148 ++msgid "What should be done with posts and links owned by this user?" ++msgstr "QuÚ vols fer amb els apunts que va publicar l'usuari?" ++ ++#: wp-admin/users.php:151 ++msgid "Delete all posts and links." ++msgstr "Esborrar tots els apunts i enllaços." ++ ++#: wp-admin/users.php:153 ++msgid "Attribute all posts and links to:" ++msgstr "Passar tots els apunts i enllaços a:" ++ ++#: wp-admin/users.php:156 ++msgid "Confirm Deletion" ++msgstr "Confirma que vols esborrar-ho" ++ ++#: wp-admin/users.php:158 ++msgid "There are no valid users selected for deletion." ++msgstr "No has seleccionat cap usuari que es pugui esborrar." ++ ++#: wp-admin/users.php:170 ++msgid "You can’t create users." ++msgstr "No pots crear usuaris." ++ ++#: wp-admin/users.php:204 ++#, php-format ++msgid "%s user deleted" ++msgid_plural "%s users deleted" ++msgstr[0] "%s usuari esborrat" ++msgstr[1] "%s usuaris esborrats" ++ ++#: wp-admin/users.php:209 ++msgid "New user created." ++msgstr "Usuari creat." ++ ++#: wp-admin/users.php:214 ++msgid "Changed roles." ++msgstr "Rol canviat." ++ ++#: wp-admin/users.php:219 ++msgid "The current user's role must have user editing capabilities." ++msgstr "Cal que el rol de l'usuari tingui permís per a editar." ++ ++#: wp-admin/users.php:220 ++msgid "Other user roles have been changed." ++msgstr "S'han canviat altres rols d'usuari." ++ ++#: wp-admin/users.php:225 ++msgid "You can't delete the current user." ++msgstr "No pots esborrar l'usuari." ++ ++#: wp-admin/users.php:226 ++msgid "Other users have been deleted." ++msgstr "Altres usuaris esborrats." ++ ++#: wp-admin/users.php:246 ++#, php-format ++msgid "Users Matching \"%s\"" ++msgstr "Usuaris contenint \"%s\"" ++ ++#: wp-admin/users.php:248 ++msgid "Manage Users" ++msgstr "Gestió d'usuaris" ++ ++#: wp-admin/users.php:269 ++msgid "All Users" ++msgstr "Tots els usuaris" ++ ++#: wp-admin/users.php:282 ++#, php-format ++msgid "%1$s (%2$s)|user role with count" ++msgstr "%1$s (%2$s)|user role with count" ++ ++#: wp-admin/users.php:291 ++msgid "Search Users" ++msgstr "Cercar usuaris" ++ ++#: wp-admin/users.php:302 ++msgid "Change role to…" ++msgstr "Canviar el rol a…" ++ ++#: wp-admin/users.php:327 ++msgid "« Back to All Users" ++msgstr "« Tornar a tots els usuaris" ++ ++#: wp-admin/users.php:337 wp-admin/users.php:435 ++msgid "Role" ++msgstr "Rol" ++ ++#: wp-admin/users.php:383 ++msgid "Add New User" ++msgstr "Crear un nou usuari" ++ ++#: wp-admin/users.php:397 ++#, php-format ++msgid "" ++"Users can register themselves or you can manually " ++"create users here." ++msgstr "" ++"Els usuaris poden registrar-se ells mateixos, o els " ++"pots crear manualment des d'aquí." ++ ++#: wp-admin/users.php:399 ++#, php-format ++msgid "" ++"Users cannot currently register themselves, but you can " ++"manually create users here." ++msgstr "" ++"Els usuaris no poden registrar-se ells mateixos, però " ++"els pots crear manualment des d'aquí." ++ ++#: wp-admin/users.php:405 ++msgid "Username (required)" ++msgstr "Nom d'usuari (necessari)" ++ ++#: wp-admin/users.php:409 ++msgid "First Name" ++msgstr "Nom" ++ ++#: wp-admin/users.php:413 ++msgid "Last Name" ++msgstr "Cognoms" ++ ++#: wp-admin/users.php:417 ++msgid "E-mail (required)" ++msgstr "Correu electrònic (necessari)" ++ ++#: wp-admin/users.php:427 ++msgid "Password (twice)" ++msgstr "Contrasenya (dues vegades)" ++ ++#: wp-admin/users.php:448 ++msgid "Add User" ++msgstr "Afegir un usuari" ++ ++#: wp-admin/widgets.php:13 wp-admin/widgets.php:233 ++#: wp-includes/functions.php:1538 ++msgid "Widgets" ++msgstr "Widgets" ++ ++#: wp-admin/widgets.php:28 ++msgid "No Sidebars Defined" ++msgstr "No s'ha definit cap barra lateral" ++ ++#: wp-admin/widgets.php:32 ++msgid "" ++"You are seeing this message because the theme you are currently using " ++"isn’t widget-aware, meaning that it has no sidebars that you are able " ++"to change. For information on making your theme widget-aware, please follow these instructions." ++msgstr "" ++"Estàs veient aquest missatge perquÚ el tema que actualment utilitzes no " ++"funciona bé amb widgets, no té cap barra lateral que puguis adaptar. Per més " ++"informació sobre com fer funcionar un tema amb widgets, sisplau segueix aquestes " ++"instruccions (en anglÚs)." ++ ++#: wp-admin/widgets.php:131 wp-admin/widgets.php:143 ++msgid "Add Widget" ++msgstr "Afegir widget" ++ ++#: wp-admin/widgets.php:185 ++#, php-format ++msgid "You are using %1$s widget in the \"%2$s\" sidebar." ++msgid_plural "You are using %1$s widgets in the \"%2$s\" sidebar." ++msgstr[0] "Estàs usant %1$s widget a la barra lateral \"%2$s\"." ++msgstr[1] "Estàs usant %1$s widgets a la barra lateral \"%2$s\"." ++ ++#: wp-admin/widgets.php:187 ++#, php-format ++msgid "You are using %1$s widget in the sidebar." ++msgid_plural "You are using %1$s widgets in the sidebar." ++msgstr[0] "Estàs usant %1$s widget a la barra lateral." ++msgstr[1] "Estàs usant %1$s widgets a la barra lateral." ++ ++#: wp-admin/widgets.php:209 ++msgid "Show any widgets" ++msgstr "Mostrar tots els widgets" ++ ++#: wp-admin/widgets.php:209 ++msgid "Show all widgets" ++msgstr "Mostrar tots els widgets" ++ ++#: wp-admin/widgets.php:210 ++msgid "Show unused widgets" ++msgstr "Mostrar els widgets no usats" ++ ++#: wp-admin/widgets.php:211 ++msgid "Show used widgets" ++msgstr "Mostrar els widgets usats" ++ ++#: wp-admin/widgets.php:218 ++msgid "Changes saved." ++msgstr "Canvis desats." ++ ++#: wp-admin/widgets.php:236 ++msgid "Search Widgets" ++msgstr "Cercar widgets" ++ ++#: wp-admin/widgets.php:241 ++msgid "Available Widgets" ++msgstr "Widgets disponibles" ++ ++#: wp-admin/widgets.php:257 ++msgid "Current Widgets" ++msgstr "Widgets actuals" ++ ++#: wp-admin/widgets.php:292 ++msgid "Add more from the Available Widgets section." ++msgstr "Se'n poden afegir des de la secció de widgets disponibles." ++ ++#: wp-app.php:168 wp-app.php:203 ++msgid "Sorry, you do not have the right to access this blog." ++msgstr "Ho sento, no tens permís per a accedir a aquest blog." ++ ++#: wp-app.php:256 ++msgid "Sorry, you do not have the right to edit/publish new posts." ++msgstr "No tens permisos per a editar/publicar una entrada nova." ++ ++#: wp-app.php:281 wp-app.php:448 wp-app.php:599 xmlrpc.php:1018 ++#: xmlrpc.php:1338 ++msgid "Sorry, your entry could not be posted. Something wrong happened." ++msgstr "Desgraciadament l'entrada no s'ha pogut publicar per algun problema tÚcnic." ++ ++#: wp-app.php:299 ++msgid "Sorry, you do not have the right to access this post." ++msgstr "Ho sento, no tens permís per a accedir a aquesta entrada." ++ ++#: wp-app.php:327 wp-app.php:473 wp-app.php:535 wp-app.php:570 xmlrpc.php:1054 ++msgid "Sorry, you do not have the right to edit this post." ++msgstr "No tens permís per a editar aquesta entrada." ++ ++#: wp-app.php:356 wp-app.php:489 xmlrpc.php:1070 ++msgid "For some strange yet very annoying reason, this post could not be edited." ++msgstr "Per algun motiu estrany i molest aquesta entrada no s'ha pogut publicar." ++ ++#: wp-app.php:370 wp-app.php:504 xmlrpc.php:1101 ++msgid "Sorry, you do not have the right to delete this post." ++msgstr "No tens autorització per a eliminar aquesta entrada." ++ ++#: wp-app.php:379 wp-app.php:520 xmlrpc.php:1106 ++msgid "For some strange yet very annoying reason, this post could not be deleted." ++msgstr "Per algun motiu estrany i molest aquesta entrada no s'ha pogut esborrar." ++ ++#: wp-app.php:390 ++msgid "Sorry, you do not have permission to upload files." ++msgstr "No tens permisos per a pujar fitxers." ++ ++#: wp-app.php:511 wp-app.php:542 wp-app.php:577 ++msgid "Error ocurred while accessing post metadata for file location." ++msgstr "S'ha produït un error en accedir a les metadades de posició del fitxer." ++ ++#: wp-comments-post.php:21 ++msgid "Sorry, comments are closed for this item." ++msgstr "Disculpa, els comentaris estan tancats." ++ ++#: wp-comments-post.php:46 ++msgid "Sorry, you must be logged in to post a comment." ++msgstr "Disculpa, has d'identificar-te per a escriure un comentari." ++ ++#: wp-comments-post.php:53 ++msgid "Error: please fill the required fields (name, email)." ++msgstr "Error: sisplau, completa els camps necessaris (nom, correu electrònic)." ++ ++#: wp-comments-post.php:55 ++msgid "Error: please enter a valid email address." ++msgstr "Error: sisplau, introdueix un correu electrònic vàlid." ++ ++#: wp-comments-post.php:59 ++msgid "Error: please type a comment." ++msgstr "Error: sisplau, escriu el teu comentari." ++ ++#: wp-content/plugins/akismet/akismet.php:41 ++#: wp-content/plugins/akismet/akismet.php:115 ++msgid "Akismet Configuration" ++msgstr "Configuració d'Akismet" ++ ++#: wp-content/plugins/akismet/akismet.php:102 ++msgid "Your key has been cleared." ++msgstr "La teva clau ha sigut esborrada." ++ ++#: wp-content/plugins/akismet/akismet.php:103 ++msgid "Your key has been verified. Happy blogging!" ++msgstr "La teva clau ha siguit verificada. Que bloguis de gust!" ++ ++#: wp-content/plugins/akismet/akismet.php:104 ++msgid "The key you entered is invalid. Please double-check it." ++msgstr "La teva clau és invàlida. Sisplau comprova-la." ++ ++#: wp-content/plugins/akismet/akismet.php:105 ++msgid "" ++"The key you entered could not be verified because a connection to akismet." ++"com could not be established. Please check your server configuration." ++msgstr "" ++"La clau que has introduït no ha pogut ser verificada perquÚ no s'ha pogut " ++"establir una connexió amb akismet.com. Sisplau comprova la configuració del " ++"teu servidor." ++ ++#: wp-content/plugins/akismet/akismet.php:106 ++msgid "" ++"There was a problem connecting to the Akismet server. Please check your " ++"server configuration." ++msgstr "" ++"S'ha produït un error en connectar amb el servidor d'Akismet. Sisplau " ++"comprova la configuració del teu servidor." ++ ++#: wp-content/plugins/akismet/akismet.php:107 ++#, php-format ++msgid "" ++"Please enter an API key. (Get your key.)" ++msgstr "" ++"Sisplau entra una clau d'API. (Obtenir " ++"una clau (en anglÚs).)" ++ ++#: wp-content/plugins/akismet/akismet.php:108 ++msgid "This key is valid." ++msgstr "La clau és vàlida." ++ ++#: wp-content/plugins/akismet/akismet.php:109 ++msgid "" ++"The key below was previously validated but a connection to akismet.com can " ++"not be established at this time. Please check your server configuration." ++msgstr "" ++"La clau segÃŒent ha pogut ser verificada però ara no s'ha pogut establir cap " ++"connexió amb akismet.com. Sisplau comprova la configuració del teu servidor." ++ ++#: wp-content/plugins/akismet/akismet.php:112 ++#: wp-content/themes/default/functions.php:357 ++msgid "Options saved." ++msgstr "Opcions desades." ++ ++#: wp-content/plugins/akismet/akismet.php:119 ++#, php-format ++msgid "" ++"For many people, Akismet will greatly reduce or even " ++"completely eliminate the comment and trackback spam you get on your site. If " ++"one does happen to get through, simply mark it as \"spam\" on the moderation " ++"screen and Akismet will learn from the mistakes. If you don't have a " ++"WordPress.com account yet, you can get one at WordPress." ++"com." ++msgstr "" ++"Akismet reduirà considerablement o fins i tot eliminarà " ++"del tota la brossa de comentaris i retroenllaços que arriba al lloc web. Si " ++"es cola algun missatge no desitjat, només has de marcar-lo com a \"brossa\" " ++"en la pantalla de moderació i Akismet ho aprendrà. Si encara no diposes d'un " ++"compte d'usuari de WordPress.com, pots obrir-ne un a WordPress.com." ++ ++#: wp-content/plugins/akismet/akismet.php:122 ++msgid "WordPress.com API Key" ++msgstr "Clau d'API del WordPress" ++ ++#: wp-content/plugins/akismet/akismet.php:126 ++msgid "What is this?" ++msgstr "QuÚ és això?" ++ ++#: wp-content/plugins/akismet/akismet.php:128 ++msgid "Why might my key be invalid?" ++msgstr "Per quins motius pot ser invàlida la meva clau?" ++ ++#: wp-content/plugins/akismet/akismet.php:129 ++msgid "" ++"This can mean one of two things, either you copied the key wrong or that the " ++"plugin is unable to reach the Akismet servers, which is most often caused by " ++"an issue with your web host around firewalls or similar." ++msgstr "" ++"Una de dos, o bé has copiat la clau malament o bé l'extensió és incapaç " ++"d'accedir als servidors d'Akismet, la qual cosa normalment és causa d'un " ++"problema amb firewalls o similars en el teu proveïdor de web." ++ ++#: wp-content/plugins/akismet/akismet.php:132 ++msgid "Automatically discard spam comments on posts older than a month." ++msgstr "" ++"Automàticament rebutjar com a brossa comentaris en entrades de fa més d'un " ++"mes." ++ ++#: wp-content/plugins/akismet/akismet.php:133 ++msgid "Update options »" ++msgstr "Actualitzar opcions »" ++ ++#: wp-content/plugins/akismet/akismet.php:154 ++msgid "Akismet is almost ready." ++msgstr "Akismet està gairebé llest." ++ ++#: wp-content/plugins/akismet/akismet.php:154 ++#, php-format ++msgid "" ++"You must enter your WordPress.com API key for it to " ++"work." ++msgstr "" ++"Cal que introdueixis la teva clau d'API del WordPress.com per tal que funcioni." ++ ++#: wp-content/plugins/akismet/akismet.php:326 ++#, php-format ++msgid "Akismet Spam (%s)" ++msgstr "Brossa a Akismet (%s)" ++ ++#: wp-content/plugins/akismet/akismet.php:328 ++#: wp-content/plugins/akismet/akismet.php:330 ++msgid "Akismet Spam" ++msgstr "Brossa a Akismet" ++ ++#: wp-content/plugins/akismet/akismet.php:339 ++#: wp-content/plugins/akismet/akismet.php:358 ++msgid "You do not have sufficient permission to moderate comments." ++msgstr "No tens els permisos necessaris per a moderar comentaris." ++ ++#: wp-content/plugins/akismet/akismet.php:370 ++#, php-format ++msgid "%1$s comments recovered." ++msgstr "%1$s comentaris restablerts." ++ ++#: wp-content/plugins/akismet/akismet.php:374 ++msgid "All spam deleted." ++msgstr "Esborrat tot el correu brossa." ++ ++#: wp-content/plugins/akismet/akismet.php:422 ++msgid "Caught Spam" ++msgstr "Brossa bloquejada" ++ ++#: wp-content/plugins/akismet/akismet.php:427 ++#, php-format ++msgid "" ++"Akismet has caught %1$s spam for you since you first " ++"installed it." ++msgstr "" ++"Akismet ha bloquejat %1$s missatges brossa des que ho vas " ++"activar." ++ ++#: wp-content/plugins/akismet/akismet.php:434 ++msgid "You have no spam currently in the queue. Must be your lucky day. :)" ++msgstr "En aquest moment no tens brossa a la cua. Potser és el teu dia de sort. :)" ++ ++#: wp-content/plugins/akismet/akismet.php:437 ++msgid "" ++"You can delete all of the spam from your database with a single click. This " ++"operation cannot be undone, so you may wish to check to ensure that no " ++"legitimate comments got through first. Spam is automatically deleted after " ++"15 days, so don’t sweat it." ++msgstr "" ++"Pots esborrar tota la brossa de la base de dades amb un sol clic. Aquesta " ++"operació no pot ser corregida, pel que tal vegada vulguis assegurar-te " ++"primer que no s'ha colat cap comentari autÚntic. La brossa s'esborra " ++"automàticament cada quinze dies, no et preocupis." ++ ++#: wp-content/plugins/akismet/akismet.php:443 ++#: wp-content/plugins/akismet/akismet.php:621 ++#, php-format ++msgid "There are currently %1$s comments identified as spam." ++msgstr "En aquest moment hi ha %1$s comentaris identificats com a brossa." ++ ++#: wp-content/plugins/akismet/akismet.php:443 ++#: wp-content/plugins/akismet/akismet.php:621 ++msgid "Delete all" ++msgstr "Esborrar-los tots" ++ ++#: wp-content/plugins/akismet/akismet.php:450 ++#: wp-content/themes/classic/sidebar.php:16 wp-includes/widgets.php:445 ++#: wp-includes/widgets.php:1379 ++msgid "Search" ++msgstr "Cercar" ++ ++#: wp-content/plugins/akismet/akismet.php:452 ++msgid "" ++"These are the latest comments identified as spam by Akismet. If you see any " ++"mistakes, simply mark the comment as \"not spam\" and Akismet will learn " ++"from the submission. If you wish to recover a comment from spam, simply " ++"select the comment, and click Not Spam. After 15 days we clean out the junk " ++"for you." ++msgstr "" ++"Aquests són els últims comentaris identificats com a brossa per l'Akismet. " ++"Si trobes algun error, només has de marcar-lo com \"No és brossa\" i Akismet " ++"ho aprendrà en rebre-ho. Si vols recuperar un comentari, selecciona'l i fes " ++"clic a \"No és brossa\". Després de 15 dies, les escombraries desapareixeran " ++"soles." ++ ++#: wp-content/plugins/akismet/akismet.php:483 ++msgid "All" ++msgstr "Qualsevol" ++ ++#: wp-content/plugins/akismet/akismet.php:506 ++msgid "Search Spam »" ++msgstr "Buscar missatges brossa »" ++ ++#: wp-content/plugins/akismet/akismet.php:513 ++#: wp-content/plugins/akismet/akismet.php:580 ++msgid "« Previous Page" ++msgstr "« Pàgina prÚvia" ++ ++#: wp-content/plugins/akismet/akismet.php:534 ++#: wp-content/plugins/akismet/akismet.php:601 ++msgid "Next Page »" ++msgstr "Pàgina segÃŒent »" ++ ++#: wp-content/plugins/akismet/akismet.php:556 ++msgid "IP:" ++msgstr "IP:" ++ ++#: wp-content/plugins/akismet/akismet.php:562 ++msgid "Not Spam" ++msgstr "No és brossa" ++ ++#: wp-content/plugins/akismet/akismet.php:568 ++msgid "View Post" ++msgstr "Veure entrada" ++ ++#: wp-content/plugins/akismet/akismet.php:607 ++msgid "De-spam marked comments »" ++msgstr "Els comentaris indicats no són brossa »" ++ ++#: wp-content/plugins/akismet/akismet.php:609 ++msgid "" ++"Comments you de-spam will be submitted to Akismet as mistakes so it can " ++"learn and get better." ++msgstr "" ++"Comentaris que tu requalifiquis com a no-brossa seran enviats a Akismet com " ++"a falles per tal de poder-ne aprendre." ++ ++#: wp-content/plugins/akismet/akismet.php:645 ++#, php-format ++msgid "" ++"Akismet has protected your site from %3" ++"$s spam comments." ++msgstr "" ++"Akismet ha protegit el teu lloc de %3" ++"$s comentaris brossa." ++ ++#: wp-content/plugins/akismet/akismet.php:660 ++#, php-format ++msgid "" ++"Akismet has protected your site from %2$s spam comment " ++"already," ++msgid_plural "" ++"Akismet has protected your site from %2$s spam comments " ++"already," ++msgstr[0] "" ++"Akismet ja ha protegit el teu lloc d'%2$s comentari " ++"brossa," ++msgstr[1] "" ++"Akismet ja ha protegit el teu lloc de %2$s comentaris " ++"brossa," ++ ++#: wp-content/plugins/akismet/akismet.php:665 ++#, php-format ++msgid "Akismet blocks spam from getting to your blog," ++msgstr "Akismet bloqueja la brossa del teu blog," ++ ++#: wp-content/plugins/akismet/akismet.php:670 ++#, php-format ++msgid "and there's %1$s comment in your spam queue right now." ++msgid_plural "" ++"and there are %1$s comments in your spam queue right " ++"now." ++msgstr[0] "" ++"i en aquest moment hi ha %1$s comentari a la teva cua " ++"de brossa." ++msgstr[1] "" ++"i en aquest moment hi ha %1$s comentaris a la teva cua " ++"de brossa." ++ ++#: wp-content/plugins/akismet/akismet.php:675 ++#, php-format ++msgid "but there's nothing in your spam queue at the moment." ++msgstr "" ++"però no hi ha res a la cua de correu brossa en aquest " ++"moment." ++ ++#: wp-content/plugins/akismet/akismet.php:678 ++#, php-format ++msgid "%1$s %2$s|akismet_rightnow" ++msgstr "%1$s %2$s|akismet_rightnow" ++ ++#: wp-content/plugins/akismet/akismet.php:693 ++msgid "Recheck Queue for Spam" ++msgstr "Comprovar altre cop la brossa a la cua d'espera" ++ ++#: wp-content/plugins/akismet/akismet.php:708 ++msgid "Check for Spam" ++msgstr "Comprovar la brossa" ++ ++#: wp-content/plugins/akismet/akismet.php:775 ++#, php-format ++msgid "%1$s %2$sspam comments%3$s %4$sblocked by%5$s
    %6$sAkismet%7$s" ++msgstr "%1$s %2$scomentaris brossa%3$s %4$sbloquejats per%5$s
    %6$sAkismet%7$s" ++ ++#: wp-content/plugins/akismet/akismet.php:837 ++msgid "spam comments" ++msgstr "comentaris brossa" ++ ++#: wp-content/plugins/akismet/akismet.php:837 ++msgid "blocked by" ++msgstr "bloquejat per" ++ ++#: wp-content/themes/classic/comments.php:2 ++msgid "Enter your password to view comments." ++msgstr "Escriu la teva contrasenya per a veure els comentaris." ++ ++#: wp-content/themes/classic/comments.php:5 ++#: wp-includes/comment-template.php:394 ++msgid "No Comments" ++msgstr "No hi ha comentaris" ++ ++#: wp-content/themes/classic/comments.php:5 ++#: wp-includes/comment-template.php:396 ++msgid "1 Comment" ++msgstr "1 comentari" ++ ++#: wp-content/themes/classic/comments.php:5 ++#: wp-includes/comment-template.php:392 ++msgid "% Comments" ++msgstr "% comentaris" ++ ++#: wp-content/themes/classic/comments.php:7 ++#: wp-content/themes/classic/comments.php:36 ++#: wp-content/themes/classic/comments-popup.php:55 ++msgid "Leave a comment" ++msgstr "Deixa un comentari" ++ ++#: wp-content/themes/classic/comments.php:18 ++#: wp-content/themes/classic/comments-popup.php:45 ++msgid "Trackback" ++msgstr "Retroenllaç" ++ ++#: wp-content/themes/classic/comments.php:18 ++#: wp-content/themes/classic/comments-popup.php:45 ++msgid "Pingback" ++msgstr "Retroping" ++ ++#: wp-content/themes/classic/comments.php:18 ++#: wp-content/themes/classic/comments-popup.php:45 ++msgid "by" ++msgstr "per" ++ ++#: wp-content/themes/classic/comments.php:18 ++#: wp-content/themes/classic/index.php:11 ++msgid "Edit This" ++msgstr "Editar això" ++ ++#: wp-content/themes/classic/comments.php:26 ++#: wp-content/themes/classic/comments-popup.php:51 ++msgid "No comments yet." ++msgstr "Encara no hi ha comentaris." ++ ++#: wp-content/themes/classic/comments.php:29 ++#: wp-content/themes/classic/comments-popup.php:24 ++msgid "" ++"RSS feed for comments on " ++"this post." ++msgstr "" ++"Suscripció RSS " ++"als comentaris de l'entrada." ++ ++#: wp-content/themes/classic/comments.php:31 ++msgid "TrackBack URL" ++msgstr "URL per a retroenllaç" ++ ++#: wp-content/themes/classic/comments.php:39 ++#, php-format ++msgid "You must be logged in to post a comment." ++msgstr "" ++"Disculpa, has d'identificar-te per a escriure un " ++"comentari." ++ ++#: wp-content/themes/classic/comments.php:46 ++#: wp-content/themes/classic/comments-popup.php:60 ++#, php-format ++msgid "Logged in as %s." ++msgstr "Registrat com a %s." ++ ++#: wp-content/themes/classic/comments.php:46 ++#: wp-content/themes/classic/comments-popup.php:60 ++msgid "Log out of this account" ++msgstr "Sortir del compte" ++ ++#: wp-content/themes/classic/comments.php:46 ++#: wp-content/themes/classic/comments-popup.php:60 ++msgid "Log out »" ++msgstr "Sortir »" ++ ++#: wp-content/themes/classic/comments.php:51 ++#: wp-content/themes/classic/comments.php:54 ++msgid "(required)" ++msgstr "(necessari)" ++ ++#: wp-content/themes/classic/comments.php:54 ++msgid "Mail (will not be published)" ++msgstr "Adreça electrònica (no es farà pública)" ++ ++#: wp-content/themes/classic/comments.php:61 ++#, php-format ++msgid "You can use these tags: %s" ++msgstr "Pots usar aquestes etiquetes: %s" ++ ++#: wp-content/themes/classic/comments.php:65 ++msgid "Submit Comment" ++msgstr "Enviar el comentari" ++ ++#: wp-content/themes/classic/comments.php:75 ++#: wp-content/themes/classic/comments-popup.php:92 ++msgid "Sorry, the comment form is closed at this time." ++msgstr "Ho sento, el formulari de comentaris està tancat en aquest moment." ++ ++#: wp-content/themes/classic/comments-popup.php:27 ++msgid "" ++"The URL to TrackBack this " ++"entry is:" ++msgstr "" ++"El URL per " ++"a fer retroenllaç d'aquesta entrada és:" ++ ++#: wp-content/themes/classic/comments-popup.php:56 ++msgid "" ++"Line and paragraph breaks automatic, e-mail address never displayed, " ++"HTML allowed:" ++msgstr "" ++"Canvi automàtic de línia i de paràgraf. No es mostrarà l'adreça de correu " ++"electrònic, HTML admÚs:" ++ ++#: wp-content/themes/classic/comments-popup.php:76 ++msgid "URL" ++msgstr "URL" ++ ++#: wp-content/themes/classic/comments-popup.php:81 ++msgid "Your Comment" ++msgstr "El teu comentari" ++ ++#: wp-content/themes/classic/comments-popup.php:87 ++msgid "Say It!" ++msgstr "Diga-ho!" ++ ++#: wp-content/themes/classic/comments-popup.php:97 ++msgid "Close this window." ++msgstr "Tancar la finestra." ++ ++#: wp-content/themes/classic/comments-popup.php:105 ++#, php-format ++msgid "" ++"Powered by WordPress" ++msgstr "" ++"Funcionant amb el WordPress" ++ ++#: wp-content/themes/classic/comments-popup.php:105 ++#: wp-content/themes/classic/footer.php:6 ++#: wp-content/themes/classic/sidebar.php:33 wp-includes/widgets.php:514 ++msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform." ++msgstr "" ++"Funcionant amb el WordPress, plataforma semàntica de publicació personal de " ++"primer ordre." ++ ++#: wp-content/themes/classic/footer.php:6 ++#, php-format ++msgid "" ++"Powered by WordPress" ++msgstr "" ++"Funcionant amb el WordPress" ++ ++#: wp-content/themes/classic/index.php:11 ++msgid "Filed under:" ++msgstr "Classificat com a:" ++ ++#: wp-content/themes/classic/index.php:11 ++msgid "Tags: " ++msgstr "Etiquetes: " ++ ++#: wp-content/themes/classic/index.php:14 ++msgid "(more...)" ++msgstr "(més...)" ++ ++#: wp-content/themes/classic/index.php:19 ++msgid "Comments (0)" ++msgstr "Comentaris (0)" ++ ++#: wp-content/themes/classic/index.php:19 ++msgid "Comments (1)" ++msgstr "Comentaris (1)" ++ ++#: wp-content/themes/classic/index.php:19 ++msgid "Comments (%)" ++msgstr "Comentaris (%)" ++ ++#: wp-content/themes/classic/index.php:27 ++msgid "Sorry, no posts matched your criteria." ++msgstr "Ho sento, no hi ha cap entrada que coincideixi amb el criteri especificat." ++ ++#: wp-content/themes/classic/index.php:30 ++msgid "« Older Posts" ++msgstr "« Entrades anteriors" ++ ++#: wp-content/themes/classic/index.php:30 ++msgid "Newer Posts »" ++msgstr "Entrades posteriors »" ++ ++#: wp-content/themes/classic/sidebar.php:8 wp-includes/post-template.php:162 ++msgid "Pages:" ++msgstr "Pàgines:" ++ ++#: wp-content/themes/classic/sidebar.php:12 ++msgid "Search:" ++msgstr "Cercar:" ++ ++#: wp-content/themes/classic/sidebar.php:20 ++msgid "Archives:" ++msgstr "Arxius:" ++ ++#: wp-content/themes/classic/sidebar.php:25 ++msgid "Meta:" ++msgstr "Meta:" ++ ++#: wp-content/themes/classic/sidebar.php:29 ++msgid "Syndicate this site using RSS" ++msgstr "Sindicar aquest lloc fent servir RSS" ++ ++#: wp-content/themes/classic/sidebar.php:29 ++msgid "RSS" ++msgstr "RSS" ++ ++#: wp-content/themes/classic/sidebar.php:30 wp-includes/widgets.php:513 ++msgid "The latest comments to all posts in RSS" ++msgstr "Últims comentaris a totes les entrades en RSS" ++ ++#: wp-content/themes/classic/sidebar.php:30 wp-includes/widgets.php:513 ++msgid "Comments RSS" ++msgstr "" ++"RSS dels " ++"comentaris" ++ ++#: wp-content/themes/classic/sidebar.php:31 ++msgid "This page validates as XHTML 1.0 Transitional" ++msgstr "Aquesta pàgina compleix amb XHTML 1.0 Transicional" ++ ++#: wp-content/themes/classic/sidebar.php:31 ++msgid "Valid XHTML" ++msgstr "" ++"XHTML " ++"vàlid" ++ ++#: wp-content/themes/default/functions.php:147 ++msgid "Customize Header" ++msgstr "Personalitzar la capçalera" ++ ++#: wp-content/themes/default/functions.php:147 ++#: wp-content/themes/default/functions.php:361 ++msgid "Header Image and Color" ++msgstr "Imatge i color de la capçalera" ++ ++#: wp-content/themes/default/functions.php:160 ++msgid "Close Color Picker" ++msgstr "Tancar la finestra d'escollir colors" ++ ++#: wp-content/themes/default/functions.php:375 ++msgid "Font Color:" ++msgstr "Color de font:" ++ ++#: wp-content/themes/default/functions.php:375 ++#, php-format ++msgid "Any CSS color (%s or %s or %s)" ++msgstr "Qualsevol color de CSS (%s o %s o %s)" ++ ++#: wp-content/themes/default/functions.php:376 ++msgid "Upper Color:" ++msgstr "Color superior:" ++ ++#: wp-content/themes/default/functions.php:376 ++#: wp-content/themes/default/functions.php:377 ++#, php-format ++msgid "HEX only (%s or %s)" ++msgstr "Només HEX (%s o %s)" ++ ++#: wp-content/themes/default/functions.php:377 ++msgid "Lower Color:" ++msgstr "Color inferior:" ++ ++#: wp-content/themes/default/functions.php:379 ++msgid "Toggle Text" ++msgstr "Mostrar/amagar text" ++ ++#: wp-content/themes/default/functions.php:380 ++msgid "Use Defaults" ++msgstr "Usar valors per defecte" ++ ++#: wp-content/themes/default/functions.php:389 ++msgid "Font Color" ++msgstr "Color de font" ++ ++#: wp-content/themes/default/functions.php:390 ++msgid "Upper Color" ++msgstr "Color superior" ++ ++#: wp-content/themes/default/functions.php:391 ++msgid "Lower Color" ++msgstr "Color inferior" ++ ++#: wp-content/themes/default/functions.php:392 ++msgid "Revert" ++msgstr "Revertir els canvis" ++ ++#: wp-content/themes/default/functions.php:400 ++msgid "Update Header" ++msgstr "Actualitzar capçalera" ++ ++#: wp-content/themes/default/functions.php:406 ++msgid "Font Color (CSS):" ++msgstr "Color de font (CSS):" ++ ++#: wp-content/themes/default/functions.php:407 ++msgid "Upper Color (HEX):" ++msgstr "Color superior (HEX):" ++ ++#: wp-content/themes/default/functions.php:408 ++msgid "Lower Color (HEX):" ++msgstr "Color inferior (HEX):" ++ ++#: wp-content/themes/default/functions.php:409 ++msgid "Select Default Colors" ++msgstr "Escollir colors per defecte" ++ ++#: wp-content/themes/default/functions.php:410 ++msgid "Toggle Text Display" ++msgstr "Mostrar/amagar text" ++ ++#: wp-includes/atomlib.php:133 ++#, php-format ++msgid "XML error: %s at line %d" ++msgstr "Error de XML: %s en la línia %d" ++ ++#: wp-includes/author-template.php:237 ++#, php-format ++msgid "Visit %s's website" ++msgstr "Visitar el web de %s" ++ ++#: wp-includes/author-template.php:371 wp-includes/author-template.php:469 ++#, php-format ++msgid "Posts by %s" ++msgstr "Entrades de %s" ++ ++#: wp-includes/bookmark-template.php:73 ++#, php-format ++msgid "Last updated: %s" ++msgstr "Darrera actualització: %s" ++ ++#: wp-includes/bookmark-template.php:161 ++msgid "Bookmarks" ++msgstr "Favorits" ++ ++#: wp-includes/category-template.php:62 wp-includes/category-template.php:129 ++#: wp-includes/category-template.php:132 wp-includes/category-template.php:139 ++#: wp-includes/category-template.php:152 wp-includes/category-template.php:155 ++#: wp-includes/category-template.php:162 ++#, php-format ++msgid "View all posts in %s" ++msgstr "Veure totes les entrades a %s" ++ ++#: wp-includes/category-template.php:300 wp-includes/category-template.php:302 ++msgid "No categories" ++msgstr "No hi ha categories" ++ ++#: wp-includes/category-template.php:416 ++#, php-format ++msgid "%d topic" ++msgid_plural "%d topics" ++msgstr[0] "%d entrada" ++msgstr[1] "%d entrades" ++ ++#: wp-includes/classes.php:634 ++#, php-format ++msgid "View all posts filed under %s" ++msgstr "Veure totes les entrades de %s" ++ ++#: wp-includes/classes.php:649 ++#, php-format ++msgid "Feed for all posts filed under %s" ++msgstr "RSS per totes les entrades de %s" ++ ++#: wp-includes/class-pop3.php:83 ++msgid "No server specified" ++msgstr "Servidor no especificat" ++ ++#: wp-includes/class-pop3.php:91 wp-includes/class-pop3.php:103 ++#: wp-includes/class-pop3.php:124 wp-includes/class-pop3.php:247 ++#: wp-includes/class-pop3.php:301 wp-includes/class-pop3.php:312 ++#: wp-includes/class-pop3.php:360 wp-includes/class-pop3.php:394 ++#: wp-includes/class-pop3.php:427 wp-includes/class-pop3.php:526 ++#: wp-includes/class-pop3.php:549 ++msgid "Error " ++msgstr "Error " ++ ++#: wp-includes/class-pop3.php:116 ++msgid "no login ID submitted" ++msgstr "no s'ha enviat l'ID d'usuari" ++ ++#: wp-includes/class-pop3.php:119 wp-includes/class-pop3.php:139 ++msgid "connection not established" ++msgstr "connexió no establerta" ++ ++#: wp-includes/class-pop3.php:136 wp-includes/class-pop3.php:172 ++msgid "No password submitted" ++msgstr "No s'ha enviat la contrasenya" ++ ++#: wp-includes/class-pop3.php:144 ++msgid "Authentication failed" ++msgstr "Ha fallat l'autentificació " ++ ++#: wp-includes/class-pop3.php:163 wp-includes/class-pop3.php:206 ++#: wp-includes/class-pop3.php:231 wp-includes/class-pop3.php:273 ++#: wp-includes/class-pop3.php:347 wp-includes/class-pop3.php:387 ++#: wp-includes/class-pop3.php:417 wp-includes/class-pop3.php:451 ++#: wp-includes/class-pop3.php:514 wp-includes/class-pop3.php:582 ++msgid "No connection to server" ++msgstr "No hi ha connexió amb el servidor" ++ ++#: wp-includes/class-pop3.php:169 ++msgid "No login ID submitted" ++msgstr "No s'ha enviat la ID d'usuari" ++ ++#: wp-includes/class-pop3.php:177 ++msgid "No server banner" ++msgstr "No hi identificació del servidor" ++ ++#: wp-includes/class-pop3.php:177 wp-includes/class-pop3.php:187 ++msgid "abort" ++msgstr "cancel·lar" ++ ++#: wp-includes/class-pop3.php:187 ++msgid "apop authentication failed" ++msgstr "ha fallat l'autentificació apop" ++ ++#: wp-includes/class-pop3.php:324 ++msgid "Premature end of list" ++msgstr "Final de la llista inesperat" ++ ++#: wp-includes/class-pop3.php:457 ++msgid "Empty command string" ++msgstr "Cadena d'instruccions buida" ++ ++#: wp-includes/class-pop3.php:477 ++msgid "connection does not exist" ++msgstr "connexió inexistent" ++ ++#: wp-includes/class-pop3.php:587 ++msgid "No msg number submitted" ++msgstr "No s'ha enviat cap número de missatge" ++ ++#: wp-includes/class-pop3.php:593 ++msgid "Command failed " ++msgstr "Ordre fallida" ++ ++#: wp-includes/comment.php:337 ++msgid "Duplicate comment detected; it looks as though you've already said that!" ++msgstr "Comentari duplicat: sembla ser que ja s'havia enviat abans!" ++ ++#: wp-includes/comment.php:388 ++msgid "You are posting comments too quickly. Slow down." ++msgstr "Estàs enviant comentaris massa ràpid. Calma i bons aliments." ++ ++#: wp-includes/comment-template.php:25 wp-includes/theme.php:116 ++msgid "Anonymous" ++msgstr "Anònim" ++ ++#: wp-includes/comment-template.php:735 ++msgid "Enter your password to view comments" ++msgstr "Introdueix la teva contrasenya per a veure els comentaris" ++ ++#: wp-includes/comment-template.php:763 ++#, php-format ++msgid "Comment on %s" ++msgstr "Comentaris a %s" ++ ++#: wp-includes/cron.php:135 ++msgid "Once Hourly" ++msgstr "Una vegada per hora" ++ ++#: wp-includes/cron.php:136 ++msgid "Once Daily" ++msgstr "Diària" ++ ++#: wp-includes/deprecated.php:123 ++msgid "new WordPress Loop" ++msgstr "Nou llaç (Loop) de WordPress" ++ ++#: wp-includes/deprecated.php:1016 ++msgid "Last updated" ++msgstr "Darrera actualització" ++ ++#: wp-includes/feed-atom-comments.php:18 wp-includes/feed-rss2-comments.php:20 ++#, php-format ++msgid "Comments on: %s" ++msgstr "Comentaris a: %s" ++ ++#: wp-includes/feed-atom-comments.php:20 ++#, php-format ++msgid "Comments for %1$s searching on %2$s" ++msgstr "Comentaris per %1$s buscant %2$s" ++ ++#: wp-includes/feed-atom-comments.php:22 wp-includes/feed-rss2-comments.php:24 ++#, php-format ++msgid "Comments for %s" ++msgstr "Comentaris per %s" ++ ++#: wp-includes/feed-atom-comments.php:53 wp-includes/feed-rss2-comments.php:42 ++#, php-format ++msgid "Comment on %1$s by %2$s" ++msgstr "Comentari de %2$s a %1$s" ++ ++#: wp-includes/feed-atom-comments.php:55 wp-includes/feed-rss2-comments.php:44 ++#, php-format ++msgid "By: %s" ++msgstr "Per: %s" ++ ++#: wp-includes/feed-rss2-comments.php:22 ++#, php-format ++msgid "Comments for %s searching on %s" ++msgstr "Comentaris per %s buscant %s" ++ ++#: wp-includes/feed-rss2-comments.php:52 ++msgid "Protected Comments: Please enter your password to view comments." ++msgstr "" ++"Comentaris protegits: sisplau, escriu la contrasenya per a veure els " ++"comentaris." ++ ++#: wp-includes/formatting.php:812 ++#, php-format ++msgid "%s min" ++msgid_plural "%s mins" ++msgstr[0] "%s minut" ++msgstr[1] "%s minuts" ++ ++#: wp-includes/formatting.php:818 ++#, php-format ++msgid "%s hour" ++msgid_plural "%s hours" ++msgstr[0] "%s hora" ++msgstr[1] "%s hores" ++ ++#: wp-includes/formatting.php:824 ++#, php-format ++msgid "%s day" ++msgid_plural "%s days" ++msgstr[0] "%s dia" ++msgstr[1] "%s dies" ++ ++#: wp-includes/formatting.php:1371 ++msgid ", |between list items" ++msgstr ", |between list items" ++ ++#: wp-includes/formatting.php:1372 ++msgid ", and |between last two list items" ++msgstr ", i |between last two list items" ++ ++#: wp-includes/formatting.php:1373 ++msgid " and |between only two list items" ++msgstr " i |between only two list items" ++ ++#: wp-includes/functions.php:250 ++#, php-format ++msgid "%s is a protected WP option and may not be modified" ++msgstr "%s és una opció protegida de WP i no es pot modificar" ++ ++#: wp-includes/functions.php:907 ++#, php-format ++msgid "ERROR: %s is not a valid feed template" ++msgstr "ERROR: %s no és cap plantilla vàlida de fil RSS" ++ ++#: wp-includes/functions.php:1113 wp-includes/functions.php:1175 ++#, php-format ++msgid "" ++"Unable to create directory %s. Is its parent directory writable by the " ++"server?" ++msgstr "" ++"No es pot crear el directori %s. Tens permís d'escriptura en el seu " ++"directori superior?" ++ ++#: wp-includes/functions.php:1160 ++msgid "Empty filename" ++msgstr "Nom d'arxiu buit" ++ ++#: wp-includes/functions.php:1181 ++#, php-format ++msgid "Could not write file %s" ++msgstr "L'arxiu %s no es pot desar" ++ ++#: wp-includes/functions.php:1283 ++#, php-format ++msgid "Your attempt to edit this attachment: "%s" has failed." ++msgstr "L'intent d'editar aquest fitxer adjunt: "%s" ha fallat." ++ ++#: wp-includes/functions.php:1285 ++msgid "Your attempt to add this category has failed." ++msgstr "L'intent d'afegir aquesta categoria ha fallat." ++ ++#: wp-includes/functions.php:1286 ++#, php-format ++msgid "Your attempt to delete this category: "%s" has failed." ++msgstr "L'intent d'esborrar aquesta categoria: "%s" ha fallat." ++ ++#: wp-includes/functions.php:1287 ++#, php-format ++msgid "Your attempt to edit this category: "%s" has failed." ++msgstr "L'intent d'editar aquesta categoria: "%s" ha fallat." ++ ++#: wp-includes/functions.php:1289 ++#, php-format ++msgid "Your attempt to delete this comment: "%s" has failed." ++msgstr "L'intent d'esborrar aquest comentari: "%s" ha fallat." ++ ++#: wp-includes/functions.php:1290 ++#, php-format ++msgid "Your attempt to unapprove this comment: "%s" has failed." ++msgstr "L'intent de rebutjar aquest comentari: "%s" ha fallat." ++ ++#: wp-includes/functions.php:1291 ++#, php-format ++msgid "Your attempt to approve this comment: "%s" has failed." ++msgstr "L'intent d'aprovar aquest comentari: "%s" ha fallat." ++ ++#: wp-includes/functions.php:1292 ++#, php-format ++msgid "Your attempt to edit this comment: "%s" has failed." ++msgstr "L'intent d'editar aquest comentari: "%s" ha fallat." ++ ++#: wp-includes/functions.php:1293 ++msgid "Your attempt to bulk modify comments has failed." ++msgstr "L'intent de modificar comentaris en massa ha fallat." ++ ++#: wp-includes/functions.php:1294 ++msgid "Your attempt to moderate comments has failed." ++msgstr "L'intent de moderar comentaris ha fallat." ++ ++#: wp-includes/functions.php:1296 ++msgid "Your attempt to add this link has failed." ++msgstr "L'intent d'afegir aquest enllaç ha fallat." ++ ++#: wp-includes/functions.php:1297 ++#, php-format ++msgid "Your attempt to delete this link: "%s" has failed." ++msgstr "L'intent d'eliminar aquest enllaç: "%s" ha fallat." ++ ++#: wp-includes/functions.php:1298 ++#, php-format ++msgid "Your attempt to edit this link: "%s" has failed." ++msgstr "L'intent d'editar aquest enllaç: "%s" ha fallat." ++ ++#: wp-includes/functions.php:1299 ++msgid "Your attempt to bulk modify links has failed." ++msgstr "L'intent de modificar enllaços en massa ha fallat." ++ ++#: wp-includes/functions.php:1301 ++msgid "Your attempt to add this page has failed." ++msgstr "L'intent d'afegir aquesta pàgina ha fallat." ++ ++#: wp-includes/functions.php:1302 ++#, php-format ++msgid "Your attempt to delete this page: "%s" has failed." ++msgstr "L'intent d'eliminar aquesta pàgina: "%s" ha fallat." ++ ++#: wp-includes/functions.php:1303 ++#, php-format ++msgid "Your attempt to edit this page: "%s" has failed." ++msgstr "L'intent d'editar aquesta pàgina: "%s" ha fallat." ++ ++#: wp-includes/functions.php:1305 ++#, php-format ++msgid "Your attempt to edit this plugin file: "%s" has failed." ++msgstr "L'intent d'editar aquest arxiu d'extensió: "%s" ha fallat." ++ ++#: wp-includes/functions.php:1306 ++#, php-format ++msgid "Your attempt to activate this plugin: "%s" has failed." ++msgstr "L'intent d'activar aquesta extensió: "%s" ha fallat." ++ ++#: wp-includes/functions.php:1307 ++#, php-format ++msgid "Your attempt to deactivate this plugin: "%s" has failed." ++msgstr "L'intent de desactivar aquesta extensió: "%s" ha fallat." ++ ++#: wp-includes/functions.php:1308 ++#, php-format ++msgid "Your attempt to upgrade this plugin: "%s" has failed." ++msgstr "L'intent d'actualitzar aquesta extensió: "%s" ha fallat." ++ ++#: wp-includes/functions.php:1310 ++msgid "Your attempt to add this post has failed." ++msgstr "L'intent d'afegir aquesta entrada ha fallat." ++ ++#: wp-includes/functions.php:1311 ++#, php-format ++msgid "Your attempt to delete this post: "%s" has failed." ++msgstr "L'intent d'eliminar aquesta entrada: "%s" ha fallat." ++ ++#: wp-includes/functions.php:1312 ++#, php-format ++msgid "Your attempt to edit this post: "%s" has failed." ++msgstr "L'intent d'editar aquesta entrada: "%s" ha fallat." ++ ++#: wp-includes/functions.php:1314 ++msgid "Your attempt to add this user has failed." ++msgstr "L'intent d'afegir aquest usuari ha fallat." ++ ++#: wp-includes/functions.php:1315 ++msgid "Your attempt to delete users has failed." ++msgstr "L'intent d'esborrar usuaris ha fallat." ++ ++#: wp-includes/functions.php:1316 ++msgid "Your attempt to bulk modify users has failed." ++msgstr "L'intent d'esborrar usuaris en massa ha fallat." ++ ++#: wp-includes/functions.php:1317 ++#, php-format ++msgid "Your attempt to edit this user: "%s" has failed." ++msgstr "L'intent d'editar aquest usuari: "%s" ha fallat." ++ ++#: wp-includes/functions.php:1318 ++#, php-format ++msgid "Your attempt to modify the profile for: "%s" has failed." ++msgstr "L'intent de modificar el perfil de: "%s" ha fallat." ++ ++#: wp-includes/functions.php:1320 ++msgid "Your attempt to edit your settings has failed." ++msgstr "L'intent d'editar les teves preferÚncies ha fallat." ++ ++#: wp-includes/functions.php:1321 ++#, php-format ++msgid "Your attempt to change your permalink structure to: %s has failed." ++msgstr "L'intent de canviar la teva estructura de permalink a: %s ha fallat." ++ ++#: wp-includes/functions.php:1322 ++#, php-format ++msgid "Your attempt to edit this file: "%s" has failed." ++msgstr "L'intent d'editar aquest arxiu: "%s" ha fallat." ++ ++#: wp-includes/functions.php:1323 ++#, php-format ++msgid "Your attempt to edit this theme file: "%s" has failed." ++msgstr "L'intent d'editar aquesta plantilla: "%s" ha fallat." ++ ++#: wp-includes/functions.php:1324 ++#, php-format ++msgid "Your attempt to switch to this theme: "%s" has failed." ++msgstr "L'intent de canviar cap a aquest tema: "%s" ha fallat." ++ ++#: wp-includes/functions.php:1339 ++msgid "Are you sure you want to do this?" ++msgstr "Segur que vols fer això?" ++ ++#: wp-includes/functions.php:1344 ++msgid "WordPress Failure Notice" ++msgstr "Avís de fallada de WordPress" ++ ++#: wp-includes/functions.php:1347 ++msgid "Please try again." ++msgstr "Sisplau torna-ho a intentar." ++ ++#: wp-includes/functions.php:1395 ++msgid "WordPress › Error" ++msgstr "WordPress › Error" ++ ++#: wp-includes/general-template.php:36 wp-login.php:261 wp-login.php:264 ++#: wp-login.php:329 ++msgid "Log in" ++msgstr "Identificar-se" ++ ++#: wp-includes/general-template.php:38 ++msgid "Log out" ++msgstr "Sortir" ++ ++#: wp-includes/general-template.php:48 wp-login.php:262 wp-login.php:325 ++#: wp-login.php:403 ++msgid "Register" ++msgstr "Registrar-se" ++ ++#: wp-includes/general-template.php:52 ++msgid "Site Admin" ++msgstr "Administració" ++ ++#: wp-includes/general-template.php:414 ++#, php-format ++msgid "%1$s %2$d" ++msgstr "%1$s %2$d" ++ ++#: wp-includes/general-template.php:591 wp-includes/widgets.php:1364 ++#: wp-includes/widgets.php:1365 ++msgid "Calendar" ++msgstr "Calendari" ++ ++#: wp-includes/general-template.php:592 ++#, php-format ++msgid "%1$s %2$s|Used as a calendar caption" ++msgstr "%1$s %2$s|Used as a calendar caption" ++ ++#: wp-includes/general-template.php:616 wp-includes/general-template.php:626 ++#, php-format ++msgid "View posts for %1$s %2$s" ++msgstr "Veure totes les entrades per a %1$s %2$s" ++ ++#: wp-includes/general-template.php:933 wp-includes/general-template.php:937 ++msgid "HTML" ++msgstr "HTML" ++ ++#: wp-includes/general-template.php:934 wp-includes/general-template.php:938 ++msgid "Visual" ++msgstr "Visual" ++ ++#: wp-includes/general-template.php:1032 ++msgid "« Previous" ++msgstr "« Entrades anteriors" ++ ++#: wp-includes/general-template.php:1033 ++msgid "Next »" ++msgstr "Entrades segÃŒents »" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:13 ++msgid "Do you want to use the WYSIWYG mode for this textarea?" ++msgstr "Vols usar el mode WYSIWYG en aquesta àrea de text?" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:14 ++msgid "Apply" ++msgstr "Aplicar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:15 ++#: wp-includes/script-loader.php:183 ++msgid "Insert" ++msgstr "Inserir" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:18 ++#: wp-includes/js/tinymce/wp-mce-help.php:246 ++msgid "Close" ++msgstr "Tancar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:19 ++msgid "Browse" ++msgstr "Veure" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:20 ++#: wp-includes/js/tinymce/langs/wp-langs.php:300 ++msgid "Class" ++msgstr "Classe" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:21 ++msgid "-- Not set --" ++msgstr "--Sense valor--" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:22 ++#: wp-includes/js/tinymce/langs/wp-langs.php:227 ++msgid "Copy/Cut/Paste is not available in Mozilla and Firefox." ++msgstr "Copiar/Retallar/Enganxar no està disponible a Mozilla i Firefox." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:23 ++msgid "Currently not supported by your browser, use keyboard shortcuts instead." ++msgstr "Actualment no suportat pel teu navegador, pots usar una combinació de teclat." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:24 ++msgid "" ++"Sorry, but we have noticed that your popup-blocker has disabled a window " ++"that provides application functionality. You will need to disable popup " ++"blocking on this site in order to fully utilize this tool." ++msgstr "" ++"Disculpa, però hem notat que el teu bloquejador de finestres ha desactivat " ++"una finestra que aporta funcionalitat de l'aplicació. Hauràs de desactivar " ++"el bloqueig d'anuncis emergents en aquest lloc web si vols utilitzar aquest " ++"editor amb totes les possibilitats." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:25 ++msgid "Error: Invalid values entered, these are marked in red." ++msgstr "Error: S'han introduït valors invàlids, aquests s'han marcat en vermell." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:26 ++#: wp-includes/js/tinymce/langs/wp-langs.php:231 ++msgid "More colors" ++msgstr "Més colors" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:33 ++msgid "Full" ++msgstr "Complet" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:36 ++msgid "%Y-%m-%d" ++msgstr "%d-%m-%Y" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:37 ++msgid "%H:%M:%S" ++msgstr "%H:%M:%S" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:38 ++msgid "Insert date" ++msgstr "Inserir data" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:39 ++msgid "Insert time" ++msgstr "Inserir hora" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 wp-includes/locale.php:142 ++#: wp-includes/locale.php:157 ++msgid "January" ++msgstr "gener" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 wp-includes/locale.php:143 ++#: wp-includes/locale.php:158 ++msgid "February" ++msgstr "febrer" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 wp-includes/locale.php:144 ++#: wp-includes/locale.php:159 ++msgid "March" ++msgstr "març" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 wp-includes/locale.php:145 ++#: wp-includes/locale.php:160 ++msgid "April" ++msgstr "abril" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 wp-includes/locale.php:146 ++#: wp-includes/locale.php:161 ++msgid "May" ++msgstr "maig" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 wp-includes/locale.php:147 ++#: wp-includes/locale.php:162 ++msgid "June" ++msgstr "juny" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 wp-includes/locale.php:148 ++#: wp-includes/locale.php:163 ++msgid "July" ++msgstr "juliol" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 wp-includes/locale.php:149 ++#: wp-includes/locale.php:164 ++msgid "August" ++msgstr "agost" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 wp-includes/locale.php:150 ++#: wp-includes/locale.php:165 ++msgid "September" ++msgstr "setembre" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 wp-includes/locale.php:151 ++#: wp-includes/locale.php:166 ++msgid "October" ++msgstr "octubre" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 wp-includes/locale.php:152 ++#: wp-includes/locale.php:167 ++msgid "November" ++msgstr "novembre" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 wp-includes/locale.php:153 ++#: wp-includes/locale.php:168 ++msgid "December" ++msgstr "desembre" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 wp-includes/locale.php:157 ++msgid "Jan_January_abbreviation" ++msgstr "gen." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 wp-includes/locale.php:158 ++msgid "Feb_February_abbreviation" ++msgstr "feb." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 wp-includes/locale.php:159 ++msgid "Mar_March_abbreviation" ++msgstr "març" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 wp-includes/locale.php:160 ++msgid "Apr_April_abbreviation" ++msgstr "abr." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 wp-includes/locale.php:161 ++msgid "May_May_abbreviation" ++msgstr "maig" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 wp-includes/locale.php:162 ++msgid "Jun_June_abbreviation" ++msgstr "juny" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 wp-includes/locale.php:163 ++msgid "Jul_July_abbreviation" ++msgstr "jul." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 wp-includes/locale.php:164 ++msgid "Aug_August_abbreviation" ++msgstr "ago." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 wp-includes/locale.php:165 ++msgid "Sep_September_abbreviation" ++msgstr "set." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 wp-includes/locale.php:166 ++msgid "Oct_October_abbreviation" ++msgstr "oct." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 wp-includes/locale.php:167 ++msgid "Nov_November_abbreviation" ++msgstr "nov." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 wp-includes/locale.php:168 ++msgid "Dec_December_abbreviation" ++msgstr "des." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 wp-includes/locale.php:110 ++#: wp-includes/locale.php:120 wp-includes/locale.php:133 ++msgid "Sunday" ++msgstr "diumenge" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 wp-includes/locale.php:111 ++#: wp-includes/locale.php:121 wp-includes/locale.php:134 ++msgid "Monday" ++msgstr "dilluns" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 wp-includes/locale.php:112 ++#: wp-includes/locale.php:122 wp-includes/locale.php:135 ++msgid "Tuesday" ++msgstr "dimarts" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 wp-includes/locale.php:113 ++#: wp-includes/locale.php:123 wp-includes/locale.php:136 ++msgid "Wednesday" ++msgstr "dimecres" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 wp-includes/locale.php:114 ++#: wp-includes/locale.php:124 wp-includes/locale.php:137 ++msgid "Thursday" ++msgstr "dijous" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 wp-includes/locale.php:115 ++#: wp-includes/locale.php:125 wp-includes/locale.php:138 ++msgid "Friday" ++msgstr "divendres" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 wp-includes/locale.php:116 ++#: wp-includes/locale.php:126 wp-includes/locale.php:139 ++msgid "Saturday" ++msgstr "dissabte" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 wp-includes/locale.php:133 ++msgid "Sun" ++msgstr "dg." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 wp-includes/locale.php:134 ++msgid "Mon" ++msgstr "dl." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 wp-includes/locale.php:135 ++msgid "Tue" ++msgstr "dt." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 wp-includes/locale.php:136 ++msgid "Wed" ++msgstr "dc." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 wp-includes/locale.php:137 ++msgid "Thu" ++msgstr "dj." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 wp-includes/locale.php:138 ++msgid "Fri" ++msgstr "dv." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 wp-includes/locale.php:139 ++msgid "Sat" ++msgstr "ds." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:46 ++msgid "Print" ++msgstr "Imprimir" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:49 ++#: wp-includes/js/tinymce/langs/wp-langs.php:295 ++msgid "Preview" ++msgstr "Mostrar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:52 ++msgid "Direction left to right" ++msgstr "Direcció d'esquerra a dreta" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:53 ++msgid "Direction right to left" ++msgstr "Direcció de dreta a esquerra" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:56 ++msgid "Insert new layer" ++msgstr "Inserir una nova capa" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:57 ++msgid "Move forward" ++msgstr "Anar endavant" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:58 ++msgid "Move backward" ++msgstr "Tornar enrere" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:59 ++msgid "Toggle absolute positioning" ++msgstr "Mostrar/amagar el posicionament absolut" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:60 ++msgid "New layer..." ++msgstr "Nova capa..." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:64 ++msgid "Cancel all changes" ++msgstr "Cancel·lar tots els canvis" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:67 ++msgid "Insert non-breaking space character" ++msgstr "Inserir un caràcter d'espai inseparable" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:70 ++msgid "Run spell checking" ++msgstr "Fer la correcció ortogràfica" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:71 ++msgid "ieSpell not detected. Do you want to install it now?" ++msgstr "No s'ha detectat ieSpell. Vols instal·lar-lo ara?" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:74 ++msgid "Horizontale rule" ++msgstr "Regla horitzontal" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:77 ++msgid "Emotions" ++msgstr "Emocions" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:80 ++msgid "Find" ++msgstr "Cercar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:81 ++msgid "Find/Replace" ++msgstr "Buscar/reemplaçar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:84 ++#: wp-includes/js/tinymce/langs/wp-langs.php:206 ++#: wp-includes/js/tinymce/langs/wp-langs.php:260 ++msgid "Insert/edit image" ++msgstr "Inserir/editar una imatge" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:87 ++#: wp-includes/js/tinymce/langs/wp-langs.php:202 ++#: wp-includes/js/tinymce/langs/wp-langs.php:277 ++msgid "Insert/edit link" ++msgstr "Inserir/editar un enllaç" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:90 ++msgid "Citation" ++msgstr "Citació" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:91 ++msgid "Abbreviation" ++msgstr "Abreviació" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:92 ++msgid "Acronym" ++msgstr "Acrònim" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:93 ++msgid "Deletion" ++msgstr "Eliminar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:94 ++msgid "Insertion" ++msgstr "Inserir" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:95 ++msgid "Insert/Edit Attributes" ++msgstr "Inserir/Editar atributs" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:98 ++msgid "Edit CSS Style" ++msgstr "Editar estil CSS" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:101 ++msgid "Paste as Plain Text" ++msgstr "Enganxar com a text pla" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:102 ++msgid "Paste from Word" ++msgstr "Enganxar des de Word" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:103 ++msgid "Select All" ++msgstr "Seleccionar-ho tot" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:106 ++#: wp-includes/js/tinymce/langs/wp-langs.php:108 ++msgid "Use CTRL+V on your keyboard to paste the text into the window." ++msgstr "Usa CTRL+V en el teclat per a enganxar el text en la finestra." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:107 ++msgid "Keep linebreaks" ++msgstr "Mantenir la separació de línies" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:111 ++msgid "Inserts a new table" ++msgstr "Inserir una taula" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:112 ++msgid "Insert row before" ++msgstr "Inserir fila anterior" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:113 ++msgid "Insert row after" ++msgstr "Inserir fila posterior" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:114 ++msgid "Delete row" ++msgstr "Eliminar fila" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:115 ++msgid "Insert column before" ++msgstr "Inserir columna anterior" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:116 ++msgid "Insert column after" ++msgstr "Inserir columna posterior" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:117 ++msgid "Remove column" ++msgstr "Treure una columna" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:118 ++msgid "Split merged table cells" ++msgstr "Partir cel·les ajuntades" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:119 ++msgid "Merge table cells" ++msgstr "Ajuntar cel·les" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:120 ++msgid "Table row properties" ++msgstr "Propietats de les files" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:121 ++msgid "Table cell properties" ++msgstr "Propietats de les cel·les" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:122 ++msgid "Table properties" ++msgstr "Propietats de la taula" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:123 ++msgid "Paste table row before" ++msgstr "Enganxar com a fila anterior" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:124 ++msgid "Paste table row after" ++msgstr "Engenxar com a fila posterior" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:125 ++msgid "Cut table row" ++msgstr "Retallar la fila" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:126 ++msgid "Copy table row" ++msgstr "Copiar la fila" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:127 ++msgid "Delete table" ++msgstr "Esborrar taula" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:128 ++msgid "Row" ++msgstr "Fila" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:129 ++msgid "Column" ++msgstr "Columna" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:130 ++msgid "Cell" ++msgstr "Cel·la" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:133 ++msgid "The changes you made will be lost if you navigate away from this page." ++msgstr "Perderàs els canvis que hagis fet si abandones aquesta pàgina." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:136 ++msgid "Toggle fullscreen mode" ++msgstr "Activar/desactivar el mode de pantalla completa" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:139 ++#: wp-includes/js/tinymce/langs/wp-langs.php:289 ++msgid "Insert / edit embedded media" ++msgstr "Inserir/editar un mÚdia inclòs" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:140 ++msgid "0| Extra width for the media popup in pixels" ++msgstr "0| Extra width for the media popup in pixels" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:141 ++msgid "0| Extra height for the media popup in pixels" ++msgstr "0| Extra height for the media popup in pixels" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:142 ++msgid "Edit embedded media" ++msgstr "Editar mÚdia inclòs" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:145 ++msgid "Document properties" ++msgstr "Propietats del document" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:148 ++msgid "Insert predefined template content" ++msgstr "Inserir plantilla de contingut predefinida" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:151 ++msgid "Visual control characters on/off." ++msgstr "Caràcters de control visuals actius/inactius." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:154 ++msgid "Toggle spellchecker" ++msgstr "Activar/desactivar correcció ortogràfica" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:155 ++msgid "Spellchecker settings" ++msgstr "Opcions de correcció ortogràfica" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:156 ++msgid "Ignore word" ++msgstr "Ignorar paraula" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:157 ++msgid "Ignore all" ++msgstr "Ignorar-ho tot" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:158 ++msgid "Languages" ++msgstr "Idiomes" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:159 ++msgid "Please wait..." ++msgstr "Sisplau espera..." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:160 ++msgid "Suggestions" ++msgstr "Suggeriments" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:161 ++msgid "No suggestions" ++msgstr "Cap suggeriment" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:162 ++msgid "No misspellings found." ++msgstr "No s'ha trobat cap falta d'ortografia." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:165 ++msgid "Insert page break." ++msgstr "Inserir un salt de pàgina." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:169 ++msgid "Styles" ++msgstr "Estils" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:170 ++msgid "Font size" ++msgstr "Mida de font" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:171 ++msgid "Font family" ++msgstr "Família de font" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:172 ++msgid "Format" ++msgstr "Format" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:173 ++msgid "Paragraph" ++msgstr "Paràgraf" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:174 ++msgid "Div" ++msgstr "Div" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:175 ++#: wp-includes/js/tinymce/wp-mce-help.php:204 ++msgid "Address" ++msgstr "Adreça" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:176 ++msgid "Preformatted" ++msgstr "Preformatat" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:177 ++msgid "Heading 1" ++msgstr "Capçalera 1" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:178 ++msgid "Heading 2" ++msgstr "Capçalera 2" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:179 ++msgid "Heading 3" ++msgstr "Capçalera 3" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:180 ++msgid "Heading 4" ++msgstr "Capçalera 4" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:181 ++msgid "Heading 5" ++msgstr "Capçalera 5" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:182 ++msgid "Heading 6" ++msgstr "Capçalera 6" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:183 ++#: wp-includes/js/tinymce/langs/wp-langs.php:226 ++msgid "Blockquote" ++msgstr "Citació" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:184 ++msgid "Code" ++msgstr "Codi" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:185 ++msgid "Code sample" ++msgstr "Exemple de codi" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:186 ++msgid "Definition term " ++msgstr "Terme definit" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:187 ++msgid "Definition description" ++msgstr "Definició" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:188 ++#: wp-includes/js/tinymce/wp-mce-help.php:200 ++#: wp-includes/js/tinymce/wp-mce-help.php:213 ++msgid "Bold" ++msgstr "Negreta" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:189 ++#: wp-includes/js/tinymce/wp-mce-help.php:200 ++#: wp-includes/js/tinymce/wp-mce-help.php:213 ++msgid "Italic" ++msgstr "Itàlica" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:190 ++#: wp-includes/js/tinymce/wp-mce-help.php:201 ++msgid "Underline" ++msgstr "Subratllat" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:191 ++#: wp-includes/js/tinymce/wp-mce-help.php:217 ++msgid "Strikethrough" ++msgstr "Ratllat" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:192 ++msgid "Align left" ++msgstr "Alineat a l'esquerra" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:193 ++msgid "Align center" ++msgstr "Centrat" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:194 ++msgid "Align right" ++msgstr "Alineat a la dreta" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:195 ++msgid "Align full" ++msgstr "Alineat en bloc" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:196 ++msgid "Unordered list" ++msgstr "Llista sense numerar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:197 ++msgid "Ordered list" ++msgstr "Llista numerada" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:198 ++msgid "Outdent" ++msgstr "Treure cita/sagnat" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:199 ++msgid "Indent" ++msgstr "Cita/Sagnat" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:200 ++#: wp-includes/js/tinymce/wp-mce-help.php:197 ++msgid "Undo" ++msgstr "Desfer" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:201 ++#: wp-includes/js/tinymce/wp-mce-help.php:197 ++msgid "Redo" ++msgstr "Refer" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:203 ++msgid "0| Extra width for the link popup in pixels" ++msgstr "0| Extra width for the link popup in pixels" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:204 ++msgid "0| Extra height for the link popup in pixels" ++msgstr "0| Extra height for the link popup in pixels" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:205 ++msgid "Unlink" ++msgstr "Desenllaçar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:207 ++msgid "0| Extra width for the image popup in pixels" ++msgstr "0| Extra width for the image popup in pixels" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:208 ++msgid "0| Extra height for the image popup in pixels" ++msgstr "0| Extra height for the image popup in pixels" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:209 ++msgid "Cleanup messy code" ++msgstr "Netejar el codi intricat" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:210 ++msgid "Edit HTML Source" ++msgstr "Editar font HTML" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:211 ++msgid "Subscript" ++msgstr "Subíndex" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:212 ++msgid "Superscript" ++msgstr "Superíndex" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:213 ++msgid "Insert horizontal ruler" ++msgstr "Inserir regla horitzontal" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:214 ++msgid "Remove formatting" ++msgstr "Eliminar format" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:215 ++msgid "Select text color" ++msgstr "Escollir el color de text" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:216 ++msgid "Select background color" ++msgstr "Escollir el color de fons" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:217 ++msgid "Insert custom character" ++msgstr "Inserir un caràcter especial" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:218 ++msgid "Toggle guidelines/invisible elements" ++msgstr "Mostrar/amagar regles i elements invisibles" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:219 ++#: wp-includes/js/tinymce/langs/wp-langs.php:246 ++msgid "Insert/edit anchor" ++msgstr "Inserir/editar una àncora" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:220 ++#: wp-includes/js/tinymce/wp-mce-help.php:196 ++msgid "Cut" ++msgstr "Retallar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:221 ++#: wp-includes/js/tinymce/wp-mce-help.php:195 ++msgid "Copy" ++msgstr "Copiar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:222 ++#: wp-includes/js/tinymce/wp-mce-help.php:195 ++msgid "Paste" ++msgstr "Enganxar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:223 ++msgid "Image properties" ++msgstr "Propietats de la imatge" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:224 ++msgid "New document" ++msgstr "Nou document" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:225 ++#: wp-includes/js/tinymce/langs/wp-langs.php:239 ++#: wp-includes/js/tinymce/langs/wp-langs.php:396 ++#: wp-includes/js/tinymce/wp-mce-help.php:222 ++msgid "Help" ++msgstr "Ajuda" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:228 ++msgid "Path" ++msgstr "Ruta (Path)" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:229 ++msgid "Are you sure you want to clear all contents?" ++msgstr "Segur que vols esborrar tot el contingut?" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:230 ++msgid "" ++"Jump to tool buttons - Alt+Q, Jump to editor - Alt-Z, Jump to element path - " ++"Alt-X" ++msgstr "" ++"Anar als botons de control - Alt+Q, Anar a l'editor - Alt-Z, Anar a la ruta " ++"(path) de l'element - Alt-X" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:232 ++msgid "0| Extra width for the colorpicker popup in pixels" ++msgstr "0| Extra width for the colorpicker popup in pixels" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:233 ++msgid "0| Extra height for the colorpicker popup in pixels" ++msgstr "0| Extra height for the colorpicker popup in pixels" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:237 ++#: wp-includes/js/tinymce/wp-mce-help.php:228 ++msgid "About TinyMCE" ++msgstr "Quant a TinyMCE" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:240 ++msgid "License" ++msgstr "LlicÚncia" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:245 ++msgid "Loaded plugins" ++msgstr "Extensions carregades" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:247 ++msgid "Anchor name" ++msgstr "Nom d'àncora" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:248 ++msgid "HTML Source Editor" ++msgstr "Editor de font HTML" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:249 ++msgid "Word wrap" ++msgstr "Salts de línia automàtic" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:250 ++msgid "Select a color" ++msgstr "Escull un color" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:251 ++msgid "Picker" ++msgstr "Selector" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:252 ++msgid "Color picker" ++msgstr "Selector de colors" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:253 ++msgid "Palette" ++msgstr "Paleta" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:254 ++msgid "Palette colors" ++msgstr "Paleta de colors" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:255 ++msgid "Named" ++msgstr "Per nom" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:256 ++msgid "Named colors" ++msgstr "Colors amb nom" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:257 ++msgid "Color:" ++msgstr "Color:" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:258 ++msgid "Name:" ++msgstr "Nom:" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:259 ++msgid "Select custom character" ++msgstr "Seleccionar un caràcter especial" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:262 ++msgid "Image description" ++msgstr "Descripció de la imatge" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:263 ++msgid "Image list" ++msgstr "Llista d'imatges" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:264 ++msgid "Border" ++msgstr "Marc" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:265 ++#: wp-includes/js/tinymce/langs/wp-langs.php:294 ++msgid "Dimensions" ++msgstr "Dimensions" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:266 ++msgid "Vertical space" ++msgstr "Espai vertical" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:267 ++msgid "Horizontal space" ++msgstr "Espai horitzontal" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:269 ++msgid "Baseline" ++msgstr "Línia de base" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:270 ++#: wp-includes/js/tinymce/langs/wp-langs.php:369 ++msgid "Top" ++msgstr "A dalt" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:271 ++msgid "Middle" ++msgstr "Al mig" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:272 ++#: wp-includes/js/tinymce/langs/wp-langs.php:371 ++msgid "Bottom" ++msgstr "A baix" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:273 ++msgid "Text top" ++msgstr "Al text per dalt" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:274 ++msgid "Text bottom" ++msgstr "Al text per baix" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:280 ++msgid "Open link in the same window" ++msgstr "Obrir l'enllaç en la mateixa finestra" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:281 ++msgid "Open link in a new window" ++msgstr "Obrir l'enllaç en una altra finestra" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:283 ++msgid "" ++"The URL you entered seems to be an email address, do you want to add the " ++"required mailto: prefix?" ++msgstr "" ++"La URL indicada sembla ser una adreça electrònica, vols afegir el prefix " ++"mailto: necessari?" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:284 ++msgid "" ++"The URL you entered seems to external link, do you want to add the required " ++"http:// prefix?" ++msgstr "" ++"La URL indicada sembla ser un enllaç extern, vols afegir el prefix http:// " ++"necessari?" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:285 ++msgid "Link list" ++msgstr "Llista d'enllaços" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:292 ++msgid "File/URL" ++msgstr "Arxiu/URL" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:293 ++#: wp-includes/js/tinymce/wp-mce-help.php:218 ++#: wp-includes/js/tinymce/wp-mce-help.php:219 ++msgid "List" ++msgstr "Llista" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:296 ++msgid "Constrain proportions" ++msgstr "Mantenir les proporcions" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:297 ++msgid "Type" ++msgstr "Tipus" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:298 ++msgid "Id" ++msgstr "Id" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:301 ++msgid "V-Space" ++msgstr "Espai vertical" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:302 ++msgid "H-Space" ++msgstr "Espai horitzontal" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:303 ++msgid "Auto play" ++msgstr "Reproducció automàtica" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:304 ++#: wp-includes/js/tinymce/langs/wp-langs.php:386 ++msgid "Loop" ++msgstr "Llaç (Loop)" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:305 ++msgid "Show menu" ++msgstr "Mostrar menù" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:306 ++msgid "Quality" ++msgstr "Qualitat" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:307 ++msgid "Scale" ++msgstr "Escalar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:308 ++msgid "Align" ++msgstr "Alineació" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:309 ++msgid "SAlign" ++msgstr "Alineació vertical" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:310 ++msgid "WMode" ++msgstr "Mode W" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:311 ++msgid "Background" ++msgstr "Rerafons" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:312 ++msgid "Base" ++msgstr "Base" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:313 ++msgid "Flashvars" ++msgstr "Flashvars" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:314 ++msgid "SWLiveConnect" ++msgstr "SWLiveConnect" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:315 ++msgid "AutoHREF" ++msgstr "AutoHREF" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:316 ++msgid "Cache" ++msgstr "Caché" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:317 ++msgid "Hidden" ++msgstr "Invisible" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:318 ++msgid "Controller" ++msgstr "Controladora" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:319 ++msgid "Kiosk mode" ++msgstr "Mode Kiosk" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:320 ++msgid "Play every frame" ++msgstr "Reproduir cada quadre" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:321 ++msgid "Target cache" ++msgstr "Caché de destinació" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:322 ++msgid "No correction" ++msgstr "Sense correcció" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:323 ++msgid "Enable JavaScript" ++msgstr "Permetre JavaScript" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:324 ++#: wp-includes/js/tinymce/langs/wp-langs.php:382 ++msgid "Start time" ++msgstr "Hora d'inici" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:325 ++msgid "End time" ++msgstr "Hora final" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:326 ++msgid "Href" ++msgstr "Href" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:327 ++msgid "Choke speed" ++msgstr "Velocitat de choke" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:329 ++msgid "Volume" ++msgstr "Volum" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:330 ++#: wp-includes/js/tinymce/langs/wp-langs.php:385 ++msgid "Auto start" ++msgstr "Inici automàtic" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:331 ++msgid "Enabled" ++msgstr "Activat" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:332 ++msgid "Fullscreen" ++msgstr "Pantalla completa" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:333 ++msgid "Invoke URLs" ++msgstr "Invocar URLs" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:334 ++msgid "Mute" ++msgstr "Sense so" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:335 ++msgid "Stretch to fit" ++msgstr "Extendre fins a omplir" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:336 ++msgid "Windowless video" ++msgstr "Vídeo sense finestra" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:337 ++msgid "Balance" ++msgstr "Balanç" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:338 ++msgid "Base URL" ++msgstr "URL de base" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:339 ++msgid "Captioning id" ++msgstr "Id d'etiquetatge" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:340 ++msgid "Current marker" ++msgstr "Marca actual" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:341 ++msgid "Current position" ++msgstr "Posició actual" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:342 ++msgid "Default frame" ++msgstr "Frame per defecte" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:343 ++msgid "Play count" ++msgstr "Comptador de reproducció" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:344 ++msgid "Rate" ++msgstr "Puntuació" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:345 ++msgid "UI Mode" ++msgstr "Mode UI" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:346 ++msgid "Flash options" ++msgstr "Opcions de Flash" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:347 ++msgid "Quicktime options" ++msgstr "Opcions de Quicktime" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:348 ++msgid "Windows media player options" ++msgstr "Opcions de Windows meda player" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:349 ++msgid "Real media player options" ++msgstr "Opcions de Real media player" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:350 ++msgid "Shockwave options" ++msgstr "Opcions de Shockwave" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:351 ++msgid "Auto goto URL" ++msgstr "Anar automàticament a URL" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:353 ++msgid "Image status" ++msgstr "Estat de la imatge" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:354 ++msgid "Maintain aspect" ++msgstr "Mantenir l'aspecte" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:355 ++msgid "No java" ++msgstr "Sense java" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:356 ++msgid "Prefetch" ++msgstr "Prefetch" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:357 ++msgid "Shuffle" ++msgstr "Mesclar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:358 ++msgid "Console" ++msgstr "Consola" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:359 ++msgid "Num loops" ++msgstr "Num loops" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:360 ++msgid "Controls" ++msgstr "Controls" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:361 ++msgid "Script callbacks" ++msgstr "Callbacks de script" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:362 ++msgid "Stretch style" ++msgstr "Estil d'allargament" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:363 ++msgid "Stretch H-Align" ++msgstr "Alineació horitzontal d'allargament" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:364 ++msgid "Stretch V-Align" ++msgstr "Alineació vertical d'allargament" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:365 ++msgid "Sound" ++msgstr "So" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:366 ++msgid "Progress" ++msgstr "Progrés" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:367 ++msgid "QT Src" ++msgstr "QT Src" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:368 ++msgid "" ++"Streamed rtsp resources should be added to the QT Src field under the " ++"advanced tab." ++msgstr "" ++"Recursos rtsp amb stream s'haurien d'afegir al camp QT Src a la pestanya " ++"avançada." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:374 ++msgid "Top left" ++msgstr "A dalt a l'esquerra" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:375 ++msgid "Top right" ++msgstr "A dalt a la dreta" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:376 ++msgid "Bottom left" ++msgstr "A baix a l'esquerra" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:377 ++msgid "Bottom right" ++msgstr "A baix a la dreta" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:378 ++msgid "Flash video options" ++msgstr "Opcions de Flash video" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:379 ++msgid "Scale mode" ++msgstr "Mode d'escala" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:380 ++msgid "Buffer" ++msgstr "Buffer" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:381 ++msgid "Start image" ++msgstr "Iniciar imatge" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:383 ++msgid "Default volume" ++msgstr "Volum per defecte" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:384 ++msgid "Hidden GUI" ++msgstr "GUI invisible" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:387 ++msgid "Show scale modes" ++msgstr "Mostrar modes d'escala" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:388 ++msgid "Smooth video" ++msgstr "Smooth video" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:389 ++msgid "JS Callback" ++msgstr "JS Callback" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:393 ++msgid "Show/Hide Kitchen Sink" ++msgstr "Mostrar/Amagar barra d'eines avançada" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:394 ++msgid "Insert More tag" ++msgstr "Inserir etiqueta Més..." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:395 ++msgid "Insert Page break" ++msgstr "Inserir salt de pàgina" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:397 ++msgid "More..." ++msgstr "Més..." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:398 ++msgid "Next page..." ++msgstr "Pàgina segÃŒent..." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:8 ++msgid "Rich Editor Help" ++msgstr "Ajuda de l'editor visual" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:162 ++msgid "Basics of Rich Editing" ++msgstr "Edició visual bàsica" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:162 ++msgid "Basics" ++msgstr "Bàsic" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:163 ++msgid "Advanced use of the Rich Editor" ++msgstr "Ús avançat de l'editor visual" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:164 ++msgid "Hotkeys" ++msgstr "Dreceres de teclat" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:165 ++msgid "About the software" ++msgstr "Sobre el programa" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:171 ++msgid "Rich Editing Basics" ++msgstr "Edició visual bàsica" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:172 ++msgid "" ++"Rich editing, also called WYSIWYG for What You See Is What You Get, " ++"means your text is formatted as you type. The rich editor creates HTML code " ++"behind the scenes while you concentrate on writing. Font styles, links and " ++"images all appear approximately as they will on the internet." ++msgstr "" ++"L'edició visual, també anomenada WYSIWYG per l'expressió anglesa " ++"What You See Is What You Get, consisteix a donar forma al teu text mentre " ++"escrius. L'editor visual va creant el codi HTML darrere les cortines mentre " ++"tu et concentres a escriure. Tipus de lletra, enllaços i imatges es veuen " ++"tal i com apareixeran a Internet." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:173 ++msgid "" ++"WordPress includes a rich HTML editor that works well in all major web " ++"browsers used today. However editing HTML is not the same as typing text. " ++"Each web page has two major components: the structure, which is the actual " ++"HTML code and is produced by the editor as you type, and the display, that " ++"is applied to it by the currently selected WordPress theme and is defined in " ++"style.css. WordPress is producing valid XHTML 1.0 which means that inserting " ++"multiple line breaks (BR tags) after a paragraph would not produce white " ++"space on the web page. The BR tags will be removed as invalid by the " ++"internal HTML correcting functions." ++msgstr "" ++"WordPress inclou un editor avançat d'HTML que funciona bé amb els navegadors " ++"actuals principals. Però editar HTML no és el mateix que escriure text. Cada " ++"pàgina web té dos components principals: l'estructura, que és de fet el codi " ++"HTML, produït per l'editor mentre vas escrivint, i la representació gràfica " ++"que s'hi aplica segons el tema de WordPress que sigui actiu i està definida " ++"a style.css. WordPress produeix XHTML 1.0 vàlid, la qual cosa vol dir que " ++"inserir múltiples salts de línia (marques BR) entre dos paràgrafs no " ++"augmentarà la seva distància a la pàgina web. Les marques BR seran " ++"automàticament eliminades per les funcions internes correctores d'HTML." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:174 ++msgid "" ++"While using the editor, most basic keyboard shortcuts work like in any other " ++"text editor. For example: Shift+Enter inserts line break, Ctrl+C = copy, Ctrl" ++"+X = cut, Ctrl+Z = undo, Ctrl+Y = redo, Ctrl+A = select all, etc. (on Mac " ++"use the Command key instead of Ctrl). See the Hotkeys tab for all available " ++"keyboard shortcuts." ++msgstr "" ++"En usar l'editor la majoria de combinacions de tecles funcionen com en " ++"qualsevol altre editor de text. Per exemple, Majúscules+Intro insereix un " ++"salt de línia, Ctrl+C = copiar, Ctrl + X = retallar, Ctrl + Z = desfer, Ctrl " ++"+ Y = refer, Ctrl + B = negreta, Ctrl + I = itàlica, Ctrl + U = subratllat, " ++"etc. (en el Mac s'usa la tecla Apple enlloc de Ctrl). Per a una llista " ++"completa vegeu l'apartat Dreceres de teclat." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:175 ++msgid "" ++"If you do not like the way the rich editor works, you may turn it off from " ++"Your Profile submenu, under Users in the admin menu." ++msgstr "" ++"Si no t'agrada com funciona l'editor visual, el pots desactivar en el " ++"submenú perfil, sota Usuaris en el menú d'administració." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:179 ++msgid "Advanced Rich Editing" ++msgstr "Edició visual avançada" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:180 ++msgid "Images and Attachments" ++msgstr "Imatges i adjunts" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:181 ++msgid "" ++"There is a button in the editor toolbar for inserting images that are " ++"already hosted somewhere on the internet. If you have a URL for an image, " ++"click this button and enter the URL in the box which appears." ++msgstr "" ++"Hi ha un botó a la caixa d'eines d'edició per a inserir imatges allotjades " ++"en algun altre lloc d'Internet. Si tens una URL per a una imatge, fes clic a " ++"aquest botó i introdueix la URL en la caixa que apareix." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:182 ++msgid "" ++"If you need to upload an image or another media file from your computer, you " ++"can use the Media Library buttons above the editor. The media library will " ++"attempt to create a thumbnail-sized copy from each uploaded image. To insert " ++"your image into the post, first click on the thumbnail to reveal a menu of " ++"options. When you have selected the options you like, click \"Send to Editor" ++"\" and your image or file will appear in the post you are editing. If you " ++"are inserting a movie, there are additional options in the \"Media\" dialog " ++"that can be opened from the second toolbar row." ++msgstr "" ++"Si necessites pujar un fitxer d'imatge o de so des del teu ordinador, pots " ++"usar els botons de la mediateca situats sobre l'editor. La mediateca provarà " ++"de crear una miniatura quan carreguis una imatge. Per a inserir la imatge " ++"pujada a a l'entrada, primer fes clic a la miniatura per tal que es mostri " ++"un menú d'opcions. Quan hagis escollit les opcions desitjades, fes clic a " ++"\"Enviar a l'editor\" i la teva imatge o fitxer apareixerà a l'entrada que " ++"estàs editant. Si vols inserir un video trobaràs opcions addicionals en la " ++"finestra \"MÚdia\" que es pot obrir des de la segona fila de la barra " ++"d'eines." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:183 ++msgid "HTML in the Rich Editor" ++msgstr "HTML en l'editor visual" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:184 ++msgid "" ++"Any HTML entered directly into the rich editor will show up as text when the " ++"post is viewed. What you see is what you get. When you want to include HTML " ++"elements that cannot be generated with the toolbar buttons, you must enter " ++"it by hand in the HTML editor. Examples are tables and <code>. To do " ++"this, click the HTML tab and edit the code, then switch back to Visual mode. " ++"If the code is valid and understood by the editor, you should see it " ++"rendered immediately." ++msgstr "" ++"Tot codi HTML introduït directament en l'editor de text visual es veurà com " ++"a text quan es mostri l'entrada. Tal com ho veus en editar-ho es veurà " ++"finalment. Si vols incloure elements d'HTML que no es poden generar amb els " ++"botons de la barra d'eines, els hauràs d'introduir manualment en l'editor " ++"d'HTML. Per exemple taules i marques <code>. Per a fer-ho, fes clic al " ++"botó HTML i edita el codi, tot seguit torna al mode visual d'edició. Si el " ++"codi és vàlid i l'editor l'entén, en veuràs els resultats immediatament." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:185 ++msgid "Pasting in the Rich Editor" ++msgstr "Enganxant en l'editor visual" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:186 ++msgid "" ++"When pasting content from another web page the results can be inconsistent " ++"and depend on your browser and on the web page you are pasting from. The " ++"editor tries to correct any invalid HTML code that was pasted, but for best " ++"results try using the HTML tab or one of the paste buttons that are on the " ++"second row. Alternatively try pasting paragraph by paragraph. In most " ++"browsers to select one paragraph at a time, triple-click on it." ++msgstr "" ++"Enganxant un contingut des d'una altra pâgina web els resultats poden ser " ++"inconsistents i depenen del teu navegador i la pâgina que hagis copiat. " ++"L'editor intenta corregir tot el codi HTML invâlid que s'ha enganxat, perÃŽ " ++"per a un millor resultat prova d'utilitzar la pestanya HTML o un dels botons " ++"d'enganxar de la segona fila. Alternativament pots provar d'enganxar " ++"parâgraf per parâgraf. En la majoria de navegadors pots seleccionar un " ++"parâgraf sencer fent-hi un triple clic." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:187 ++msgid "" ++"Pasting content from another application, like Word or Excel, is best done " ++"with the Paste from Word button on the second row, or in HTML mode." ++msgstr "" ++"Per a enganxar provinent d'una altra aplicació, com Word o Excel, el millor " ++"és utilitzar el botó Enganxar des de Word que es troba a la segona fila, o " ++"bé fer-ho en mode HTML." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:191 ++msgid "Writing at Full Speed" ++msgstr "Escriure a tota velocitat" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:192 ++msgid "" ++"Rather than reaching for your mouse to click on the toolbar, use these " ++"access keys. Windows and Linux use Ctrl + letter. Macintosh uses Command + " ++"letter." ++msgstr "" ++"En lloc d' utilitzar el ratolí per fer clic a la barra d'eines, usa aquestes " ++"tecles d'accés. A Windows i Linux usa Ctrl + lletra. A Macintosh usa Apple + " ++"lletra." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:194 ++#: wp-includes/js/tinymce/wp-mce-help.php:210 ++msgid "Letter" ++msgstr "Lletra" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:196 ++msgid "Select all" ++msgstr "Seleccionar-ho tot" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:201 ++msgid "Header 1" ++msgstr "Capçalera 1" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:202 ++msgid "Header 2" ++msgstr "Capçalera 2" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:202 ++msgid "Header 3" ++msgstr "Capçalera 3" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:203 ++msgid "Header 4" ++msgstr "Capçalera 4" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:203 ++msgid "Header 5" ++msgstr "Capçalera 5" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:204 ++msgid "Header 6" ++msgstr "Capçalera 6" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:208 ++msgid "The following shortcuts use different access keys: Alt + Shift + letter." ++msgstr "" ++"Les segÃŒents dreceres usen unes altres tecles. A Windows i Linux usa Alt + " ++"lletra. A Macintosh usa Ctrl + lletra." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:215 ++msgid "Check Spelling" ++msgstr "Revisió ortogràfica" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:215 ++msgid "Align Left" ++msgstr "Alineació a l'esquerra" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:216 ++msgid "Justify Text" ++msgstr "Text justificat" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:216 ++msgid "Align Center" ++msgstr "Centrar" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:217 ++msgid "Align Right" ++msgstr "Alineació a la dreta" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:218 ++msgid "Insert link" ++msgstr "Inserir un enllaç" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:219 ++msgid "Remove link" ++msgstr "Eliminar un enllaç" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:220 ++msgid "Quote" ++msgstr "Citació" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:220 ++msgid "Insert Image" ++msgstr "Inserir imatge" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:221 ++msgid "Full Screen" ++msgstr "Pantalla completa" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:221 ++msgid "Insert More Tag" ++msgstr "Inserir una etiqueta \"Més\"" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:222 ++msgid "Insert Page Break tag" ++msgstr "Inserir marca \"salt de pàgina\"" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:223 ++msgid "Switch to HTML mode" ++msgstr "Canviar a mode HTML" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:230 ++msgid "Version:" ++msgstr "Versió:" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:231 ++#, php-format ++msgid "" ++"TinyMCE is a platform independent web based Javascript HTML WYSIWYG editor " ++"control released as Open Source under %sLGPL\tby Moxiecode Systems AB. " ++"It has the ability to convert HTML TEXTAREA fields or other HTML elements to " ++"editor instances." ++msgstr "" ++"TinyMCE és un editor WYSIWYG d'HTML per a webs basat en Javascript i " ++"independent de la plataforma, publicat com a Codi Obert sota la %sLGPL" ++"\tper Moxiecode Systems AB. Té la característica de convertir els camps " ++"TEXTAREA d'HTML i altres elements HTML en instàncies de l'editor." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:231 ++msgid "GNU Library General Public Licence" ++msgstr "" ++"GNU Library General Public Licence (en anglÚs, LlicÚncia Pública General de " ++"Biblioteca GNU)" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:232 ++msgid "" ++"Copyright © 2003-2007, Moxiecode Systems AB, All rights reserved." ++msgstr "" ++"Copyright © 2003-2007, Moxiecode Systems AB, Tots els drets reservats." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:233 ++msgid "" ++"For more information about this software visit the TinyMCE website." ++msgstr "" ++"Per a més informació sobre aquest programari, visita el lloc web de TinyMCE." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:236 ++msgid "Got Moxie?" ++msgstr "Tens Moxie?" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:237 ++msgid "Hosted By Sourceforge" ++msgstr "Allotjat a Sourceforge" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:238 ++msgid "Also on freshmeat" ++msgstr "També en freshmeat" ++ ++#: wp-includes/link-template.php:317 ++msgid "Comments Feed" ++msgstr "Fil RSS de comentaris" ++ ++#: wp-includes/link-template.php:593 ++msgid "Previous Post" ++msgstr "Entrada prÚvia" ++ ++#: wp-includes/link-template.php:593 ++msgid "Next Post" ++msgstr "Entrada segÃŒent" ++ ++#: wp-includes/locale.php:120 ++msgid "S_Sunday_initial" ++msgstr "dg." ++ ++#: wp-includes/locale.php:121 ++msgid "M_Monday_initial" ++msgstr "dl." ++ ++#: wp-includes/locale.php:122 ++msgid "T_Tuesday_initial" ++msgstr "dt." ++ ++#: wp-includes/locale.php:123 ++msgid "W_Wednesday_initial" ++msgstr "dc." ++ ++#: wp-includes/locale.php:124 ++msgid "T_Thursday_initial" ++msgstr "dj." ++ ++#: wp-includes/locale.php:125 ++msgid "F_Friday_initial" ++msgstr "dv." ++ ++#: wp-includes/locale.php:126 ++msgid "S_Saturday_initial" ++msgstr "ds." ++ ++#: wp-includes/locale.php:175 ++msgid "am" ++msgstr "am" ++ ++#: wp-includes/locale.php:176 ++msgid "pm" ++msgstr "pm" ++ ++#: wp-includes/locale.php:177 ++msgid "AM" ++msgstr "AM" ++ ++#: wp-includes/locale.php:178 ++msgid "PM" ++msgstr "PM" ++ ++#: wp-includes/locale.php:183 ++msgid "" ++"number_format_decimals|$decimals argument for http://php.net/number_format, " ++"default is 0" ++msgstr "0|$decimals argument for http://php.net/number_format, default is 0" ++ ++#: wp-includes/locale.php:186 ++msgid "" ++"number_format_decimal_point|$dec_point argument for http://php.net/" ++"number_format, default is ." ++msgstr ",|$dec_point argument for http://php.net/number_format, default is ." ++ ++#: wp-includes/locale.php:189 ++msgid "" ++"number_format_thousands_sep|$thousands_sep argument for http://php.net/" ++"number_format, default is ," ++msgstr ",|$thousands_sep argument for http://php.net/number_format, default is ," ++ ++#: wp-includes/media.php:217 wp-includes/media.php:221 ++#: wp-includes/media.php:227 ++msgid "Resize path invalid" ++msgstr "Path de redimensionament invàlid" ++ ++#: wp-includes/pluggable.php:416 wp-includes/user.php:39 ++msgid "ERROR: The username field is empty." ++msgstr "ERROR: El camp de nom d'usuari està buit." ++ ++#: wp-includes/pluggable.php:419 wp-includes/user.php:41 ++msgid "ERROR: The password field is empty." ++msgstr "ERROR: El camp de contrasenya està buit." ++ ++#: wp-includes/pluggable.php:425 ++msgid "ERROR: Invalid username." ++msgstr "ERROR: Nom d'usuari invàlid." ++ ++#: wp-includes/pluggable.php:436 ++msgid "ERROR: Incorrect password." ++msgstr "ERROR: Contrasenya incorrecta." ++ ++#: wp-includes/pluggable.php:784 ++#, php-format ++msgid "New comment on your post #%1$s \"%2$s\"" ++msgstr "Nou comentari en la teva entrada #%1$s \"%2$s\"" ++ ++#: wp-includes/pluggable.php:785 wp-includes/pluggable.php:880 ++#, php-format ++msgid "Author : %1$s (IP: %2$s , %3$s)" ++msgstr "Autor : %1$s (IP: %2$s , %3$s)" ++ ++#: wp-includes/pluggable.php:786 wp-includes/pluggable.php:881 ++#, php-format ++msgid "E-mail : %s" ++msgstr "Correu electrònic : %s" ++ ++#: wp-includes/pluggable.php:787 wp-includes/pluggable.php:795 ++#: wp-includes/pluggable.php:802 wp-includes/pluggable.php:867 ++#: wp-includes/pluggable.php:874 wp-includes/pluggable.php:882 ++#, php-format ++msgid "URL : %s" ++msgstr "URL : %s" ++ ++#: wp-includes/pluggable.php:788 wp-includes/pluggable.php:883 ++#, php-format ++msgid "Whois : http://ws.arin.net/cgi-bin/whois.pl?queryinput=%s" ++msgstr "Whois : http://ws.arin.net/cgi-bin/whois.pl?queryinput=%s" ++ ++#: wp-includes/pluggable.php:789 wp-includes/pluggable.php:884 ++msgid "Comment: " ++msgstr "Comentari: " ++ ++#: wp-includes/pluggable.php:790 ++msgid "You can see all comments on this post here: " ++msgstr "Pots veure tots els comentaris d'aquesta entrada aquí: " ++ ++#: wp-includes/pluggable.php:791 ++#, php-format ++msgid "[%1$s] Comment: \"%2$s\"" ++msgstr "[%1$s] Comentari: \"%2$s\"" ++ ++#: wp-includes/pluggable.php:793 ++#, php-format ++msgid "New trackback on your post #%1$s \"%2$s\"" ++msgstr "Nou retroenllaç a l'entrada #%1$s \"%2$s\"" ++ ++#: wp-includes/pluggable.php:794 wp-includes/pluggable.php:801 ++#, php-format ++msgid "Website: %1$s (IP: %2$s , %3$s)" ++msgstr "Lloc web: %1$s (IP: %2$s , %3$s)" ++ ++#: wp-includes/pluggable.php:796 wp-includes/pluggable.php:803 ++msgid "Excerpt: " ++msgstr "Extracte: " ++ ++#: wp-includes/pluggable.php:797 ++msgid "You can see all trackbacks on this post here: " ++msgstr "Pots veure tots els retroenllaços d'aquesta entrada aquí: " ++ ++#: wp-includes/pluggable.php:798 ++#, php-format ++msgid "[%1$s] Trackback: \"%2$s\"" ++msgstr "[%1$s] Retroenllaç: \"%2$s\"" ++ ++#: wp-includes/pluggable.php:800 ++#, php-format ++msgid "New pingback on your post #%1$s \"%2$s\"" ++msgstr "Nou retroping en l'entrada #%1$s \"%2$s\"" ++ ++#: wp-includes/pluggable.php:804 ++msgid "You can see all pingbacks on this post here: " ++msgstr "Pots veure tots els retropings d'aquesta entrada aquí: " ++ ++#: wp-includes/pluggable.php:805 ++#, php-format ++msgid "[%1$s] Pingback: \"%2$s\"" ++msgstr "[%1$s] Retroping: \"%2$s\"" ++ ++#: wp-includes/pluggable.php:808 wp-includes/pluggable.php:889 ++#, php-format ++msgid "Delete it: %s" ++msgstr "Eliminar: %s" ++ ++#: wp-includes/pluggable.php:809 wp-includes/pluggable.php:890 ++#, php-format ++msgid "Spam it: %s" ++msgstr "Marcar com a brossa: %s" ++ ++#: wp-includes/pluggable.php:864 ++#, php-format ++msgid "A new trackback on the post #%1$s \"%2$s\" is waiting for your approval" ++msgstr "Un nou retroenllaç en l'entrada #%1$s \"%2$s\" espera l'aprovació" ++ ++#: wp-includes/pluggable.php:866 wp-includes/pluggable.php:873 ++#, php-format ++msgid "Website : %1$s (IP: %2$s , %3$s)" ++msgstr "Lloc web : %1$s (IP: %2$s , %3$s)" ++ ++#: wp-includes/pluggable.php:868 ++msgid "Trackback excerpt: " ++msgstr "Extracte del retroenllaç: " ++ ++#: wp-includes/pluggable.php:871 ++#, php-format ++msgid "A new pingback on the post #%1$s \"%2$s\" is waiting for your approval" ++msgstr "Un nou retroping en l'entrada #%1$s \"%2$s\" espera l'aprovació" ++ ++#: wp-includes/pluggable.php:875 ++msgid "Pingback excerpt: " ++msgstr "Extracte del retroping: " ++ ++#: wp-includes/pluggable.php:878 ++#, php-format ++msgid "A new comment on the post #%1$s \"%2$s\" is waiting for your approval" ++msgstr "Un nou comentari en l'entrada #%1$s \"%2$s\" espera l'aprovació" ++ ++#: wp-includes/pluggable.php:888 ++#, php-format ++msgid "Approve it: %s" ++msgstr "Aprovar: %s" ++ ++#: wp-includes/pluggable.php:893 ++#, php-format ++msgid "Currently %s are waiting for approval. Please visit the moderation panel:" ++msgstr "" ++"En aquest moment hi ha %s esperant l'aprovació. Sisplau, visita el panell de " ++"moderació:" ++ ++#: wp-includes/pluggable.php:896 ++#, php-format ++msgid "[%1$s] Please moderate: \"%2$s\"" ++msgstr "[%1$s] Pendents de moderació: \"%2$s\"" ++ ++#: wp-includes/pluggable.php:923 ++#, php-format ++msgid "New user registration on your blog %s:" ++msgstr "Registrat un nou usuari en el teu blog %s:" ++ ++#: wp-includes/pluggable.php:924 wp-includes/pluggable.php:932 ++#: wp-login.php:103 wp-login.php:130 ++#, php-format ++msgid "Username: %s" ++msgstr "Nom d'usuari: %s" ++ ++#: wp-includes/pluggable.php:925 ++#, php-format ++msgid "E-mail: %s" ++msgstr "Correu electrònic: %s" ++ ++#: wp-includes/pluggable.php:927 ++#, php-format ++msgid "[%s] New User Registration" ++msgstr "[%s] Registre de Nou Usuari" ++ ++#: wp-includes/pluggable.php:933 wp-login.php:131 ++#, php-format ++msgid "Password: %s" ++msgstr "Contrasenya: %s" ++ ++#: wp-includes/pluggable.php:936 ++#, php-format ++msgid "[%s] Your username and password" ++msgstr "[%s] El teu nom d'usuari i contrasenya" ++ ++#: wp-includes/post-template.php:60 ++#, php-format ++msgid "Protected: %s" ++msgstr "Protegit: %s" ++ ++#: wp-includes/post-template.php:62 ++#, php-format ++msgid "Private: %s" ++msgstr "Privat: %s" ++ ++#: wp-includes/post-template.php:147 ++msgid "There is no excerpt because this is a protected post." ++msgstr "No hi ha extracte perquÚ és una entrada protegida." ++ ++#: wp-includes/post-template.php:163 ++msgid "Next page" ++msgstr "Pàgina segÃŒent" ++ ++#: wp-includes/post-template.php:164 ++msgid "Previous page" ++msgstr "Pàgina prÚvia" ++ ++#: wp-includes/post-template.php:379 wp-includes/post-template.php:400 ++msgid "Missing Attachment" ++msgstr "Falta l'adjunt" ++ ++#: wp-includes/post-template.php:526 ++msgid "This post is password protected. To view it please enter your password below:" ++msgstr "Aquesta entrada està protegida. Per veure-la, escriu la teva contrasenya:" ++ ++#: wp-includes/rss.php:856 ++msgid "" ++"An error has occurred, which probably means the feed is down. Try again " ++"later." ++msgstr "" ++"S'ha produït un error; probablement l'RSS ha deixat de funcionar. Torna-ho a " ++"provar d'aquí una estona." ++ ++#: wp-includes/script-loader.php:19 ++msgid "(Quick Links)" ++msgstr "(Enllaços ràpids)" ++ ++#: wp-includes/script-loader.php:20 ++msgid "Enter a word to look up:" ++msgstr "Introdueix la paraula per buscar:" ++ ++#: wp-includes/script-loader.php:21 ++msgid "Dictionary lookup" ++msgstr "Buscar en el diccionari" ++ ++#: wp-includes/script-loader.php:22 ++msgid "lookup" ++msgstr "consulta" ++ ++#: wp-includes/script-loader.php:23 ++msgid "Close all open tags" ++msgstr "Tancar totes les etiquetes obertes" ++ ++#: wp-includes/script-loader.php:24 ++msgid "close tags" ++msgstr "Tancar etiquetes" ++ ++#: wp-includes/script-loader.php:25 ++msgid "Enter the URL" ++msgstr "Introduir URL" ++ ++#: wp-includes/script-loader.php:26 ++msgid "Enter the URL of the image" ++msgstr "Introduir URL de la imatge" ++ ++#: wp-includes/script-loader.php:27 ++msgid "Enter a description of the image" ++msgstr "Introduir una descripció de la imatge" ++ ++#: wp-includes/script-loader.php:46 wp-includes/script-loader.php:55 ++msgid "You do not have permission to do that." ++msgstr "No tens permisos per a fer això." ++ ++#: wp-includes/script-loader.php:47 ++msgid "An unidentified error has occurred." ++msgstr "S'ha produït un error no identificat." ++ ++#: wp-includes/script-loader.php:56 ++msgid "Something strange happened. Try refreshing the page." ++msgstr "Ha passat alguna cosa estranya. Prova de tornar a carregar la pàgina." ++ ++#: wp-includes/script-loader.php:57 ++msgid "Slow down, I'm still sending your data!" ++msgstr "A poc a poc, encara estic enviant les dades!" ++ ++#: wp-includes/script-loader.php:93 ++msgid "You have attempted to queue too many files." ++msgstr "Has intentat d'encuar massa fitxers." ++ ++#: wp-includes/script-loader.php:94 ++#, php-format ++msgid "This file is too big. Your php.ini upload_max_filesize is %s." ++msgstr "El fitxer és massa gran. En el teu php.ini upload_max_filesize és %s." ++ ++#: wp-includes/script-loader.php:95 ++msgid "This file is empty. Please try another." ++msgstr "Aquest fitxer és buit. Sisplau escull-ne un altre." ++ ++#: wp-includes/script-loader.php:96 ++msgid "This file type is not allowed. Please try another." ++msgstr "Aquest fitxer és d'un tipus no permÚs." ++ ++#: wp-includes/script-loader.php:97 ++msgid "An error occurred in the upload. Please try again later." ++msgstr "" ++"S'ha produït un error carregant el fitxer. Torna-ho a provar d'aquí una " ++"estona." ++ ++#: wp-includes/script-loader.php:98 ++msgid "There was a configuration error. Please contact the server administrator." ++msgstr "" ++"S'ha produït un error de configuració. Sisplau contacta amb l'administrador " ++"del teu servidor." ++ ++#: wp-includes/script-loader.php:99 ++msgid "You may only upload 1 file." ++msgstr "Només pots carregar 1 arxiu." ++ ++#: wp-includes/script-loader.php:100 ++msgid "HTTP error." ++msgstr "Error de HTTP." ++ ++#: wp-includes/script-loader.php:101 ++msgid "Upload failed." ++msgstr "La càrrega del fitxer ha fallat." ++ ++#: wp-includes/script-loader.php:102 ++msgid "IO error." ++msgstr "Error d'Entrada/Sortida." ++ ++#: wp-includes/script-loader.php:103 ++msgid "Security error." ++msgstr "Error de seguretat." ++ ++#: wp-includes/script-loader.php:104 ++msgid "File cancelled." ++msgstr "Fitxer cancel·lat." ++ ++#: wp-includes/script-loader.php:105 ++msgid "Upload stopped." ++msgstr "La càrrega del fitxer ha sigut aturada." ++ ++#: wp-includes/script-loader.php:106 ++msgid "Dismiss" ++msgstr "Rebutjar" ++ ++#: wp-includes/script-loader.php:107 ++msgid "Crunching…" ++msgstr "Processant…" ++ ++#: wp-includes/script-loader.php:108 ++msgid "Deleted" ++msgstr "Eliminat" ++ ++#: wp-includes/script-loader.php:117 ++msgid "Separate multiple categories with commas." ++msgstr "Separa múltiples categories amb comes." ++ ++#: wp-includes/script-loader.php:125 ++msgid "Bad" ++msgstr "Dolenta" ++ ++#: wp-includes/script-loader.php:126 ++msgid "Good" ++msgstr "Bona" ++ ++#: wp-includes/script-loader.php:127 ++msgid "Strong" ++msgstr "Robusta" ++ ++#: wp-includes/script-loader.php:131 ++msgid "%i% pending" ++msgstr "%i% pendent" ++ ++#: wp-includes/script-loader.php:149 ++msgid "Tags used on this post:" ++msgstr "Etiquetes usades en aquesta entrada:" ++ ++#: wp-includes/script-loader.php:151 ++msgid "Add new tag" ++msgstr "Afegir nova etiqueta" ++ ++#: wp-includes/script-loader.php:152 ++msgid "Separate tags with commas" ++msgstr "Separa etiquetes amb comes" ++ ++#: wp-includes/script-loader.php:169 ++msgid "Browse your files" ++msgstr "Veure els teus arxius" ++ ++#: wp-includes/script-loader.php:170 ++msgid "« Back" ++msgstr "« Tornar enrere" ++ ++#: wp-includes/script-loader.php:171 ++msgid "Direct link to file" ++msgstr "Enllaçat directe a l'arxiu" ++ ++#: wp-includes/script-loader.php:175 ++msgid "Icon" ++msgstr "Icona" ++ ++#: wp-includes/script-loader.php:177 ++msgid "Show:" ++msgstr "Mostrar:" ++ ++#: wp-includes/script-loader.php:178 ++msgid "Link to:" ++msgstr "Enllaç cap a:" ++ ++#: wp-includes/script-loader.php:179 ++msgid "File" ++msgstr "Arxiu" ++ ++#: wp-includes/script-loader.php:182 ++msgid "Send to editor »" ++msgstr "Enviar a l'editor »" ++ ++#: wp-includes/script-loader.php:186 ++msgid "Delete File" ++msgstr "Esborrar arxiu" ++ ++#: wp-includes/script-loader.php:187 ++msgid "Save »" ++msgstr "Desar »" ++ ++#: wp-includes/script-loader.php:188 ++msgid "" ++"Are you sure you want to delete the file '%title%'?\n" ++"Click ok to delete or cancel to go back." ++msgstr "" ++"Estàs segur que vols esborrar el fitxer '%title%'?\n" ++"Fes clic a ok per a esborrar o a cancel·lar per tornar enrera." ++ ++#: wp-includes/script-loader.php:501 ++msgid "Saving Draft…" ++msgstr "Desant esborrany…" ++ ++#: wp-includes/taxonomy.php:224 wp-includes/taxonomy.php:290 ++#: wp-includes/taxonomy.php:404 wp-includes/taxonomy.php:543 ++#: wp-includes/taxonomy.php:1045 wp-includes/taxonomy.php:1262 ++msgid "Invalid Taxonomy" ++msgstr "Taxonomia incorrecta" ++ ++#: wp-includes/taxonomy.php:1165 wp-includes/taxonomy.php:1416 ++msgid "Invalid taxonomy" ++msgstr "Taxonomia incorrecta" ++ ++#: wp-includes/taxonomy.php:1168 ++msgid "Invalid term ID" ++msgstr "ID de terme és invàlid" ++ ++#: wp-includes/taxonomy.php:1199 wp-includes/taxonomy.php:1206 ++msgid "Could not insert term into the database" ++msgstr "No s'ha pogut inserir el terme a la base de dades" ++ ++#: wp-includes/taxonomy.php:1464 ++#, php-format ++msgid "The slug \"%s\" is already in use by another term" ++msgstr "L'URL \"%s\" ja s'utilitza en un altre terme" ++ ++#: wp-includes/theme.php:174 ++msgid "Stylesheet is missing." ++msgstr "Falta el full d'estil." ++ ++#: wp-includes/theme.php:188 ++msgid "File not readable." ++msgstr "Arxiu no llegible." ++ ++#: wp-includes/theme.php:229 ++msgid "Template is missing." ++msgstr "Falta la plantilla." ++ ++#: wp-includes/user.php:29 ++msgid "Please log in again." ++msgstr "Sisplau torna a identificar-te." ++ ++#: wp-includes/widgets.php:24 wp-includes/widgets.php:52 ++#, php-format ++msgid "Sidebar %d" ++msgstr "Barra lateral %d" ++ ++#: wp-includes/widgets.php:412 ++msgid "Sort by:" ++msgstr "Ordenat per:" ++ ++#: wp-includes/widgets.php:414 ++msgid "Page title" ++msgstr "Títol de la pàgina" ++ ++#: wp-includes/widgets.php:415 ++msgid "Page order" ++msgstr "Ordre de les pàgines" ++ ++#: wp-includes/widgets.php:416 ++msgid "Page ID" ++msgstr "ID de la pàgina" ++ ++#: wp-includes/widgets.php:421 ++msgid "Exclude:" ++msgstr "Excloure:" ++ ++#: wp-includes/widgets.php:423 ++msgid "Page IDs, separated by commas." ++msgstr "ID de les pàgines, separats per comes." ++ ++#: wp-includes/widgets.php:464 ++msgid "Select Month" ++msgstr "Seleccionar mes" ++ ++#: wp-includes/widgets.php:494 wp-includes/widgets.php:792 ++msgid "Show post counts" ++msgstr "Mostrar el nombre d'entrades" ++ ++#: wp-includes/widgets.php:496 ++msgid "Display as a drop down" ++msgstr "Mostrar com a llista desplegable" ++ ++#: wp-includes/widgets.php:505 wp-includes/widgets.php:1375 ++#: wp-includes/widgets.php:1376 ++msgid "Meta" ++msgstr "Meta" ++ ++#: wp-includes/widgets.php:512 ++msgid "Syndicate this site using RSS 2.0" ++msgstr "Sindicar aquest lloc fent servir RSS 2.0" ++ ++#: wp-includes/widgets.php:512 ++msgid "Entries RSS" ++msgstr "" ++"RSS de les " ++"entrades" ++ ++#: wp-includes/widgets.php:649 ++msgid "Arbitrary text or HTML" ++msgstr "Text arbitrari o HTML" ++ ++#: wp-includes/widgets.php:651 ++msgid "Text" ++msgstr "Text" ++ ++#: wp-includes/widgets.php:694 ++msgid "Select Category" ++msgstr "Seleccionar categoria" ++ ++#: wp-includes/widgets.php:787 ++msgid "Show as dropdown" ++msgstr "Mostrar com a llista desplegable" ++ ++#: wp-includes/widgets.php:797 ++msgid "Show hierarchy" ++msgstr "Mostrar jerarquia" ++ ++#: wp-includes/widgets.php:812 ++msgid "A list or dropdown of categories" ++msgstr "Llista o desplegable de categories" ++ ++#: wp-includes/widgets.php:867 wp-includes/widgets.php:1382 ++#: wp-includes/widgets.php:1383 ++msgid "Recent Posts" ++msgstr "Entrades recents" ++ ++#: wp-includes/widgets.php:918 ++msgid "Number of posts to show:" ++msgstr "Nombre d'entrades que cal mostrar:" ++ ++#: wp-includes/widgets.php:920 wp-includes/widgets.php:979 ++msgid "(at most 15)" ++msgstr "(màxim 15)" ++ ++#: wp-includes/widgets.php:948 ++#, php-format ++msgid "%1$s on %2$s" ++msgstr "%1$s en %2$s" ++ ++#: wp-includes/widgets.php:977 ++msgid "Number of comments to show:" ++msgstr "Nombre de comentaris que cal mostrar:" ++ ++#: wp-includes/widgets.php:992 ++msgid "The most recent comments" ++msgstr "Comentaris més recents" ++ ++#: wp-includes/widgets.php:1035 ++msgid "Unknown Feed" ++msgstr "Fil de RSS desconegut" ++ ++#: wp-includes/widgets.php:1041 ++msgid "Syndicate this content" ++msgstr "Sindicar aquest contingut" ++ ++#: wp-includes/widgets.php:1083 ++msgid "Untitled" ++msgstr "Sense títol" ++ ++#: wp-includes/widgets.php:1133 ++msgid "An error has occurred; the feed is probably down. Try again later." ++msgstr "" ++"S'ha produït un error; probablement l'RSS ha deixat de funcionar. Torna-ho a " ++"provar d'aquí una estona." ++ ++#: wp-includes/widgets.php:1215 ++msgid "Enter the RSS feed URL here:" ++msgstr "Introdueix la URL del fil de RSS aquí:" ++ ++#: wp-includes/widgets.php:1221 ++msgid "Give the feed a title (optional):" ++msgstr "Pots donar un titol al fil (opcional):" ++ ++#: wp-includes/widgets.php:1227 ++msgid "How many items would you like to display?" ++msgstr "Quantes entrades s'han de mostrar?" ++ ++#: wp-includes/widgets.php:1240 ++msgid "Display item content?" ++msgstr "Mostrar el contingut de les entrades?" ++ ++#: wp-includes/widgets.php:1247 ++msgid "Display item author if available?" ++msgstr "Mostrar l'autor si és disponible?" ++ ++#: wp-includes/widgets.php:1254 ++msgid "Display item date?" ++msgstr "Mostrar la data de les entrades?" ++ ++#: wp-includes/widgets.php:1287 ++msgid "Error: could not find an RSS or ATOM feed at that URL." ++msgstr "Error: no s'ha trobat cap fil de RSS o ATOM en aquesta URL." ++ ++#: wp-includes/widgets.php:1288 ++#, php-format ++msgid "Error in RSS %1$d" ++msgstr "Error al fil de RSS %1$d" ++ ++#: wp-includes/widgets.php:1302 ++msgid "Entries from any RSS or Atom feed" ++msgstr "Entrades d'un fil de RSS o Atom qualsevol" ++ ++#: wp-includes/widgets.php:1359 ++msgid "Your blog's WordPress Pages" ++msgstr "Les pàgines de WordPress del teu blog" ++ ++#: wp-includes/widgets.php:1363 ++msgid "A calendar of your blog's posts" ++msgstr "Un calendari de les entrades del teu blog" ++ ++#: wp-includes/widgets.php:1367 ++msgid "A monthly archive of your blog's posts" ++msgstr "Un arxiu mensual de les entrades del teu blog" ++ ++#: wp-includes/widgets.php:1371 ++msgid "Your blogroll" ++msgstr "El teu blogroll" ++ ++#: wp-includes/widgets.php:1374 ++msgid "Log in/out, admin, feed and WordPress links" ++msgstr "Entrar/sortir, admin, fils de RSS i enllaços a WordPress" ++ ++#: wp-includes/widgets.php:1378 ++msgid "A search form for your blog" ++msgstr "Un formulari de cerca en el teu blog" ++ ++#: wp-includes/widgets.php:1381 ++msgid "The most recent posts on your blog" ++msgstr "Les entrades més recents en el teu blog" ++ ++#: wp-includes/widgets.php:1385 ++msgid "Your most used tags in cloud format" ++msgstr "Les etiquetes més usades en forma de núvol" ++ ++#: wp-includes/widgets.php:1386 wp-includes/widgets.php:1387 ++msgid "Tag Cloud" ++msgstr "Núvol d'etiquetes" ++ ++#: wp-includes/wp-db.php:532 ++#, php-format ++msgid "ERROR: WordPress %s requires MySQL 4.0.0 or higher" ++msgstr "ERROR: WordPress %s requereix MySQL 4.0.0 o posterior" ++ ++#: wp-login.php:30 ++msgid "Powered by WordPress" ++msgstr "Funcionant amb el WordPress" ++ ++#: wp-login.php:65 ++msgid "ERROR: Enter a username or e-mail address." ++msgstr "" ++"ERROR: Sisplau, introdueix un nom d'usuari o correu " ++"electrònic." ++ ++#: wp-login.php:70 ++msgid "ERROR: There is no user registered with that email address." ++msgstr "" ++"ERROR: No hi ha cap usuari registrat amb aquesta adreça " ++"electrònica." ++ ++#: wp-login.php:82 ++msgid "ERROR: Invalid username or e-mail." ++msgstr "ERROR: Nom d'usuari o adreça electrònica invàlids." ++ ++#: wp-login.php:101 ++msgid "Someone has asked to reset the password for the following site and username." ++msgstr "" ++"Algú ha demanat d'inicialitzar la contrasenya per al segÃŒent web i nom " ++"d'usuari." ++ ++#: wp-login.php:104 ++msgid "" ++"To reset your password visit the following address, otherwise just ignore " ++"this email and nothing will happen." ++msgstr "" ++"Si vols reestablir la teva contrasenya visita la segÃŒent direcció. En cas " ++"contrari ignora aquest correu i no passarà res." ++ ++#: wp-login.php:107 ++#, php-format ++msgid "[%s] Password Reset" ++msgstr "[%s] Reestablir contrasenya" ++ ++#: wp-login.php:108 wp-login.php:135 ++msgid "The e-mail could not be sent." ++msgstr "No s'ha pogut enviar el correu electrònic." ++ ++#: wp-login.php:108 wp-login.php:135 ++msgid "Possible reason: your host may have disabled the mail() function..." ++msgstr "Possible raó: el servidor pot tenir deshabilitada la funció mail()..." ++ ++#: wp-login.php:119 wp-login.php:123 ++msgid "Invalid key" ++msgstr "Clau invàlida" ++ ++#: wp-login.php:134 ++#, php-format ++msgid "[%s] Your new password" ++msgstr "[%s] La teva nova contrasenya" ++ ++#: wp-login.php:140 ++#, php-format ++msgid "Password Lost and Changed for user: %s" ++msgstr "Contrasenya perduda i canviada per a l'usuari: %s" ++ ++#: wp-login.php:141 ++#, php-format ++msgid "[%s] Password Lost/Changed" ++msgstr "[%s] Contrasenya perduda/canviada" ++ ++#: wp-login.php:157 ++msgid "" ++"ERROR: This username is invalid. Please enter a valid " ++"username." ++msgstr "" ++"ERROR: El nom d'usuari és invàlid. Sisplau, introdueix un " ++"nom d'usuari vàlid." ++ ++#: wp-login.php:160 ++msgid "" ++"ERROR: This username is already registered, please choose " ++"another one." ++msgstr "" ++"ERROR: Aquest usuari ja existeix. Sisplau, escull-ne un " ++"altre." ++ ++#: wp-login.php:164 ++msgid "ERROR: Please type your e-mail address." ++msgstr "ERROR: Sisplau, introdueix el teu correu electrònic." ++ ++#: wp-login.php:166 ++msgid "ERROR: The email address isn’t correct." ++msgstr "ERROR: La direcció de correu electrònic no és correcta." ++ ++#: wp-login.php:169 ++msgid "" ++"ERROR: This email is already registered, please choose " ++"another one." ++msgstr "" ++"ERROR: Aquesta adreça electrònica ja existeix. Sisplau, " ++"escull-ne una altra." ++ ++#: wp-login.php:181 ++#, php-format ++msgid "" ++"ERROR: Couldn’t register you... please contact the webmaster !" ++msgstr "" ++"ERROR: No se t'ha pogut registrar... sisplau, posa't en " ++"contacte amb l'administrador!" ++ ++#: wp-login.php:244 ++msgid "Sorry, that key does not appear to be valid." ++msgstr "La contrasenya no es vàlida." ++ ++#: wp-login.php:247 ++msgid "Lost Password" ++msgstr "Contrasenya perduda" ++ ++#: wp-login.php:247 ++msgid "" ++"Please enter your username or e-mail address. You will receive a new " ++"password via e-mail." ++msgstr "" ++"Sisplau, introdueix el teu nom d'usuari o adreça electrònica. Rebràs una " ++"contrasenya nova per correu electrònic." ++ ++#: wp-login.php:252 ++msgid "Username or E-mail:" ++msgstr "Nom d'usuari o adreça electrònica:" ++ ++#: wp-login.php:256 ++msgid "Get New Password" ++msgstr "Obtenir una nova contrasenya" ++ ++#: wp-login.php:270 wp-login.php:335 wp-login.php:412 ++msgid "Are you lost?" ++msgstr "T'has perdut?" ++ ++#: wp-login.php:270 wp-login.php:335 wp-login.php:412 ++#, php-format ++msgid "« Back to %s" ++msgstr "« Tornar cap a %s" ++ ++#: wp-login.php:311 ++msgid "Registration Form" ++msgstr "Formulari de registre" ++ ++#: wp-login.php:311 ++msgid "Register For This Site" ++msgstr "Registrar-se en el blog" ++ ++#: wp-login.php:324 ++msgid "A password will be e-mailed to you." ++msgstr "Rebràs una contrasenya per correu electrònic." ++ ++#: wp-login.php:330 wp-login.php:404 wp-login.php:406 ++msgid "Password Lost and Found" ++msgstr "Recuperació de contrasenya perduda" ++ ++#: wp-login.php:330 wp-login.php:404 wp-login.php:406 ++msgid "Lost your password?" ++msgstr "Has perdut la contrasenya?" ++ ++#: wp-login.php:366 ++msgid "" ++"ERROR: Cookies are blocked or not supported by your " ++"browser. You must enable " ++"cookies to use WordPress." ++msgstr "" ++"ERROR: Els cookies són bloquejats o no suportats pel teu " ++"navegador. Has d'activar " ++"cookies per a usar WordPress." ++ ++#: wp-login.php:369 ++msgid "You are now logged out." ++msgstr "L'usuari ha sigut desconnectat." ++ ++#: wp-login.php:370 ++msgid "User registration is currently not allowed." ++msgstr "No es permet el registre de nous usuaris." ++ ++#: wp-login.php:371 ++msgid "Check your e-mail for the confirmation link." ++msgstr "Comprova si has rebut per correu electrònic l'enllaç de confirmació." ++ ++#: wp-login.php:372 ++msgid "Check your e-mail for your new password." ++msgstr "Comprova si has rebut per correu electrònic la nova contrasenya." ++ ++#: wp-login.php:373 ++msgid "Registration complete. Please check your e-mail." ++msgstr "Registrament complet. Sisplau comprova el teu correu electrònic." ++ ++#: wp-login.php:375 ++msgid "Login" ++msgstr "Identificar-se" ++ ++#: wp-login.php:389 ++msgid "Remember Me" ++msgstr "Recordar-me" ++ ++#: xmlrpc.php:152 xmlrpc.php:690 xmlrpc.php:712 xmlrpc.php:734 ++msgid "Bad login/pass combination." ++msgstr "Parella nom/paraula de pas incorrecta." ++ ++#: xmlrpc.php:238 ++msgid "Sorry, you can not edit this page." ++msgstr "Ho sento, no pots editar aquesta pàgina." ++ ++#: xmlrpc.php:305 xmlrpc.php:409 xmlrpc.php:452 ++msgid "Sorry, no such page." ++msgstr "La pàgina no existeix." ++ ++#: xmlrpc.php:326 xmlrpc.php:496 ++msgid "Sorry, you can not edit pages." ++msgstr "Ho sento, no pots editar pàgines." ++ ++#: xmlrpc.php:374 ++msgid "Sorry, you can not add new pages." ++msgstr "Ho sento, no pots afegir noves pàgines." ++ ++#: xmlrpc.php:415 ++msgid "Sorry, you do not have the right to delete this page." ++msgstr "No tens permís per a esborrar aquesta pàgina." ++ ++#: xmlrpc.php:421 ++msgid "Failed to delete the page." ++msgstr "Error en intentar esborrar la pàgina." ++ ++#: xmlrpc.php:458 ++msgid "Sorry, you do not have the right to edit this page." ++msgstr "No tens permís per a editar aquesta pàgina." ++ ++#: xmlrpc.php:546 ++msgid "Sorry, you can not edit posts on this blog." ++msgstr "Ho sento, no pots editar entrades en aquest blog." ++ ++#: xmlrpc.php:585 ++msgid "Sorry, you do not have the right to add a category." ++msgstr "Ho sento, no estàs acreditat per a afegir una categoria." ++ ++#: xmlrpc.php:613 ++msgid "Sorry, the new category failed." ++msgstr "Error en la nova categoria." ++ ++#: xmlrpc.php:639 ++msgid "Sorry, you do not have the right to delete a category." ++msgstr "Ho sento, no tens permisos per a eliminar una categoria." ++ ++#: xmlrpc.php:665 ++msgid "" ++"Sorry, you must be able to edit posts to this blog in order to view " ++"categories." ++msgstr "" ++"Ho sento, hast de tenir permís d'edició en aquest blog per a veure les " ++"categories." ++ ++#: xmlrpc.php:695 ++msgid "You are not allowed access to details about comments." ++msgstr "No tens autorització per a accedir als detalls dels comentaris." ++ ++#: xmlrpc.php:717 xmlrpc.php:739 ++msgid "You are not allowed access to details about this blog." ++msgstr "No tens autorizació per als detalls d'aquest blog." ++ ++#: xmlrpc.php:795 ++msgid "Sorry, you do not have access to user data on this blog." ++msgstr "Ho sento, no tens accés a les dades d'usuari en aquest blog." ++ ++#: xmlrpc.php:828 xmlrpc.php:1624 xmlrpc.php:2013 xmlrpc.php:2052 ++#: xmlrpc.php:2141 ++msgid "Sorry, you can not edit this post." ++msgstr "No tens autorizació per a editar aquesta entrada." ++ ++#: xmlrpc.php:872 xmlrpc.php:1714 xmlrpc.php:1932 ++msgid "Either there are no posts, or something went wrong." ++msgstr "O bé no hi ha cap entrada o ha ocorregut un problema tÚcnic." ++ ++#: xmlrpc.php:923 xmlrpc.php:960 ++msgid "Sorry, this user can not edit the template." ++msgstr "Aquest usuari no pot editar la plantilla." ++ ++#: xmlrpc.php:971 ++msgid "" ++"Either the file is not writable, or something wrong happened. The file has " ++"not been updated." ++msgstr "" ++"O el fitxer està protegit contra escriptura o ha ocorregut un problema " ++"tÚcnic. El fitxer no ha sigut actualitzat." ++ ++#: xmlrpc.php:998 ++msgid "Sorry, you are not allowed to post on this blog." ++msgstr "No tens autorització per a publicar en aquest blog." ++ ++#: xmlrpc.php:1047 xmlrpc.php:1096 xmlrpc.php:1690 xmlrpc.php:2098 ++msgid "Sorry, no such post." ++msgstr "Ho sento, una tal entrada no existeix." ++ ++#: xmlrpc.php:1059 xmlrpc.php:1564 ++msgid "Sorry, you do not have the right to publish this post." ++msgstr "No tens permisos per a publicar aquesta entrada." ++ ++#: xmlrpc.php:1136 xmlrpc.php:1385 ++msgid "Sorry, you are not allowed to publish posts on this blog." ++msgstr "Disculpa, no tens permisos per a publicar entrades en aquest blog." ++ ++#: xmlrpc.php:1141 xmlrpc.php:1390 ++msgid "Sorry, you are not allowed to publish pages on this blog." ++msgstr "No tens autorització per a publicar en aquest blog." ++ ++#: xmlrpc.php:1149 xmlrpc.php:1198 xmlrpc.php:1398 xmlrpc.php:1458 ++msgid "Invalid post type." ++msgstr "Tipus d'entrada invàlid." ++ ++#: xmlrpc.php:1189 ++msgid "You are not allowed to post as this user" ++msgstr "Amb aquest nom d'usuari no tens autorització per a crear entrades" ++ ++#: xmlrpc.php:1194 ++msgid "You are not allowed to create pages as this user" ++msgstr "Amb aquest nom d'usuari no tens autorizació per a crear pàgines" ++ ++#: xmlrpc.php:1412 ++msgid "Invalid post id." ++msgstr "No es troba l'ID de l'entrada." ++ ++#: xmlrpc.php:1449 ++msgid "You are not allowed to change the post author as this user." ++msgstr "" ++"Amb aquest nom d'usuari no tens autorització per a canviar l'autor de " ++"l'entrada." ++ ++#: xmlrpc.php:1454 ++msgid "You are not allowed to change the page author as this user." ++msgstr "" ++"Amb aquest nom d'usuari no tens autorizació per a canviar l'autor de la " ++"pàgina." ++ ++#: xmlrpc.php:1562 ++msgid "Sorry, you do not have the right to publish this page." ++msgstr "No tens permís per a publicar aquesta pàgina." ++ ++#: xmlrpc.php:1594 ++msgid "Sorry, your entry could not be edited. Something wrong happened." ++msgstr "Ho sento, l'entrada no ha pogut ser editada. Ha ocorregut un problema tÚcnic." ++ ++#: xmlrpc.php:1809 xmlrpc.php:1979 ++msgid "" ++"Sorry, you must be able to edit posts on this blog in order to view " ++"categories." ++msgstr "" ++"Ho sento, hast de tenir permís d'edició en aquest blog per a veure les " ++"categories." ++ ++#: xmlrpc.php:1858 ++msgid "You are not allowed to upload files to this site." ++msgstr "No tens autorització per a pujar fitxers a aquest web." ++ ++#: xmlrpc.php:1885 ++#, php-format ++msgid "Could not write file %1$s (%2$s)" ++msgstr "No s'ha pogut escriure el fitxer %1$s (%2$s)" ++ ++#: xmlrpc.php:2183 ++msgid "Is there no link to us?" ++msgstr "No hi ha cap enllaç cap a nosaltres?" ++ ++#: xmlrpc.php:2223 xmlrpc.php:2233 xmlrpc.php:2240 xmlrpc.php:2342 ++msgid "" ++"The specified target URL cannot be used as a target. It either doesn't " ++"exist, or it is not a pingback-enabled resource." ++msgstr "" ++"La URL indicada no pot ser usada com a destinació. O bé no existeix, o bé no " ++"admet retropings." ++ ++#: xmlrpc.php:2236 ++msgid "The source URL and the target URL cannot both point to the same resource." ++msgstr "La URL d'origen i de destinació no poden apuntar al mateix recurs." ++ ++#: xmlrpc.php:2246 ++msgid "The pingback has already been registered." ++msgstr "El retroping ja ha sigut registrat." ++ ++#: xmlrpc.php:2254 ++msgid "The source URL does not exist." ++msgstr "La URL d'origen no existeix." ++ ++#: xmlrpc.php:2266 ++msgid "We cannot find a title on that page." ++msgstr "No podem trobar cap títol en aquesta pàgina." ++ ++#: xmlrpc.php:2302 ++msgid "" ++"The source URL does not contain a link to the target URL, and so cannot be " ++"used as a source." ++msgstr "" ++"La URL d'origen no conté cap enllaç a una URL de destinació i per tant no " ++"pot ser usada com a origen." ++ ++#: xmlrpc.php:2322 ++#, php-format ++msgid "Pingback from %1$s to %2$s registered. Keep the web talking! :-)" ++msgstr "Retroping de %1$s a %2$s registrat." ++ ++#: xmlrpc.php:2349 ++msgid "The specified target URL does not exist." ++msgstr "La URL de destinació no existeix." ++ +diff -Nru wordpress/wp-content/languages/fr_FR.po wordpress-2.5.0/wp-content/languages/fr_FR.po +--- wordpress/wp-content/languages/fr_FR.po 1970-01-01 01:00:00.000000000 +0100 ++++ wordpress-2.5.0/wp-content/languages/fr_FR.po 2008-04-18 14:21:14.000000000 +0200 +@@ -0,0 +1,9993 @@ ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: WordPress 2.3.1\n" ++"Report-Msgid-Bugs-To: wp-polyglots@lists.automattic.com\n" ++"POT-Creation-Date: 2008-03-28 08:00+0000\n" ++"PO-Revision-Date: 2008-03-30 00:48+0100\n" ++"Last-Translator: Xavier Borderie \n" ++"Language-Team: French (France) \n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++"X-Rosetta-Version: 0.1\n" ++"X-Poedit-Country: FRANCE\n" ++"X-Poedit-SourceCharset: utf-8\n" ++"X-Poedit-KeywordsList: _e;_c;__\n" ++"X-Poedit-Basepath: .\n" ++"Plural-Forms: nplurals=2; plural=n>1\n" ++"X-Poedit-Language: French\n" ++ ++#: wp-admin/admin-ajax.php:69 ++#: wp-admin/categories.php:40 ++#: wp-admin/categories.php:60 ++#: wp-admin/edit-link-categories.php:16 ++#: wp-admin/link-category.php:34 ++#, php-format ++msgid "Can’t delete the %s category: this is the default one" ++msgstr "Impossible de supprimer la catégorie %s : c’est celle par défaut" ++ ++#: wp-admin/admin-ajax.php:227 ++#: wp-admin/admin-ajax.php:279 ++#: wp-admin/includes/taxonomy.php:62 ++msgid "You did not enter a category name." ++msgstr "Vous n’avez pas entré de nom de catégorie." ++ ++#: wp-admin/admin-ajax.php:235 ++msgid "The category you are trying to create already exists." ++msgstr "La catégorie que vous essayez de créer existe déjà." ++ ++#: wp-admin/admin-ajax.php:267 ++#, php-format ++msgid "Category %s added" ++msgstr "Catégorie #%s ajoutée" ++ ++#: wp-admin/admin-ajax.php:313 ++msgid "You did not enter a tag name." ++msgstr "Vous n’avez pas entré de nom de tag." ++ ++#: wp-admin/admin-ajax.php:338 ++#, php-format ++msgid "Tag %s added" ++msgstr "Tag %s ajouté" ++ ++#: wp-admin/admin-ajax.php:456 ++#, php-format ++msgid "User %s added" ++msgstr "Utilisateur %s ajouté" ++ ++#: wp-admin/admin-ajax.php:476 ++#, php-format ++msgid "Draft Saved at %s." ++msgstr "Brouillon enregistré à %s." ++ ++#: wp-admin/admin-ajax.php:476 ++msgid "g:i:s a" ++msgstr "G:i:s" ++ ++#: wp-admin/admin-ajax.php:496 ++msgid "Someone" ++msgstr "Quelqu’un" ++ ++#: wp-admin/admin-ajax.php:498 ++#, php-format ++msgid "Autosave disabled: %s is currently editing this page." ++msgstr "Enregistrement automatique désactivé : %s modifie actuellement cette page." ++ ++#: wp-admin/admin-ajax.php:498 ++#, php-format ++msgid "Autosave disabled: %s is currently editing this post." ++msgstr "Enregistrement automatique désactivé : %s modifie actuellement cet article." ++ ++#: wp-admin/admin-ajax.php:507 ++#: wp-admin/includes/post.php:10 ++#: wp-admin/page.php:97 ++msgid "You are not allowed to edit this page." ++msgstr "Vous n’avez pas l’autorisation de modifier cette page." ++ ++#: wp-admin/admin-ajax.php:510 ++#: wp-admin/includes/post.php:13 ++#: wp-admin/post.php:104 ++msgid "You are not allowed to edit this post." ++msgstr "Vous n’avez pas l’autorisation de modifier cet article." ++ ++#: wp-admin/admin-footer.php:8 ++msgid "Thank you for creating with WordPress" ++msgstr "Merci de faire de WordPress votre outil de création" ++ ++#: wp-admin/admin-footer.php:8 ++msgid "Documentation" ++msgstr "Documentation en anglais" ++ ++#: wp-admin/admin-footer.php:8 ++msgid "Feedback" ++msgstr "Forums d’entraide en français" ++ ++#: wp-admin/admin-header.php:64 ++msgid "Visit Site" ++msgstr "Aller sur le site" ++ ++#: wp-admin/admin-header.php:66 ++#, php-format ++msgid "Howdy, %2$s!" ++msgstr "Salutations, %2$s !" ++ ++#: wp-admin/admin-header.php:66 ++msgid "Log Out" ++msgstr "Se déconnecter" ++ ++#: wp-admin/admin-header.php:66 ++msgid "Help" ++msgstr "Documentation (en français)" ++ ++#: wp-admin/admin-header.php:66 ++msgid "Forums" ++msgstr "Forums d’entraide en français" ++ ++#: wp-admin/admin.php:29 ++msgid "Classic" ++msgstr "Classique" ++ ++#: wp-admin/admin.php:30 ++msgid "Fresh" ++msgstr "Fraîcheur" ++ ++#: wp-admin/admin.php:58 ++msgid "Invalid plugin page" ++msgstr "Page d’extension non valide" ++ ++#: wp-admin/admin.php:62 ++#, php-format ++msgid "Cannot load %s." ++msgstr "Impossible de charger %s." ++ ++#: wp-admin/admin.php:80 ++msgid "You are not allowed to import." ++msgstr "Vous n’avez pas l’autorisation d’importer." ++ ++#: wp-admin/admin.php:83 ++msgid "Invalid importer." ++msgstr "Fichier d’importation non valide." ++ ++#: wp-admin/admin.php:91 ++msgid "Cannot load importer." ++msgstr "Impossible de charger l’importateur." ++ ++#: wp-admin/admin.php:98 ++#: wp-admin/import/blogger.php:151 ++#: wp-admin/import.php:3 ++#: wp-admin/import.php:9 ++#: wp-admin/import/textpattern.php:49 ++#: wp-admin/menu.php:47 ++msgid "Import" ++msgstr "Importer" ++ ++#: wp-admin/async-upload.php:21 ++#: wp-admin/media-upload.php:11 ++#: wp-admin/upload.php:5 ++#: wp-app.php:407 ++#: wp-app.php:562 ++msgid "You do not have permission to upload files." ++msgstr "Vous n’avez pas l’autorisation d’envoyer des fichiers." ++ ++#: wp-admin/bookmarklet.php:6 ++#: wp-admin/categories.php:19 ++#: wp-admin/categories.php:34 ++#: wp-admin/categories.php:86 ++#: wp-admin/edit-link-categories.php:9 ++#: wp-admin/edit-tags.php:19 ++#: wp-admin/edit-tags.php:35 ++#: wp-admin/edit-tags.php:48 ++#: wp-admin/edit-tags.php:82 ++#: wp-admin/import/wp-cat2tag.php:210 ++#: wp-admin/includes/bookmark.php:9 ++#: wp-admin/link-category.php:13 ++#: wp-admin/link-category.php:28 ++#: wp-admin/link-category.php:68 ++#: wp-admin/link-import.php:17 ++#: wp-admin/link-import.php:69 ++#: wp-admin/options.php:11 ++#: wp-admin/sidebar.php:7 ++#: wp-admin/users.php:6 ++#: wp-admin/widgets.php:7 ++#: wp-content/plugins/akismet/akismet.php:50 ++msgid "Cheatin’ uh?" ++msgstr "Alors, on triche ?" ++ ++#: wp-admin/categories.php:4 ++#: wp-admin/edit-form-advanced.php:217 ++#: wp-admin/edit-form.php:19 ++#: wp-admin/edit-link-form.php:101 ++#: wp-admin/includes/template.php:295 ++#: wp-admin/link-category.php:52 ++#: wp-admin/link-manager.php:123 ++#: wp-admin/menu.php:43 ++#: wp-includes/category-template.php:276 ++#: wp-includes/widgets.php:686 ++#: wp-includes/widgets.php:814 ++msgid "Categories" ++msgstr "Catégories" ++ ++#: wp-admin/categories.php:53 ++msgid "You are not allowed to delete categories." ++msgstr "Vous n’avez pas l’autorisation d’effacer des catégories." ++ ++#: wp-admin/categories.php:108 ++#: wp-admin/edit-link-categories.php:43 ++msgid "Category added." ++msgstr "Catégorie ajoutée." ++ ++#: wp-admin/categories.php:109 ++#: wp-admin/edit-link-categories.php:44 ++msgid "Category deleted." ++msgstr "Catégorie supprimée." ++ ++#: wp-admin/categories.php:110 ++#: wp-admin/edit-link-categories.php:45 ++msgid "Category updated." ++msgstr "Catégorie mise à jour." ++ ++#: wp-admin/categories.php:111 ++#: wp-admin/edit-link-categories.php:46 ++msgid "Category not added." ++msgstr "La catégorie n’a pas été ajoutée." ++ ++#: wp-admin/categories.php:112 ++#: wp-admin/edit-link-categories.php:47 ++msgid "Category not updated." ++msgstr "La catégorie n’a pas été mise à jour." ++ ++#: wp-admin/categories.php:123 ++#, php-format ++msgid "Manage Categories (add new)" ++msgstr "Gérer les catégories (en ajouter une)" ++ ++#: wp-admin/categories.php:125 ++msgid "Manage Categories" ++msgstr "Gérer les catégories" ++ ++#: wp-admin/categories.php:130 ++#: wp-admin/edit-link-categories.php:66 ++msgid "Search Categories" ++msgstr "Chercher dans les catégories" ++ ++#: wp-admin/categories.php:138 ++#: wp-admin/edit-comments.php:173 ++#: wp-admin/edit-link-categories.php:92 ++#: wp-admin/edit-pages.php:121 ++#: wp-admin/edit.php:138 ++#: wp-admin/edit-post-rows.php:174 ++#: wp-admin/edit-tags.php:163 ++#: wp-admin/includes/media.php:690 ++#: wp-admin/includes/template.php:689 ++#: wp-admin/includes/template.php:778 ++#: wp-admin/link-manager.php:90 ++#: wp-admin/upload.php:149 ++#: wp-admin/users.php:301 ++msgid "Delete" ++msgstr "Supprimer " ++ ++#: wp-admin/categories.php:151 ++#: wp-admin/edit-form-comment.php:67 ++#: wp-admin/edit-link-categories.php:105 ++#: wp-admin/edit-link-form.php:77 ++#: wp-admin/edit-tags.php:176 ++#: wp-admin/link-manager.php:121 ++#: wp-admin/themes.php:100 ++#: wp-admin/user-edit.php:194 ++#: wp-admin/users.php:335 ++#: wp-content/themes/classic/comments.php:51 ++#: wp-content/themes/classic/comments-popup.php:64 ++#: wp-includes/js/tinymce/langs/wp-langs.php:299 ++msgid "Name" ++msgstr "Nom" ++ ++#: wp-admin/categories.php:152 ++#: wp-admin/edit-category-form.php:45 ++#: wp-admin/edit-link-categories.php:106 ++#: wp-admin/edit-link-form.php:93 ++#: wp-admin/includes/media.php:447 ++#: wp-admin/includes/media.php:544 ++#: wp-admin/includes/media.php:626 ++#: wp-admin/includes/media.php:1089 ++#: wp-admin/plugins.php:108 ++#: wp-admin/themes.php:101 ++#: wp-includes/script-loader.php:185 ++msgid "Description" ++msgstr "Description" ++ ++#: wp-admin/categories.php:153 ++#: wp-admin/edit.php:34 ++#: wp-admin/edit-tags.php:177 ++#: wp-admin/import/blogger.php:162 ++#: wp-admin/menu.php:40 ++#: wp-admin/users.php:338 ++msgid "Posts" ++msgstr "Articles" ++ ++#: wp-admin/categories.php:173 ++#, php-format ++msgid "Note:
    Deleting a category does not delete the posts in that category. Instead, posts that were only assigned to the deleted category are set to the category %s." ++msgstr "Note : supprimer une catégorie ne supprime pas les articles qu’elle contient. Les articles affectés uniquement à la catégorie effacée seront assignés à celle par défaut : %s." ++ ++#: wp-admin/categories.php:174 ++#, php-format ++msgid "Categories can be selectively converted to tags using the category to tag converter." ++msgstr "Les catégories peuvent être converties de maniÚre sélective en tags via le convertisseur catégories vers tags." ++ ++#: wp-admin/comment.php:21 ++#: wp-admin/edit-form-comment.php:2 ++msgid "Edit Comment" ++msgstr "Modifier le commentaire" ++ ++#: wp-admin/comment.php:30 ++#: wp-admin/comment.php:52 ++#: wp-admin/comment.php:134 ++#: wp-admin/comment.php:162 ++#: wp-admin/comment.php:187 ++msgid "Oops, no comment with this ID." ++msgstr "Oups, aucun commentaire avec cet ID." ++ ++#: wp-admin/comment.php:30 ++#: wp-admin/comment.php:52 ++#: wp-admin/comment.php:134 ++#: wp-admin/comment.php:162 ++#: wp-admin/comment.php:187 ++msgid "Go back" ++msgstr "Retour" ++ ++#: wp-admin/comment.php:33 ++#: wp-admin/comment.php:137 ++msgid "You are not allowed to edit comments on this post." ++msgstr "Vous n’avez pas l’autorisation de modifier les commentaires de cet article." ++ ++#: wp-admin/comment.php:55 ++msgid "You are not allowed to delete comments on this post." ++msgstr "Vous n’avez pas l’autorisation d’effacer les commentaires de cet article." ++ ++#: wp-admin/comment.php:55 ++#: wp-admin/comment.php:190 ++msgid "You are not allowed to edit comments on this post, so you cannot approve this comment." ++msgstr "Vous n’avez pas l’autorisation de modifier les commentaires de cet article, donc vous ne pouvez pas approuver ce commentaire." ++ ++#: wp-admin/comment.php:62 ++msgid "You are about to mark the following comment as spam:" ++msgstr "Vous allez marquer le commentaire suivant comme indésirable :" ++ ++#: wp-admin/comment.php:63 ++msgid "Spam Comment" ++msgstr "Marquer comme indésirable" ++ ++#: wp-admin/comment.php:65 ++msgid "You are about to delete the following comment:" ++msgstr "Vous allez supprimer le commentaire suivant :" ++ ++#: wp-admin/comment.php:66 ++msgid "Delete Comment" ++msgstr "Supprimer le commentaire" ++ ++#: wp-admin/comment.php:68 ++msgid "You are about to approve the following comment:" ++msgstr "Vous allez approuver le commentaire suivant :" ++ ++#: wp-admin/comment.php:69 ++msgid "Approve Comment" ++msgstr "Approuver le commentaire" ++ ++#: wp-admin/comment.php:73 ++msgid "Caution:" ++msgstr "Attention :" ++ ++#: wp-admin/comment.php:75 ++msgid "Are you sure you want to do that?" ++msgstr "Êtes-vous certain(e) de vouloir faire cela ?" ++ ++#: wp-admin/comment.php:81 ++#: wp-admin/link-manager.php:163 ++#: wp-admin/update.php:64 ++msgid "No" ++msgstr "Non" ++ ++#: wp-admin/comment.php:98 ++#: wp-admin/includes/template.php:294 ++#: wp-admin/includes/template.php:331 ++#: wp-includes/js/tinymce/langs/wp-langs.php:243 ++msgid "Author" ++msgstr "Auteur" ++ ++#: wp-admin/comment.php:103 ++#: wp-admin/edit-form-comment.php:74 ++#: wp-admin/user-edit.php:270 ++#: wp-admin/users.php:336 ++#: wp-content/themes/classic/comments-popup.php:71 ++#: wp-login.php:320 ++msgid "E-mail" ++msgstr "E-mail" ++ ++#: wp-admin/comment.php:109 ++#: wp-admin/edit-form-comment.php:81 ++#: wp-admin/includes/media.php:1179 ++#: wp-admin/includes/template.php:938 ++#: wp-admin/link-manager.php:122 ++#: wp-includes/script-loader.php:184 ++msgid "URL" ++msgstr "URL" ++ ++#: wp-admin/comment.php:114 ++#: wp-admin/edit-comments.php:190 ++#: wp-admin/edit-form-comment.php:88 ++#: wp-admin/edit-pages.php:191 ++#: wp-admin/edit.php:217 ++#: wp-admin/upload.php:227 ++#: wp-content/themes/classic/comments.php:18 ++#: wp-content/themes/classic/comments-popup.php:45 ++msgid "Comment" ++msgstr "Commentaire" ++ ++#: wp-admin/comment.php:165 ++msgid "You are not allowed to edit comments on this post, so you cannot disapprove this comment." ++msgstr "Vous n’êtes pas autorisé à modifier les commentaires de cet article, donc vous ne pouvez pas désapprouver ce commentaire." ++ ++#: wp-admin/comment.php:223 ++msgid "Unknown action." ++msgstr "Action inconnue." ++ ++#: wp-admin/custom-header.php:11 ++msgid "Custom Image Header" ++msgstr "Image d’en-tête personnalisée" ++ ++#: wp-admin/custom-header.php:128 ++msgid "Show Text" ++msgstr "Afficher le texte" ++ ++#: wp-admin/custom-header.php:139 ++#: wp-admin/custom-header.php:169 ++msgid "Hide Text" ++msgstr "Cacher le texte" ++ ++#: wp-admin/custom-header.php:155 ++msgid "Header updated." ++msgstr "En-tête mis à jour." ++ ++#: wp-admin/custom-header.php:160 ++msgid "Your Header Image" ++msgstr "Votre image d’en-tête" ++ ++#: wp-admin/custom-header.php:161 ++msgid "This is your header image. You can change the text color or upload and crop a new image." ++msgstr "Voici votre image d’en-tête. Vous pouvez modifier la couleur du texte, ou mettre en ligne une nouvelle image puis la recadrer." ++ ++#: wp-admin/custom-header.php:170 ++msgid "Select a Text Color" ++msgstr "Sélectionnez une couleur de texte" ++ ++#: wp-admin/custom-header.php:170 ++msgid "Use Original Color" ++msgstr "Utiliser la couleur originale" ++ ++#: wp-admin/custom-header.php:172 ++#: wp-admin/edit-link-form.php:4 ++#: wp-admin/import/blogger.php:616 ++#: wp-admin/media.php:78 ++#: wp-admin/options-discussion.php:119 ++#: wp-admin/options-general.php:113 ++#: wp-admin/options-misc.php:94 ++#: wp-admin/options-permalink.php:181 ++#: wp-admin/options.php:88 ++#: wp-admin/options-privacy.php:27 ++#: wp-admin/options-reading.php:70 ++#: wp-admin/options-writing.php:114 ++#: wp-admin/widgets.php:307 ++msgid "Save Changes" ++msgstr "Enregistrer les modifications" ++ ++#: wp-admin/custom-header.php:178 ++msgid "Upload New Header Image" ++msgstr "Mettre en ligne une nouvelle image d’en-tête" ++ ++#: wp-admin/custom-header.php:178 ++msgid "Here you can upload a custom header image to be shown at the top of your blog instead of the default one. On the next screen you will be able to crop the image." ++msgstr "Vous pouvez ici mettre en ligne une image d’en-tête personnalisée, qui sera affichée en haut de votre blog en lieu et place de celle par défaut. L’écran suivant vous permettra de recadrer l’image." ++ ++#: wp-admin/custom-header.php:179 ++#, php-format ++msgid "Images of exactly %1$d x %2$d pixels will be used as-is." ++msgstr "Les images ayant pour taille exacte %1$d pixels par %2$d seront utilisées telles quelles." ++ ++#: wp-admin/custom-header.php:182 ++msgid "Choose an image from your computer:" ++msgstr "Choisissez une image sur votre ordinateur :" ++ ++#: wp-admin/custom-header.php:186 ++#: wp-admin/includes/media.php:834 ++msgid "Upload" ++msgstr "Envoyer" ++ ++#: wp-admin/custom-header.php:194 ++msgid "Reset Header Image and Color" ++msgstr "Revenir à l’image d’en-tête et à la couleur initiales" ++ ++#: wp-admin/custom-header.php:195 ++msgid "This will restore the original header image and color. You will not be able to retrieve any customizations." ++msgstr "Ceci remettra l’image d’en-tête et les couleurs initiales. Il ne vous sera pas possible de récuperer vos personnalisations." ++ ++#: wp-admin/custom-header.php:198 ++msgid "Restore Original Header" ++msgstr "Remettre l’en-tête initial" ++ ++#: wp-admin/custom-header.php:254 ++msgid "Choose the part of the image you want to use as your header." ++msgstr "Choisissez la partie de l’image que vous voulez utiliser comme en-tête." ++ ++#: wp-admin/custom-header.php:269 ++msgid "Crop Header" ++msgstr "Recadrer l’en-tête" ++ ++#: wp-admin/custom-header.php:321 ++msgid "Header complete!" ++msgstr "En-tête terminé !" ++ ++#: wp-admin/custom-header.php:323 ++msgid "Visit your site and you should see the new header now." ++msgstr "Allez sur votre site et vous devriez y voir votre nouvel en-tête maintenant." ++ ++#: wp-admin/edit-attachment-rows.php:53 ++#: wp-admin/edit-post-rows.php:75 ++#: wp-admin/includes/template.php:46 ++#: wp-admin/includes/template.php:79 ++#: wp-admin/includes/template.php:245 ++#: wp-admin/includes/template.php:403 ++#: wp-admin/link-manager.php:172 ++#, php-format ++msgid "Edit \"%s\"" ++msgstr "Modifier \"%s\"" ++ ++#: wp-admin/edit-attachment-rows.php:68 ++#: wp-admin/edit-form-advanced.php:96 ++#: wp-admin/edit-page-form.php:84 ++#: wp-admin/edit-post-rows.php:49 ++#: wp-admin/edit-post-rows.php:151 ++#: wp-admin/includes/template.php:377 ++#: wp-admin/includes/template.php:447 ++msgid "Unpublished" ++msgstr "Non publié" ++ ++#: wp-admin/edit-attachment-rows.php:70 ++#: wp-admin/edit-post-rows.php:52 ++#: wp-admin/edit-post-rows.php:56 ++#: wp-admin/includes/template.php:380 ++#: wp-admin/includes/template.php:384 ++msgid "Y/m/d g:i:s A" ++msgstr "Y/m/d G:i:s" ++ ++#: wp-admin/edit-attachment-rows.php:75 ++#: wp-admin/edit-post-rows.php:62 ++#: wp-admin/includes/template.php:390 ++#, php-format ++msgid "%s from now" ++msgstr "%s à partir de maintenant" ++ ++#: wp-admin/edit-attachment-rows.php:77 ++#: wp-admin/edit-post-rows.php:64 ++#: wp-admin/includes/template.php:392 ++#: wp-admin/includes/template.php:640 ++#, php-format ++msgid "%s ago" ++msgstr "il y a %s" ++ ++#: wp-admin/edit-attachment-rows.php:79 ++#: wp-admin/edit-post-rows.php:66 ++#: wp-admin/includes/template.php:394 ++#: wp-admin/includes/template.php:669 ++msgid "Y/m/d" ++msgstr "Y/m/d" ++ ++#: wp-admin/edit-attachment-rows.php:88 ++#: wp-admin/edit-post-rows.php:31 ++#: wp-admin/includes/template.php:358 ++msgid "(no title)" ++msgstr "(pas de titre)" ++ ++#: wp-admin/edit-attachment-rows.php:111 ++#: wp-admin/edit-post-rows.php:117 ++#: wp-admin/includes/template.php:413 ++#, php-format ++msgid "%s pending" ++msgstr "%s en attente" ++ ++#: wp-admin/edit-attachment-rows.php:114 ++#: wp-admin/edit-post-rows.php:120 ++#: wp-admin/includes/template.php:416 ++msgid "0" ++msgstr "0" ++ ++#: wp-admin/edit-attachment-rows.php:114 ++#: wp-admin/edit-post-rows.php:120 ++#: wp-admin/includes/template.php:416 ++msgid "1" ++msgstr "1" ++ ++#: wp-admin/edit-attachment-rows.php:114 ++#: wp-admin/edit-post-rows.php:120 ++#: wp-admin/includes/template.php:416 ++msgid "%" ++msgstr "%" ++ ++#: wp-admin/edit-attachment-rows.php:124 ++msgid "Permalink" ++msgstr "Permalien" ++ ++#: wp-admin/edit-attachment-rows.php:142 ++#: wp-admin/edit-post-rows.php:192 ++msgid "No posts found." ++msgstr "Aucun article trouvé." ++ ++#: wp-admin/edit-category-form.php:3 ++#: wp-admin/edit-category-form.php:4 ++#: wp-admin/edit-link-category-form.php:3 ++#: wp-admin/edit-link-category-form.php:4 ++msgid "Edit Category" ++msgstr "Modifier la catégorie" ++ ++#: wp-admin/edit-category-form.php:10 ++#: wp-admin/edit-category-form.php:11 ++#: wp-admin/edit-link-category-form.php:10 ++#: wp-admin/edit-link-category-form.php:11 ++msgid "Add Category" ++msgstr "Ajouter une catégorie" ++ ++#: wp-admin/edit-category-form.php:28 ++msgid "Category Name" ++msgstr "Nom de la catégorie" ++ ++#: wp-admin/edit-category-form.php:30 ++msgid "The name is used to identify the category almost everywhere, for example under the post or in the category widget." ++msgstr "Ce nom est utilisé pour identifier la catégorie un peu partout, par exemple lors de l’affichage d’un article, ainsi que dans le widget de catégorie." ++ ++#: wp-admin/edit-category-form.php:33 ++msgid "Category Slug" ++msgstr "Identifiant de la catégorie" ++ ++#: wp-admin/edit-category-form.php:35 ++#: wp-admin/edit-link-category-form.php:34 ++#: wp-admin/edit-tag-form.php:35 ++msgid "The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens." ++msgstr "Le “slug” ou “identifiant” est la version normalisée du nom. Il ne contient généralement que des lettres minuscules non accentuées, des chiffres et des traits d’unions. Il est utilisé pour la constitution des URL et contribue au référencement de votre blog." ++ ++#: wp-admin/edit-category-form.php:38 ++msgid "Category Parent" ++msgstr "Catégorie mÚre" ++ ++#: wp-admin/edit-category-form.php:40 ++#: wp-admin/includes/media.php:456 ++#: wp-admin/includes/media.php:553 ++#: wp-admin/includes/media.php:1099 ++#: wp-includes/deprecated.php:741 ++#: wp-includes/script-loader.php:181 ++msgid "None" ++msgstr "Aucun(e)" ++ ++#: wp-admin/edit-category-form.php:41 ++msgid "Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional." ++msgstr "Les catégories, contrairement aux tags, peuvent avoir une hiérarchie. Vous pouvez avoir une catégorie nommée Jazz, et à l’intérieur, plusieurs catégories comme Bebop et Big Band. Ceci est totalement optionnel." ++ ++#: wp-admin/edit-category-form.php:47 ++msgid "The description is not prominent by default, however some themes may show it." ++msgstr "La description n’est pas trÚs utile par défaut, cependant de plus en plus de thÚmes l’affichent." ++ ++#: wp-admin/edit-comments.php:4 ++msgid "Edit Comments" ++msgstr "Modifier les commentaires" ++ ++#: wp-admin/edit-comments.php:74 ++#, php-format ++msgid "%s comment approved" ++msgid_plural "%s comments approved" ++msgstr[0] "%s commentaire approuvé" ++msgstr[1] "%s commentaires approuvés" ++ ++#: wp-admin/edit-comments.php:79 ++#, php-format ++msgid "%s comment deleted" ++msgid_plural "%s comments deleted" ++msgstr[0] "%s commentaire supprimé" ++msgstr[1] "%s commentaires supprimés" ++ ++#: wp-admin/edit-comments.php:84 ++#, php-format ++msgid "%s comment marked as spam" ++msgid_plural "%s comments marked as spam" ++msgstr[0] "%s commentaire marqué comme indésirable" ++msgstr[1] "%s commentaires marqués comme indésirables" ++ ++#: wp-admin/edit-comments.php:94 ++msgid "Manage Comments" ++msgstr "Gérer les commentaires" ++ ++#: wp-admin/edit-comments.php:100 ++#, php-format ++msgid "Awaiting Moderation (%s)" ++msgid_plural "Awaiting Moderation (%s)" ++msgstr[0] "En attente de modération (%s)" ++msgstr[1] "En attente de modération (%s)" ++ ++#: wp-admin/edit-comments.php:100 ++msgid "Approved|plural" ++msgstr "Approuvés" ++ ++#: wp-admin/edit-comments.php:102 ++msgid "Show All Comments" ++msgstr "Afficher tous les commentaires" ++ ++#: wp-admin/edit-comments.php:121 ++msgid "Search Comments" ++msgstr "Chercher dans les commentaires" ++ ++#: wp-admin/edit-comments.php:129 ++msgid "Detail View" ++msgstr "Vue détaillée" ++ ++#: wp-admin/edit-comments.php:130 ++msgid "List View" ++msgstr "Vue liste" ++ ++#: wp-admin/edit-comments.php:167 ++#: wp-admin/includes/template.php:675 ++#: wp-admin/includes/template.php:680 ++msgid "Approve" ++msgstr "Approuver" ++ ++#: wp-admin/edit-comments.php:169 ++msgid "Mark as Spam" ++msgstr "Marquer comme indésirable" ++ ++#: wp-admin/edit-comments.php:171 ++#: wp-admin/includes/template.php:676 ++#: wp-admin/includes/template.php:683 ++msgid "Unapprove" ++msgstr "Désapprouver" ++ ++#: wp-admin/edit-comments.php:191 ++#: wp-admin/edit-pages.php:192 ++#: wp-admin/edit.php:218 ++#: wp-admin/includes/template.php:292 ++#: wp-admin/includes/template.php:329 ++#: wp-admin/upload.php:228 ++msgid "Date" ++msgstr "Date" ++ ++#: wp-admin/edit-comments.php:192 ++#: wp-admin/edit-pages.php:193 ++#: wp-admin/edit.php:219 ++#: wp-admin/upload.php:229 ++msgid "Actions" ++msgstr "Actions" ++ ++#: wp-admin/edit-comments.php:224 ++msgid "No comments awaiting moderation… yet." ++msgstr "Aucun commentaire en attente de modération." ++ ++#: wp-admin/edit-comments.php:230 ++#: wp-content/plugins/akismet/akismet.php:614 ++msgid "No results found." ++msgstr "Aucun résultat." ++ ++#: wp-admin/edit-form-advanced.php:5 ++#, php-format ++msgid "Post updated. Continue editing below or go back." ++msgstr "Article mis à jour. Continuez à le modifier ci-dessous, ou revenez en arriÚre." ++ ++#: wp-admin/edit-form-advanced.php:6 ++#: wp-admin/edit-page-form.php:5 ++msgid "Custom field updated." ++msgstr "Champ personnalisé mis à jour." ++ ++#: wp-admin/edit-form-advanced.php:7 ++#: wp-admin/edit-page-form.php:6 ++msgid "Custom field deleted." ++msgstr "Champ personnalisé supprimé." ++ ++#: wp-admin/edit-form-advanced.php:8 ++msgid "Post updated." ++msgstr "Article mis à jour." ++ ++#: wp-admin/edit-form-advanced.php:20 ++#: wp-admin/edit-form.php:3 ++msgid "Write Post" ++msgstr "Écrire un article" ++ ++#: wp-admin/edit-form-advanced.php:42 ++msgid "Already pinged:" ++msgstr "Déjà notifié(s) par ping :" ++ ++#: wp-admin/edit-form-advanced.php:50 ++msgid "Save and Continue Editing" ++msgstr "Enregistrement continu" ++ ++#: wp-admin/edit-form-advanced.php:78 ++msgid "View this Post" ++msgstr "Voir cet article" ++ ++#: wp-admin/edit-form-advanced.php:80 ++#: wp-includes/script-loader.php:499 ++msgid "Preview this Post" ++msgstr "Prévisualiser cet article" ++ ++#: wp-admin/edit-form-advanced.php:86 ++#: wp-admin/edit-page-form.php:72 ++msgid "Publish Status" ++msgstr "État de publication" ++ ++#: wp-admin/edit-form-advanced.php:90 ++#: wp-admin/edit-page-form.php:76 ++#: wp-admin/edit-page-form.php:78 ++#: wp-admin/edit-pages.php:39 ++#: wp-admin/edit-post-rows.php:142 ++#: wp-admin/includes/post.php:522 ++#: wp-admin/includes/template.php:438 ++#: wp-includes/post.php:306 ++#: wp-includes/post.php:328 ++msgid "Published" ++msgstr "Publié" ++ ++#: wp-admin/edit-form-advanced.php:92 ++#: wp-admin/edit-pages.php:40 ++#: wp-admin/edit-post-rows.php:145 ++#: wp-admin/includes/post.php:523 ++#: wp-admin/includes/template.php:441 ++msgid "Scheduled" ++msgstr "Programmé" ++ ++#: wp-admin/edit-form-advanced.php:95 ++#: wp-admin/edit-page-form.php:83 ++#: wp-admin/edit-pages.php:41 ++#: wp-admin/edit-post-rows.php:148 ++#: wp-admin/includes/post.php:524 ++#: wp-admin/includes/template.php:444 ++#: wp-includes/post.php:304 ++msgid "Pending Review" ++msgstr "En attente de relecture" ++ ++#: wp-admin/edit-form-advanced.php:101 ++msgid "Keep this post private" ++msgstr "Cet article est privé" ++ ++#: wp-admin/edit-form-advanced.php:106 ++#: wp-admin/edit-page-form.php:92 ++#, php-format ++msgid "Scheduled for:
    %1$s at %2$s" ++msgstr "Prévu pour le
    %1$s à %2$s" ++ ++#: wp-admin/edit-form-advanced.php:108 ++#: wp-admin/edit-page-form.php:94 ++#, php-format ++msgid "Published on:
    %1$s at %2$s" ++msgstr "Publié le :
    %1$s à %2$s" ++ ++#: wp-admin/edit-form-advanced.php:110 ++#: wp-admin/edit-form-advanced.php:117 ++#: wp-admin/edit-page-form.php:96 ++#: wp-admin/edit-page-form.php:103 ++msgid "Publish immediately" ++msgstr "Publier tout de suite" ++ ++#: wp-admin/edit-form-advanced.php:112 ++#: wp-admin/edit-page-form.php:98 ++#, php-format ++msgid "Publish on:
    %1$s at %2$s" ++msgstr "Publier le :
    %1$s à %2$s" ++ ++#: wp-admin/edit-form-advanced.php:124 ++#: wp-admin/edit-form-comment.php:40 ++#: wp-admin/edit-page-form.php:109 ++#: wp-admin/edit-post-rows.php:168 ++#: wp-admin/includes/dashboard.php:220 ++#: wp-admin/includes/post.php:658 ++#: wp-admin/includes/widgets.php:110 ++#: wp-admin/includes/widgets.php:231 ++#: wp-admin/page.php:66 ++#: wp-admin/plugins.php:127 ++#: wp-admin/post.php:68 ++#: wp-includes/script-loader.php:154 ++#: wp-includes/script-loader.php:159 ++#: wp-includes/script-loader.php:165 ++#: wp-includes/script-loader.php:172 ++#: wp-includes/script-loader.php:193 ++msgid "Edit" ++msgstr "Modifier" ++ ++#: wp-admin/edit-form-advanced.php:132 ++#: wp-admin/edit-form-comment.php:47 ++#: wp-admin/edit-link-form.php:55 ++#: wp-admin/edit-page-form.php:116 ++#: wp-admin/includes/dashboard.php:217 ++#: wp-content/themes/default/functions.php:374 ++#: wp-content/themes/default/functions.php:381 ++#: wp-includes/js/tinymce/langs/wp-langs.php:63 ++#: wp-includes/script-loader.php:144 ++msgid "Save" ++msgstr "Enregistrer" ++ ++#: wp-admin/edit-form-advanced.php:137 ++#: wp-admin/edit-form.php:52 ++#: wp-admin/edit-page-form.php:121 ++#: wp-admin/sidebar.php:78 ++msgid "Publish" ++msgstr "Publier" ++ ++#: wp-admin/edit-form-advanced.php:139 ++#: wp-admin/edit-page-form.php:123 ++msgid "Submit for Review" ++msgstr "Soumettre à relecture" ++ ++#: wp-admin/edit-form-advanced.php:145 ++#: wp-admin/edit-page-form.php:129 ++#, php-format ++msgid "" ++"You are about to delete this draft '%s'\n" ++" 'Cancel' to stop, 'OK' to delete." ++msgstr "" ++"Vous êtes sur le point de supprimer le brouillon “ %s “.\n" ++" “ Annuler “ pour abandonner, “ OK “ pour le supprimer." ++ ++#: wp-admin/edit-form-advanced.php:145 ++#, php-format ++msgid "" ++"You are about to delete this post '%s'\n" ++" 'Cancel' to stop, 'OK' to delete." ++msgstr "" ++"Vous êtes sur le point de supprimer l’article “ %s “.\n" ++" “ Annuler “ pour abandonner, “ OK “ pour le supprimer." ++ ++#: wp-admin/edit-form-advanced.php:145 ++msgid "Delete post" ++msgstr "Supprimer l’article" ++ ++#: wp-admin/edit-form-advanced.php:151 ++#: wp-admin/edit-page-form.php:135 ++#, php-format ++msgid "Last edited by %1$s on %2$s at %3$s" ++msgstr "DerniÚre modification par %1$s, le %2$s à %3$s" ++ ++#: wp-admin/edit-form-advanced.php:153 ++#: wp-admin/edit-page-form.php:137 ++#, php-format ++msgid "Last edited on %1$s at %2$s" ++msgstr "DerniÚre modification le %1$s à %2$s" ++ ++#: wp-admin/edit-form-advanced.php:162 ++#: wp-admin/edit-form-comment.php:54 ++#: wp-admin/edit-link-form.php:63 ++#: wp-admin/edit-page-form.php:146 ++msgid "Related" ++msgstr "Pages connexes" ++ ++#: wp-admin/edit-form-advanced.php:166 ++msgid "See Comments on this Post" ++msgstr "Voir les commentaires de cet article" ++ ++#: wp-admin/edit-form-advanced.php:168 ++#: wp-admin/edit-form-comment.php:57 ++#: wp-admin/edit-page-form.php:152 ++msgid "Manage All Comments" ++msgstr "Gérer les commentaires" ++ ++#: wp-admin/edit-form-advanced.php:169 ++msgid "Manage All Posts" ++msgstr "Gérer les articles" ++ ++#: wp-admin/edit-form-advanced.php:170 ++msgid "Manage All Categories" ++msgstr "Gérer toutes les catégories" ++ ++#: wp-admin/edit-form-advanced.php:171 ++msgid "Manage All Tags" ++msgstr "Gérer les tags" ++ ++#: wp-admin/edit-form-advanced.php:172 ++msgid "View Drafts" ++msgstr "Afficher les brouillons" ++ ++#: wp-admin/edit-form-advanced.php:182 ++#: wp-admin/edit-form.php:14 ++#: wp-admin/edit-page-form.php:162 ++#: wp-admin/includes/media.php:536 ++#: wp-admin/includes/media.php:625 ++#: wp-admin/includes/media.php:1130 ++#: wp-admin/includes/media.php:1158 ++#: wp-admin/includes/media.php:1186 ++#: wp-admin/includes/template.php:293 ++#: wp-admin/includes/template.php:330 ++#: wp-includes/js/tinymce/langs/wp-langs.php:282 ++#: wp-includes/script-loader.php:176 ++msgid "Title" ++msgstr "Titre" ++ ++#: wp-admin/edit-form-advanced.php:197 ++#: wp-admin/edit-form.php:25 ++#: wp-admin/menu.php:34 ++msgid "Post" ++msgstr "Article" ++ ++#: wp-admin/edit-form-advanced.php:209 ++#: wp-admin/edit-tags.php:4 ++#: wp-admin/includes/media.php:627 ++#: wp-admin/includes/template.php:296 ++#: wp-admin/menu.php:44 ++#: wp-includes/widgets.php:1326 ++msgid "Tags" ++msgstr "Tags" ++ ++#: wp-admin/edit-form-advanced.php:221 ++#: wp-admin/edit-link-form.php:105 ++msgid "+ Add New Category" ++msgstr "+ Ajouter une nouvelle catégorie" ++ ++#: wp-admin/edit-form-advanced.php:223 ++#: wp-admin/edit-link-form.php:107 ++msgid "New category name" ++msgstr "Nom de la nouvelle catégorie" ++ ++#: wp-admin/edit-form-advanced.php:224 ++msgid "Parent category" ++msgstr "Catégorie parente" ++ ++#: wp-admin/edit-form-advanced.php:225 ++#: wp-admin/edit-link-form.php:108 ++#: wp-admin/includes/widgets.php:104 ++#: wp-includes/script-loader.php:116 ++#: wp-includes/script-loader.php:150 ++#: wp-includes/script-loader.php:192 ++msgid "Add" ++msgstr "Ajouter" ++ ++#: wp-admin/edit-form-advanced.php:232 ++#: wp-admin/edit-link-form.php:115 ++msgid "All Categories" ++msgstr "Toutes les catégories" ++ ++#: wp-admin/edit-form-advanced.php:233 ++#: wp-admin/edit-link-form.php:116 ++msgid "Most Used" ++msgstr "Plus utilisées" ++ ++#: wp-admin/edit-form-advanced.php:255 ++#: wp-admin/edit-link-form.php:136 ++#: wp-admin/edit-page-form.php:189 ++msgid "Advanced Options" ++msgstr "Options avancées" ++ ++#: wp-admin/edit-form-advanced.php:258 ++msgid "Excerpt" ++msgstr "Extrait" ++ ++#: wp-admin/edit-form-advanced.php:260 ++msgid "Excerpts are optional hand-crafted summaries of your content. You can use them in your template" ++msgstr "Les extraits sont des résumés de vos articles, écrits à la main. Vous pouvez les utiliser dans votre thÚme" ++ ++#: wp-admin/edit-form-advanced.php:265 ++msgid "Trackbacks" ++msgstr "Rétroliens" ++ ++#: wp-admin/edit-form-advanced.php:267 ++msgid "Send trackbacks to:" ++msgstr "Envoyer un rétrolien vers :" ++ ++#: wp-admin/edit-form-advanced.php:267 ++msgid "Separate multiple URLs with spaces" ++msgstr "Séparez les URLs par des espaces" ++ ++#: wp-admin/edit-form-advanced.php:268 ++msgid "Trackbacks are a way to notify legacy blog systems that you’ve linked to them. If you link other WordPress blogs they’ll be notified automatically using pingbacks, no other action necessary." ++msgstr "Les rétroliens sont une maniÚre de notifier les anciens systÚmes de blog que vous avez fait un lien vers eux. Si vous faites un lien vers des blogs WordPress, ils seront notifiés automatiquement à l’aide des pings, sans que vous n’ayez rien à faire." ++ ++#: wp-admin/edit-form-advanced.php:277 ++#: wp-admin/edit-page-form.php:192 ++msgid "Custom Fields" ++msgstr "Champs personnalisés" ++ ++#: wp-admin/edit-form-advanced.php:292 ++#: wp-admin/edit-page-form.php:207 ++msgid "Custom fields can be used to add extra metadata to a post that you can use in your theme." ++msgstr "Les champs personnalisés peuvent être utilisés afin d’ajouter des données supplémentaires à vos articles. Vous pouvez les utiliser dans votre thÚme." ++ ++# Contexte? ++#: wp-admin/edit-form-advanced.php:299 ++#: wp-admin/edit-page-form.php:212 ++msgid "Comments & Pings" ++msgstr "Commentaires & Pings" ++ ++#: wp-admin/edit-form-advanced.php:304 ++#: wp-admin/edit-page-form.php:217 ++msgid "Allow Comments" ++msgstr "Autoriser les commentaires" ++ ++#: wp-admin/edit-form-advanced.php:305 ++#: wp-admin/edit-page-form.php:218 ++msgid "Allow Pings" ++msgstr "Autoriser les notifications par ping" ++ ++#: wp-admin/edit-form-advanced.php:306 ++msgid "These settings apply to this post only. “Pings” are trackbacks and pingbacks." ++msgstr "Ces réglages seront appliqués uniquement à cet article. Les “pings” sont des rétroliens ou des pings." ++ ++#: wp-admin/edit-form-advanced.php:311 ++msgid "Password Protect This Post" ++msgstr "Mot de passe protégeant cet article" ++ ++#: wp-admin/edit-form-advanced.php:314 ++msgid "Setting a password will require people who visit your blog to enter the above password to view this post and its comments." ++msgstr "Fixer un mot de passe obligera les visiteurs qui fréquentent votre blog à entrer un mot de passe pour lire l’article et les commentaires associés." ++ ++#: wp-admin/edit-form-advanced.php:319 ++msgid "Post Slug" ++msgstr "Identifiant de l’article" ++ ++#: wp-admin/edit-form-advanced.php:332 ++msgid "Post Author" ++msgstr "Auteur de l’article" ++ ++#: wp-admin/edit-form-comment.php:3 ++#, php-format ++msgid "Editing Comment # %s" ++msgstr "Modifier le commentaire n°%s" ++ ++#: wp-admin/edit-form-comment.php:20 ++msgid "View this Comment" ++msgstr "Voir ce commentaire" ++ ++#: wp-admin/edit-form-comment.php:25 ++msgid "Approval Status" ++msgstr "État d’approbation" ++ ++#: wp-admin/edit-form-comment.php:28 ++msgid "Approved" ++msgstr "Approuvé" ++ ++#: wp-admin/edit-form-comment.php:29 ++msgid "Moderated" ++msgstr "Modéré" ++ ++#: wp-admin/edit-form-comment.php:30 ++#: wp-admin/includes/template.php:688 ++#: wp-content/plugins/akismet/akismet.php:639 ++msgid "Spam" ++msgstr "Indésirable" ++ ++#: wp-admin/edit-form-comment.php:35 ++#, php-format ++msgid "%1$s at %2$s" ++msgstr "%1$s à %2$s" ++ ++#: wp-admin/edit-form-comment.php:49 ++msgid "" ++"You are about to delete this comment. \n" ++" 'Cancel' to stop, 'OK' to delete." ++msgstr "" ++"Vous êtes sur le point de supprimer ce commentaire.\n" ++" “ Annuler “ pour abandonner, “ OK “ pour supprimer." ++ ++#: wp-admin/edit-form-comment.php:49 ++msgid "Delete comment" ++msgstr "Supprimer le commentaire" ++ ++#: wp-admin/edit-form-comment.php:58 ++msgid "Moderate Comments" ++msgstr "Modérer les commentaires" ++ ++#: wp-admin/edit-form.php:14 ++msgid "Help on titles" ++msgstr "Aide sur les titres" ++ ++#: wp-admin/edit-form.php:19 ++msgid "Help on categories" ++msgstr "Aide sur les catégories" ++ ++#: wp-admin/edit-form.php:25 ++msgid "Help with post field" ++msgstr "Aide sur le champ principal" ++ ++#: wp-admin/edit-form.php:45 ++#, php-format ++msgid "TrackBack a URL: (Separate multiple URLs with spaces.)" ++msgstr "Envoyer un rétrolien vers l’URL : (URLs séparées par des espaces.)
    " ++ ++#: wp-admin/edit-form.php:48 ++#: wp-admin/sidebar.php:76 ++msgid "Save as Draft" ++msgstr "Enregistrer comme brouillon" ++ ++#: wp-admin/edit-form.php:49 ++msgid "Save as Private" ++msgstr "Enregistrer comme article privé" ++ ++#: wp-admin/edit-form.php:56 ++msgid "Advanced Editing" ++msgstr "Édition visuelle avancée" ++ ++#: wp-admin/edit-link-categories.php:35 ++#: wp-admin/menu.php:45 ++msgid "Link Categories" ++msgstr "Catégories des liens" ++ ++#: wp-admin/edit-link-categories.php:48 ++msgid "Categories deleted." ++msgstr "Catégories supprimées." ++ ++#: wp-admin/edit-link-categories.php:59 ++#, php-format ++msgid "Manage Link Categories (add new)" ++msgstr "Gérer les catégories des liens (en ajouter une)" ++ ++#: wp-admin/edit-link-categories.php:61 ++msgid "Manage Link Categories" ++msgstr "Gérer les catégories des liens" ++ ++#: wp-admin/edit-link-categories.php:107 ++#: wp-admin/menu.php:42 ++#: wp-includes/widgets.php:1372 ++msgid "Links" ++msgstr "Liens" ++ ++#: wp-admin/edit-link-categories.php:148 ++#, php-format ++msgid "Note:
    Deleting a category does not delete the links in that category. Instead, links that were only assigned to the deleted category are set to the category %s." ++msgstr "Note : supprimer une catégorie ne supprime pas les liens qu’elle contient. Au lieu de cela, les liens affectés uniquement à la catégorie effacée seront assignés à celle par défaut: %s." ++ ++#: wp-admin/edit-link-category-form.php:28 ++msgid "Category name" ++msgstr "Nom de la catégorie" ++ ++#: wp-admin/edit-link-category-form.php:32 ++msgid "Category slug" ++msgstr "Identifiant de catégorie" ++ ++#: wp-admin/edit-link-category-form.php:37 ++msgid "Description (optional)" ++msgstr "Description (optionelle)" ++ ++#: wp-admin/edit-link-form.php:3 ++#: wp-admin/link.php:92 ++msgid "Edit Link" ++msgstr "Modifier le lien" ++ ++#: wp-admin/edit-link-form.php:8 ++#: wp-admin/edit-link-form.php:9 ++#: wp-admin/link-add.php:4 ++msgid "Add Link" ++msgstr "Ajouter un lien" ++ ++#: wp-admin/edit-link-form.php:46 ++msgid "Visit Link" ++msgstr "Visiter le lien" ++ ++#: wp-admin/edit-link-form.php:51 ++msgid "Keep this link private" ++msgstr "Ce lien est privé" ++ ++#: wp-admin/edit-link-form.php:58 ++#, php-format ++msgid "" ++"You are about to delete this link '%s'\n" ++"'Cancel' to stop, 'OK' to delete." ++msgstr "" ++"Vous êtes sur le point de supprimer le lien “ %s “.\n" ++" “ Annuler “ pour abandonner, “ OK “ pour le supprimer." ++ ++#: wp-admin/edit-link-form.php:58 ++msgid "Delete link" ++msgstr "Supprimer le lien" ++ ++#: wp-admin/edit-link-form.php:66 ++msgid "Manage All Links" ++msgstr "Gérer les liens" ++ ++#: wp-admin/edit-link-form.php:67 ++msgid "Manage All Link Categories" ++msgstr "Gérer les catégories de liens" ++ ++#: wp-admin/edit-link-form.php:68 ++#: wp-admin/import/dotclear.php:587 ++#: wp-admin/import/textpattern.php:523 ++msgid "Import Links" ++msgstr "Importer des liens" ++ ++#: wp-admin/edit-link-form.php:80 ++msgid "Example: Nifty blogging software" ++msgstr "Exemple : Logiciel de blog rapide, puissant et efficace" ++ ++#: wp-admin/edit-link-form.php:85 ++msgid "Web Address" ++msgstr "Adresse internet" ++ ++#: wp-admin/edit-link-form.php:88 ++msgid "Example: http://wordpress.org/ — don’t forget the http://" ++msgstr "Exemple : http://www.wordpress-fr.net/ — Et n’oubliez pas http://" ++ ++#: wp-admin/edit-link-form.php:96 ++msgid "This will be shown when someone hovers over the link in the blogroll, or optionally below the link." ++msgstr "Cette description sera affichée lors du survol du lien dans la blogoliste, elle pourra également apparaître sous le lien si votre thÚme le prévoit." ++ ++#: wp-admin/edit-link-form.php:139 ++#: wp-includes/js/tinymce/langs/wp-langs.php:279 ++#: wp-includes/js/tinymce/langs/wp-langs.php:328 ++msgid "Target" ++msgstr "Cible" ++ ++#: wp-admin/edit-link-form.php:149 ++#: wp-admin/edit-link-form.php:183 ++#: wp-admin/edit-link-form.php:216 ++#: wp-admin/edit-link-form.php:239 ++msgid "none" ++msgstr "aucune" ++ ++#: wp-admin/edit-link-form.php:150 ++msgid "Choose the frame your link targets. Essentially this means if you choose _blank your link will open in a new window." ++msgstr "Choisissez la cible de vos liens. Cette fonction est essentiellement utilisée pour ouvrir un lien dans une nouvelle fenêtre via la paramÚtre _blank" ++ ++#: wp-admin/edit-link-form.php:155 ++msgid "Link Relationship (XFN)" ++msgstr "Relation avec le propriétaire du site lié (XFN)" ++ ++#: wp-admin/edit-link-form.php:159 ++msgid "rel:" ++msgstr "rel :" ++ ++#: wp-admin/edit-link-form.php:166 ++msgid "identity" ++msgstr "identité" ++ ++#: wp-admin/edit-link-form.php:170 ++msgid "another web address of mine" ++msgstr "Une autre de mes adresses Web" ++ ++#: wp-admin/edit-link-form.php:174 ++msgid "friendship" ++msgstr "amitié" ++ ++#: wp-admin/edit-link-form.php:177 ++msgid "contact" ++msgstr "contact" ++ ++#: wp-admin/edit-link-form.php:179 ++msgid "acquaintance" ++msgstr "connaissance" ++ ++#: wp-admin/edit-link-form.php:181 ++msgid "friend" ++msgstr "ami(e)" ++ ++#: wp-admin/edit-link-form.php:187 ++msgid "physical" ++msgstr "physique" ++ ++#: wp-admin/edit-link-form.php:191 ++msgid "met" ++msgstr "rencontré(e)" ++ ++#: wp-admin/edit-link-form.php:195 ++msgid "professional" ++msgstr "professionnel" ++ ++#: wp-admin/edit-link-form.php:199 ++msgid "co-worker" ++msgstr "collÚgue de travail" ++ ++#: wp-admin/edit-link-form.php:202 ++msgid "colleague" ++msgstr "confrÚre" ++ ++#: wp-admin/edit-link-form.php:206 ++msgid "geographical" ++msgstr "géographique" ++ ++#: wp-admin/edit-link-form.php:210 ++msgid "co-resident" ++msgstr "colocataire" ++ ++#: wp-admin/edit-link-form.php:213 ++msgid "neighbor" ++msgstr "voisin" ++ ++#: wp-admin/edit-link-form.php:220 ++msgid "family" ++msgstr "famille" ++ ++#: wp-admin/edit-link-form.php:224 ++msgid "child" ++msgstr "enfant" ++ ++#: wp-admin/edit-link-form.php:227 ++msgid "kin" ++msgstr "apparenté" ++ ++#: wp-admin/edit-link-form.php:230 ++msgid "parent" ++msgstr "parent" ++ ++#: wp-admin/edit-link-form.php:233 ++msgid "sibling" ++msgstr "frÚre/sœur" ++ ++#: wp-admin/edit-link-form.php:236 ++msgid "spouse" ++msgstr "conjoint" ++ ++#: wp-admin/edit-link-form.php:243 ++msgid "romantic" ++msgstr "romantique" ++ ++#: wp-admin/edit-link-form.php:247 ++msgid "muse" ++msgstr "muse" ++ ++#: wp-admin/edit-link-form.php:250 ++msgid "crush" ++msgstr "coup de foudre" ++ ++#: wp-admin/edit-link-form.php:253 ++msgid "date" ++msgstr "petit(e)-ami(e)" ++ ++#: wp-admin/edit-link-form.php:256 ++msgid "sweetheart" ++msgstr "être aimé" ++ ++#: wp-admin/edit-link-form.php:263 ++msgid "If the link is to a person, you can specify your relationship with them using the above form. If you would like to learn more about the idea check out XFN." ++msgstr "Si le lien pointe sur une personne, vous pouvez préciser la relation que vous entretenez avec elle via le formulaire suivant. Si vous voulez en apprendre plus sur ce systÚme, consultez le site de XFN." ++ ++#: wp-admin/edit-link-form.php:268 ++#: wp-content/themes/default/functions.php:393 ++#: wp-includes/js/tinymce/langs/wp-langs.php:291 ++#: wp-includes/js/tinymce/wp-mce-help.php:163 ++msgid "Advanced" ++msgstr "Avancé" ++ ++#: wp-admin/edit-link-form.php:272 ++msgid "Image Address" ++msgstr "Adresse de l’image" ++ ++#: wp-admin/edit-link-form.php:276 ++msgid "RSS Address" ++msgstr "Adresse du flux RSS" ++ ++#: wp-admin/edit-link-form.php:280 ++msgid "Notes" ++msgstr "Commentaires" ++ ++#: wp-admin/edit-link-form.php:284 ++msgid "Rating" ++msgstr "Classement" ++ ++#: wp-admin/edit-link-form.php:293 ++msgid "(Leave at 0 for no rating.)" ++msgstr "(laissez à 0 pour ne pas donner de note.)" ++ ++#: wp-admin/edit-page-form.php:4 ++#, php-format ++msgid "Page updated. Continue editing below or go back." ++msgstr "Page mise à jour. Continuez à la modifier ci-dessous, ou revenez en arriÚre." ++ ++#: wp-admin/edit-page-form.php:7 ++msgid "Page updated." ++msgstr "Page mis à jour." ++ ++#: wp-admin/edit-page-form.php:36 ++msgid "Write Page" ++msgstr "Écrire une page" ++ ++#: wp-admin/edit-page-form.php:64 ++msgid "View this Page" ++msgstr "Afficher cette page" ++ ++#: wp-admin/edit-page-form.php:66 ++#: wp-includes/script-loader.php:498 ++msgid "Preview this Page" ++msgstr "Prévisualiser cette page" ++ ++#: wp-admin/edit-page-form.php:81 ++msgid "Pending" ++msgstr "En attente" ++ ++#: wp-admin/edit-page-form.php:88 ++msgid "Keep this page private" ++msgstr "Cette page est privée" ++ ++#: wp-admin/edit-page-form.php:129 ++#, php-format ++msgid "" ++"You are about to delete this page '%s'\n" ++" 'Cancel' to stop, 'OK' to delete." ++msgstr "" ++"Vous êtes sur le point de supprimer la page “ %s “.\n" ++" “ Annuler “ pour abandonner, “ OK “ pour supprimer." ++ ++#: wp-admin/edit-page-form.php:129 ++msgid "Delete page" ++msgstr "Supprimer la page" ++ ++#: wp-admin/edit-page-form.php:150 ++msgid "See Comments on this Page" ++msgstr "Voir les commentaires de cette page" ++ ++#: wp-admin/edit-page-form.php:153 ++msgid "Manage All Pages" ++msgstr "Gérer toutes les pages" ++ ++#: wp-admin/edit-page-form.php:177 ++#: wp-admin/menu.php:35 ++#: wp-includes/script-loader.php:180 ++msgid "Page" ++msgstr "Page" ++ ++#: wp-admin/edit-page-form.php:219 ++msgid "These settings apply to this page only. “Pings” are trackbacks and pingbacks." ++msgstr "Ces réglages seront appliqués uniquement à cette page. Les “pings” sont des rétroliens ou des pings." ++ ++#: wp-admin/edit-page-form.php:224 ++msgid "Password Protect This Page" ++msgstr "Mot de passe de protection de cette page" ++ ++#: wp-admin/edit-page-form.php:227 ++msgid "Setting a password will require people who visit your blog to enter the above password to view this page and its comments." ++msgstr "Fixer un mot de passe obligera les visiteurs qui fréquentent votre blog à entrer un mot de passe pour lire la page et les commentaires associés." ++ ++#: wp-admin/edit-page-form.php:232 ++msgid "Page Slug" ++msgstr "Identifiant de la page" ++ ++#: wp-admin/edit-page-form.php:239 ++msgid "Page Parent" ++msgstr "Page mÚre" ++ ++#: wp-admin/edit-page-form.php:242 ++msgid "Main Page (no parent)" ++msgstr "Aucune (pas de page parente)" ++ ++#: wp-admin/edit-page-form.php:245 ++msgid "You can arrange your pages in hierarchies, for example you could have an “About” page that has “Life Story” and “My Dog” pages under it. There are no limits to how deeply nested you can make pages." ++msgstr "Vous pouvez arranger vos pages en hiérarchies. Par exemple, vous pourriez avoir une page “À propos”, avec comme sous-pages “Ma vie” et “Mes passions”. Il n’y a pas de limite à la profondeur des sous-pages." ++ ++#: wp-admin/edit-page-form.php:251 ++#: wp-admin/includes/file.php:3 ++msgid "Page Template" ++msgstr "ModÚle de page" ++ ++#: wp-admin/edit-page-form.php:254 ++msgid "Default Template" ++msgstr "ModÚle par défaut" ++ ++#: wp-admin/edit-page-form.php:257 ++msgid "Some themes have custom templates you can use for certain pages that might have additional features or custom layouts. If so, you’ll see them above." ++msgstr "Certains thÚmes utilisent des modÚles spéciaux que vous pouvez appliquer à certaines pages. Ces modÚles peuvent avoir des fonctionnalités supplémentaires ou une mise en page différente. Si c’est le cas, vous les verrez ci-dessus." ++ ++#: wp-admin/edit-page-form.php:263 ++msgid "Page Order" ++msgstr "Ordre de la page" ++ ++#: wp-admin/edit-page-form.php:266 ++msgid "Pages are usually ordered alphabetically, but you can put a number above to change the order pages appear in. (We know this is a little janky, it’ll be better in future releases.)" ++msgstr "Les pages sont généralement classées par ordre alphabétique, mais vous pouvez fixer un nombre pour modifier l’ordre d’apparition. (Nous sommes conscients que c’est laborieux, nous ferons mieux pour les prochaines versions.)" ++ ++#: wp-admin/edit-page-form.php:277 ++msgid "Page Author" ++msgstr "Page de l’auteur" ++ ++#: wp-admin/edit-pages.php:11 ++#: wp-admin/page.php:134 ++msgid "You are not allowed to delete this page." ++msgstr "Vous n’avez pas l’autorisation d’effacer cette page." ++ ++#: wp-admin/edit-pages.php:15 ++#: wp-admin/edit-pages.php:18 ++#: wp-admin/edit.php:15 ++#: wp-admin/edit.php:18 ++#: wp-admin/page.php:138 ++#: wp-admin/page.php:141 ++#: wp-admin/post.php:149 ++#: wp-admin/post.php:152 ++#: wp-admin/upload.php:18 ++msgid "Error in deleting..." ++msgstr "Erreur pendant la suppression…" ++ ++#: wp-admin/edit-pages.php:34 ++#: wp-admin/menu.php:41 ++#: wp-includes/post-template.php:306 ++#: wp-includes/widgets.php:366 ++#: wp-includes/widgets.php:1360 ++#: wp-includes/widgets.php:1361 ++msgid "Pages" ++msgstr "Pages" ++ ++#: wp-admin/edit-pages.php:39 ++msgid "Published pages" ++msgstr "Pages publiées" ++ ++#: wp-admin/edit-pages.php:39 ++#: wp-admin/includes/post.php:522 ++#, php-format ++msgid "Published (%s)" ++msgid_plural "Published (%s)" ++msgstr[0] "Publié (%s)" ++msgstr[1] "Publiés (%s)" ++ ++#: wp-admin/edit-pages.php:40 ++msgid "Scheduled pages" ++msgstr "Pages programmées" ++ ++#: wp-admin/edit-pages.php:40 ++#: wp-admin/includes/post.php:523 ++#, php-format ++msgid "Scheduled (%s)" ++msgid_plural "Scheduled (%s)" ++msgstr[0] "Programmé (%s)" ++msgstr[1] "Programmés (%s)" ++ ++#: wp-admin/edit-pages.php:41 ++msgid "Pending pages" ++msgstr "Pages en attente" ++ ++#: wp-admin/edit-pages.php:41 ++#: wp-admin/includes/post.php:524 ++#, php-format ++msgid "Pending Review (%s)" ++msgid_plural "Pending Review (%s)" ++msgstr[0] "En attente de relecture (%s)" ++msgstr[1] "En attente de relecture (%s)" ++ ++#: wp-admin/edit-pages.php:42 ++#: wp-admin/includes/post.php:525 ++#: wp-includes/post.php:303 ++#: wp-includes/post.php:326 ++msgid "Draft" ++msgstr "Brouillon" ++ ++#: wp-admin/edit-pages.php:42 ++#: wp-admin/includes/post.php:525 ++msgid "Drafts|manage posts header" ++msgstr "Brouillons" ++ ++#: wp-admin/edit-pages.php:42 ++#: wp-admin/includes/post.php:525 ++#, php-format ++msgid "Draft (%s)" ++msgid_plural "Drafts (%s)" ++msgstr[0] "Brouillon (%s)" ++msgstr[1] "Brouillons (%s)" ++ ++#: wp-admin/edit-pages.php:43 ++#: wp-admin/includes/post.php:526 ++#: wp-includes/post.php:305 ++#: wp-includes/post.php:327 ++msgid "Private" ++msgstr "Privé" ++ ++#: wp-admin/edit-pages.php:43 ++msgid "Private pages" ++msgstr "Pages privées" ++ ++#: wp-admin/edit-pages.php:43 ++#: wp-admin/includes/post.php:526 ++#, php-format ++msgid "Private (%s)" ++msgid_plural "Private (%s)" ++msgstr[0] "Privé (%s)" ++msgstr[1] "Privés (%s)" ++ ++#: wp-admin/edit-pages.php:46 ++msgid "Manage Pages" ++msgstr "Gérer les pages" ++ ++#: wp-admin/edit-pages.php:68 ++#: wp-admin/edit.php:74 ++#: wp-admin/upload.php:77 ++#, php-format ++msgid "matching “%s”" ++msgstr "correspondant à “%s”" ++ ++#: wp-admin/edit-pages.php:72 ++#: wp-admin/edit.php:71 ++#: wp-admin/upload.php:74 ++#, php-format ++msgid "by %s" ++msgstr "par %s" ++ ++#: wp-admin/edit-pages.php:74 ++#, php-format ++msgid "%1$s%2$s%3$s|You can reorder these: 1: Pages, 2: by {s}, 3: matching {s}" ++msgstr "%1$s%2$s%3$s" ++ ++#: wp-admin/edit-pages.php:85 ++msgid "All Pages" ++msgstr "Toutes les pages" ++ ++#: wp-admin/edit-pages.php:108 ++msgid "Your page has been saved." ++msgstr "Votre page a été enregistrée." ++ ++#: wp-admin/edit-pages.php:108 ++#: wp-admin/page-new.php:17 ++msgid "View page" ++msgstr "Voir la page" ++ ++#: wp-admin/edit-pages.php:108 ++msgid "Edit page" ++msgstr "Modifier la page" ++ ++#: wp-admin/edit-pages.php:115 ++msgid "Search Pages" ++msgstr "Chercher dans les pages" ++ ++#: wp-admin/edit-pages.php:165 ++msgid "No pages found." ++msgstr "Aucune page trouvée." ++ ++#: wp-admin/edit.php:11 ++#: wp-admin/post.php:145 ++#: wp-admin/upload.php:14 ++msgid "You are not allowed to delete this post." ++msgstr "Vous n’avez pas l’autorisation d’effacer cet article." ++ ++#: wp-admin/edit.php:54 ++#: wp-admin/upload.php:57 ++#: wp-content/themes/classic/comments-popup.php:9 ++#, php-format ++msgid "Comments on %s" ++msgstr "Commentaires sur %s" ++ ++#: wp-admin/edit.php:56 ++msgid "Manage Posts|manage posts header" ++msgstr "Gérer les articles" ++ ++#: wp-admin/edit.php:60 ++#: wp-admin/upload.php:63 ++#, php-format ++msgid "Previous %s" ++msgstr "%s précédents" ++ ++#: wp-admin/edit.php:60 ++#: wp-admin/upload.php:63 ++#, php-format ++msgid "Latest %s" ++msgstr "Derniers %s" ++ ++#: wp-admin/edit.php:68 ++#: wp-admin/upload.php:71 ++msgid "by other authors" ++msgstr "par d’autres auteurs" ++ ++#: wp-admin/edit.php:75 ++#: wp-admin/upload.php:78 ++#, php-format ++msgid "in “%s”" ++msgstr "dans “%s”" ++ ++#: wp-admin/edit.php:76 ++#: wp-admin/upload.php:79 ++#, php-format ++msgid "tagged with “%s”" ++msgstr "taggé avec “%s”" ++ ++#: wp-admin/edit.php:77 ++#: wp-admin/upload.php:80 ++#, php-format ++msgid "during %s" ++msgstr "pendant %s" ++ ++#: wp-admin/edit.php:78 ++#: wp-admin/upload.php:81 ++#, php-format ++msgid "%1$s%2$s%3$s%4$s%5$s%6$s|You can reorder these: 1: Posts, 2: by {s}, 3: matching {s}, 4: in {s}, 5: tagged with {s}, 6: during {s}" ++msgstr "%1$s%2$s%3$s%4$s%5$s%6$s" ++ ++#: wp-admin/edit.php:87 ++msgid "All Posts" ++msgstr "Tous les articles" ++ ++#: wp-admin/edit.php:113 ++#: wp-admin/post-new.php:28 ++msgid "Your post has been saved." ++msgstr "Votre article a été enregistré." ++ ++#: wp-admin/edit.php:113 ++#: wp-admin/post-new.php:28 ++msgid "View post" ++msgstr "Afficher l’article" ++ ++#: wp-admin/edit.php:113 ++#: wp-admin/post-new.php:28 ++#: wp-includes/link-template.php:484 ++msgid "Edit post" ++msgstr "Modifier l’article" ++ ++#: wp-admin/edit.php:120 ++msgid "Search Posts" ++msgstr "Chercher dans les articles" ++ ++#: wp-admin/edit.php:150 ++#: wp-admin/includes/media.php:1023 ++#: wp-admin/upload.php:162 ++msgid "Show all dates" ++msgstr "Afficher toutes les dates" ++ ++#: wp-admin/edit.php:170 ++msgid "View all categories" ++msgstr "Voir toutes les catégories" ++ ++#: wp-admin/edit.php:172 ++#: wp-admin/link-manager.php:110 ++#: wp-admin/upload.php:182 ++msgid "Filter" ++msgstr "Filtrer" ++ ++#: wp-admin/edit-post-rows.php:76 ++msgid " — Protected" ++msgstr " — Protégé" ++ ++#: wp-admin/edit-post-rows.php:76 ++#: wp-admin/includes/template.php:404 ++msgid " — Private" ++msgstr " — Privé" ++ ++#: wp-admin/edit-post-rows.php:90 ++#: wp-admin/includes/upgrade.php:64 ++#: wp-admin/includes/upgrade.php:65 ++#: wp-includes/category-template.php:116 ++msgid "Uncategorized" ++msgstr "Non classé" ++ ++#: wp-admin/edit-post-rows.php:106 ++msgid "No Tags" ++msgstr "Aucun tag" ++ ++#: wp-admin/edit-post-rows.php:137 ++#: wp-admin/includes/template.php:433 ++#, php-format ++msgid "View \"%s\"" ++msgstr "Voir \"%s\"" ++ ++#: wp-admin/edit-post-rows.php:162 ++msgid "View" ++msgstr "Afficher" ++ ++#: wp-admin/edit-tag-form.php:3 ++#: wp-admin/edit-tag-form.php:4 ++msgid "Edit Tag" ++msgstr "Modifier le tag" ++ ++#: wp-admin/edit-tag-form.php:10 ++#: wp-admin/edit-tag-form.php:11 ++msgid "Add Tag" ++msgstr "Ajouter un tag" ++ ++#: wp-admin/edit-tag-form.php:28 ++msgid "Tag name" ++msgstr "Nom du tag" ++ ++#: wp-admin/edit-tag-form.php:30 ++msgid "The name is how the tag appears on your site." ++msgstr "Ce nom est utilisé pour identifier le tag un peu partout, par exemple lors de l’affichage d’un article." ++ ++#: wp-admin/edit-tag-form.php:33 ++msgid "Tag slug" ++msgstr "Identifiant du tag" ++ ++#: wp-admin/edit-tags.php:113 ++msgid "Tag added." ++msgstr "Tag ajouté." ++ ++#: wp-admin/edit-tags.php:114 ++msgid "Tag deleted." ++msgstr "Tag supprimé." ++ ++#: wp-admin/edit-tags.php:115 ++msgid "Tag updated." ++msgstr "Tag mis à jour." ++ ++#: wp-admin/edit-tags.php:116 ++msgid "Tag not added." ++msgstr "Le tag n’a pas été ajouté." ++ ++#: wp-admin/edit-tags.php:117 ++msgid "Tag not updated." ++msgstr "Le tag n’a pas été mis à jour." ++ ++#: wp-admin/edit-tags.php:118 ++msgid "Tags deleted." ++msgstr "Tags supprimés." ++ ++#: wp-admin/edit-tags.php:130 ++#, php-format ++msgid "Manage Tags (add new)" ++msgstr "Gérer les tags (en ajouter un)" ++ ++#: wp-admin/edit-tags.php:132 ++msgid "Manage Tags" ++msgstr "Gérer les tags" ++ ++#: wp-admin/edit-tags.php:137 ++msgid "Search Tags" ++msgstr "Chercher dans les tags" ++ ++#: wp-admin/export.php:4 ++#: wp-admin/export.php:16 ++#: wp-admin/menu.php:48 ++msgid "Export" ++msgstr "Exporter" ++ ++#: wp-admin/export.php:17 ++msgid "When you click the button below WordPress will create an XML file for you to save to your computer." ++msgstr "Cliquez sur ce bouton pour que WordPress crée un fichier XML que vous pourrez enregistrer sur votre ordinateur." ++ ++#: wp-admin/export.php:18 ++msgid "This format, which we call WordPress eXtended RSS or WXR, will contain your posts, pages, comments, custom fields, categories, and tags." ++msgstr "Ce format, que nous appelons WordPress eXtended RSS (ou WXR), contient tous vos articles, pages, commentaires, champs personnalisés, catégories et tags." ++ ++#: wp-admin/export.php:19 ++msgid "Once you’ve saved the download file, you can use the Import function on another WordPress blog to import this blog." ++msgstr "Une fois que le fichier téléchargé a été enregistré, vous pouvez utiliser la fonction importer d’un autre blog WordPress pour importer ce fichier dans cet autre blog." ++ ++#: wp-admin/export.php:21 ++msgid "Options" ++msgstr "Options" ++ ++#: wp-admin/export.php:25 ++msgid "Restrict Author" ++msgstr "Se limiter à l’auteur" ++ ++#: wp-admin/export.php:28 ++msgid "All Authors" ++msgstr "Tous les auteurs" ++ ++#: wp-admin/export.php:40 ++msgid "Download Export File" ++msgstr "Télécharger le fichier d’export" ++ ++#: wp-admin/import/blogger.php:13 ++msgid "Import Blogger" ++msgstr "Importer depuis Blogger" ++ ++#: wp-admin/import/blogger.php:14 ++msgid "Howdy! This importer allows you to import posts and comments from your Blogger account into your WordPress blog." ++msgstr "Salutations ! Cet outil d’import vous permet d’importer les articles et les commentaires depuis votre compte Blogger vers votre blog WordPress." ++ ++#: wp-admin/import/blogger.php:15 ++msgid "To use this importer, you must have a Google account and an upgraded (New, was Beta) blog hosted on blogspot.com or a custom domain (not FTP)." ++msgstr "Pour utiliser cet importateur, vous devez disposer d’un compte Google, un blog mis à jour (New Blogger, auparavant nommé Beta), et ce dernier doit être sur blogspot.com ou sur un domaine personnalisé (pas de compte FTP)." ++ ++#: wp-admin/import/blogger.php:16 ++msgid "The first thing you need to do is tell Blogger to let WordPress access your account. You will be sent back here after providing authorization." ++msgstr "La premiÚre chose à faire est de dire à Blogger de laisser WordPress accéder à votre compte. Vous serez renvoyé ici aprÚs avoir obtenu l’autorisation." ++ ++#: wp-admin/import/blogger.php:17 ++msgid "Authorize" ++msgstr "Identification" ++ ++#: wp-admin/import/blogger.php:51 ++msgid "Authorization failed" ++msgstr "Échec lors de l’identification" ++ ++#: wp-admin/import/blogger.php:52 ++msgid "Something went wrong. If the problem persists, send this info to support:" ++msgstr "Une erreur est survenue. Si le problÚme persiste, envoyez ces informations au support :" ++ ++#: wp-admin/import/blogger.php:109 ++msgid "Trouble signing in" ++msgstr "ProblÚme de connexion" ++ ++#: wp-admin/import/blogger.php:110 ++msgid "We were not able to gain access to your account. Try starting over." ++msgstr "Il n’est pas possible d’accéder à votre compte. Veuillez recommencer." ++ ++#: wp-admin/import/blogger.php:143 ++msgid "No blogs found" ++msgstr "Aucun blog trouvé" ++ ++#: wp-admin/import/blogger.php:144 ++msgid "We were able to log in but there were no blogs. Try a different account next time." ++msgstr "La connexion a réussie mais il n’y a pas de blog. Essayez un compte différent la prochaine fois." ++ ++#: wp-admin/import/blogger.php:152 ++#: wp-admin/upgrade.php:30 ++#: wp-admin/upgrade.php:57 ++msgid "Continue" ++msgstr "Continuer" ++ ++#: wp-admin/import/blogger.php:153 ++#: wp-admin/link-import.php:73 ++msgid "Importing..." ++msgstr "Importation en cours…" ++ ++#: wp-admin/import/blogger.php:154 ++msgid "Set Authors" ++msgstr "Définir les auteurs" ++ ++#: wp-admin/import/blogger.php:155 ++msgid "Preparing author mapping form..." ++msgstr "Préparation du formulaire de correspondance d’auteurs…" ++ ++#: wp-admin/import/blogger.php:156 ++msgid "Final Step: Author Mapping" ++msgstr "Étape finale : correspondance des auteurs" ++ ++#: wp-admin/import/blogger.php:157 ++msgid "Nothing was imported. Had you already imported this blog?" ++msgstr "Rien n’a été importé. Avez-vous déjà importé ce blog ?" ++ ++#: wp-admin/import/blogger.php:158 ++msgid "Blogger Blogs" ++msgstr "Blogs Blogger" ++ ++#: wp-admin/import/blogger.php:159 ++msgid "Blog Name" ++msgstr "Nom du blog" ++ ++#: wp-admin/import/blogger.php:160 ++msgid "Blog URL" ++msgstr "URL du blog" ++ ++#: wp-admin/import/blogger.php:161 ++msgid "The Magic Button" ++msgstr "Le Bouton Magique" ++ ++#: wp-admin/import/blogger.php:163 ++#: wp-admin/includes/file.php:3 ++#: wp-admin/menu.php:38 ++#: wp-content/plugins/akismet/akismet.php:488 ++#: wp-content/themes/classic/comments-popup.php:22 ++msgid "Comments" ++msgstr "Commentaires" ++ ++#: wp-admin/import/blogger.php:164 ++msgid "This feature requires Javascript but it seems to be disabled. Please enable Javascript and then reload this page. Don't worry, you can turn it back off when you're done." ++msgstr "Cette fonctionnalité requiert JavaScript, mais il semble être désactivé. Veuillez l’activer dans votre navigateur, et recharger cette page. Ne vous inquiétez pas, vous pourrez le désactiver à nouveau une fois ceci terminé." ++ ++#: wp-admin/import/blogger.php:611 ++msgid "All posts were imported with the current user as author. Use this form to move each Blogger user's posts to a different WordPress user. You may add users and then return to this page and complete the user mapping. This form may be used as many times as you like until you activate the \"Restart\" function below." ++msgstr "Tous les articles ont été importés avec l’utilisateur courant comme auteur. Utilisez ce formulaire pour assigner chaque article de l’utilisateur Blogger à un utilisateur WordPress différent. Vous pouvez ajouter des utilisateurs puis revenir à cette page afin de terminer la correspondance d’auteurs. Ce formulaire peut être utilisé autant de fois que nécessaire, jusqu’à ce que vous activiez la fonction \"Relancer\" ci-dessous." ++ ++#: wp-admin/import/blogger.php:612 ++msgid "Author mapping" ++msgstr "Correspondance d’auteurs" ++ ++#: wp-admin/import/blogger.php:614 ++msgid "Blogger username" ++msgstr "Identifiant du blogueur" ++ ++#: wp-admin/import/blogger.php:615 ++msgid "WordPress login" ++msgstr "Connexion WordPress" ++ ++#: wp-admin/import/blogger.php:673 ++msgid "Could not connect to https://www.google.com" ++msgstr "Impossible de se connecter à https://www.google.com" ++ ++#: wp-admin/import/blogger.php:674 ++msgid "There was a problem opening a secure connection to Google. This is what went wrong:" ++msgstr "Un problÚme est survenu pendant l’ouverture d’une connexion sécurisée avec Google. Voici ce qui est arrivé :" ++ ++#: wp-admin/import/blogger.php:685 ++#, php-format ++msgid "Could not connect to %s" ++msgstr "Impossible de se connecter à %s" ++ ++#: wp-admin/import/blogger.php:686 ++msgid "There was a problem opening a connection to Blogger. This is what went wrong:" ++msgstr "Un problÚme est survenu pendant l’ouverture d’une connexion vers Blogger. Voici ce qui est arrivé :" ++ ++#: wp-admin/import/blogger.php:752 ++msgid "Congratulations!" ++msgstr "Bravo !" ++ ++#: wp-admin/import/blogger.php:752 ++msgid "Now that you have imported your Blogger blog into WordPress, what are you going to do? Here are some suggestions:" ++msgstr "Maintenant que vous avez importé votre blog Blogger dans WordPress, qu’allez-vous faire ? Voici quelques suggestions :" ++ ++#: wp-admin/import/blogger.php:752 ++msgid "That was hard work! Take a break." ++msgstr "C’était bien compliqué ! Faites une pause." ++ ++#: wp-admin/import/blogger.php:754 ++msgid "In case you haven't done it already, you can import the posts from your other blogs:" ++msgstr "Si vous ne l’avez pas encore fait, vous pouvez importer des articles depuis vos autres blogs :" ++ ++#: wp-admin/import/blogger.php:756 ++#, php-format ++msgid "Go to Authors & Users, where you can modify the new user(s) or delete them. If you want to make all of the imported posts yours, you will be given that option when you delete the new authors." ++msgstr "Allez à Auteurs & Utilisateurs, où vous pourrez modifier les nouveaux utilisateurs ou les supprimer. Si vous voulez que tous les articles importés vous soient affectés, il vous sera offert cette possibilité lorsque vous supprimerez les nouveaux utilisateurs." ++ ++#: wp-admin/import/blogger.php:757 ++msgid "For security, click the link below to reset this importer." ++msgstr "Pour des raisons de sécurité, cliquez sur le lien ci-dessous pour ré-initialiser l’outil d’importation." ++ ++#: wp-admin/import/blogger.php:788 ++msgid "Restart" ++msgstr "Relancer" ++ ++#: wp-admin/import/blogger.php:789 ++msgid "We have saved some information about your Blogger account in your WordPress database. Clearing this information will allow you to start over. Restarting will not affect any posts you have already imported. If you attempt to re-import a blog, duplicate posts and comments will be skipped." ++msgstr "Nous avons enregistré quelques informations à propos de votre compte Blogger dans votre base de données WordPress. Pour recommencer depuis le début, effacez-les. Recommencer n’affectera pas les articles que vous avez déjà importés. Si vous tentez de réimporter un blog, les articles et commentaires en doublon ne seront pas pris en compte." ++ ++#: wp-admin/import/blogger.php:790 ++msgid "Clear account information" ++msgstr "Effacer les informations du compte" ++ ++#: wp-admin/import/blogger.php:840 ++msgid "Blogger" ++msgstr "Blogger" ++ ++#: wp-admin/import/blogger.php:840 ++msgid "Import posts, comments, and users from a Blogger blog." ++msgstr "Importation d’articles, de commentaires et d’utilisateurs depuis un blog Blogger." ++ ++#: wp-admin/import/blogware.php:11 ++msgid "Import Blogware" ++msgstr "Importer Blogware" ++ ++#: wp-admin/import/blogware.php:26 ++msgid "Howdy! This importer allows you to extract posts from Blogware XML export file into your blog. Pick a Blogware file to upload and click Import." ++msgstr "Salutations ! Cet outil d’importation vous permet d’extraire des articles depuis le fichier d’export XML de votre blog BlogWare. Choisissez le fichier à utiliser et cliquez sur Envoyer le fichier et l’importer." ++ ++#: wp-admin/import/blogware.php:89 ++#: wp-admin/import/livejournal.php:69 ++#: wp-admin/import/mt.php:210 ++#: wp-admin/import/wordpress.php:387 ++#, php-format ++msgid "Post %s already exists." ++msgstr "L’article %s existe déjà." ++ ++#: wp-admin/import/blogware.php:91 ++#: wp-admin/import/livejournal.php:71 ++#: wp-admin/import/mt.php:213 ++#: wp-admin/import/wordpress.php:418 ++#, php-format ++msgid "Importing post %s..." ++msgstr "Importation de l’article %s…" ++ ++#: wp-admin/import/blogware.php:98 ++#: wp-admin/import/livejournal.php:77 ++#: wp-admin/import/rss.php:116 ++msgid "Couldn't get post ID" ++msgstr "Impossible d’obtenir l’ID de l’article" ++ ++#: wp-admin/import/blogware.php:144 ++#: wp-includes/pluggable.php:892 ++#, php-format ++msgid "%s comment" ++msgid_plural "%s comments" ++msgstr[0] "(%s commentaire)" ++msgstr[1] "(%s commentaires)" ++ ++#: wp-admin/import/blogware.php:167 ++#: wp-admin/import/livejournal.php:144 ++#: wp-admin/import/mt.php:423 ++#: wp-admin/import/rss.php:147 ++#, php-format ++msgid "All done. Have fun!" ++msgstr "Terminé (Amusez-vous bien !)" ++ ++#: wp-admin/import/blogware.php:200 ++msgid "Blogware" ++msgstr "Blogware" ++ ++#: wp-admin/import/blogware.php:200 ++msgid "Import posts from Blogware." ++msgstr "Importation d’articles depuis Blogware." ++ ++#: wp-admin/import/btt.php:7 ++msgid "Import Bunny’s Technorati Tags" ++msgstr "Importer depuis Bunny’s Technorati Tags" ++ ++#: wp-admin/import/btt.php:8 ++#: wp-admin/import/dotclear.php:116 ++#: wp-admin/import/jkw.php:8 ++#: wp-admin/import/stp.php:6 ++#: wp-admin/import/textpattern.php:33 ++#: wp-admin/import/utw.php:8 ++msgid "Steps may take a few minutes depending on the size of your database. Please be patient." ++msgstr "Cette procédure peut prendre quelques minutes en fonction de la taille de votre base de données. Soyez patient." ++ ++#: wp-admin/import/btt.php:17 ++msgid "Howdy! This imports tags from Bunny’s Technorati Tags into WordPress tags." ++msgstr "Salutations ! Cet outil importe dans ce blog les tags en provenance d’une installation existante de Bunny’s Technorati, dans les tags WordPress." ++ ++#: wp-admin/import/btt.php:18 ++msgid "This is suitable for Bunny’s Technorati Tags version 0.6." ++msgstr "Cette importateur fonctionne pour la version 0.6 de Bunny’s Technorati Tags." ++ ++#: wp-admin/import/btt.php:19 ++msgid "All existing Bunny’s Technorati Tags will be removed after import." ++msgstr "Tous les tags existant de Bunny’s Technorati Tags seront supprimés aprÚs l’exportation." ++ ++#: wp-admin/import/btt.php:20 ++#: wp-admin/import/jkw.php:20 ++#: wp-admin/import/stp.php:18 ++#: wp-admin/import/utw.php:20 ++msgid "Don’t be stupid - backup your database before proceeding!" ++msgstr "Ne faites pas l’idiot, faites une sauvegarde de votre base de données avant de vous lancer !" ++ ++#: wp-admin/import/btt.php:23 ++msgid "Import Tags" ++msgstr "Importation des tags" ++ ++#: wp-admin/import/btt.php:62 ++msgid "Reading Bunny’s Technorati Tags…" ++msgstr "Lecture des tags Bunny’s Technorati Tags…" ++ ++#: wp-admin/import/btt.php:67 ++#: wp-admin/import/jkw.php:83 ++#: wp-admin/import/jkw.php:124 ++#: wp-admin/import/utw.php:72 ++msgid "No Tags Found!" ++msgstr "Aucun tag trouvé !" ++ ++#: wp-admin/import/btt.php:71 ++#: wp-admin/import/jkw.php:87 ++#, php-format ++msgid "Done! %s post with tags were read." ++msgid_plural "Done! %s posts with tags were read." ++msgstr[0] "Terminé ! %s article avec tags a été traité." ++msgstr[1] "Terminé ! %s articles avec tags ont été traités." ++ ++#: wp-admin/import/btt.php:93 ++#: wp-admin/import/jkw.php:109 ++#: wp-admin/import/jkw.php:142 ++msgid "Next" ++msgstr "Suivant" ++ ++#: wp-admin/import/btt.php:100 ++#: wp-admin/import/jkw.php:163 ++#: wp-admin/import/stp.php:139 ++#: wp-admin/import/utw.php:250 ++msgid "Import Complete!" ++msgstr "Importation terminée !" ++ ++#: wp-admin/import/btt.php:113 ++msgid "Import Bunny’s Technorati Tags into WordPress tags." ++msgstr "Importation des tags Bunny’s Technorati dans les tags WordPress." ++ ++#: wp-admin/import/dotclear.php:115 ++msgid "Import DotClear" ++msgstr "Importation depuis DotClear" ++ ++#: wp-admin/import/dotclear.php:126 ++msgid "Howdy! This importer allows you to extract posts from a DotClear database into your blog. Mileage may vary." ++msgstr "Salutations ! Cet outil d’importation vous permet d’extraire les articles d’un blog DotClear vers votre nouveau blog WordPress. Attention, la peinture est encore fraîche…" ++ ++#: wp-admin/import/dotclear.php:127 ++msgid "Your DotClear Configuration settings are as follows:" ++msgstr "Vos options de configuration de DotClear sont les suivantes :" ++ ++#: wp-admin/import/dotclear.php:131 ++msgid "Import Categories" ++msgstr "Importation des catégories" ++ ++#: wp-admin/import/dotclear.php:204 ++#: wp-admin/import/textpattern.php:156 ++msgid "Importing Categories..." ++msgstr "Importation des catégories en cours…" ++ ++#: wp-admin/import/dotclear.php:228 ++#: wp-admin/import/textpattern.php:180 ++#, php-format ++msgid "Done! %1$s category imported." ++msgid_plural "Done! %1$s categories imported." ++msgstr[0] "Terminé ! %1$s catégorie importée." ++msgstr[1] "Terminé ! %1$s catégories importées." ++ ++#: wp-admin/import/dotclear.php:231 ++#: wp-admin/import/textpattern.php:183 ++msgid "No Categories to Import!" ++msgstr "Aucune catégorie à importer !" ++ ++#: wp-admin/import/dotclear.php:245 ++#: wp-admin/import/textpattern.php:197 ++msgid "Importing Users..." ++msgstr "Importation des utilisateurs en cours…" ++ ++#: wp-admin/import/dotclear.php:302 ++#: wp-admin/import/textpattern.php:252 ++#, php-format ++msgid "Done! %1$s users imported." ++msgstr "Terminé ! “ %1$s “ utilisateur(s) importé(s)." ++ ++#: wp-admin/import/dotclear.php:306 ++#: wp-admin/import/textpattern.php:256 ++msgid "No Users to Import!" ++msgstr "Aucun utilisateur à importer !" ++ ++#: wp-admin/import/dotclear.php:322 ++#: wp-admin/import/textpattern.php:272 ++msgid "Importing Posts..." ++msgstr "Importation des articles en cours…" ++ ++#: wp-admin/import/dotclear.php:405 ++#: wp-admin/import/textpattern.php:346 ++#, php-format ++msgid "Done! %1$s posts imported." ++msgstr "Terminé ! %1$s articles ont été importés." ++ ++#: wp-admin/import/dotclear.php:420 ++#: wp-admin/import/textpattern.php:361 ++msgid "Importing Comments..." ++msgstr "Importation des commentaires en cours…" ++ ++#: wp-admin/import/dotclear.php:475 ++#: wp-admin/import/textpattern.php:413 ++#, php-format ++msgid "Done! %1$s comments imported." ++msgstr "Terminé ! %1$s commentaires ont été importés." ++ ++#: wp-admin/import/dotclear.php:478 ++#: wp-admin/import/textpattern.php:416 ++msgid "No Comments to Import!" ++msgstr "Pas de commentaire à importer !" ++ ++#: wp-admin/import/dotclear.php:491 ++#: wp-admin/import/textpattern.php:429 ++msgid "Importing Links..." ++msgstr "Importation des liens en cours…" ++ ++#: wp-admin/import/dotclear.php:529 ++#, php-format ++msgid "Done! %s link or link category imported." ++msgid_plural "Done! %s links or link categories imported." ++msgstr[0] "Terminé ! %s lien et/ou catégorie de liens a été importé." ++msgstr[1] "Terminé ! %s liens et/ou catégories de liens ont été importés." ++ ++#: wp-admin/import/dotclear.php:533 ++#: wp-admin/import/textpattern.php:469 ++msgid "No Links to Import!" ++msgstr "Aucun lien à importer !" ++ ++#: wp-admin/import/dotclear.php:548 ++#: wp-admin/import/textpattern.php:484 ++msgid "Import Users" ++msgstr "Importer des utilisateurs" ++ ++#: wp-admin/import/dotclear.php:561 ++#: wp-admin/import/textpattern.php:497 ++msgid "Import Posts" ++msgstr "Importer des articles" ++ ++#: wp-admin/import/dotclear.php:575 ++#: wp-admin/import/textpattern.php:511 ++msgid "Import Comments" ++msgstr "Importer des commentaires" ++ ++#: wp-admin/import/dotclear.php:600 ++#: wp-admin/import/textpattern.php:536 ++msgid "Finish" ++msgstr "Terminé" ++ ++#: wp-admin/import/dotclear.php:624 ++msgid "Welcome to WordPress. We hope (and expect!) that you will find this platform incredibly rewarding! As a new WordPress user coming from DotClear, there are some things that we would like to point out. Hopefully, they will help your transition go as smoothly as possible." ++msgstr "Bienvenue sur WordPress. Nous espérons que vous trouverez cette plateforme incroyablement intéressante (et nous en sommes sûrs) ! En tant que nouvel utilisateur de WordPress provenant de DotClear, il y a quelques points que nous voudrions vous préciser. Nous espérons que cela vous aidera dans votre transition." ++ ++#: wp-admin/import/dotclear.php:625 ++#: wp-admin/import/textpattern.php:560 ++#: wp-admin/menu.php:29 ++#: wp-admin/users.php:8 ++msgid "Users" ++msgstr "Utilisateurs" ++ ++#: wp-admin/import/dotclear.php:626 ++#, php-format ++msgid "You have already setup WordPress and have been assigned an administrative login and password. Forget it. You didn't have that login in DotClear, why should you have it here? Instead we have taken care to import all of your users into our system. Unfortunately there is one downside. Because both WordPress and DotClear uses a strong encryption hash with passwords, it is impossible to decrypt it and we are forced to assign temporary passwords to all your users. Every user has the same username, but their passwords are reset to password123. So Login and change it." ++msgstr "Vous avez déjà installé WordPress et il vous a été communiqué un identifiant d’administration et un mot de passe. Oubliez-les. Vous n’aviez pas cet identifiant dans DotClear donc pourquoi l’auriez-vous ici ? Nous avons donc pris soin d’importer tous vos utilisateurs dans votre systÚme. Hélas, il y a un point sombre. WordPress et DotClear utilisent tous deux des clefs fortes d’encryptage sur les mots de passe et il nous est impossible de les décrypter. Nous vous avons donc affecté un mot de passe temporaire. Tous les utilisateurs ont conservé leur identifiant, mais ils ont à présent un mot de passe commun qui est password123. Vous devez donc vous connecter et les changer." ++ ++#: wp-admin/import/dotclear.php:627 ++#: wp-admin/import/textpattern.php:562 ++msgid "Preserving Authors" ++msgstr "Conserver les auteurs" ++ ++#: wp-admin/import/dotclear.php:628 ++#: wp-admin/import/textpattern.php:563 ++msgid "Secondly, we have attempted to preserve post authors. If you are the only author or contributor to your blog, then you are safe. In most cases, we are successful in this preservation endeavor. However, if we cannot ascertain the name of the writer due to discrepancies between database tables, we assign it to you, the administrative user." ++msgstr "DeuxiÚmement, nous nous sommes efforcés de conserver vos auteurs. Si vous êtes le seul auteur ou contributeur de votre blog, vous êtes tranquille. Dans la plupart des cas, nous parvenons à les conserver. Cependant, si nous ne sommes pas certains du nom de l’auteur à cause des différence de gestion d’une base de données à l’autre, nous vous l’affectons à vous, l’administrateur." ++ ++#: wp-admin/import/dotclear.php:629 ++#: wp-admin/import/textpattern.php:564 ++msgid "Textile" ++msgstr "Textile" ++ ++#: wp-admin/import/dotclear.php:630 ++msgid "Also, since you're coming from DotClear, you probably have been using Textile to format your comments and posts. If this is the case, we recommend downloading and installing Textile for WordPress. Trust me... You'll want it." ++msgstr "Par ailleurs, comme vous venez de DotClear, vous avez probablement utilisé Textile pour formatter vos commentaires et vos articles. Si c’est le cas, nous vous recommandons de télécharger et installer Textile pour WordPress. Faites-moi confiance… Vous allez apprécier." ++ ++#: wp-admin/import/dotclear.php:631 ++#: wp-admin/import/textpattern.php:566 ++msgid "WordPress Resources" ++msgstr "Ressources WordPress" ++ ++#: wp-admin/import/dotclear.php:632 ++#: wp-admin/import/textpattern.php:567 ++msgid "Finally, there are numerous WordPress resources around the internet. Some of them are:" ++msgstr "Et enfin, il y a de nombreux sites dédiés à WordPress sur Internet. Parmi ceux-ci, nous vous indiquons :" ++ ++#: wp-admin/import/dotclear.php:634 ++#: wp-admin/import/textpattern.php:569 ++msgid "The official WordPress site" ++msgstr "Site officiel de WordPress" ++ ++#: wp-admin/import/dotclear.php:635 ++#: wp-admin/import/textpattern.php:570 ++msgid "The WordPress support forums" ++msgstr "Forum WordPress d’entraide en français" ++ ++#: wp-admin/import/dotclear.php:636 ++#: wp-admin/import/textpattern.php:571 ++msgid "The Codex (In other words, the WordPress Bible)" ++msgstr "Le Codex (en d’autres termes, la Bible de WordPress) (également disponible en français)" ++ ++#: wp-admin/import/dotclear.php:638 ++#, php-format ++msgid "That's it! What are you waiting for? Go login!" ++msgstr "Et voilà ! Qu’attendez-vous ? Allez vous connecter !" ++ ++#: wp-admin/import/dotclear.php:644 ++msgid "DotClear Database User:" ++msgstr "Utilisateur de la base de données de DotClear :" ++ ++#: wp-admin/import/dotclear.php:645 ++msgid "DotClear Database Password:" ++msgstr "Mot de passe de la base de données de DotClear :" ++ ++#: wp-admin/import/dotclear.php:646 ++msgid "DotClear Database Name:" ++msgstr "Nom de la base de données de DotClear :" ++ ++#: wp-admin/import/dotclear.php:647 ++msgid "DotClear Database Host:" ++msgstr "HÃŽte de la base de données de DotClear :" ++ ++#: wp-admin/import/dotclear.php:648 ++msgid "DotClear Table prefix:" ++msgstr "Préfixe des tables de la base de données de DotClear :" ++ ++#: wp-admin/import/dotclear.php:649 ++msgid "Originating character set:" ++msgstr "Jeu de caractÚres d’origine :" ++ ++#: wp-admin/import/dotclear.php:745 ++msgid "DotClear" ++msgstr "DotClear" ++ ++#: wp-admin/import/dotclear.php:745 ++msgid "Import categories, users, posts, comments, and links from a DotClear blog." ++msgstr "Importation des catégories, utilisateurs, articles, commentaires et liens depuis un blog DotClear." ++ ++#: wp-admin/import/greymatter.php:9 ++msgid "Import GreyMatter" ++msgstr "Importation depuis GreyMatter" ++ ++#: wp-admin/import/greymatter.php:19 ++msgid "This is a basic GreyMatter to WordPress import script." ++msgstr "Ceci est un importateur simple de GreyMatter vers WordPress." ++ ++#: wp-admin/import/greymatter.php:20 ++msgid "What it does:" ++msgstr "Ce qu’il fait :" ++ ++#: wp-admin/import/greymatter.php:22 ++msgid "Parses gm-authors.cgi to import (new) authors. Everyone is imported at level 1." ++msgstr "Parcourir gm-authors.cgi pour importer les (nouveaux) auteurs. Ils seront tous placés au niveau 1." ++ ++#: wp-admin/import/greymatter.php:23 ++msgid "Parses the entries cgi files to import posts, comments, and karma on posts (although karma is not used on WordPress yet).
    If authors are found not to be in gm-authors.cgi, imports them at level 0." ++msgstr "Parcourir les fichiers CGI \"entries\" pour importer les articles, les commentaires et les points de karma des articles (bien que le karma n’est pas utilisé sur WordPress pour le moment).
    Si des auteurs d’articles ne sont pas dans gm-authors.cgi, ils seront placés au niveau 0." ++ ++#: wp-admin/import/greymatter.php:24 ++msgid "Detects duplicate entries or comments. If you don't import everything the first time, or this import should fail in the middle, duplicate entries will not be made when you try again." ++msgstr "Détecter les articles ou commentaires en double. Si tout n’est pas importé du premier coup, et si l’importation s’arrête au milieu, vous pouvez le relancer sans craindre de voir apparaître des doublons." ++ ++#: wp-admin/import/greymatter.php:26 ++msgid "What it does not:" ++msgstr "Ce qu’il ne fait pas :" ++ ++#: wp-admin/import/greymatter.php:28 ++msgid "Parse gm-counter.cgi, gm-banlist.cgi, gm-cplog.cgi (you can make a CP log hack if you really feel like it, but I question the need of a CP log)." ++msgstr "Parcourir gm-counter.cgi, gm-banlist.cgi, gm-cplog.cgi (vous pouvez écrire un hack pour créer un log CP si vous le voulez vraiment, mais je doute de l’intérêt du log CP)." ++ ++#: wp-admin/import/greymatter.php:29 ++msgid "Import gm-templates." ++msgstr "Importation depuis gm-templates." ++ ++#: wp-admin/import/greymatter.php:30 ++msgid "Doesn't keep entries on top." ++msgstr "Ne conserve pas les articles en premiÚre position." ++ ++#: wp-admin/import/greymatter.php:38 ++msgid "Second step: GreyMatter details:" ++msgstr "Seconde étape : détails de GreyMatter :" ++ ++#: wp-admin/import/greymatter.php:41 ++msgid "Path to GM files:" ++msgstr "Chemin des fichiers GM :" ++ ++#: wp-admin/import/greymatter.php:45 ++msgid "Path to GM entries:" ++msgstr "Chemin des entrées GM :" ++ ++#: wp-admin/import/greymatter.php:49 ++msgid "Last entry's number:" ++msgstr "Numéro de la derniÚre entrée :" ++ ++#: wp-admin/import/greymatter.php:51 ++msgid "This importer will search for files 00000001.cgi to 000-whatever.cgi,
    so you need to enter the number of the last GM post here.
    (if you don't know that number, just log into your FTP and look it out
    in the entries' folder)" ++msgstr "Cet importateur va chercher les fichiers 00000001.cgi jusqu’à 000-n’importe.cgi,
    donc vous devez saisir le numéro du dernier article GM ici.
    (si vous ne le connaissez pas, connectez-vous à votre serveur FTP et cherchez-le dans le dossier \"entries\")" ++ ++#: wp-admin/import/greymatter.php:55 ++msgid "Start Importing" ++msgstr "Import en cours" ++ ++#: wp-admin/import/greymatter.php:88 ++msgid "Wrong path, the path to the GM entries does not exist on the server" ++msgstr "Mauvais chemin, ce chemin vers les entrées de GM n’existe pas sur le serveur" ++ ++#: wp-admin/import/greymatter.php:91 ++msgid "Wrong path, the path to the GM files does not exist on the server" ++msgstr "Mauvais chemin, ce chemin vers les fichiers de GM n’existe pas sur le serveur" ++ ++#: wp-admin/import/greymatter.php:97 ++msgid "The importer is running..." ++msgstr "L’importateur est en cours de route…" ++ ++#: wp-admin/import/greymatter.php:99 ++msgid "importing users..." ++msgstr "importation des utilisateurs en cours…" ++ ++#: wp-admin/import/greymatter.php:123 ++#, php-format ++msgid "user %s" ++msgstr "utilisateur %s" ++ ++#: wp-admin/import/greymatter.php:123 ++msgid "Already exists" ++msgstr "Existe déjà" ++ ++#: wp-admin/import/greymatter.php:132 ++#, php-format ++msgid "user %s..." ++msgstr "utilisateur %s…" ++ ++#: wp-admin/import/greymatter.php:132 ++#: wp-admin/import/greymatter.php:135 ++#: wp-admin/import/greymatter.php:280 ++#: wp-admin/import/greymatter.php:285 ++msgid "Done" ++msgstr "Terminé" ++ ++#: wp-admin/import/greymatter.php:136 ++msgid "importing posts, comments, and karma..." ++msgstr "importation des articles, commentaires et karma en cours…" ++ ++#: wp-admin/import/greymatter.php:172 ++#, php-format ++msgid "entry # %s : %s : by %s" ++msgstr "entrée n°%s : %s : par %s" ++ ++#: wp-admin/import/greymatter.php:200 ++msgid "(already exists)" ++msgstr "(existe déjà)" ++ ++#: wp-admin/import/greymatter.php:222 ++#, php-format ++msgid "registered deleted user %s at level 0 " ++msgstr "utilisateur effacé %s enregistré au niveau 0" ++ ++#: wp-admin/import/greymatter.php:272 ++#, php-format ++msgid "imported %s comment" ++msgid_plural "imported %s comments" ++msgstr[0] "importé %s commentaire" ++msgstr[1] "importés %s commentaires" ++ ++#: wp-admin/import/greymatter.php:277 ++#, php-format ++msgid "ignored %s pre-existing comment" ++msgid_plural "ignored %s pre-existing comments" ++msgstr[0] "ignoré %s commentaire pré-existant" ++msgstr[1] "ignoré %s commentaires pré-existants" ++ ++#: wp-admin/import/greymatter.php:287 ++msgid "Completed GreyMatter import!" ++msgstr "Importation GreyMatter terminée !" ++ ++#: wp-admin/import/greymatter.php:319 ++msgid "GreyMatter" ++msgstr "GreyMatter" ++ ++#: wp-admin/import/greymatter.php:319 ++msgid "Import users, posts, and comments from a Greymatter blog." ++msgstr "Importation d’utilisateurs, d’articles et de commentaires depuis un blog Greymatter." ++ ++#: wp-admin/import/jkw.php:7 ++msgid "Import Jerome’s Keywords" ++msgstr "Importer depuis Jerome’s Keywords" ++ ++#: wp-admin/import/jkw.php:17 ++msgid "Howdy! This imports tags from Jerome’s Keywords into WordPress tags." ++msgstr "Salutations ! Cet outil importe dans ce blog les tags en provenance d’une installation existante de Jerome’s Keywords, dans les tags WordPress." ++ ++#: wp-admin/import/jkw.php:18 ++msgid "This is suitable for Jerome’s Keywords version 1.x and 2.0a." ++msgstr "Cette importateur fonctionne pour les versions 1.x et 2.0a de Jerome’s Keywords." ++ ++#: wp-admin/import/jkw.php:19 ++msgid "All existing Jerome’s Keywords will be removed after import." ++msgstr "Tous les tags existant de Jerome’s Keywords seront supprimés aprÚs l’exportation." ++ ++#: wp-admin/import/jkw.php:23 ++msgid "Import Version 1.x" ++msgstr "Importer depuis la version 1.x" ++ ++#: wp-admin/import/jkw.php:27 ++msgid "Import Version 2.0a" ++msgstr "Importer depuis la version 2.0a" ++ ++#: wp-admin/import/jkw.php:78 ++#: wp-admin/import/jkw.php:118 ++msgid "Reading Jerome’s Keywords Tags…" ++msgstr "Lecture des tags Jerome’s Keywords d’article…" ++ ++#: wp-admin/import/jkw.php:128 ++#: wp-admin/import/utw.php:87 ++#, php-format ++msgid "Done! %s tag were read." ++msgid_plural "Done! %s tags were read." ++msgstr[0] "Terminé ! %s tag a été traité." ++msgstr[1] "Terminé ! %s tags ont été traités." ++ ++#: wp-admin/import/jkw.php:176 ++msgid "Import Jerome’s Keywords into WordPress tags." ++msgstr "Importation des tags Jerome’s Keywords dans les tags WordPress." ++ ++#: wp-admin/import/livejournal.php:9 ++msgid "Import LiveJournal" ++msgstr "Importation depuis LiveJournal" ++ ++#: wp-admin/import/livejournal.php:24 ++msgid "Howdy! Upload your LiveJournal XML export file and we’ll import the posts into this blog." ++msgstr "Salutations ! Envoyez votre fichier XML d’export LiveJournal, et nous importertons ses articles dans ce blog." ++ ++#: wp-admin/import/livejournal.php:25 ++msgid "Choose a LiveJournal XML file to upload, then click Upload file and import." ++msgstr "Choisissez un fichier LiveJournal XML à utiliser, et cliquez sur Envoyer le fichier et l’importer." ++ ++#: wp-admin/import/livejournal.php:122 ++#: wp-admin/import/mt.php:250 ++#: wp-admin/import/wordpress.php:493 ++#, php-format ++msgid "(%s comment)" ++msgid_plural "(%s comments)" ++msgstr[0] "(%s commentaire)" ++msgstr[1] "(%s commentaires)" ++ ++#: wp-admin/import/livejournal.php:178 ++msgid "LiveJournal" ++msgstr "LiveJournal" ++ ++#: wp-admin/import/livejournal.php:178 ++msgid "Import posts from a LiveJournal XML export file." ++msgstr "Importation d’articles depuis un fichier XML d’export LiveJournal." ++ ++#: wp-admin/import/mt.php:14 ++msgid "Import Movable Type or TypePad" ++msgstr "Importation depuis Movable Type ou TypePad" ++ ++#: wp-admin/import/mt.php:25 ++msgid "Howdy! We’re about to begin importing all of your Movable Type or Typepad entries into WordPress. To begin, either choose a file to upload and click \"Upload file and import,\" or use FTP to upload your MT export file as mt-export.txt in your /wp-content/ directory and then click \"Import mt-export.txt\"" ++msgstr "Salutations ! Nous sommes sur le point de procéder à l’importation de toutes vos entrées Movable Type ou TypePad vers WordPress. Pour commencer, sélectionnez un fichier à envoyer et cliquez sur Envoyer le fichier et l’importer. Autre possibilité : utilisez un logiciel FTP pour envoyer votre fichier d’exportation MT avec comme nom mt-export.txt dans le dossier /wp-content/ et cliquez sur \"Importer mt-export.txt\"" ++ ++#: wp-admin/import/mt.php:33 ++msgid "Or use mt-export.txt in your /wp-content/ directory" ++msgstr "Ou placez mt-export.txt dans votre dossier /wp-content/ " ++ ++#: wp-admin/import/mt.php:35 ++msgid "Import mt-export.txt" ++msgstr "Importer mt-export.txt" ++ ++#: wp-admin/import/mt.php:38 ++msgid "The importer is smart enough not to import duplicates, so you can run this multiple times without worry if—for whatever reason—it doesn't finish. If you get an out of memory error try splitting up the import file into pieces." ++msgstr "L’outil d’importation est suffisamment intelligent pour ne pas importer les doublons, donc vous pouvez le lancer plusieurs fois sans vous soucier s’il s’interrompait en cours de route, pour n’importe quelle raison. Si vous obtenez une erreur manque de mémoire, essayez de découper le fichier à importer en plusieurs morceaux." ++ ++#: wp-admin/import/mt.php:48 ++#: wp-admin/import/wordpress.php:232 ++#: wp-admin/includes/template.php:807 ++#: wp-admin/options-reading.php:30 ++#: wp-admin/options-reading.php:31 ++msgid "- Select -" ++msgstr "- Choisir -" ++ ++#: wp-admin/import/mt.php:155 ++#: wp-admin/import/wordpress.php:181 ++msgid "Assign Authors" ++msgstr "Assigner les auteurs" ++ ++#: wp-admin/import/mt.php:156 ++msgid "To make it easier for you to edit and save the imported posts and drafts, you may want to change the name of the author of the posts. For example, you may want to import all the entries as admin's entries." ++msgstr "De façon à vous faciliter la modification et validation des articles importés et des brouillons, il se peut que vous vouliez changer le nom des auteurs des articles. Par exemple, vous pourriez importer tous les articles comme articles de l’admin." ++ ++#: wp-admin/import/mt.php:157 ++msgid "Below, you can see the names of the authors of the MovableType posts in italics. For each of these names, you can either pick an author in your WordPress installation from the menu, or enter a name for the author in the textbox." ++msgstr "Ci-dessous, vous pouvez apercevoir les noms des auteurs des articles Movable Type en italique. Pour chacun de ces noms, vous pouvez soit sélectionner un auteur de votre intallation WordPress dans le menu, soit saisir un nom d’auteur dans la zone de texte." ++ ++#: wp-admin/import/mt.php:158 ++#: wp-admin/import/wordpress.php:185 ++msgid "If a new user is created by WordPress, a password will be randomly generated. Manually change the user's details if necessary." ++msgstr "Si un nouvel utilisateur est créé par WordPress, un mot de passe sera généré aléatoirement. Vous pouvez modifier manuellement les détails de l’utilisateur si besoin." ++ ++#: wp-admin/import/mt.php:169 ++msgid "Current author:" ++msgstr "Auteur actuel :" ++ ++#: wp-admin/import/mt.php:169 ++#: wp-admin/import/wordpress.php:221 ++#, php-format ++msgid "Create user %1$s or map to existing" ++msgstr "Création de l’utilisateur %1$s, ou mise en correspondance avec l’existant" ++ ++#: wp-admin/import/mt.php:174 ++#: wp-admin/import/wordpress.php:213 ++#: wp-includes/post-template.php:527 ++msgid "Submit" ++msgstr "Envoyer" ++ ++#: wp-admin/import/mt.php:184 ++msgid "mt-export.txt does not exist" ++msgstr "mt-export.txt n’existe pas" ++ ++#: wp-admin/import/mt.php:190 ++msgid "Sorry, there has been an error" ++msgstr "Désolé, il y a eu une erreur" ++ ++#: wp-admin/import/mt.php:231 ++#, php-format ++msgid "
    Adding tags %s..." ++msgstr "
    Ajout des tags %s…" ++ ++#: wp-admin/import/mt.php:267 ++#, php-format ++msgid "(%s ping)" ++msgid_plural "(%s pings)" ++msgstr[0] "(%s ping)" ++msgstr[1] "(%s pings)" ++ ++#: wp-admin/import/mt.php:468 ++msgid "Movable Type and TypePad" ++msgstr "Movable Type et TypePad" ++ ++#: wp-admin/import/mt.php:468 ++msgid "Import posts and comments from a Movable Type or Typepad blog." ++msgstr "Importation d’articles et de commentaires depuis un blog Movable Type ou TypePad." ++ ++#: wp-admin/import.php:10 ++msgid "If you have posts or comments in another system, WordPress can import those into this blog. To get started, choose a system to import from below:" ++msgstr "Si vous avez des articles ou des commentaires dans un autre systÚme de blog, WordPress peut les importer dans votre blog actuel. Pour commencer, choisissez un systÚme d’origine ci-dessous :" ++ ++#: wp-admin/import.php:32 ++msgid "No importers are available." ++msgstr "Aucun outil d’importation n’est disponible." ++ ++#: wp-admin/import/rss.php:10 ++msgid "Import RSS" ++msgstr "Importer un flux RSS" ++ ++#: wp-admin/import/rss.php:25 ++msgid "Howdy! This importer allows you to extract posts from an RSS 2.0 file into your blog. This is useful if you want to import your posts from a system that is not handled by a custom import tool. Pick an RSS file to upload and click Import." ++msgstr "Salutations ! Cet outil d’import vous permet d’extraire des articles depuis n’importe quel fichier RSS 2.0 vers votre blog. Ceci est utile si vous voulez importer vos articles depuis un systÚme pour lequel il n’existe pas d’outil d’import. Choisissez un fichier RSS à utiliser et cliquez sur Importer." ++ ++#: wp-admin/import/rss.php:105 ++msgid "Importing post..." ++msgstr "Importation de l’article en cours…" ++ ++#: wp-admin/import/rss.php:110 ++msgid "Post already imported" ++msgstr "Cet article a déjà été importé" ++ ++#: wp-admin/import/rss.php:122 ++msgid "Done !" ++msgstr "Terminé !" ++ ++#: wp-admin/import/rss.php:181 ++#: wp-admin/includes/dashboard.php:225 ++#: wp-includes/widgets.php:1304 ++msgid "RSS" ++msgstr "RSS" ++ ++#: wp-admin/import/rss.php:181 ++msgid "Import posts from an RSS feed." ++msgstr "Importation d’articles depuis un flux RSS." ++ ++#: wp-admin/import/stp.php:5 ++msgid "Import Simple Tagging" ++msgstr "Importer depuis Simple Tagging" ++ ++#: wp-admin/import/stp.php:15 ++msgid "Howdy! This imports tags from Simple Tagging 1.6.2 into WordPress tags." ++msgstr "Salutations ! Cet outil importe dans ce blog les tags en provenance d’une installation existante de Simple Tagging 1.6.2, dans les tags WordPress." ++ ++#: wp-admin/import/stp.php:16 ++msgid "This has not been tested on any other versions of Simple Tagging. Mileage may vary." ++msgstr "Ceci n’a pas été testé avec les autres versions de Simple Tagging. La peinture est encore fraîche…" ++ ++#: wp-admin/import/stp.php:17 ++msgid "To accommodate larger databases for those tag-crazy authors out there, we have made this into an easy 4-step program to help you kick that nasty Simple Tagging habit. Just keep clicking along and we will let you know when you are in the clear!" ++msgstr "Pour faciliter la prise en compte de grosses bases de données, typiques des blogueurs qui taguent à tout va, nous avons conçu cet outil sous la forme d’une suite de 5 étapes, afin de vous débarrassez de cette mauvaise habitude qu’est Simple Tagging. Vous n’avez qu’à cliquer, et nous vous ferons savoir lorsque vous serez purifié !" ++ ++#: wp-admin/import/stp.php:21 ++#: wp-admin/import/utw.php:22 ++msgid "Step 1" ++msgstr "Étape 1" ++ ++#: wp-admin/import/stp.php:58 ++msgid "Reading STP Post Tags…" ++msgstr "Lecture des tags STP d’article…" ++ ++#: wp-admin/import/stp.php:65 ++#: wp-admin/import/utw.php:124 ++msgid "No posts were found to have tags!" ++msgstr "Aucun article ne semble avoir de tag !" ++ ++#: wp-admin/import/stp.php:76 ++#: wp-admin/import/utw.php:139 ++#, php-format ++msgid "Done! %s tag to post relationships were read." ++msgid_plural "Done! %s tags to post relationships were read." ++msgstr[0] "Terminé ! %s relation tag/article a été établie." ++msgstr[1] "Terminé ! %s relations tag/article ont été établies." ++ ++#: wp-admin/import/stp.php:81 ++#: wp-admin/import/utw.php:109 ++msgid "Step 2" ++msgstr "Étape 2" ++ ++#: wp-admin/import/stp.php:89 ++#: wp-admin/import/utw.php:155 ++msgid "Adding Tags to Posts…" ++msgstr "Ajout des tags aux articles…" ++ ++#: wp-admin/import/stp.php:94 ++#, php-format ++msgid "Done! %s tag was added!" ++msgid_plural "Done! %s tags were added!" ++msgstr[0] "Terminé ! %s tag a été ajouté !" ++msgstr[1] "Terminé ! %s tags ont été ajoutés !" ++ ++#: wp-admin/import/stp.php:97 ++#: wp-admin/import/utw.php:145 ++msgid "Step 3" ++msgstr "Étape 3" ++ ++#: wp-admin/import/stp.php:140 ++msgid "OK, so we lied about this being a 4-step program! You’re done!" ++msgstr "Bon, en fait on vous a menti à propos de ces 4 étapes ! C’est terminé !" ++ ++#: wp-admin/import/stp.php:141 ++#: wp-admin/import/utw.php:254 ++msgid "Now wasn’t that easy?" ++msgstr "Voilà, c’était plutÃŽt facile, non ?" ++ ++#: wp-admin/import/stp.php:154 ++msgid "Import Simple Tagging tags into WordPress tags." ++msgstr "Importation des tags de Simple Tagging dans les tags WordPress." ++ ++#: wp-admin/import/textpattern.php:32 ++msgid "Import Textpattern" ++msgstr "Importation depuis Textpattern" ++ ++#: wp-admin/import/textpattern.php:43 ++msgid "Howdy! This imports categories, users, posts, comments, and links from any Textpattern 4.0.2+ into this blog." ++msgstr "Salutations ! Cet outil importe les catégories, utilisateurs, commentaires et liens de n’importe quel blog Textpattern 4.0.2 et plus." ++ ++#: wp-admin/import/textpattern.php:44 ++msgid "This has not been tested on previous versions of Textpattern. Mileage may vary." ++msgstr "Ceci n’a pas été testé avec les versions précédentes de Textpattern. La peinture est encore fraîche…" ++ ++#: wp-admin/import/textpattern.php:45 ++msgid "Your Textpattern Configuration settings are as follows:" ++msgstr "Vos options de configuration de Textpattern sont les suivantes :" ++ ++#: wp-admin/import/textpattern.php:465 ++#, php-format ++msgid "Done! %s link imported" ++msgid_plural "Done! %s links imported" ++msgstr[0] "Terminé ! %1$s lien a été importé." ++msgstr[1] "Terminé ! %1$s liens ont été importés." ++ ++#: wp-admin/import/textpattern.php:559 ++msgid "Welcome to WordPress. We hope (and expect!) that you will find this platform incredibly rewarding! As a new WordPress user coming from Textpattern, there are some things that we would like to point out. Hopefully, they will help your transition go as smoothly as possible." ++msgstr "Bienvenue sur WordPress. Nous espérons que vous trouverez cette plateforme incroyablement intéressante (et nous en sommes sûrs) ! En tant que nouvel utilisateur de WordPress provenant de Textpattern, il y a quelques points que nous voudrions vous préciser. Nous espérons que cela vous aidera dans votre transition." ++ ++#: wp-admin/import/textpattern.php:561 ++#, php-format ++msgid "You have already setup WordPress and have been assigned an administrative login and password. Forget it. You didn’t have that login in Textpattern, why should you have it here? Instead we have taken care to import all of your users into our system. Unfortunately there is one downside. Because both WordPress and Textpattern uses a strong encryption hash with passwords, it is impossible to decrypt it and we are forced to assign temporary passwords to all your users. Every user has the same username, but their passwords are reset to password123. So Login and change it." ++msgstr "Vous avez déjà installé WordPress et il vous a été communiqué un identifiant d’administration et un mot de passe. Oubliez-les. Vous n’aviez pas cet identifiant dans Textpattern donc pourquoi l’auriez-vous ici ? Nous avons donc pris soin d’importer tous vos utilisateurs dans votre systÚme. Hélas, il y a un point sombre. WordPress et Textpattern utilisent tous deux de fortes clefs d’encryptage sur les mots de passe et il nous est impossible de les décrypter. Nous vous avons donc attribué un mot de passe temporaire. Tous les utilisateurs ont conservé leur identifiant mais ils ont à présent un mot de passe commun qui est password123. Vous devez donc vous connecter et changer cela." ++ ++#: wp-admin/import/textpattern.php:565 ++msgid "Also, since you’re coming from Textpattern, you probably have been using Textile to format your comments and posts. If this is the case, we recommend downloading and installing Textile for WordPress. Trust me... You’ll want it." ++msgstr "Également, comme vous venez de Textpattern, vous avez probablement utilisé Textile pour formatter vos commentaires et vos articles. Si c’est le cas, nous vous recommandons de télécharger et installer Textile pour WordPress. Faites-moi confiance… Vous allez apprécier." ++ ++#: wp-admin/import/textpattern.php:573 ++#, php-format ++msgid "That’s it! What are you waiting for? Go login!" ++msgstr "Et voilà ! Qu’attendez-vous ? Allez vous identifier !" ++ ++#: wp-admin/import/textpattern.php:579 ++msgid "Textpattern Database User:" ++msgstr "Utilisateur de la base de données de Textpattern :" ++ ++#: wp-admin/import/textpattern.php:580 ++msgid "Textpattern Database Password:" ++msgstr "Mot de passe de la base de données de Textpattern :" ++ ++#: wp-admin/import/textpattern.php:581 ++msgid "Textpattern Database Name:" ++msgstr "Nom de la base de données de Textpattern :" ++ ++#: wp-admin/import/textpattern.php:582 ++msgid "Textpattern Database Host:" ++msgstr "Domaine de la base de données de Textpattern :" ++ ++#: wp-admin/import/textpattern.php:583 ++msgid "Textpattern Table prefix (if any):" ++msgstr "Préfixe (s’il y a lieu) de la base de données de Textpattern :" ++ ++#: wp-admin/import/textpattern.php:673 ++msgid "Textpattern" ++msgstr "Textpattern" ++ ++#: wp-admin/import/textpattern.php:673 ++msgid "Import categories, users, posts, comments, and links from a Textpattern blog." ++msgstr "Importation de catégories, d’utilisateurs, d’articles, de commentaires et de liens depuis un blog Textpattern." ++ ++#: wp-admin/import/utw.php:7 ++msgid "Import Ultimate Tag Warrior" ++msgstr "Importer depuis Ultimate Tag Warrior" ++ ++#: wp-admin/import/utw.php:17 ++msgid "Howdy! This imports tags from Ultimate Tag Warrior 3 into WordPress tags." ++msgstr "Salutations ! Cet outil importe dans ce blog les tags en provenance d’une installation existante d’Ultimate Tag Warrior 3, dans les tags WordPress." ++ ++#: wp-admin/import/utw.php:18 ++msgid "This has not been tested on any other versions of Ultimate Tag Warrior. Mileage may vary." ++msgstr "Ceci n’a pas été testé avec les autres versions de Ultimate Tag Warrior. La peinture est encore fraîche…" ++ ++#: wp-admin/import/utw.php:19 ++msgid "To accommodate larger databases for those tag-crazy authors out there, we have made this into an easy 5-step program to help you kick that nasty UTW habit. Just keep clicking along and we will let you know when you are in the clear!" ++msgstr "Pour faciliter la prise en compte de grosses bases de données, typiques des blogueurs qui taguent à tout va, nous avons conçu cet outil sous la forme d’une suite de 5 étapes, afin de vous débarrassez de cette mauvaise habitude qu’est UTW. Vous n’avez qu’à cliquez, et nous vous ferons savoir lorsque vous serez purifié !" ++ ++#: wp-admin/import/utw.php:66 ++msgid "Reading UTW Tags…" ++msgstr "Lecture des tags de UTW …" ++ ++#: wp-admin/import/utw.php:88 ++msgid "The following tags were found:" ++msgstr "Les tags suivants ont été trouvés :" ++ ++#: wp-admin/import/utw.php:102 ++msgid "If you don’t want to import any of these tags, you should delete them from the UTW tag management page and then re-run this import." ++msgstr "Si vous ne souhaitez importer certains de ces tags, vous devriez les effacer à partir de la page de gestion des tags de UTW, puis relancer cet importateur." ++ ++#: wp-admin/import/utw.php:117 ++msgid "Reading UTW Post Tags…" ++msgstr "Lecture des tags UTW…" ++ ++#: wp-admin/import/utw.php:160 ++#, php-format ++msgid "Done! %s tag were added!" ++msgid_plural "Done! %s tags were added!" ++msgstr[0] "Terminé ! %s tag a été ajouté !" ++msgstr[1] "Terminé ! %s tags ont été ajoutés !" ++ ++#: wp-admin/import/utw.php:164 ++msgid "Step 4" ++msgstr "Étape 4" ++ ++#: wp-admin/import/utw.php:252 ++msgid "OK, so we lied about this being a 5-step program! You’re done!" ++msgstr "Bon, en fait on vous a menti à propos de ces 5 étapes ! C’est terminé !" ++ ++#: wp-admin/import/utw.php:274 ++msgid "Import Ultimate Tag Warrior tags into WordPress tags." ++msgstr "Importation des tags d’Ultimate Tag Warrior dans les tags WordPress." ++ ++#: wp-admin/import/wordpress.php:23 ++msgid "Import WordPress" ++msgstr "Importation depuis WordPress" ++ ++#: wp-admin/import/wordpress.php:38 ++msgid "Howdy! Upload your WordPress eXtended RSS (WXR) file and we’ll import the posts, comments, custom fields, and categories into this blog." ++msgstr "Salutations ! Mettez en ligne votre fichier WordPress eXtended RSS (WXR), et nous importerons vos articles, commentaires, champs personnalisés et catégories dans ce blog." ++ ++#: wp-admin/import/wordpress.php:39 ++msgid "Choose a WordPress WXR file to upload, then click Upload file and import." ++msgstr "Choisissez un fichier WordPress WXR à utiliser, puis cliquez sur Envoyer le fichier et l’importer." ++ ++#: wp-admin/import/wordpress.php:182 ++msgid "To make it easier for you to edit and save the imported posts and drafts, you may want to change the name of the author of the posts. For example, you may want to import all the entries as admins entries." ++msgstr "De façon à vous faciliter la modification et validation des articles importés et des brouillons, il se peut que vous vouliez changer le nom des auteurs des articles. Par exemple, vous pourriez importer tous les articles comme articles de l’admin." ++ ++#: wp-admin/import/wordpress.php:196 ++msgid "Import author:" ++msgstr "Importer l’auteur :" ++ ++#: wp-admin/import/wordpress.php:204 ++msgid "Import Attachments" ++msgstr "Importer des fichiers joints" ++ ++#: wp-admin/import/wordpress.php:207 ++msgid "Download and import file attachments" ++msgstr "Télécharger et importer les fichiers joints" ++ ++#: wp-admin/import/wordpress.php:224 ++msgid "Map to existing" ++msgstr "Faire les correspondances avec l’existant" ++ ++#: wp-admin/import/wordpress.php:248 ++msgid "Invalid file" ++msgstr "Fichier invalide" ++ ++#: wp-admin/import/wordpress.php:249 ++msgid "Please upload a valid WXR (WordPress eXtended RSS) export file." ++msgstr "Veuillez envoyer un fichier d’export WXR (WordPress eXtended RSS) valide." ++ ++#: wp-admin/import/wordpress.php:333 ++msgid "All done." ++msgstr "Terminé." ++ ++#: wp-admin/import/wordpress.php:333 ++msgid "Have fun!" ++msgstr "Amusez-vous bien !" ++ ++#: wp-admin/import/wordpress.php:522 ++#, php-format ++msgid "Importing attachment %s... " ++msgstr "Importation du fichier joint %s…" ++ ++#: wp-admin/import/wordpress.php:525 ++#, php-format ++msgid "Remote file error: %s" ++msgstr "Erreur de fichier distant : %s" ++ ++#: wp-admin/import/wordpress.php:536 ++#: wp-includes/functions.php:1164 ++msgid "Invalid file type" ++msgstr "Type du fichier non valide" ++ ++#: wp-admin/import/wordpress.php:557 ++#, php-format ++msgid "Skipping attachment %s" ++msgstr "Évitement du fichier joint %s" ++ ++#: wp-admin/import/wordpress.php:580 ++#, php-format ++msgid "Remote file returned error response %d" ++msgstr "Le fichier distant à renvoyé une erreur : %d" ++ ++#: wp-admin/import/wordpress.php:584 ++msgid "Remote file is incorrect size" ++msgstr "Le fichier distant n’a pas une taille correcte" ++ ++#: wp-admin/import/wordpress.php:590 ++#, php-format ++msgid "Remote file is too large, limit is %s" ++msgstr "Le fichier distant est trop grand, la limite est de %s" ++ ++#: wp-admin/import/wordpress.php:704 ++msgid "Sorry, there has been an error." ++msgstr "Désolé, il y a eu une erreur." ++ ++#: wp-admin/import/wordpress.php:746 ++msgid "Import posts, comments, custom fields, pages, and categories from a WordPress export file." ++msgstr "Importation d’articles, commentaires, champs personnalisés, pages et catégories depuis un fichier d’export WordPress." ++ ++#: wp-admin/import/wp-cat2tag.php:9 ++msgid "Convert Categories to Tags" ++msgstr "Convertir des catégories en tags" ++ ++#: wp-admin/import/wp-cat2tag.php:32 ++msgid "Hey there. Here you can selectively converts existing categories to tags. To get started, check the categories you wish to be converted, then click the Convert button." ++msgstr "Salutations ! Ce convertisseur vous permet de sélectionner les catégories existantes à convertir en tags. Pour vous lancer, cochez les cases correspondant aux catégories que vous souhaitez convertir, puis cliquez sur le bouton Convertir les tags." ++ ++#: wp-admin/import/wp-cat2tag.php:33 ++msgid "Keep in mind that if you convert a category with child categories, the children become top-level orphans." ++msgstr "Gardez en mémoire que si vous convertissez une catégorie qui a des sous-catégories, celles-ci perdent leur catégorie parente, et se retrouvent donc à la racine des catégories." ++ ++#: wp-admin/import/wp-cat2tag.php:37 ++msgid "You have no categories to convert!" ++msgstr "Vous n’avez aucune catégorie à convertir !" ++ ++#: wp-admin/import/wp-cat2tag.php:56 ++msgid "Uncheck All" ++msgstr "Tout décocher" ++ ++# A vérifier en contexte. "Tout vérifier" ? ++#: wp-admin/import/wp-cat2tag.php:63 ++#: wp-admin/import/wp-cat2tag.php:71 ++msgid "Check All" ++msgstr "Tout cocher" ++ ++#: wp-admin/import/wp-cat2tag.php:93 ++msgid "Convert Tags" ++msgstr "Convertir les tags" ++ ++#: wp-admin/import/wp-cat2tag.php:133 ++#, php-format ++msgid "Uh, oh. Something didn’t work. Please try again." ++msgstr "Mince alors, quelque chose n’a pas marché. Veuillez recommencer." ++ ++# A vérifier en contexte ++#: wp-admin/import/wp-cat2tag.php:148 ++#, php-format ++msgid "Converting category #%s ... " ++msgstr "Conversion de la catégorie #%s…" ++ ++#: wp-admin/import/wp-cat2tag.php:151 ++msgid "Category doesn't exist!" ++msgstr "La catégorie n’existe pas !" ++ ++#: wp-admin/import/wp-cat2tag.php:156 ++msgid "Category is already a tag." ++msgstr "Cette catégorie est déjà un tag." ++ ++#: wp-admin/import/wp-cat2tag.php:192 ++msgid "Converted successfully." ++msgstr "Convertie avec succÚs." ++ ++#: wp-admin/import/wp-cat2tag.php:199 ++#, php-format ++msgid "We’re all done here, but you can always convert more." ++msgstr "C’est tout pour le moment, mais vous pouvez toujours en convert plus." ++ ++#: wp-admin/import/wp-cat2tag.php:237 ++msgid "Categories to Tags Converter" ++msgstr "Convertisseur de catégories à tags" ++ ++#: wp-admin/import/wp-cat2tag.php:237 ++msgid "Convert existing categories to tags, selectively." ++msgstr "Convertit les catégories existantes en tags, de maniÚre sélective." ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:31 ++msgid "The ftp PHP extension is not available" ++msgstr "L’extension ftp de PHP n’est pas disponible" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:42 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:41 ++msgid "FTP hostname is required" ++msgstr "L’hÃŽte du FTP est obligatoire" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:51 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:50 ++msgid "FTP username is required" ++msgstr "L’identifiant FTP est obligatoire" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:56 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:55 ++msgid "FTP password is required" ++msgstr "Le mot de passe FTP est obligatoire" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:71 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:67 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:71 ++#, php-format ++msgid "Failed to connect to FTP Server %1$s:%2$s" ++msgstr "Impossible de me connecter au serveur FTP %1$s : %2$s" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:76 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:76 ++#, php-format ++msgid "Username/Password incorrect for %s" ++msgstr "Le couple identifiant / mot de passe est incorrect pour %s" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:105 ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:128 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:107 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:130 ++#, php-format ++msgid "Changing to %s" ++msgstr "Modifier à %s" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:108 ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:136 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:110 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:138 ++#, php-format ++msgid "Found %s" ++msgstr "Trouvé %s" ++ ++#: wp-admin/includes/comment.php:15 ++msgid "You are not allowed to edit comments on this post, so you cannot edit this comment." ++msgstr "Vous n’avez pas l’autorisation de modifier les commentaires de cet article, donc vous ne pouvez pas modifier ce commentaire." ++ ++#: wp-admin/includes/dashboard.php:26 ++#, php-format ++msgid "%d comment awaiting moderation" ++msgid_plural "%d comments awaiting moderation" ++msgstr[0] "%d commentaire est en attente de modération" ++msgstr[1] "%d commentaires sont en attente de modération" ++ ++#: wp-admin/includes/dashboard.php:31 ++#: wp-includes/widgets.php:930 ++#: wp-includes/widgets.php:993 ++#: wp-includes/widgets.php:994 ++msgid "Recent Comments" ++msgstr "Commentaires récents" ++ ++#: wp-admin/includes/dashboard.php:45 ++#: wp-admin/includes/dashboard.php:49 ++msgid "Incoming Links" ++msgstr "Liens entrants" ++ ++#: wp-admin/includes/dashboard.php:55 ++#: wp-admin/menu.php:27 ++#: wp-admin/menu.php:66 ++#: wp-admin/plugin-editor.php:119 ++#: wp-includes/js/tinymce/langs/wp-langs.php:241 ++msgid "Plugins" ++msgstr "Extensions" ++ ++#: wp-admin/includes/dashboard.php:65 ++msgid "http://wordpress.org/development/" ++msgstr "http://wordpress.org/development/" ++ ++#: wp-admin/includes/dashboard.php:66 ++msgid "http://wordpress.org/development/feed/" ++msgstr "http://wordpress.org/development/feed/" ++ ++#: wp-admin/includes/dashboard.php:67 ++msgid "WordPress Development Blog" ++msgstr "Blog développement de WordPress" ++ ++#: wp-admin/includes/dashboard.php:78 ++msgid "Primary Feed" ++msgstr "Flux principal" ++ ++#: wp-admin/includes/dashboard.php:87 ++msgid "http://planet.wordpress.org/" ++msgstr "http://planet.wordpress.org/" ++ ++#: wp-admin/includes/dashboard.php:88 ++msgid "http://planet.wordpress.org/feed/" ++msgstr "http://planet.wordpress.org/feed/" ++ ++#: wp-admin/includes/dashboard.php:89 ++msgid "Other WordPress News" ++msgstr "Autres actualités de WordPress" ++ ++#: wp-admin/includes/dashboard.php:97 ++msgid "Secondary Feed" ++msgstr "Flux secondaire" ++ ++#: wp-admin/includes/dashboard.php:206 ++msgid "See All" ++msgstr "Tout voir" ++ ++#: wp-admin/includes/dashboard.php:218 ++#: wp-admin/includes/media.php:834 ++#: wp-admin/includes/widgets.php:227 ++#: wp-includes/js/tinymce/langs/wp-langs.php:17 ++#: wp-includes/script-loader.php:145 ++#: wp-includes/script-loader.php:153 ++#: wp-includes/script-loader.php:158 ++#: wp-includes/script-loader.php:164 ++#: wp-includes/script-loader.php:194 ++msgid "Cancel" ++msgstr "Annuler" ++ ++#: wp-admin/includes/dashboard.php:225 ++msgid "rss icon" ++msgstr "IcÃŽne RSS" ++ ++#: wp-admin/includes/dashboard.php:281 ++#, php-format ++msgid "From %1$s on %2$s %3$s" ++msgstr "Par %1$s sur %2$s %3$s" ++ ++#: wp-admin/includes/dashboard.php:332 ++#: wp-admin/page.php:85 ++#: wp-admin/post.php:92 ++msgid "Somebody" ++msgstr "Quelqu’un" ++ ++#: wp-admin/includes/dashboard.php:345 ++msgid "something" ++msgstr "quelque chose" ++ ++#: wp-admin/includes/dashboard.php:348 ++#, php-format ++msgid "%1$s linked here saying, \"%3$s\"|feed_display" ++msgstr "%1$s a fait un lien vers ici où l’on peut lire \"%3$s\"" ++ ++#: wp-admin/includes/dashboard.php:350 ++#, php-format ++msgid "%1$s linked here saying, \"%3$s\"|feed_display" ++msgstr "%1$s a fait un lien où l’on peut lire \"%3$s\"" ++ ++#: wp-admin/includes/dashboard.php:354 ++#, php-format ++msgid " on %4$s|feed_display" ++msgstr "sur %4$s" ++ ++#: wp-admin/includes/dashboard.php:366 ++msgid "This dashboard widget queries Google Blog Search so that when another blog links to your site it will show up here. It has found no incoming links… yet. It’s okay — there is no rush." ++msgstr "Ce widget envoie une requête vers le moteur de recherche des blogs de Google, de sorte que quand un autre blog fera un lien vers le vÃŽtre, son nom s’affichera ici. Ce moteur n’a pas encore trouvé de lien entrant… Ce n’est pas grave, on n’est pas pressés." ++ ++#: wp-admin/includes/dashboard.php:405 ++msgid "Most Popular" ++msgstr "Plus populaire" ++ ++#: wp-admin/includes/dashboard.php:405 ++msgid "Newest Plugins" ++msgstr "Nouvelles extensions" ++ ++#: wp-admin/includes/dashboard.php:405 ++msgid "Recently Updated" ++msgstr "Mis à jour récemment" ++ ++#: wp-admin/includes/dashboard.php:436 ++msgid "Download" ++msgstr "Téléchargement" ++ ++#: wp-admin/includes/dashboard.php:446 ++msgid "Loading…" ++msgstr "Chargement…" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Main Index Template" ++msgstr "Page d’accueil" ++ ++#: wp-admin/includes/file.php:3 ++#: wp-admin/includes/file.php:5 ++msgid "Stylesheet" ++msgstr "Feuille de style" ++ ++#: wp-admin/includes/file.php:3 ++msgid "RTL Stylesheet" ++msgstr "Feuille de style RTL" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Popup Comments" ++msgstr "Commentaires en popup" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Footer" ++msgstr "Pied de page" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Header" ++msgstr "En-tête" ++ ++#: wp-admin/includes/file.php:3 ++#: wp-includes/widgets.php:26 ++msgid "Sidebar" ++msgstr "Colonne latérale" ++ ++#: wp-admin/includes/file.php:3 ++#: wp-includes/widgets.php:457 ++#: wp-includes/widgets.php:1368 ++#: wp-includes/widgets.php:1369 ++msgid "Archives" ++msgstr "Archives" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Category Template" ++msgstr "ModÚle de catégorie" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Search Results" ++msgstr "Résultats de recherche" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Search Form" ++msgstr "Formulaire de recherche" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Single Post" ++msgstr "Article seul" ++ ++#: wp-admin/includes/file.php:3 ++msgid "404 Template" ++msgstr "ModÚle d’erreur 404" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Links Template" ++msgstr "ModÚle pour les liens" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Theme Functions" ++msgstr "Fonctions du thÚme" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Attachment Template" ++msgstr "ModÚle pour les fichiers joints" ++ ++#: wp-admin/includes/file.php:3 ++msgid "my-hacks.php (legacy hacks support)" ++msgstr "my-hacks.php (reconnaissance des hacks existants)" ++ ++#: wp-admin/includes/file.php:3 ++msgid ".htaccess (for rewrite rules )" ++msgstr ".htaccess (pour les rÚgles de réécriture)" ++ ++#: wp-admin/includes/file.php:5 ++msgid "Comments Template" ++msgstr "ModÚle de commentaires" ++ ++#: wp-admin/includes/file.php:5 ++msgid "Popup Comments Template" ++msgstr "ModÚle de popup de commentaires" ++ ++#: wp-admin/includes/file.php:85 ++msgid "Sorry, can’t edit files with \"..\" in the name. If you are trying to edit a file in your WordPress home directory, you can just type the name of the file in." ++msgstr "Désolé, on ne peut pas modifier les fichiers avec \"..\" dans le nom. Si vous tentez de modifier un fichier dans votre répertoire WordPress, vous pouvez simplement saisir le nom du fichier." ++ ++#: wp-admin/includes/file.php:88 ++msgid "Sorry, can’t call files with their real path." ++msgstr "Désolé, vous ne pouvez pas accéder à un fichier avec son chemin complet." ++ ++#: wp-admin/includes/file.php:91 ++msgid "Sorry, that file cannot be edited." ++msgstr "Désolé, ce fichier ne peut être modifié." ++ ++#: wp-admin/includes/file.php:116 ++msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." ++msgstr "La taille du fichier envoyé excÚde celle indiquée dans la directive de taille maximale autorisée,upload_max_filesize, dans php.ini." ++ ++#: wp-admin/includes/file.php:117 ++msgid "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form." ++msgstr "La taille du fichier envoyé excÚde celle indiquée dans la directive MAX_FILE_SIZE du formulaire HTML." ++ ++#: wp-admin/includes/file.php:118 ++msgid "The uploaded file was only partially uploaded." ++msgstr "Le fichier n’a été que partiellement envoyé." ++ ++#: wp-admin/includes/file.php:119 ++msgid "No file was uploaded." ++msgstr "Aucun fichier n’a été envoyé." ++ ++#: wp-admin/includes/file.php:120 ++msgid "Missing a temporary folder." ++msgstr "Il manque un dossier temporaire." ++ ++#: wp-admin/includes/file.php:121 ++msgid "Failed to write file to disk." ++msgstr "Échec de l’écriture du fichier sur le disque." ++ ++#: wp-admin/includes/file.php:137 ++msgid "Invalid form submission." ++msgstr "Envoi non valide du formulaire." ++ ++#: wp-admin/includes/file.php:145 ++msgid "File is empty. Please upload something more substantial. This error could also be caused by uploads being disabled in your php.ini." ++msgstr "Ce fichier est vide. Veuillez envoyer quelque chose de plus substantiel. Cette erreur peut également être due à la désactivation de l’envoi de fichier dans le fichier php.ini de votre serveur." ++ ++#: wp-admin/includes/file.php:149 ++msgid "Specified file failed upload test." ++msgstr "Le test d’envoi du fichier spécifié a échoué." ++ ++#: wp-admin/includes/file.php:158 ++msgid "File type does not meet security guidelines. Try another." ++msgstr "Le type du fichier ne respecte pas les normes de sécurité. Essayez un autre fichier." ++ ++#: wp-admin/includes/file.php:176 ++#, php-format ++msgid "The uploaded file could not be moved to %s." ++msgstr "Le fichier n’ a pas pu être déplacé vers %s." ++ ++#: wp-admin/includes/file.php:200 ++msgid "Invalid URL Provided" ++msgstr "L'URL fournie est invalide" ++ ++#: wp-admin/includes/file.php:204 ++#: wp-admin/includes/file.php:208 ++msgid "Could not create Temporary file" ++msgstr "Impossible de créer le fichier temporaire" ++ ++#: wp-admin/includes/file.php:229 ++#: wp-admin/includes/update.php:157 ++msgid "Could not access filesystem." ++msgstr "Impossible d’accéder au systÚme de fichier." ++ ++#: wp-admin/includes/file.php:239 ++msgid "Incompatible archive" ++msgstr "Archive incompatible" ++ ++#: wp-admin/includes/file.php:242 ++msgid "Empty archive" ++msgstr "Archive vide" ++ ++#: wp-admin/includes/file.php:262 ++msgid "Could not create directory" ++msgstr "Impossible de créer le dossier" ++ ++#: wp-admin/includes/file.php:268 ++msgid "Could not copy file" ++msgstr "Impossible de copier le fichier" ++ ++#: wp-admin/includes/image.php:131 ++#, php-format ++msgid "File '%s' doesn't exist?" ++msgstr "Le fichier “ %s ” n’existe pas ?" ++ ++#: wp-admin/includes/image.php:134 ++msgid "The GD image library is not installed." ++msgstr "La bibliothÚque d’imagerie GD n’est pas installée." ++ ++#: wp-admin/includes/image.php:141 ++#, php-format ++msgid "File '%s' is not an image." ++msgstr "Le fichier “ %s ” n’est pas une image." ++ ++#: wp-admin/includes/media.php:5 ++msgid "Choose File" ++msgstr "Choisir le fichier" ++ ++#: wp-admin/includes/media.php:6 ++msgid "Gallery" ++msgstr "Galerie" ++ ++#: wp-admin/includes/media.php:7 ++#: wp-admin/menu.php:46 ++#: wp-admin/upload.php:36 ++msgid "Media Library" ++msgstr "BibliothÚque de médias" ++ ++#: wp-admin/includes/media.php:22 ++#, php-format ++msgid "Gallery (%s)" ++msgstr "Galerie (%s)" ++ ++#: wp-admin/includes/media.php:127 ++msgid "Uploads" ++msgstr "Fichiers envoyés" ++ ++#: wp-admin/includes/media.php:127 ++#: wp-admin/update.php:152 ++msgid "WordPress" ++msgstr "WordPress" ++ ++#: wp-admin/includes/media.php:159 ++#, php-format ++msgid "Add media: %s" ++msgstr "Ajouter un média : %s" ++ ++#: wp-admin/includes/media.php:161 ++msgid "Add Media" ++msgstr "Ajouter un média" ++ ++#: wp-admin/includes/media.php:163 ++msgid "Add an Image" ++msgstr "Ajouter une image" ++ ++#: wp-admin/includes/media.php:165 ++msgid "Add Video" ++msgstr "Ajouter une vidéo" ++ ++#: wp-admin/includes/media.php:167 ++msgid "Add Audio" ++msgstr "Ajouter un son" ++ ++#: wp-admin/includes/media.php:296 ++#: wp-admin/includes/media.php:334 ++#: wp-admin/includes/media.php:372 ++#: wp-admin/includes/media.php:410 ++msgid "Saved." ++msgstr "Enregistré." ++ ++#: wp-admin/includes/media.php:444 ++#: wp-admin/includes/media.php:540 ++msgid "Caption" ++msgstr "Légende" ++ ++#: wp-admin/includes/media.php:445 ++#: wp-admin/includes/media.php:1094 ++msgid "Alternate text, e.g. \"The Mona Lisa\"" ++msgstr "Texte alternatif, exemple : “ La Joconde ”" ++ ++#: wp-admin/includes/media.php:452 ++#: wp-admin/includes/media.php:1096 ++#: wp-includes/js/tinymce/langs/wp-langs.php:29 ++#: wp-includes/js/tinymce/langs/wp-langs.php:268 ++msgid "Alignment" ++msgstr "Alignement" ++ ++#: wp-admin/includes/media.php:458 ++#: wp-admin/includes/media.php:1101 ++#: wp-includes/js/tinymce/langs/wp-langs.php:30 ++#: wp-includes/js/tinymce/langs/wp-langs.php:275 ++#: wp-includes/js/tinymce/langs/wp-langs.php:372 ++msgid "Left" ++msgstr "Gauche" ++ ++#: wp-admin/includes/media.php:460 ++#: wp-admin/includes/media.php:1103 ++#: wp-includes/js/tinymce/langs/wp-langs.php:31 ++#: wp-includes/js/tinymce/langs/wp-langs.php:352 ++#: wp-includes/js/tinymce/langs/wp-langs.php:373 ++msgid "Center" ++msgstr "Centre" ++ ++#: wp-admin/includes/media.php:462 ++#: wp-admin/includes/media.php:1105 ++#: wp-includes/js/tinymce/langs/wp-langs.php:32 ++#: wp-includes/js/tinymce/langs/wp-langs.php:276 ++#: wp-includes/js/tinymce/langs/wp-langs.php:370 ++msgid "Right" ++msgstr "Droite" ++ ++#: wp-admin/includes/media.php:465 ++msgid "Size" ++msgstr "Taille" ++ ++#: wp-admin/includes/media.php:469 ++#: wp-includes/script-loader.php:173 ++msgid "Thumbnail" ++msgstr "Miniature" ++ ++#: wp-admin/includes/media.php:471 ++msgid "Medium" ++msgstr "Moyenne" ++ ++#: wp-admin/includes/media.php:473 ++#: wp-includes/script-loader.php:174 ++msgid "Full size" ++msgstr "Taille originale" ++ ++# mmmph ++#: wp-admin/includes/media.php:490 ++msgid "Empty Title filled from filename." ++msgstr "Titre absent, il sera rempli à partir du nom du fichier." ++ ++#: wp-admin/includes/media.php:549 ++#: wp-includes/js/tinymce/langs/wp-langs.php:278 ++msgid "Link URL" ++msgstr "URL du lien" ++ ++#: wp-admin/includes/media.php:554 ++msgid "File URL" ++msgstr "URL du fichier" ++ ++#: wp-admin/includes/media.php:555 ++msgid "Post URL" ++msgstr "URL de l’article" ++ ++#: wp-admin/includes/media.php:559 ++msgid "Enter a link URL or click above for presets." ++msgstr "Saisissez une adresse URL ou cliquez sur l’un des préréglages ci-dessus" ++ ++#: wp-admin/includes/media.php:629 ++#: wp-admin/widgets.php:248 ++#: wp-admin/widgets.php:265 ++msgid "Show" ++msgstr "Afficher" ++ ++#: wp-admin/includes/media.php:630 ++msgid "Hide" ++msgstr "Cacher" ++ ++#: wp-admin/includes/media.php:688 ++#: wp-admin/includes/media.php:1111 ++#: wp-admin/includes/media.php:1139 ++#: wp-admin/includes/media.php:1167 ++#: wp-admin/includes/media.php:1195 ++msgid "Insert into Post" ++msgstr "Insérer dans l’article" ++ ++#: wp-admin/includes/media.php:826 ++msgid "Choose files to upload" ++msgstr "Choisissez les fichiers à envoyer" ++ ++#: wp-admin/includes/media.php:827 ++msgid "After a file has been uploaded, you can add titles and descriptions." ++msgstr "Une fois que le fichier est envoyé, vous pouvez lui ajouter un titre et une description." ++ ++#: wp-admin/includes/media.php:839 ++msgid "If you want to use all capabilities of the uploader, like uploading multiple files at once, please upgrade to lighttpd 1.5." ++msgstr "Si vous souhaitez utiliser les fonctionnalités de mise en ligne, comme d’envoyer plusieurs fichiers en une seule fois, veuillez passer votre serveur à lighttpd 1.5." ++ ++#: wp-admin/includes/media.php:858 ++msgid "From Computer" ++msgstr "Depuis votre ordinateur" ++ ++#: wp-admin/includes/media.php:876 ++#: wp-admin/includes/media.php:890 ++#: wp-admin/includes/media.php:923 ++#: wp-admin/includes/media.php:1071 ++msgid "Save all changes" ++msgstr "Enregistrer toutes les modificiations" ++ ++#: wp-admin/includes/media.php:881 ++msgid "— OR —" ++msgstr "— OU —" ++ ++#: wp-admin/includes/media.php:882 ++msgid "From URL" ++msgstr "Depuis une URL" ++ ++#: wp-admin/includes/media.php:924 ++msgid "Insert gallery into post" ++msgstr "Insérer une galerie dans l’article" ++ ++#: wp-admin/includes/media.php:961 ++#: wp-admin/upload.php:129 ++msgid "Search Media" ++msgstr "Chercher dans les médias" ++ ++#: wp-admin/includes/media.php:980 ++#: wp-admin/upload.php:94 ++msgid "All Types" ++msgstr "Tous les types" ++ ++# ou "filtre" ? ++#: wp-admin/includes/media.php:1043 ++msgid "Filter »" ++msgstr "Filtrer »" ++ ++#: wp-admin/includes/media.php:1082 ++#: wp-includes/js/tinymce/langs/wp-langs.php:261 ++msgid "Image URL" ++msgstr "URL de l’image" ++ ++#: wp-admin/includes/media.php:1123 ++msgid "Audio File URL" ++msgstr "URL du fichier audio" ++ ++#: wp-admin/includes/media.php:1135 ++msgid "Link text, e.g. \"Still Alive by Jonathan Coulton\"" ++msgstr "Texte du lien, par exemple “ L’Autre bout du Monde par Emily Loizeau ”" ++ ++#: wp-admin/includes/media.php:1151 ++msgid "Video URL" ++msgstr "URL de la vidéo" ++ ++#: wp-admin/includes/media.php:1163 ++msgid "Link text, e.g. \"Lucy on YouTube\"" ++msgstr "Texte du lien, par exemple “ Mozinor sur DailyMotion ”" ++ ++#: wp-admin/includes/media.php:1191 ++msgid "Link text, e.g. \"Ransom Demands (PDF)\"" ++msgstr "Texte du lien, par exemple “ Théorie sur le chaos (PDF) ”" ++ ++#: wp-admin/includes/plugin.php:22 ++msgid "Visit plugin homepage" ++msgstr "Aller sur le site de l’extension" ++ ++#: wp-admin/includes/plugin.php:28 ++#: wp-includes/theme.php:113 ++msgid "Visit author homepage" ++msgstr "Aller sur la page de l’auteur" ++ ++#: wp-admin/includes/plugin.php:164 ++msgid "One of the plugins is invalid." ++msgstr "L’une des extensions n’est pas valide." ++ ++#: wp-admin/includes/plugin.php:195 ++msgid "Invalid plugin." ++msgstr "Extension non valide" ++ ++#: wp-admin/includes/plugin.php:197 ++msgid "Plugin file does not exist." ++msgstr "Le fichier de l’extension n’existe pas." ++ ++#: wp-admin/includes/post.php:45 ++msgid "You are not allowed to edit pages as this user." ++msgstr "Vous n’avez pas l’autorisation de modifier des pages sous cet identifiant." ++ ++#: wp-admin/includes/post.php:48 ++msgid "You are not allowed to edit posts as this user." ++msgstr "Vous n’avez pas l’autorisation de modifier des articles sous cet identifiant." ++ ++#: wp-admin/includes/post.php:214 ++msgid "You are not allowed to create pages on this blog." ++msgstr "Vous n’avez pas l’autorisation de créer des pages sur ce blog." ++ ++#: wp-admin/includes/post.php:217 ++msgid "You are not allowed to create posts or drafts on this blog." ++msgstr "Vous n’avez pas l’autorisation de créer des articles ou des brouillons sur ce blog." ++ ++#: wp-admin/includes/post.php:259 ++msgid "You are not allowed to create pages as this user." ++msgstr "Vous n’avez pas l’autorisation de créer des pages sous cet identifiant." ++ ++#: wp-admin/includes/post.php:262 ++msgid "You are not allowed to post as this user." ++msgstr "Vous n’avez pas l’autorisation de publier sous cet identifiant." ++ ++#: wp-admin/includes/post.php:522 ++msgid "Published posts" ++msgstr "Articles publiés" ++ ++#: wp-admin/includes/post.php:523 ++msgid "Scheduled posts" ++msgstr "Articles programmés" ++ ++#: wp-admin/includes/post.php:524 ++msgid "Pending posts" ++msgstr "Articles en attente" ++ ++#: wp-admin/includes/post.php:526 ++msgid "Private posts" ++msgstr "Articles privés" ++ ++#: wp-admin/includes/post.php:572 ++msgid "Images" ++msgstr "Images" ++ ++#: wp-admin/includes/post.php:572 ++msgid "Manage Images" ++msgstr "Gérer les images" ++ ++#: wp-admin/includes/post.php:572 ++#, php-format ++msgid "Image (%s)" ++msgid_plural "Images (%s)" ++msgstr[0] "Image (%s)" ++msgstr[1] "Images (%s)" ++ ++#: wp-admin/includes/post.php:573 ++msgid "Audio" ++msgstr "Son" ++ ++#: wp-admin/includes/post.php:573 ++msgid "Manage Audio" ++msgstr "Gérer les sons" ++ ++#: wp-admin/includes/post.php:573 ++#, php-format ++msgid "Audio (%s)" ++msgid_plural "Audio (%s)" ++msgstr[0] "Son (%s)" ++msgstr[1] "Sons (%s)" ++ ++#: wp-admin/includes/post.php:574 ++msgid "Video" ++msgstr "Vidéo" ++ ++#: wp-admin/includes/post.php:574 ++msgid "Manage Video" ++msgstr "Gérer les vidéos" ++ ++#: wp-admin/includes/post.php:574 ++#, php-format ++msgid "Video (%s)" ++msgid_plural "Video (%s)" ++msgstr[0] "Vidéo (%s)" ++msgstr[1] "Vidéos (%s)" ++ ++#: wp-admin/includes/post.php:649 ++msgid "Click to edit this part of the permalink" ++msgstr "Cliquez pour modifier cette section du permalien" ++ ++#: wp-admin/includes/post.php:657 ++msgid "Permalink:" ++msgstr "Permalien :" ++ ++#: wp-admin/includes/schema.php:160 ++msgid "My Blog" ++msgstr "Mon Blog" ++ ++#: wp-admin/includes/schema.php:161 ++msgid "Just another WordPress weblog" ++msgstr "Un blog utilisant WordPress" ++ ++#: wp-admin/includes/schema.php:183 ++msgid "F j, Y" ++msgstr "j F Y" ++ ++#: wp-admin/includes/schema.php:184 ++msgid "g:i a" ++msgstr "G:i" ++ ++#: wp-admin/includes/schema.php:185 ++msgid "F j, Y g:i a" ++msgstr "j F Y, G:i" ++ ++#: wp-admin/includes/schema.php:277 ++msgid "Administrator|User role" ++msgstr "Administrateur" ++ ++#: wp-admin/includes/schema.php:278 ++msgid "Editor|User role" ++msgstr "Éditeur" ++ ++#: wp-admin/includes/schema.php:279 ++msgid "Author|User role" ++msgstr "Auteur" ++ ++#: wp-admin/includes/schema.php:280 ++msgid "Contributor|User role" ++msgstr "Contributeur" ++ ++#: wp-admin/includes/schema.php:281 ++msgid "Subscriber|User role" ++msgstr "Abonné" ++ ++#: wp-admin/includes/template.php:288 ++#: wp-admin/includes/template.php:325 ++msgid "Modified" ++msgstr "Modifié" ++ ++#: wp-admin/includes/template.php:290 ++#: wp-admin/includes/template.php:327 ++msgid "Submitted" ++msgstr "Envoyé" ++ ++#: wp-admin/includes/template.php:299 ++#: wp-admin/includes/template.php:334 ++#: wp-admin/plugins.php:109 ++msgid "Status" ++msgstr "État" ++ ++#: wp-admin/includes/template.php:310 ++msgid "Media|media column header" ++msgstr "Média" ++ ++#: wp-admin/includes/template.php:311 ++msgid "Description|media column header" ++msgstr "Description" ++ ++#: wp-admin/includes/template.php:312 ++msgid "Date Added|media column header" ++msgstr "Date d’ajout" ++ ++#: wp-admin/includes/template.php:313 ++msgid "Appears with|media column header" ++msgstr "Apparaît avec" ++ ++#: wp-admin/includes/template.php:315 ++msgid "Location|media column header" ++msgstr "Emplacement" ++ ++#: wp-admin/includes/template.php:561 ++#, php-format ++msgid "e-mail: %s" ++msgstr "e-mail : %s" ++ ++#: wp-admin/includes/template.php:565 ++msgid "View posts by this author" ++msgstr "Afficher les articles de cet auteur" ++ ++#: wp-admin/includes/template.php:624 ++#: wp-includes/link-template.php:516 ++msgid "Edit comment" ++msgstr "Modifier le commentaire" ++ ++#: wp-admin/includes/template.php:642 ++msgid "Y/m/d \\a\\t g:i A" ++msgstr "Y/m/d \\à G:i" ++ ++#: wp-admin/includes/template.php:667 ++#, php-format ++msgid "From %1$s, %2$s" ++msgstr "En commentaire à %1$s, %2$s" ++ ++#: wp-admin/includes/template.php:675 ++#: wp-admin/includes/template.php:680 ++msgid "Approve this comment" ++msgstr "Approuver ce commentaire" ++ ++#: wp-admin/includes/template.php:676 ++#: wp-admin/includes/template.php:683 ++msgid "Unapprove this comment" ++msgstr "Désapprouver ce commentaire" ++ ++#: wp-admin/includes/template.php:688 ++msgid "Mark this comment as spam" ++msgstr "Marquer ce commentaire comme indésirable" ++ ++#: wp-admin/includes/template.php:730 ++#: wp-admin/includes/template.php:800 ++msgid "Key" ++msgstr "Clef" ++ ++#: wp-admin/includes/template.php:731 ++#: wp-admin/includes/template.php:801 ++msgid "Value" ++msgstr "Valeur" ++ ++#: wp-admin/includes/template.php:732 ++#: wp-admin/plugins.php:110 ++#: wp-includes/js/tinymce/wp-mce-help.php:194 ++#: wp-includes/js/tinymce/wp-mce-help.php:210 ++msgid "Action" ++msgstr "Action" ++ ++#: wp-admin/includes/template.php:776 ++#: wp-includes/js/tinymce/langs/wp-langs.php:16 ++msgid "Update" ++msgstr "Mettre à jour" ++ ++#: wp-admin/includes/template.php:797 ++msgid "Add a new custom field:" ++msgstr "Ajouter un nouveau champ personnalisé :" ++ ++#: wp-admin/includes/template.php:815 ++msgid "or" ++msgstr "ou" ++ ++#: wp-admin/includes/template.php:823 ++msgid "Add Custom Field" ++msgstr "Ajouter un champ personnalisé" ++ ++#: wp-admin/includes/template.php:864 ++#, php-format ++msgid "%1$s%2$s, %3$s
    @ %4$s : %5$s|1: month input, 2: day input, 3: year input, 4: hour input, 5: minute input" ++msgstr "%2$s%1$s%3$s
    %4$s : %5$s" ++ ++#: wp-admin/includes/template.php:913 ++msgid "WordPress recommends a better browser" ++msgstr "WordPress recommande un meilleur navigateur" ++ ++#: wp-admin/includes/template.php:943 ++msgid "Thumbnail linked to file" ++msgstr "Miniature liée au fichier" ++ ++#: wp-admin/includes/template.php:943 ++msgid "Image linked to file" ++msgstr "Image liée au fichier" ++ ++#: wp-admin/includes/template.php:947 ++msgid "Thumbnail linked to page" ++msgstr "Miniature liée à la page" ++ ++#: wp-admin/includes/template.php:947 ++msgid "Image linked to page" ++msgstr "Image liée à la page" ++ ++#: wp-admin/includes/template.php:952 ++msgid "Link to file" ++msgstr "Lier au fichier" ++ ++#: wp-admin/includes/template.php:956 ++msgid "Link to page" ++msgstr "Lier à la page" ++ ++#: wp-admin/includes/template.php:1012 ++msgid "Choose a file from your computer:" ++msgstr "Choisissez un fichier sur votre ordinateur :" ++ ++#: wp-admin/includes/template.php:1012 ++#, php-format ++msgid "Maximum size: %s" ++msgstr "Taille maximale : %s" ++ ++#: wp-admin/includes/template.php:1018 ++msgid "Upload file and import" ++msgstr "Envoyer le fichier et l’importer" ++ ++#: wp-admin/includes/update.php:7 ++#: wp-admin/includes/update.php:24 ++#, php-format ++msgid "Version %s" ++msgstr "Version %s" ++ ++#: wp-admin/includes/update.php:13 ++#, php-format ++msgid "You are using a development version (%s). Cool! Please stay updated." ++msgstr "Vous utilisez une version de développement (%s). C’est cool ! Veillez à rester à jour." ++ ++#: wp-admin/includes/update.php:18 ++#, php-format ++msgid "Get Version %3$s" ++msgstr "Téléchargez la version %3$s" ++ ++#: wp-admin/includes/update.php:37 ++#, php-format ++msgid "WordPress %2$s is available! Please update now." ++msgstr "WordPress %2$s est disponible ! Pensez à faire une mise à jour." ++ ++#: wp-admin/includes/update.php:39 ++#, php-format ++msgid "WordPress %2$s is available! Please notify the site administrator." ++msgstr "WordPress %2$s est disponible ! Merci de notifier l’administrateur du site." ++ ++#: wp-admin/includes/update.php:49 ++#, php-format ++msgid "This is WordPress version %s." ++msgstr "Vous utilisez la version %s de WordPress." ++ ++#: wp-admin/includes/update.php:51 ++#, php-format ++msgid "Update to %s" ++msgstr "Mettre à jour vers la version %s" ++ ++#: wp-admin/includes/update.php:51 ++msgid "Latest" ++msgstr "DerniÚre version" ++ ++#: wp-admin/includes/update.php:131 ++#, php-format ++msgid "There is a new version of %1$s available. Download version %3$s here." ++msgstr "Une nouvelle version de %1$s est disponible. Téléchargez la version %3$s ici." ++ ++#: wp-admin/includes/update.php:133 ++#, php-format ++msgid "There is a new version of %1$s available. Download version %3$s here automatic upgrade unavailable for this plugin." ++msgstr "Une nouvelle version de %1$s est disponible. Téléchargez la version %3$s ici pas de possibilité de mise à jour automatique pour cette extension." ++ ++#: wp-admin/includes/update.php:135 ++#, php-format ++msgid "There is a new version of %1$s available. Download version %3$s here or upgrade automatically." ++msgstr "Une nouvelle version de %1$s est disponible. Téléchargez la version %3$s ici ou mettez à jour automatiquement." ++ ++#: wp-admin/includes/update.php:150 ++msgid "The plugin is at the latest version." ++msgstr "Vous avez la derniÚre version de cette extension." ++ ++#: wp-admin/includes/update.php:160 ++msgid "Filesystem error" ++msgstr "Erreur du systÚme de fichier" ++ ++#: wp-admin/includes/update.php:166 ++msgid "Unable to locate WordPress directory." ++msgstr "Impossible de localiser le dossier d’installation de WordPress." ++ ++#: wp-admin/includes/update.php:172 ++msgid "Upgrade package not available." ++msgstr "Pas de paquetage de mise à jour disponible." ++ ++#: wp-admin/includes/update.php:176 ++#, php-format ++msgid "Downloading update from %s" ++msgstr "Téléchargement de la mise à jour depuis %s" ++ ++#: wp-admin/includes/update.php:180 ++msgid "Download failed." ++msgstr "Le téléchargement a échoué." ++ ++#: wp-admin/includes/update.php:188 ++msgid "Unpacking the update" ++msgstr "Décompression de la mise à jour" ++ ++#: wp-admin/includes/update.php:202 ++msgid "Deactivating the plugin" ++msgstr "Extension en cours de désactivation" ++ ++#: wp-admin/includes/update.php:207 ++msgid "Removing the old version of the plugin" ++msgstr "Retrait de l’ancienne version de l’extension" ++ ++#: wp-admin/includes/update.php:219 ++msgid "Could not remove the old plugin" ++msgstr "Impossible de supprimer l’anciennne extension" ++ ++#: wp-admin/includes/update.php:222 ++msgid "Installing the latest version" ++msgstr "Installation de la derniÚre version" ++ ++#: wp-admin/includes/update.php:226 ++msgid "Installation failed" ++msgstr "Échec de l’installation" ++ ++#: wp-admin/includes/upgrade.php:41 ++msgid "User already exists. Password inherited." ++msgstr "L’utilisateur existe déjà, et a hérité du mot de passe." ++ ++#: wp-admin/includes/upgrade.php:70 ++#: wp-admin/includes/upgrade.php:71 ++msgid "Blogroll" ++msgstr "Blogoliste" ++ ++#: wp-admin/includes/upgrade.php:101 ++msgid "Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!" ++msgstr "Bienvenue dans WordPress. Ceci est votre premier article. Modifiez-le ou effacez-le, puis lancez-vous !" ++ ++#: wp-admin/includes/upgrade.php:101 ++msgid "Hello world!" ++msgstr "Bonjour tout le monde !" ++ ++#: wp-admin/includes/upgrade.php:101 ++msgid "hello-world" ++msgstr "bonjour-tout-le-monde" ++ ++#: wp-admin/includes/upgrade.php:105 ++msgid "Mr WordPress" ++msgstr "Monsieur WordPress" ++ ++#: wp-admin/includes/upgrade.php:105 ++msgid "Hi, this is a comment.
    To delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them." ++msgstr "Bonjour, ceci est un commentaire.
    Pour effacer un commentaire, connectez-vous, et affichez les commentaires de cet article. Vous trouverez alors l’option permettant de le modifier ou l’effacer." ++ ++#: wp-admin/includes/upgrade.php:109 ++msgid "This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress." ++msgstr "Ceci est un exemple de page WordPress. Vous pouvez la modifier pour mettre ici des informations vous concernant ou concernant votre site afin que vos lecteurs en sachent un peu plus sur vous. Vous pouvez créer autant de pages ou sous-pages que vous voulez, et gérer l’intégralité de votre contenu dans WordPress." ++ ++#: wp-admin/includes/upgrade.php:109 ++#: wp-includes/js/tinymce/langs/wp-langs.php:238 ++#: wp-includes/js/tinymce/wp-mce-help.php:165 ++msgid "About" ++msgstr "À propos" ++ ++# "slug" pour "À propos" ++#: wp-admin/includes/upgrade.php:109 ++msgid "about" ++msgstr "a-propos" ++ ++# Ne pas mettre d'entité HTML ( ...) : chaîne envoyée par e-mail. ++#: wp-admin/includes/upgrade.php:119 ++#, php-format ++msgid "" ++"Your new WordPress blog has been successfully set up at:\n" ++"\n" ++"%1$s\n" ++"\n" ++"You can log in to the administrator account with the following information:\n" ++"\n" ++"Username: %2$s\n" ++"Password: %3$s\n" ++"\n" ++"We hope you enjoy your new blog. Thanks!\n" ++"\n" ++"--The WordPress Team\n" ++"http://wordpress.org/\n" ++msgstr "" ++"Votre nouveau blog WordPress a été créé avec succÚs à l'adresse suivante :\n" ++"\n" ++"%1$s\n" ++"\n" ++"Vous pouvez vous connecter au compte administrateur avec les informations suivantes :\n" ++"\n" ++"Identifiant : %2$s\n" ++"Mot de passe : %3$s\n" ++"\n" ++"Nous espérons que vous apprécierez votre nouveau blog. Merci !\n" ++"\n" ++"--L'équipe WordPress\n" ++"http://wordpress.org/\n" ++"http://www.wordpress-fr.net/ (traduction française et assistance)\n" ++ ++#: wp-admin/includes/upgrade.php:134 ++msgid "New WordPress Blog" ++msgstr "Nouveau blog WordPress" ++ ++#: wp-admin/includes/user.php:87 ++#: wp-login.php:155 ++msgid "ERROR: Please enter a username." ++msgstr "ERREUR : merci de renseigner l’identifiant." ++ ++#: wp-admin/includes/user.php:94 ++#: wp-admin/includes/user.php:96 ++msgid "ERROR: You entered your new password only once." ++msgstr "ERREUR : vous n’avez tapé votre nouveau mot de passe qu’une seule fois." ++ ++#: wp-admin/includes/user.php:99 ++msgid "ERROR: Please enter your password." ++msgstr "ERREUR : merci de renseigner votre mot de passe." ++ ++#: wp-admin/includes/user.php:101 ++msgid "ERROR: Please enter your password twice." ++msgstr "ERREUR : merci de renseigner deux fois le mot de passe." ++ ++#: wp-admin/includes/user.php:106 ++msgid "ERROR: Passwords may not contain the character \"\\\"." ++msgstr "ERREUR : le mot de passe ne doit pas contenir le caractÚre \"\\\"." ++ ++#: wp-admin/includes/user.php:110 ++msgid "ERROR: Please enter the same password in the two password fields." ++msgstr "ERREUR : les deux mots de passe ne sont pas identiques." ++ ++#: wp-admin/includes/user.php:116 ++msgid "ERROR: This username is invalid. Please enter a valid username." ++msgstr "ERREUR : cet identifiant n’est pas valide. Merci d’utiliser un identifiant valide." ++ ++#: wp-admin/includes/user.php:119 ++msgid "ERROR: This username is already registered. Please choose another one." ++msgstr "ERREUR : cet identifiant existe déjà. Merci d’en choisir un autre." ++ ++#: wp-admin/includes/user.php:123 ++msgid "ERROR: Please enter an e-mail address." ++msgstr "ERREUR : veuillez saisir une adresse e-mail." ++ ++#: wp-admin/includes/user.php:126 ++msgid "ERROR: The e-mail address isn't correct." ++msgstr "ERREUR : l’adresse e-mail est incorrecte" ++ ++#: wp-admin/includes/user.php:354 ++msgid "No matching users were found!" ++msgstr "Aucun utilisateur ne correspond !" ++ ++#: wp-admin/includes/widgets.php:136 ++msgid "No matching widgets" ++msgstr "Aucun widget ne correspond" ++ ++#: wp-admin/includes/widgets.php:216 ++#, php-format ++msgid "%1$s: %2$s|1: widget name, 2: widget title" ++msgstr "%1$s : %2$s" ++ ++#: wp-admin/includes/widgets.php:243 ++msgid "There are no options for this widget." ++msgstr "Il n’y a pas d’options pour ce widget." ++ ++#: wp-admin/includes/widgets.php:253 ++#: wp-admin/users.php:303 ++msgid "Change" ++msgstr "Changer" ++ ++#: wp-admin/includes/widgets.php:257 ++msgid "Remove" ++msgstr "Supprimer" ++ ++#: wp-admin/index.php:30 ++#: wp-admin/index.php:39 ++#: wp-admin/menu.php:7 ++msgid "Dashboard" ++msgstr "Tableau de bord" ++ ++#: wp-admin/index.php:43 ++msgid "Right Now" ++msgstr "Aujourd'hui" ++ ++#: wp-admin/index.php:46 ++msgid "Write a New Post" ++msgstr "Écrire un nouvel article" ++ ++#: wp-admin/index.php:48 ++msgid "Write a New Page" ++msgstr "Écrire une nouvelle page" ++ ++#: wp-admin/index.php:64 ++#, php-format ++msgid "%s post" ++msgid_plural "%s posts" ++msgstr[0] "%s article" ++msgstr[1] "%s articles" ++ ++#: wp-admin/index.php:68 ++#, php-format ++msgid "%s page" ++msgid_plural "%s pages" ++msgstr[0] "%s page" ++msgstr[1] "%s pages" ++ ++#: wp-admin/index.php:71 ++#, php-format ++msgid "%s draft" ++msgid_plural "%s drafts" ++msgstr[0] "%s brouillon" ++msgstr[1] "%s brouillons" ++ ++#: wp-admin/index.php:74 ++#, php-format ++msgid "%s scheduled post" ++msgid_plural "%s scheduled posts" ++msgstr[0] "%s article programmé" ++msgstr[1] "%s articles programmés" ++ ++#: wp-admin/index.php:78 ++#, php-format ++msgid "There is %2$s post pending your review." ++msgid_plural "There are %2$s posts pending your review." ++msgstr[0] "Il y a %2$s article attendant votre relecture." ++msgstr[1] "Il y a %2$s articles attendant votre relecture." ++ ++#: wp-admin/index.php:83 ++#, php-format ++msgid "%s category" ++msgid_plural "%s categories" ++msgstr[0] "%s catégorie" ++msgstr[1] "%s catégories" ++ ++#: wp-admin/index.php:84 ++#, php-format ++msgid "%s tag" ++msgid_plural "%s tags" ++msgstr[0] "%s tag" ++msgstr[1] "%s tags" ++ ++#: wp-admin/index.php:93 ++#, php-format ++msgid "You have %1$s, contained within %2$s and %3$s. %4$s" ++msgstr "Vous avez %1$s, contenus dans %2$s et %3$s. %4$s" ++ ++#: wp-admin/index.php:102 ++#, php-format ++msgid "%d widget" ++msgid_plural "%d widgets" ++msgstr[0] "%d widget" ++msgstr[1] "%d widgets" ++ ++# A vérifier en contexte... ++#: wp-admin/index.php:107 ++#, php-format ++msgid "You are using %1$s theme with %2$s." ++msgstr "Vous utilisez le thÚme %1$s avec %2$s." ++ ++#: wp-admin/index.php:109 ++msgid "Change Theme" ++msgstr "Changer de thÚme" ++ ++#: wp-admin/install.php:23 ++msgid "WordPress › Installation" ++msgstr "WordPress » Installation" ++ ++#: wp-admin/install.php:33 ++msgid "Already Installed" ++msgstr "Déjà installé" ++ ++#: wp-admin/install.php:33 ++msgid "You appear to have already installed WordPress. To reinstall please clear your old database tables first." ++msgstr "Il semblerait que WordPress soit déjà installé. Pour le réinstaller, commencez par vider les tables de la base de données." ++ ++#: wp-admin/install.php:40 ++msgid "Welcome" ++msgstr "Bienvenue" ++ ++#: wp-admin/install.php:41 ++#, php-format ++msgid "Welcome to the famous five minute WordPress installation process! You may want to browse the ReadMe documentation at your leisure. Otherwise, just fill in the information below and you'll be on your way to using the most extendable and powerful personal publishing platform in the world." ++msgstr "Bienvenue dans le célÚbre processus d’installation en 5 minutes de WordPress ! Vous pouvez parcourir le fichier ReadMe à loisir. Autrement, remplissez simplement les champs ci-dessous, et vous serez prêt à installer la plate-forme de publication personnelle la plus puissante et la plus extensible au monde." ++ ++#: wp-admin/install.php:42 ++msgid "First Step" ++msgstr "PremiÚre étape" ++ ++#: wp-admin/install.php:44 ++msgid "Information needed" ++msgstr "Informations nécessaires" ++ ++#: wp-admin/install.php:45 ++msgid "Please provide the following information. Don't worry, you can always change these settings later." ++msgstr "Merci de fournir les informations suivantes. Ne vous inquiétez pas, vous pourrez les modifier plus tard." ++ ++#: wp-admin/install.php:50 ++#: wp-admin/options-general.php:16 ++msgid "Blog Title" ++msgstr "Titre du blog" ++ ++#: wp-admin/install.php:54 ++msgid "Your E-mail" ++msgstr "Votre e-mail" ++ ++#: wp-admin/install.php:56 ++msgid "Double-check your email address before continuing." ++msgstr "Vérifiez bien cette adresse e-mail avant de continuer." ++ ++#: wp-admin/install.php:59 ++msgid "Allow my blog to appear in search engines like Google and Technorati." ++msgstr "Autoriser mon blog à apparaitre dans les moteurs de recherche comme Google et Technorati." ++ ++#: wp-admin/install.php:62 ++msgid "Install WordPress" ++msgstr "Installation de WordPress" ++ ++#: wp-admin/install.php:79 ++msgid "ERROR: you must provide an e-mail address." ++msgstr "ERREUR : veuillez saisir une adresse e-mail." ++ ++#: wp-admin/install.php:82 ++msgid "ERROR: that isn’t a valid e-mail address. E-mail addresses look like: username@example.com" ++msgstr "ERREUR : l’adresse e-mail n’est pas valide. Les adresses e-mail ressemblent à cela : utilisateur@exemple.com" ++ ++#: wp-admin/install.php:90 ++msgid "Success!" ++msgstr "Quel succÚs !" ++ ++#: wp-admin/install.php:92 ++msgid "WordPress has been installed. Were you expecting more steps? Sorry to disappoint." ++msgstr "WordPress est installé. Vous attendiez-vous à d’autres étapes ? Désolé de vous décevoir ;-)" ++ ++#: wp-admin/install.php:96 ++#: wp-admin/user-edit.php:198 ++#: wp-admin/users.php:334 ++#: wp-login.php:316 ++#: wp-login.php:381 ++msgid "Username" ++msgstr "Identifiant" ++ ++#: wp-admin/install.php:100 ++#: wp-admin/options-writing.php:76 ++#: wp-login.php:385 ++msgid "Password" ++msgstr "Mot de passe" ++ ++#: wp-admin/install.php:102 ++msgid "Note that password carefully! It is a random password that was generated just for you." ++msgstr "Notez ce mot de passe sans vous tromper ! Il a été créé au hasard et vous est unique." ++ ++#: wp-admin/install.php:106 ++#: wp-login.php:391 ++msgid "Log In" ++msgstr "Connexion" ++ ++#: wp-admin/link-add.php:22 ++msgid "Link added." ++msgstr "Lien ajouté." ++ ++#: wp-admin/link-import.php:7 ++msgid "Import Blogroll" ++msgstr "Importer une blogoliste" ++ ++#: wp-admin/link-import.php:24 ++msgid "Import your blogroll from another system" ++msgstr "Importer une blogoliste depuis un autre systÚme" ++ ++#: wp-admin/link-import.php:28 ++msgid "If a program or website you use allows you to export your links or subscriptions as OPML you may import them here." ++msgstr "Si un programme ou un site que vous utilisez vous autorise à exporter vos liens au format OPML, vous pouvez les importer ici." ++ ++#: wp-admin/link-import.php:33 ++msgid "Specify an OPML URL:" ++msgstr "Indiquez une URL OPML :" ++ ++#: wp-admin/link-import.php:38 ++msgid "Or choose from your local disk:" ++msgstr "…ou choisissez un fichier local sur votre disque dur :" ++ ++#: wp-admin/link-import.php:44 ++msgid "Now select a category you want to put these links in." ++msgstr "Sélectionnez maintenant la catégorie dans laquelle vous voulez mettre ces liens." ++ ++#: wp-admin/link-import.php:45 ++msgid "Category:" ++msgstr "Catégorie :" ++ ++#: wp-admin/link-import.php:56 ++msgid "Import OPML File" ++msgstr "Importer le fichier OPML" ++ ++#: wp-admin/link-import.php:111 ++#, php-format ++msgid "Inserted %s" ++msgstr "%s inséré" ++ ++#: wp-admin/link-import.php:115 ++#, php-format ++msgid "Inserted %1$d links into category %2$s. All done! Go manage those links." ++msgstr "Insertion de %1$d liens dans la catégorie %2$s. Terminé ! Allez gérer ces liens." ++ ++#: wp-admin/link-import.php:121 ++msgid "You need to supply your OPML url. Press back on your browser and try again" ++msgstr "Vous devez donner l’URL de votre fichier OPML. Cliquez sur le bouton de retour de votre navigateur et réessayez." ++ ++#: wp-admin/link-manager.php:10 ++#: wp-admin/link-manager.php:42 ++#: wp-admin/link.php:7 ++msgid "You do not have sufficient permissions to edit the links for this blog." ++msgstr "Vous n’avez pas les droits suffisants pour modifier les liens de ce blog." ++ ++#: wp-admin/link-manager.php:37 ++msgid "Manage Links" ++msgstr "Gérer les liens" ++ ++#: wp-admin/link-manager.php:69 ++#, php-format ++msgid "%s link deleted." ++msgid_plural "%s links deleted" ++msgstr[0] "%s lien supprimé" ++msgstr[1] "%s liens supprimés" ++ ++#: wp-admin/link-manager.php:78 ++#, php-format ++msgid "Manage Links (add new)" ++msgstr "Gérer les liens (en ajouter un)" ++ ++#: wp-admin/link-manager.php:82 ++msgid "Search Links" ++msgstr "Chercher dans les liens" ++ ++#: wp-admin/link-manager.php:94 ++msgid "View all Categories" ++msgstr "Voir toutes les catégories" ++ ++#: wp-admin/link-manager.php:100 ++msgid "Order by Link ID" ++msgstr "Trier par l’ID du lien" ++ ++#: wp-admin/link-manager.php:101 ++msgid "Order by Name" ++msgstr "Trier par noms" ++ ++#: wp-admin/link-manager.php:102 ++msgid "Order by Address" ++msgstr "Trier par l’adresse" ++ ++#: wp-admin/link-manager.php:103 ++msgid "Order by Rating" ++msgstr "Trier par notes" ++ ++#: wp-admin/link-manager.php:124 ++msgid "rel" ++msgstr "Rel" ++ ++#: wp-admin/link-manager.php:125 ++msgid "Visible" ++msgstr "Visible" ++ ++#: wp-admin/link-manager.php:163 ++#: wp-admin/update.php:64 ++msgid "Yes" ++msgstr "Oui" ++ ++#: wp-admin/link-manager.php:176 ++#, php-format ++msgid "Visit %s" ++msgstr "Aller sur %s" ++ ++#: wp-admin/link-manager.php:214 ++msgid "No links found." ++msgstr "Aucun lien trouvé." ++ ++#: wp-admin/link-parse-opml.php:58 ++#, php-format ++msgid "XML error: %1$s at line %2$s" ++msgstr "Erreur XML : %1$s à la ligne %2$s" ++ ++#: wp-admin/link.php:97 ++msgid "Link not found." ++msgstr "Lien non trouvé." ++ ++#: wp-admin/media.php:32 ++#: wp-admin/media.php:68 ++msgid "Edit Media" ++msgstr "Modifier un média" ++ ++#: wp-admin/media.php:56 ++msgid "Media attachment updated." ++msgstr "Fichier joint mis à jour." ++ ++#: wp-admin/media-upload.php:19 ++msgid "You are not allowed to be here" ++msgstr "Vous n’avez pas l’autorisation d’être ici." ++ ++#: wp-admin/menu.php:10 ++#: wp-admin/menu.php:12 ++#: wp-admin/menu.php:14 ++msgid "Write" ++msgstr "Écrire" ++ ++#: wp-admin/menu.php:17 ++#: wp-admin/menu.php:19 ++#: wp-admin/menu.php:21 ++msgid "Manage" ++msgstr "Gérer" ++ ++#: wp-admin/menu.php:24 ++msgid "Design" ++msgstr "Apparence" ++ ++# Contexte? ++#: wp-admin/menu.php:25 ++#, php-format ++msgid "Comments %s" ++msgstr "Commentaires %s" ++ ++#: wp-admin/menu.php:26 ++#: wp-admin/options.php:4 ++msgid "Settings" ++msgstr "Réglages" ++ ++#: wp-admin/menu.php:31 ++#: wp-admin/user-edit.php:63 ++msgid "Profile" ++msgstr "Profil" ++ ++#: wp-admin/menu.php:36 ++msgid "Link" ++msgstr "Lien" ++ ++#: wp-admin/menu.php:52 ++msgid "Authors & Users" ++msgstr "Auteurs & Utilisateurs" ++ ++#: wp-admin/menu.php:53 ++#: wp-admin/menu.php:55 ++msgid "Your Profile" ++msgstr "Votre profil" ++ ++#: wp-admin/menu.php:58 ++#: wp-includes/js/tinymce/langs/wp-langs.php:290 ++msgid "General" ++msgstr "Général" ++ ++#: wp-admin/menu.php:59 ++msgid "Writing" ++msgstr "Écriture" ++ ++#: wp-admin/menu.php:60 ++msgid "Reading" ++msgstr "Lecture" ++ ++#: wp-admin/menu.php:61 ++msgid "Discussion" ++msgstr "Discussion" ++ ++#: wp-admin/menu.php:62 ++msgid "Privacy" ++msgstr "Vie privée" ++ ++#: wp-admin/menu.php:63 ++msgid "Permalinks" ++msgstr "Permaliens" ++ ++#: wp-admin/menu.php:64 ++msgid "Miscellaneous" ++msgstr "Divers" ++ ++#: wp-admin/menu.php:67 ++#: wp-admin/plugin-editor.php:95 ++msgid "Plugin Editor" ++msgstr "Éditeur d’extension" ++ ++#: wp-admin/menu.php:69 ++msgid "Themes" ++msgstr "ThÚmes" ++ ++#: wp-admin/menu.php:70 ++#: wp-admin/theme-editor.php:93 ++msgid "Theme Editor" ++msgstr "Éditeur de thÚme" ++ ++#: wp-admin/menu.php:140 ++msgid "You do not have sufficient permissions to access this page." ++msgstr "Vous n’avez pas les droits suffisants pour accéder à cette page." ++ ++#: wp-admin/options-discussion.php:4 ++#: wp-admin/options-discussion.php:11 ++msgid "Discussion Settings" ++msgstr "Options de discussion" ++ ++#: wp-admin/options-discussion.php:16 ++msgid "Default article settings" ++msgstr "Réglages d’article par défaut" ++ ++#: wp-admin/options-discussion.php:20 ++msgid "Attempt to notify any blogs linked to from the article (slows down posting.)" ++msgstr "Tenter de notifier les weblogs liés à cet article (ralentit la mise en ligne)" ++ ++#: wp-admin/options-discussion.php:24 ++msgid "Allow link notifications from other blogs (pingbacks and trackbacks.)" ++msgstr "Autoriser les notifications depuis les autres weblogs (notifications par pings et rétroliens)" ++ ++#: wp-admin/options-discussion.php:28 ++msgid "Allow people to post comments on the article" ++msgstr "Autoriser les commentaires sur cet article" ++ ++#: wp-admin/options-discussion.php:30 ++msgid "These settings may be overridden for individual articles." ++msgstr "Ces réglages peuvent être modifiés pour chaque article" ++ ++#: wp-admin/options-discussion.php:34 ++msgid "E-mail me whenever" ++msgstr "M’envoyer un e-mail lorsque" ++ ++#: wp-admin/options-discussion.php:38 ++msgid "Anyone posts a comment" ++msgstr "Un nouveau commentaire est publié" ++ ++#: wp-admin/options-discussion.php:42 ++msgid "A comment is held for moderation" ++msgstr "Un commentaire est en attente de modération" ++ ++#: wp-admin/options-discussion.php:46 ++msgid "Before a comment appears" ++msgstr "Avant la publication d’un commentaire" ++ ++#: wp-admin/options-discussion.php:50 ++msgid "An administrator must always approve the comment" ++msgstr "Un administrateur doit toujours approuver le commentaire" ++ ++#: wp-admin/options-discussion.php:52 ++msgid "Comment author must fill out name and e-mail" ++msgstr "L’auteur d’un commentaire doit renseigner son nom et son e-mail" ++ ++#: wp-admin/options-discussion.php:54 ++msgid "Comment author must have a previously approved comment" ++msgstr "L’auteur d’un commentaire doit avoir déjà publié un commentaire approuvé" ++ ++#: wp-admin/options-discussion.php:58 ++msgid "Comment Moderation" ++msgstr "Modération de commentaires" ++ ++#: wp-admin/options-discussion.php:60 ++#, php-format ++msgid "Hold a comment in the queue if it contains %s or more links. (A common characteristic of comment spam is a large number of hyperlinks.)" ++msgstr "Garder un commentaire dans la file s’il contient plus de %s lien(s) (une des caractéristiques typiques d’un commentaire indésirable (spam) est son nombre important de liens)" ++ ++#: wp-admin/options-discussion.php:62 ++msgid "When a comment contains any of these words in its content, name, URL, e-mail, or IP, it will be held in the moderation queue. One word or IP per line. It will match inside words, so \"press\" will match \"WordPress\"." ++msgstr "Lorsqu’un commentaire contient l’un de ces mots dans son contenu, son nom, son URL, son adresse e-mail, ou son IP, celui-ci est retenu dans la file de modération. Un seul mot ou une seule IP par ligne. Cette fonction reconnaît l’intérieur des mots, donc \"press\" marchera pour \"WordPress\"." ++ ++#: wp-admin/options-discussion.php:69 ++msgid "Comment Blacklist" ++msgstr "Liste noire pour les commentaires" ++ ++#: wp-admin/options-discussion.php:71 ++msgid "When a comment contains any of these words in its content, name, URL, e-mail, or IP, it will be marked as spam. One word or IP per line. It will match inside words, so \"press\" will match \"WordPress\"." ++msgstr "Lorsqu’un commentaire contient l’un de ces mots dans son contenu, nom, URL, e-mail, ou IP, le marquer comme indésirable. Un seul mot ou IP par ligne. Il reconnaît l’intérieur des mots, donc \"press\" reconnaîtra \"WordPress\"." ++ ++#: wp-admin/options-discussion.php:79 ++msgid "Avatars" ++msgstr "Avatars" ++ ++#: wp-admin/options-discussion.php:81 ++msgid "By default WordPress uses Gravatars — short for Globally Recognized Avatars — for the pictures that show up next to comments. Plugins may override this." ++msgstr "WordPress intÚgre d’origine les Gravatars — une abréviation de Globally Recognized Avatars, ou Avatars Reconnus Partout — pour les images/photos accompagnant les commentaires. Les extensions peuvent supplanter ce systÚme." ++ ++#: wp-admin/options-discussion.php:87 ++msgid "Avatar display" ++msgstr "Affichage des avatars" ++ ++#: wp-admin/options-discussion.php:90 ++msgid "Don’t show Avatars" ++msgstr "Ne pas afficher les avatars" ++ ++#: wp-admin/options-discussion.php:90 ++msgid "Show Avatars" ++msgstr "Afficher les avatars" ++ ++#: wp-admin/options-discussion.php:99 ++msgid "Maximum Rating" ++msgstr "Classement maximal" ++ ++#: wp-admin/options-discussion.php:103 ++msgid "G — Suitable for all audiences" ++msgstr "G — Visibles par tous" ++ ++#: wp-admin/options-discussion.php:103 ++msgid "PG — Possibly offensive, usually for audiences 13 and above" ++msgstr "PG — Possiblement offensants, conçus pour les publics de 13 ans et plus" ++ ++#: wp-admin/options-discussion.php:103 ++msgid "R — Intended for adult audiences above 17" ++msgstr "R — Réservés aux personnes de plus de 17 ans" ++ ++#: wp-admin/options-discussion.php:103 ++msgid "X — Even more mature than above" ++msgstr "X — Réservés aux adultes" ++ ++#: wp-admin/options-general.php:4 ++#: wp-admin/options-general.php:11 ++msgid "General Settings" ++msgstr "Options générales" ++ ++#: wp-admin/options-general.php:20 ++msgid "Tagline" ++msgstr "Slogan" ++ ++#: wp-admin/options-general.php:23 ++msgid "In a few words, explain what this blog is about." ++msgstr "En quelques mots, décrivez la raison d’être de ce blog" ++ ++#: wp-admin/options-general.php:26 ++msgid "WordPress address (URL)" ++msgstr "Adresse de WordPress (URL)" ++ ++#: wp-admin/options-general.php:30 ++msgid "Blog address (URL)" ++msgstr "Adresse du blog (URL)" ++ ++#: wp-admin/options-general.php:31 ++msgid "Enter the address here if you want your blog homepage to be different from the directory you installed WordPress." ++msgstr "Si vous voulez que l’adresse de la page d’accueil de votre weblog soit différente du répertoire où vous avez installé WordPress, saisissez cette adresse ici." ++ ++#: wp-admin/options-general.php:34 ++msgid "E-mail address" ++msgstr "Adresse e-mail" ++ ++#: wp-admin/options-general.php:37 ++msgid "This address is used for admin purposes, like new user notification." ++msgstr "Cette adresse n’est utilisée que pour l’administration du blog, exemple la notification d’inscription d’un nouvel utilisateur." ++ ++#: wp-admin/options-general.php:40 ++msgid "Membership" ++msgstr "Adhésion" ++ ++#: wp-admin/options-general.php:43 ++msgid "Anyone can register" ++msgstr "Tout le monde peut s’enregistrer" ++ ++#: wp-admin/options-general.php:46 ++msgid "Users must be registered and logged in to comment" ++msgstr "Un utilisateur doit être enregistré et connecté pour publier des commentaires" ++ ++#: wp-admin/options-general.php:51 ++msgid "New User Default Role" ++msgstr "RÃŽle par défaut de tout nouvel utilisateur" ++ ++#: wp-admin/options-general.php:57 ++msgid "Timezone" ++msgstr "Fuseau horaire" ++ ++#: wp-admin/options-general.php:79 ++#, php-format ++msgid "UTC %s" ++msgstr "UTC %s" ++ ++#: wp-admin/options-general.php:83 ++msgid "hours" ++msgstr "heures" ++ ++#: wp-admin/options-general.php:84 ++#, php-format ++msgid "UTC time is %s" ++msgstr " L’heure actuelle UTC est %s" ++ ++#: wp-admin/options-general.php:84 ++#: wp-admin/options-general.php:85 ++msgid "Y-m-d G:i:s" ++msgstr "Y-m-d G:i:s" ++ ++#: wp-admin/options-general.php:85 ++#, php-format ++msgid "UTC %1$s is %2$s" ++msgstr "L’heure actuelle UTC %1$s est %2$s" ++ ++#: wp-admin/options-general.php:86 ++msgid "Unfortunately, you have to manually update this for Daylight Savings Time. Lame, we know, but will be fixed in the future." ++msgstr "Malheureusement, vous devez faire ce réglage à la main pour le passage à l'heure d’été/d'hiver. Oui, c’est bancal, nous comptons améliorer cela pour une prochaine version." ++ ++#: wp-admin/options-general.php:90 ++msgid "Date Format" ++msgstr "Format de date" ++ ++#: wp-admin/options-general.php:92 ++#: wp-admin/options-general.php:97 ++msgid "Output:" ++msgstr "Ce qui donne :" ++ ++#: wp-admin/options-general.php:95 ++msgid "Time Format" ++msgstr "Format d’heure" ++ ++#: wp-admin/options-general.php:98 ++msgid "Documentation on date formatting. Click \"Save Changes\" to update sample output." ++msgstr "Documentation sur le format des dates. Enregistrez les options pour mettre à jour l’exemple affiché." ++ ++#: wp-admin/options-general.php:101 ++msgid "Week Starts On" ++msgstr "La semaine débute le" ++ ++#: wp-admin/options-head.php:4 ++msgid "Settings saved." ++msgstr "Options enregistrées." ++ ++#: wp-admin/options-misc.php:4 ++#: wp-admin/options-misc.php:12 ++msgid "Miscellaneous Settings" ++msgstr "Options diverses" ++ ++#: wp-admin/options-misc.php:15 ++msgid "Uploading" ++msgstr "Envoi de fichiers" ++ ++#: wp-admin/options-misc.php:18 ++msgid "Store uploads in this folder" ++msgstr "Stocker les fichiers envoyés dans ce dossier" ++ ++#: wp-admin/options-misc.php:21 ++msgid "Default is wp-content/uploads" ++msgstr "Par défaut, wp-content/uploads" ++ ++#: wp-admin/options-misc.php:26 ++msgid "Full URL path to files (optional)" ++msgstr "Chemin d’URL complet pour les fichiers (optionnel)" ++ ++#: wp-admin/options-misc.php:35 ++msgid "Organize my uploads into month- and year-based folders" ++msgstr "Organiser mes fichiers envoyés dans des dossiers mensuels et annuels" ++ ++#: wp-admin/options-misc.php:41 ++msgid "Image sizes" ++msgstr "Taille des images" ++ ++#: wp-admin/options-misc.php:42 ++msgid "The sizes listed below determine the maximum dimensions to use when inserting an image into the body of a post." ++msgstr "Les tailles précisées ci-dessous déterminent les dimensions maximales à utiliser lors de l’insertion d’une image dans le corps d’un article." ++ ++#: wp-admin/options-misc.php:46 ++msgid "Thumbnail size" ++msgstr "Taille des miniatures" ++ ++#: wp-admin/options-misc.php:48 ++msgid "Width" ++msgstr "Largeur" ++ ++#: wp-admin/options-misc.php:50 ++msgid "Height" ++msgstr "Hauteur" ++ ++#: wp-admin/options-misc.php:53 ++msgid "Crop thumbnail to exact dimensions (normally thumbnails are proportional)" ++msgstr "Rogner les images pour parvenir aux dimensions exactes (normalement les miniatures sont proportionnelles)" ++ ++#: wp-admin/options-misc.php:57 ++msgid "Medium size" ++msgstr "Taille moyenne" ++ ++#: wp-admin/options-misc.php:59 ++msgid "Max Width" ++msgstr "Largeur maximale" ++ ++#: wp-admin/options-misc.php:61 ++msgid "Max Height" ++msgstr "Hauteur maximale" ++ ++#: wp-admin/options-misc.php:75 ++msgid "Track Links’ Update Times" ++msgstr "Relever l’heure de mise à jour des liens" ++ ++#: wp-admin/options-misc.php:84 ++msgid "Use legacy my-hacks.php file support" ++msgstr "Utiliser le fichier existant my-hacks.php" ++ ++#: wp-admin/options-permalink.php:4 ++msgid "Permalink Settings" ++msgstr "Options des permaliens" ++ ++#: wp-admin/options-permalink.php:105 ++msgid "You should update your .htaccess now." ++msgstr "Vous devriez mettre à jour votre fichier .htaccess maintenant." ++ ++#: wp-admin/options-permalink.php:107 ++msgid "Permalink structure updated." ++msgstr "Structure des permaliens enregistrée." ++ ++#: wp-admin/options-permalink.php:112 ++msgid "Customize Permalink Structure" ++msgstr "Modifier la structure des permaliens" ++ ++#: wp-admin/options-permalink.php:115 ++msgid "By default WordPress uses web URLs which have question marks and lots of numbers in them, however WordPress offers you the ability to create a custom URL structure for your permalinks and archives. This can improve the aesthetics, usability, and forward-compatibility of your links. A number of tags are available, and here are some examples to get you started." ++msgstr "Par défaut, WordPress utilise des adresses web ayant un point d’interrogation et une suite de chiffres. Cependant, WordPress vous offre la possibilité de créer une structure d’adresses personnalisée pour vos permaliens et archives. Ceci peut améliorer l’esthétique, l’utilisation et la pérennité de vos liens. De nombreux marqueurs sont disponibles, et voici quelques exemples pour commencer." ++ ++#: wp-admin/options-permalink.php:130 ++msgid "Common settings" ++msgstr "Options les plus courantes" ++ ++#: wp-admin/options-permalink.php:133 ++msgid "Default" ++msgstr "Valeur par défaut" ++ ++#: wp-admin/options-permalink.php:137 ++msgid "Day and name" ++msgstr "Date et titre" ++ ++#: wp-admin/options-permalink.php:141 ++msgid "Month and name" ++msgstr "Mois et titre" ++ ++#: wp-admin/options-permalink.php:145 ++msgid "Numeric" ++msgstr "Numérique" ++ ++#: wp-admin/options-permalink.php:155 ++msgid "Custom Structure" ++msgstr "Structure personnalisée" ++ ++#: wp-admin/options-permalink.php:164 ++msgid "Optional" ++msgstr "Optionnel" ++ ++#: wp-admin/options-permalink.php:166 ++msgid "If you like, you may enter custom structures for your category and tag URLs here. For example, using /topics/ as your category base would make your category links like http://example.org/topics/uncategorized/. If you leave these blank the defaults will be used." ++msgstr "Si vous voulez, vous pouvez spécifier une structure personnalisée pour les URL de tags et de vos catégories. Par exemple, /sujet/ comme préfixe pour vos catégories, vous obtiendrez des url du genre : http://example.org/sujet/non-classe/. Si vous laissez ce champ vide, la valeur par défaut sera appliquée." ++ ++#: wp-admin/options-permalink.php:168 ++msgid "If you like, you may enter custom structures for your category and tag URLs here. For example, using /topics/ as your category base would make your category links like http://example.org/index.php/topics/uncategorized/. If you leave these blank the defaults will be used." ++msgstr "Si vous voulez, vous pouvez spécifier une structure personnalisée pour les URL de tags et de vos catégories. Par exemple, /sujet/ comme préfixe pour vos catégories, vous obtiendrez des url du genre : http://example.org/index.php/sujet/non-classe/. Si vous laissez ce champ vide, la valeur par défaut sera appliquée." ++ ++#: wp-admin/options-permalink.php:173 ++msgid "Category base" ++msgstr "Préfixe des catégories" ++ ++#: wp-admin/options-permalink.php:177 ++msgid "Tag base" ++msgstr "Préfixe des tags" ++ ++#: wp-admin/options-permalink.php:184 ++msgid "If your .htaccess file were writable, we could do this automatically, but it isn’t so these are the mod_rewrite rules you should have in your .htaccess file. Click in the field and press CTRL + a to select all." ++msgstr "Si vous aviez les droits en écriture sur le fichier .htaccess, nous pourrions faire cela automatiquement. Ce n’est pas le cas, donc voici les rÚgles de ré-écriture que vous devrez mettre dans votre fichier .htaccess. Cliquez sur le champ et appuyez sur CTRL + a pour tout sélectionner." ++ ++#: wp-admin/options.php:47 ++msgid "All Settings" ++msgstr "Tous les options" ++ ++#: wp-admin/options-privacy.php:4 ++#: wp-admin/options-privacy.php:11 ++msgid "Privacy Settings" ++msgstr "Options de vie privée" ++ ++#: wp-admin/options-privacy.php:16 ++msgid "Blog Visibility" ++msgstr "Visibilité du blog" ++ ++#: wp-admin/options-privacy.php:19 ++msgid "I would like my blog to be visible to everyone, including search engines (like Google, Sphere, Technorati) and archivers" ++msgstr "Je souhaite que mon blog soit visible pour tous, y compris les moteurs de recherche (Google, Sphere, Technorati) et les archiveurs" ++ ++#: wp-admin/options-privacy.php:21 ++msgid "I would like to block search engines, but allow normal visitors" ++msgstr "Je souhaite bloquer les moteurs de recherche, mais autoriser les visiteurs normaux" ++ ++#: wp-admin/options-reading.php:4 ++#: wp-admin/options-reading.php:11 ++msgid "Reading Settings" ++msgstr "Options de lecture" ++ ++#: wp-admin/options-reading.php:17 ++msgid "Front page displays" ++msgstr "La page d’accueil affiche" ++ ++#: wp-admin/options-reading.php:21 ++msgid "Your latest posts" ++msgstr "Vos derniers articles" ++ ++#: wp-admin/options-reading.php:26 ++#, php-format ++msgid "A static page (select below)" ++msgstr "Une page statique (choisir ci-dessous)" ++ ++#: wp-admin/options-reading.php:30 ++#, php-format ++msgid "Front page: %s" ++msgstr "Page d’accueil : %s" ++ ++#: wp-admin/options-reading.php:31 ++#, php-format ++msgid "Posts page: %s" ++msgstr "Page des articles : %s" ++ ++#: wp-admin/options-reading.php:36 ++msgid "Warning: these pages should not be the same!" ++msgstr "Attention : ces pages ne devraient pas être les mêmes !" ++ ++#: wp-admin/options-reading.php:44 ++msgid "Blog pages show at most" ++msgstr "Les pages du blog doivent afficher au plus" ++ ++#: wp-admin/options-reading.php:46 ++#: wp-admin/options-reading.php:51 ++msgid "posts" ++msgstr "articles" ++ ++#: wp-admin/options-reading.php:50 ++msgid "Syndication feeds show the most recent" ++msgstr "Les flux de syndication affichent les derniers" ++ ++#: wp-admin/options-reading.php:54 ++msgid "For each article in a feed, show" ++msgstr "Pour chaque article, fournir" ++ ++#: wp-admin/options-reading.php:56 ++msgid "Full text" ++msgstr "Le texte complet" ++ ++#: wp-admin/options-reading.php:57 ++msgid "Summary" ++msgstr "L'extrait" ++ ++#: wp-admin/options-reading.php:62 ++msgid "Encoding for pages and feeds" ++msgstr "Encodage pour les pages et les flux RSS" ++ ++#: wp-admin/options-reading.php:64 ++msgid "The character encoding you write your blog in (UTF-8 is recommended)" ++msgstr "L’encodage des caractÚres dans lequel vous écrivez votre blog (UTF-8 est recommandé)" ++ ++#: wp-admin/options-writing.php:4 ++#: wp-admin/options-writing.php:11 ++msgid "Writing Settings" ++msgstr "Options d’écriture" ++ ++#: wp-admin/options-writing.php:17 ++msgid "Size of the post box" ++msgstr "Taille du champ de saisie" ++ ++#: wp-admin/options-writing.php:19 ++msgid "lines" ++msgstr "lignes" ++ ++#: wp-admin/options-writing.php:22 ++msgid "Formatting" ++msgstr "Mise en forme" ++ ++#: wp-admin/options-writing.php:26 ++msgid "Convert emoticons like :-) and :-P to graphics on display" ++msgstr "Convertir les émoticÃŽnes comme :-) et :-P en images à l’affichage" ++ ++#: wp-admin/options-writing.php:27 ++msgid "WordPress should correct invalidly nested XHTML automatically" ++msgstr "WordPress doit automatiquement corriger les balises XHTML non valides" ++ ++#: wp-admin/options-writing.php:31 ++msgid "Default Post Category" ++msgstr "Catégorie par défaut des articles" ++ ++#: wp-admin/options-writing.php:45 ++msgid "Default Link Category" ++msgstr "Catégorie par défaut des liens" ++ ++#: wp-admin/options-writing.php:60 ++msgid "Post via e-mail" ++msgstr "Envoi d’article par e-mail" ++ ++#: wp-admin/options-writing.php:61 ++#, php-format ++msgid "To post to WordPress by e-mail you must set up a secret e-mail account with POP3 access. Any mail received at this address will be posted, so it’s a good idea to keep this address very secret. Here are three random strings you could use: %s, %s, %s." ++msgstr "Pour publier dans WordPress par e-mail, vous devez définir un compte e-mail secret avec une adresse POP3. Tout e-mail reçu à cette adresse sera publié. Il vaut donc mieux garder cette adresse à l’abri des regards. Voici trois chaînes aléatoires que vous pourriez utiliser : %s, %s, %s." ++ ++#: wp-admin/options-writing.php:65 ++msgid "Mail Server" ++msgstr "Serveur e-mail" ++ ++#: wp-admin/options-writing.php:67 ++msgid "Port" ++msgstr "Port" ++ ++#: wp-admin/options-writing.php:72 ++msgid "Login Name" ++msgstr "Identifiant" ++ ++#: wp-admin/options-writing.php:82 ++msgid "Default Mail Category" ++msgstr "Catégorie par défaut des articles envoyés par e-mail" ++ ++#: wp-admin/options-writing.php:97 ++msgid "Update Services" ++msgstr "Services de mise à jour" ++ ++#: wp-admin/options-writing.php:101 ++msgid "When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see Update Services on the Codex. Separate multiple service URLs with line breaks." ++msgstr "Quand vous publiez un nouvel article, WordPress peut notifier un service de mise à jour. Une explication se trouve sur la page Update Services du Codex. Séparez les URLs par des retours à la ligne." ++ ++#: wp-admin/options-writing.php:107 ++#, php-format ++msgid "WordPress is not notifying any Update Services because of your blog's privacy settings." ++msgstr "WordPress ne notifie aucun des services de notification du fait des réglages de vie privée de votre blog." ++ ++#: wp-admin/page-new.php:3 ++msgid "New Page" ++msgstr "Nouvelle page" ++ ++#: wp-admin/page-new.php:17 ++msgid "Page saved." ++msgstr "Page enregistrée." ++ ++#: wp-admin/page-new.php:17 ++msgid "Manage pages" ++msgstr "Gérer les pages" ++ ++#: wp-admin/page.php:71 ++msgid "You attempted to edit a page that doesn't exist. Perhaps it was deleted?" ++msgstr "Vous tentez de modifier une page qui n’existe pas. Peut-être a-t-elle été effacée ?" ++ ++#: wp-admin/page.php:86 ++#, php-format ++msgid "Warning: %s is currently editing this page" ++msgstr "Attention : %s modifie actuellement cette page" ++ ++#: wp-admin/plugin-editor.php:4 ++msgid "Edit Plugins" ++msgstr "Modifier les extensions" ++ ++#: wp-admin/plugin-editor.php:30 ++#: wp-admin/theme-editor.php:44 ++msgid "You do not have sufficient permissions to edit templates for this blog." ++msgstr "Vous n’avez pas les droits suffisants pour modifier les modÚles de ce blog." ++ ++#: wp-admin/plugin-editor.php:56 ++msgid "You do not have sufficient permissions to edit plugins for this blog." ++msgstr "Vous n’avez pas les droits suffisants pour modifier les extensions de ce blog." ++ ++#: wp-admin/plugin-editor.php:84 ++#: wp-admin/theme-editor.php:85 ++msgid "File edited successfully." ++msgstr "Modification du fichier réussie." ++ ++#: wp-admin/plugin-editor.php:86 ++msgid "This plugin has been deactivated because your changes resulted in a fatal error." ++msgstr "Cette extension a été désactivée car vos modifications ont abouti à une erreur fatale" ++ ++#: wp-admin/plugin-editor.php:102 ++#, php-format ++msgid "Editing %s (active)" ++msgstr "Modification de %s (activé)" ++ ++#: wp-admin/plugin-editor.php:104 ++#, php-format ++msgid "Browsing %s (active)" ++msgstr "Contenu de %s (activé)" ++ ++#: wp-admin/plugin-editor.php:107 ++#, php-format ++msgid "Editing %s (inactive)" ++msgstr "Modification de %s (désactivé)" ++ ++#: wp-admin/plugin-editor.php:109 ++#, php-format ++msgid "Browsing %s (inactive)" ++msgstr "Contenu de %s (désactivé)" ++ ++#: wp-admin/plugin-editor.php:117 ++msgid "Plugin Files" ++msgstr "Fichiers des extensions" ++ ++#: wp-admin/plugin-editor.php:135 ++msgid "Warning: Making changes to active plugins is not recommended. If your changes cause a fatal error, the plugin will be automatically deactivated." ++msgstr "Attention : modifier des extensions activées n’est pas recommandé. Si vos modifications amÚnent une erreur fatale, l’extension sera automatiquement désactivée." ++ ++#: wp-admin/plugin-editor.php:140 ++msgid "Update File and Attempt to Reactivate" ++msgstr "Mettre à jour le fichier et tenter de le réactiver" ++ ++#: wp-admin/plugin-editor.php:142 ++#: wp-admin/theme-editor.php:162 ++msgid "Update File" ++msgstr "Mettre à jour le fichier" ++ ++#: wp-admin/plugin-editor.php:146 ++#: wp-admin/theme-editor.php:166 ++msgid "You need to make this file writable before you can save your changes. See the Codex for more information." ++msgstr "Vous devez rendre ce fichier accessible en écriture avant de pouvoir enregistrer vos modifications. Lire la documentation CHMOD [en] pour plus d’informations." ++ ++#: wp-admin/plugin-editor.php:151 ++#: wp-admin/theme-editor.php:172 ++msgid "Oops, no such file exists! Double check the name and try again, merci." ++msgstr "Oops, ce fichier n’existe pas ! Vérifiez son nom et réessayez, thank you." ++ ++#: wp-admin/plugins.php:39 ++msgid "Manage Plugins" ++msgstr "Gérer les extensions" ++ ++#: wp-admin/plugins.php:47 ++msgid "Plugin could not be activated because it triggered a fatal error." ++msgstr "L’extension n’a pu être activée car elle a déclenché une erreur fatale." ++ ++#: wp-admin/plugins.php:57 ++msgid "Some plugins could not be reactivated because they triggered a fatal error." ++msgstr "Plusieurs extensions n’ont pu être réactivées car elles ont déclenchées des erreurs fatales." ++ ++#: wp-admin/plugins.php:59 ++msgid "Plugin activated." ++msgstr "Extension activée" ++ ++#: wp-admin/plugins.php:61 ++msgid "Plugin deactivated." ++msgstr "Extension désactivée" ++ ++#: wp-admin/plugins.php:63 ++msgid "All plugins deactivated." ++msgstr "Toutes les extensions ont été désactivées" ++ ++#: wp-admin/plugins.php:65 ++msgid "Plugins reactivated." ++msgstr "Extensions réactivées" ++ ++#: wp-admin/plugins.php:69 ++msgid "Plugin Management" ++msgstr "Gestion des extensions" ++ ++#: wp-admin/plugins.php:70 ++msgid "Plugins extend and expand the functionality of WordPress. Once a plugin is installed, you may activate it or deactivate it here." ++msgstr "Les extensions étendent les fonctionnalités de WordPress. Une fois une extension installée, vous pouvez l’activer ou le désactiver ici." ++ ++#: wp-admin/plugins.php:77 ++msgid "Couldn’t open plugins directory or there are no plugins available." ++msgstr "Impossible d’ouvrir le répertoire de extensions, ou il n’y a pas d’extension disponible." ++ ++#: wp-admin/plugins.php:89 ++msgid "Deactivate All Plugins" ++msgstr "Désactiver toutes les extensions" ++ ++#: wp-admin/plugins.php:93 ++msgid "Reactivate Plugins" ++msgstr "Réactiver les extensions" ++ ++#: wp-admin/plugins.php:106 ++#: wp-includes/js/tinymce/langs/wp-langs.php:242 ++msgid "Plugin" ++msgstr "Extension" ++ ++#: wp-admin/plugins.php:107 ++#: wp-includes/js/tinymce/langs/wp-langs.php:244 ++msgid "Version" ++msgstr "Version" ++ ++#: wp-admin/plugins.php:121 ++msgid "Deactivate this plugin" ++msgstr "Désactiver cette extension" ++ ++#: wp-admin/plugins.php:121 ++msgid "Deactivate" ++msgstr "Désactiver" ++ ++#: wp-admin/plugins.php:124 ++msgid "Activate this plugin" ++msgstr "Activer cette extension" ++ ++#: wp-admin/plugins.php:124 ++msgid "Activate" ++msgstr "Activer" ++ ++#: wp-admin/plugins.php:127 ++msgid "Open this file in the Plugin Editor" ++msgstr "Ouvrir ce fichier dans l’éditeur d’extension" ++ ++#: wp-admin/plugins.php:136 ++#, php-format ++msgid "By %s" ++msgstr "Par %s" ++ ++#: wp-admin/plugins.php:150 ++msgid "Active" ++msgstr "Activé" ++ ++#: wp-admin/plugins.php:152 ++msgid "Inactive" ++msgstr "Désactivé" ++ ++#: wp-admin/plugins.php:169 ++#, php-format ++msgid "If something goes wrong with a plugin and you can’t use WordPress, delete or rename that file in the %s directory and it will be automatically deactivated." ++msgstr "Si une extension ne fonctionne pas correctement et que vous ne pouvez plus utiliser WordPress, supprimez ou renommez son fichier dans le répertoire %s et elle sera automatiquement désactivée." ++ ++#: wp-admin/plugins.php:171 ++msgid "Get More Plugins" ++msgstr "Trouver d’autres extensions" ++ ++#: wp-admin/plugins.php:172 ++msgid "You can find additional plugins for your site in the WordPress plugin directory." ++msgstr "Vous pouvez trouver d’autres extensions pour votre site dans le répertoire des extensions WordPress." ++ ++#: wp-admin/plugins.php:173 ++#, php-format ++msgid "To install a plugin you generally just need to upload the plugin file into your %s directory. Once a plugin is uploaded, you may activate it here." ++msgstr "Pour installer une extension, il suffit le plus souvent de la placer sur le serveur, dans le dossier %s. Ceci fait, vous pourrez l’activer ici même." ++ ++#: wp-admin/post-new.php:3 ++msgid "Create New Post" ++msgstr "Créer un nouvel article" ++ ++#: wp-admin/post-new.php:17 ++#, php-format ++msgid "" ++"Since you’re a newcomer, you’ll have to wait for an admin to add the edit_posts capability to your user, in order to be authorized to post.
    \n" ++"You can also e-mail the admin to ask for a promotion.
    \n" ++"When you’re promoted, just reload this page and you’ll be able to blog. :)" ++msgstr "" ++"Comme vous êtes un nouvel inscrit, vous devez attendre qu’un administrateur ajoute la capacité edit_posts à votre compte utilisateur, pour avoir l’autorisation de publier.
    \n" ++"Vous pouvez aussi envoyer un e-mail à l’administrateur pour lui demander de le faire.
    \n" ++"Lorsque l'autorisation aura été accordée, rechargez cette page et vous pourrez utiliser le blog. :)" ++ ++#: wp-admin/post.php:78 ++msgid "You attempted to edit a post that doesn't exist. Perhaps it was deleted?" ++msgstr "Vous tentez de modifier un article qui n’existe pas. Peut-être a-t-il été effacé ?" ++ ++#: wp-admin/post.php:93 ++#, php-format ++msgid "Warning: %s is currently editing this post" ++msgstr "Attention : %s modifie actuellement cet article" ++ ++#: wp-admin/sidebar.php:15 ++msgid "WordPress › Posted" ++msgstr "WordPress › Publié" ++ ++#: wp-admin/sidebar.php:22 ++msgid "Posted !" ++msgstr "Publié !" ++ ++#: wp-admin/sidebar.php:23 ++#, php-format ++msgid "Click here to post again." ++msgstr "Cliquez ici pour rédiger un nouvel article." ++ ++#: wp-admin/sidebar.php:33 ++msgid "WordPress › Sidebar" ++msgstr "WordPress › Colonne latérale" ++ ++#: wp-admin/sidebar.php:63 ++#: wp-content/plugins/akismet/akismet.php:807 ++#: wp-includes/widgets.php:410 ++#: wp-includes/widgets.php:492 ++#: wp-includes/widgets.php:531 ++#: wp-includes/widgets.php:559 ++#: wp-includes/widgets.php:779 ++#: wp-includes/widgets.php:916 ++#: wp-includes/widgets.php:975 ++#: wp-includes/widgets.php:1349 ++msgid "Title:" ++msgstr "Titre :" ++ ++#: wp-admin/sidebar.php:66 ++#: wp-content/themes/classic/sidebar.php:10 ++msgid "Categories:" ++msgstr "Catégories :" ++ ++#: wp-admin/theme-editor.php:4 ++msgid "Edit Themes" ++msgstr "Modifier les thÚmes" ++ ++#: wp-admin/theme-editor.php:24 ++msgid "The requested theme does not exist." ++msgstr "Le thÚme demandé n’existe pas." ++ ++#: wp-admin/theme-editor.php:68 ++msgid "You do not have sufficient permissions to edit themes for this blog." ++msgstr "Vous n’avez pas les droits suffisants pour modifier les thÚmes de ce blog." ++ ++#: wp-admin/theme-editor.php:95 ++msgid "Select theme to edit:" ++msgstr "Sélectionnez le thÚme à modifier :" ++ ++#: wp-admin/theme-editor.php:107 ++msgid "Select" ++msgstr "Sélectionner" ++ ++#: wp-admin/theme-editor.php:118 ++msgid "Theme Files" ++msgstr "Fichiers du thÚme" ++ ++#: wp-admin/theme-editor.php:123 ++msgid "Templates" ++msgstr "ModÚles" ++ ++#: wp-admin/theme-editor.php:134 ++msgid "Styles|Theme stylesheets in theme editor" ++msgstr "Feuille de style" ++ ++#: wp-admin/themes.php:14 ++msgid "Manage Themes" ++msgstr "Gérer les thÚmes" ++ ++#: wp-admin/themes.php:20 ++msgid "The active theme is broken. Reverting to the default theme." ++msgstr "Le thÚme courant est endommagé. Retour au thÚme par défaut." ++ ++#: wp-admin/themes.php:22 ++#, php-format ++msgid "New theme activated. Visit site" ++msgstr "Nouveau thÚme activé. Voir le site" ++ ++#: wp-admin/themes.php:31 ++msgid "Current Theme" ++msgstr "ThÚme courant" ++ ++#: wp-admin/themes.php:34 ++msgid "Current theme preview" ++msgstr "Aperçu du thÚme courant" ++ ++#: wp-admin/themes.php:36 ++#, php-format ++msgid "%1$s %2$s by %3$s|1: theme title, 2: theme version, 3: theme author" ++msgstr "%1$s %2$s par %3$s" ++ ++#: wp-admin/themes.php:39 ++#, php-format ++msgid "The template files are located in %2$s. The stylesheet files are located in %3$s. %4$s uses templates from %5$s. Changes made to the templates will affect both themes." ++msgstr "Les fichiers du thÚme se trouvent dans %2$s. Les feuilles de style sont dans %3$s. %4$s utilise les modÚles de %5$s. Tout changement dans les modÚles affectera les deux thÚmes." ++ ++#: wp-admin/themes.php:41 ++#, php-format ++msgid "All of this theme’s files are located in %2$s." ++msgstr "Tous les fichiers de ce thÚme se trouvent dans %2$s." ++ ++#: wp-admin/themes.php:44 ++#: wp-admin/themes.php:82 ++msgid "Tags:" ++msgstr "Tags :" ++ ++#: wp-admin/themes.php:48 ++msgid "Available Themes" ++msgstr "ThÚmes disponibles" ++ ++#: wp-admin/themes.php:95 ++msgid "Broken Themes" ++msgstr "ThÚmes endommagés" ++ ++#: wp-admin/themes.php:96 ++msgid "The following themes are installed but incomplete. Themes must have a stylesheet and a template." ++msgstr "Les thÚmes suivants sont installés mais incomplets. Les thÚmes doivent avoir au moins une feuille de style et un modÚle." ++ ++#: wp-admin/themes.php:126 ++msgid "Get More Themes" ++msgstr "Trouver d’autres thÚmes" ++ ++#: wp-admin/themes.php:127 ++msgid "You can find additional themes for your site in the WordPress theme directory. To install a theme you generally just need to upload the theme folder into your wp-content/themes directory. Once a theme is uploaded, you should see it on this page." ++msgstr "Vous pouvez trouver d’autres thÚmes pour votre site dans le répertoire de thÚmes WordPress. Pour en installer un, il suffit le plus souvent de le placer sur le serveur, dans le dossier wp-content/themes. Ceci fait, vous pourrez l’activer ici même." ++ ++#: wp-admin/update-links.php:6 ++msgid "Feature disabled." ++msgstr "Fonctionnalité désactivée." ++ ++#: wp-admin/update-links.php:11 ++msgid "No links" ++msgstr "Aucun lien" ++ ++#: wp-admin/update.php:6 ++msgid "You do not have sufficient permissions to update plugins for this blog." ++msgstr "Vous n’avez pas les droits suffisants pour modifier les extensions de ce blog." ++ ++#: wp-admin/update.php:40 ++msgid "Error: There was an error connecting to the server, Please verify the settings are correct." ++msgstr "Erreur: Une erreur s’est produite lors de la connexion au serveur, vérifiez que vos paramÚtres sont corrects." ++ ++#: wp-admin/update.php:44 ++msgid "FTP Connection Information" ++msgstr "Informations de la connexion FTP" ++ ++#: wp-admin/update.php:45 ++msgid "To perform the requested update, FTP connection information is required." ++msgstr "Pour lancer la mise à jour demandée, vous devez donnez les informations de connexion FTP." ++ ++#: wp-admin/update.php:48 ++msgid "Hostname:" ++msgstr "Hôte :" ++ ++#: wp-admin/update.php:52 ++msgid "Username:" ++msgstr "Identifiant :" ++ ++#: wp-admin/update.php:56 ++#: wp-includes/post-template.php:527 ++msgid "Password:" ++msgstr "Mot de passe :" ++ ++#: wp-admin/update.php:57 ++msgid "(Password not shown)" ++msgstr "(Mot de passe non affiché)" ++ ++#: wp-admin/update.php:60 ++msgid "Use SSL:" ++msgstr "Utiliser SSL :" ++ ++#: wp-admin/update.php:74 ++msgid "Proceed" ++msgstr "Continuer" ++ ++#: wp-admin/update.php:105 ++#: wp-admin/update.php:135 ++msgid "Upgrade Plugin" ++msgstr "Mettre à jour l’extension" ++ ++#: wp-admin/update.php:121 ++msgid "Plugin upgraded successfully" ++msgstr "Extension mise à jour avec succÚs" ++ ++#: wp-admin/update.php:123 ++msgid "Attempting reactivation of the plugin" ++msgstr "Tentative de réactivation de l’extension" ++ ++#: wp-admin/update.php:152 ++msgid "Plugin Reactivation" ++msgstr "Réactivation d’extension" ++ ++#: wp-admin/update.php:161 ++msgid "Plugin reactivated successfully." ++msgstr "Extension réactivée avec succÚs." ++ ++#: wp-admin/update.php:164 ++msgid "Plugin failed to reactivate due to a fatal error." ++msgstr "L’extension n’a pu être réactivée suite à une erreur fatale." ++ ++#: wp-admin/upgrade.php:20 ++msgid "WordPress › Upgrade" ++msgstr "WordPress › Mise à jour" ++ ++#: wp-admin/upgrade.php:28 ++msgid "No Upgrade Required" ++msgstr "Pas de mise à jour requise" ++ ++#: wp-admin/upgrade.php:29 ++msgid "Your WordPress database is already up-to-date!" ++msgstr "Votre base de données WordPress est déjà à jour !" ++ ++#: wp-admin/upgrade.php:39 ++msgid "Database Upgrade Required" ++msgstr "Mise à jour de la base de données requise." ++ ++#: wp-admin/upgrade.php:40 ++msgid "Your WordPress database is out-of-date, and must be upgraded before you can continue." ++msgstr "Votre base de données WordPress est ancienne, et doit être mise à jour avant de continuer." ++ ++#: wp-admin/upgrade.php:41 ++msgid "The upgrade process may take a while, so please be patient." ++msgstr "Le processus de mise à jour peut prendre un certain temps, veuillez donc être patient." ++ ++#: wp-admin/upgrade.php:42 ++msgid "Upgrade WordPress" ++msgstr "Mettre à jour WordPress" ++ ++#: wp-admin/upgrade.php:55 ++msgid "Upgrade Complete" ++msgstr "Mise à jour terminée" ++ ++#: wp-admin/upgrade.php:56 ++msgid "Your WordPress database has been successfully upgraded!" ++msgstr "La base de données WordPress a été mise à jour avec succÚs !" ++ ++#: wp-admin/upgrade.php:61 ++#, php-format ++msgid "%s queries" ++msgstr "%s requêtes" ++ ++#: wp-admin/upgrade.php:63 ++#, php-format ++msgid "%s seconds" ++msgstr "%s secondes" ++ ++#: wp-admin/upload.php:59 ++msgid "Manage Media|manage media header" ++msgstr "Gérer les médias" ++ ++#: wp-admin/upload.php:114 ++msgid "Your media has been saved." ++msgstr "Votre média a été enregistré." ++ ++#: wp-admin/upload.php:114 ++msgid "View media" ++msgstr "Voir le média" ++ ++#: wp-admin/upload.php:114 ++msgid "Edit media" ++msgstr "Modifier le média" ++ ++#: wp-admin/upload.php:118 ++msgid "Media updated." ++msgstr "Média mis à jour." ++ ++#: wp-admin/upload.php:119 ++msgid "Media deleted." ++msgstr "Média supprimé." ++ ++#: wp-admin/user-edit.php:63 ++#: wp-admin/user-edit.php:142 ++msgid "Edit User" ++msgstr "Modifier l’utilisateur" ++ ++#: wp-admin/user-edit.php:81 ++msgid "Invalid user ID." ++msgstr "Identifiant utilisateur invalide." ++ ++#: wp-admin/user-edit.php:98 ++#: wp-admin/user-edit.php:117 ++msgid "You do not have permission to edit this user." ++msgstr "Vous n’avez pas l’autorisation de modifier cet utilisateur." ++ ++#: wp-admin/user-edit.php:124 ++msgid "User updated." ++msgstr "Utilisateur mis à jour." ++ ++#: wp-admin/user-edit.php:126 ++msgid "« Back to Authors and Users" ++msgstr "« Retour aux auteurs et utilisateurs" ++ ++#: wp-admin/user-edit.php:142 ++msgid "Your Profile and Personal Options" ++msgstr "Votre profil et vos options personnelles" ++ ++#: wp-admin/user-edit.php:154 ++msgid "Personal Options" ++msgstr "Options personnelles" ++ ++#: wp-admin/user-edit.php:159 ++msgid "Visual Editor" ++msgstr "Éditeur Visuel" ++ ++#: wp-admin/user-edit.php:160 ++msgid "Use the visual editor when writing" ++msgstr "Utiliser l’éditeur visuel pour écrire" ++ ++#: wp-admin/user-edit.php:164 ++msgid "Admin Color Scheme" ++msgstr "Couleurs de l’interface d’administration" ++ ++#: wp-admin/user-edit.php:199 ++msgid "Your username cannot be changed" ++msgstr "Votre identifiant ne peut pas être modifié" ++ ++#: wp-admin/user-edit.php:203 ++msgid "Role:" ++msgstr "RÃŽle :" ++ ++#: wp-admin/user-edit.php:220 ++#: wp-admin/user-edit.php:222 ++msgid "— No role for this blog —" ++msgstr "— Pas de rÃŽle sur ce blog —" ++ ++#: wp-admin/user-edit.php:228 ++msgid "First name" ++msgstr "Prénom" ++ ++#: wp-admin/user-edit.php:233 ++msgid "Last name" ++msgstr "Nom" ++ ++#: wp-admin/user-edit.php:238 ++msgid "Nickname" ++msgstr "Pseudonyme" ++ ++#: wp-admin/user-edit.php:243 ++msgid "Display name publicly as" ++msgstr "Nom à afficher publiquement" ++ ++#: wp-admin/user-edit.php:266 ++msgid "Contact Info" ++msgstr "Informations de contact" ++ ++#: wp-admin/user-edit.php:271 ++msgid "Required" ++msgstr "Obligatoire" ++ ++#: wp-admin/user-edit.php:275 ++#: wp-admin/users.php:421 ++#: wp-content/themes/classic/comments.php:57 ++msgid "Website" ++msgstr "Site web" ++ ++#: wp-admin/user-edit.php:280 ++msgid "AIM" ++msgstr "AIM" ++ ++#: wp-admin/user-edit.php:285 ++msgid "Yahoo IM" ++msgstr "Yahoo Messenger" ++ ++#: wp-admin/user-edit.php:290 ++msgid "Jabber / Google Talk" ++msgstr "Jabber / Google Talk" ++ ++#: wp-admin/user-edit.php:295 ++msgid "About Yourself" ++msgstr "À propos de vous" ++ ++#: wp-admin/user-edit.php:295 ++msgid "About the user" ++msgstr "À propos de l’utilisateur" ++ ++#: wp-admin/user-edit.php:299 ++msgid "Biographical Info" ++msgstr "Renseignements biographiques" ++ ++#: wp-admin/user-edit.php:300 ++msgid "Share a little biographical information to fill out your profile. This may be shown publicly." ++msgstr "Donnez quelques informations biographiques pour remplir votre profil. Ceci peut être affiché publiquement." ++ ++#: wp-admin/user-edit.php:308 ++msgid "New Password:" ++msgstr "Nouveau mot de passe :" ++ ++#: wp-admin/user-edit.php:309 ++msgid "If you would like to change the password type a new one. Otherwise leave this blank." ++msgstr "Si vous voulez changer le mot de passe de l’utilisateur, tapez-en un nouveau deux fois de suite ci-dessous. Sinon, laissez les champs vides." ++ ++#: wp-admin/user-edit.php:310 ++msgid "Type your new password again." ++msgstr "Veuillez saisir une deuxiÚme fois votre mot de passe." ++ ++#: wp-admin/user-edit.php:312 ++msgid "Password Strength:" ++msgstr "Sûreté du mot de passe :" ++ ++# A vérifier en contexte ++#: wp-admin/user-edit.php:313 ++#: wp-includes/script-loader.php:124 ++msgid "Too short" ++msgstr "Trop court" ++ ++#: wp-admin/user-edit.php:313 ++msgid "Hint: Use upper and lower case characters, numbers and symbols like !\"?$%^&( in your password." ++msgstr "Conseil : utilisez une combinaison de caractÚres en minuscule et en majuscule, de chiffres et de symboles comme !\"?$%^&( pour votre mot de passe." ++ ++#: wp-admin/user-edit.php:332 ++msgid "Additional Capabilities:" ++msgstr "Fonctionnalités complémentaires :" ++ ++#: wp-admin/user-edit.php:350 ++msgid "Update Profile" ++msgstr "Mettre à jour le profil" ++ ++#: wp-admin/user-edit.php:350 ++msgid "Update User" ++msgstr "Mettre à jour l’utilisateur" ++ ++#: wp-admin/users.php:41 ++msgid "You can’t edit users." ++msgstr "Vous ne pouvez pas modifier d’utilisateurs." ++ ++#: wp-admin/users.php:47 ++msgid "You can’t edit that user." ++msgstr "Vous ne pouvez pas modifier cet utilisateur." ++ ++#: wp-admin/users.php:73 ++#: wp-admin/users.php:114 ++msgid "You can’t delete users." ++msgstr "Vous ne pouvez pas supprimer d’utilisateurs." ++ ++#: wp-admin/users.php:81 ++msgid "You can’t delete that user." ++msgstr "Vous ne pouvez pas supprimer cet utilisateur." ++ ++#: wp-admin/users.php:125 ++msgid "Delete Users" ++msgstr "Supprimer des utilisateurs" ++ ++#: wp-admin/users.php:126 ++msgid "You have specified these users for deletion:" ++msgstr "Vous avez choisi de supprimer ces utilisateurs :" ++ ++#: wp-admin/users.php:133 ++#, php-format ++msgid "ID #%1s: %2s The current user will not be deleted." ++msgstr "ID n°%1s : %2s L’utilisateur actuel ne sera pas supprimé." ++ ++#: wp-admin/users.php:135 ++#, php-format ++msgid "ID #%1s: %2s" ++msgstr "ID n°%1s : %2s" ++ ++#: wp-admin/users.php:148 ++msgid "What should be done with posts and links owned by this user?" ++msgstr "Que voulez-vous faire des articles et liens de cet utilisateur ?" ++ ++#: wp-admin/users.php:151 ++msgid "Delete all posts and links." ++msgstr "Supprimer tous les articles et les liens." ++ ++#: wp-admin/users.php:153 ++msgid "Attribute all posts and links to:" ++msgstr "Attribuer tous les articles et les liens à :" ++ ++#: wp-admin/users.php:156 ++msgid "Confirm Deletion" ++msgstr "Confirmer la suppression" ++ ++#: wp-admin/users.php:158 ++msgid "There are no valid users selected for deletion." ++msgstr "Aucun utilisateur valide n’est sélectionné pour la suppression." ++ ++#: wp-admin/users.php:170 ++msgid "You can’t create users." ++msgstr "Vous ne pouvez pas créer d’utilisateurs." ++ ++#: wp-admin/users.php:204 ++#, php-format ++msgid "%s user deleted" ++msgid_plural "%s users deleted" ++msgstr[0] "%s utilisateur supprimé" ++msgstr[1] "%s utilisateurs supprimés" ++ ++#: wp-admin/users.php:209 ++msgid "New user created." ++msgstr "Le nouvel utilisateur a été créé." ++ ++#: wp-admin/users.php:214 ++msgid "Changed roles." ++msgstr "RÃŽles modifiés." ++ ++#: wp-admin/users.php:219 ++msgid "The current user's role must have user editing capabilities." ++msgstr "L’utilisateur courant doit avoir un niveau lui permettant de modifier les utilisateurs." ++ ++#: wp-admin/users.php:220 ++msgid "Other user roles have been changed." ++msgstr "Les rÃŽles des autres utilisateurs ont été modifiés." ++ ++#: wp-admin/users.php:225 ++msgid "You can't delete the current user." ++msgstr "Vous ne pouvez pas supprimer l’utilisateur courant." ++ ++#: wp-admin/users.php:226 ++msgid "Other users have been deleted." ++msgstr "Les autres utilisateurs ont été supprimés." ++ ++#: wp-admin/users.php:246 ++#, php-format ++msgid "Users Matching \"%s\"" ++msgstr "Utilisateurs correspondants à \"%s\"" ++ ++#: wp-admin/users.php:248 ++msgid "Manage Users" ++msgstr "Gérer les utilisateurs" ++ ++#: wp-admin/users.php:269 ++msgid "All Users" ++msgstr "Tous les utilisateurs" ++ ++#: wp-admin/users.php:282 ++#, php-format ++msgid "%1$s (%2$s)|user role with count" ++msgstr "%1$s (%2$s)" ++ ++#: wp-admin/users.php:291 ++msgid "Search Users" ++msgstr "Chercher dans les utilisateurs" ++ ++#: wp-admin/users.php:302 ++msgid "Change role to…" ++msgstr "Changer de rÃŽle pour…" ++ ++#: wp-admin/users.php:327 ++msgid "« Back to All Users" ++msgstr "« Retour aux utilisateurs" ++ ++#: wp-admin/users.php:337 ++#: wp-admin/users.php:435 ++msgid "Role" ++msgstr "RÃŽle" ++ ++#: wp-admin/users.php:383 ++msgid "Add New User" ++msgstr "Ajouter un utilisateur" ++ ++#: wp-admin/users.php:397 ++#, php-format ++msgid "Users can register themselves or you can manually create users here." ++msgstr "Les utilisateurs peuvent s’enregistrer, ou vous pouvez créer des utilisateurs manuellement ici." ++ ++#: wp-admin/users.php:399 ++#, php-format ++msgid "Users cannot currently register themselves, but you can manually create users here." ++msgstr "Les utilisateurs ne peuvent pas s’enregistrer eux-mêmes, mais vous pouvez créer manuellement des utilisateurs ici." ++ ++#: wp-admin/users.php:405 ++msgid "Username (required)" ++msgstr "Identifiant (obligatoire)" ++ ++#: wp-admin/users.php:409 ++msgid "First Name" ++msgstr "Prénom" ++ ++#: wp-admin/users.php:413 ++msgid "Last Name" ++msgstr "Nom" ++ ++#: wp-admin/users.php:417 ++msgid "E-mail (required)" ++msgstr "E-mail (obligatoire)" ++ ++#: wp-admin/users.php:427 ++msgid "Password (twice)" ++msgstr "Mot de passe (deux fois)" ++ ++#: wp-admin/users.php:448 ++msgid "Add User" ++msgstr "Ajouter un utilisateur" ++ ++#: wp-admin/widgets.php:13 ++#: wp-admin/widgets.php:233 ++#: wp-includes/functions.php:1538 ++msgid "Widgets" ++msgstr "Widgets" ++ ++#: wp-admin/widgets.php:28 ++msgid "No Sidebars Defined" ++msgstr "Aucune barre latérale définie" ++ ++#: wp-admin/widgets.php:32 ++msgid "You are seeing this message because the theme you are currently using isn’t widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please follow these instructions." ++msgstr "Vous lisez ce message parce que le thÚme que vous utilisez n’est pas conçu pour les widgets, ce qui signifie que vous ne pouvez pas modifier sa barre latérale. Pour obtenir des informations sur la maniÚre de rendre votre thÚme compatible avec les widgets, lisez ces informations (en anglais)." ++ ++#: wp-admin/widgets.php:131 ++#: wp-admin/widgets.php:143 ++msgid "Add Widget" ++msgstr "Ajouter un widget" ++ ++# A vérifier en contexte... ++#: wp-admin/widgets.php:185 ++#, php-format ++msgid "You are using %1$s widget in the \"%2$s\" sidebar." ++msgid_plural "You are using %1$s widgets in the \"%2$s\" sidebar." ++msgstr[0] "Vous utilisez actuellement %1$s widget dans la colonne latérale \"%2$s\"." ++msgstr[1] "Vous utilisez actuellement %1$s widgets dans la colonne latérale \"%2$s\"." ++ ++# A vérifier en contexte... ++#: wp-admin/widgets.php:187 ++#, php-format ++msgid "You are using %1$s widget in the sidebar." ++msgid_plural "You are using %1$s widgets in the sidebar." ++msgstr[0] "Vous utilisez actuellement %1$s widget dans la colonne latérale." ++msgstr[1] "Vous utilisez actuellement %1$s widgets dans la colonne latérale." ++ ++#: wp-admin/widgets.php:209 ++msgid "Show any widgets" ++msgstr "Affiche tous les widgets" ++ ++#: wp-admin/widgets.php:209 ++msgid "Show all widgets" ++msgstr "Afficher tous les widgets" ++ ++#: wp-admin/widgets.php:210 ++msgid "Show unused widgets" ++msgstr "Afficher les widgets inutilisés" ++ ++#: wp-admin/widgets.php:211 ++msgid "Show used widgets" ++msgstr "Afficher les widgets utilisés" ++ ++#: wp-admin/widgets.php:218 ++msgid "Changes saved." ++msgstr "Modifications enregistrées." ++ ++#: wp-admin/widgets.php:236 ++msgid "Search Widgets" ++msgstr "Chercher dans les widgets" ++ ++#: wp-admin/widgets.php:241 ++msgid "Available Widgets" ++msgstr "Widgets disponibles" ++ ++#: wp-admin/widgets.php:257 ++msgid "Current Widgets" ++msgstr "Widgets actuels" ++ ++#: wp-admin/widgets.php:292 ++msgid "Add more from the Available Widgets section." ++msgstr "Ajoutez-en plus depuis la section Widgets Disponibles." ++ ++#: wp-app.php:168 ++#: wp-app.php:203 ++msgid "Sorry, you do not have the right to access this blog." ++msgstr "Désolé, vous n’avez pas l’autorisation d’accéder à ce blog." ++ ++#: wp-app.php:256 ++msgid "Sorry, you do not have the right to edit/publish new posts." ++msgstr "Désolé, vous n’avez pas l’autorisation de modifier/publier de nouveaux articles." ++ ++#: wp-app.php:281 ++#: wp-app.php:448 ++#: wp-app.php:599 ++#: xmlrpc.php:1018 ++#: xmlrpc.php:1338 ++msgid "Sorry, your entry could not be posted. Something wrong happened." ++msgstr "Désolé, votre entrée n’a pas pu être publiée. Une erreur est survenue." ++ ++#: wp-app.php:299 ++msgid "Sorry, you do not have the right to access this post." ++msgstr "Désolé, vous n’avez pas l’autorisation d’accéder à cet article." ++ ++#: wp-app.php:327 ++#: wp-app.php:473 ++#: wp-app.php:535 ++#: wp-app.php:570 ++#: xmlrpc.php:1054 ++msgid "Sorry, you do not have the right to edit this post." ++msgstr "Désolé, vous n’avez pas l’autorisation de modifier cet article." ++ ++#: wp-app.php:356 ++#: wp-app.php:489 ++#: xmlrpc.php:1070 ++msgid "For some strange yet very annoying reason, this post could not be edited." ++msgstr "Pour une bien étrange raison, cet article n’a pu être modifié." ++ ++#: wp-app.php:370 ++#: wp-app.php:504 ++#: xmlrpc.php:1101 ++msgid "Sorry, you do not have the right to delete this post." ++msgstr "Désolé, vous n’avez pas l’autorisation de supprimer cet article." ++ ++#: wp-app.php:379 ++#: wp-app.php:520 ++#: xmlrpc.php:1106 ++msgid "For some strange yet very annoying reason, this post could not be deleted." ++msgstr "Pour une bien étrange raison, cet article n’a pu être effacé." ++ ++#: wp-app.php:390 ++msgid "Sorry, you do not have permission to upload files." ++msgstr "Vous n’avez pas l’autorisation d’envoyer des fichiers." ++ ++#: wp-app.php:511 ++#: wp-app.php:542 ++#: wp-app.php:577 ++msgid "Error ocurred while accessing post metadata for file location." ++msgstr "Une erreur est survenue pendant l’accÚs aux métadonnées de l’article concernant la localisation du fichier." ++ ++#: wp-comments-post.php:21 ++msgid "Sorry, comments are closed for this item." ++msgstr "Désolé, les commentaires sont fermés pour cet article." ++ ++#: wp-comments-post.php:46 ++msgid "Sorry, you must be logged in to post a comment." ++msgstr "Désolé, vous devez être connecté(e) pour rédiger un commentaire." ++ ++#: wp-comments-post.php:53 ++msgid "Error: please fill the required fields (name, email)." ++msgstr "Erreur : veuillez renseigner les champs obligatoires vides (nom, e-mail)." ++ ++#: wp-comments-post.php:55 ++msgid "Error: please enter a valid email address." ++msgstr "Erreur : veuillez saisir une adresse e-mail valide" ++ ++#: wp-comments-post.php:59 ++msgid "Error: please type a comment." ++msgstr "Erreur : veuillez saisir un commentaire." ++ ++#: wp-content/plugins/akismet/akismet.php:41 ++#: wp-content/plugins/akismet/akismet.php:115 ++msgid "Akismet Configuration" ++msgstr "Configuration Akismet" ++ ++#: wp-content/plugins/akismet/akismet.php:102 ++msgid "Your key has been cleared." ++msgstr "Votre clef a été vidée." ++ ++#: wp-content/plugins/akismet/akismet.php:103 ++msgid "Your key has been verified. Happy blogging!" ++msgstr "Votre clef a été vérifiée. Écrivez sans limite !" ++ ++#: wp-content/plugins/akismet/akismet.php:104 ++msgid "The key you entered is invalid. Please double-check it." ++msgstr "Votre clef ne semble pas être valide. Veuillez la vérifier." ++ ++#: wp-content/plugins/akismet/akismet.php:105 ++msgid "The key you entered could not be verified because a connection to akismet.com could not be established. Please check your server configuration." ++msgstr "La clef que vous avez entrée n’a pas pu être vérifiée car la connexion à akismet.com n’a pas pu être établie. Veuillez vérifier la configuration de votre serveur." ++ ++#: wp-content/plugins/akismet/akismet.php:106 ++msgid "There was a problem connecting to the Akismet server. Please check your server configuration." ++msgstr "Il y a eu un problÚme lors de la connexion au serveur Akismet. Veuillez vérifier la configuration de votre serveur." ++ ++#: wp-content/plugins/akismet/akismet.php:107 ++#, php-format ++msgid "Please enter an API key. (Get your key.)" ++msgstr "Veuillez donner une clef d’API. (Obtenir votre clef)" ++ ++#: wp-content/plugins/akismet/akismet.php:108 ++msgid "This key is valid." ++msgstr "Cette clef est valide." ++ ++#: wp-content/plugins/akismet/akismet.php:109 ++msgid "The key below was previously validated but a connection to akismet.com can not be established at this time. Please check your server configuration." ++msgstr "La clef ci-dessous a déjà été validée, mais la connexion à akismet.com ne peut être établie pour le moment. Veuillez vérifier la configuration de votre serveur." ++ ++#: wp-content/plugins/akismet/akismet.php:112 ++#: wp-content/themes/default/functions.php:357 ++msgid "Options saved." ++msgstr "Options enregistrées." ++ ++#: wp-content/plugins/akismet/akismet.php:119 ++#, php-format ++msgid "For many people, Akismet will greatly reduce or even completely eliminate the comment and trackback spam you get on your site. If one does happen to get through, simply mark it as \"spam\" on the moderation screen and Akismet will learn from the mistakes. If you don't have a WordPress.com account yet, you can get one at WordPress.com." ++msgstr "Déjà utilisé par de nombreux blogs, Akismet va vous permettre de réduire ou même d’éliminer complÚtement les commentaires indésirables (spam) et de faux rétroliens qui affectent votre site. Si l’un d’eux passait au travers, vous n’avez qu’à simplement le marquer comme « indésirable » sur l’écran de modération, et Akismet apprendra de ses erreurs. Si vous n’avez pas encore de compte sur WordPress.com, vous pouvez en obtenir un en allant sur WordPress.com." ++ ++#: wp-content/plugins/akismet/akismet.php:122 ++msgid "WordPress.com API Key" ++msgstr "Clef d’API WordPress.com" ++ ++#: wp-content/plugins/akismet/akismet.php:126 ++msgid "What is this?" ++msgstr "Qu’est-ce que c’est ? (en anglais)" ++ ++#: wp-content/plugins/akismet/akismet.php:128 ++msgid "Why might my key be invalid?" ++msgstr "Pourquoi ma clef ne serait-elle pas valide ?" ++ ++#: wp-content/plugins/akismet/akismet.php:129 ++msgid "This can mean one of two things, either you copied the key wrong or that the plugin is unable to reach the Akismet servers, which is most often caused by an issue with your web host around firewalls or similar." ++msgstr "Cela peut avoir deux causes : soit vous avez mal recopié la clef, soit l’extension n’a pas été capable de contacter les serveurs d’Akismet. Cette derniÚre erreur est souvent causée par un problÚme du cÃŽté du pare-feu (firewall) de l’hébergeur." ++ ++#: wp-content/plugins/akismet/akismet.php:132 ++msgid "Automatically discard spam comments on posts older than a month." ++msgstr "Effacer automatiquement les commentaires indésirables des articles datant de plus d’un mois." ++ ++#: wp-content/plugins/akismet/akismet.php:133 ++msgid "Update options »" ++msgstr "Mettre à jour les options »" ++ ++#: wp-content/plugins/akismet/akismet.php:154 ++msgid "Akismet is almost ready." ++msgstr "Akismet est presque prêt." ++ ++#: wp-content/plugins/akismet/akismet.php:154 ++#, php-format ++msgid "You must enter your WordPress.com API key for it to work." ++msgstr "Vous devez donner votre clef d’API WordPress.com pour qu’il fonctionne." ++ ++#: wp-content/plugins/akismet/akismet.php:326 ++#, php-format ++msgid "Akismet Spam (%s)" ++msgstr "Commentaires indésirables Akismet (%s)" ++ ++#: wp-content/plugins/akismet/akismet.php:328 ++#: wp-content/plugins/akismet/akismet.php:330 ++msgid "Akismet Spam" ++msgstr "Commentaire indésirable Akismet" ++ ++#: wp-content/plugins/akismet/akismet.php:339 ++#: wp-content/plugins/akismet/akismet.php:358 ++msgid "You do not have sufficient permission to moderate comments." ++msgstr "Vous n’avez pas les droits suffisants pour modérer les commentaires." ++ ++#: wp-content/plugins/akismet/akismet.php:370 ++#, php-format ++msgid "%1$s comments recovered." ++msgstr "%s commentaires récupérés." ++ ++#: wp-content/plugins/akismet/akismet.php:374 ++msgid "All spam deleted." ++msgstr "Tous les commentaires indésirables ont été supprimés." ++ ++#: wp-content/plugins/akismet/akismet.php:422 ++msgid "Caught Spam" ++msgstr "Commentaires indésirables bloqués" ++ ++#: wp-content/plugins/akismet/akismet.php:427 ++#, php-format ++msgid "Akismet has caught %1$s spam for you since you first installed it." ++msgstr "Akismet a bloqué %1$s commentaires indésirables pour vous depuis que vous l’avez installé." ++ ++#: wp-content/plugins/akismet/akismet.php:434 ++msgid "You have no spam currently in the queue. Must be your lucky day. :)" ++msgstr "Aucun commentaire indésirable dans la file d’attente actuellement. Ce doit être votre jour de chance :)" ++ ++#: wp-content/plugins/akismet/akismet.php:437 ++msgid "You can delete all of the spam from your database with a single click. This operation cannot be undone, so you may wish to check to ensure that no legitimate comments got through first. Spam is automatically deleted after 15 days, so don’t sweat it." ++msgstr "Vous pouvez supprimer tous les commentaires indésirables de votre base de données en un seul clic. Cette opération est irréversible, donc vous devez vérifier qu’aucun commentaire légitime n’y ait été placé par mégarde. Dans tous les cas, ces commentaires indésirables sont automatiquement supprimés aprÚs 15 jours." ++ ++#: wp-content/plugins/akismet/akismet.php:443 ++#: wp-content/plugins/akismet/akismet.php:621 ++#, php-format ++msgid "There are currently %1$s comments identified as spam." ++msgstr "Il y a actuellement %1$s commentaire(s) identifié(s) comme indésirable(s)." ++ ++#: wp-content/plugins/akismet/akismet.php:443 ++#: wp-content/plugins/akismet/akismet.php:621 ++msgid "Delete all" ++msgstr "Tout supprimer " ++ ++#: wp-content/plugins/akismet/akismet.php:450 ++#: wp-content/themes/classic/sidebar.php:16 ++#: wp-includes/widgets.php:445 ++#: wp-includes/widgets.php:1379 ++msgid "Search" ++msgstr "Recherche" ++ ++#: wp-content/plugins/akismet/akismet.php:452 ++msgid "These are the latest comments identified as spam by Akismet. If you see any mistakes, simply mark the comment as \"not spam\" and Akismet will learn from the submission. If you wish to recover a comment from spam, simply select the comment, and click Not Spam. After 15 days we clean out the junk for you." ++msgstr "Voici les derniers commentaires identifiés comme indésirables par Akismet. Si vous voyez une erreur, changez le marquage du commentaire en cliquant sur “ N’est pas indésirable ” et Askimet s’en souviendra. Si vous voulez récupérer un commentaire marqué comme indésirable, sélectionnez-le et cliquez sur le bouton “ Marquer les commentaires cochés comme légitimes ”. Au bout de 15 jours, nous supprimons de toute façons tous les indésirables." ++ ++#: wp-content/plugins/akismet/akismet.php:483 ++msgid "All" ++msgstr "Tout" ++ ++#: wp-content/plugins/akismet/akismet.php:506 ++msgid "Search Spam »" ++msgstr "Chercher dans les commentaires indésirables »" ++ ++#: wp-content/plugins/akismet/akismet.php:513 ++#: wp-content/plugins/akismet/akismet.php:580 ++msgid "« Previous Page" ++msgstr "« Page précédente" ++ ++#: wp-content/plugins/akismet/akismet.php:534 ++#: wp-content/plugins/akismet/akismet.php:601 ++msgid "Next Page »" ++msgstr "Page suivante »" ++ ++#: wp-content/plugins/akismet/akismet.php:556 ++msgid "IP:" ++msgstr "IP :" ++ ++#: wp-content/plugins/akismet/akismet.php:562 ++msgid "Not Spam" ++msgstr "N’est pas un commentaire indésirable" ++ ++#: wp-content/plugins/akismet/akismet.php:568 ++msgid "View Post" ++msgstr "Afficher l’article" ++ ++#: wp-content/plugins/akismet/akismet.php:607 ++msgid "De-spam marked comments »" ++msgstr "Marquer les commentaires cochés comme légitimes »" ++ ++#: wp-content/plugins/akismet/akismet.php:609 ++msgid "Comments you de-spam will be submitted to Akismet as mistakes so it can learn and get better." ++msgstr "Les commentaires que vous marquez comme légitimes seront envoyés à Akismet pour qu’il puisse apprendre de ses erreurs." ++ ++#: wp-content/plugins/akismet/akismet.php:645 ++#, php-format ++msgid "Akismet has protected your site from %3$s spam comments." ++msgstr "Akismet a protégé votre site de %3$s commentaires indésirables." ++ ++#: wp-content/plugins/akismet/akismet.php:660 ++#, php-format ++msgid "Akismet has protected your site from %2$s spam comment already," ++msgid_plural "Akismet has protected your site from %2$s spam comments already," ++msgstr[0] "Akismet a déjà protégé votre site de %2$s commentaire indésirable," ++msgstr[1] "Akismet a déjà protégé votre site de %2$s commentaires indésirables," ++ ++#: wp-content/plugins/akismet/akismet.php:665 ++#, php-format ++msgid "Akismet blocks spam from getting to your blog," ++msgstr "Akismet empêche les commentaires indésirables d’arriver sur votre blog," ++ ++#: wp-content/plugins/akismet/akismet.php:670 ++#, php-format ++msgid "and there's %1$s comment in your spam queue right now." ++msgid_plural "and there are %1$s comments in your spam queue right now." ++msgstr[0] "et il y a %1$s commentaire dans votre file de commentaires indésirables actuellement." ++msgstr[1] "et il y a %1$s commentaires dans votre file de commentaires indésirables actuellement." ++ ++#: wp-content/plugins/akismet/akismet.php:675 ++#, php-format ++msgid "but there's nothing in your spam queue at the moment." ++msgstr "mais il n’y a rien dans votre file d’indésirables actuellement." ++ ++#: wp-content/plugins/akismet/akismet.php:678 ++#, php-format ++msgid "%1$s %2$s|akismet_rightnow" ++msgstr "%1$s %2$s" ++ ++#: wp-content/plugins/akismet/akismet.php:693 ++msgid "Recheck Queue for Spam" ++msgstr "Revérifier la file de commentaires indésirables" ++ ++#: wp-content/plugins/akismet/akismet.php:708 ++msgid "Check for Spam" ++msgstr "Vérifier les commentaires indésirables" ++ ++#: wp-content/plugins/akismet/akismet.php:775 ++#, php-format ++msgid "%1$s %2$sspam comments%3$s %4$sblocked by%5$s
    %6$sAkismet%7$s" ++msgstr "%1$s %2$scommentaires indésirables%3$s %4$sbloqués par%5$s
    %6$sAkismet%7$s" ++ ++#: wp-content/plugins/akismet/akismet.php:837 ++msgid "spam comments" ++msgstr "commentaires indésirables" ++ ++#: wp-content/plugins/akismet/akismet.php:837 ++msgid "blocked by" ++msgstr "bloqué par" ++ ++#: wp-content/themes/classic/comments.php:2 ++msgid "Enter your password to view comments." ++msgstr "Saisissez votre mot de passe pour accéder aux commentaires." ++ ++#: wp-content/themes/classic/comments.php:5 ++#: wp-includes/comment-template.php:394 ++msgid "No Comments" ++msgstr "Pas de commentaire" ++ ++#: wp-content/themes/classic/comments.php:5 ++#: wp-includes/comment-template.php:396 ++msgid "1 Comment" ++msgstr "Un commentaire" ++ ++#: wp-content/themes/classic/comments.php:5 ++#: wp-includes/comment-template.php:392 ++msgid "% Comments" ++msgstr "% commentaires" ++ ++#: wp-content/themes/classic/comments.php:7 ++#: wp-content/themes/classic/comments.php:36 ++#: wp-content/themes/classic/comments-popup.php:55 ++msgid "Leave a comment" ++msgstr "Laisser un commentaire" ++ ++#: wp-content/themes/classic/comments.php:18 ++#: wp-content/themes/classic/comments-popup.php:45 ++msgid "Trackback" ++msgstr "Rétrolien" ++ ++#: wp-content/themes/classic/comments.php:18 ++#: wp-content/themes/classic/comments-popup.php:45 ++msgid "Pingback" ++msgstr "Ping" ++ ++#: wp-content/themes/classic/comments.php:18 ++#: wp-content/themes/classic/comments-popup.php:45 ++msgid "by" ++msgstr "par" ++ ++#: wp-content/themes/classic/comments.php:18 ++#: wp-content/themes/classic/index.php:11 ++msgid "Edit This" ++msgstr "Modifier" ++ ++#: wp-content/themes/classic/comments.php:26 ++#: wp-content/themes/classic/comments-popup.php:51 ++msgid "No comments yet." ++msgstr "Pas encore de commentaire." ++ ++#: wp-content/themes/classic/comments.php:29 ++#: wp-content/themes/classic/comments-popup.php:24 ++msgid "RSS feed for comments on this post." ++msgstr "Flux RSS des commentaires de cet article." ++ ++#: wp-content/themes/classic/comments.php:31 ++msgid "TrackBack URL" ++msgstr "URL de rétrolien" ++ ++#: wp-content/themes/classic/comments.php:39 ++#, php-format ++msgid "You must be logged in to post a comment." ++msgstr "Vous devez être connecté pour rédiger un commentaire." ++ ++#: wp-content/themes/classic/comments.php:46 ++#: wp-content/themes/classic/comments-popup.php:60 ++#, php-format ++msgid "Logged in as %s." ++msgstr "Connecté(e) en tant que %s." ++ ++#: wp-content/themes/classic/comments.php:46 ++#: wp-content/themes/classic/comments-popup.php:60 ++msgid "Log out of this account" ++msgstr "Se déconnecter" ++ ++#: wp-content/themes/classic/comments.php:46 ++#: wp-content/themes/classic/comments-popup.php:60 ++msgid "Log out »" ++msgstr "Déconnexion »" ++ ++#: wp-content/themes/classic/comments.php:51 ++#: wp-content/themes/classic/comments.php:54 ++msgid "(required)" ++msgstr "(obligatoire)" ++ ++#: wp-content/themes/classic/comments.php:54 ++msgid "Mail (will not be published)" ++msgstr "Adresse e-mail (ne sera pas publiée)" ++ ++#: wp-content/themes/classic/comments.php:61 ++#, php-format ++msgid "You can use these tags: %s" ++msgstr "Vous pouvez utilisez ces balises : %s" ++ ++#: wp-content/themes/classic/comments.php:65 ++msgid "Submit Comment" ++msgstr "Soumettre le commentaire" ++ ++#: wp-content/themes/classic/comments.php:75 ++#: wp-content/themes/classic/comments-popup.php:92 ++msgid "Sorry, the comment form is closed at this time." ++msgstr "Désolé, les commentaires sont fermés pour le moment." ++ ++#: wp-content/themes/classic/comments-popup.php:27 ++msgid "The URL to TrackBack this entry is:" ++msgstr "L’URL pour faire un rétrolien sur cet article est :" ++ ++#: wp-content/themes/classic/comments-popup.php:56 ++msgid "Line and paragraph breaks automatic, e-mail address never displayed, HTML allowed:" ++msgstr "Les paragraphes et retours à la ligne sont automatiques. Les e-mails sont masqués. HTML autorisé :" ++ ++#: wp-content/themes/classic/comments-popup.php:76 ++msgid "URL" ++msgstr "URL" ++ ++#: wp-content/themes/classic/comments-popup.php:81 ++msgid "Your Comment" ++msgstr "Votre commentaire" ++ ++#: wp-content/themes/classic/comments-popup.php:87 ++msgid "Say It!" ++msgstr "Dites-le !" ++ ++#: wp-content/themes/classic/comments-popup.php:97 ++msgid "Close this window." ++msgstr "Fermer cette fenêtre." ++ ++#: wp-content/themes/classic/comments-popup.php:105 ++#, php-format ++msgid "Powered by WordPress" ++msgstr "Propulsé par WordPress" ++ ++#: wp-content/themes/classic/comments-popup.php:105 ++#: wp-content/themes/classic/footer.php:6 ++#: wp-content/themes/classic/sidebar.php:33 ++#: wp-includes/widgets.php:514 ++msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform." ++msgstr "Propulsé par WordPress, plate-forme de publication personnelle sémantique de pointe." ++ ++#: wp-content/themes/classic/footer.php:6 ++#, php-format ++msgid "Powered by WordPress" ++msgstr "Propulsé par WordPress" ++ ++#: wp-content/themes/classic/index.php:11 ++msgid "Filed under:" ++msgstr "Classé dans :" ++ ++#: wp-content/themes/classic/index.php:11 ++msgid "Tags: " ++msgstr "Tags :" ++ ++#: wp-content/themes/classic/index.php:14 ++msgid "(more...)" ++msgstr "(Lire la suite…)" ++ ++#: wp-content/themes/classic/index.php:19 ++msgid "Comments (0)" ++msgstr "Commentaires (0)" ++ ++#: wp-content/themes/classic/index.php:19 ++msgid "Comments (1)" ++msgstr "Commentaires (1)" ++ ++#: wp-content/themes/classic/index.php:19 ++msgid "Comments (%)" ++msgstr "Commentaires (%)" ++ ++#: wp-content/themes/classic/index.php:27 ++msgid "Sorry, no posts matched your criteria." ++msgstr "Désolé, aucun article ne correspond à vos critÚres." ++ ++#: wp-content/themes/classic/index.php:30 ++msgid "« Older Posts" ++msgstr "« Articles plus anciens" ++ ++#: wp-content/themes/classic/index.php:30 ++msgid "Newer Posts »" ++msgstr "Articles plus récents »" ++ ++#: wp-content/themes/classic/sidebar.php:8 ++#: wp-includes/post-template.php:162 ++msgid "Pages:" ++msgstr "Pages :" ++ ++#: wp-content/themes/classic/sidebar.php:12 ++msgid "Search:" ++msgstr "Recherche :" ++ ++#: wp-content/themes/classic/sidebar.php:20 ++msgid "Archives:" ++msgstr "Archives :" ++ ++#: wp-content/themes/classic/sidebar.php:25 ++msgid "Meta:" ++msgstr "Méta :" ++ ++#: wp-content/themes/classic/sidebar.php:29 ++msgid "Syndicate this site using RSS" ++msgstr "Suivez ce site par syndication RSS" ++ ++#: wp-content/themes/classic/sidebar.php:29 ++msgid "RSS" ++msgstr "RSS" ++ ++#: wp-content/themes/classic/sidebar.php:30 ++#: wp-includes/widgets.php:513 ++msgid "The latest comments to all posts in RSS" ++msgstr "Les derniers commentaires pour tous les articles, au format RSS" ++ ++#: wp-content/themes/classic/sidebar.php:30 ++#: wp-includes/widgets.php:513 ++msgid "Comments RSS" ++msgstr "RSS des commentaires" ++ ++#: wp-content/themes/classic/sidebar.php:31 ++msgid "This page validates as XHTML 1.0 Transitional" ++msgstr "Cette page est en XHTML 1.0 Transitional valide" ++ ++#: wp-content/themes/classic/sidebar.php:31 ++msgid "Valid XHTML" ++msgstr "XHTML valide" ++ ++#: wp-content/themes/default/functions.php:147 ++msgid "Customize Header" ++msgstr "Personnalisation de l’entête" ++ ++#: wp-content/themes/default/functions.php:147 ++#: wp-content/themes/default/functions.php:361 ++msgid "Header Image and Color" ++msgstr "Image et couleur de l’entête " ++ ++# wp-content/themes/default/functions.php:160 ++#: wp-content/themes/default/functions.php:160 ++msgid "Close Color Picker" ++msgstr "Fermer le selecteur de couleur." ++ ++# wp-content/themes/default/functions.php:375 ++#: wp-content/themes/default/functions.php:375 ++msgid "Font Color:" ++msgstr "Couleur du texte :" ++ ++# wp-content/themes/default/functions.php:375 ++#: wp-content/themes/default/functions.php:375 ++#, php-format ++msgid "Any CSS color (%s or %s or %s)" ++msgstr "Une couleur CSS (%s ou %s ou %s)" ++ ++# wp-content/themes/default/functions.php:376 ++#: wp-content/themes/default/functions.php:376 ++msgid "Upper Color:" ++msgstr "Couleur du haut :" ++ ++# wp-content/themes/default/functions.php:376 ++# wp-content/themes/default/functions.php:377 ++#: wp-content/themes/default/functions.php:376 ++#: wp-content/themes/default/functions.php:377 ++#, php-format ++msgid "HEX only (%s or %s)" ++msgstr "HEX seulement (%s ou %s)" ++ ++# wp-content/themes/default/functions.php:377 ++#: wp-content/themes/default/functions.php:377 ++msgid "Lower Color:" ++msgstr "Couleur du bas :" ++ ++# wp-content/themes/default/functions.php:379 ++#: wp-content/themes/default/functions.php:379 ++msgid "Toggle Text" ++msgstr "Afficher/masquer le texte" ++ ++#: wp-content/themes/default/functions.php:380 ++msgid "Use Defaults" ++msgstr "Utiliser les valeurs par défaut" ++ ++# wp-content/themes/default/functions.php:389 ++#: wp-content/themes/default/functions.php:389 ++msgid "Font Color" ++msgstr "Couleur du texte" ++ ++#: wp-content/themes/default/functions.php:390 ++msgid "Upper Color" ++msgstr "Couleur du haut" ++ ++# wp-content/themes/default/functions.php:391 ++#: wp-content/themes/default/functions.php:391 ++msgid "Lower Color" ++msgstr "Couleur du bas" ++ ++#: wp-content/themes/default/functions.php:392 ++msgid "Revert" ++msgstr "Annuler" ++ ++#: wp-content/themes/default/functions.php:400 ++msgid "Update Header" ++msgstr "Mettre à jour l’entête" ++ ++# wp-content/themes/default/functions.php:406 ++#: wp-content/themes/default/functions.php:406 ++msgid "Font Color (CSS):" ++msgstr "Couleur du texte (CSS) :" ++ ++# wp-content/themes/default/functions.php:407 ++#: wp-content/themes/default/functions.php:407 ++msgid "Upper Color (HEX):" ++msgstr "Couleur du haut (HEX) :" ++ ++# wp-content/themes/default/functions.php:408 ++#: wp-content/themes/default/functions.php:408 ++msgid "Lower Color (HEX):" ++msgstr "Couleur du bas (HEX) :" ++ ++#: wp-content/themes/default/functions.php:409 ++msgid "Select Default Colors" ++msgstr "Sélectionner les couleurs par défaut" ++ ++# wp-content/themes/default/functions.php:410 ++#: wp-content/themes/default/functions.php:410 ++msgid "Toggle Text Display" ++msgstr "Afficher/masquer le texte" ++ ++#: wp-includes/atomlib.php:133 ++#, php-format ++msgid "XML error: %s at line %d" ++msgstr "Erreur XML : %s à la ligne %d" ++ ++#: wp-includes/author-template.php:237 ++#, php-format ++msgid "Visit %s's website" ++msgstr "Aller sur le site de “ %s “" ++ ++#: wp-includes/author-template.php:371 ++#: wp-includes/author-template.php:469 ++#, php-format ++msgid "Posts by %s" ++msgstr "Articles par %s" ++ ++#: wp-includes/bookmark-template.php:73 ++#, php-format ++msgid "Last updated: %s" ++msgstr "DernÚre mise à jour : %s" ++ ++#: wp-includes/bookmark-template.php:161 ++msgid "Bookmarks" ++msgstr "Favoris" ++ ++#: wp-includes/category-template.php:62 ++#: wp-includes/category-template.php:129 ++#: wp-includes/category-template.php:132 ++#: wp-includes/category-template.php:139 ++#: wp-includes/category-template.php:152 ++#: wp-includes/category-template.php:155 ++#: wp-includes/category-template.php:162 ++#, php-format ++msgid "View all posts in %s" ++msgstr "Voir tous les articles dans %s" ++ ++#: wp-includes/category-template.php:300 ++#: wp-includes/category-template.php:302 ++msgid "No categories" ++msgstr "Pas de catégorie" ++ ++#: wp-includes/category-template.php:416 ++#, php-format ++msgid "%d topic" ++msgid_plural "%d topics" ++msgstr[0] "%d sujet" ++msgstr[1] "%d sujets" ++ ++#: wp-includes/classes.php:634 ++#, php-format ++msgid "View all posts filed under %s" ++msgstr "Voir tous les articles classés dans %s" ++ ++#: wp-includes/classes.php:649 ++#, php-format ++msgid "Feed for all posts filed under %s" ++msgstr "Flux pour tous les articles classés dans %s" ++ ++#: wp-includes/class-pop3.php:83 ++msgid "No server specified" ++msgstr "Pas de serveur spécifié" ++ ++#: wp-includes/class-pop3.php:91 ++#: wp-includes/class-pop3.php:103 ++#: wp-includes/class-pop3.php:124 ++#: wp-includes/class-pop3.php:247 ++#: wp-includes/class-pop3.php:301 ++#: wp-includes/class-pop3.php:312 ++#: wp-includes/class-pop3.php:360 ++#: wp-includes/class-pop3.php:394 ++#: wp-includes/class-pop3.php:427 ++#: wp-includes/class-pop3.php:526 ++#: wp-includes/class-pop3.php:549 ++msgid "Error " ++msgstr "Erreur " ++ ++#: wp-includes/class-pop3.php:116 ++msgid "no login ID submitted" ++msgstr "pas d’identifiant de connexion envoyé" ++ ++#: wp-includes/class-pop3.php:119 ++#: wp-includes/class-pop3.php:139 ++msgid "connection not established" ++msgstr "la connexion n’est pas établie" ++ ++#: wp-includes/class-pop3.php:136 ++#: wp-includes/class-pop3.php:172 ++msgid "No password submitted" ++msgstr "Pas de mot de passe envoyé" ++ ++#: wp-includes/class-pop3.php:144 ++msgid "Authentication failed" ++msgstr "Échec lors de l’identification" ++ ++#: wp-includes/class-pop3.php:163 ++#: wp-includes/class-pop3.php:206 ++#: wp-includes/class-pop3.php:231 ++#: wp-includes/class-pop3.php:273 ++#: wp-includes/class-pop3.php:347 ++#: wp-includes/class-pop3.php:387 ++#: wp-includes/class-pop3.php:417 ++#: wp-includes/class-pop3.php:451 ++#: wp-includes/class-pop3.php:514 ++#: wp-includes/class-pop3.php:582 ++msgid "No connection to server" ++msgstr "Pas de connexion au serveur" ++ ++#: wp-includes/class-pop3.php:169 ++msgid "No login ID submitted" ++msgstr "Pas d’identifiant de connexion envoyé" ++ ++#: wp-includes/class-pop3.php:177 ++msgid "No server banner" ++msgstr "Pas de blocage serveur" ++ ++#: wp-includes/class-pop3.php:177 ++#: wp-includes/class-pop3.php:187 ++msgid "abort" ++msgstr "abandonner" ++ ++#: wp-includes/class-pop3.php:187 ++msgid "apop authentication failed" ++msgstr "l’identification apop a échouée" ++ ++#: wp-includes/class-pop3.php:324 ++msgid "Premature end of list" ++msgstr "Fin de liste inattendue" ++ ++#: wp-includes/class-pop3.php:457 ++msgid "Empty command string" ++msgstr "Chaîne de commande vide" ++ ++#: wp-includes/class-pop3.php:477 ++msgid "connection does not exist" ++msgstr "la connexion n’existe pas" ++ ++#: wp-includes/class-pop3.php:587 ++msgid "No msg number submitted" ++msgstr "Pas de numéro de message envoyé" ++ ++#: wp-includes/class-pop3.php:593 ++msgid "Command failed " ++msgstr "Échec de la commande " ++ ++#: wp-includes/comment.php:337 ++msgid "Duplicate comment detected; it looks as though you've already said that!" ++msgstr "Détection d’un doublon : il semble que vous avez déjà envoyé ce commentaire !" ++ ++#: wp-includes/comment.php:388 ++msgid "You are posting comments too quickly. Slow down." ++msgstr "Vous envoyez vos commentaires trop rapidement. Calmez-vous." ++ ++#: wp-includes/comment-template.php:25 ++#: wp-includes/theme.php:116 ++msgid "Anonymous" ++msgstr "Anonyme" ++ ++#: wp-includes/comment-template.php:735 ++msgid "Enter your password to view comments" ++msgstr "Saisissez votre mot de passe pour accéder aux commentaires" ++ ++#: wp-includes/comment-template.php:763 ++#, php-format ++msgid "Comment on %s" ++msgstr "Commentaire sur %s" ++ ++#: wp-includes/cron.php:135 ++msgid "Once Hourly" ++msgstr "Une fois par heure" ++ ++#: wp-includes/cron.php:136 ++msgid "Once Daily" ++msgstr "Une fois par jour" ++ ++#: wp-includes/deprecated.php:123 ++msgid "new WordPress Loop" ++msgstr "Nouvelle boucle WordPress" ++ ++#: wp-includes/deprecated.php:1016 ++msgid "Last updated" ++msgstr "Mis à jour récemment" ++ ++# Ne pas ajouter d'entités : utilisé par le flux RSS ++#: wp-includes/feed-atom-comments.php:18 ++#: wp-includes/feed-rss2-comments.php:20 ++#, php-format ++msgid "Comments on: %s" ++msgstr "Commentaires sur : %s" ++ ++#: wp-includes/feed-atom-comments.php:20 ++#, php-format ++msgid "Comments for %1$s searching on %2$s" ++msgstr "Commentaires pour %1$s, recherche de %2$s" ++ ++#: wp-includes/feed-atom-comments.php:22 ++#: wp-includes/feed-rss2-comments.php:24 ++#, php-format ++msgid "Comments for %s" ++msgstr "Commentaires pour %s" ++ ++#: wp-includes/feed-atom-comments.php:53 ++#: wp-includes/feed-rss2-comments.php:42 ++#, php-format ++msgid "Comment on %1$s by %2$s" ++msgstr "Commentaires sur %1$s par %2$s" ++ ++# Ne pas ajouter d'entités : utilisé par le flux RSS ++#: wp-includes/feed-atom-comments.php:55 ++#: wp-includes/feed-rss2-comments.php:44 ++#, php-format ++msgid "By: %s" ++msgstr "Par : %s" ++ ++#: wp-includes/feed-rss2-comments.php:22 ++#, php-format ++msgid "Comments for %s searching on %s" ++msgstr "Commentaires pour %s, recherche de %s" ++ ++# Ne pas ajouter d'entités : utilisé par le flux RSS ++#: wp-includes/feed-rss2-comments.php:52 ++msgid "Protected Comments: Please enter your password to view comments." ++msgstr "Commentaires protégés : saisissez votre mot de passe pour accéder aux commentaires." ++ ++#: wp-includes/formatting.php:812 ++#, php-format ++msgid "%s min" ++msgid_plural "%s mins" ++msgstr[0] "%s minute" ++msgstr[1] "%s minutes" ++ ++#: wp-includes/formatting.php:818 ++#, php-format ++msgid "%s hour" ++msgid_plural "%s hours" ++msgstr[0] "%s heure" ++msgstr[1] "%s heures" ++ ++#: wp-includes/formatting.php:824 ++#, php-format ++msgid "%s day" ++msgid_plural "%s days" ++msgstr[0] "%s jour" ++msgstr[1] "%s jours" ++ ++#: wp-includes/formatting.php:1371 ++msgid ", |between list items" ++msgstr ", " ++ ++#: wp-includes/formatting.php:1372 ++msgid ", and |between last two list items" ++msgstr ", et " ++ ++#: wp-includes/formatting.php:1373 ++msgid " and |between only two list items" ++msgstr " et " ++ ++#: wp-includes/functions.php:250 ++#, php-format ++msgid "%s is a protected WP option and may not be modified" ++msgstr "%s est une option protégée de WordPress, et ne peut être modifiée" ++ ++#: wp-includes/functions.php:907 ++#, php-format ++msgid "ERROR: %s is not a valid feed template" ++msgstr "ERREUR : %s n’est pas un flux valide" ++ ++#: wp-includes/functions.php:1113 ++#: wp-includes/functions.php:1175 ++#, php-format ++msgid "Unable to create directory %s. Is its parent directory writable by the server?" ++msgstr "Impossible de créer le dossier %s. Son dossier parent est-il accessible en écriture par le serveur ?" ++ ++#: wp-includes/functions.php:1160 ++msgid "Empty filename" ++msgstr "Pas de nom de fichier" ++ ++#: wp-includes/functions.php:1181 ++#, php-format ++msgid "Could not write file %s" ++msgstr "Impossible d’écrire le fichier %s" ++ ++#: wp-includes/functions.php:1283 ++#, php-format ++msgid "Your attempt to edit this attachment: "%s" has failed." ++msgstr "Votre tentative de modification le fichier joint “ %s ” a échoué." ++ ++#: wp-includes/functions.php:1285 ++msgid "Your attempt to add this category has failed." ++msgstr "Votre tentative d’ajout de la catégorie a échoué." ++ ++#: wp-includes/functions.php:1286 ++#, php-format ++msgid "Your attempt to delete this category: "%s" has failed." ++msgstr "Votre tentative de suppression de la catégorie “ %s ” a échoué." ++ ++#: wp-includes/functions.php:1287 ++#, php-format ++msgid "Your attempt to edit this category: "%s" has failed." ++msgstr "Votre tentative de modification de la catégorie “ %s ” a échoué." ++ ++#: wp-includes/functions.php:1289 ++#, php-format ++msgid "Your attempt to delete this comment: "%s" has failed." ++msgstr "Votre tentative de suppression du commentaire “ %s ” a échoué." ++ ++#: wp-includes/functions.php:1290 ++#, php-format ++msgid "Your attempt to unapprove this comment: "%s" has failed." ++msgstr "Votre tentative de désapprouvation du commentaire “ %s ” a échoué." ++ ++#: wp-includes/functions.php:1291 ++#, php-format ++msgid "Your attempt to approve this comment: "%s" has failed." ++msgstr "Votre tentative d’approbation du commentaire “ %s ” a échoué." ++ ++#: wp-includes/functions.php:1292 ++#, php-format ++msgid "Your attempt to edit this comment: "%s" has failed." ++msgstr "Votre tentative de modification du commentaire “ %s ” a échoué." ++ ++#: wp-includes/functions.php:1293 ++msgid "Your attempt to bulk modify comments has failed." ++msgstr "Votre tentative de modification des commentaires a échoué." ++ ++#: wp-includes/functions.php:1294 ++msgid "Your attempt to moderate comments has failed." ++msgstr "Votre tentative de modération des commentaires a échoué." ++ ++#: wp-includes/functions.php:1296 ++msgid "Your attempt to add this link has failed." ++msgstr "Votre tentative pour ajouter ce lien a échoué." ++ ++#: wp-includes/functions.php:1297 ++#, php-format ++msgid "Your attempt to delete this link: "%s" has failed." ++msgstr "Votre tentative de suppression du lien “ %s ” a échoué." ++ ++#: wp-includes/functions.php:1298 ++#, php-format ++msgid "Your attempt to edit this link: "%s" has failed." ++msgstr "Votre tentative de modification du lien “ %s ” a échoué." ++ ++#: wp-includes/functions.php:1299 ++msgid "Your attempt to bulk modify links has failed." ++msgstr "Votre tentative de modification des liens a échoué." ++ ++#: wp-includes/functions.php:1301 ++msgid "Your attempt to add this page has failed." ++msgstr "Votre tentative pour ajouter cette page a échoué." ++ ++#: wp-includes/functions.php:1302 ++#, php-format ++msgid "Your attempt to delete this page: "%s" has failed." ++msgstr "Votre tentative de suppresion de la page “ %s ” a échoué." ++ ++#: wp-includes/functions.php:1303 ++#, php-format ++msgid "Your attempt to edit this page: "%s" has failed." ++msgstr "Votre tentative de modification de la page “ %s ” a échoué." ++ ++#: wp-includes/functions.php:1305 ++#, php-format ++msgid "Your attempt to edit this plugin file: "%s" has failed." ++msgstr "Votre tentative de modification du fichier de l’extension “ %s ” a échoué." ++ ++#: wp-includes/functions.php:1306 ++#, php-format ++msgid "Your attempt to activate this plugin: "%s" has failed." ++msgstr "Votre tentative de modification d’activation de l’extension “ %s ” a échoué." ++ ++#: wp-includes/functions.php:1307 ++#, php-format ++msgid "Your attempt to deactivate this plugin: "%s" has failed." ++msgstr "Votre tentative de modification de désactivation de l’extension “ %s ” a échoué." ++ ++#: wp-includes/functions.php:1308 ++#, php-format ++msgid "Your attempt to upgrade this plugin: "%s" has failed." ++msgstr "Votre tentative de mise à jour de l’extension “ %s ” a échoué." ++ ++#: wp-includes/functions.php:1310 ++msgid "Your attempt to add this post has failed." ++msgstr "Votre tentative d’ajout d’un article a échoué." ++ ++#: wp-includes/functions.php:1311 ++#, php-format ++msgid "Your attempt to delete this post: "%s" has failed." ++msgstr "Votre tentative de suppression de l’article “ %s ” a échoué." ++ ++#: wp-includes/functions.php:1312 ++#, php-format ++msgid "Your attempt to edit this post: "%s" has failed." ++msgstr "Votre tentative de modification de l’article “ %s ” a échoué." ++ ++#: wp-includes/functions.php:1314 ++msgid "Your attempt to add this user has failed." ++msgstr "Votre tentative pour ajouter cet utilisateur a échoué." ++ ++#: wp-includes/functions.php:1315 ++msgid "Your attempt to delete users has failed." ++msgstr "Votre tentative de suppressions des utilisateurs a échoué." ++ ++#: wp-includes/functions.php:1316 ++msgid "Your attempt to bulk modify users has failed." ++msgstr "Votre tentative de modifications des utilisateurs a échoué." ++ ++#: wp-includes/functions.php:1317 ++#, php-format ++msgid "Your attempt to edit this user: "%s" has failed." ++msgstr "Votre tentative de modification de l’utilisateur “ %s ” a échoué." ++ ++#: wp-includes/functions.php:1318 ++#, php-format ++msgid "Your attempt to modify the profile for: "%s" has failed." ++msgstr "Votre tentative de modification du profile de “ %s ” a échoué." ++ ++#: wp-includes/functions.php:1320 ++msgid "Your attempt to edit your settings has failed." ++msgstr "Votre tentative de modification de vos réglages a échoué." ++ ++#: wp-includes/functions.php:1321 ++#, php-format ++msgid "Your attempt to change your permalink structure to: %s has failed." ++msgstr "Votre tentative de modification de la structure des permaliens en %s a échoué." ++ ++#: wp-includes/functions.php:1322 ++#, php-format ++msgid "Your attempt to edit this file: "%s" has failed." ++msgstr "Votre tentative d’édition du fichier “ %s ” a échoué." ++ ++#: wp-includes/functions.php:1323 ++#, php-format ++msgid "Your attempt to edit this theme file: "%s" has failed." ++msgstr "Votre tentative de modification du fichier du thÚme “ %s ” a échoué." ++ ++#: wp-includes/functions.php:1324 ++#, php-format ++msgid "Your attempt to switch to this theme: "%s" has failed." ++msgstr "Votre tentative de modification du thÚme “ %s ” a échoué." ++ ++#: wp-includes/functions.php:1339 ++msgid "Are you sure you want to do this?" ++msgstr "Êtes-vous certain(e) de vouloir faire cela ?" ++ ++#: wp-includes/functions.php:1344 ++msgid "WordPress Failure Notice" ++msgstr "Avertissement d’échec de WordPress" ++ ++#: wp-includes/functions.php:1347 ++msgid "Please try again." ++msgstr "Merci de réessayer." ++ ++#: wp-includes/functions.php:1395 ++msgid "WordPress › Error" ++msgstr "WordPress » Erreur" ++ ++#: wp-includes/general-template.php:36 ++#: wp-login.php:261 ++#: wp-login.php:264 ++#: wp-login.php:329 ++msgid "Log in" ++msgstr "Connexion" ++ ++#: wp-includes/general-template.php:38 ++msgid "Log out" ++msgstr "Déconnexion" ++ ++#: wp-includes/general-template.php:48 ++#: wp-login.php:262 ++#: wp-login.php:325 ++#: wp-login.php:403 ++msgid "Register" ++msgstr "Inscription" ++ ++#: wp-includes/general-template.php:52 ++msgid "Site Admin" ++msgstr "Admin. du Site" ++ ++# %1$s : le mois ++# %2$d : l'année ++#: wp-includes/general-template.php:414 ++#, php-format ++msgid "%1$s %2$d" ++msgstr "%1$s %2$d" ++ ++#: wp-includes/general-template.php:591 ++#: wp-includes/widgets.php:1364 ++#: wp-includes/widgets.php:1365 ++msgid "Calendar" ++msgstr "Calendrier" ++ ++#: wp-includes/general-template.php:592 ++#, php-format ++msgid "%1$s %2$s|Used as a calendar caption" ++msgstr "%1$s %2$s" ++ ++#: wp-includes/general-template.php:616 ++#: wp-includes/general-template.php:626 ++#, php-format ++msgid "View posts for %1$s %2$s" ++msgstr "Voir les articles pour %1$s %2$s" ++ ++#: wp-includes/general-template.php:933 ++#: wp-includes/general-template.php:937 ++msgid "HTML" ++msgstr "HTML" ++ ++#: wp-includes/general-template.php:934 ++#: wp-includes/general-template.php:938 ++msgid "Visual" ++msgstr "Visuel" ++ ++#: wp-includes/general-template.php:1032 ++msgid "« Previous" ++msgstr "« Précédent" ++ ++#: wp-includes/general-template.php:1033 ++msgid "Next »" ++msgstr "Suivant »" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:13 ++msgid "Do you want to use the WYSIWYG mode for this textarea?" ++msgstr "Voulez-vous utiliser le mode WYSIWYG pour ce champ textuel ?" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:14 ++msgid "Apply" ++msgstr "Appliquer" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:15 ++#: wp-includes/script-loader.php:183 ++msgid "Insert" ++msgstr "Insérer" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:18 ++#: wp-includes/js/tinymce/wp-mce-help.php:246 ++msgid "Close" ++msgstr "Fermer" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:19 ++msgid "Browse" ++msgstr "Parcourir" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:20 ++#: wp-includes/js/tinymce/langs/wp-langs.php:300 ++msgid "Class" ++msgstr "Classe" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:21 ++msgid "-- Not set --" ++msgstr "-- Pas réglé --" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:22 ++#: wp-includes/js/tinymce/langs/wp-langs.php:227 ++msgid "Copy/Cut/Paste is not available in Mozilla and Firefox." ++msgstr "Le Copier/Couper/Coller n’est pas disponible dans Mozilla ni Firefox." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:23 ++msgid "Currently not supported by your browser, use keyboard shortcuts instead." ++msgstr "Actuellement pas reconnu par votre navigateur ; utiliser les raccourcis-clavier à la place." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:24 ++msgid "Sorry, but we have noticed that your popup-blocker has disabled a window that provides application functionality. You will need to disable popup blocking on this site in order to fully utilize this tool." ++msgstr "Désolé, mais nous avons remarqué que votre bloqueur de fenêtres pop-up a annulé la fenêtre qui apporte certaines fonctionnalités. Vous devrez annuler le blocage de popup pour ce site si vous souhaitez utiliser toutes les fonctions de cet outil." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:25 ++msgid "Error: Invalid values entered, these are marked in red." ++msgstr "Erreur : certaines valeurs entrées ne sont pas valides. Elles sont indiquées en rouge." ++ ++# wp-content/themes/default/functions.php:391 ++#: wp-includes/js/tinymce/langs/wp-langs.php:26 ++#: wp-includes/js/tinymce/langs/wp-langs.php:231 ++msgid "More colors" ++msgstr "Plus de couleurs" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:33 ++msgid "Full" ++msgstr "Complet" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:36 ++msgid "%Y-%m-%d" ++msgstr "%Y-%m-%d" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:37 ++msgid "%H:%M:%S" ++msgstr "%H:%M:%S" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:38 ++msgid "Insert date" ++msgstr "Insérer la date" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:39 ++msgid "Insert time" ++msgstr "Insérer l’heure" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:142 ++#: wp-includes/locale.php:157 ++msgid "January" ++msgstr "janvier" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:143 ++#: wp-includes/locale.php:158 ++msgid "February" ++msgstr "février" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:144 ++#: wp-includes/locale.php:159 ++msgid "March" ++msgstr "mars" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:145 ++#: wp-includes/locale.php:160 ++msgid "April" ++msgstr "avril" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:146 ++#: wp-includes/locale.php:161 ++msgid "May" ++msgstr "mai" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:147 ++#: wp-includes/locale.php:162 ++msgid "June" ++msgstr "juin" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:148 ++#: wp-includes/locale.php:163 ++msgid "July" ++msgstr "juillet" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:149 ++#: wp-includes/locale.php:164 ++msgid "August" ++msgstr "août" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:150 ++#: wp-includes/locale.php:165 ++msgid "September" ++msgstr "septembre" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:151 ++#: wp-includes/locale.php:166 ++msgid "October" ++msgstr "octobre" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:152 ++#: wp-includes/locale.php:167 ++msgid "November" ++msgstr "novembre" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:153 ++#: wp-includes/locale.php:168 ++msgid "December" ++msgstr "décembre" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:157 ++msgid "Jan_January_abbreviation" ++msgstr "jan" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:158 ++msgid "Feb_February_abbreviation" ++msgstr "fév" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:159 ++msgid "Mar_March_abbreviation" ++msgstr "mar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:160 ++msgid "Apr_April_abbreviation" ++msgstr "avr" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:161 ++msgid "May_May_abbreviation" ++msgstr "mai" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:162 ++msgid "Jun_June_abbreviation" ++msgstr "juin" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:163 ++msgid "Jul_July_abbreviation" ++msgstr "juil" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:164 ++msgid "Aug_August_abbreviation" ++msgstr "août" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:165 ++msgid "Sep_September_abbreviation" ++msgstr "sept" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:166 ++msgid "Oct_October_abbreviation" ++msgstr "oct" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:167 ++msgid "Nov_November_abbreviation" ++msgstr "nov" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:168 ++msgid "Dec_December_abbreviation" ++msgstr "déc" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:110 ++#: wp-includes/locale.php:120 ++#: wp-includes/locale.php:133 ++msgid "Sunday" ++msgstr "Dimanche" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:111 ++#: wp-includes/locale.php:121 ++#: wp-includes/locale.php:134 ++msgid "Monday" ++msgstr "Lundi" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:112 ++#: wp-includes/locale.php:122 ++#: wp-includes/locale.php:135 ++msgid "Tuesday" ++msgstr "Mardi" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:113 ++#: wp-includes/locale.php:123 ++#: wp-includes/locale.php:136 ++msgid "Wednesday" ++msgstr "Mercredi" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:114 ++#: wp-includes/locale.php:124 ++#: wp-includes/locale.php:137 ++msgid "Thursday" ++msgstr "Jeudi" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:115 ++#: wp-includes/locale.php:125 ++#: wp-includes/locale.php:138 ++msgid "Friday" ++msgstr "Vendredi" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:116 ++#: wp-includes/locale.php:126 ++#: wp-includes/locale.php:139 ++msgid "Saturday" ++msgstr "Samedi" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:133 ++msgid "Sun" ++msgstr "dim" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:134 ++msgid "Mon" ++msgstr "lun" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:135 ++msgid "Tue" ++msgstr "mar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:136 ++msgid "Wed" ++msgstr "mer" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:137 ++msgid "Thu" ++msgstr "jeu" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:138 ++msgid "Fri" ++msgstr "ven" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:139 ++msgid "Sat" ++msgstr "sam" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:46 ++msgid "Print" ++msgstr "Imprimer" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:49 ++#: wp-includes/js/tinymce/langs/wp-langs.php:295 ++msgid "Preview" ++msgstr "Aperçu" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:52 ++msgid "Direction left to right" ++msgstr "Direction de gauche à droite" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:53 ++msgid "Direction right to left" ++msgstr "Direction de droite à gauche" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:56 ++msgid "Insert new layer" ++msgstr "Insérer un nouveau calque" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:57 ++msgid "Move forward" ++msgstr "Avancer" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:58 ++msgid "Move backward" ++msgstr "Reculer" ++ ++# "inverser" à vérifier live ++#: wp-includes/js/tinymce/langs/wp-langs.php:59 ++msgid "Toggle absolute positioning" ++msgstr "Inverser le positionnement absolu" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:60 ++msgid "New layer..." ++msgstr "Nouvelle couche…" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:64 ++msgid "Cancel all changes" ++msgstr "Annuler toutes les modificiations" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:67 ++msgid "Insert non-breaking space character" ++msgstr "Insérer un espace insécable" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:70 ++msgid "Run spell checking" ++msgstr "Lancer le correcteur d’orthographe" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:71 ++msgid "ieSpell not detected. Do you want to install it now?" ++msgstr "ieSpell n’a pas été détecté. Voulez-vous l’installer maintenant ?" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:74 ++msgid "Horizontale rule" ++msgstr "RÚgle horizontale" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:77 ++msgid "Emotions" ++msgstr "Émotions" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:80 ++msgid "Find" ++msgstr "Chercher" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:81 ++msgid "Find/Replace" ++msgstr "Chercher/Remplacer" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:84 ++#: wp-includes/js/tinymce/langs/wp-langs.php:206 ++#: wp-includes/js/tinymce/langs/wp-langs.php:260 ++msgid "Insert/edit image" ++msgstr "Insérer/modifier une image" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:87 ++#: wp-includes/js/tinymce/langs/wp-langs.php:202 ++#: wp-includes/js/tinymce/langs/wp-langs.php:277 ++msgid "Insert/edit link" ++msgstr "Insérer/modifier un lien" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:90 ++msgid "Citation" ++msgstr "Citation" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:91 ++msgid "Abbreviation" ++msgstr "Abréviation" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:92 ++msgid "Acronym" ++msgstr "Acronyme" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:93 ++msgid "Deletion" ++msgstr "Coupure" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:94 ++msgid "Insertion" ++msgstr "Insertion" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:95 ++msgid "Insert/Edit Attributes" ++msgstr "Insérer/modider des attributs" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:98 ++msgid "Edit CSS Style" ++msgstr "Modifier le style CSS" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:101 ++msgid "Paste as Plain Text" ++msgstr "Coller du texte simple" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:102 ++msgid "Paste from Word" ++msgstr "Coller du texte Word" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:103 ++msgid "Select All" ++msgstr "Sélectionner tout" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:106 ++#: wp-includes/js/tinymce/langs/wp-langs.php:108 ++msgid "Use CTRL+V on your keyboard to paste the text into the window." ++msgstr "Utilisez CTRL-V sur votre clavier pour coller le texte dans la fenêtre." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:107 ++msgid "Keep linebreaks" ++msgstr "Conserver les sauts de ligne" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:111 ++msgid "Inserts a new table" ++msgstr "Insérer une nouvelle table" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:112 ++msgid "Insert row before" ++msgstr "Insérer une ligne avant" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:113 ++msgid "Insert row after" ++msgstr "Insérer une ligne aprÚs" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:114 ++msgid "Delete row" ++msgstr "Effacer la ligne" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:115 ++msgid "Insert column before" ++msgstr "Insérer une colonne avant" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:116 ++msgid "Insert column after" ++msgstr "Insérer une colonne aprÚs" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:117 ++msgid "Remove column" ++msgstr "Enlever la colonne" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:118 ++msgid "Split merged table cells" ++msgstr "Scinder les cellules fusionnées du tableau" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:119 ++msgid "Merge table cells" ++msgstr "Fusionner les cellules du tableau" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:120 ++msgid "Table row properties" ++msgstr "Propriétés de la ligne du tableau" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:121 ++msgid "Table cell properties" ++msgstr "Propriétés de la cellule du tableau" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:122 ++msgid "Table properties" ++msgstr "Propriétés du tableau" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:123 ++msgid "Paste table row before" ++msgstr "Coller la ligne du tableau avant" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:124 ++msgid "Paste table row after" ++msgstr "Coller la ligne du tableau aprÚs" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:125 ++msgid "Cut table row" ++msgstr "Couper la ligne du tableau" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:126 ++msgid "Copy table row" ++msgstr "Copier la ligne du tableau" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:127 ++msgid "Delete table" ++msgstr "Effacer le tableau" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:128 ++msgid "Row" ++msgstr "Ligne" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:129 ++msgid "Column" ++msgstr "Colonne" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:130 ++msgid "Cell" ++msgstr "Cellule" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:133 ++msgid "The changes you made will be lost if you navigate away from this page." ++msgstr "Les modifications que vous avez faites seront perdues si vous changez de page." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:136 ++msgid "Toggle fullscreen mode" ++msgstr "Mode plein écran" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:139 ++#: wp-includes/js/tinymce/langs/wp-langs.php:289 ++msgid "Insert / edit embedded media" ++msgstr "Insérer / modifier un élément multimédia intégré" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:140 ++msgid "0| Extra width for the media popup in pixels" ++msgstr "0" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:141 ++msgid "0| Extra height for the media popup in pixels" ++msgstr "0" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:142 ++msgid "Edit embedded media" ++msgstr "Modifier un élément multimédia intégré" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:145 ++msgid "Document properties" ++msgstr "Propriétés du document" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:148 ++msgid "Insert predefined template content" ++msgstr "Insérer le contenu d’un modÚle prédéfini" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:151 ++msgid "Visual control characters on/off." ++msgstr "Activer les caractÚres de mise en page." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:154 ++msgid "Toggle spellchecker" ++msgstr "Correcteur d’orthographe" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:155 ++msgid "Spellchecker settings" ++msgstr "Réglages du correcteur d’orthographe" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:156 ++msgid "Ignore word" ++msgstr "Ignorer le mot" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:157 ++msgid "Ignore all" ++msgstr "Ignorer tout" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:158 ++msgid "Languages" ++msgstr "Langues" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:159 ++msgid "Please wait..." ++msgstr "Veuillez patienter…" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:160 ++msgid "Suggestions" ++msgstr "Suggestions" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:161 ++msgid "No suggestions" ++msgstr "Aucune suggestion" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:162 ++msgid "No misspellings found." ++msgstr "Aucune erreur trouvée." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:165 ++msgid "Insert page break." ++msgstr "Insérer un saut de page." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:169 ++msgid "Styles" ++msgstr "Styles" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:170 ++msgid "Font size" ++msgstr "Taille de police" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:171 ++msgid "Font family" ++msgstr "Famille des police" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:172 ++msgid "Format" ++msgstr "Format" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:173 ++msgid "Paragraph" ++msgstr "Paragraphe" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:174 ++msgid "Div" ++msgstr "Div" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:175 ++#: wp-includes/js/tinymce/wp-mce-help.php:204 ++msgid "Address" ++msgstr "Adresse" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:176 ++msgid "Preformatted" ++msgstr "Préformatté" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:177 ++msgid "Heading 1" ++msgstr "Titre 1" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:178 ++msgid "Heading 2" ++msgstr "Titre 2" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:179 ++msgid "Heading 3" ++msgstr "Titre 3" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:180 ++msgid "Heading 4" ++msgstr "Titre 4" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:181 ++msgid "Heading 5" ++msgstr "Titre 5" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:182 ++msgid "Heading 6" ++msgstr "Titre 6" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:183 ++#: wp-includes/js/tinymce/langs/wp-langs.php:226 ++msgid "Blockquote" ++msgstr "Bloc de citation" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:184 ++msgid "Code" ++msgstr "Code" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:185 ++msgid "Code sample" ++msgstr "Exemple de code" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:186 ++msgid "Definition term " ++msgstr "Terme de définition" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:187 ++msgid "Definition description" ++msgstr "Description de la définition" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:188 ++#: wp-includes/js/tinymce/wp-mce-help.php:200 ++#: wp-includes/js/tinymce/wp-mce-help.php:213 ++msgid "Bold" ++msgstr "Gras" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:189 ++#: wp-includes/js/tinymce/wp-mce-help.php:200 ++#: wp-includes/js/tinymce/wp-mce-help.php:213 ++msgid "Italic" ++msgstr "Italique" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:190 ++#: wp-includes/js/tinymce/wp-mce-help.php:201 ++msgid "Underline" ++msgstr "Souligné" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:191 ++#: wp-includes/js/tinymce/wp-mce-help.php:217 ++msgid "Strikethrough" ++msgstr "Barré" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:192 ++msgid "Align left" ++msgstr "Aligner à gauche" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:193 ++msgid "Align center" ++msgstr "Centrer" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:194 ++msgid "Align right" ++msgstr "Aligner à droite" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:195 ++msgid "Align full" ++msgstr "Justifier" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:196 ++msgid "Unordered list" ++msgstr "Liste non ordonnée" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:197 ++msgid "Ordered list" ++msgstr "Liste ordonnée" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:198 ++msgid "Outdent" ++msgstr "Désindenter" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:199 ++msgid "Indent" ++msgstr "Indenter" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:200 ++#: wp-includes/js/tinymce/wp-mce-help.php:197 ++msgid "Undo" ++msgstr "Annuler" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:201 ++#: wp-includes/js/tinymce/wp-mce-help.php:197 ++msgid "Redo" ++msgstr "Rétablir" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:203 ++msgid "0| Extra width for the link popup in pixels" ++msgstr "0" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:204 ++msgid "0| Extra height for the link popup in pixels" ++msgstr "0" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:205 ++msgid "Unlink" ++msgstr "Supprimer le lien" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:207 ++msgid "0| Extra width for the image popup in pixels" ++msgstr "0" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:208 ++msgid "0| Extra height for the image popup in pixels" ++msgstr "0" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:209 ++msgid "Cleanup messy code" ++msgstr "Nettoyer le mauvais code" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:210 ++msgid "Edit HTML Source" ++msgstr "Modifier le code source HTML" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:211 ++msgid "Subscript" ++msgstr "Indice" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:212 ++msgid "Superscript" ++msgstr "Exposant" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:213 ++msgid "Insert horizontal ruler" ++msgstr "Insérer une rÚgle horizontal" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:214 ++msgid "Remove formatting" ++msgstr "Effacer la mise en forme" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:215 ++msgid "Select text color" ++msgstr "Sélectionnez la couleur de texte" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:216 ++msgid "Select background color" ++msgstr "Sélectionner la couleur du fond" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:217 ++msgid "Insert custom character" ++msgstr "Insérer un caractÚre particulier" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:218 ++msgid "Toggle guidelines/invisible elements" ++msgstr "Afficher les lignes lignes/éléments invisibles" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:219 ++#: wp-includes/js/tinymce/langs/wp-langs.php:246 ++msgid "Insert/edit anchor" ++msgstr "Insérer/modifier un lien interne" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:220 ++#: wp-includes/js/tinymce/wp-mce-help.php:196 ++msgid "Cut" ++msgstr "Couper" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:221 ++#: wp-includes/js/tinymce/wp-mce-help.php:195 ++msgid "Copy" ++msgstr "Copier" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:222 ++#: wp-includes/js/tinymce/wp-mce-help.php:195 ++msgid "Paste" ++msgstr "Coller" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:223 ++msgid "Image properties" ++msgstr "Propriétés de l’image" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:224 ++msgid "New document" ++msgstr "Nouveau document" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:225 ++#: wp-includes/js/tinymce/langs/wp-langs.php:239 ++#: wp-includes/js/tinymce/langs/wp-langs.php:396 ++#: wp-includes/js/tinymce/wp-mce-help.php:222 ++msgid "Help" ++msgstr "Aide" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:228 ++msgid "Path" ++msgstr "Chemin" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:229 ++msgid "Are you sure you want to clear all contents?" ++msgstr "Êtes-vous certain(e) de vouloir effacer tout le contenu ?" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:230 ++msgid "Jump to tool buttons - Alt+Q, Jump to editor - Alt-Z, Jump to element path - Alt-X" ++msgstr "Aller aux boutons d’outils - Alt+Q ; Aller à l’éditeur - Alt-Z ; Aller au chemin de l’élément - Alt-X" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:232 ++msgid "0| Extra width for the colorpicker popup in pixels" ++msgstr "0" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:233 ++msgid "0| Extra height for the colorpicker popup in pixels" ++msgstr "0" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:237 ++#: wp-includes/js/tinymce/wp-mce-help.php:228 ++msgid "About TinyMCE" ++msgstr "À propos de TinyMCE" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:240 ++msgid "License" ++msgstr "Licence" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:245 ++msgid "Loaded plugins" ++msgstr "Extensions chargées" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:247 ++msgid "Anchor name" ++msgstr "Nom du lien interne" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:248 ++msgid "HTML Source Editor" ++msgstr "Éditeur de source HTML" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:249 ++msgid "Word wrap" ++msgstr "Retour à la ligne" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:250 ++msgid "Select a color" ++msgstr "Sélectionnez une couleur" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:251 ++msgid "Picker" ++msgstr "Sélecteur" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:252 ++msgid "Color picker" ++msgstr "Sélecteur de couleur" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:253 ++msgid "Palette" ++msgstr "Palette" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:254 ++msgid "Palette colors" ++msgstr "Couleurs de la palette" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:255 ++msgid "Named" ++msgstr "Par nom" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:256 ++msgid "Named colors" ++msgstr "Couleurs nommées" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:257 ++msgid "Color:" ++msgstr "Couleur :" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:258 ++msgid "Name:" ++msgstr "Nom :" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:259 ++msgid "Select custom character" ++msgstr "Sélectionnez un caractÚre" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:262 ++msgid "Image description" ++msgstr "Description de l’image" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:263 ++msgid "Image list" ++msgstr "Liste d’image" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:264 ++msgid "Border" ++msgstr "Bordure" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:265 ++#: wp-includes/js/tinymce/langs/wp-langs.php:294 ++msgid "Dimensions" ++msgstr "Dimensions" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:266 ++msgid "Vertical space" ++msgstr "Espace vertical" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:267 ++msgid "Horizontal space" ++msgstr "Espace horizontal" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:269 ++msgid "Baseline" ++msgstr "Slogan" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:270 ++#: wp-includes/js/tinymce/langs/wp-langs.php:369 ++msgid "Top" ++msgstr "Haut" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:271 ++msgid "Middle" ++msgstr "Milieu" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:272 ++#: wp-includes/js/tinymce/langs/wp-langs.php:371 ++msgid "Bottom" ++msgstr "Bas" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:273 ++msgid "Text top" ++msgstr "Haut du texte" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:274 ++msgid "Text bottom" ++msgstr "Bas du texte" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:280 ++msgid "Open link in the same window" ++msgstr "Ouvrir le lien dans la même fenêtre" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:281 ++msgid "Open link in a new window" ++msgstr "Ouvrir le lien dans une nouvelle fenêtre" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:283 ++msgid "The URL you entered seems to be an email address, do you want to add the required mailto: prefix?" ++msgstr "L’URL que vous avez entrée semble être une adresse e-mail  ; voulez-vous ajouter le préfixe “ mailto: “ requis ?" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:284 ++msgid "The URL you entered seems to external link, do you want to add the required http:// prefix?" ++msgstr "L’URL que vous avez entrée semble être un lien externe ; voulez-vous ajouter le préfixe “ http:// “ requis ?" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:285 ++msgid "Link list" ++msgstr "Liste de liens" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:292 ++msgid "File/URL" ++msgstr "Fichier/URL" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:293 ++#: wp-includes/js/tinymce/wp-mce-help.php:218 ++#: wp-includes/js/tinymce/wp-mce-help.php:219 ++msgid "List" ++msgstr "Liste" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:296 ++msgid "Constrain proportions" ++msgstr "Respecter les proportions" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:297 ++msgid "Type" ++msgstr "Type" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:298 ++msgid "Id" ++msgstr "Id" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:301 ++msgid "V-Space" ++msgstr "V-Space" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:302 ++msgid "H-Space" ++msgstr "H-Space" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:303 ++msgid "Auto play" ++msgstr "Lecture automatique" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:304 ++#: wp-includes/js/tinymce/langs/wp-langs.php:386 ++msgid "Loop" ++msgstr "Répéter" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:305 ++msgid "Show menu" ++msgstr "Afficher le menu" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:306 ++msgid "Quality" ++msgstr "Qualité" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:307 ++msgid "Scale" ++msgstr "Échelle" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:308 ++msgid "Align" ++msgstr "Alignement" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:309 ++msgid "SAlign" ++msgstr "SAlignement" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:310 ++msgid "WMode" ++msgstr "WMode" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:311 ++msgid "Background" ++msgstr "ArriÚre plan" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:312 ++msgid "Base" ++msgstr "Base" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:313 ++msgid "Flashvars" ++msgstr "Variables Flash" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:314 ++msgid "SWLiveConnect" ++msgstr "SWLiveConnect" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:315 ++msgid "AutoHREF" ++msgstr "AutoHREF" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:316 ++msgid "Cache" ++msgstr "Mémoire cache" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:317 ++msgid "Hidden" ++msgstr "Caché" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:318 ++msgid "Controller" ++msgstr "ContrÃŽleur" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:319 ++msgid "Kiosk mode" ++msgstr "Mode kiosque" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:320 ++msgid "Play every frame" ++msgstr "Jouer toutes les images" ++ ++# traduction reprise de la trad tinymce... ++# http://trac.midgard-project.org/browser/trunk/midcom/midcom.helper.datamanager2/static/tinymce/plugins/media/langs/fr_dlg.js ++#: wp-includes/js/tinymce/langs/wp-langs.php:321 ++msgid "Target cache" ++msgstr "Cache cible" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:322 ++msgid "No correction" ++msgstr "Pas de correction" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:323 ++msgid "Enable JavaScript" ++msgstr "Activer JavaScript" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:324 ++#: wp-includes/js/tinymce/langs/wp-langs.php:382 ++msgid "Start time" ++msgstr "Temps de début" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:325 ++msgid "End time" ++msgstr "Temps de fin" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:326 ++msgid "Href" ++msgstr "Href" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:327 ++msgid "Choke speed" ++msgstr "Vitesse de déroulement" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:329 ++msgid "Volume" ++msgstr "Volume" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:330 ++#: wp-includes/js/tinymce/langs/wp-langs.php:385 ++msgid "Auto start" ++msgstr "Démarrage automatique" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:331 ++msgid "Enabled" ++msgstr "Activé" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:332 ++msgid "Fullscreen" ++msgstr "Plein écran" ++ ++# à vérifier ++#: wp-includes/js/tinymce/langs/wp-langs.php:333 ++msgid "Invoke URLs" ++msgstr "Lancer les URL" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:334 ++msgid "Mute" ++msgstr "Muet" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:335 ++msgid "Stretch to fit" ++msgstr "Redimensionner" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:336 ++msgid "Windowless video" ++msgstr "Vidéo sans fenêtre" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:337 ++msgid "Balance" ++msgstr "Balance" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:338 ++msgid "Base URL" ++msgstr "URL de base" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:339 ++msgid "Captioning id" ++msgstr "Id du sous-titre" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:340 ++msgid "Current marker" ++msgstr "Marqueur actuel" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:341 ++msgid "Current position" ++msgstr "Position actuelle" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:342 ++msgid "Default frame" ++msgstr "Frame par défaut" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:343 ++msgid "Play count" ++msgstr "Nombre de lectures" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:344 ++msgid "Rate" ++msgstr "Notation" ++ ++# ??? ++#: wp-includes/js/tinymce/langs/wp-langs.php:345 ++msgid "UI Mode" ++msgstr "Mode UI" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:346 ++msgid "Flash options" ++msgstr "Options Flash" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:347 ++msgid "Quicktime options" ++msgstr "Options de Quicktime" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:348 ++msgid "Windows media player options" ++msgstr "Options Windows Media Player" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:349 ++msgid "Real media player options" ++msgstr "Option Real Media Player" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:350 ++msgid "Shockwave options" ++msgstr "Options de Shockwave" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:351 ++msgid "Auto goto URL" ++msgstr "Lancer automatiquement les URL" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:353 ++msgid "Image status" ++msgstr "Status de l’image" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:354 ++msgid "Maintain aspect" ++msgstr "Maintenir l’aspect" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:355 ++msgid "No java" ++msgstr "Pas de Java" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:356 ++msgid "Prefetch" ++msgstr "Pré-chargement" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:357 ++msgid "Shuffle" ++msgstr "Aléatoire" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:358 ++msgid "Console" ++msgstr "Console" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:359 ++msgid "Num loops" ++msgstr "Nombre de boucles" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:360 ++msgid "Controls" ++msgstr "ContrÃŽles" ++ ++# à vérifier ++#: wp-includes/js/tinymce/langs/wp-langs.php:361 ++msgid "Script callbacks" ++msgstr "Rappels de script" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:362 ++msgid "Stretch style" ++msgstr "Style d’étirement" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:363 ++msgid "Stretch H-Align" ++msgstr "Étirement horizontal" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:364 ++msgid "Stretch V-Align" ++msgstr "Étirement vertical" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:365 ++msgid "Sound" ++msgstr "Son" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:366 ++msgid "Progress" ++msgstr "Progression" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:367 ++msgid "QT Src" ++msgstr "Source du QuickTime" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:368 ++msgid "Streamed rtsp resources should be added to the QT Src field under the advanced tab." ++msgstr "Les flux RTSP (streaming) devraient être ajoutées au champ \"Source du QuickTime\" dans l’onglet Avancé." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:374 ++msgid "Top left" ++msgstr "Haut gauche" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:375 ++msgid "Top right" ++msgstr "En haut à droite" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:376 ++msgid "Bottom left" ++msgstr "Bas gauche" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:377 ++msgid "Bottom right" ++msgstr "Bas droite" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:378 ++msgid "Flash video options" ++msgstr "Options de vidéo de Flash" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:379 ++msgid "Scale mode" ++msgstr "Mode d’étirement" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:380 ++msgid "Buffer" ++msgstr "Tampon" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:381 ++msgid "Start image" ++msgstr "Image de départ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:383 ++msgid "Default volume" ++msgstr "Volume par défaut" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:384 ++msgid "Hidden GUI" ++msgstr "Interface cachée" ++ ++# Basé sur la trad officielle TinyMCE ++# http://trac.midgard-project.org/browser/trunk/midcom/midcom.helper.datamanager2/static/tinymce/plugins/media/langs/fr_dlg.js ++#: wp-includes/js/tinymce/langs/wp-langs.php:387 ++msgid "Show scale modes" ++msgstr "Montrer les différentes échelles" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:388 ++msgid "Smooth video" ++msgstr "Vidéo continue" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:389 ++msgid "JS Callback" ++msgstr "Callback JavaScript" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:393 ++msgid "Show/Hide Kitchen Sink" ++msgstr "Afficher/cacher les options avancées" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:394 ++msgid "Insert More tag" ++msgstr "Insérer la balise More" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:395 ++msgid "Insert Page break" ++msgstr "Insérer la balise « Page break »" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:397 ++msgid "More..." ++msgstr "Lire la suite…" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:398 ++msgid "Next page..." ++msgstr "Page suivante…" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:8 ++msgid "Rich Editor Help" ++msgstr "Aide de l’éditeur visuel" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:162 ++msgid "Basics of Rich Editing" ++msgstr "Bases de l’édition visuelle" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:162 ++msgid "Basics" ++msgstr "Informations de base" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:163 ++msgid "Advanced use of the Rich Editor" ++msgstr "Utilisation avancée de l’éditeur visuel" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:164 ++msgid "Hotkeys" ++msgstr "Raccourcis clavier" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:165 ++msgid "About the software" ++msgstr "À propos de ce logiciel" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:171 ++msgid "Rich Editing Basics" ++msgstr "Base de l’édition visuelle" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:172 ++msgid "Rich editing, also called WYSIWYG for What You See Is What You Get, means your text is formatted as you type. The rich editor creates HTML code behind the scenes while you concentrate on writing. Font styles, links and images all appear approximately as they will on the internet." ++msgstr "L’édition visuelle, aussi appelée WYSIWYG pour What You See Is What You Get (signifiant « ce que vous voyez correspond à ce que vous obtiendrez »), vous permet de mettre en forme votre texte tandis que vous le saisissez. L’éditeur visuel crée le code HTML en coulisse, tandis que vous vous concentrez sur l’écriture. Styles de la police, liens et images apparaissent de la même maniÚre que lors de leur publication sur Internet." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:173 ++msgid "WordPress includes a rich HTML editor that works well in all major web browsers used today. However editing HTML is not the same as typing text. Each web page has two major components: the structure, which is the actual HTML code and is produced by the editor as you type, and the display, that is applied to it by the currently selected WordPress theme and is defined in style.css. WordPress is producing valid XHTML 1.0 which means that inserting multiple line breaks (BR tags) after a paragraph would not produce white space on the web page. The BR tags will be removed as invalid by the internal HTML correcting functions." ++msgstr "Impossible de supprimer la catégorie %s : c’est celle par défaut" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:174 ++msgid "While using the editor, most basic keyboard shortcuts work like in any other text editor. For example: Shift+Enter inserts line break, Ctrl+C = copy, Ctrl+X = cut, Ctrl+Z = undo, Ctrl+Y = redo, Ctrl+A = select all, etc. (on Mac use the Command key instead of Ctrl). See the Hotkeys tab for all available keyboard shortcuts." ++msgstr "Lorsque vous utilisez l’éditeur, les raccourcis clavier les plus basiques fonctionnent comme dans n’importe quel autre éditeur. Par exemple : Shift+Retour insÚre un retour à la ligne, Ctrl+C = copier, Ctrl+X = couper, Ctrl+Z = annuler, Ctrl+Y = rétablir, Ctrl+A = tout sélectionner, etc. (sur Mac, utilisez la touche Apple au lieu de Ctrl). Voir l’onglet Raccourcis Clavier pour connaître tous les raccourcis disponibles." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:175 ++msgid "If you do not like the way the rich editor works, you may turn it off from Your Profile submenu, under Users in the admin menu." ++msgstr "Si vous n\"aimez pas la maniÚre de fonctionner de l’éditeur, vous pouvez le désactiver depuis la page Votre Profil, dans le menu d’administration Utilisateurs." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:179 ++msgid "Advanced Rich Editing" ++msgstr "Édition visuelle avancée" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:180 ++msgid "Images and Attachments" ++msgstr "Images et fichiers joints" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:181 ++msgid "There is a button in the editor toolbar for inserting images that are already hosted somewhere on the internet. If you have a URL for an image, click this button and enter the URL in the box which appears." ++msgstr "Un des boutons de la barre d’outils de l’éditeur sert à insérer une image qui est déjà hébergée quelque-part sur Internet. Si vous avez l’URL de cette image, cliquez sur ce bouton et saisissez l’URL dans la boîte qui apparaît." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:182 ++msgid "If you need to upload an image or another media file from your computer, you can use the Media Library buttons above the editor. The media library will attempt to create a thumbnail-sized copy from each uploaded image. To insert your image into the post, first click on the thumbnail to reveal a menu of options. When you have selected the options you like, click \"Send to Editor\" and your image or file will appear in the post you are editing. If you are inserting a movie, there are additional options in the \"Media\" dialog that can be opened from the second toolbar row." ++msgstr "Si vous devez envoyer une image ou un autre média depuis votre ordinateur, vous pouvez utiliser les boutons de la bibliothÚqe de médas, situés au-dessus de l’éditeur. La bibliothÚque de médias tentera de créer une image miniature lorsque vous enverrez une image. Pour insérer l’image envoyée dans l’article, cliquez tout d’abord sur la miniature pour faire apparaître un menu d’options. Quand vous avez sélectionné les options qui vous conviennent, cliquez sur \"Envoyer dans l’éditeur\", et votre image ou fichier apparaîtra dans l’article que vous êtes en train de modifier. Si vous insérez une vidéo, il y a des options supplémentaires dans la fenêtre \"Média\" que vous pouvez ouvrir depuis la seconde barre d'outils." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:183 ++msgid "HTML in the Rich Editor" ++msgstr "HTML dans l’éditeur visuel" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:184 ++msgid "Any HTML entered directly into the rich editor will show up as text when the post is viewed. What you see is what you get. When you want to include HTML elements that cannot be generated with the toolbar buttons, you must enter it by hand in the HTML editor. Examples are tables and <code>. To do this, click the HTML tab and edit the code, then switch back to Visual mode. If the code is valid and understood by the editor, you should see it rendered immediately." ++msgstr "Tout code HTML inséré via l’éditeur visuel apparaîtra comme du texte quand l’article sera affiché. Si vous voulez inclure du code HTML qui ne peut être généré avec les boutons de la barre d’outils, vous devez l’entrer à la main à l’aide de l’éditeur HTML. Par exemple, c’est la seule façon de faire des tableaux ou d’utiliser la balise <code>. Pour accéder à cet éditeur, cliquez sur le bouton HTML et saisissez votre code, puis retournez dans l’éditeur visuel. Si le code HTML est valide et compris par l’éditeur, le résultat devrait être immédiatement visible." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:185 ++msgid "Pasting in the Rich Editor" ++msgstr "Collage dans l’éditeur visuel" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:186 ++msgid "When pasting content from another web page the results can be inconsistent and depend on your browser and on the web page you are pasting from. The editor tries to correct any invalid HTML code that was pasted, but for best results try using the HTML tab or one of the paste buttons that are on the second row. Alternatively try pasting paragraph by paragraph. In most browsers to select one paragraph at a time, triple-click on it." ++msgstr "Coller du contenu en provenance d’une autre page Web peut amener à des résultats inattendus voire incohérents, en fonction du navigateur que vous utilisez et de la page d’origine du contenu copié/collé. L’éditeur tentera de corriger le code HTML invalide qui a été collé, mais vous obtiendrez de meilleurs résultats en passant par le mode HTML, ou par l’un des boutons de collage situés dans la seconde rangée de boutons. Vous pouvez également essayer de coller le contenu paragraphe par paragraph - dans la plupart des navigateurs, vous pouvez sélectionner un paragraphe seul en triple-cliquant sur celui-ci." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:187 ++msgid "Pasting content from another application, like Word or Excel, is best done with the Paste from Word button on the second row, or in HTML mode." ++msgstr "Si vous souhaiter copier du contenu en provenance d'un autre programme, comme Word ou Excel, il sera préférable d'utiliser le bouton \"Coller du texte Word\", situé dans la seconde rangée de boutons, ou de passer par le mode HTML." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:191 ++msgid "Writing at Full Speed" ++msgstr "Écriture rapide" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:192 ++msgid "Rather than reaching for your mouse to click on the toolbar, use these access keys. Windows and Linux use Ctrl + letter. Macintosh uses Command + letter." ++msgstr "PlutÃŽt que d’attraper votre souris pour cliquer sur la barre d’outils, utilisez les raccourcis clavier. Windows et Linux utilisent Ctrl+<lettre>. Macintosh utilise la touche Apple+<lettre>." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:194 ++#: wp-includes/js/tinymce/wp-mce-help.php:210 ++msgid "Letter" ++msgstr "Lettre" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:196 ++msgid "Select all" ++msgstr "Selectionner tout" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:201 ++msgid "Header 1" ++msgstr "Titre de niveau 1" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:202 ++msgid "Header 2" ++msgstr "Titre de niveau 2" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:202 ++msgid "Header 3" ++msgstr "Titre de niveau 3" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:203 ++msgid "Header 4" ++msgstr "Titre de niveau 4" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:203 ++msgid "Header 5" ++msgstr "Titre de niveau 5" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:204 ++msgid "Header 6" ++msgstr "Titre de niveau 6" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:208 ++msgid "The following shortcuts use different access keys: Alt + Shift + letter." ++msgstr "Vous pouvez accéder aux raccourcis suivants via les touches : Alt + Shift + lettre." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:215 ++msgid "Check Spelling" ++msgstr "Vérifier l’orthographe" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:215 ++msgid "Align Left" ++msgstr "Aligner à gauche" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:216 ++msgid "Justify Text" ++msgstr "Justifier le texte" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:216 ++msgid "Align Center" ++msgstr "Centrer" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:217 ++msgid "Align Right" ++msgstr "Aligner à droite" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:218 ++msgid "Insert link" ++msgstr "Insérer un lien" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:219 ++msgid "Remove link" ++msgstr "Supprimer le lien" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:220 ++msgid "Quote" ++msgstr "Citation" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:220 ++msgid "Insert Image" ++msgstr "Insérer une image" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:221 ++msgid "Full Screen" ++msgstr "Plein écran" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:221 ++msgid "Insert More Tag" ++msgstr "Insérer la balise « More »" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:222 ++msgid "Insert Page Break tag" ++msgstr "Insérer la balise « Page break »" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:223 ++msgid "Switch to HTML mode" ++msgstr "Passer au mode HTML" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:230 ++msgid "Version:" ++msgstr "Version :" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:231 ++#, php-format ++msgid "TinyMCE is a platform independent web based Javascript HTML WYSIWYG editor control released as Open Source under %sLGPL\tby Moxiecode Systems AB. It has the ability to convert HTML TEXTAREA fields or other HTML elements to editor instances." ++msgstr "TinyMCE est un éditeur WYSIWYG compatible avec toutes les plateformes, basé sur Javascript, délivré comme Open Source sous %sLGPL\tpar Moxiecode Systems AB. Il peut convertir les champs HTML TEXTAREA ou autres éléments HTML en instances d’éditeur." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:231 ++msgid "GNU Library General Public Licence" ++msgstr "GNU Library General Public Licence" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:232 ++msgid "Copyright © 2003-2007, Moxiecode Systems AB, All rights reserved." ++msgstr "Copyright © 2003-2008, Moxiecode Systems AB, Tous droits réservés. Traduction par l’équipe de WordPress Francophone." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:233 ++msgid "For more information about this software visit the TinyMCE website." ++msgstr "Pour plus d’information sur ce logiciel, visitez le site de TinyMCE ." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:236 ++msgid "Got Moxie?" ++msgstr "Êtes-vous Moxie ?" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:237 ++msgid "Hosted By Sourceforge" ++msgstr "Hébergé par Sourceforge" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:238 ++msgid "Also on freshmeat" ++msgstr "Également sur Freshmeat" ++ ++#: wp-includes/link-template.php:317 ++msgid "Comments Feed" ++msgstr "Flux du commentaires" ++ ++#: wp-includes/link-template.php:593 ++msgid "Previous Post" ++msgstr "Article précÚdent" ++ ++#: wp-includes/link-template.php:593 ++msgid "Next Post" ++msgstr "Article suivant" ++ ++#: wp-includes/locale.php:120 ++msgid "S_Sunday_initial" ++msgstr "D" ++ ++#: wp-includes/locale.php:121 ++msgid "M_Monday_initial" ++msgstr "L" ++ ++#: wp-includes/locale.php:122 ++msgid "T_Tuesday_initial" ++msgstr "Ma" ++ ++#: wp-includes/locale.php:123 ++msgid "W_Wednesday_initial" ++msgstr "Me" ++ ++#: wp-includes/locale.php:124 ++msgid "T_Thursday_initial" ++msgstr "J" ++ ++#: wp-includes/locale.php:125 ++msgid "F_Friday_initial" ++msgstr "V" ++ ++#: wp-includes/locale.php:126 ++msgid "S_Saturday_initial" ++msgstr "S" ++ ++#: wp-includes/locale.php:175 ++msgid "am" ++msgstr " " ++ ++#: wp-includes/locale.php:176 ++msgid "pm" ++msgstr " " ++ ++#: wp-includes/locale.php:177 ++msgid "AM" ++msgstr " " ++ ++#: wp-includes/locale.php:178 ++msgid "PM" ++msgstr " " ++ ++#: wp-includes/locale.php:183 ++msgid "number_format_decimals|$decimals argument for http://php.net/number_format, default is 0" ++msgstr "0" ++ ++#: wp-includes/locale.php:186 ++msgid "number_format_decimal_point|$dec_point argument for http://php.net/number_format, default is ." ++msgstr ", " ++ ++#: wp-includes/locale.php:189 ++msgid "number_format_thousands_sep|$thousands_sep argument for http://php.net/number_format, default is ," ++msgstr " " ++ ++#: wp-includes/media.php:217 ++#: wp-includes/media.php:221 ++#: wp-includes/media.php:227 ++msgid "Resize path invalid" ++msgstr "Le chemin de recadrage est invalide" ++ ++#: wp-includes/pluggable.php:416 ++#: wp-includes/user.php:39 ++msgid "ERROR: The username field is empty." ++msgstr "ERREUR : le champ de l’identifiant est vide." ++ ++#: wp-includes/pluggable.php:419 ++#: wp-includes/user.php:41 ++msgid "ERROR: The password field is empty." ++msgstr "ERREUR : le champ du mot de passe est vide." ++ ++#: wp-includes/pluggable.php:425 ++msgid "ERROR: Invalid username." ++msgstr "ERREUR : identifiant non valide." ++ ++#: wp-includes/pluggable.php:436 ++msgid "ERROR: Incorrect password." ++msgstr "ERREUR : mot de passe incorrect." ++ ++# Ne pas mettre d'entité HTML ( ...) : chaîne envoyée par e-mail. ++#: wp-includes/pluggable.php:784 ++#, php-format ++msgid "New comment on your post #%1$s \"%2$s\"" ++msgstr "Nouveau commentaire sur votre article n°%1$s \"%2$s\"" ++ ++# Ne pas mettre d'entité HTML ( ...) : chaîne envoyée par e-mail. ++#: wp-includes/pluggable.php:785 ++#: wp-includes/pluggable.php:880 ++#, php-format ++msgid "Author : %1$s (IP: %2$s , %3$s)" ++msgstr "Auteur : %1$s (IP : %2$s , %3$s)" ++ ++# Ne pas mettre d'entité HTML ( ...) : chaîne envoyée par e-mail. ++#: wp-includes/pluggable.php:786 ++#: wp-includes/pluggable.php:881 ++#, php-format ++msgid "E-mail : %s" ++msgstr "E-mail : %s" ++ ++# Ne pas mettre d'entité HTML ( ...) : chaîne envoyée par e-mail. ++#: wp-includes/pluggable.php:787 ++#: wp-includes/pluggable.php:795 ++#: wp-includes/pluggable.php:802 ++#: wp-includes/pluggable.php:867 ++#: wp-includes/pluggable.php:874 ++#: wp-includes/pluggable.php:882 ++#, php-format ++msgid "URL : %s" ++msgstr "URL : %s" ++ ++# Ne pas mettre d'entité HTML ( ...) : chaîne envoyée par e-mail. ++#: wp-includes/pluggable.php:788 ++#: wp-includes/pluggable.php:883 ++#, php-format ++msgid "Whois : http://ws.arin.net/cgi-bin/whois.pl?queryinput=%s" ++msgstr "Whois : http://ws.arin.net/cgi-bin/whois.pl?queryinput=%s" ++ ++# Ne pas mettre d'entité HTML ( ...) : chaîne envoyée par e-mail. ++#: wp-includes/pluggable.php:789 ++#: wp-includes/pluggable.php:884 ++msgid "Comment: " ++msgstr "Commentaire :" ++ ++# Ne pas mettre d'entité HTML ( ...) : chaîne envoyée par e-mail. ++#: wp-includes/pluggable.php:790 ++msgid "You can see all comments on this post here: " ++msgstr "Vous pouvez lire tous les commentaires de cet article ici :" ++ ++# Ne pas mettre d'entité HTML ( ...) : chaîne envoyée par e-mail. ++#: wp-includes/pluggable.php:791 ++#, php-format ++msgid "[%1$s] Comment: \"%2$s\"" ++msgstr "[%1$s] Commentaire : \"%2$s\"" ++ ++# Ne pas mettre d'entité HTML ( ...) : chaîne envoyée par e-mail. ++#: wp-includes/pluggable.php:793 ++#, php-format ++msgid "New trackback on your post #%1$s \"%2$s\"" ++msgstr "Nouveau rétrolien sur votre article n°%1$s \"%2$s\"" ++ ++# Ne pas mettre d'entité HTML ( ...) : chaîne envoyée par e-mail. ++#: wp-includes/pluggable.php:794 ++#: wp-includes/pluggable.php:801 ++#, php-format ++msgid "Website: %1$s (IP: %2$s , %3$s)" ++msgstr "Site Web : %1$s (IP : %2$s , %3$s)" ++ ++# Ne pas mettre d'entité HTML ( ...) : chaîne envoyée par e-mail. ++#: wp-includes/pluggable.php:796 ++#: wp-includes/pluggable.php:803 ++msgid "Excerpt: " ++msgstr "Extrait :" ++ ++# Ne pas mettre d'entité HTML ( ...) : chaîne envoyée par e-mail. ++#: wp-includes/pluggable.php:797 ++msgid "You can see all trackbacks on this post here: " ++msgstr "Vous pouvez lire tous les rétroliens de cet article ici :" ++ ++# Ne pas mettre d'entité HTML ( ...) : chaîne envoyée par e-mail. ++#: wp-includes/pluggable.php:798 ++#, php-format ++msgid "[%1$s] Trackback: \"%2$s\"" ++msgstr "[%1$s] Rétrolien : \"%2$s\"" ++ ++# Ne pas mettre d'entité HTML ( ...) : chaîne envoyée par e-mail. ++#: wp-includes/pluggable.php:800 ++#, php-format ++msgid "New pingback on your post #%1$s \"%2$s\"" ++msgstr "Nouveau ping sur votre article n°%1$s \"%2$s\"" ++ ++# Ne pas mettre d'entité HTML ( ...) : chaîne envoyée par e-mail. ++#: wp-includes/pluggable.php:804 ++msgid "You can see all pingbacks on this post here: " ++msgstr "Vous pouvez lire tous les pings de cet article ici :" ++ ++# Ne pas mettre d'entité HTML ( ...) : chaîne envoyée par e-mail. ++#: wp-includes/pluggable.php:805 ++#, php-format ++msgid "[%1$s] Pingback: \"%2$s\"" ++msgstr "[%1$s] Ping : \"%2$s\"" ++ ++# Ne pas mettre d'entité HTML ( ...) : chaîne envoyée par e-mail. ++#: wp-includes/pluggable.php:808 ++#: wp-includes/pluggable.php:889 ++#, php-format ++msgid "Delete it: %s" ++msgstr "Le supprimer : %s" ++ ++# Ne pas mettre d'entité HTML ( ...) : chaîne envoyée par e-mail. ++#: wp-includes/pluggable.php:809 ++#: wp-includes/pluggable.php:890 ++#, php-format ++msgid "Spam it: %s" ++msgstr "Le marquer comme indésirable : %s" ++ ++# Ne pas mettre d'entité HTML ( ...) : chaîne envoyée par e-mail. ++#: wp-includes/pluggable.php:864 ++#, php-format ++msgid "A new trackback on the post #%1$s \"%2$s\" is waiting for your approval" ++msgstr "Un nouveau rétrolien sur l'article n°%1$s \"%2$s\" attend votre approbation" ++ ++# Ne pas mettre d'entité HTML ( ...) : chaîne envoyée par e-mail. ++#: wp-includes/pluggable.php:866 ++#: wp-includes/pluggable.php:873 ++#, php-format ++msgid "Website : %1$s (IP: %2$s , %3$s)" ++msgstr "Site Web : %1$s (IP: %2$s , %3$s)" ++ ++# Ne pas mettre d'entité HTML ( ...) : chaîne envoyée par e-mail. ++#: wp-includes/pluggable.php:868 ++msgid "Trackback excerpt: " ++msgstr "Extrait du rétrolien :" ++ ++# Ne pas mettre d'entité HTML ( ...) : chaîne envoyée par e-mail. ++#: wp-includes/pluggable.php:871 ++#, php-format ++msgid "A new pingback on the post #%1$s \"%2$s\" is waiting for your approval" ++msgstr "Un nouveau ping sur l'article n°%1$s \"%2$s\" attend votre approbation" ++ ++# Ne pas mettre d'entité HTML ( ...) : chaîne envoyée par e-mail. ++#: wp-includes/pluggable.php:875 ++msgid "Pingback excerpt: " ++msgstr "Extrait du ping :" ++ ++# Ne pas mettre d'entité HTML ( ...) : chaîne envoyée par e-mail. ++#: wp-includes/pluggable.php:878 ++#, php-format ++msgid "A new comment on the post #%1$s \"%2$s\" is waiting for your approval" ++msgstr "Un nouveau commentaire sur l'article n°%1$s \"%2$s\" attend votre approbation" ++ ++# Ne pas mettre d'entité HTML ( ...) : chaîne envoyée par e-mail. ++#: wp-includes/pluggable.php:888 ++#, php-format ++msgid "Approve it: %s" ++msgstr "L'approuver : %s" ++ ++# Ne pas mettre d'entité HTML ( ...) : chaîne envoyée par e-mail. ++#: wp-includes/pluggable.php:893 ++#, php-format ++msgid "Currently %s are waiting for approval. Please visit the moderation panel:" ++msgstr "En ce moment, %s attendent vos approbations. Veuillez vous rendre sur le panneau de modération :" ++ ++# Ne pas mettre d'entité HTML ( ...) : chaîne envoyée par e-mail. ++#: wp-includes/pluggable.php:896 ++#, php-format ++msgid "[%1$s] Please moderate: \"%2$s\"" ++msgstr "[%1$s] Demande de modération pour \"%2$s\"" ++ ++# Ne pas mettre d'entité HTML ( ...) : chaîne envoyée par e-mail. ++#: wp-includes/pluggable.php:923 ++#, php-format ++msgid "New user registration on your blog %s:" ++msgstr "Inscription d'un nouvel utilisateur sur votre blog %s :" ++ ++# Ne pas mettre d'entité HTML ( ...) : chaîne envoyée par e-mail. ++#: wp-includes/pluggable.php:924 ++#: wp-includes/pluggable.php:932 ++#: wp-login.php:103 ++#: wp-login.php:130 ++#, php-format ++msgid "Username: %s" ++msgstr "Identifiant : %s" ++ ++# Ne pas mettre d'entité HTML ( ...) : chaîne envoyée par e-mail. ++#: wp-includes/pluggable.php:925 ++#, php-format ++msgid "E-mail: %s" ++msgstr "E-mail : %s" ++ ++# Ne pas mettre d'entité HTML ( ...) : chaîne envoyée par e-mail. ++#: wp-includes/pluggable.php:927 ++#, php-format ++msgid "[%s] New User Registration" ++msgstr "[%s] Inscription d'un nouvel utilisateur" ++ ++# Ne pas mettre d'entité HTML ( ...) : chaîne envoyée par e-mail. ++#: wp-includes/pluggable.php:933 ++#: wp-login.php:131 ++#, php-format ++msgid "Password: %s" ++msgstr "Mot de passe : %s" ++ ++# Ne pas mettre d'entité HTML ( ...) : chaîne envoyée par e-mail. ++#: wp-includes/pluggable.php:936 ++#, php-format ++msgid "[%s] Your username and password" ++msgstr "[%s] Votre identifiant et mot de passe" ++ ++#: wp-includes/post-template.php:60 ++#, php-format ++msgid "Protected: %s" ++msgstr "Protégé : %s" ++ ++#: wp-includes/post-template.php:62 ++#, php-format ++msgid "Private: %s" ++msgstr "Privé : %s" ++ ++#: wp-includes/post-template.php:147 ++msgid "There is no excerpt because this is a protected post." ++msgstr "Il n’y pas d’extrait, car cet article est protégé." ++ ++#: wp-includes/post-template.php:163 ++msgid "Next page" ++msgstr "Page suivante" ++ ++#: wp-includes/post-template.php:164 ++msgid "Previous page" ++msgstr "Page précédente" ++ ++#: wp-includes/post-template.php:379 ++#: wp-includes/post-template.php:400 ++msgid "Missing Attachment" ++msgstr "Fichier joint manquant" ++ ++#: wp-includes/post-template.php:526 ++msgid "This post is password protected. To view it please enter your password below:" ++msgstr "Cet article est protégé par mot de passe. Pour le lire, veuillez saisir votre mot de passe ci-dessous :" ++ ++#: wp-includes/rss.php:856 ++msgid "An error has occurred, which probably means the feed is down. Try again later." ++msgstr "Une erreur est survenue, le flux est probablement indisponible. Veuillez réessayer plus tard." ++ ++#: wp-includes/script-loader.php:19 ++msgid "(Quick Links)" ++msgstr "(Liens rapides)" ++ ++#: wp-includes/script-loader.php:20 ++msgid "Enter a word to look up:" ++msgstr "Saisissez un mot à chercher :" ++ ++#: wp-includes/script-loader.php:21 ++msgid "Dictionary lookup" ++msgstr "Recherche dans le dictionnaire" ++ ++#: wp-includes/script-loader.php:22 ++msgid "lookup" ++msgstr "regarder" ++ ++#: wp-includes/script-loader.php:23 ++msgid "Close all open tags" ++msgstr "Fermer tous les tags ouverts" ++ ++#: wp-includes/script-loader.php:24 ++msgid "close tags" ++msgstr "fermer les tags" ++ ++#: wp-includes/script-loader.php:25 ++msgid "Enter the URL" ++msgstr "Saisissez l’adresse" ++ ++#: wp-includes/script-loader.php:26 ++msgid "Enter the URL of the image" ++msgstr "Saisissez l’adresse de l’image" ++ ++#: wp-includes/script-loader.php:27 ++msgid "Enter a description of the image" ++msgstr "Saisissez une description pour l’image" ++ ++#: wp-includes/script-loader.php:46 ++#: wp-includes/script-loader.php:55 ++msgid "You do not have permission to do that." ++msgstr "Vous n’avez pas l’autorisation d’effectuer cela." ++ ++#: wp-includes/script-loader.php:47 ++msgid "An unidentified error has occurred." ++msgstr "Une erreur non-identifiés est survenue." ++ ++#: wp-includes/script-loader.php:56 ++msgid "Something strange happened. Try refreshing the page." ++msgstr "Une chose bien étrange vient de se produire. Essayez de recharger la page." ++ ++#: wp-includes/script-loader.php:57 ++msgid "Slow down, I'm still sending your data!" ++msgstr "Calmez-vous, je suis toujours en train d’envoyer vos données !" ++ ++#: wp-includes/script-loader.php:93 ++msgid "You have attempted to queue too many files." ++msgstr "Vous essayer d’envoyer trop de fichiers à la fois." ++ ++#: wp-includes/script-loader.php:94 ++#, php-format ++msgid "This file is too big. Your php.ini upload_max_filesize is %s." ++msgstr "Le fichier est trop gros. La limite PHP ( php.ini / upload_max_filesize) est fixée à %s." ++ ++#: wp-includes/script-loader.php:95 ++msgid "This file is empty. Please try another." ++msgstr "Le fichier est vide. Merci d’en essayer un autre." ++ ++#: wp-includes/script-loader.php:96 ++msgid "This file type is not allowed. Please try another." ++msgstr "Ce type de fichier n’est pas autorisé. Merci d’en essayer un autre." ++ ++#: wp-includes/script-loader.php:97 ++msgid "An error occurred in the upload. Please try again later." ++msgstr "Une erreur est survenue lors de l’envoi. Veuillez réessayer plus tard." ++ ++#: wp-includes/script-loader.php:98 ++msgid "There was a configuration error. Please contact the server administrator." ++msgstr "Il y a une erreur de configuration. Merci de contacter l’administrateur de votre serveur." ++ ++#: wp-includes/script-loader.php:99 ++msgid "You may only upload 1 file." ++msgstr "Vous pouvez seulement envoyer 1 fichier." ++ ++#: wp-includes/script-loader.php:100 ++msgid "HTTP error." ++msgstr "Erreur HTTP." ++ ++#: wp-includes/script-loader.php:101 ++msgid "Upload failed." ++msgstr "L’envoi a échoué." ++ ++#: wp-includes/script-loader.php:102 ++msgid "IO error." ++msgstr "Erreur I/O (Entrées-Sorties)." ++ ++#: wp-includes/script-loader.php:103 ++msgid "Security error." ++msgstr "Erreur de sécurité." ++ ++#: wp-includes/script-loader.php:104 ++msgid "File cancelled." ++msgstr "Fichier annulé." ++ ++#: wp-includes/script-loader.php:105 ++msgid "Upload stopped." ++msgstr "L’envoi est stoppé." ++ ++#: wp-includes/script-loader.php:106 ++msgid "Dismiss" ++msgstr "Rejeter" ++ ++#: wp-includes/script-loader.php:107 ++msgid "Crunching…" ++msgstr "En cours de traitement…" ++ ++#: wp-includes/script-loader.php:108 ++msgid "Deleted" ++msgstr "Supprimé" ++ ++#: wp-includes/script-loader.php:117 ++msgid "Separate multiple categories with commas." ++msgstr "Séparez les catégories multiples par des virgules." ++ ++#: wp-includes/script-loader.php:125 ++msgid "Bad" ++msgstr "Mauvaise" ++ ++#: wp-includes/script-loader.php:126 ++msgid "Good" ++msgstr "Bonne" ++ ++#: wp-includes/script-loader.php:127 ++msgid "Strong" ++msgstr "Forte" ++ ++#: wp-includes/script-loader.php:131 ++msgid "%i% pending" ++msgstr "%i% en attente" ++ ++#: wp-includes/script-loader.php:149 ++msgid "Tags used on this post:" ++msgstr "Tags utilisés dans cet article :" ++ ++#: wp-includes/script-loader.php:151 ++msgid "Add new tag" ++msgstr "Ajouter un tag" ++ ++#: wp-includes/script-loader.php:152 ++msgid "Separate tags with commas" ++msgstr "Séparez les tags par des virgules" ++ ++#: wp-includes/script-loader.php:169 ++msgid "Browse your files" ++msgstr "Parcourir vos fichiers" ++ ++#: wp-includes/script-loader.php:170 ++msgid "« Back" ++msgstr "« Retour" ++ ++#: wp-includes/script-loader.php:171 ++msgid "Direct link to file" ++msgstr "Lien direct vers le fichier" ++ ++#: wp-includes/script-loader.php:175 ++msgid "Icon" ++msgstr "IcÃŽne" ++ ++#: wp-includes/script-loader.php:177 ++msgid "Show:" ++msgstr "Afficher :" ++ ++#: wp-includes/script-loader.php:178 ++msgid "Link to:" ++msgstr "Lier à :" ++ ++#: wp-includes/script-loader.php:179 ++msgid "File" ++msgstr "Fichier" ++ ++#: wp-includes/script-loader.php:182 ++msgid "Send to editor »" ++msgstr "Envoyer dans l’éditeur »" ++ ++#: wp-includes/script-loader.php:186 ++msgid "Delete File" ++msgstr "Effacer le fichier" ++ ++#: wp-includes/script-loader.php:187 ++msgid "Save »" ++msgstr "Enregistrer »" ++ ++#: wp-includes/script-loader.php:188 ++msgid "" ++"Are you sure you want to delete the file '%title%'?\n" ++"Click ok to delete or cancel to go back." ++msgstr "" ++"Êtes-vous sûr de vouloir supprimer le fichier “ %title% “ ?\n" ++"Cliquez sur “ OK “ pour l’effacer, ou sur “ Annuler “ pour abandonner." ++ ++#: wp-includes/script-loader.php:501 ++msgid "Saving Draft…" ++msgstr "Enregistrer le brouillon…" ++ ++#: wp-includes/taxonomy.php:224 ++#: wp-includes/taxonomy.php:290 ++#: wp-includes/taxonomy.php:404 ++#: wp-includes/taxonomy.php:543 ++#: wp-includes/taxonomy.php:1045 ++#: wp-includes/taxonomy.php:1262 ++msgid "Invalid Taxonomy" ++msgstr "Taxinomie non-valide" ++ ++#: wp-includes/taxonomy.php:1165 ++#: wp-includes/taxonomy.php:1416 ++msgid "Invalid taxonomy" ++msgstr "La taxinomie est invalide" ++ ++#: wp-includes/taxonomy.php:1168 ++msgid "Invalid term ID" ++msgstr "l’ID du terme est invalide" ++ ++#: wp-includes/taxonomy.php:1199 ++#: wp-includes/taxonomy.php:1206 ++msgid "Could not insert term into the database" ++msgstr "Impossible d’insérer le terme dans la base de données" ++ ++#: wp-includes/taxonomy.php:1464 ++#, php-format ++msgid "The slug \"%s\" is already in use by another term" ++msgstr "L’identifiant \"%s\" est déjà utilisé par un autre terme" ++ ++#: wp-includes/theme.php:174 ++msgid "Stylesheet is missing." ++msgstr "La feuille de style manque." ++ ++#: wp-includes/theme.php:188 ++msgid "File not readable." ++msgstr "Le fichier n’est pas accessible en lecture." ++ ++#: wp-includes/theme.php:229 ++msgid "Template is missing." ++msgstr "Le modÚle manque." ++ ++#: wp-includes/user.php:29 ++msgid "Please log in again." ++msgstr "Merci de vous reconnecter." ++ ++#: wp-includes/widgets.php:24 ++#: wp-includes/widgets.php:52 ++#, php-format ++msgid "Sidebar %d" ++msgstr "Colonne latérale %d" ++ ++#: wp-includes/widgets.php:412 ++msgid "Sort by:" ++msgstr "Trier par :" ++ ++#: wp-includes/widgets.php:414 ++msgid "Page title" ++msgstr "Titre de la page" ++ ++#: wp-includes/widgets.php:415 ++msgid "Page order" ++msgstr "Ordre de la page" ++ ++#: wp-includes/widgets.php:416 ++msgid "Page ID" ++msgstr "ID de la page" ++ ++#: wp-includes/widgets.php:421 ++msgid "Exclude:" ++msgstr "Exclure :" ++ ++#: wp-includes/widgets.php:423 ++msgid "Page IDs, separated by commas." ++msgstr "IDs de page, séparés par une virgule." ++ ++#: wp-includes/widgets.php:464 ++msgid "Select Month" ++msgstr "Choisir un mois" ++ ++#: wp-includes/widgets.php:494 ++#: wp-includes/widgets.php:792 ++msgid "Show post counts" ++msgstr "Afficher le nombre d’articles" ++ ++#: wp-includes/widgets.php:496 ++msgid "Display as a drop down" ++msgstr "Afficher en tant que menu descendant" ++ ++#: wp-includes/widgets.php:505 ++#: wp-includes/widgets.php:1375 ++#: wp-includes/widgets.php:1376 ++msgid "Meta" ++msgstr "Méta" ++ ++#: wp-includes/widgets.php:512 ++msgid "Syndicate this site using RSS 2.0" ++msgstr "Suivez ce site par syndication RSS 2.0" ++ ++#: wp-includes/widgets.php:512 ++msgid "Entries RSS" ++msgstr "Articles RSS" ++ ++#: wp-includes/widgets.php:649 ++msgid "Arbitrary text or HTML" ++msgstr "Texte ou code HTML arbitraire" ++ ++#: wp-includes/widgets.php:651 ++msgid "Text" ++msgstr "Texte" ++ ++#: wp-includes/widgets.php:694 ++msgid "Select Category" ++msgstr "Choisir une catégorie" ++ ++#: wp-includes/widgets.php:787 ++msgid "Show as dropdown" ++msgstr "Afficher en tant que liste déroulante" ++ ++#: wp-includes/widgets.php:797 ++msgid "Show hierarchy" ++msgstr "Afficher la hierarchie" ++ ++#: wp-includes/widgets.php:812 ++msgid "A list or dropdown of categories" ++msgstr "Une liste ou un menu déroulant des catégories" ++ ++#: wp-includes/widgets.php:867 ++#: wp-includes/widgets.php:1382 ++#: wp-includes/widgets.php:1383 ++msgid "Recent Posts" ++msgstr "Articles récents" ++ ++#: wp-includes/widgets.php:918 ++msgid "Number of posts to show:" ++msgstr "Nombre d’articles à afficher :" ++ ++#: wp-includes/widgets.php:920 ++#: wp-includes/widgets.php:979 ++msgid "(at most 15)" ++msgstr "(15 au plus)" ++ ++#: wp-includes/widgets.php:948 ++#, php-format ++msgid "%1$s on %2$s" ++msgstr "%1$s dans %2$s" ++ ++#: wp-includes/widgets.php:977 ++msgid "Number of comments to show:" ++msgstr "Nombre de commentaires à afficher :" ++ ++#: wp-includes/widgets.php:992 ++msgid "The most recent comments" ++msgstr "Les commentaires les plus récents" ++ ++#: wp-includes/widgets.php:1035 ++msgid "Unknown Feed" ++msgstr "Flux inconnu" ++ ++#: wp-includes/widgets.php:1041 ++msgid "Syndicate this content" ++msgstr "Suivez ce contenu par syndication RSS" ++ ++#: wp-includes/widgets.php:1083 ++msgid "Untitled" ++msgstr "Sans titre" ++ ++#: wp-includes/widgets.php:1133 ++msgid "An error has occurred; the feed is probably down. Try again later." ++msgstr "Une erreur est survenue ; le flux est probablement indisponible. Veuillez réessayer plus tard." ++ ++#: wp-includes/widgets.php:1215 ++msgid "Enter the RSS feed URL here:" ++msgstr "Saisissez l’URL du flux RSS ici :" ++ ++#: wp-includes/widgets.php:1221 ++msgid "Give the feed a title (optional):" ++msgstr "Donnez un titre au flux (optionnel) :" ++ ++#: wp-includes/widgets.php:1227 ++msgid "How many items would you like to display?" ++msgstr "Combien d’entrées souhaitez-vous afficher ?" ++ ++#: wp-includes/widgets.php:1240 ++msgid "Display item content?" ++msgstr "Afficher le contenu de l’élément ?" ++ ++#: wp-includes/widgets.php:1247 ++msgid "Display item author if available?" ++msgstr "Afficher l’auteur de l’élément si disponible ?" ++ ++#: wp-includes/widgets.php:1254 ++msgid "Display item date?" ++msgstr "Afficher la date de l’élément ?" ++ ++#: wp-includes/widgets.php:1287 ++msgid "Error: could not find an RSS or ATOM feed at that URL." ++msgstr "Erreur : impossible de trouver de flux RSS ou Atom à cette URL." ++ ++#: wp-includes/widgets.php:1288 ++#, php-format ++msgid "Error in RSS %1$d" ++msgstr "Erreur dans le RSS %1$d" ++ ++#: wp-includes/widgets.php:1302 ++msgid "Entries from any RSS or Atom feed" ++msgstr "Articles en provenance de n’importe quel flux RSS ou ATOM" ++ ++#: wp-includes/widgets.php:1359 ++msgid "Your blog's WordPress Pages" ++msgstr "Les pages de votre blog WordPress" ++ ++#: wp-includes/widgets.php:1363 ++msgid "A calendar of your blog's posts" ++msgstr "Un calendrier des articles de votre blog" ++ ++#: wp-includes/widgets.php:1367 ++msgid "A monthly archive of your blog's posts" ++msgstr "Une archive mensuelle des articles de votre blog" ++ ++#: wp-includes/widgets.php:1371 ++msgid "Your blogroll" ++msgstr "Votre blogoliste" ++ ++#: wp-includes/widgets.php:1374 ++msgid "Log in/out, admin, feed and WordPress links" ++msgstr "(Dé)connexion, administration, flux et liens WordPress" ++ ++#: wp-includes/widgets.php:1378 ++msgid "A search form for your blog" ++msgstr "Un formulaire de recherche pour votre blog" ++ ++#: wp-includes/widgets.php:1381 ++msgid "The most recent posts on your blog" ++msgstr "Les articles les plus récents de votre blog" ++ ++#: wp-includes/widgets.php:1385 ++msgid "Your most used tags in cloud format" ++msgstr "Vos tags les plus utilisés, au format \"nuage\"" ++ ++#: wp-includes/widgets.php:1386 ++#: wp-includes/widgets.php:1387 ++msgid "Tag Cloud" ++msgstr "Nuage de tags" ++ ++#: wp-includes/wp-db.php:532 ++#, php-format ++msgid "ERROR: WordPress %s requires MySQL 4.0.0 or higher" ++msgstr "ERREUR : WordPress %s requiert MySQL 4.0.0 ou une version supérieure." ++ ++#: wp-login.php:30 ++msgid "Powered by WordPress" ++msgstr "Propulsé par WordPress" ++ ++#: wp-login.php:65 ++msgid "ERROR: Enter a username or e-mail address." ++msgstr "ERREUR : veuillez saisir une adresse e-mail ou un identifiant." ++ ++#: wp-login.php:70 ++msgid "ERROR: There is no user registered with that email address." ++msgstr "ERREUR : il n’y aucun utilisateur enregistré avec cette adresse e-mail." ++ ++#: wp-login.php:82 ++msgid "ERROR: Invalid username or e-mail." ++msgstr "ERREUR : l’identifiant ou l’adresse e-mail n’est pas valide." ++ ++#: wp-login.php:101 ++msgid "Someone has asked to reset the password for the following site and username." ++msgstr "Quelqu’un a demandé le renouvellement du mot de passe pour le site et l’identifiant suivant." ++ ++#: wp-login.php:104 ++msgid "To reset your password visit the following address, otherwise just ignore this email and nothing will happen." ++msgstr "Pour renouveler votre mot de passe, suivez le lien suivant. Autrement, ignorez cet e-mail et la demande ne sera pas prise en compte." ++ ++#: wp-login.php:107 ++#, php-format ++msgid "[%s] Password Reset" ++msgstr "[%s] Renouvellement du mot de passe" ++ ++#: wp-login.php:108 ++#: wp-login.php:135 ++msgid "The e-mail could not be sent." ++msgstr "L’e-mail ne peut être envoyé." ++ ++#: wp-login.php:108 ++#: wp-login.php:135 ++msgid "Possible reason: your host may have disabled the mail() function..." ++msgstr "Raison possible : votre hébergeur peut avoir désactivé la fonction mail()…" ++ ++#: wp-login.php:119 ++#: wp-login.php:123 ++msgid "Invalid key" ++msgstr "Clef invalide" ++ ++#: wp-login.php:134 ++#, php-format ++msgid "[%s] Your new password" ++msgstr "[%s] Votre nouveau mot de passe" ++ ++#: wp-login.php:140 ++#, php-format ++msgid "Password Lost and Changed for user: %s" ++msgstr "Mot de passe oublié et changé pour l'utilisateur : %s" ++ ++#: wp-login.php:141 ++#, php-format ++msgid "[%s] Password Lost/Changed" ++msgstr "[%s] Mot de passe oublié et changé" ++ ++#: wp-login.php:157 ++msgid "ERROR: This username is invalid. Please enter a valid username." ++msgstr "ERREUR : cet identifiant n’est pas valide. Merci d’utiliser un identifiant valide." ++ ++#: wp-login.php:160 ++msgid "ERROR: This username is already registered, please choose another one." ++msgstr "ERREUR : cet identifiant existe déjà. Merci d’en choisir un autre." ++ ++#: wp-login.php:164 ++msgid "ERROR: Please type your e-mail address." ++msgstr "ERREUR : l’adresse e-mail est obligatoire." ++ ++#: wp-login.php:166 ++msgid "ERROR: The email address isn’t correct." ++msgstr "ERREUR : adresse e-mail incorrecte." ++ ++#: wp-login.php:169 ++msgid "ERROR: This email is already registered, please choose another one." ++msgstr "ERREUR : cette adresse e-mail est déjà utilisée. Merci d’en choisir une autre." ++ ++#: wp-login.php:181 ++#, php-format ++msgid "ERROR: Couldn’t register you... please contact the webmaster !" ++msgstr "ERREUR : inscription impossible… Merci de prendre contact avec le webmaster !" ++ ++#: wp-login.php:244 ++msgid "Sorry, that key does not appear to be valid." ++msgstr "Désolé, cette clef ne semble pas être valide." ++ ++#: wp-login.php:247 ++msgid "Lost Password" ++msgstr "Mot de passe oublié" ++ ++#: wp-login.php:247 ++msgid "Please enter your username or e-mail address. You will receive a new password via e-mail." ++msgstr "Merci de saisir votre identifiant ou votre adresse e-mail. Un nouveau mot de passe vous sera envoyé par e-mail." ++ ++#: wp-login.php:252 ++msgid "Username or E-mail:" ++msgstr "Identifiant ou adresse e-mail :" ++ ++#: wp-login.php:256 ++msgid "Get New Password" ++msgstr "Générer un mot de passe" ++ ++#: wp-login.php:270 ++#: wp-login.php:335 ++#: wp-login.php:412 ++msgid "Are you lost?" ++msgstr "Êtes-vous perdu(e) ?" ++ ++#: wp-login.php:270 ++#: wp-login.php:335 ++#: wp-login.php:412 ++#, php-format ++msgid "« Back to %s" ++msgstr "« Retour sur %s" ++ ++#: wp-login.php:311 ++msgid "Registration Form" ++msgstr "Formulaire d’inscription" ++ ++#: wp-login.php:311 ++msgid "Register For This Site" ++msgstr "S’inscrire sur ce site" ++ ++#: wp-login.php:324 ++msgid "A password will be e-mailed to you." ++msgstr "Un mot de passe vous sera envoyé par e-mail." ++ ++#: wp-login.php:330 ++#: wp-login.php:404 ++#: wp-login.php:406 ++msgid "Password Lost and Found" ++msgstr "Récupération de mot de passe" ++ ++#: wp-login.php:330 ++#: wp-login.php:404 ++#: wp-login.php:406 ++msgid "Lost your password?" ++msgstr "Mot de passe oublié ?" ++ ++#: wp-login.php:366 ++msgid "ERROR: Cookies are blocked or not supported by your browser. You must enable cookies to use WordPress." ++msgstr "ERREUR : les cookies sont bloqués ou ne sont pas reconnus pas votre navigateur. Vous devez activer les cookies pour utiliser WordPress." ++ ++#: wp-login.php:369 ++msgid "You are now logged out." ++msgstr "Vous êtes désormais déconnectés." ++ ++#: wp-login.php:370 ++msgid "User registration is currently not allowed." ++msgstr "Les nouvelles inscriptions ne sont pas autorisées pour l’instant." ++ ++#: wp-login.php:371 ++msgid "Check your e-mail for the confirmation link." ++msgstr "Vérifiez votre compte e-mail pour y trouver le lien de confirmation." ++ ++#: wp-login.php:372 ++msgid "Check your e-mail for your new password." ++msgstr "Vérifiez votre compte e-mail pour y trouver votre nouveau mot de passe." ++ ++#: wp-login.php:373 ++msgid "Registration complete. Please check your e-mail." ++msgstr "Enregistrement terminé. Veuillez vérifier vos nouveaux e-mails." ++ ++#: wp-login.php:375 ++msgid "Login" ++msgstr "Connexion" ++ ++#: wp-login.php:389 ++msgid "Remember Me" ++msgstr "Se souvenir de moi" ++ ++#: xmlrpc.php:152 ++#: xmlrpc.php:690 ++#: xmlrpc.php:712 ++#: xmlrpc.php:734 ++msgid "Bad login/pass combination." ++msgstr "Mauvaise combinaison identifiant/mot de passe." ++ ++#: xmlrpc.php:238 ++msgid "Sorry, you can not edit this page." ++msgstr "Désolé, vous ne pouvez pas modifier cette page." ++ ++#: xmlrpc.php:305 ++#: xmlrpc.php:409 ++#: xmlrpc.php:452 ++msgid "Sorry, no such page." ++msgstr "Désolé, aucune page ne correspond." ++ ++#: xmlrpc.php:326 ++#: xmlrpc.php:496 ++msgid "Sorry, you can not edit pages." ++msgstr "Désolé, vous ne pouvez pas modifier les pages." ++ ++#: xmlrpc.php:374 ++msgid "Sorry, you can not add new pages." ++msgstr "Désolé, vous ne pouvez pas ajouter de nouvelles pages." ++ ++#: xmlrpc.php:415 ++msgid "Sorry, you do not have the right to delete this page." ++msgstr "Désolé, vous n’avez pas l’autorisation de supprimer cette page." ++ ++#: xmlrpc.php:421 ++msgid "Failed to delete the page." ++msgstr "Échec lors de la suppression de la page." ++ ++#: xmlrpc.php:458 ++msgid "Sorry, you do not have the right to edit this page." ++msgstr "Désolé, vous n’avez pas l’autorisation de modifier cette page." ++ ++#: xmlrpc.php:546 ++msgid "Sorry, you can not edit posts on this blog." ++msgstr "Désolé, vous ne pouvez pas modifier les articles de ce blog." ++ ++#: xmlrpc.php:585 ++msgid "Sorry, you do not have the right to add a category." ++msgstr "Désolé, vous n’avez pas les droits pour ajouter une catégorie." ++ ++#: xmlrpc.php:613 ++msgid "Sorry, the new category failed." ++msgstr "Désolé, la création de la catégorie a échoué." ++ ++#: xmlrpc.php:639 ++msgid "Sorry, you do not have the right to delete a category." ++msgstr "Désolé, vous n’avez pas les droits pour effacer une catégorie." ++ ++#: xmlrpc.php:665 ++msgid "Sorry, you must be able to edit posts to this blog in order to view categories." ++msgstr "Désolé, vous devez avoir le droit d’écrire des articles pour ce blog si vous vous visualisez les catégories." ++ ++#: xmlrpc.php:695 ++msgid "You are not allowed access to details about comments." ++msgstr "Vous n’avez pas l’autorisation d’accéder aux détails des commentaires." ++ ++#: xmlrpc.php:717 ++#: xmlrpc.php:739 ++msgid "You are not allowed access to details about this blog." ++msgstr "Vous n’avez pas l’autorisation d’accéder aux détails de ce blog." ++ ++#: xmlrpc.php:795 ++msgid "Sorry, you do not have access to user data on this blog." ++msgstr "Vous n’avez pas l’autorisation d’accéder aux données utilisateurs de ce blog." ++ ++#: xmlrpc.php:828 ++#: xmlrpc.php:1624 ++#: xmlrpc.php:2013 ++#: xmlrpc.php:2052 ++#: xmlrpc.php:2141 ++msgid "Sorry, you can not edit this post." ++msgstr "Désolé, vous ne pouvez pas modifier cet article." ++ ++#: xmlrpc.php:872 ++#: xmlrpc.php:1714 ++#: xmlrpc.php:1932 ++msgid "Either there are no posts, or something went wrong." ++msgstr "Soit il n’y a pas d’articles, soit une erreur s’est produite." ++ ++#: xmlrpc.php:923 ++#: xmlrpc.php:960 ++msgid "Sorry, this user can not edit the template." ++msgstr "Désolé, cet utilisateur ne peut pas modifier les modÚles." ++ ++#: xmlrpc.php:971 ++msgid "Either the file is not writable, or something wrong happened. The file has not been updated." ++msgstr "Soit le fichier n’est pas accessible en écriture, soit une erreur est survenue. Le fichier n’a pas été mis à jour." ++ ++#: xmlrpc.php:998 ++msgid "Sorry, you are not allowed to post on this blog." ++msgstr "Désolé, vous n’avez pas l’autorisation de publier sur ce blog." ++ ++#: xmlrpc.php:1047 ++#: xmlrpc.php:1096 ++#: xmlrpc.php:1690 ++#: xmlrpc.php:2098 ++msgid "Sorry, no such post." ++msgstr "Désolé, aucun article ne correspond." ++ ++#: xmlrpc.php:1059 ++#: xmlrpc.php:1564 ++msgid "Sorry, you do not have the right to publish this post." ++msgstr "Désolé, vous n’avez pas l’autorisation de publier cet article." ++ ++#: xmlrpc.php:1136 ++#: xmlrpc.php:1385 ++msgid "Sorry, you are not allowed to publish posts on this blog." ++msgstr "Désolé, vous n’avez pas l’autorisation de publier des articles sur ce blog." ++ ++#: xmlrpc.php:1141 ++#: xmlrpc.php:1390 ++msgid "Sorry, you are not allowed to publish pages on this blog." ++msgstr "Désolé, vous n’avez pas l’autorisation de publier des pages sur ce blog." ++ ++#: xmlrpc.php:1149 ++#: xmlrpc.php:1198 ++#: xmlrpc.php:1398 ++#: xmlrpc.php:1458 ++msgid "Invalid post type." ++msgstr "Type d’article invalide." ++ ++#: xmlrpc.php:1189 ++msgid "You are not allowed to post as this user" ++msgstr "Vous n’avez pas l’autorisation de publier sous cet identifiant." ++ ++#: xmlrpc.php:1194 ++msgid "You are not allowed to create pages as this user" ++msgstr "Vous n’avez pas l’autorisation de créer des pages sous cet identifiant." ++ ++#: xmlrpc.php:1412 ++msgid "Invalid post id." ++msgstr "L’ID de l’article est invalide." ++ ++#: xmlrpc.php:1449 ++msgid "You are not allowed to change the post author as this user." ++msgstr "Vous n’avez pas l’autorisation de modifier des articles sous cet identifiant." ++ ++#: xmlrpc.php:1454 ++msgid "You are not allowed to change the page author as this user." ++msgstr "Vous n’avez pas l’autorisation de modifier des pages sous cet identifiant." ++ ++#: xmlrpc.php:1562 ++msgid "Sorry, you do not have the right to publish this page." ++msgstr "Désolé, vous n’avez pas le droit de publier cette page." ++ ++#: xmlrpc.php:1594 ++msgid "Sorry, your entry could not be edited. Something wrong happened." ++msgstr "Désolé, votre entrée n’a pu être modifiée. Une erreur est survenue." ++ ++#: xmlrpc.php:1809 ++#: xmlrpc.php:1979 ++msgid "Sorry, you must be able to edit posts on this blog in order to view categories." ++msgstr "Désolé, vous devez avoir le droit d’écrire des articles sur ce blog si vous vous visualisez les catégories." ++ ++#: xmlrpc.php:1858 ++msgid "You are not allowed to upload files to this site." ++msgstr "Vous n’êtes pas autorisé à envoyer des fichiers sur ce site." ++ ++#: xmlrpc.php:1885 ++#, php-format ++msgid "Could not write file %1$s (%2$s)" ++msgstr "Impossible d’écrire le fichier %1$s (%2$s)" ++ ++#: xmlrpc.php:2183 ++msgid "Is there no link to us?" ++msgstr "N’y a-t-il aucun lien vers nous ?" ++ ++#: xmlrpc.php:2223 ++#: xmlrpc.php:2233 ++#: xmlrpc.php:2240 ++#: xmlrpc.php:2342 ++msgid "The specified target URL cannot be used as a target. It either doesn't exist, or it is not a pingback-enabled resource." ++msgstr "L’URL spécifiée ne peut être utilisée comme cible. Soit elle n’existe pas, ou il ne s’agit pas d’une ressource reconnaissant les pings." ++ ++#: xmlrpc.php:2236 ++msgid "The source URL and the target URL cannot both point to the same resource." ++msgstr "L’URL source et l’URL cible ne peuvent pointer vers la même ressource." ++ ++#: xmlrpc.php:2246 ++msgid "The pingback has already been registered." ++msgstr "Le ping a déjà été enregistré." ++ ++#: xmlrpc.php:2254 ++msgid "The source URL does not exist." ++msgstr "L’adresse d’origine n’existe pas." ++ ++#: xmlrpc.php:2266 ++msgid "We cannot find a title on that page." ++msgstr "Nous ne trouvons pas du titre pour cette page." ++ ++#: xmlrpc.php:2302 ++msgid "The source URL does not contain a link to the target URL, and so cannot be used as a source." ++msgstr "L’URL source ne contient pas de lien vers l’URL cible, et ne peut donc pas être utilisée comme source." ++ ++#: xmlrpc.php:2322 ++#, php-format ++msgid "Pingback from %1$s to %2$s registered. Keep the web talking! :-)" ++msgstr "Reception d’un ping de %1$s pour %2$s. Continuons la conversation ! :-)" ++ ++#: xmlrpc.php:2349 ++msgid "The specified target URL does not exist." ++msgstr "L’adresse URL cible spécifiée n’existe pas." ++ +diff -Nru wordpress/wp-content/languages/id_ID.po wordpress-2.5.0/wp-content/languages/id_ID.po +--- wordpress/wp-content/languages/id_ID.po 1970-01-01 01:00:00.000000000 +0100 ++++ wordpress-2.5.0/wp-content/languages/id_ID.po 2008-04-18 14:21:14.000000000 +0200 +@@ -0,0 +1,9914 @@ ++msgid "" ++msgstr "" ++"Project-Id-Version: WordPress 2.3.2\n" ++"POT-Creation-Date: \n" ++"PO-Revision-Date: 2008-04-01 21:57+0700\n" ++"Last-Translator: Huda Toriq \n" ++"Language-Team: Huda Toriq \n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=utf-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++"X-Poedit-Language: Indonesian\n" ++"X-Poedit-Country: INDONESIA\n" ++"Plural-Forms: nplurals=2; plural= n !=1\n" ++"X-Poedit-SourceCharset: utf-8\n" ++ ++#: wp-admin/admin-ajax.php:69 ++#: wp-admin/categories.php:40 ++#: wp-admin/categories.php:60 ++#: wp-admin/edit-link-categories.php:16 ++#: wp-admin/link-category.php:34 ++#, php-format ++msgid "Can’t delete the %s category: this is the default one" ++msgstr "Tidak dapat menghapus kategori %s: ini adalah kategori bawaan." ++ ++#: wp-admin/admin-ajax.php:227 ++#: wp-admin/admin-ajax.php:279 ++#: wp-admin/includes/taxonomy.php:62 ++msgid "You did not enter a category name." ++msgstr "Anda tidak memasukkan nama kategori." ++ ++#: wp-admin/admin-ajax.php:235 ++msgid "The category you are trying to create already exists." ++msgstr "Kategori yang hendak Anda buat sudah ada." ++ ++#: wp-admin/admin-ajax.php:267 ++#, php-format ++msgid "Category %s added" ++msgstr "Kategori %s ditambahkan" ++ ++#: wp-admin/admin-ajax.php:313 ++msgid "You did not enter a tag name." ++msgstr "Anda tidak memasukkan sebuah nama tag." ++ ++#: wp-admin/admin-ajax.php:338 ++#, php-format ++msgid "Tag %s added" ++msgstr "Tag %s ditambahkan" ++ ++#: wp-admin/admin-ajax.php:456 ++#, php-format ++msgid "User %s added" ++msgstr "Pengguna %s ditambahkan" ++ ++#: wp-admin/admin-ajax.php:476 ++#, php-format ++msgid "Draft Saved at %s." ++msgstr "Naskah Disimpan pada pukul %s." ++ ++#: wp-admin/admin-ajax.php:476 ++msgid "g:i:s a" ++msgstr "H:i:s" ++ ++#: wp-admin/admin-ajax.php:496 ++msgid "Someone" ++msgstr "Seseorang" ++ ++#: wp-admin/admin-ajax.php:498 ++#, php-format ++msgid "Autosave disabled: %s is currently editing this page." ++msgstr "Penyimpanan otomatis dimatikan: %s saat ini sedang menyunting halaman ini." ++ ++#: wp-admin/admin-ajax.php:498 ++#, php-format ++msgid "Autosave disabled: %s is currently editing this post." ++msgstr "Penyimpanan otomatis dimatikan: %s saat ini sedang menyunting tulisan ini." ++ ++#: wp-admin/admin-ajax.php:507 ++#: wp-admin/includes/post.php:10 ++#: wp-admin/page.php:97 ++msgid "You are not allowed to edit this page." ++msgstr "Anda tidak diizinkan untuk menyunting halaman ini." ++ ++#: wp-admin/admin-ajax.php:510 ++#: wp-admin/includes/post.php:13 ++#: wp-admin/post.php:104 ++msgid "You are not allowed to edit this post." ++msgstr "Anda tidak diizinkan untuk menyunting tulisan ini." ++ ++#: wp-admin/admin-footer.php:8 ++msgid "Thank you for creating with WordPress" ++msgstr "Terimakasih untuk berkreasi bersama WordPress" ++ ++#: wp-admin/admin-footer.php:8 ++msgid "Documentation" ++msgstr "Dokumentasi" ++ ++#: wp-admin/admin-footer.php:8 ++msgid "Feedback" ++msgstr "Umpan Balik" ++ ++#: wp-admin/admin-header.php:64 ++msgid "Visit Site" ++msgstr "Kunjungi Situs" ++ ++#: wp-admin/admin-header.php:66 ++#, php-format ++msgid "Howdy, %2$s!" ++msgstr "Salam, %2$s!" ++ ++#: wp-admin/admin-header.php:66 ++msgid "Log Out" ++msgstr "Keluar Log" ++ ++#: wp-admin/admin-header.php:66 ++msgid "Help" ++msgstr "Bantuan" ++ ++#: wp-admin/admin-header.php:66 ++msgid "Forums" ++msgstr "Forum" ++ ++#: wp-admin/admin.php:29 ++msgid "Classic" ++msgstr "Klasik" ++ ++#: wp-admin/admin.php:30 ++msgid "Fresh" ++msgstr "Baru" ++ ++#: wp-admin/admin.php:58 ++msgid "Invalid plugin page" ++msgstr "Halaman plugin tidak valid" ++ ++#: wp-admin/admin.php:62 ++#, php-format ++msgid "Cannot load %s." ++msgstr "Tidak dapat memuat %s." ++ ++#: wp-admin/admin.php:80 ++msgid "You are not allowed to import." ++msgstr "Anda tidak diizinkan untuk mengimpor." ++ ++#: wp-admin/admin.php:83 ++msgid "Invalid importer." ++msgstr "Pengimpor tidak valid." ++ ++#: wp-admin/admin.php:91 ++msgid "Cannot load importer." ++msgstr "Tidak dapat memuat pengimpor." ++ ++#: wp-admin/admin.php:98 ++#: wp-admin/import/blogger.php:151 ++#: wp-admin/import.php:3 ++#: wp-admin/import.php:9 ++#: wp-admin/import/textpattern.php:49 ++#: wp-admin/menu.php:47 ++msgid "Import" ++msgstr "Impor" ++ ++#: wp-admin/async-upload.php:21 ++#: wp-admin/media-upload.php:11 ++#: wp-admin/upload.php:5 ++#: wp-app.php:407 ++#: wp-app.php:562 ++msgid "You do not have permission to upload files." ++msgstr "Anda tidak punya izin untuk mengunggah berkas." ++ ++#: wp-admin/bookmarklet.php:6 ++#: wp-admin/categories.php:19 ++#: wp-admin/categories.php:34 ++#: wp-admin/categories.php:86 ++#: wp-admin/edit-link-categories.php:9 ++#: wp-admin/edit-tags.php:19 ++#: wp-admin/edit-tags.php:35 ++#: wp-admin/edit-tags.php:48 ++#: wp-admin/edit-tags.php:82 ++#: wp-admin/import/wp-cat2tag.php:210 ++#: wp-admin/includes/bookmark.php:9 ++#: wp-admin/link-category.php:13 ++#: wp-admin/link-category.php:28 ++#: wp-admin/link-category.php:68 ++#: wp-admin/link-import.php:17 ++#: wp-admin/link-import.php:69 ++#: wp-admin/options.php:11 ++#: wp-admin/sidebar.php:7 ++#: wp-admin/users.php:6 ++#: wp-admin/widgets.php:7 ++#: wp-content/plugins/akismet/akismet.php:50 ++msgid "Cheatin’ uh?" ++msgstr "Ingin curang, heh?" ++ ++#: wp-admin/categories.php:4 ++#: wp-admin/edit-form-advanced.php:217 ++#: wp-admin/edit-form.php:19 ++#: wp-admin/edit-link-form.php:101 ++#: wp-admin/includes/template.php:295 ++#: wp-admin/link-category.php:52 ++#: wp-admin/link-manager.php:123 ++#: wp-admin/menu.php:43 ++#: wp-includes/category-template.php:276 ++#: wp-includes/widgets.php:686 ++#: wp-includes/widgets.php:814 ++msgid "Categories" ++msgstr "Kategori" ++ ++#: wp-admin/categories.php:53 ++msgid "You are not allowed to delete categories." ++msgstr "Anda tidak diperbolehkan untuk menghapus kategori." ++ ++#: wp-admin/categories.php:108 ++#: wp-admin/edit-link-categories.php:43 ++msgid "Category added." ++msgstr "Kategori ditambahkan." ++ ++#: wp-admin/categories.php:109 ++#: wp-admin/edit-link-categories.php:44 ++msgid "Category deleted." ++msgstr "Kategori dihapus." ++ ++#: wp-admin/categories.php:110 ++#: wp-admin/edit-link-categories.php:45 ++msgid "Category updated." ++msgstr "Kategori diperbarui." ++ ++#: wp-admin/categories.php:111 ++#: wp-admin/edit-link-categories.php:46 ++msgid "Category not added." ++msgstr "Kategori tidak ditambahkan." ++ ++#: wp-admin/categories.php:112 ++#: wp-admin/edit-link-categories.php:47 ++msgid "Category not updated." ++msgstr "Kategori tidak diperbarui" ++ ++#: wp-admin/categories.php:123 ++#, php-format ++msgid "Manage Categories (add new)" ++msgstr "Kelola Kategori (tambahkan baru)" ++ ++#: wp-admin/categories.php:125 ++msgid "Manage Categories" ++msgstr "Kelola Kategori" ++ ++#: wp-admin/categories.php:130 ++#: wp-admin/edit-link-categories.php:66 ++msgid "Search Categories" ++msgstr "Cari Kategori" ++ ++#: wp-admin/categories.php:138 ++#: wp-admin/edit-comments.php:173 ++#: wp-admin/edit-link-categories.php:92 ++#: wp-admin/edit-pages.php:121 ++#: wp-admin/edit.php:138 ++#: wp-admin/edit-post-rows.php:174 ++#: wp-admin/edit-tags.php:163 ++#: wp-admin/includes/media.php:690 ++#: wp-admin/includes/template.php:689 ++#: wp-admin/includes/template.php:778 ++#: wp-admin/link-manager.php:90 ++#: wp-admin/upload.php:149 ++#: wp-admin/users.php:301 ++msgid "Delete" ++msgstr "Hapus" ++ ++#: wp-admin/categories.php:151 ++#: wp-admin/edit-form-comment.php:67 ++#: wp-admin/edit-link-categories.php:105 ++#: wp-admin/edit-link-form.php:77 ++#: wp-admin/edit-tags.php:176 ++#: wp-admin/link-manager.php:121 ++#: wp-admin/themes.php:100 ++#: wp-admin/user-edit.php:194 ++#: wp-admin/users.php:335 ++#: wp-content/themes/classic/comments.php:51 ++#: wp-content/themes/classic/comments-popup.php:64 ++#: wp-includes/js/tinymce/langs/wp-langs.php:299 ++msgid "Name" ++msgstr "Nama" ++ ++#: wp-admin/categories.php:152 ++#: wp-admin/edit-category-form.php:45 ++#: wp-admin/edit-link-categories.php:106 ++#: wp-admin/edit-link-form.php:93 ++#: wp-admin/includes/media.php:447 ++#: wp-admin/includes/media.php:544 ++#: wp-admin/includes/media.php:626 ++#: wp-admin/includes/media.php:1089 ++#: wp-admin/plugins.php:108 ++#: wp-admin/themes.php:101 ++#: wp-includes/script-loader.php:185 ++msgid "Description" ++msgstr "Deskripsi" ++ ++#: wp-admin/categories.php:153 ++#: wp-admin/edit.php:34 ++#: wp-admin/edit-tags.php:177 ++#: wp-admin/import/blogger.php:162 ++#: wp-admin/menu.php:40 ++#: wp-admin/users.php:338 ++msgid "Posts" ++msgstr "Tulisan" ++ ++#: wp-admin/categories.php:173 ++#, php-format ++msgid "Note:
    Deleting a category does not delete the posts in that category. Instead, posts that were only assigned to the deleted category are set to the category %s." ++msgstr "Catatan:
    Menghapus sebuah kategori tidak menghapus tulisan dalam kategori tersebut. Melainkan, tulisan yang hanya termasuk dalam kategori tersebut akan dipindahkan ke kategori %s." ++ ++#: wp-admin/categories.php:174 ++#, php-format ++msgid "Categories can be selectively converted to tags using the category to tag converter." ++msgstr "Kategori dapat secara selektif dikonversi ke tag menggunakan pengonversi kategori ke tag." ++ ++#: wp-admin/comment.php:21 ++#: wp-admin/edit-form-comment.php:2 ++msgid "Edit Comment" ++msgstr "Sunting Komentar" ++ ++#: wp-admin/comment.php:30 ++#: wp-admin/comment.php:52 ++#: wp-admin/comment.php:134 ++#: wp-admin/comment.php:162 ++#: wp-admin/comment.php:187 ++msgid "Oops, no comment with this ID." ++msgstr "Ups, tidak ada komentar dengan ID ini." ++ ++#: wp-admin/comment.php:30 ++#: wp-admin/comment.php:52 ++#: wp-admin/comment.php:134 ++#: wp-admin/comment.php:162 ++#: wp-admin/comment.php:187 ++msgid "Go back" ++msgstr "Kembali" ++ ++#: wp-admin/comment.php:33 ++#: wp-admin/comment.php:137 ++msgid "You are not allowed to edit comments on this post." ++msgstr "Anda tidak diizinkan untuk menyunting komentar pada tulisan ini." ++ ++#: wp-admin/comment.php:55 ++msgid "You are not allowed to delete comments on this post." ++msgstr "Anda tidak diizinkan untuk menghapus komentar pada tulisan ini." ++ ++#: wp-admin/comment.php:55 ++#: wp-admin/comment.php:190 ++msgid "You are not allowed to edit comments on this post, so you cannot approve this comment." ++msgstr "Anda tidak diizinkan untuk menyunting komentar pada tulisan ini sehingga Anda tidak dapat menyetujui komentar ini." ++ ++#: wp-admin/comment.php:62 ++msgid "You are about to mark the following comment as spam:" ++msgstr "Anda akan menandai komentar berikut sebagai spam:" ++ ++#: wp-admin/comment.php:63 ++msgid "Spam Comment" ++msgstr "Komentar Spam" ++ ++#: wp-admin/comment.php:65 ++msgid "You are about to delete the following comment:" ++msgstr "Anda akan menghapus komentar berikut:" ++ ++#: wp-admin/comment.php:66 ++msgid "Delete Comment" ++msgstr "Hapus Komentar" ++ ++#: wp-admin/comment.php:68 ++msgid "You are about to approve the following comment:" ++msgstr "Anda akan menyetujui komentar berikut:" ++ ++#: wp-admin/comment.php:69 ++msgid "Approve Comment" ++msgstr "Setujui Komentar" ++ ++#: wp-admin/comment.php:73 ++msgid "Caution:" ++msgstr "Perhatian:" ++ ++#: wp-admin/comment.php:75 ++msgid "Are you sure you want to do that?" ++msgstr "Apakah Anda yakin akan melakukannya?" ++ ++#: wp-admin/comment.php:81 ++#: wp-admin/link-manager.php:163 ++#: wp-admin/update.php:64 ++msgid "No" ++msgstr "Tidak" ++ ++#: wp-admin/comment.php:98 ++#: wp-admin/includes/template.php:294 ++#: wp-admin/includes/template.php:331 ++#: wp-includes/js/tinymce/langs/wp-langs.php:243 ++msgid "Author" ++msgstr "Penulis" ++ ++#: wp-admin/comment.php:103 ++#: wp-admin/edit-form-comment.php:74 ++#: wp-admin/user-edit.php:270 ++#: wp-admin/users.php:336 ++#: wp-content/themes/classic/comments-popup.php:71 ++#: wp-login.php:320 ++msgid "E-mail" ++msgstr "E-mail" ++ ++#: wp-admin/comment.php:109 ++#: wp-admin/edit-form-comment.php:81 ++#: wp-admin/includes/media.php:1179 ++#: wp-admin/includes/template.php:938 ++#: wp-admin/link-manager.php:122 ++#: wp-includes/script-loader.php:184 ++msgid "URL" ++msgstr "URL" ++ ++#: wp-admin/comment.php:114 ++#: wp-admin/edit-comments.php:190 ++#: wp-admin/edit-form-comment.php:88 ++#: wp-admin/edit-pages.php:191 ++#: wp-admin/edit.php:217 ++#: wp-admin/upload.php:227 ++#: wp-content/themes/classic/comments.php:18 ++#: wp-content/themes/classic/comments-popup.php:45 ++msgid "Comment" ++msgstr "Komentar" ++ ++#: wp-admin/comment.php:165 ++msgid "You are not allowed to edit comments on this post, so you cannot disapprove this comment." ++msgstr "Anda tidak diizinkan untuk menyunting komentar pada tulisan ini sehingga Anda tidak dapat menolak komentar ini." ++ ++#: wp-admin/comment.php:223 ++msgid "Unknown action." ++msgstr "Tindakan yang tidak diketahui." ++ ++#: wp-admin/custom-header.php:11 ++msgid "Custom Image Header" ++msgstr "Gambar Tajuk Tersuai" ++ ++#: wp-admin/custom-header.php:128 ++msgid "Show Text" ++msgstr "Tunjukkan Teks" ++ ++#: wp-admin/custom-header.php:139 ++#: wp-admin/custom-header.php:169 ++msgid "Hide Text" ++msgstr "Sembunyikan Teks" ++ ++#: wp-admin/custom-header.php:155 ++msgid "Header updated." ++msgstr "Tajuk diperbarui." ++ ++#: wp-admin/custom-header.php:160 ++msgid "Your Header Image" ++msgstr "Gambar Tajuk Anda" ++ ++#: wp-admin/custom-header.php:161 ++msgid "This is your header image. You can change the text color or upload and crop a new image." ++msgstr "Ini adalah gambar kepala halaman Anda. Anda dapat mengubah warna teksnya atau mengunggah dan meng-crop gambar baru." ++ ++#: wp-admin/custom-header.php:170 ++msgid "Select a Text Color" ++msgstr "Pilih Warna Teks" ++ ++#: wp-admin/custom-header.php:170 ++msgid "Use Original Color" ++msgstr "Gunakan Warna Asli" ++ ++#: wp-admin/custom-header.php:172 ++#: wp-admin/edit-link-form.php:4 ++#: wp-admin/import/blogger.php:616 ++#: wp-admin/media.php:78 ++#: wp-admin/options-discussion.php:119 ++#: wp-admin/options-general.php:113 ++#: wp-admin/options-misc.php:94 ++#: wp-admin/options-permalink.php:181 ++#: wp-admin/options.php:88 ++#: wp-admin/options-privacy.php:27 ++#: wp-admin/options-reading.php:70 ++#: wp-admin/options-writing.php:114 ++#: wp-admin/widgets.php:307 ++msgid "Save Changes" ++msgstr "Simpan Perubahan" ++ ++#: wp-admin/custom-header.php:178 ++msgid "Upload New Header Image" ++msgstr "Unggah Gambar Kepala Halaman Baru" ++ ++#: wp-admin/custom-header.php:178 ++msgid "Here you can upload a custom header image to be shown at the top of your blog instead of the default one. On the next screen you will be able to crop the image." ++msgstr "Di sini Anda dapat mengunggah gambar tajuk tersuai untuk ditampilkan di bagian atas blog Anda menggantikan gambar bawaannya. Pada layar berikutnya Anda akan dapat memotong gambarnya." ++ ++#: wp-admin/custom-header.php:179 ++#, php-format ++msgid "Images of exactly %1$d x %2$d pixels will be used as-is." ++msgstr "Gambar dengan ukuran tepat %1$d x %2$d piksel akan digunakan." ++ ++#: wp-admin/custom-header.php:182 ++msgid "Choose an image from your computer:" ++msgstr "Pilih gambar dari komputer Anda:" ++ ++#: wp-admin/custom-header.php:186 ++#: wp-admin/includes/media.php:834 ++msgid "Upload" ++msgstr "Unggah" ++ ++#: wp-admin/custom-header.php:194 ++msgid "Reset Header Image and Color" ++msgstr "Set Ulang Gambar dan Warna Tajuk" ++ ++#: wp-admin/custom-header.php:195 ++msgid "This will restore the original header image and color. You will not be able to retrieve any customizations." ++msgstr "Ini akan mengembalikan gambar dan warna tajuk asli. Anda tidak akan bisa mendapatkan kembali perubahan-perubahan yang Anda buat." ++ ++#: wp-admin/custom-header.php:198 ++msgid "Restore Original Header" ++msgstr "Kembalikan Tajuk Asli" ++ ++#: wp-admin/custom-header.php:254 ++msgid "Choose the part of the image you want to use as your header." ++msgstr "Pilih bagian gambar yang ingin Anda gunakan sebagai tajuk." ++ ++#: wp-admin/custom-header.php:269 ++msgid "Crop Header" ++msgstr "Crop Tajuk" ++ ++#: wp-admin/custom-header.php:321 ++msgid "Header complete!" ++msgstr "Tajuk selesai!" ++ ++#: wp-admin/custom-header.php:323 ++msgid "Visit your site and you should see the new header now." ++msgstr "Kunjungi situs Anda dan Anda akan dapat melihat tajuk baru sekarang." ++ ++#: wp-admin/edit-attachment-rows.php:53 ++#: wp-admin/edit-post-rows.php:75 ++#: wp-admin/includes/template.php:46 ++#: wp-admin/includes/template.php:79 ++#: wp-admin/includes/template.php:245 ++#: wp-admin/includes/template.php:403 ++#: wp-admin/link-manager.php:172 ++#, php-format ++msgid "Edit \"%s\"" ++msgstr "Sunting \"%s\"" ++ ++#: wp-admin/edit-attachment-rows.php:68 ++#: wp-admin/edit-form-advanced.php:96 ++#: wp-admin/edit-page-form.php:84 ++#: wp-admin/edit-post-rows.php:49 ++#: wp-admin/edit-post-rows.php:151 ++#: wp-admin/includes/template.php:377 ++#: wp-admin/includes/template.php:447 ++msgid "Unpublished" ++msgstr "Belum diterbitkan" ++ ++#: wp-admin/edit-attachment-rows.php:70 ++#: wp-admin/edit-post-rows.php:52 ++#: wp-admin/edit-post-rows.php:56 ++#: wp-admin/includes/template.php:380 ++#: wp-admin/includes/template.php:384 ++msgid "Y/m/d g:i:s A" ++msgstr "Y/m/d H:i:s" ++ ++#: wp-admin/edit-attachment-rows.php:75 ++#: wp-admin/edit-post-rows.php:62 ++#: wp-admin/includes/template.php:390 ++#, php-format ++msgid "%s from now" ++msgstr "%s dari sekarang" ++ ++#: wp-admin/edit-attachment-rows.php:77 ++#: wp-admin/edit-post-rows.php:64 ++#: wp-admin/includes/template.php:392 ++#: wp-admin/includes/template.php:640 ++#, php-format ++msgid "%s ago" ++msgstr "%s lalu" ++ ++#: wp-admin/edit-attachment-rows.php:79 ++#: wp-admin/edit-post-rows.php:66 ++#: wp-admin/includes/template.php:394 ++#: wp-admin/includes/template.php:669 ++msgid "Y/m/d" ++msgstr "Y/m/d" ++ ++#: wp-admin/edit-attachment-rows.php:88 ++#: wp-admin/edit-post-rows.php:31 ++#: wp-admin/includes/template.php:358 ++msgid "(no title)" ++msgstr "(tanpa judul)" ++ ++#: wp-admin/edit-attachment-rows.php:111 ++#: wp-admin/edit-post-rows.php:117 ++#: wp-admin/includes/template.php:413 ++#, php-format ++msgid "%s pending" ++msgstr "%s menunggu" ++ ++#: wp-admin/edit-attachment-rows.php:114 ++#: wp-admin/edit-post-rows.php:120 ++#: wp-admin/includes/template.php:416 ++msgid "0" ++msgstr "0" ++ ++#: wp-admin/edit-attachment-rows.php:114 ++#: wp-admin/edit-post-rows.php:120 ++#: wp-admin/includes/template.php:416 ++msgid "1" ++msgstr "1" ++ ++#: wp-admin/edit-attachment-rows.php:114 ++#: wp-admin/edit-post-rows.php:120 ++#: wp-admin/includes/template.php:416 ++msgid "%" ++msgstr "%" ++ ++#: wp-admin/edit-attachment-rows.php:124 ++msgid "Permalink" ++msgstr "Permalink" ++ ++#: wp-admin/edit-attachment-rows.php:142 ++#: wp-admin/edit-post-rows.php:192 ++msgid "No posts found." ++msgstr "Tidak ada tulisan yang ditemukan." ++ ++#: wp-admin/edit-category-form.php:3 ++#: wp-admin/edit-category-form.php:4 ++#: wp-admin/edit-link-category-form.php:3 ++#: wp-admin/edit-link-category-form.php:4 ++msgid "Edit Category" ++msgstr "Sunting Kategori" ++ ++#: wp-admin/edit-category-form.php:10 ++#: wp-admin/edit-category-form.php:11 ++#: wp-admin/edit-link-category-form.php:10 ++#: wp-admin/edit-link-category-form.php:11 ++msgid "Add Category" ++msgstr "Tambah Kategori" ++ ++#: wp-admin/edit-category-form.php:28 ++msgid "Category Name" ++msgstr "Nama Kategori" ++ ++#: wp-admin/edit-category-form.php:30 ++msgid "The name is used to identify the category almost everywhere, for example under the post or in the category widget." ++msgstr "Nama digunakan untuk mengidentifikasi kategori di hampir seluruh tempat, sebagai contoh di dalam tulisan atau di widget kategori." ++ ++#: wp-admin/edit-category-form.php:33 ++msgid "Category Slug" ++msgstr "Slug Kategori" ++ ++#: wp-admin/edit-category-form.php:35 ++#: wp-admin/edit-link-category-form.php:34 ++#: wp-admin/edit-tag-form.php:35 ++msgid "The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens." ++msgstr "The “slug” ialah versi ramah-URL dari nama. Biasanya seluruhnya merupakan huruf kecil dan hanya mengandung huruf, angka, dan strip." ++ ++#: wp-admin/edit-category-form.php:38 ++msgid "Category Parent" ++msgstr "Induk Kategori" ++ ++#: wp-admin/edit-category-form.php:40 ++#: wp-admin/includes/media.php:456 ++#: wp-admin/includes/media.php:553 ++#: wp-admin/includes/media.php:1099 ++#: wp-includes/deprecated.php:741 ++#: wp-includes/script-loader.php:181 ++msgid "None" ++msgstr "Tidak ada" ++ ++#: wp-admin/edit-category-form.php:41 ++msgid "Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional." ++msgstr "Kategori, tidak seperti tag, dapat memiliki hierarki. Anda boleh saja memiliki kategori Jazz dan di bawahnya ada kategori anak Bebop dan Big Band. Seluruhnya terserah Anda." ++ ++#: wp-admin/edit-category-form.php:47 ++msgid "The description is not prominent by default, however some themes may show it." ++msgstr "Keterangan kategori secara standar tidak tampil. Namun sebagian tema dapat menampilkannya." ++ ++#: wp-admin/edit-comments.php:4 ++msgid "Edit Comments" ++msgstr "Sunting Komentar" ++ ++#: wp-admin/edit-comments.php:74 ++#, php-format ++msgid "%s comment approved" ++msgid_plural "%s comments approved" ++msgstr[0] "%s komentar disetujui" ++msgstr[1] "%s komentar disetujui" ++ ++#: wp-admin/edit-comments.php:79 ++#, php-format ++msgid "%s comment deleted" ++msgid_plural "%s comments deleted" ++msgstr[0] "%s komentar dihapus" ++msgstr[1] "%s komentar dihapus" ++ ++#: wp-admin/edit-comments.php:84 ++#, php-format ++msgid "%s comment marked as spam" ++msgid_plural "%s comments marked as spam" ++msgstr[0] "%s komentar ditandai sebagai spam" ++msgstr[1] "%s komentar ditandai sebagai spam" ++ ++#: wp-admin/edit-comments.php:94 ++msgid "Manage Comments" ++msgstr "Kelola Komentar" ++ ++#: wp-admin/edit-comments.php:100 ++#, php-format ++msgid "Awaiting Moderation (%s)" ++msgid_plural "Awaiting Moderation (%s)" ++msgstr[0] "Menunggu Moderasi (%s)" ++msgstr[1] "Menunggu Moderasi (%s)" ++ ++#: wp-admin/edit-comments.php:100 ++msgid "Approved|plural" ++msgstr "Disetujui" ++ ++#: wp-admin/edit-comments.php:102 ++msgid "Show All Comments" ++msgstr "Tampilkan Seluruh Komentar" ++ ++#: wp-admin/edit-comments.php:121 ++msgid "Search Comments" ++msgstr "Cari Komentar" ++ ++#: wp-admin/edit-comments.php:129 ++msgid "Detail View" ++msgstr "Tampilan Detail" ++ ++#: wp-admin/edit-comments.php:130 ++msgid "List View" ++msgstr "Tampilan Senarai" ++ ++#: wp-admin/edit-comments.php:167 ++#: wp-admin/includes/template.php:675 ++#: wp-admin/includes/template.php:680 ++msgid "Approve" ++msgstr "Setuju" ++ ++#: wp-admin/edit-comments.php:169 ++msgid "Mark as Spam" ++msgstr "Tandai Sebagai Spam" ++ ++#: wp-admin/edit-comments.php:171 ++#: wp-admin/includes/template.php:676 ++#: wp-admin/includes/template.php:683 ++msgid "Unapprove" ++msgstr "Tolak" ++ ++#: wp-admin/edit-comments.php:191 ++#: wp-admin/edit-pages.php:192 ++#: wp-admin/edit.php:218 ++#: wp-admin/includes/template.php:292 ++#: wp-admin/includes/template.php:329 ++#: wp-admin/upload.php:228 ++msgid "Date" ++msgstr "Tanggal" ++ ++#: wp-admin/edit-comments.php:192 ++#: wp-admin/edit-pages.php:193 ++#: wp-admin/edit.php:219 ++#: wp-admin/upload.php:229 ++msgid "Actions" ++msgstr "Tindakan" ++ ++#: wp-admin/edit-comments.php:224 ++msgid "No comments awaiting moderation… yet." ++msgstr "Belum ada komentar yang menunggu moderasi." ++ ++#: wp-admin/edit-comments.php:230 ++#: wp-content/plugins/akismet/akismet.php:614 ++msgid "No results found." ++msgstr "Tidak ada hasil yang ditemukan." ++ ++#: wp-admin/edit-form-advanced.php:5 ++#, php-format ++msgid "Post updated. Continue editing below or go back." ++msgstr "Tulisan telah diperbarui. Lanjutkan menyunting di bawah atau kembali." ++ ++#: wp-admin/edit-form-advanced.php:6 ++#: wp-admin/edit-page-form.php:5 ++msgid "Custom field updated." ++msgstr "Ruas tersuai telah diperbarui." ++ ++#: wp-admin/edit-form-advanced.php:7 ++#: wp-admin/edit-page-form.php:6 ++msgid "Custom field deleted." ++msgstr "Ruas tersuai telah dihapus." ++ ++#: wp-admin/edit-form-advanced.php:8 ++msgid "Post updated." ++msgstr "Tulisan telah diperbarui." ++ ++#: wp-admin/edit-form-advanced.php:20 ++#: wp-admin/edit-form.php:3 ++msgid "Write Post" ++msgstr "Buat Tulisan" ++ ++#: wp-admin/edit-form-advanced.php:42 ++msgid "Already pinged:" ++msgstr "Sudah diping:" ++ ++#: wp-admin/edit-form-advanced.php:50 ++msgid "Save and Continue Editing" ++msgstr "Simpan dan Terus Sunting" ++ ++#: wp-admin/edit-form-advanced.php:78 ++msgid "View this Post" ++msgstr "Lihat Tulisan Ini" ++ ++#: wp-admin/edit-form-advanced.php:80 ++#: wp-includes/script-loader.php:499 ++msgid "Preview this Post" ++msgstr "Pratampil Tulisan Ini" ++ ++#: wp-admin/edit-form-advanced.php:86 ++#: wp-admin/edit-page-form.php:72 ++msgid "Publish Status" ++msgstr "Status Terbit" ++ ++#: wp-admin/edit-form-advanced.php:90 ++#: wp-admin/edit-page-form.php:76 ++#: wp-admin/edit-page-form.php:78 ++#: wp-admin/edit-pages.php:39 ++#: wp-admin/edit-post-rows.php:142 ++#: wp-admin/includes/post.php:522 ++#: wp-admin/includes/template.php:438 ++#: wp-includes/post.php:306 ++#: wp-includes/post.php:328 ++msgid "Published" ++msgstr "Telah Terbit" ++ ++#: wp-admin/edit-form-advanced.php:92 ++#: wp-admin/edit-pages.php:40 ++#: wp-admin/edit-post-rows.php:145 ++#: wp-admin/includes/post.php:523 ++#: wp-admin/includes/template.php:441 ++msgid "Scheduled" ++msgstr "Terjadwal" ++ ++#: wp-admin/edit-form-advanced.php:95 ++#: wp-admin/edit-page-form.php:83 ++#: wp-admin/edit-pages.php:41 ++#: wp-admin/edit-post-rows.php:148 ++#: wp-admin/includes/post.php:524 ++#: wp-admin/includes/template.php:444 ++#: wp-includes/post.php:304 ++msgid "Pending Review" ++msgstr "Menunggu Evaluasi" ++ ++#: wp-admin/edit-form-advanced.php:101 ++msgid "Keep this post private" ++msgstr "Buat tulisan ini privat" ++ ++#: wp-admin/edit-form-advanced.php:106 ++#: wp-admin/edit-page-form.php:92 ++#, php-format ++msgid "Scheduled for:
    %1$s at %2$s" ++msgstr "Dijadwalkan untuk:
    %1$s pukul %2$s" ++ ++#: wp-admin/edit-form-advanced.php:108 ++#: wp-admin/edit-page-form.php:94 ++#, php-format ++msgid "Published on:
    %1$s at %2$s" ++msgstr "Diterbitkan pada:
    %1$s pukul %2$s" ++ ++#: wp-admin/edit-form-advanced.php:110 ++#: wp-admin/edit-form-advanced.php:117 ++#: wp-admin/edit-page-form.php:96 ++#: wp-admin/edit-page-form.php:103 ++msgid "Publish immediately" ++msgstr "Terbitkan segera" ++ ++#: wp-admin/edit-form-advanced.php:112 ++#: wp-admin/edit-page-form.php:98 ++#, php-format ++msgid "Publish on:
    %1$s at %2$s" ++msgstr "Terbitkan pada:
    %1$s pukul %2$s" ++ ++#: wp-admin/edit-form-advanced.php:124 ++#: wp-admin/edit-form-comment.php:40 ++#: wp-admin/edit-page-form.php:109 ++#: wp-admin/edit-post-rows.php:168 ++#: wp-admin/includes/dashboard.php:220 ++#: wp-admin/includes/post.php:658 ++#: wp-admin/includes/widgets.php:110 ++#: wp-admin/includes/widgets.php:231 ++#: wp-admin/page.php:66 ++#: wp-admin/plugins.php:127 ++#: wp-admin/post.php:68 ++#: wp-includes/script-loader.php:154 ++#: wp-includes/script-loader.php:159 ++#: wp-includes/script-loader.php:165 ++#: wp-includes/script-loader.php:172 ++#: wp-includes/script-loader.php:193 ++msgid "Edit" ++msgstr "Sunting" ++ ++#: wp-admin/edit-form-advanced.php:132 ++#: wp-admin/edit-form-comment.php:47 ++#: wp-admin/edit-link-form.php:55 ++#: wp-admin/edit-page-form.php:116 ++#: wp-admin/includes/dashboard.php:217 ++#: wp-content/themes/default/functions.php:374 ++#: wp-content/themes/default/functions.php:381 ++#: wp-includes/js/tinymce/langs/wp-langs.php:63 ++#: wp-includes/script-loader.php:144 ++msgid "Save" ++msgstr "Simpan" ++ ++#: wp-admin/edit-form-advanced.php:137 ++#: wp-admin/edit-form.php:52 ++#: wp-admin/edit-page-form.php:121 ++#: wp-admin/sidebar.php:78 ++msgid "Publish" ++msgstr "Terbitkan" ++ ++#: wp-admin/edit-form-advanced.php:139 ++#: wp-admin/edit-page-form.php:123 ++msgid "Submit for Review" ++msgstr "Kirim untuk Evaluasi" ++ ++#: wp-admin/edit-form-advanced.php:145 ++#: wp-admin/edit-page-form.php:129 ++#, php-format ++msgid "" ++"You are about to delete this draft '%s'\n" ++" 'Cancel' to stop, 'OK' to delete." ++msgstr "" ++"Anda akan menghapus naskah ini '%s'\n" ++" 'Cancel' untuk menghentikan, 'OK' untuk menghapus." ++ ++#: wp-admin/edit-form-advanced.php:145 ++#, php-format ++msgid "" ++"You are about to delete this post '%s'\n" ++" 'Cancel' to stop, 'OK' to delete." ++msgstr "" ++"Anda akan menghapus tulisan ini '%s'\n" ++" 'Cancel' untuk membatalkan, 'OK' untuk menghapus." ++ ++#: wp-admin/edit-form-advanced.php:145 ++msgid "Delete post" ++msgstr "Hapus tulisan" ++ ++#: wp-admin/edit-form-advanced.php:151 ++#: wp-admin/edit-page-form.php:135 ++#, php-format ++msgid "Last edited by %1$s on %2$s at %3$s" ++msgstr "Terakhir disunting oleh %1$s pada %2$s pukul %3$s" ++ ++#: wp-admin/edit-form-advanced.php:153 ++#: wp-admin/edit-page-form.php:137 ++#, php-format ++msgid "Last edited on %1$s at %2$s" ++msgstr "Terakhir disunting pada %1$s pukul %2$s" ++ ++#: wp-admin/edit-form-advanced.php:162 ++#: wp-admin/edit-form-comment.php:54 ++#: wp-admin/edit-link-form.php:63 ++#: wp-admin/edit-page-form.php:146 ++msgid "Related" ++msgstr "Terkait" ++ ++#: wp-admin/edit-form-advanced.php:166 ++msgid "See Comments on this Post" ++msgstr "Lihat Komentar pada Tulisan ini" ++ ++#: wp-admin/edit-form-advanced.php:168 ++#: wp-admin/edit-form-comment.php:57 ++#: wp-admin/edit-page-form.php:152 ++msgid "Manage All Comments" ++msgstr "Kelola Seluruh Komentar" ++ ++#: wp-admin/edit-form-advanced.php:169 ++msgid "Manage All Posts" ++msgstr "Kelola Seluruh" ++ ++#: wp-admin/edit-form-advanced.php:170 ++msgid "Manage All Categories" ++msgstr "Kelola Seluruh Kategori" ++ ++#: wp-admin/edit-form-advanced.php:171 ++msgid "Manage All Tags" ++msgstr "Kelola Seluruh Tag" ++ ++#: wp-admin/edit-form-advanced.php:172 ++msgid "View Drafts" ++msgstr "Lihat Naskah" ++ ++#: wp-admin/edit-form-advanced.php:182 ++#: wp-admin/edit-form.php:14 ++#: wp-admin/edit-page-form.php:162 ++#: wp-admin/includes/media.php:536 ++#: wp-admin/includes/media.php:625 ++#: wp-admin/includes/media.php:1130 ++#: wp-admin/includes/media.php:1158 ++#: wp-admin/includes/media.php:1186 ++#: wp-admin/includes/template.php:293 ++#: wp-admin/includes/template.php:330 ++#: wp-includes/js/tinymce/langs/wp-langs.php:282 ++#: wp-includes/script-loader.php:176 ++msgid "Title" ++msgstr "Judul" ++ ++#: wp-admin/edit-form-advanced.php:197 ++#: wp-admin/edit-form.php:25 ++#: wp-admin/menu.php:34 ++msgid "Post" ++msgstr "Tulisan" ++ ++#: wp-admin/edit-form-advanced.php:209 ++#: wp-admin/edit-tags.php:4 ++#: wp-admin/includes/media.php:627 ++#: wp-admin/includes/template.php:296 ++#: wp-admin/menu.php:44 ++#: wp-includes/widgets.php:1326 ++msgid "Tags" ++msgstr "Tag" ++ ++#: wp-admin/edit-form-advanced.php:221 ++#: wp-admin/edit-link-form.php:105 ++msgid "+ Add New Category" ++msgstr "+ Tambah Kategori Baru" ++ ++#: wp-admin/edit-form-advanced.php:223 ++#: wp-admin/edit-link-form.php:107 ++msgid "New category name" ++msgstr "Nama kategori baru" ++ ++#: wp-admin/edit-form-advanced.php:224 ++msgid "Parent category" ++msgstr "Kategori induk" ++ ++#: wp-admin/edit-form-advanced.php:225 ++#: wp-admin/edit-link-form.php:108 ++#: wp-admin/includes/widgets.php:104 ++#: wp-includes/script-loader.php:116 ++#: wp-includes/script-loader.php:150 ++#: wp-includes/script-loader.php:192 ++msgid "Add" ++msgstr "Tambah" ++ ++#: wp-admin/edit-form-advanced.php:232 ++#: wp-admin/edit-link-form.php:115 ++msgid "All Categories" ++msgstr "Seluruh Kategori" ++ ++#: wp-admin/edit-form-advanced.php:233 ++#: wp-admin/edit-link-form.php:116 ++msgid "Most Used" ++msgstr "Paling Banyak Digunakan" ++ ++#: wp-admin/edit-form-advanced.php:255 ++#: wp-admin/edit-link-form.php:136 ++#: wp-admin/edit-page-form.php:189 ++msgid "Advanced Options" ++msgstr "Opsi Tingkat Lanjut" ++ ++#: wp-admin/edit-form-advanced.php:258 ++msgid "Excerpt" ++msgstr "Kutipan" ++ ++#: wp-admin/edit-form-advanced.php:260 ++msgid "Excerpts are optional hand-crafted summaries of your content. You can use them in your template" ++msgstr "Kutipan adalah rangkuman tambahan dari konten Anda yang ditulis secara manual. Anda dapat menggunakannya di dalam templat" ++ ++#: wp-admin/edit-form-advanced.php:265 ++msgid "Trackbacks" ++msgstr "Lacak balik" ++ ++#: wp-admin/edit-form-advanced.php:267 ++msgid "Send trackbacks to:" ++msgstr "Kirim lacak balik ke:" ++ ++#: wp-admin/edit-form-advanced.php:267 ++msgid "Separate multiple URLs with spaces" ++msgstr "Pisahkan URL-URL dengan spasi" ++ ++#: wp-admin/edit-form-advanced.php:268 ++msgid "Trackbacks are a way to notify legacy blog systems that you’ve linked to them. If you link other WordPress blogs they’ll be notified automatically using pingbacks, no other action necessary." ++msgstr "Lacak balik merupakan sebuah cara untuk memberitahu sistem blog bahwa Anda telah memasang taut ke mereka. Jika Anda memasang taut ke blog WordPress lainnya mereka akan diberitahu secara otomatis menggunakan ping balik. Tak diperlukan tindakan lain." ++ ++#: wp-admin/edit-form-advanced.php:277 ++#: wp-admin/edit-page-form.php:192 ++msgid "Custom Fields" ++msgstr "Ruas Tersuai" ++ ++#: wp-admin/edit-form-advanced.php:292 ++#: wp-admin/edit-page-form.php:207 ++msgid "Custom fields can be used to add extra metadata to a post that you can use in your theme." ++msgstr "Ruas tersuai dapat digunakan untuk menambahkan metadata tambahan ke dalam sebuah tulisan yang dapat Anda gunakan di tema Anda." ++ ++#: wp-admin/edit-form-advanced.php:299 ++#: wp-admin/edit-page-form.php:212 ++msgid "Comments & Pings" ++msgstr "Komentar & Ping" ++ ++#: wp-admin/edit-form-advanced.php:304 ++#: wp-admin/edit-page-form.php:217 ++msgid "Allow Comments" ++msgstr "Izinkan Komentar" ++ ++#: wp-admin/edit-form-advanced.php:305 ++#: wp-admin/edit-page-form.php:218 ++msgid "Allow Pings" ++msgstr "Izinkan Ping" ++ ++#: wp-admin/edit-form-advanced.php:306 ++msgid "These settings apply to this post only. “Pings” are trackbacks and pingbacks." ++msgstr "Penataan ini hanya diterapkan ke tulisan ini. “Ping” ialah lacak balik dan ping balik." ++ ++#: wp-admin/edit-form-advanced.php:311 ++msgid "Password Protect This Post" ++msgstr "Lindungi Tulisan Ini dengan Kata Sandi" ++ ++#: wp-admin/edit-form-advanced.php:314 ++msgid "Setting a password will require people who visit your blog to enter the above password to view this post and its comments." ++msgstr "Menentukan sebuah kata sandi akan mengharuskan orang yang mengunjungi blog Anda untuk memasukkan kata sandi di atas jika ingin melihat tulisan dan komentar-komentarnya." ++ ++#: wp-admin/edit-form-advanced.php:319 ++msgid "Post Slug" ++msgstr "Slug Tulisan" ++ ++#: wp-admin/edit-form-advanced.php:332 ++msgid "Post Author" ++msgstr "Penulis Tulisan" ++ ++#: wp-admin/edit-form-comment.php:3 ++#, php-format ++msgid "Editing Comment # %s" ++msgstr "Menyunting Komentar # %s" ++ ++#: wp-admin/edit-form-comment.php:20 ++msgid "View this Comment" ++msgstr "Lihat Komentar Ini" ++ ++#: wp-admin/edit-form-comment.php:25 ++msgid "Approval Status" ++msgstr "Status Persetujuan" ++ ++#: wp-admin/edit-form-comment.php:28 ++msgid "Approved" ++msgstr "Disetujui" ++ ++#: wp-admin/edit-form-comment.php:29 ++msgid "Moderated" ++msgstr "Dimoderasi" ++ ++#: wp-admin/edit-form-comment.php:30 ++#: wp-admin/includes/template.php:688 ++#: wp-content/plugins/akismet/akismet.php:639 ++msgid "Spam" ++msgstr "Spam" ++ ++#: wp-admin/edit-form-comment.php:35 ++#, php-format ++msgid "%1$s at %2$s" ++msgstr "%1$s pukul %2$s" ++ ++#: wp-admin/edit-form-comment.php:49 ++msgid "" ++"You are about to delete this comment. \n" ++" 'Cancel' to stop, 'OK' to delete." ++msgstr "" ++"Anda akan menghapus komentar ini. \n" ++" 'Cancel' untuk menghentikan, 'OK' untuk menghapus." ++ ++#: wp-admin/edit-form-comment.php:49 ++msgid "Delete comment" ++msgstr "Hapus komentar" ++ ++#: wp-admin/edit-form-comment.php:58 ++msgid "Moderate Comments" ++msgstr "Moderasikan Komentar" ++ ++#: wp-admin/edit-form.php:14 ++msgid "Help on titles" ++msgstr "Bantuan mengenai judul" ++ ++#: wp-admin/edit-form.php:19 ++msgid "Help on categories" ++msgstr "Bantuan mengenai kategori" ++ ++#: wp-admin/edit-form.php:25 ++msgid "Help with post field" ++msgstr "Bantuan mengenai ruas tulisan" ++ ++#: wp-admin/edit-form.php:45 ++#, php-format ++msgid "TrackBack a URL: (Separate multiple URLs with spaces.)" ++msgstr "Lacak BalikURL tertentu: (Pisahkan berbagai URLdengan spasi.)" ++ ++#: wp-admin/edit-form.php:48 ++#: wp-admin/sidebar.php:76 ++msgid "Save as Draft" ++msgstr "Simpan sebagai Naskah" ++ ++#: wp-admin/edit-form.php:49 ++msgid "Save as Private" ++msgstr "Simpan sebagai Privat" ++ ++#: wp-admin/edit-form.php:56 ++msgid "Advanced Editing" ++msgstr "Penyuntingan Tingkat Lanjut" ++ ++#: wp-admin/edit-link-categories.php:35 ++#: wp-admin/menu.php:45 ++msgid "Link Categories" ++msgstr "Kategori Taut" ++ ++#: wp-admin/edit-link-categories.php:48 ++msgid "Categories deleted." ++msgstr "Kategori dihapus." ++ ++#: wp-admin/edit-link-categories.php:59 ++#, php-format ++msgid "Manage Link Categories (add new)" ++msgstr "Kelola Kategori Taut (tambahkan baru)" ++ ++#: wp-admin/edit-link-categories.php:61 ++msgid "Manage Link Categories" ++msgstr "Kelola Kategori Taut" ++ ++#: wp-admin/edit-link-categories.php:107 ++#: wp-admin/menu.php:42 ++#: wp-includes/widgets.php:1372 ++msgid "Links" ++msgstr "Taut" ++ ++#: wp-admin/edit-link-categories.php:148 ++#, php-format ++msgid "Note:
    Deleting a category does not delete the links in that category. Instead, links that were only assigned to the deleted category are set to the category %s." ++msgstr "Catatan:
    Menghapus sebuah kategori tidak menghapus taut dalam kategori tersebut. Melainkan, taut yang hanya termasuk dalam kategori tersebut akan dipindahkan ke kategori %s." ++ ++#: wp-admin/edit-link-category-form.php:28 ++msgid "Category name" ++msgstr "Nama kategori" ++ ++#: wp-admin/edit-link-category-form.php:32 ++msgid "Category slug" ++msgstr "Slug kategori" ++ ++#: wp-admin/edit-link-category-form.php:37 ++msgid "Description (optional)" ++msgstr "Keterangan (tambahan)" ++ ++#: wp-admin/edit-link-form.php:3 ++#: wp-admin/link.php:92 ++msgid "Edit Link" ++msgstr "Sunting Taut" ++ ++#: wp-admin/edit-link-form.php:8 ++#: wp-admin/edit-link-form.php:9 ++#: wp-admin/link-add.php:4 ++msgid "Add Link" ++msgstr "Tambahkan Taut" ++ ++#: wp-admin/edit-link-form.php:46 ++msgid "Visit Link" ++msgstr "Kunjungi Taut" ++ ++#: wp-admin/edit-link-form.php:51 ++msgid "Keep this link private" ++msgstr "Tetap buat taut ini privat" ++ ++#: wp-admin/edit-link-form.php:58 ++#, php-format ++msgid "" ++"You are about to delete this link '%s'\n" ++"'Cancel' to stop, 'OK' to delete." ++msgstr "" ++"Anda akan menghapus taut ini '%s'\n" ++"'Cancel' untuk menghentikan, 'OK' untuk menghapus." ++ ++#: wp-admin/edit-link-form.php:58 ++msgid "Delete link" ++msgstr "Hapus taut" ++ ++#: wp-admin/edit-link-form.php:66 ++msgid "Manage All Links" ++msgstr "Kelola Seluruh Taut" ++ ++#: wp-admin/edit-link-form.php:67 ++msgid "Manage All Link Categories" ++msgstr "Kelola Seluruh Kategori Taut" ++ ++#: wp-admin/edit-link-form.php:68 ++#: wp-admin/import/dotclear.php:587 ++#: wp-admin/import/textpattern.php:523 ++msgid "Import Links" ++msgstr "Impor Taut" ++ ++#: wp-admin/edit-link-form.php:80 ++msgid "Example: Nifty blogging software" ++msgstr "Contoh: perangkat lunak ngeblog yang cerdas" ++ ++#: wp-admin/edit-link-form.php:85 ++msgid "Web Address" ++msgstr "Alamat Web" ++ ++#: wp-admin/edit-link-form.php:88 ++msgid "Example: http://wordpress.org/ — don’t forget the http://" ++msgstr "Contoh: http://wordpress.org/ — jangan lupa http:// nya" ++ ++#: wp-admin/edit-link-form.php:96 ++msgid "This will be shown when someone hovers over the link in the blogroll, or optionally below the link." ++msgstr "Ini akan ditampilkan ketika seseorang membayangi penunjuk tetikus di atas taut di blogroll, atau di bawah taut." ++ ++#: wp-admin/edit-link-form.php:139 ++#: wp-includes/js/tinymce/langs/wp-langs.php:279 ++#: wp-includes/js/tinymce/langs/wp-langs.php:328 ++msgid "Target" ++msgstr "Target" ++ ++#: wp-admin/edit-link-form.php:149 ++#: wp-admin/edit-link-form.php:183 ++#: wp-admin/edit-link-form.php:216 ++#: wp-admin/edit-link-form.php:239 ++msgid "none" ++msgstr "tidak ada" ++ ++#: wp-admin/edit-link-form.php:150 ++msgid "Choose the frame your link targets. Essentially this means if you choose _blank your link will open in a new window." ++msgstr "Pilihlah bingkai yang ditargetkan oleh taut Anda. Mudahnya, jika Anda memilih _blank taut Anda akan terbuka di jendela baru." ++ ++#: wp-admin/edit-link-form.php:155 ++msgid "Link Relationship (XFN)" ++msgstr "Relasi Taut (XFN)" ++ ++#: wp-admin/edit-link-form.php:159 ++msgid "rel:" ++msgstr "rel:" ++ ++#: wp-admin/edit-link-form.php:166 ++msgid "identity" ++msgstr "identitas" ++ ++#: wp-admin/edit-link-form.php:170 ++msgid "another web address of mine" ++msgstr "alamat web lain saya" ++ ++#: wp-admin/edit-link-form.php:174 ++msgid "friendship" ++msgstr "pertemanan" ++ ++#: wp-admin/edit-link-form.php:177 ++msgid "contact" ++msgstr "kontak" ++ ++#: wp-admin/edit-link-form.php:179 ++msgid "acquaintance" ++msgstr "kenalan" ++ ++#: wp-admin/edit-link-form.php:181 ++msgid "friend" ++msgstr "teman" ++ ++#: wp-admin/edit-link-form.php:187 ++msgid "physical" ++msgstr "fisik" ++ ++#: wp-admin/edit-link-form.php:191 ++msgid "met" ++msgstr "pernah bertemu" ++ ++#: wp-admin/edit-link-form.php:195 ++msgid "professional" ++msgstr "profesional" ++ ++#: wp-admin/edit-link-form.php:199 ++msgid "co-worker" ++msgstr "teman kerja" ++ ++#: wp-admin/edit-link-form.php:202 ++msgid "colleague" ++msgstr "kolega" ++ ++#: wp-admin/edit-link-form.php:206 ++msgid "geographical" ++msgstr "geografis" ++ ++#: wp-admin/edit-link-form.php:210 ++msgid "co-resident" ++msgstr "satu tempat tinggal" ++ ++#: wp-admin/edit-link-form.php:213 ++msgid "neighbor" ++msgstr "tetangga" ++ ++#: wp-admin/edit-link-form.php:220 ++msgid "family" ++msgstr "keluarga" ++ ++#: wp-admin/edit-link-form.php:224 ++msgid "child" ++msgstr "anak" ++ ++#: wp-admin/edit-link-form.php:227 ++msgid "kin" ++msgstr "famili" ++ ++#: wp-admin/edit-link-form.php:230 ++msgid "parent" ++msgstr "orang tua" ++ ++#: wp-admin/edit-link-form.php:233 ++msgid "sibling" ++msgstr "saudara kandung" ++ ++#: wp-admin/edit-link-form.php:236 ++msgid "spouse" ++msgstr "pasangan nikah" ++ ++#: wp-admin/edit-link-form.php:243 ++msgid "romantic" ++msgstr "romantis" ++ ++#: wp-admin/edit-link-form.php:247 ++msgid "muse" ++msgstr "inspirasi" ++ ++#: wp-admin/edit-link-form.php:250 ++msgid "crush" ++msgstr "gebetan" ++ ++#: wp-admin/edit-link-form.php:253 ++msgid "date" ++msgstr "teman kencan" ++ ++#: wp-admin/edit-link-form.php:256 ++msgid "sweetheart" ++msgstr "kekasih" ++ ++#: wp-admin/edit-link-form.php:263 ++msgid "If the link is to a person, you can specify your relationship with them using the above form. If you would like to learn more about the idea check out XFN." ++msgstr "Jika taut tersebut merujuk kepada seseorang, Anda dapat memberikan informasi mengenai hubungan Anda dengannya menggunakan formulir di atas. Jika Anda ingin belajar lebih jauh mengenai ide tersebut, pelajari hal-hal mengenai XFN." ++ ++#: wp-admin/edit-link-form.php:268 ++#: wp-content/themes/default/functions.php:393 ++#: wp-includes/js/tinymce/langs/wp-langs.php:291 ++#: wp-includes/js/tinymce/wp-mce-help.php:163 ++msgid "Advanced" ++msgstr "Lanjut" ++ ++#: wp-admin/edit-link-form.php:272 ++msgid "Image Address" ++msgstr "Alamat Gambar" ++ ++#: wp-admin/edit-link-form.php:276 ++msgid "RSS Address" ++msgstr "Alamat RSS" ++ ++#: wp-admin/edit-link-form.php:280 ++msgid "Notes" ++msgstr "Catatan" ++ ++#: wp-admin/edit-link-form.php:284 ++msgid "Rating" ++msgstr "Rating" ++ ++#: wp-admin/edit-link-form.php:293 ++msgid "(Leave at 0 for no rating.)" ++msgstr "(Biarkan 0 untuk tidak menilai.)" ++ ++#: wp-admin/edit-page-form.php:4 ++#, php-format ++msgid "Page updated. Continue editing below or go back." ++msgstr "Halaman telah diperbarui. Lanjutkan menyunting di bawah atau kembali." ++ ++#: wp-admin/edit-page-form.php:7 ++msgid "Page updated." ++msgstr "Halaman diperbarui." ++ ++#: wp-admin/edit-page-form.php:36 ++msgid "Write Page" ++msgstr "Buat Halaman" ++ ++#: wp-admin/edit-page-form.php:64 ++msgid "View this Page" ++msgstr "Lihat Halaman Ini" ++ ++#: wp-admin/edit-page-form.php:66 ++#: wp-includes/script-loader.php:498 ++msgid "Preview this Page" ++msgstr "Pratampilkan Halaman Ini" ++ ++#: wp-admin/edit-page-form.php:81 ++msgid "Pending" ++msgstr "Ditunda" ++ ++#: wp-admin/edit-page-form.php:88 ++msgid "Keep this page private" ++msgstr "Tetap jadikan tulisan ini privat" ++ ++#: wp-admin/edit-page-form.php:129 ++#, php-format ++msgid "" ++"You are about to delete this page '%s'\n" ++" 'Cancel' to stop, 'OK' to delete." ++msgstr "" ++"Anda akan menghapus halaman '%s' ini\n" ++" 'Cancel' untuk membatalkan, 'OK' untuk menghapus." ++ ++#: wp-admin/edit-page-form.php:129 ++msgid "Delete page" ++msgstr "Hapus halaman" ++ ++#: wp-admin/edit-page-form.php:150 ++msgid "See Comments on this Page" ++msgstr "Lihat Komentar di Halaman Ini" ++ ++#: wp-admin/edit-page-form.php:153 ++msgid "Manage All Pages" ++msgstr "Kelola Seluruh Halaman" ++ ++#: wp-admin/edit-page-form.php:177 ++#: wp-admin/menu.php:35 ++#: wp-includes/script-loader.php:180 ++msgid "Page" ++msgstr "Halaman" ++ ++#: wp-admin/edit-page-form.php:219 ++msgid "These settings apply to this page only. “Pings” are trackbacks and pingbacks." ++msgstr "Penataan ini hanya diterapkan ke halaman ini. “Ping” adalahlacak balik dan ping balik." ++ ++#: wp-admin/edit-page-form.php:224 ++msgid "Password Protect This Page" ++msgstr "Lindungi Halaman Ini dengan Kata Sandi" ++ ++#: wp-admin/edit-page-form.php:227 ++msgid "Setting a password will require people who visit your blog to enter the above password to view this page and its comments." ++msgstr "Menentukan sebuah kata sandi akan mewajibkan orang-orang yang mengunjungi blog Anda untuk memasukkan kata sandi tersebut jika hendak melihat halaman ini beserta komentarnya." ++ ++#: wp-admin/edit-page-form.php:232 ++msgid "Page Slug" ++msgstr "Slug Halaman" ++ ++#: wp-admin/edit-page-form.php:239 ++msgid "Page Parent" ++msgstr "Induk Halaman" ++ ++#: wp-admin/edit-page-form.php:242 ++msgid "Main Page (no parent)" ++msgstr "Halaman Utama (tanpa induk)" ++ ++#: wp-admin/edit-page-form.php:245 ++msgid "You can arrange your pages in hierarchies, for example you could have an “About” page that has “Life Story” and “My Dog” pages under it. There are no limits to how deeply nested you can make pages." ++msgstr "Anda dapat mengatur hierarki halaman Anda. Sebagai contoh, Anda bisa memiliki halaman “Tentang” yang memiliki halaman “Kisah Hidup” dan “Anjing Saya” di bawahnya. Tidak ada batasan seberapa dalam urutan hierarki yang dapat Anda buat terhadap halaman." ++ ++#: wp-admin/edit-page-form.php:251 ++#: wp-admin/includes/file.php:3 ++msgid "Page Template" ++msgstr "Templat Halaman" ++ ++#: wp-admin/edit-page-form.php:254 ++msgid "Default Template" ++msgstr "Templat Standar" ++ ++#: wp-admin/edit-page-form.php:257 ++msgid "Some themes have custom templates you can use for certain pages that might have additional features or custom layouts. If so, you’ll see them above." ++msgstr "Beberapa tema memiliki templat tersuai yang dapat digunakan untuk halaman-halaman tertentu yang mungkin memiliki fitur tambahan atau tata letak khusus. Jika begitu, Anda akan melihatnya di atas." ++ ++#: wp-admin/edit-page-form.php:263 ++msgid "Page Order" ++msgstr "Urutan Halaman" ++ ++#: wp-admin/edit-page-form.php:266 ++msgid "Pages are usually ordered alphabetically, but you can put a number above to change the order pages appear in. (We know this is a little janky, it’ll be better in future releases.)" ++msgstr "Halaman biasanya diurutkan secara alfabet, namun Anda dapat meletakkan angka di atas untuk mengubah pengurutan halaman. " ++ ++#: wp-admin/edit-page-form.php:277 ++msgid "Page Author" ++msgstr "Penulis Halaman" ++ ++#: wp-admin/edit-pages.php:11 ++#: wp-admin/page.php:134 ++msgid "You are not allowed to delete this page." ++msgstr "Anda tidak diperkenankan untuk menghapus halaman ini." ++ ++#: wp-admin/edit-pages.php:15 ++#: wp-admin/edit-pages.php:18 ++#: wp-admin/edit.php:15 ++#: wp-admin/edit.php:18 ++#: wp-admin/page.php:138 ++#: wp-admin/page.php:141 ++#: wp-admin/post.php:149 ++#: wp-admin/post.php:152 ++#: wp-admin/upload.php:18 ++msgid "Error in deleting..." ++msgstr "Galat dalam menghapus..." ++ ++#: wp-admin/edit-pages.php:34 ++#: wp-admin/menu.php:41 ++#: wp-includes/post-template.php:306 ++#: wp-includes/widgets.php:366 ++#: wp-includes/widgets.php:1360 ++#: wp-includes/widgets.php:1361 ++msgid "Pages" ++msgstr "Halaman" ++ ++#: wp-admin/edit-pages.php:39 ++msgid "Published pages" ++msgstr "Halaman yang telah terbit" ++ ++#: wp-admin/edit-pages.php:39 ++#: wp-admin/includes/post.php:522 ++#, php-format ++msgid "Published (%s)" ++msgid_plural "Published (%s)" ++msgstr[0] "Terbit (%s)" ++msgstr[1] "Terbit (%s)" ++ ++#: wp-admin/edit-pages.php:40 ++msgid "Scheduled pages" ++msgstr "Halaman terjadwal" ++ ++#: wp-admin/edit-pages.php:40 ++#: wp-admin/includes/post.php:523 ++#, php-format ++msgid "Scheduled (%s)" ++msgid_plural "Scheduled (%s)" ++msgstr[0] "Dijadwalkan (%s)" ++msgstr[1] "Dijadwalkan (%s)" ++ ++#: wp-admin/edit-pages.php:41 ++msgid "Pending pages" ++msgstr "Halaman yang ditangguhkan" ++ ++#: wp-admin/edit-pages.php:41 ++#: wp-admin/includes/post.php:524 ++#, php-format ++msgid "Pending Review (%s)" ++msgid_plural "Pending Review (%s)" ++msgstr[0] "Menunggu Evaluasi (%s)" ++msgstr[1] "Menunggu Evaluasi (%s)" ++ ++#: wp-admin/edit-pages.php:42 ++#: wp-admin/includes/post.php:525 ++#: wp-includes/post.php:303 ++#: wp-includes/post.php:326 ++msgid "Draft" ++msgstr "Naskah" ++ ++#: wp-admin/edit-pages.php:42 ++#: wp-admin/includes/post.php:525 ++msgid "Drafts|manage posts header" ++msgstr "Naskah" ++ ++#: wp-admin/edit-pages.php:42 ++#: wp-admin/includes/post.php:525 ++#, php-format ++msgid "Draft (%s)" ++msgid_plural "Drafts (%s)" ++msgstr[0] "Naskah (%s)" ++msgstr[1] "Naskah (%s)" ++ ++#: wp-admin/edit-pages.php:43 ++#: wp-admin/includes/post.php:526 ++#: wp-includes/post.php:305 ++#: wp-includes/post.php:327 ++msgid "Private" ++msgstr "Privat" ++ ++#: wp-admin/edit-pages.php:43 ++msgid "Private pages" ++msgstr "Halaman privat" ++ ++#: wp-admin/edit-pages.php:43 ++#: wp-admin/includes/post.php:526 ++#, php-format ++msgid "Private (%s)" ++msgid_plural "Private (%s)" ++msgstr[0] "Privat (%s)" ++msgstr[1] "Privat (%s)" ++ ++#: wp-admin/edit-pages.php:46 ++msgid "Manage Pages" ++msgstr "Kelola Halaman" ++ ++#: wp-admin/edit-pages.php:68 ++#: wp-admin/edit.php:74 ++#: wp-admin/upload.php:77 ++#, php-format ++msgid "matching “%s”" ++msgstr "yang cocok dengan “%s”" ++ ++#: wp-admin/edit-pages.php:72 ++#: wp-admin/edit.php:71 ++#: wp-admin/upload.php:74 ++#, php-format ++msgid "by %s" ++msgstr "oleh %s" ++ ++#: wp-admin/edit-pages.php:74 ++#, php-format ++msgid "%1$s%2$s%3$s|You can reorder these: 1: Pages, 2: by {s}, 3: matching {s}" ++msgstr "%1$s%2$s%3$s" ++ ++#: wp-admin/edit-pages.php:85 ++msgid "All Pages" ++msgstr "Semua Halaman" ++ ++#: wp-admin/edit-pages.php:108 ++msgid "Your page has been saved." ++msgstr "Halaman Anda telah disimpan." ++ ++#: wp-admin/edit-pages.php:108 ++#: wp-admin/page-new.php:17 ++msgid "View page" ++msgstr "Lihat halaman" ++ ++#: wp-admin/edit-pages.php:108 ++msgid "Edit page" ++msgstr "Sunting halaman" ++ ++#: wp-admin/edit-pages.php:115 ++msgid "Search Pages" ++msgstr "Cari Halaman" ++ ++#: wp-admin/edit-pages.php:165 ++msgid "No pages found." ++msgstr "Tak ada halaman yang ditemukan." ++ ++#: wp-admin/edit.php:11 ++#: wp-admin/post.php:145 ++#: wp-admin/upload.php:14 ++msgid "You are not allowed to delete this post." ++msgstr "Anda tidak diperkenankan untuk menghapus tulisan ini." ++ ++#: wp-admin/edit.php:54 ++#: wp-admin/upload.php:57 ++#: wp-content/themes/classic/comments-popup.php:9 ++#, php-format ++msgid "Comments on %s" ++msgstr "Komentar untuk %s" ++ ++#: wp-admin/edit.php:56 ++msgid "Manage Posts|manage posts header" ++msgstr "Kelola Tulisan" ++ ++#: wp-admin/edit.php:60 ++#: wp-admin/upload.php:63 ++#, php-format ++msgid "Previous %s" ++msgstr "%s Sebelumnya" ++ ++#: wp-admin/edit.php:60 ++#: wp-admin/upload.php:63 ++#, php-format ++msgid "Latest %s" ++msgstr "%s Terakhir" ++ ++#: wp-admin/edit.php:68 ++#: wp-admin/upload.php:71 ++msgid "by other authors" ++msgstr "oleh penulis lain" ++ ++#: wp-admin/edit.php:75 ++#: wp-admin/upload.php:78 ++#, php-format ++msgid "in “%s”" ++msgstr "dalam “%s”" ++ ++#: wp-admin/edit.php:76 ++#: wp-admin/upload.php:79 ++#, php-format ++msgid "tagged with “%s”" ++msgstr "ditag dengan “%s”" ++ ++#: wp-admin/edit.php:77 ++#: wp-admin/upload.php:80 ++#, php-format ++msgid "during %s" ++msgstr "selama %s" ++ ++#: wp-admin/edit.php:78 ++#: wp-admin/upload.php:81 ++#, php-format ++msgid "%1$s%2$s%3$s%4$s%5$s%6$s|You can reorder these: 1: Posts, 2: by {s}, 3: matching {s}, 4: in {s}, 5: tagged with {s}, 6: during {s}" ++msgstr "%1$s%2$s%3$s%4$s%5$s%6$s" ++ ++#: wp-admin/edit.php:87 ++msgid "All Posts" ++msgstr "Semua Tulisan" ++ ++#: wp-admin/edit.php:113 ++#: wp-admin/post-new.php:28 ++msgid "Your post has been saved." ++msgstr "Tulisan Anda telah disimpan." ++ ++#: wp-admin/edit.php:113 ++#: wp-admin/post-new.php:28 ++msgid "View post" ++msgstr "Lihat tulisan" ++ ++#: wp-admin/edit.php:113 ++#: wp-admin/post-new.php:28 ++#: wp-includes/link-template.php:484 ++msgid "Edit post" ++msgstr "Sunting tulisan" ++ ++#: wp-admin/edit.php:120 ++msgid "Search Posts" ++msgstr "Cari Tulisan" ++ ++#: wp-admin/edit.php:150 ++#: wp-admin/includes/media.php:1023 ++#: wp-admin/upload.php:162 ++msgid "Show all dates" ++msgstr "Tampilkan seluruh tanggal" ++ ++#: wp-admin/edit.php:170 ++msgid "View all categories" ++msgstr "Lihat seluruh kategori" ++ ++#: wp-admin/edit.php:172 ++#: wp-admin/link-manager.php:110 ++#: wp-admin/upload.php:182 ++msgid "Filter" ++msgstr "Penyaring" ++ ++#: wp-admin/edit-post-rows.php:76 ++msgid " — Protected" ++msgstr " — Dilindungi" ++ ++#: wp-admin/edit-post-rows.php:76 ++#: wp-admin/includes/template.php:404 ++msgid " — Private" ++msgstr " — Privat" ++ ++#: wp-admin/edit-post-rows.php:90 ++#: wp-admin/includes/upgrade.php:64 ++#: wp-admin/includes/upgrade.php:65 ++#: wp-includes/category-template.php:116 ++msgid "Uncategorized" ++msgstr "Tak Berkategori" ++ ++#: wp-admin/edit-post-rows.php:106 ++msgid "No Tags" ++msgstr "Tanpa Tag" ++ ++#: wp-admin/edit-post-rows.php:137 ++#: wp-admin/includes/template.php:433 ++#, php-format ++msgid "View \"%s\"" ++msgstr "Lihat \"%s\"" ++ ++#: wp-admin/edit-post-rows.php:162 ++msgid "View" ++msgstr "Lihat" ++ ++#: wp-admin/edit-tag-form.php:3 ++#: wp-admin/edit-tag-form.php:4 ++msgid "Edit Tag" ++msgstr "Sunting Tag" ++ ++#: wp-admin/edit-tag-form.php:10 ++#: wp-admin/edit-tag-form.php:11 ++msgid "Add Tag" ++msgstr "Tambahkan Tag" ++ ++#: wp-admin/edit-tag-form.php:28 ++msgid "Tag name" ++msgstr "Nama tag" ++ ++#: wp-admin/edit-tag-form.php:30 ++msgid "The name is how the tag appears on your site." ++msgstr "Nama ini mencerminkan bagaimana tag tersebut muncul di situs Anda." ++ ++#: wp-admin/edit-tag-form.php:33 ++msgid "Tag slug" ++msgstr "Slug tag" ++ ++#: wp-admin/edit-tags.php:113 ++msgid "Tag added." ++msgstr "Tag ditambahkan." ++ ++#: wp-admin/edit-tags.php:114 ++msgid "Tag deleted." ++msgstr "Tag dihapus." ++ ++#: wp-admin/edit-tags.php:115 ++msgid "Tag updated." ++msgstr "Tag diperbarui." ++ ++#: wp-admin/edit-tags.php:116 ++msgid "Tag not added." ++msgstr "Tag tidak ditambahkan." ++ ++#: wp-admin/edit-tags.php:117 ++msgid "Tag not updated." ++msgstr "Tag tidak diperbarui." ++ ++#: wp-admin/edit-tags.php:118 ++msgid "Tags deleted." ++msgstr "Tag dihapus." ++ ++#: wp-admin/edit-tags.php:130 ++#, php-format ++msgid "Manage Tags (add new)" ++msgstr "Kelola Tag (tambahkan baru)" ++ ++#: wp-admin/edit-tags.php:132 ++msgid "Manage Tags" ++msgstr "Kelola Tag" ++ ++#: wp-admin/edit-tags.php:137 ++msgid "Search Tags" ++msgstr "Cari Tag" ++ ++#: wp-admin/export.php:4 ++#: wp-admin/export.php:16 ++#: wp-admin/menu.php:48 ++msgid "Export" ++msgstr "Ekspor" ++ ++#: wp-admin/export.php:17 ++msgid "When you click the button below WordPress will create an XML file for you to save to your computer." ++msgstr "Ketika Anda mengklik tombol di bawah WordPress akan menciptakan sebuah berkas XML untuk Anda simpan di komputer Anda." ++ ++#: wp-admin/export.php:18 ++msgid "This format, which we call WordPress eXtended RSS or WXR, will contain your posts, pages, comments, custom fields, categories, and tags." ++msgstr "Format ini, yang kita sebut WordPress eXtended RSS atau WXR akan berisi tulisan, halaman, komentar ruas tersuai, kategori dan tag Anda." ++ ++#: wp-admin/export.php:19 ++msgid "Once you’ve saved the download file, you can use the Import function on another WordPress blog to import this blog." ++msgstr "Setelah Anda telah menyimpan berkas yang diunduh, Anda dapat memakai fungsi Impor pada blog WordPress lainnya untuk mengimpor blog ini." ++ ++#: wp-admin/export.php:21 ++msgid "Options" ++msgstr "Opsi" ++ ++#: wp-admin/export.php:25 ++msgid "Restrict Author" ++msgstr "Batasi Penulis" ++ ++#: wp-admin/export.php:28 ++msgid "All Authors" ++msgstr "Seluruh Penulis" ++ ++#: wp-admin/export.php:40 ++msgid "Download Export File" ++msgstr "Unduh Berkas Ekspor" ++ ++#: wp-admin/import/blogger.php:13 ++msgid "Import Blogger" ++msgstr "Impor Blogger" ++ ++#: wp-admin/import/blogger.php:14 ++msgid "Howdy! This importer allows you to import posts and comments from your Blogger account into your WordPress blog." ++msgstr "Halo! Pengimpor ini memungkinkan Anda untuk mengimpor tulisan dan komentar dari akun Blogger Anda ke dalam blog WordPress Anda." ++ ++#: wp-admin/import/blogger.php:15 ++msgid "To use this importer, you must have a Google account and an upgraded (New, was Beta) blog hosted on blogspot.com or a custom domain (not FTP)." ++msgstr "Untuk menggunakan pengimpor, Anda harus memiliki sebuah akun Google, sebuah blog yang telah dimutakhirkan yang dihostingkan di blogspot atau ranah tersuai (bukan FTP)" ++ ++#: wp-admin/import/blogger.php:16 ++msgid "The first thing you need to do is tell Blogger to let WordPress access your account. You will be sent back here after providing authorization." ++msgstr "Hal pertama yang perlu Anda lakukan ialah memberitahu Blogger untuk mengizinkan WordPress mengakses akun Anda. Anda akan dikirim kembali kemari setelah memberikan otorisasi." ++ ++#: wp-admin/import/blogger.php:17 ++msgid "Authorize" ++msgstr "Beri Kuasa" ++ ++#: wp-admin/import/blogger.php:51 ++msgid "Authorization failed" ++msgstr "Otorisasi gagal" ++ ++#: wp-admin/import/blogger.php:52 ++msgid "Something went wrong. If the problem persists, send this info to support:" ++msgstr "Ada sesuatu yang salah. Jika masalah ini menetap, kirimkan info ini ke dukungan:" ++ ++#: wp-admin/import/blogger.php:109 ++msgid "Trouble signing in" ++msgstr "Bermasalah ketika sign in" ++ ++#: wp-admin/import/blogger.php:110 ++msgid "We were not able to gain access to your account. Try starting over." ++msgstr "Kami tidak mampu mendapatkan akses ke akun Anda. Coba ulangi lagi." ++ ++#: wp-admin/import/blogger.php:143 ++msgid "No blogs found" ++msgstr "Tidak ada blog yang ditemukan" ++ ++#: wp-admin/import/blogger.php:144 ++msgid "We were able to log in but there were no blogs. Try a different account next time." ++msgstr "Kami dapat masuk log tetapi tidak ada satupun blog. Lain kali cobalah pada akun yang berbeda." ++ ++#: wp-admin/import/blogger.php:152 ++#: wp-admin/upgrade.php:30 ++#: wp-admin/upgrade.php:57 ++msgid "Continue" ++msgstr "Lanjutkan" ++ ++#: wp-admin/import/blogger.php:153 ++#: wp-admin/link-import.php:73 ++msgid "Importing..." ++msgstr "Mengimpor..." ++ ++#: wp-admin/import/blogger.php:154 ++msgid "Set Authors" ++msgstr "Tentukan Penulis" ++ ++#: wp-admin/import/blogger.php:155 ++msgid "Preparing author mapping form..." ++msgstr "Menyiapkan formulir pemetaan penulis..." ++ ++#: wp-admin/import/blogger.php:156 ++msgid "Final Step: Author Mapping" ++msgstr "Langkah Terakhir: Pemetaan Penulis" ++ ++#: wp-admin/import/blogger.php:157 ++msgid "Nothing was imported. Had you already imported this blog?" ++msgstr "Tidak ada yang diimpor. Sudahkah Anda mengimpor blog ini?" ++ ++#: wp-admin/import/blogger.php:158 ++msgid "Blogger Blogs" ++msgstr "Blog blogger" ++ ++#: wp-admin/import/blogger.php:159 ++msgid "Blog Name" ++msgstr "Nama Blog" ++ ++#: wp-admin/import/blogger.php:160 ++msgid "Blog URL" ++msgstr "URL Blog" ++ ++#: wp-admin/import/blogger.php:161 ++msgid "The Magic Button" ++msgstr "Tombol Ajaib" ++ ++#: wp-admin/import/blogger.php:163 ++#: wp-admin/includes/file.php:3 ++#: wp-admin/menu.php:38 ++#: wp-content/plugins/akismet/akismet.php:488 ++#: wp-content/themes/classic/comments-popup.php:22 ++msgid "Comments" ++msgstr "Komentar" ++ ++#: wp-admin/import/blogger.php:164 ++msgid "This feature requires Javascript but it seems to be disabled. Please enable Javascript and then reload this page. Don't worry, you can turn it back off when you're done." ++msgstr "Fitur ini memerlukan Javascript tetapi nampaknya dimatikan. Mohon hidupkan Javascript dan kemudian muat ulang halaman ini. Jangan khawatir, Anda dapat mematikannya kembali setelah Anda selesai." ++ ++#: wp-admin/import/blogger.php:611 ++msgid "All posts were imported with the current user as author. Use this form to move each Blogger user's posts to a different WordPress user. You may add users and then return to this page and complete the user mapping. This form may be used as many times as you like until you activate the \"Restart\" function below." ++msgstr "Seluruh tulisan diimpor dengan pengguna ini sebagai penulis. Gunakan formulir ini untuk memindahkan masing-masing tulisan pengguna Blogger ke berbagai pengguna WordPress. Anda dapat menambahkan pengguna kemudian kembali ke halaman ini dan menyelesaikan pemetaan pengguna. Formulir ini dapat digunakan berapa kalipun Anda suka hingga Anda mengaktivasi fungsi \"Restart\" di bawah." ++ ++#: wp-admin/import/blogger.php:612 ++msgid "Author mapping" ++msgstr "Pemetaan penulis" ++ ++#: wp-admin/import/blogger.php:614 ++msgid "Blogger username" ++msgstr "Nama pengguna Blogger" ++ ++#: wp-admin/import/blogger.php:615 ++msgid "WordPress login" ++msgstr "Nama pengguna WordPress" ++ ++#: wp-admin/import/blogger.php:673 ++msgid "Could not connect to https://www.google.com" ++msgstr "Tidak dapat menghubungi https://www.google.com" ++ ++#: wp-admin/import/blogger.php:674 ++msgid "There was a problem opening a secure connection to Google. This is what went wrong:" ++msgstr "Ada masalah dalam membuka hubungan aman ke Google. Inilah hal yang salah:" ++ ++#: wp-admin/import/blogger.php:685 ++#, php-format ++msgid "Could not connect to %s" ++msgstr "Tidak dapat menghubungi %s" ++ ++#: wp-admin/import/blogger.php:686 ++msgid "There was a problem opening a connection to Blogger. This is what went wrong:" ++msgstr "Ada masalah membuka hubungan ke Blogger. Inilah hal yang salah:" ++ ++#: wp-admin/import/blogger.php:752 ++msgid "Congratulations!" ++msgstr "Selamat!" ++ ++#: wp-admin/import/blogger.php:752 ++msgid "Now that you have imported your Blogger blog into WordPress, what are you going to do? Here are some suggestions:" ++msgstr "Sekarang setelah Anda telah mengimpor blog Blogger Anda ke dalam WordPress, apa yang akan Anda lakukan? Berikut beberapa saran:" ++ ++#: wp-admin/import/blogger.php:752 ++msgid "That was hard work! Take a break." ++msgstr "Itu tadi pekerjaan berat! Istirahat saja dulu." ++ ++#: wp-admin/import/blogger.php:754 ++msgid "In case you haven't done it already, you can import the posts from your other blogs:" ++msgstr "Jika Anda belum pernah melakukannya, Anda dapat mengimpor tulisan dari blog Anda yang lain:" ++ ++#: wp-admin/import/blogger.php:756 ++#, php-format ++msgid "Go to Authors & Users, where you can modify the new user(s) or delete them. If you want to make all of the imported posts yours, you will be given that option when you delete the new authors." ++msgstr "Kunjungi Penulis & Pengunjung, di mana Anda dapat memodifikasi pengguna baru atau menghapusnya. Jika Anda ingin membuat seluruh tulisan tersebut menjadi milik Anda, Anda akan diberi pilihan itu ketika Anda menghapus penulis baru." ++ ++#: wp-admin/import/blogger.php:757 ++msgid "For security, click the link below to reset this importer." ++msgstr "Untuk keamanan, klik taut di bawah untuk menata ulang pengimpor ini." ++ ++#: wp-admin/import/blogger.php:788 ++msgid "Restart" ++msgstr "Mulai ulang" ++ ++#: wp-admin/import/blogger.php:789 ++msgid "We have saved some information about your Blogger account in your WordPress database. Clearing this information will allow you to start over. Restarting will not affect any posts you have already imported. If you attempt to re-import a blog, duplicate posts and comments will be skipped." ++msgstr "Kami telah menyimpan beberapa informasi mengenai akun Blogger Anda di dalam database WordPress. Mengosongkan informasi ini memungkinkan Anda untuk memulai kembali. Memulai kembali tidak akan mempengaruhi satupun tulisan yang telah Anda impor. Jika Anda mencoba untuk mengimpor ulang sebuah blog, tulisan dan komentar duplikasi akan dilewati." ++ ++#: wp-admin/import/blogger.php:790 ++msgid "Clear account information" ++msgstr "Kosongkan informasi akun" ++ ++#: wp-admin/import/blogger.php:840 ++msgid "Blogger" ++msgstr "Blogger" ++ ++#: wp-admin/import/blogger.php:840 ++msgid "Import posts, comments, and users from a Blogger blog." ++msgstr "Impor tulisan, komentar dan pengguna dari sebuah blog Blogger." ++ ++#: wp-admin/import/blogware.php:11 ++msgid "Import Blogware" ++msgstr "Impor Blogware" ++ ++#: wp-admin/import/blogware.php:26 ++msgid "Howdy! This importer allows you to extract posts from Blogware XML export file into your blog. Pick a Blogware file to upload and click Import." ++msgstr "Halo! Pengimpor ini memungkinkan Anda untuk mengekstrak tulisan dari ekspor XML Blogware ke dalam blog Anda. Ambil sebuah berkas Blogware untuk diunggah dan klik Impor." ++ ++#: wp-admin/import/blogware.php:89 ++#: wp-admin/import/livejournal.php:69 ++#: wp-admin/import/mt.php:210 ++#: wp-admin/import/wordpress.php:387 ++#, php-format ++msgid "Post %s already exists." ++msgstr "Tulisan %s telah ada." ++ ++#: wp-admin/import/blogware.php:91 ++#: wp-admin/import/livejournal.php:71 ++#: wp-admin/import/mt.php:213 ++#: wp-admin/import/wordpress.php:418 ++#, php-format ++msgid "Importing post %s..." ++msgstr "Mengimpor tulisan %s..." ++ ++#: wp-admin/import/blogware.php:98 ++#: wp-admin/import/livejournal.php:77 ++#: wp-admin/import/rss.php:116 ++msgid "Couldn't get post ID" ++msgstr "Tidak dapat memperoleh ID tulisan" ++ ++#: wp-admin/import/blogware.php:144 ++#: wp-includes/pluggable.php:892 ++#, php-format ++msgid "%s comment" ++msgid_plural "%s comments" ++msgstr[0] "%s komentar" ++msgstr[1] "%s komentar" ++ ++#: wp-admin/import/blogware.php:167 ++#: wp-admin/import/livejournal.php:144 ++#: wp-admin/import/mt.php:423 ++#: wp-admin/import/rss.php:147 ++#, php-format ++msgid "All done. Have fun!" ++msgstr "Semua selesai. Silakan bersenang-senang!" ++ ++#: wp-admin/import/blogware.php:200 ++msgid "Blogware" ++msgstr "Blogware" ++ ++#: wp-admin/import/blogware.php:200 ++msgid "Import posts from Blogware." ++msgstr "Mengimpor tulisan dari Blogware." ++ ++#: wp-admin/import/btt.php:7 ++msgid "Import Bunny’s Technorati Tags" ++msgstr "Impor Tag Technorati Bunny" ++ ++#: wp-admin/import/btt.php:8 ++#: wp-admin/import/dotclear.php:116 ++#: wp-admin/import/jkw.php:8 ++#: wp-admin/import/stp.php:6 ++#: wp-admin/import/textpattern.php:33 ++#: wp-admin/import/utw.php:8 ++msgid "Steps may take a few minutes depending on the size of your database. Please be patient." ++msgstr "Langkah-langkah tersebut dapat memakan waktu beberapa menit tergantung dari ukuran database Anda. Harap bersabar." ++ ++#: wp-admin/import/btt.php:17 ++msgid "Howdy! This imports tags from Bunny’s Technorati Tags into WordPress tags." ++msgstr "Salam! Fasilitas ini mengimpor dari \"Bunny’s Technorati Tags\" ke dalam tag WordPress." ++ ++#: wp-admin/import/btt.php:18 ++msgid "This is suitable for Bunny’s Technorati Tags version 0.6." ++msgstr "Ini cocok untuk Tag Technorati Bunny versi 0.6" ++ ++#: wp-admin/import/btt.php:19 ++msgid "All existing Bunny’s Technorati Tags will be removed after import." ++msgstr "Seluruh Tag Technorati akan disingkirkan setelah proses impor." ++ ++#: wp-admin/import/btt.php:20 ++#: wp-admin/import/jkw.php:20 ++#: wp-admin/import/stp.php:18 ++#: wp-admin/import/utw.php:20 ++msgid "Don’t be stupid - backup your database before proceeding!" ++msgstr "Jangan bersikap bodoh! Cadangkan basis data Anda sebelum melanjutkan!" ++ ++#: wp-admin/import/btt.php:23 ++msgid "Import Tags" ++msgstr "Impor Tag" ++ ++#: wp-admin/import/btt.php:62 ++msgid "Reading Bunny’s Technorati Tags…" ++msgstr "Membaca Tag Technorati Bunny…" ++ ++#: wp-admin/import/btt.php:67 ++#: wp-admin/import/jkw.php:83 ++#: wp-admin/import/jkw.php:124 ++#: wp-admin/import/utw.php:72 ++msgid "No Tags Found!" ++msgstr "Tidak Ada Tag yang Ditemukan!" ++ ++#: wp-admin/import/btt.php:71 ++#: wp-admin/import/jkw.php:87 ++#, php-format ++msgid "Done! %s post with tags were read." ++msgid_plural "Done! %s posts with tags were read." ++msgstr[0] "Selesai! %s tulisan yang memiliki tag telah terbaca." ++msgstr[1] "Selesai! %s tulisan yang memiliki tag telah terbaca." ++ ++#: wp-admin/import/btt.php:93 ++#: wp-admin/import/jkw.php:109 ++#: wp-admin/import/jkw.php:142 ++msgid "Next" ++msgstr "Berikutnya" ++ ++#: wp-admin/import/btt.php:100 ++#: wp-admin/import/jkw.php:163 ++#: wp-admin/import/stp.php:139 ++#: wp-admin/import/utw.php:250 ++msgid "Import Complete!" ++msgstr "Impor Selesai!" ++ ++#: wp-admin/import/btt.php:113 ++msgid "Import Bunny’s Technorati Tags into WordPress tags." ++msgstr "Impor Bunny’s Technorati Tags ke dalam tag WordPress." ++ ++#: wp-admin/import/dotclear.php:115 ++msgid "Import DotClear" ++msgstr "Impor DotClear" ++ ++#: wp-admin/import/dotclear.php:126 ++msgid "Howdy! This importer allows you to extract posts from a DotClear database into your blog. Mileage may vary." ++msgstr "Halo! Importer ini memungkinkan Anda untuk mengekstrak tulisan dari database DotClear ke dalam blog Anda. Jarak dapat bervariasi." ++ ++#: wp-admin/import/dotclear.php:127 ++msgid "Your DotClear Configuration settings are as follows:" ++msgstr "Penataan Konfigurasi DotClear Anda ialah sebagai berikut:" ++ ++#: wp-admin/import/dotclear.php:131 ++msgid "Import Categories" ++msgstr "Impor Kategori" ++ ++#: wp-admin/import/dotclear.php:204 ++#: wp-admin/import/textpattern.php:156 ++msgid "Importing Categories..." ++msgstr "Mengimpor Kategori..." ++ ++#: wp-admin/import/dotclear.php:228 ++#: wp-admin/import/textpattern.php:180 ++#, php-format ++msgid "Done! %1$s category imported." ++msgid_plural "Done! %1$s categories imported." ++msgstr[0] "Selesai! %1$s kategori telah diimpor." ++msgstr[1] "Selesai! %1$s kategori telah diimpor." ++ ++#: wp-admin/import/dotclear.php:231 ++#: wp-admin/import/textpattern.php:183 ++msgid "No Categories to Import!" ++msgstr "Tidak Ada Kategori Untuk Diimpor!" ++ ++#: wp-admin/import/dotclear.php:245 ++#: wp-admin/import/textpattern.php:197 ++msgid "Importing Users..." ++msgstr "Mengimpor Pengguna..." ++ ++#: wp-admin/import/dotclear.php:302 ++#: wp-admin/import/textpattern.php:252 ++#, php-format ++msgid "Done! %1$s users imported." ++msgstr "Selesai! %1$s pengguna telah diimpor." ++ ++#: wp-admin/import/dotclear.php:306 ++#: wp-admin/import/textpattern.php:256 ++msgid "No Users to Import!" ++msgstr "Tidak Ada Pengguna untuk Diimpor!" ++ ++#: wp-admin/import/dotclear.php:322 ++#: wp-admin/import/textpattern.php:272 ++msgid "Importing Posts..." ++msgstr "Mengimpor Tulisan..." ++ ++#: wp-admin/import/dotclear.php:405 ++#: wp-admin/import/textpattern.php:346 ++#, php-format ++msgid "Done! %1$s posts imported." ++msgstr "Selesai! %1$s tulisan telah diimpor." ++ ++#: wp-admin/import/dotclear.php:420 ++#: wp-admin/import/textpattern.php:361 ++msgid "Importing Comments..." ++msgstr "Mengimpor Komentar..." ++ ++#: wp-admin/import/dotclear.php:475 ++#: wp-admin/import/textpattern.php:413 ++#, php-format ++msgid "Done! %1$s comments imported." ++msgstr "Selesai! komentar %1$s telah diimpor." ++ ++#: wp-admin/import/dotclear.php:478 ++#: wp-admin/import/textpattern.php:416 ++msgid "No Comments to Import!" ++msgstr "Tidak Ada Komentar untuk Diimpor!" ++ ++#: wp-admin/import/dotclear.php:491 ++#: wp-admin/import/textpattern.php:429 ++msgid "Importing Links..." ++msgstr "Mengimpor Taut..." ++ ++#: wp-admin/import/dotclear.php:529 ++#, php-format ++msgid "Done! %s link or link category imported." ++msgid_plural "Done! %s links or link categories imported." ++msgstr[0] "Selesai! %s taut atau kategori taut telah diimpor." ++msgstr[1] "Selesai! %s taut atau kategori taut telah diimpor." ++ ++#: wp-admin/import/dotclear.php:533 ++#: wp-admin/import/textpattern.php:469 ++msgid "No Links to Import!" ++msgstr "Tidak Ada Taut untuk Diimpor!" ++ ++#: wp-admin/import/dotclear.php:548 ++#: wp-admin/import/textpattern.php:484 ++msgid "Import Users" ++msgstr "Impor Pengguna" ++ ++#: wp-admin/import/dotclear.php:561 ++#: wp-admin/import/textpattern.php:497 ++msgid "Import Posts" ++msgstr "Impor Tulisan" ++ ++#: wp-admin/import/dotclear.php:575 ++#: wp-admin/import/textpattern.php:511 ++msgid "Import Comments" ++msgstr "Impor Komentar" ++ ++#: wp-admin/import/dotclear.php:600 ++#: wp-admin/import/textpattern.php:536 ++msgid "Finish" ++msgstr "Selesai" ++ ++#: wp-admin/import/dotclear.php:624 ++msgid "Welcome to WordPress. We hope (and expect!) that you will find this platform incredibly rewarding! As a new WordPress user coming from DotClear, there are some things that we would like to point out. Hopefully, they will help your transition go as smoothly as possible." ++msgstr "Selamat datang ke WordPress. Kami harap Anda merasa platform ini benar-benar berharga! Sebagai pengguna WordPress baru yang datang dari DotClear, ada beberapa hal yang ingin kami tunjukkan. Semoga ini akan membantu transisi Anda berjalan semulus mungkin." ++ ++#: wp-admin/import/dotclear.php:625 ++#: wp-admin/import/textpattern.php:560 ++#: wp-admin/menu.php:29 ++#: wp-admin/users.php:8 ++msgid "Users" ++msgstr "Pengguna" ++ ++#: wp-admin/import/dotclear.php:626 ++#, php-format ++msgid "You have already setup WordPress and have been assigned an administrative login and password. Forget it. You didn't have that login in DotClear, why should you have it here? Instead we have taken care to import all of your users into our system. Unfortunately there is one downside. Because both WordPress and DotClear uses a strong encryption hash with passwords, it is impossible to decrypt it and we are forced to assign temporary passwords to all your users. Every user has the same username, but their passwords are reset to password123. So Login and change it." ++msgstr "Anda telah menata WordPress dan telah ditunjukkan login dan kata sandi administratif. Lupakan. Anda tidak membutuhkan login tersebut di DotClear, mengapa Anda harus punya di sini? Bahkan kami telah menangani impor seluruh pengguna Anda ke sistem kami. Sayangnya ada satu kekurangan. Karena WordPress dan DotClear menggunakan enkripsi hash yang kuat pada sandi, tidak mungkin untuk mendecryptnya dan kami terpaksa membuat sandi sementara untuk seluruh pengguna Anda. Setiap pengguna memiliki nama pengguna yang sama, tapi sandi mereka direset ke password123. Jadi Masuk log dan ubahlah." ++ ++#: wp-admin/import/dotclear.php:627 ++#: wp-admin/import/textpattern.php:562 ++msgid "Preserving Authors" ++msgstr "Mempertahankan Penulis" ++ ++#: wp-admin/import/dotclear.php:628 ++#: wp-admin/import/textpattern.php:563 ++msgid "Secondly, we have attempted to preserve post authors. If you are the only author or contributor to your blog, then you are safe. In most cases, we are successful in this preservation endeavor. However, if we cannot ascertain the name of the writer due to discrepancies between database tables, we assign it to you, the administrative user." ++msgstr "Secondly, we have attempted to preserve post authors. If you are the only author or contributor to your blog, then you are safe. In most cases, we are successful in this preservation endeavor. However, if we cannot ascertain the name of the writer due to discrepancies between database tables, we assign it to you, the administrative user." ++ ++#: wp-admin/import/dotclear.php:629 ++#: wp-admin/import/textpattern.php:564 ++msgid "Textile" ++msgstr "Textile" ++ ++#: wp-admin/import/dotclear.php:630 ++msgid "Also, since you're coming from DotClear, you probably have been using Textile to format your comments and posts. If this is the case, we recommend downloading and installing Textile for WordPress. Trust me... You'll want it." ++msgstr "Juga, karena Anda datang dari DotClear, Anda mungkin sudah terbiasa menggunakan Textile untuk memformat komentar serta tulisan Anda. Jika begitu, kami sarankan mengunduh dan menginstal Textile untuk WordPress. Percayalah... Anda akan menginginkannya." ++ ++#: wp-admin/import/dotclear.php:631 ++#: wp-admin/import/textpattern.php:566 ++msgid "WordPress Resources" ++msgstr "Sumber Daya WordPress" ++ ++#: wp-admin/import/dotclear.php:632 ++#: wp-admin/import/textpattern.php:567 ++msgid "Finally, there are numerous WordPress resources around the internet. Some of them are:" ++msgstr "Akhirnya, terdapat banyak sumber daya WordPress di internet. Sebagian dari mereka ialah:" ++ ++#: wp-admin/import/dotclear.php:634 ++#: wp-admin/import/textpattern.php:569 ++msgid "The official WordPress site" ++msgstr "Situs Resmi WordPress" ++ ++#: wp-admin/import/dotclear.php:635 ++#: wp-admin/import/textpattern.php:570 ++msgid "The WordPress support forums" ++msgstr "Forum Bantuan WordPress" ++ ++#: wp-admin/import/dotclear.php:636 ++#: wp-admin/import/textpattern.php:571 ++msgid "The Codex (In other words, the WordPress Bible)" ++msgstr "Codex (Dalam kata lain, Kitab WordPress)" ++ ++#: wp-admin/import/dotclear.php:638 ++#, php-format ++msgid "That's it! What are you waiting for? Go login!" ++msgstr "Cukup! Apa yang Anda tunggu? Langsung masuk log!" ++ ++#: wp-admin/import/dotclear.php:644 ++msgid "DotClear Database User:" ++msgstr "User Database DotClear" ++ ++#: wp-admin/import/dotclear.php:645 ++msgid "DotClear Database Password:" ++msgstr "Kata Sandi Database DotClear:" ++ ++#: wp-admin/import/dotclear.php:646 ++msgid "DotClear Database Name:" ++msgstr "Nama Database DotClear:" ++ ++#: wp-admin/import/dotclear.php:647 ++msgid "DotClear Database Host:" ++msgstr "Host Database DotClear:" ++ ++#: wp-admin/import/dotclear.php:648 ++msgid "DotClear Table prefix:" ++msgstr "Prefiks Tabel DotClear:" ++ ++#: wp-admin/import/dotclear.php:649 ++msgid "Originating character set:" ++msgstr "Set karakter asal:" ++ ++#: wp-admin/import/dotclear.php:745 ++msgid "DotClear" ++msgstr "DotClear" ++ ++#: wp-admin/import/dotclear.php:745 ++msgid "Import categories, users, posts, comments, and links from a DotClear blog." ++msgstr "Mengimpor kategori, pengguna, tulisan, komentar dan taut dari blog DotClear." ++ ++#: wp-admin/import/greymatter.php:9 ++msgid "Import GreyMatter" ++msgstr "Impor GreyMatter" ++ ++#: wp-admin/import/greymatter.php:19 ++msgid "This is a basic GreyMatter to WordPress import script." ++msgstr "Ini merupakan script impor GreyMatter ke WordPress dasar." ++ ++#: wp-admin/import/greymatter.php:20 ++msgid "What it does:" ++msgstr "Apa yang dikerjakannya:" ++ ++#: wp-admin/import/greymatter.php:22 ++msgid "Parses gm-authors.cgi to import (new) authors. Everyone is imported at level 1." ++msgstr "Memparsing gm-authors.cgi untuk mengimpor penulis (baru). Setiap orang diimpor pada level 1." ++ ++#: wp-admin/import/greymatter.php:23 ++msgid "Parses the entries cgi files to import posts, comments, and karma on posts (although karma is not used on WordPress yet).
    If authors are found not to be in gm-authors.cgi, imports them at level 0." ++msgstr "Memparsing berkas cgi entri untuk mengimpor tulisan, komentar, dan karma pada tulisan (walaupun karma belum digunakan pada WordPress).
    Jika penulis ditemukan tidak dalam gm-authors.cgi, impor mereka pada level 0." ++ ++#: wp-admin/import/greymatter.php:24 ++msgid "Detects duplicate entries or comments. If you don't import everything the first time, or this import should fail in the middle, duplicate entries will not be made when you try again." ++msgstr "Mendeteksi entri atau komentar duplikat. Jika Anda tidak mengimpor seluruhnya pada percobaan pertama, atau seandainya impor ini gagal, entri duplikat tidak akan dibuat ketika Anda mencobanya lagi." ++ ++#: wp-admin/import/greymatter.php:26 ++msgid "What it does not:" ++msgstr "Apa yang tidak dilakukannya:" ++ ++#: wp-admin/import/greymatter.php:28 ++msgid "Parse gm-counter.cgi, gm-banlist.cgi, gm-cplog.cgi (you can make a CP log hack if you really feel like it, but I question the need of a CP log)." ++msgstr "Memparsing gm-counter.cgi, gm-banlist.cgi, gm-cplog.cgi (Anda dapat membuat sebuah hack log CP jika Anda benar-benar merasa menyukainya, tapi saya menyangsikan kebutuhan log CP)." ++ ++#: wp-admin/import/greymatter.php:29 ++msgid "Import gm-templates." ++msgstr "Impor gm-template" ++ ++#: wp-admin/import/greymatter.php:30 ++msgid "Doesn't keep entries on top." ++msgstr "Tidak menjaga entri tetap di atas." ++ ++#: wp-admin/import/greymatter.php:38 ++msgid "Second step: GreyMatter details:" ++msgstr "Langkah kedua: detail GreyMatter:" ++ ++#: wp-admin/import/greymatter.php:41 ++msgid "Path to GM files:" ++msgstr "Lokasi (direktori) berkas GM:" ++ ++#: wp-admin/import/greymatter.php:45 ++msgid "Path to GM entries:" ++msgstr "Lokasi (direktori) entri GM:" ++ ++#: wp-admin/import/greymatter.php:49 ++msgid "Last entry's number:" ++msgstr "Nomor entri terakhir:" ++ ++#: wp-admin/import/greymatter.php:51 ++msgid "This importer will search for files 00000001.cgi to 000-whatever.cgi,
    so you need to enter the number of the last GM post here.
    (if you don't know that number, just log into your FTP and look it out
    in the entries' folder)" ++msgstr "Pengimpor ini akan mencari berkas-berkas 00000001.cgi sampai 000-berapapun.cgi,
    jadi Anda perlu memasukkan angka terakhir dari tulisan GM di sini.
    (jika Anda tidak tahu nomornya, masuk log ke dalam FTP Anda dan cari
    dalam folder entri)" ++ ++#: wp-admin/import/greymatter.php:55 ++msgid "Start Importing" ++msgstr "Mulai mengimpor" ++ ++#: wp-admin/import/greymatter.php:88 ++msgid "Wrong path, the path to the GM entries does not exist on the server" ++msgstr "Path yang salah, path untuk entri GM tidak terdapat pada server" ++ ++#: wp-admin/import/greymatter.php:91 ++msgid "Wrong path, the path to the GM files does not exist on the server" ++msgstr "Path yang salah, path untuk berkas GM tidak terdapat pada server" ++ ++#: wp-admin/import/greymatter.php:97 ++msgid "The importer is running..." ++msgstr "Importer sedang bekerja..." ++ ++#: wp-admin/import/greymatter.php:99 ++msgid "importing users..." ++msgstr "Mengimpor pengguna..." ++ ++#: wp-admin/import/greymatter.php:123 ++#, php-format ++msgid "user %s" ++msgstr "pengguna %s" ++ ++#: wp-admin/import/greymatter.php:123 ++msgid "Already exists" ++msgstr "Sudah ada" ++ ++#: wp-admin/import/greymatter.php:132 ++#, php-format ++msgid "user %s..." ++msgstr "pengguna %s..." ++ ++#: wp-admin/import/greymatter.php:132 ++#: wp-admin/import/greymatter.php:135 ++#: wp-admin/import/greymatter.php:280 ++#: wp-admin/import/greymatter.php:285 ++msgid "Done" ++msgstr "Selesai" ++ ++#: wp-admin/import/greymatter.php:136 ++msgid "importing posts, comments, and karma..." ++msgstr "mengimpor tulisan, komentar, dan karma..." ++ ++#: wp-admin/import/greymatter.php:172 ++#, php-format ++msgid "entry # %s : %s : by %s" ++msgstr "entri # %s : %s : by %s" ++ ++#: wp-admin/import/greymatter.php:200 ++msgid "(already exists)" ++msgstr "(sudah ada)" ++ ++#: wp-admin/import/greymatter.php:222 ++#, php-format ++msgid "registered deleted user %s at level 0 " ++msgstr "pengguna terdaftar yang dihapus %s pada level 0" ++ ++#: wp-admin/import/greymatter.php:272 ++#, php-format ++msgid "imported %s comment" ++msgid_plural "imported %s comments" ++msgstr[0] "telah mengimpor %s komentar" ++msgstr[1] "telah mengimpor %s komentar" ++ ++#: wp-admin/import/greymatter.php:277 ++#, php-format ++msgid "ignored %s pre-existing comment" ++msgid_plural "ignored %s pre-existing comments" ++msgstr[0] "menghiraukan %s komentar yang sudah ada sebelumnya" ++msgstr[1] "menghiraukan %s komentar yang sudah ada sebelumnya" ++ ++#: wp-admin/import/greymatter.php:287 ++msgid "Completed GreyMatter import!" ++msgstr "Impor GreyMatter selesai!" ++ ++#: wp-admin/import/greymatter.php:319 ++msgid "GreyMatter" ++msgstr "GreyMatter" ++ ++#: wp-admin/import/greymatter.php:319 ++msgid "Import users, posts, and comments from a Greymatter blog." ++msgstr "Mengimpor pengguna, tulisan dan komentar dari blog Greymatter." ++ ++#: wp-admin/import/jkw.php:7 ++msgid "Import Jerome’s Keywords" ++msgstr "Impor Kata Kunci Jerome" ++ ++#: wp-admin/import/jkw.php:17 ++msgid "Howdy! This imports tags from Jerome’s Keywords into WordPress tags." ++msgstr "Salam! Fasilitas ini mengimpor tag dari instalasi \"Jerome’s Keywords\" ke tag WordPress." ++ ++#: wp-admin/import/jkw.php:18 ++msgid "This is suitable for Jerome’s Keywords version 1.x and 2.0a." ++msgstr "Ini cocok untuk \"Jerome’s Keywords\" versi 1.x dan 2.0a." ++ ++#: wp-admin/import/jkw.php:19 ++msgid "All existing Jerome’s Keywords will be removed after import." ++msgstr "Seluruh \"Jerome’s Keywords\" akan disingkirkan setelah mengimpor." ++ ++#: wp-admin/import/jkw.php:23 ++msgid "Import Version 1.x" ++msgstr "Impor Versi 1.x" ++ ++#: wp-admin/import/jkw.php:27 ++msgid "Import Version 2.0a" ++msgstr "Impor Versi 2.0a" ++ ++#: wp-admin/import/jkw.php:78 ++#: wp-admin/import/jkw.php:118 ++msgid "Reading Jerome’s Keywords Tags…" ++msgstr "Membaca Tag \"Jerome’s Keywords\"…" ++ ++#: wp-admin/import/jkw.php:128 ++#: wp-admin/import/utw.php:87 ++#, php-format ++msgid "Done! %s tag were read." ++msgid_plural "Done! %s tags were read." ++msgstr[0] "Selesai! %s tag telah dibaca." ++msgstr[1] "Done! %s tag terbaca." ++ ++#: wp-admin/import/jkw.php:176 ++msgid "Import Jerome’s Keywords into WordPress tags." ++msgstr "Impor \"Jerome’s Keywords\" ke dalam tag WordPress." ++ ++#: wp-admin/import/livejournal.php:9 ++msgid "Import LiveJournal" ++msgstr "Impor LiveJournal" ++ ++#: wp-admin/import/livejournal.php:24 ++msgid "Howdy! Upload your LiveJournal XML export file and we’ll import the posts into this blog." ++msgstr "Halo! Unggah berkas ekspor LiveJournal Anda dan kami akan mengimporkan tulisannya ke dalam blog ini." ++ ++#: wp-admin/import/livejournal.php:25 ++msgid "Choose a LiveJournal XML file to upload, then click Upload file and import." ++msgstr "Pilih berkas XML LiveJournal untuk diunggah, kemudian klik Unggah berkas dan impor." ++ ++#: wp-admin/import/livejournal.php:122 ++#: wp-admin/import/mt.php:250 ++#: wp-admin/import/wordpress.php:493 ++#, php-format ++msgid "(%s comment)" ++msgid_plural "(%s comments)" ++msgstr[0] "(%s komentar)" ++msgstr[1] "(%s komentar)" ++ ++#: wp-admin/import/livejournal.php:178 ++msgid "LiveJournal" ++msgstr "LiveJournal" ++ ++#: wp-admin/import/livejournal.php:178 ++msgid "Import posts from a LiveJournal XML export file." ++msgstr "Impor tulisan dari sebuah berkas ekspor XML LiveJournal" ++ ++#: wp-admin/import/mt.php:14 ++msgid "Import Movable Type or TypePad" ++msgstr "Impor Movable Type atau TypePad" ++ ++#: wp-admin/import/mt.php:25 ++msgid "Howdy! We’re about to begin importing all of your Movable Type or Typepad entries into WordPress. To begin, either choose a file to upload and click \"Upload file and import,\" or use FTP to upload your MT export file as mt-export.txt in your /wp-content/ directory and then click \"Import mt-export.txt\"" ++msgstr "Halo! Kami akan mulai mengimpor seluruh entri Movable Type atau Typepad Anda ke dalam WordPress. Untuk memulainya, pilih sebuah berkas untuk diunggah dan klik \"Unggah berkas dan impor,\" atau gunakan FTP untuk mengunggah berkas ekspor MT Anda sebagai mt-export.txt dalam direktori /wp-content/ dan kemudian klik \"Impor mt-export.txt\"" ++ ++#: wp-admin/import/mt.php:33 ++msgid "Or use mt-export.txt in your /wp-content/ directory" ++msgstr "Atau gunakan mt-export.txt di dalam direktori /wp-content/ Anda" ++ ++#: wp-admin/import/mt.php:35 ++msgid "Import mt-export.txt" ++msgstr "Impor mt-export.txt" ++ ++#: wp-admin/import/mt.php:38 ++msgid "The importer is smart enough not to import duplicates, so you can run this multiple times without worry if—for whatever reason—it doesn't finish. If you get an out of memory error try splitting up the import file into pieces." ++msgstr "Pengimpor ini cukup cerdas untuk tidak mengimpor duplikat. Jadi Anda dapat menjalankan ini berkali-kali tanpa khawatir jika—karena berbagai alasan—tidak selesai. Jika Anda mendapat galat out of memory coba potong berkas impor tersebut dalam bagian-bagian." ++ ++#: wp-admin/import/mt.php:48 ++#: wp-admin/import/wordpress.php:232 ++#: wp-admin/includes/template.php:807 ++#: wp-admin/options-reading.php:30 ++#: wp-admin/options-reading.php:31 ++msgid "- Select -" ++msgstr "- Pilih -" ++ ++#: wp-admin/import/mt.php:155 ++#: wp-admin/import/wordpress.php:181 ++msgid "Assign Authors" ++msgstr "Tunjuk Penulis" ++ ++#: wp-admin/import/mt.php:156 ++msgid "To make it easier for you to edit and save the imported posts and drafts, you may want to change the name of the author of the posts. For example, you may want to import all the entries as admin's entries." ++msgstr "Untuk mempermudah menyunting dan menyimpan tulisan serta naskah yang terimpor, Anda mungkin ingin mengubah nama penulisnya. Sebagai contoh, Anda mungkin ingin mengimpor seluruh entri sebagai entri milik admin." ++ ++#: wp-admin/import/mt.php:157 ++msgid "Below, you can see the names of the authors of the MovableType posts in italics. For each of these names, you can either pick an author in your WordPress installation from the menu, or enter a name for the author in the textbox." ++msgstr "Di bawah ini, Anda dapat melihat nama-nama penulis tulisan MovableType yang dicetak miring. Untuk setiap nama tadi, Anda dapat mengambil seorang penulis dalam instalasi WordPress Anda dari menu, atau memasukkan sebuah nama untuk penulis dalam kotak teks." ++ ++#: wp-admin/import/mt.php:158 ++#: wp-admin/import/wordpress.php:185 ++msgid "If a new user is created by WordPress, a password will be randomly generated. Manually change the user's details if necessary." ++msgstr "Jika sebuah pengguna baru diciptakan oleh WordPress, kata sandinya akan dibuatkan secara sembarang. Ubahlah informasi pengguna tersebut jika diperlukan." ++ ++#: wp-admin/import/mt.php:169 ++msgid "Current author:" ++msgstr "Penulis saat ini:" ++ ++#: wp-admin/import/mt.php:169 ++#: wp-admin/import/wordpress.php:221 ++#, php-format ++msgid "Create user %1$s or map to existing" ++msgstr "Ciptakan pengguna %1$s atau petakan ke yang ada" ++ ++#: wp-admin/import/mt.php:174 ++#: wp-admin/import/wordpress.php:213 ++#: wp-includes/post-template.php:527 ++msgid "Submit" ++msgstr "Kirim" ++ ++#: wp-admin/import/mt.php:184 ++msgid "mt-export.txt does not exist" ++msgstr "mt-export.txt tidak ada" ++ ++#: wp-admin/import/mt.php:190 ++msgid "Sorry, there has been an error" ++msgstr "Maaf, ada kesalahan" ++ ++#: wp-admin/import/mt.php:231 ++#, php-format ++msgid "
    Adding tags %s..." ++msgstr "
    Menambahkan tag %s..." ++ ++#: wp-admin/import/mt.php:267 ++#, php-format ++msgid "(%s ping)" ++msgid_plural "(%s pings)" ++msgstr[0] "(%s ping)" ++msgstr[1] "(%s ping)" ++ ++#: wp-admin/import/mt.php:468 ++msgid "Movable Type and TypePad" ++msgstr "Movable Type dan TypePad" ++ ++#: wp-admin/import/mt.php:468 ++msgid "Import posts and comments from a Movable Type or Typepad blog." ++msgstr "Impor tulisan dan komentar dari blog Movable Type atau Typepad." ++ ++#: wp-admin/import.php:10 ++msgid "If you have posts or comments in another system, WordPress can import those into this blog. To get started, choose a system to import from below:" ++msgstr "Jika Anda memiliki tulisan atau komentar di sistem lain, WordPress dapat mengimpornya ke dalam blog ini. Untuk memulainya, pilih sebuah sistem untuk diimpor di bawah ini:" ++ ++#: wp-admin/import.php:32 ++msgid "No importers are available." ++msgstr "Tidak ada importer tersedia." ++ ++#: wp-admin/import/rss.php:10 ++msgid "Import RSS" ++msgstr "Impor RSS" ++ ++#: wp-admin/import/rss.php:25 ++msgid "Howdy! This importer allows you to extract posts from an RSS 2.0 file into your blog. This is useful if you want to import your posts from a system that is not handled by a custom import tool. Pick an RSS file to upload and click Import." ++msgstr "Halo! Pengimpor ini memungkinkan Anda mengekstrak tulisan dari berkas RSS 2.0 ke dalam blog Anda. Ini berguna jika Anda ingin mengimpor tulisan Anda dari sistem yang tidak dilengkapi dengan peralatan impor tersuai. Pilih sebuah berkas RSS untuk diunggah dan klik Impor." ++ ++#: wp-admin/import/rss.php:105 ++msgid "Importing post..." ++msgstr "Mengimpor tulisan..." ++ ++#: wp-admin/import/rss.php:110 ++msgid "Post already imported" ++msgstr "Tulisan telah diimpor" ++ ++#: wp-admin/import/rss.php:122 ++msgid "Done !" ++msgstr "Selesai !" ++ ++#: wp-admin/import/rss.php:181 ++#: wp-admin/includes/dashboard.php:225 ++#: wp-includes/widgets.php:1304 ++msgid "RSS" ++msgstr "RSS" ++ ++#: wp-admin/import/rss.php:181 ++msgid "Import posts from an RSS feed." ++msgstr "Impor tulisan dari sebuah umpan RSS" ++ ++#: wp-admin/import/stp.php:5 ++msgid "Import Simple Tagging" ++msgstr "Impor Tag Sederhana" ++ ++#: wp-admin/import/stp.php:15 ++msgid "Howdy! This imports tags from Simple Tagging 1.6.2 into WordPress tags." ++msgstr "Salam! Fitur ini mengimpor tag dari Simple Tagging 1.6.2 ke dalam tag WordPress." ++ ++#: wp-admin/import/stp.php:16 ++msgid "This has not been tested on any other versions of Simple Tagging. Mileage may vary." ++msgstr "Hal ini belum pernah diuji pada versi \"Simple Tagging\" yang lain. Hasilnya dapat bervariasi." ++ ++#: wp-admin/import/stp.php:17 ++msgid "To accommodate larger databases for those tag-crazy authors out there, we have made this into an easy 4-step program to help you kick that nasty Simple Tagging habit. Just keep clicking along and we will let you know when you are in the clear!" ++msgstr "Untuk mengakomodir basis data yang lebih besar bagi para penulis yang gila-tag, kami telah membuat program-4-langkah yang mudah untuk membantu Anda menyingkirkan kebiasaan buruk UTW Anda. Cukup terus mengklik dan kami akan memberitahu Anda ketika sudah selesai!" ++ ++#: wp-admin/import/stp.php:21 ++#: wp-admin/import/utw.php:22 ++msgid "Step 1" ++msgstr "Langkah 1" ++ ++#: wp-admin/import/stp.php:58 ++msgid "Reading STP Post Tags…" ++msgstr "Membaca Tag Tulisan STP#8230;" ++ ++#: wp-admin/import/stp.php:65 ++#: wp-admin/import/utw.php:124 ++msgid "No posts were found to have tags!" ++msgstr "Tidak ada tulisan bertag yang ditemukan!" ++ ++#: wp-admin/import/stp.php:76 ++#: wp-admin/import/utw.php:139 ++#, php-format ++msgid "Done! %s tag to post relationships were read." ++msgid_plural "Done! %s tags to post relationships were read." ++msgstr[0] "Done! %s tags to post relationships were read." ++msgstr[1] "Done! %s tags to post relationships were read." ++ ++#: wp-admin/import/stp.php:81 ++#: wp-admin/import/utw.php:109 ++msgid "Step 2" ++msgstr "Langkah 2" ++ ++#: wp-admin/import/stp.php:89 ++#: wp-admin/import/utw.php:155 ++msgid "Adding Tags to Posts…" ++msgstr "Menambahkan Tag ke Tulisan…" ++ ++#: wp-admin/import/stp.php:94 ++#, php-format ++msgid "Done! %s tag was added!" ++msgid_plural "Done! %s tags were added!" ++msgstr[0] "Selesai! %s tag telah ditambahkan!" ++msgstr[1] "Done! %s tags were added!" ++ ++#: wp-admin/import/stp.php:97 ++#: wp-admin/import/utw.php:145 ++msgid "Step 3" ++msgstr "Langkah 3" ++ ++#: wp-admin/import/stp.php:140 ++msgid "OK, so we lied about this being a 4-step program! You’re done!" ++msgstr "OK, sebenarnya kami bohong bahwa ini merupakan program empat langkah! Anda selesai!" ++ ++#: wp-admin/import/stp.php:141 ++#: wp-admin/import/utw.php:254 ++msgid "Now wasn’t that easy?" ++msgstr "Bukankah itu mudah?" ++ ++#: wp-admin/import/stp.php:154 ++msgid "Import Simple Tagging tags into WordPress tags." ++msgstr "Import Simple Tagging tags into WordPress tags." ++ ++#: wp-admin/import/textpattern.php:32 ++msgid "Import Textpattern" ++msgstr "Impor Textpattern" ++ ++#: wp-admin/import/textpattern.php:43 ++msgid "Howdy! This imports categories, users, posts, comments, and links from any Textpattern 4.0.2+ into this blog." ++msgstr "Halo! Ini mengimpor kategori, pengguna, tulisan, komentar, dan taut dari Textpattern 4.0.2+ ke dalam blog ini." ++ ++#: wp-admin/import/textpattern.php:44 ++msgid "This has not been tested on previous versions of Textpattern. Mileage may vary." ++msgstr "Ini belum dicoba pada versi Textpattern sebelumnya. Hasilnya dapat bervariasi." ++ ++#: wp-admin/import/textpattern.php:45 ++msgid "Your Textpattern Configuration settings are as follows:" ++msgstr "Konfigurasi TextPattern Anda ialah sebagai berikut:" ++ ++#: wp-admin/import/textpattern.php:465 ++#, php-format ++msgid "Done! %s link imported" ++msgid_plural "Done! %s links imported" ++msgstr[0] "Selesai! %s taut telah diimpor." ++msgstr[1] "Selesai! %s taut telah diimpor." ++ ++#: wp-admin/import/textpattern.php:559 ++msgid "Welcome to WordPress. We hope (and expect!) that you will find this platform incredibly rewarding! As a new WordPress user coming from Textpattern, there are some things that we would like to point out. Hopefully, they will help your transition go as smoothly as possible." ++msgstr "Selamat datang di WordPerss. Kami harap Anda akan merasa platform ini amat berharga! Sebagai pengguna WordPress baru yang datang dari Textpattern, ada beberapa hal yang ingin kami tunjukkan. Semoga ini akan membuat transisi Anda semulus mungkin." ++ ++#: wp-admin/import/textpattern.php:561 ++#, php-format ++msgid "You have already setup WordPress and have been assigned an administrative login and password. Forget it. You didn’t have that login in Textpattern, why should you have it here? Instead we have taken care to import all of your users into our system. Unfortunately there is one downside. Because both WordPress and Textpattern uses a strong encryption hash with passwords, it is impossible to decrypt it and we are forced to assign temporary passwords to all your users. Every user has the same username, but their passwords are reset to password123. So Login and change it." ++msgstr "Anda telah menata WordPress dan telah ditunjukkan sebuah login dan kata sandi administratif. Lupakan. Anda tidak punya login itu di Textpattern, mengapa Anda membutuhkannya di sini? Malahan kami telah mengimpor seluruh pengguna Anda ke dalam sistem kami. Sayangnya ada kelemahannya. Karena baik WordPress dan Textpattern menggunakan enkripsi hash yang kuat pada kata sandi, tidak mungkin untuk mendekripsinya dan kami terpaksa menetapkan kata sandi sementara kepada seluruh pengguna Anda. Setiap pengguna memiliki nama pengguna yang sama, tetapi sandi mereka diset ulang ke password123. Jadi Masuk log dan ubahlah." ++ ++#: wp-admin/import/textpattern.php:565 ++msgid "Also, since you’re coming from Textpattern, you probably have been using Textile to format your comments and posts. If this is the case, we recommend downloading and installing Textile for WordPress. Trust me... You’ll want it." ++msgstr "Juga, karena Anda datang dari Textpattern, Anda mungkin telah terbiasa menggunakan Textile untuk memformat komentar serta tulisan Anda. Jika begitu, kami sarankan mengunduh dan menginstal Textile untuk WordPress. Percayalah... Anda pasti akan suka." ++ ++#: wp-admin/import/textpattern.php:573 ++#, php-format ++msgid "That’s it! What are you waiting for? Go login!" ++msgstr "Sudah! Tunggu apa lagi? Segera masuk log!" ++ ++#: wp-admin/import/textpattern.php:579 ++msgid "Textpattern Database User:" ++msgstr "User Database Textpattern:" ++ ++#: wp-admin/import/textpattern.php:580 ++msgid "Textpattern Database Password:" ++msgstr "Kata Sandi Database Textpattern:" ++ ++#: wp-admin/import/textpattern.php:581 ++msgid "Textpattern Database Name:" ++msgstr "Nama Database Textpattern:" ++ ++#: wp-admin/import/textpattern.php:582 ++msgid "Textpattern Database Host:" ++msgstr "Host Database Textpattern:" ++ ++#: wp-admin/import/textpattern.php:583 ++msgid "Textpattern Table prefix (if any):" ++msgstr "Prefiks Tabel Textpattern (jika ada):" ++ ++#: wp-admin/import/textpattern.php:673 ++msgid "Textpattern" ++msgstr "Textpattern" ++ ++#: wp-admin/import/textpattern.php:673 ++msgid "Import categories, users, posts, comments, and links from a Textpattern blog." ++msgstr "Impor kategori, pengguna, tulisan, komentar dan taut-taut dari blog Textpattern." ++ ++#: wp-admin/import/utw.php:7 ++msgid "Import Ultimate Tag Warrior" ++msgstr "Impor Ultimate Tag Warrior" ++ ++#: wp-admin/import/utw.php:17 ++msgid "Howdy! This imports tags from Ultimate Tag Warrior 3 into WordPress tags." ++msgstr "Salam! Fasilitas ini mengimpor tag dari instalasi Ultimate Tag Warrior 3 ke dalam tag WordPress." ++ ++#: wp-admin/import/utw.php:18 ++msgid "This has not been tested on any other versions of Ultimate Tag Warrior. Mileage may vary." ++msgstr "Ini belum diuji pada Ultimate Tag Warrior versi lainnya. Hasilnya dapat bervariasi." ++ ++#: wp-admin/import/utw.php:19 ++msgid "To accommodate larger databases for those tag-crazy authors out there, we have made this into an easy 5-step program to help you kick that nasty UTW habit. Just keep clicking along and we will let you know when you are in the clear!" ++msgstr "Untuk mengakomodir basis data yang lebih besar bagi para penulis yang gila-tag, kami telah membuat program 5 langkah yang mudah untuk membantu Anda menyingkirkan kebiasaan buruk UTW Anda. Cukup terus mengklik dan kami akan memberitahu Anda ketika sudah selesai!" ++ ++#: wp-admin/import/utw.php:66 ++msgid "Reading UTW Tags…" ++msgstr "Membaca Tag UTW…" ++ ++#: wp-admin/import/utw.php:88 ++msgid "The following tags were found:" ++msgstr "Tag-tag berikut ditemukan:" ++ ++#: wp-admin/import/utw.php:102 ++msgid "If you don’t want to import any of these tags, you should delete them from the UTW tag management page and then re-run this import." ++msgstr "Jika Anda tidak ingin mengimpor satupun tag-tag ini, Anda harus menghapusnya dari halaman pengelolaan tag UTW dan kemudian menjalankan ulang proses impor ini." ++ ++#: wp-admin/import/utw.php:117 ++msgid "Reading UTW Post Tags…" ++msgstr "Membaca Tag Tulisan UTW…" ++ ++#: wp-admin/import/utw.php:160 ++#, php-format ++msgid "Done! %s tag were added!" ++msgid_plural "Done! %s tags were added!" ++msgstr[0] "Selesai! %s tag ditambahkan!" ++msgstr[1] "Selesai! %s tag ditambahkan!" ++ ++#: wp-admin/import/utw.php:164 ++msgid "Step 4" ++msgstr "Langkah 4" ++ ++#: wp-admin/import/utw.php:252 ++msgid "OK, so we lied about this being a 5-step program! You’re done!" ++msgstr "OK, sebenarnya kami bohong bahwa ini merupakan program lima langkah! Anda selesai!" ++ ++#: wp-admin/import/utw.php:274 ++msgid "Import Ultimate Tag Warrior tags into WordPress tags." ++msgstr "Impor tag Ultimate Tag Warrior ke dalam struktur tag WordPress." ++ ++#: wp-admin/import/wordpress.php:23 ++msgid "Import WordPress" ++msgstr "Impor WordPress" ++ ++#: wp-admin/import/wordpress.php:38 ++msgid "Howdy! Upload your WordPress eXtended RSS (WXR) file and we’ll import the posts, comments, custom fields, and categories into this blog." ++msgstr "Halo! Unggah berkas WordPress eXtended RSS (WXR) dan kami akan mengimporkan tulisan, komentar, ruas tersuai, dan kategori ke dalam blog ini." ++ ++#: wp-admin/import/wordpress.php:39 ++msgid "Choose a WordPress WXR file to upload, then click Upload file and import." ++msgstr "Pilih berkas WXR WordPress untuk diunggah, kemudian klik Unggah berkas dan impor" ++ ++#: wp-admin/import/wordpress.php:182 ++msgid "To make it easier for you to edit and save the imported posts and drafts, you may want to change the name of the author of the posts. For example, you may want to import all the entries as admins entries." ++msgstr "Untuk membuatnya mudah bagi Anda menyunting dan menyimpan tulisan dan naskah yang diimpor, Anda mungkin ingin mengubah nama penulis tulisan. Contohnya, Anda mungkin ingin mengimpor seluruh entri sebagai entri milik admin." ++ ++#: wp-admin/import/wordpress.php:196 ++msgid "Import author:" ++msgstr "Impor penulis:" ++ ++#: wp-admin/import/wordpress.php:204 ++msgid "Import Attachments" ++msgstr "Impor Lampiran" ++ ++#: wp-admin/import/wordpress.php:207 ++msgid "Download and import file attachments" ++msgstr "Unduh dan impor lampiran berkas" ++ ++#: wp-admin/import/wordpress.php:224 ++msgid "Map to existing" ++msgstr "Petakan ke yang ada" ++ ++#: wp-admin/import/wordpress.php:248 ++msgid "Invalid file" ++msgstr "Berkas tidak sah" ++ ++#: wp-admin/import/wordpress.php:249 ++msgid "Please upload a valid WXR (WordPress eXtended RSS) export file." ++msgstr "Silakan unggah sebuah berkas ekspor WXR (WordPress eXtended RSS) yang sah." ++ ++#: wp-admin/import/wordpress.php:333 ++msgid "All done." ++msgstr "Semua selesai." ++ ++#: wp-admin/import/wordpress.php:333 ++msgid "Have fun!" ++msgstr "Silakan Bersenang-Senang!" ++ ++#: wp-admin/import/wordpress.php:522 ++#, php-format ++msgid "Importing attachment %s... " ++msgstr "Mengimpor lampiran %s... " ++ ++#: wp-admin/import/wordpress.php:525 ++#, php-format ++msgid "Remote file error: %s" ++msgstr "Berkas remot galat: %s" ++ ++#: wp-admin/import/wordpress.php:536 ++#: wp-includes/functions.php:1164 ++msgid "Invalid file type" ++msgstr "Jenis berkas tidak valid" ++ ++#: wp-admin/import/wordpress.php:557 ++#, php-format ++msgid "Skipping attachment %s" ++msgstr "Melewatkan lampiran %s" ++ ++#: wp-admin/import/wordpress.php:580 ++#, php-format ++msgid "Remote file returned error response %d" ++msgstr "Berkas remot menghasilkan respon galat %d" ++ ++#: wp-admin/import/wordpress.php:584 ++msgid "Remote file is incorrect size" ++msgstr "Ukuran berkas remot salah" ++ ++#: wp-admin/import/wordpress.php:590 ++#, php-format ++msgid "Remote file is too large, limit is %s" ++msgstr "Berkas remot terlalu besar. Batasnya ialah %s" ++ ++#: wp-admin/import/wordpress.php:704 ++msgid "Sorry, there has been an error." ++msgstr "Maaf, ada sebuah galat." ++ ++#: wp-admin/import/wordpress.php:746 ++msgid "Import posts, comments, custom fields, pages, and categories from a WordPress export file." ++msgstr "Impor tulisan, komentar, ruas tersuai, halaman dan kategori dari sebuah berkas ekspor WordPress." ++ ++#: wp-admin/import/wp-cat2tag.php:9 ++msgid "Convert Categories to Tags" ++msgstr "Konversi Kategori ke Tag" ++ ++#: wp-admin/import/wp-cat2tag.php:32 ++msgid "Hey there. Here you can selectively converts existing categories to tags. To get started, check the categories you wish to be converted, then click the Convert button." ++msgstr "Hai. Di sini Anda dapat secara selektif mengkonversikan kategori yang ada ke dalam tag. Untuk memulai, centang kategori yang ingin Anda konversikan, kemudian klik tombol \"Konversikan\"." ++ ++#: wp-admin/import/wp-cat2tag.php:33 ++msgid "Keep in mind that if you convert a category with child categories, the children become top-level orphans." ++msgstr "Harap ingat bahwa jika Anda mengkonversikan sebuah kategori yang memiliki kategori anak, kategori anak itu akan menjadi kategori tingkat puncak." ++ ++#: wp-admin/import/wp-cat2tag.php:37 ++msgid "You have no categories to convert!" ++msgstr "Anda tidak memiliki kategori untuk dikonversi!" ++ ++#: wp-admin/import/wp-cat2tag.php:56 ++msgid "Uncheck All" ++msgstr "Hilangkan Seluruh Centang" ++ ++#: wp-admin/import/wp-cat2tag.php:63 ++#: wp-admin/import/wp-cat2tag.php:71 ++msgid "Check All" ++msgstr "Centang Semua" ++ ++#: wp-admin/import/wp-cat2tag.php:93 ++msgid "Convert Tags" ++msgstr "Konversikan Tag" ++ ++#: wp-admin/import/wp-cat2tag.php:133 ++#, php-format ++msgid "Uh, oh. Something didn’t work. Please try again." ++msgstr "O'ow. Ada sesuatu yang tidak beres. Silakan coba lagi." ++ ++#: wp-admin/import/wp-cat2tag.php:148 ++#, php-format ++msgid "Converting category #%s ... " ++msgstr "Mengonversi kategori #%s ... " ++ ++#: wp-admin/import/wp-cat2tag.php:151 ++msgid "Category doesn't exist!" ++msgstr "Kategori tidak ada!" ++ ++#: wp-admin/import/wp-cat2tag.php:156 ++msgid "Category is already a tag." ++msgstr "Kategori telah merupakan sebuah tag." ++ ++#: wp-admin/import/wp-cat2tag.php:192 ++msgid "Converted successfully." ++msgstr "Berhasil dikonversi." ++ ++#: wp-admin/import/wp-cat2tag.php:199 ++#, php-format ++msgid "We’re all done here, but you can always convert more." ++msgstr "Kami sudah selesai, namun Anda dapat mengkonversikan lagi." ++ ++#: wp-admin/import/wp-cat2tag.php:237 ++msgid "Categories to Tags Converter" ++msgstr "Pengonversi Kategori ke Tag" ++ ++#: wp-admin/import/wp-cat2tag.php:237 ++msgid "Convert existing categories to tags, selectively." ++msgstr "Konversikan kategori yang ada ke dalam tag secara selektif." ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:31 ++msgid "The ftp PHP extension is not available" ++msgstr "Ekstensi ftp PHP tidak tersedia" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:42 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:41 ++msgid "FTP hostname is required" ++msgstr "Nama host FTP diperlukan" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:51 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:50 ++msgid "FTP username is required" ++msgstr "Nama pengguna FTP diperlukan" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:56 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:55 ++msgid "FTP password is required" ++msgstr "Kata sandi FTP diperlukan" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:71 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:67 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:71 ++#, php-format ++msgid "Failed to connect to FTP Server %1$s:%2$s" ++msgstr "Gagal menghubungi Server FTP %1$s:%2$s" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:76 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:76 ++#, php-format ++msgid "Username/Password incorrect for %s" ++msgstr "Nama pengguna/Kata sandi salah untuk %s" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:105 ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:128 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:107 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:130 ++#, php-format ++msgid "Changing to %s" ++msgstr "Mengubah ke %s" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:108 ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:136 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:110 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:138 ++#, php-format ++msgid "Found %s" ++msgstr "Menemukan %s" ++ ++#: wp-admin/includes/comment.php:15 ++msgid "You are not allowed to edit comments on this post, so you cannot edit this comment." ++msgstr "Di tulisan ini Anda tidak diizinkan untuk menyunting komentar, jadi Anda tidak bisa menyunting komentar ini." ++ ++#: wp-admin/includes/dashboard.php:26 ++#, php-format ++msgid "%d comment awaiting moderation" ++msgid_plural "%d comments awaiting moderation" ++msgstr[0] "%d komentar menunggu moderasi" ++msgstr[1] "%d komentar menunggu moderasi" ++ ++#: wp-admin/includes/dashboard.php:31 ++#: wp-includes/widgets.php:930 ++#: wp-includes/widgets.php:993 ++#: wp-includes/widgets.php:994 ++msgid "Recent Comments" ++msgstr "Komentar Terakhir" ++ ++#: wp-admin/includes/dashboard.php:45 ++#: wp-admin/includes/dashboard.php:49 ++msgid "Incoming Links" ++msgstr "Taut Kemari" ++ ++#: wp-admin/includes/dashboard.php:55 ++#: wp-admin/menu.php:27 ++#: wp-admin/menu.php:66 ++#: wp-admin/plugin-editor.php:119 ++#: wp-includes/js/tinymce/langs/wp-langs.php:241 ++msgid "Plugins" ++msgstr "Plugin" ++ ++#: wp-admin/includes/dashboard.php:65 ++msgid "http://wordpress.org/development/" ++msgstr "http://id.wordpress.org/" ++ ++#: wp-admin/includes/dashboard.php:66 ++msgid "http://wordpress.org/development/feed/" ++msgstr "http://id.wordpress.org/feed/" ++ ++#: wp-admin/includes/dashboard.php:67 ++msgid "WordPress Development Blog" ++msgstr "Blog Pengembangan WordPress" ++ ++#: wp-admin/includes/dashboard.php:78 ++msgid "Primary Feed" ++msgstr "Umpan Primer" ++ ++#: wp-admin/includes/dashboard.php:87 ++msgid "http://planet.wordpress.org/" ++msgstr "http://planet.wordpress.org/" ++ ++#: wp-admin/includes/dashboard.php:88 ++msgid "http://planet.wordpress.org/feed/" ++msgstr "http://planet.wordpress.org/feed/" ++ ++#: wp-admin/includes/dashboard.php:89 ++msgid "Other WordPress News" ++msgstr "Berita WordPress lainnya" ++ ++#: wp-admin/includes/dashboard.php:97 ++msgid "Secondary Feed" ++msgstr "Umpan Sekunder" ++ ++#: wp-admin/includes/dashboard.php:206 ++msgid "See All" ++msgstr "Lihat Semua" ++ ++#: wp-admin/includes/dashboard.php:218 ++#: wp-admin/includes/media.php:834 ++#: wp-admin/includes/widgets.php:227 ++#: wp-includes/js/tinymce/langs/wp-langs.php:17 ++#: wp-includes/script-loader.php:145 ++#: wp-includes/script-loader.php:153 ++#: wp-includes/script-loader.php:158 ++#: wp-includes/script-loader.php:164 ++#: wp-includes/script-loader.php:194 ++msgid "Cancel" ++msgstr "Batal" ++ ++#: wp-admin/includes/dashboard.php:225 ++msgid "rss icon" ++msgstr "ikon rss" ++ ++#: wp-admin/includes/dashboard.php:281 ++#, php-format ++msgid "From %1$s on %2$s %3$s" ++msgstr "Dari %1$s pada %2$s %3$s" ++ ++#: wp-admin/includes/dashboard.php:332 ++#: wp-admin/page.php:85 ++#: wp-admin/post.php:92 ++msgid "Somebody" ++msgstr "Seseorang" ++ ++#: wp-admin/includes/dashboard.php:345 ++msgid "something" ++msgstr "sesuatu" ++ ++#: wp-admin/includes/dashboard.php:348 ++#, php-format ++msgid "%1$s linked here saying, \"%3$s\"|feed_display" ++msgstr "%1$s bertaut kemari mengatakan \"%3$s\"" ++ ++#: wp-admin/includes/dashboard.php:350 ++#, php-format ++msgid "%1$s linked here saying, \"%3$s\"|feed_display" ++msgstr "%1$s bertaut kemari mengatakan, \"%3$s\"|feed_display" ++ ++#: wp-admin/includes/dashboard.php:354 ++#, php-format ++msgid " on %4$s|feed_display" ++msgstr " pada %4$s" ++ ++#: wp-admin/includes/dashboard.php:366 ++msgid "This dashboard widget queries Google Blog Search so that when another blog links to your site it will show up here. It has found no incoming links… yet. It’s okay — there is no rush." ++msgstr "Widget dasbor ini melakukan kueri kepada Google Blog Search sehingga ketika blog lain mencantumkan taut ke situs Anda, blog itu akan ditampilkan di sini. Google Blog Search belum menemukan satupun taut kemari. Tidak apa-apa. Tidak usah terburu-buru." ++ ++#: wp-admin/includes/dashboard.php:405 ++msgid "Most Popular" ++msgstr "Paling Populer" ++ ++#: wp-admin/includes/dashboard.php:405 ++msgid "Newest Plugins" ++msgstr "Plugin Terbaru" ++ ++#: wp-admin/includes/dashboard.php:405 ++msgid "Recently Updated" ++msgstr "Akhir-Akhir Ini Diperbarui" ++ ++#: wp-admin/includes/dashboard.php:436 ++msgid "Download" ++msgstr "Unduh" ++ ++#: wp-admin/includes/dashboard.php:446 ++msgid "Loading…" ++msgstr "Sedang memuat…" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Main Index Template" ++msgstr "Templat Indeks Utama" ++ ++#: wp-admin/includes/file.php:3 ++#: wp-admin/includes/file.php:5 ++msgid "Stylesheet" ++msgstr "Stylesheet" ++ ++#: wp-admin/includes/file.php:3 ++msgid "RTL Stylesheet" ++msgstr "Stylesheet RTL" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Popup Comments" ++msgstr "Komentar Popup" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Footer" ++msgstr "Kaki Halaman" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Header" ++msgstr "Kepala Halaman" ++ ++#: wp-admin/includes/file.php:3 ++#: wp-includes/widgets.php:26 ++msgid "Sidebar" ++msgstr "Kolom Sisi" ++ ++#: wp-admin/includes/file.php:3 ++#: wp-includes/widgets.php:457 ++#: wp-includes/widgets.php:1368 ++#: wp-includes/widgets.php:1369 ++msgid "Archives" ++msgstr "Arsip" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Category Template" ++msgstr "Templat Kategori" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Search Results" ++msgstr "Hasil Pencarian" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Search Form" ++msgstr "Formulir Pencarian" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Single Post" ++msgstr "Tulisan Tunggal" ++ ++#: wp-admin/includes/file.php:3 ++msgid "404 Template" ++msgstr "Templat 404" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Links Template" ++msgstr "Templat Taut" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Theme Functions" ++msgstr "Fungsi Tema" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Attachment Template" ++msgstr "Templat Lampiran" ++ ++#: wp-admin/includes/file.php:3 ++msgid "my-hacks.php (legacy hacks support)" ++msgstr "my-hacks.php (dukungan legacy hacks)" ++ ++#: wp-admin/includes/file.php:3 ++msgid ".htaccess (for rewrite rules )" ++msgstr ".htaccess (untuk rewrite rules)" ++ ++#: wp-admin/includes/file.php:5 ++msgid "Comments Template" ++msgstr "Templat Komentar" ++ ++#: wp-admin/includes/file.php:5 ++msgid "Popup Comments Template" ++msgstr "Templat Komentar Popup" ++ ++#: wp-admin/includes/file.php:85 ++msgid "Sorry, can’t edit files with \"..\" in the name. If you are trying to edit a file in your WordPress home directory, you can just type the name of the file in." ++msgstr "Maaf, tidak bisa menyunting berkas dengan \"..\" dalam namanya. Jika Anda ingin menyunting berkas dalam direktori pangkal WordPress Anda, cukup ketikkan nama berkas di dalamnya." ++ ++#: wp-admin/includes/file.php:88 ++msgid "Sorry, can’t call files with their real path." ++msgstr "Maaf, tidak bisa memanggil berkas dengan lokasi sebenarnya." ++ ++#: wp-admin/includes/file.php:91 ++msgid "Sorry, that file cannot be edited." ++msgstr "Maaf, berkas tersebut tidak dapat disunting." ++ ++#: wp-admin/includes/file.php:116 ++msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." ++msgstr "Berkas yang diunggah melebihi direktifupload_max_filesize dalam php.ini." ++ ++#: wp-admin/includes/file.php:117 ++msgid "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form." ++msgstr "Berkas yang diunggah melampaui direktif MAX_FILE_SIZE yang ditentukan dalam form HTML." ++ ++#: wp-admin/includes/file.php:118 ++msgid "The uploaded file was only partially uploaded." ++msgstr "Berkas yang diunggah hanya berhasil diunggah sebagian." ++ ++#: wp-admin/includes/file.php:119 ++msgid "No file was uploaded." ++msgstr "Tidak ada berkas yang diunggah." ++ ++#: wp-admin/includes/file.php:120 ++msgid "Missing a temporary folder." ++msgstr "Kehilangan folder sementara." ++ ++#: wp-admin/includes/file.php:121 ++msgid "Failed to write file to disk." ++msgstr "Gagal menulis berkas ke dalam diska." ++ ++#: wp-admin/includes/file.php:137 ++msgid "Invalid form submission." ++msgstr "Submisi formulir yang tidak valid." ++ ++#: wp-admin/includes/file.php:145 ++msgid "File is empty. Please upload something more substantial. This error could also be caused by uploads being disabled in your php.ini." ++msgstr "Berkas kosong. Mohon unggah sesuatu yang berisi. Galat ini juga dapat disebabkan karena dimatikannya pengunggahan dalam php.ini Anda." ++ ++#: wp-admin/includes/file.php:149 ++msgid "Specified file failed upload test." ++msgstr "Berkas yang ditunjuk tidak lolos uji pengunggahan." ++ ++#: wp-admin/includes/file.php:158 ++msgid "File type does not meet security guidelines. Try another." ++msgstr "Jenis berkas tidak memenuhi petunjuk keamanan. Coba yang lain." ++ ++#: wp-admin/includes/file.php:176 ++#, php-format ++msgid "The uploaded file could not be moved to %s." ++msgstr "Berkas yang diunggah tidak dapat dipindahkan ke %s." ++ ++#: wp-admin/includes/file.php:200 ++msgid "Invalid URL Provided" ++msgstr "URL yang diberikan tidak benar" ++ ++#: wp-admin/includes/file.php:204 ++#: wp-admin/includes/file.php:208 ++msgid "Could not create Temporary file" ++msgstr "Tidak dapat menciptakan berkas sementara" ++ ++#: wp-admin/includes/file.php:229 ++#: wp-admin/includes/update.php:157 ++msgid "Could not access filesystem." ++msgstr "Tidak dapat mengakses sistem berkas" ++ ++#: wp-admin/includes/file.php:239 ++msgid "Incompatible archive" ++msgstr "Arsip yang tidak kompatibel" ++ ++#: wp-admin/includes/file.php:242 ++msgid "Empty archive" ++msgstr "Kosongkan arsip" ++ ++#: wp-admin/includes/file.php:262 ++msgid "Could not create directory" ++msgstr "Tidak dapat menciptakan direktori" ++ ++#: wp-admin/includes/file.php:268 ++msgid "Could not copy file" ++msgstr "Tidak dapat menyalin berkas" ++ ++#: wp-admin/includes/image.php:131 ++#, php-format ++msgid "File '%s' doesn't exist?" ++msgstr "Berkas '%s' tidak ada?" ++ ++#: wp-admin/includes/image.php:134 ++msgid "The GD image library is not installed." ++msgstr "Pustaka gambar GD tidak terinstal." ++ ++#: wp-admin/includes/image.php:141 ++#, php-format ++msgid "File '%s' is not an image." ++msgstr "Berkas '%s' bukanlah sebuah gambar." ++ ++#: wp-admin/includes/media.php:5 ++msgid "Choose File" ++msgstr "Pilih Berkas" ++ ++#: wp-admin/includes/media.php:6 ++msgid "Gallery" ++msgstr "Galeri" ++ ++#: wp-admin/includes/media.php:7 ++#: wp-admin/menu.php:46 ++#: wp-admin/upload.php:36 ++msgid "Media Library" ++msgstr "Pustaka Media" ++ ++#: wp-admin/includes/media.php:22 ++#, php-format ++msgid "Gallery (%s)" ++msgstr "Galeri (%s)" ++ ++#: wp-admin/includes/media.php:127 ++msgid "Uploads" ++msgstr "Unggah" ++ ++#: wp-admin/includes/media.php:127 ++#: wp-admin/update.php:152 ++msgid "WordPress" ++msgstr "WordPress" ++ ++#: wp-admin/includes/media.php:159 ++#, php-format ++msgid "Add media: %s" ++msgstr "Tambahkan media: %s" ++ ++#: wp-admin/includes/media.php:161 ++msgid "Add Media" ++msgstr "Tambahkan Media" ++ ++#: wp-admin/includes/media.php:163 ++msgid "Add an Image" ++msgstr "Tambahkan Sebuah Gambar" ++ ++#: wp-admin/includes/media.php:165 ++msgid "Add Video" ++msgstr "Tambahkan Video" ++ ++#: wp-admin/includes/media.php:167 ++msgid "Add Audio" ++msgstr "Tambahkan Audio" ++ ++#: wp-admin/includes/media.php:296 ++#: wp-admin/includes/media.php:334 ++#: wp-admin/includes/media.php:372 ++#: wp-admin/includes/media.php:410 ++msgid "Saved." ++msgstr "Disimpan." ++ ++#: wp-admin/includes/media.php:444 ++#: wp-admin/includes/media.php:540 ++msgid "Caption" ++msgstr "Judul" ++ ++#: wp-admin/includes/media.php:445 ++#: wp-admin/includes/media.php:1094 ++msgid "Alternate text, e.g. \"The Mona Lisa\"" ++msgstr "Teks alternatif, misal \"Mona Lisa\"" ++ ++#: wp-admin/includes/media.php:452 ++#: wp-admin/includes/media.php:1096 ++#: wp-includes/js/tinymce/langs/wp-langs.php:29 ++#: wp-includes/js/tinymce/langs/wp-langs.php:268 ++msgid "Alignment" ++msgstr "Perataan" ++ ++#: wp-admin/includes/media.php:458 ++#: wp-admin/includes/media.php:1101 ++#: wp-includes/js/tinymce/langs/wp-langs.php:30 ++#: wp-includes/js/tinymce/langs/wp-langs.php:275 ++#: wp-includes/js/tinymce/langs/wp-langs.php:372 ++msgid "Left" ++msgstr "Kiri" ++ ++#: wp-admin/includes/media.php:460 ++#: wp-admin/includes/media.php:1103 ++#: wp-includes/js/tinymce/langs/wp-langs.php:31 ++#: wp-includes/js/tinymce/langs/wp-langs.php:352 ++#: wp-includes/js/tinymce/langs/wp-langs.php:373 ++msgid "Center" ++msgstr "Tengah" ++ ++#: wp-admin/includes/media.php:462 ++#: wp-admin/includes/media.php:1105 ++#: wp-includes/js/tinymce/langs/wp-langs.php:32 ++#: wp-includes/js/tinymce/langs/wp-langs.php:276 ++#: wp-includes/js/tinymce/langs/wp-langs.php:370 ++msgid "Right" ++msgstr "Kanan" ++ ++#: wp-admin/includes/media.php:465 ++msgid "Size" ++msgstr "Ukuran" ++ ++#: wp-admin/includes/media.php:469 ++#: wp-includes/script-loader.php:173 ++msgid "Thumbnail" ++msgstr "Miniatur" ++ ++#: wp-admin/includes/media.php:471 ++msgid "Medium" ++msgstr "Sedang" ++ ++#: wp-admin/includes/media.php:473 ++#: wp-includes/script-loader.php:174 ++msgid "Full size" ++msgstr "Ukuran penuh" ++ ++#: wp-admin/includes/media.php:490 ++msgid "Empty Title filled from filename." ++msgstr "Judul yang kosong diisikan dari nama berkas." ++ ++#: wp-admin/includes/media.php:549 ++#: wp-includes/js/tinymce/langs/wp-langs.php:278 ++msgid "Link URL" ++msgstr "URL Taut" ++ ++#: wp-admin/includes/media.php:554 ++msgid "File URL" ++msgstr "URL Berkas" ++ ++#: wp-admin/includes/media.php:555 ++msgid "Post URL" ++msgstr "URL Lampiran" ++ ++#: wp-admin/includes/media.php:559 ++msgid "Enter a link URL or click above for presets." ++msgstr "Masukkan sebuah URL taut atau klik tombol di atas untuk memakai yang sudah disiapkan." ++ ++#: wp-admin/includes/media.php:629 ++#: wp-admin/widgets.php:248 ++#: wp-admin/widgets.php:265 ++msgid "Show" ++msgstr "Tampilkan" ++ ++#: wp-admin/includes/media.php:630 ++msgid "Hide" ++msgstr "Sembunyikan" ++ ++#: wp-admin/includes/media.php:688 ++#: wp-admin/includes/media.php:1111 ++#: wp-admin/includes/media.php:1139 ++#: wp-admin/includes/media.php:1167 ++#: wp-admin/includes/media.php:1195 ++msgid "Insert into Post" ++msgstr "Sisipkan ke dalam Tulisan" ++ ++#: wp-admin/includes/media.php:826 ++msgid "Choose files to upload" ++msgstr "Pilih berkas untuk diunggah" ++ ++#: wp-admin/includes/media.php:827 ++msgid "After a file has been uploaded, you can add titles and descriptions." ++msgstr "Setelah sebuah berkas diunggah, Anda dapat menambahkan judul dan keterangan." ++ ++#: wp-admin/includes/media.php:839 ++msgid "If you want to use all capabilities of the uploader, like uploading multiple files at once, please upgrade to lighttpd 1.5." ++msgstr "Jika Anda ingin menggunakan seluruh kemampuan pengunggah seperti mengunggah beberapa berkas sekaligus, silakan mutakhirkan ke to lighttpd 1.5." ++ ++#: wp-admin/includes/media.php:858 ++msgid "From Computer" ++msgstr "Dari Komputer" ++ ++#: wp-admin/includes/media.php:876 ++#: wp-admin/includes/media.php:890 ++#: wp-admin/includes/media.php:923 ++#: wp-admin/includes/media.php:1071 ++msgid "Save all changes" ++msgstr "Simpan seluruh perubahan" ++ ++#: wp-admin/includes/media.php:881 ++msgid "— OR —" ++msgstr "— ATAU —" ++ ++#: wp-admin/includes/media.php:882 ++msgid "From URL" ++msgstr "Dari URL" ++ ++#: wp-admin/includes/media.php:924 ++msgid "Insert gallery into post" ++msgstr "Sisipkan galeri ke dalam tulisan" ++ ++#: wp-admin/includes/media.php:961 ++#: wp-admin/upload.php:129 ++msgid "Search Media" ++msgstr "Cari Media" ++ ++#: wp-admin/includes/media.php:980 ++#: wp-admin/upload.php:94 ++msgid "All Types" ++msgstr "Semua Jenis" ++ ++#: wp-admin/includes/media.php:1043 ++msgid "Filter »" ++msgstr "Saring »" ++ ++#: wp-admin/includes/media.php:1082 ++#: wp-includes/js/tinymce/langs/wp-langs.php:261 ++msgid "Image URL" ++msgstr "URL Gambar" ++ ++#: wp-admin/includes/media.php:1123 ++msgid "Audio File URL" ++msgstr "URL Berkas Audio" ++ ++#: wp-admin/includes/media.php:1135 ++msgid "Link text, e.g. \"Still Alive by Jonathan Coulton\"" ++msgstr "Teks taut, contoh: \"Still Alive oleh Jonathan Coulton\"" ++ ++#: wp-admin/includes/media.php:1151 ++msgid "Video URL" ++msgstr "URL Video" ++ ++#: wp-admin/includes/media.php:1163 ++msgid "Link text, e.g. \"Lucy on YouTube\"" ++msgstr "Teks taut, contoh: \"Susi di YouTube\"" ++ ++#: wp-admin/includes/media.php:1191 ++msgid "Link text, e.g. \"Ransom Demands (PDF)\"" ++msgstr "Teks taut, contoh: \"Kebutuhan Pangan (PDF)\"" ++ ++#: wp-admin/includes/plugin.php:22 ++msgid "Visit plugin homepage" ++msgstr "Kunjungi laman plugin" ++ ++#: wp-admin/includes/plugin.php:28 ++#: wp-includes/theme.php:113 ++msgid "Visit author homepage" ++msgstr "Kunjungi laman penulis" ++ ++#: wp-admin/includes/plugin.php:164 ++msgid "One of the plugins is invalid." ++msgstr "Salah satu dari plugin tidak valid." ++ ++#: wp-admin/includes/plugin.php:195 ++msgid "Invalid plugin." ++msgstr "Plugin tidak valid." ++ ++#: wp-admin/includes/plugin.php:197 ++msgid "Plugin file does not exist." ++msgstr "Berkas plugin tidak ada." ++ ++#: wp-admin/includes/post.php:45 ++msgid "You are not allowed to edit pages as this user." ++msgstr "Anda tidak diizinkan untuk menyunting halaman sebagai pengguna ini." ++ ++#: wp-admin/includes/post.php:48 ++msgid "You are not allowed to edit posts as this user." ++msgstr "Anda tidak diizinkan untuk menyunting tulisan sebagai pengguna ini." ++ ++#: wp-admin/includes/post.php:214 ++msgid "You are not allowed to create pages on this blog." ++msgstr "Anda tidak diizinkan untuk membuat halaman di blog ini." ++ ++#: wp-admin/includes/post.php:217 ++msgid "You are not allowed to create posts or drafts on this blog." ++msgstr "Anda tidak diizinkan untuk menciptakan tulisan atau naskah di blog ini." ++ ++#: wp-admin/includes/post.php:259 ++msgid "You are not allowed to create pages as this user." ++msgstr "Anda tidak diizinkan untuk membuat halaman sebagai pengguna ini." ++ ++#: wp-admin/includes/post.php:262 ++msgid "You are not allowed to post as this user." ++msgstr "Anda tidak diizinkan untuk melakukan tulisan sebagai pengguna ini." ++ ++#: wp-admin/includes/post.php:522 ++msgid "Published posts" ++msgstr "Tulisan yang telah terbit" ++ ++#: wp-admin/includes/post.php:523 ++msgid "Scheduled posts" ++msgstr "Tulisan Terjadwal" ++ ++#: wp-admin/includes/post.php:524 ++msgid "Pending posts" ++msgstr "Tulisan yang Menunggu" ++ ++#: wp-admin/includes/post.php:526 ++msgid "Private posts" ++msgstr "Tulisan pribadi" ++ ++#: wp-admin/includes/post.php:572 ++msgid "Images" ++msgstr "Gambar" ++ ++#: wp-admin/includes/post.php:572 ++msgid "Manage Images" ++msgstr "Kelola Gambar" ++ ++#: wp-admin/includes/post.php:572 ++#, php-format ++msgid "Image (%s)" ++msgid_plural "Images (%s)" ++msgstr[0] "Gambar (%s)" ++msgstr[1] "Gambar (%s)" ++ ++#: wp-admin/includes/post.php:573 ++msgid "Audio" ++msgstr "Audio" ++ ++#: wp-admin/includes/post.php:573 ++msgid "Manage Audio" ++msgstr "Kelola Audio" ++ ++#: wp-admin/includes/post.php:573 ++#, php-format ++msgid "Audio (%s)" ++msgid_plural "Audio (%s)" ++msgstr[0] "Audio (%s)" ++msgstr[1] "Audio (%s)" ++ ++#: wp-admin/includes/post.php:574 ++msgid "Video" ++msgstr "Video" ++ ++#: wp-admin/includes/post.php:574 ++msgid "Manage Video" ++msgstr "KKelola Blogroll" ++ ++#: wp-admin/includes/post.php:574 ++#, php-format ++msgid "Video (%s)" ++msgid_plural "Video (%s)" ++msgstr[0] "Video (%s)" ++msgstr[1] "Video (%s)" ++ ++#: wp-admin/includes/post.php:649 ++msgid "Click to edit this part of the permalink" ++msgstr "Klik untuk menyunting permalink bagian ini" ++ ++#: wp-admin/includes/post.php:657 ++msgid "Permalink:" ++msgstr "Permalink:" ++ ++#: wp-admin/includes/schema.php:160 ++msgid "My Blog" ++msgstr "Blog Saya" ++ ++#: wp-admin/includes/schema.php:161 ++msgid "Just another WordPress weblog" ++msgstr "Sekedar sebuah weblog WordPress lainnya" ++ ++#: wp-admin/includes/schema.php:183 ++msgid "F j, Y" ++msgstr "j F Y" ++ ++#: wp-admin/includes/schema.php:184 ++msgid "g:i a" ++msgstr "H:i" ++ ++#: wp-admin/includes/schema.php:185 ++msgid "F j, Y g:i a" ++msgstr "j F Y H:i" ++ ++#: wp-admin/includes/schema.php:277 ++msgid "Administrator|User role" ++msgstr "Administrator" ++ ++#: wp-admin/includes/schema.php:278 ++msgid "Editor|User role" ++msgstr "Penyunting" ++ ++#: wp-admin/includes/schema.php:279 ++msgid "Author|User role" ++msgstr "Penulis" ++ ++#: wp-admin/includes/schema.php:280 ++msgid "Contributor|User role" ++msgstr "Kontributor" ++ ++#: wp-admin/includes/schema.php:281 ++msgid "Subscriber|User role" ++msgstr "Pelanggan" ++ ++#: wp-admin/includes/template.php:288 ++#: wp-admin/includes/template.php:325 ++msgid "Modified" ++msgstr "Diubah" ++ ++#: wp-admin/includes/template.php:290 ++#: wp-admin/includes/template.php:327 ++msgid "Submitted" ++msgstr "Terkirim" ++ ++#: wp-admin/includes/template.php:299 ++#: wp-admin/includes/template.php:334 ++#: wp-admin/plugins.php:109 ++msgid "Status" ++msgstr "Status" ++ ++#: wp-admin/includes/template.php:310 ++msgid "Media|media column header" ++msgstr "Media" ++ ++#: wp-admin/includes/template.php:311 ++msgid "Description|media column header" ++msgstr "Keterangan" ++ ++#: wp-admin/includes/template.php:312 ++msgid "Date Added|media column header" ++msgstr "Tanggal Ditambahkan" ++ ++#: wp-admin/includes/template.php:313 ++msgid "Appears with|media column header" ++msgstr "Tampil Bersama" ++ ++#: wp-admin/includes/template.php:315 ++msgid "Location|media column header" ++msgstr "Lokasi" ++ ++#: wp-admin/includes/template.php:561 ++#, php-format ++msgid "e-mail: %s" ++msgstr "e-mail: %s" ++ ++#: wp-admin/includes/template.php:565 ++msgid "View posts by this author" ++msgstr "Lihat tulisan berdasarkan penulis" ++ ++#: wp-admin/includes/template.php:624 ++#: wp-includes/link-template.php:516 ++msgid "Edit comment" ++msgstr "Sunting komentar" ++ ++#: wp-admin/includes/template.php:642 ++msgid "Y/m/d \\a\\t g:i A" ++msgstr "Y/m/d \\p\\u\\k\\u\\l H:i" ++ ++#: wp-admin/includes/template.php:667 ++#, php-format ++msgid "From %1$s, %2$s" ++msgstr "Dari %1$s, %2$s" ++ ++#: wp-admin/includes/template.php:675 ++#: wp-admin/includes/template.php:680 ++msgid "Approve this comment" ++msgstr "Setujui komentar ini" ++ ++#: wp-admin/includes/template.php:676 ++#: wp-admin/includes/template.php:683 ++msgid "Unapprove this comment" ++msgstr "Tolak komentar ini" ++ ++#: wp-admin/includes/template.php:688 ++msgid "Mark this comment as spam" ++msgstr "Tandai komentar ini sebagai spam" ++ ++#: wp-admin/includes/template.php:730 ++#: wp-admin/includes/template.php:800 ++msgid "Key" ++msgstr "Kunci" ++ ++#: wp-admin/includes/template.php:731 ++#: wp-admin/includes/template.php:801 ++msgid "Value" ++msgstr "Nilai" ++ ++#: wp-admin/includes/template.php:732 ++#: wp-admin/plugins.php:110 ++#: wp-includes/js/tinymce/wp-mce-help.php:194 ++#: wp-includes/js/tinymce/wp-mce-help.php:210 ++msgid "Action" ++msgstr "Tindakan" ++ ++#: wp-admin/includes/template.php:776 ++#: wp-includes/js/tinymce/langs/wp-langs.php:16 ++msgid "Update" ++msgstr "Perbarui" ++ ++#: wp-admin/includes/template.php:797 ++msgid "Add a new custom field:" ++msgstr "Tambahkan ruas tersuai:" ++ ++#: wp-admin/includes/template.php:815 ++msgid "or" ++msgstr "atau" ++ ++#: wp-admin/includes/template.php:823 ++msgid "Add Custom Field" ++msgstr "Tambahkan Ruas Tersuai" ++ ++#: wp-admin/includes/template.php:864 ++#, php-format ++msgid "%1$s%2$s, %3$s
    @ %4$s : %5$s|1: month input, 2: day input, 3: year input, 4: hour input, 5: minute input" ++msgstr "%1$s%2$s, %3$s
    @ %4$s : %5$s" ++ ++#: wp-admin/includes/template.php:913 ++msgid "WordPress recommends a better browser" ++msgstr "WordPress merekomendasikan perambah yang lebih baik" ++ ++#: wp-admin/includes/template.php:943 ++msgid "Thumbnail linked to file" ++msgstr "Miniatur ditautkan ke berkas" ++ ++#: wp-admin/includes/template.php:943 ++msgid "Image linked to file" ++msgstr "Gambar ditautkan ke berkas" ++ ++#: wp-admin/includes/template.php:947 ++msgid "Thumbnail linked to page" ++msgstr "Miniatur ditautkan ke halaman" ++ ++#: wp-admin/includes/template.php:947 ++msgid "Image linked to page" ++msgstr "Gambar ditautkan ke halaman" ++ ++#: wp-admin/includes/template.php:952 ++msgid "Link to file" ++msgstr "Tautkan ke berkas" ++ ++#: wp-admin/includes/template.php:956 ++msgid "Link to page" ++msgstr "Tautkan ke halaman" ++ ++#: wp-admin/includes/template.php:1012 ++msgid "Choose a file from your computer:" ++msgstr "Pilih sebuah berkas dari komputer Anda:" ++ ++#: wp-admin/includes/template.php:1012 ++#, php-format ++msgid "Maximum size: %s" ++msgstr "Ukuran maksimal: %s" ++ ++#: wp-admin/includes/template.php:1018 ++msgid "Upload file and import" ++msgstr "Unggah berkas dan impor" ++ ++#: wp-admin/includes/update.php:7 ++#: wp-admin/includes/update.php:24 ++#, php-format ++msgid "Version %s" ++msgstr "Versi %s" ++ ++#: wp-admin/includes/update.php:13 ++#, php-format ++msgid "You are using a development version (%s). Cool! Please stay updated." ++msgstr "Anda menggunakan versi pengembangan (%s). Hebat! ikuti perkembangannya." ++ ++#: wp-admin/includes/update.php:18 ++#, php-format ++msgid "Get Version %3$s" ++msgstr "Dapatkan versi %3$s" ++ ++#: wp-admin/includes/update.php:37 ++#, php-format ++msgid "WordPress %2$s is available! Please update now." ++msgstr "WordPress %2$s tersedia! Silakan memutakhirkan sekarang." ++ ++#: wp-admin/includes/update.php:39 ++#, php-format ++msgid "WordPress %2$s is available! Please notify the site administrator." ++msgstr "WordPress %2$s kini tersedia! Mohon beritahu administrator situs ini." ++ ++#: wp-admin/includes/update.php:49 ++#, php-format ++msgid "This is WordPress version %s." ++msgstr "Ini adalah WordPress versi %s." ++ ++#: wp-admin/includes/update.php:51 ++#, php-format ++msgid "Update to %s" ++msgstr "Mutakhirkan ke %s" ++ ++#: wp-admin/includes/update.php:51 ++msgid "Latest" ++msgstr "Terbaru" ++ ++#: wp-admin/includes/update.php:131 ++#, php-format ++msgid "There is a new version of %1$s available. Download version %3$s here." ++msgstr "Versi baru of %1$s telah tersedia. Unduh versi %3$s di sini." ++ ++#: wp-admin/includes/update.php:133 ++#, php-format ++msgid "There is a new version of %1$s available. Download version %3$s here automatic upgrade unavailable for this plugin." ++msgstr "Versi baru %1$s telah tersedia. Unduh versi %3$s di sini pemutakhiran otomatis tidak tersedia untuk plugin ini." ++ ++#: wp-admin/includes/update.php:135 ++#, php-format ++msgid "There is a new version of %1$s available. Download version %3$s here or upgrade automatically." ++msgstr "Tersedia %1$s versi baru. Unduh versi %3$s di sini atau mutakhirkan secara otomatis." ++ ++#: wp-admin/includes/update.php:150 ++msgid "The plugin is at the latest version." ++msgstr "Plugin ini sudah dalam versi terakhir." ++ ++#: wp-admin/includes/update.php:160 ++msgid "Filesystem error" ++msgstr "Galag sistem berkas" ++ ++#: wp-admin/includes/update.php:166 ++msgid "Unable to locate WordPress directory." ++msgstr "Tak dapat menentukan lokasi direktori WordPress." ++ ++#: wp-admin/includes/update.php:172 ++msgid "Upgrade package not available." ++msgstr "Paket pemutakhiran tidak tersedia." ++ ++#: wp-admin/includes/update.php:176 ++#, php-format ++msgid "Downloading update from %s" ++msgstr "Mengunduh pemutakhiran dari %s" ++ ++#: wp-admin/includes/update.php:180 ++msgid "Download failed." ++msgstr "Pengunduhan gagal." ++ ++#: wp-admin/includes/update.php:188 ++msgid "Unpacking the update" ++msgstr "Membuka paket pemutakhiran" ++ ++#: wp-admin/includes/update.php:202 ++msgid "Deactivating the plugin" ++msgstr "Menonaktifkan plugin" ++ ++#: wp-admin/includes/update.php:207 ++msgid "Removing the old version of the plugin" ++msgstr "Menyingkirkan versi lama dari plugin ini" ++ ++#: wp-admin/includes/update.php:219 ++msgid "Could not remove the old plugin" ++msgstr "Tidak dapat menyingkirkan plugin lama" ++ ++#: wp-admin/includes/update.php:222 ++msgid "Installing the latest version" ++msgstr "Menginstal versi terakhir" ++ ++#: wp-admin/includes/update.php:226 ++msgid "Installation failed" ++msgstr "Instalasi gagal" ++ ++#: wp-admin/includes/upgrade.php:41 ++msgid "User already exists. Password inherited." ++msgstr "Pengguna telah ada. Kata sandi diturunkan." ++ ++#: wp-admin/includes/upgrade.php:70 ++#: wp-admin/includes/upgrade.php:71 ++msgid "Blogroll" ++msgstr "Blogroll" ++ ++#: wp-admin/includes/upgrade.php:101 ++msgid "Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!" ++msgstr "Selamat datang di WordPress. Ini adalah tulisan pertama Anda. Sunting atau hapus, kemudian mulai blogging!" ++ ++#: wp-admin/includes/upgrade.php:101 ++msgid "Hello world!" ++msgstr "Halo dunia!" ++ ++#: wp-admin/includes/upgrade.php:101 ++msgid "hello-world" ++msgstr "halo-dunia" ++ ++#: wp-admin/includes/upgrade.php:105 ++msgid "Mr WordPress" ++msgstr "Tuan WordPress" ++ ++#: wp-admin/includes/upgrade.php:105 ++msgid "Hi, this is a comment.
    To delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them." ++msgstr "Hai, ini adalah sebuah komentar.
    Untuk menghapus sebuah komentar, cukup masuk log dan lihat komentar tulisan tersebut. Di sana Anda akan diberikan opsi untuk menyunting atau menghapusnya." ++ ++#: wp-admin/includes/upgrade.php:109 ++msgid "This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress." ++msgstr "Ini merupakan contoh halaman WordPress. Anda dapat menyunting ini untuk menaruh informasi tentang diri Anda atau situs Anda sehingga pembaca dapat mengetahui dari mana Anda. Anda dapat menciptakan halaman seperti ini atau sub-halaman sebanyak mungkin dan mengatur seluruh konten Anda di dalam WordPress." ++ ++#: wp-admin/includes/upgrade.php:109 ++#: wp-includes/js/tinymce/langs/wp-langs.php:238 ++#: wp-includes/js/tinymce/wp-mce-help.php:165 ++msgid "About" ++msgstr "Perihal" ++ ++#: wp-admin/includes/upgrade.php:109 ++msgid "about" ++msgstr "perihal" ++ ++#: wp-admin/includes/upgrade.php:119 ++#, php-format ++msgid "" ++"Your new WordPress blog has been successfully set up at:\n" ++"\n" ++"%1$s\n" ++"\n" ++"You can log in to the administrator account with the following information:\n" ++"\n" ++"Username: %2$s\n" ++"Password: %3$s\n" ++"\n" ++"We hope you enjoy your new blog. Thanks!\n" ++"\n" ++"--The WordPress Team\n" ++"http://wordpress.org/\n" ++msgstr "" ++"Blog WordPress baru Anda telah berhasil ditata pada:\n" ++"\n" ++"%1$s\n" ++"\n" ++"Anda dapat masuk log ke dalam akun administrator dengan informasi berikut:\n" ++"\n" ++"Nama pengguna: %2$s\n" ++"Kata sandi: %3$s\n" ++"\n" ++"Kami harap Anda menikmati blog baru Anda. Terimakasih!\n" ++"\n" ++"--Tim WordPress\n" ++"http://wordpress.org/\n" ++ ++#: wp-admin/includes/upgrade.php:134 ++msgid "New WordPress Blog" ++msgstr "Blog WordPress Baru" ++ ++#: wp-admin/includes/user.php:87 ++#: wp-login.php:155 ++msgid "ERROR: Please enter a username." ++msgstr "GALAT: Mohon masukkan nama pengguna." ++ ++#: wp-admin/includes/user.php:94 ++#: wp-admin/includes/user.php:96 ++msgid "ERROR: You entered your new password only once." ++msgstr "GALAT: Anda mengetikkan kata sandi baru hanya satu kali." ++ ++#: wp-admin/includes/user.php:99 ++msgid "ERROR: Please enter your password." ++msgstr "GALAT: Mohon masukkan kata sandi Anda dua kali." ++ ++#: wp-admin/includes/user.php:101 ++msgid "ERROR: Please enter your password twice." ++msgstr "GALAT: Mohon masukkan kata sandi Anda dua kali." ++ ++#: wp-admin/includes/user.php:106 ++msgid "ERROR: Passwords may not contain the character \"\\\"." ++msgstr "GALAT: Kata sandi tidak boleh mengandung karakter \"\\\"." ++ ++#: wp-admin/includes/user.php:110 ++msgid "ERROR: Please enter the same password in the two password fields." ++msgstr "GALAT: Silakan masukkan kata sandi yang sama di kedua ruas kata sandi." ++ ++#: wp-admin/includes/user.php:116 ++msgid "ERROR: This username is invalid. Please enter a valid username." ++msgstr "GALAT: Nama pengguna ini tidak sah. Mohon masukkan sebuah nama pengguna yang sah." ++ ++#: wp-admin/includes/user.php:119 ++msgid "ERROR: This username is already registered. Please choose another one." ++msgstr "GALAT: Nama pengguna ini telah terdaftar. Silakan pilih yang lain." ++ ++#: wp-admin/includes/user.php:123 ++msgid "ERROR: Please enter an e-mail address." ++msgstr "GALAT: Silakan masukkan sebuah alamat e-mail." ++ ++#: wp-admin/includes/user.php:126 ++msgid "ERROR: The e-mail address isn't correct." ++msgstr "GALAT: Alamat e-mail ini tidak benar." ++ ++#: wp-admin/includes/user.php:354 ++msgid "No matching users were found!" ++msgstr "Tidak ada pengguna yang cocok ditemukan!" ++ ++#: wp-admin/includes/widgets.php:136 ++msgid "No matching widgets" ++msgstr "Tak ada widget yang cocok" ++ ++#: wp-admin/includes/widgets.php:216 ++#, php-format ++msgid "%1$s: %2$s|1: widget name, 2: widget title" ++msgstr "%1$s: %2$s" ++ ++#: wp-admin/includes/widgets.php:243 ++msgid "There are no options for this widget." ++msgstr "Tidak ada opsi untuk widget ini." ++ ++#: wp-admin/includes/widgets.php:253 ++#: wp-admin/users.php:303 ++msgid "Change" ++msgstr "Ubah" ++ ++#: wp-admin/includes/widgets.php:257 ++msgid "Remove" ++msgstr "Singkirkan" ++ ++#: wp-admin/index.php:30 ++#: wp-admin/index.php:39 ++#: wp-admin/menu.php:7 ++msgid "Dashboard" ++msgstr "Dasbor" ++ ++#: wp-admin/index.php:43 ++msgid "Right Now" ++msgstr "Saat Ini" ++ ++#: wp-admin/index.php:46 ++msgid "Write a New Post" ++msgstr "Buat Tulisan Baru" ++ ++#: wp-admin/index.php:48 ++msgid "Write a New Page" ++msgstr "Buat Halaman Baru" ++ ++#: wp-admin/index.php:64 ++#, php-format ++msgid "%s post" ++msgid_plural "%s posts" ++msgstr[0] "%s tulisan" ++msgstr[1] "%s tulisan" ++ ++#: wp-admin/index.php:68 ++#, php-format ++msgid "%s page" ++msgid_plural "%s pages" ++msgstr[0] "%s halaman" ++msgstr[1] "%s halaman" ++ ++#: wp-admin/index.php:71 ++#, php-format ++msgid "%s draft" ++msgid_plural "%s drafts" ++msgstr[0] "%s naskah" ++msgstr[1] "%s naskah" ++ ++#: wp-admin/index.php:74 ++#, php-format ++msgid "%s scheduled post" ++msgid_plural "%s scheduled posts" ++msgstr[0] "%s tulisan terjadwal" ++msgstr[1] "%s tulisan terjadwal" ++ ++#: wp-admin/index.php:78 ++#, php-format ++msgid "There is %2$s post pending your review." ++msgid_plural "There are %2$s posts pending your review." ++msgstr[0] "Ada %2$s tulisan yang menunggu evaluasi Anda." ++msgstr[1] "There are %2$s posts pending your review." ++ ++#: wp-admin/index.php:83 ++#, php-format ++msgid "%s category" ++msgid_plural "%s categories" ++msgstr[0] "%s kategori" ++msgstr[1] "%s lalu" ++ ++#: wp-admin/index.php:84 ++#, php-format ++msgid "%s tag" ++msgid_plural "%s tags" ++msgstr[0] "%s tag" ++msgstr[1] "%s tag" ++ ++#: wp-admin/index.php:93 ++#, php-format ++msgid "You have %1$s, contained within %2$s and %3$s. %4$s" ++msgstr "Anda memiliki %1$s, termuat dalam %2$s dan %3$s. %4$s" ++ ++#: wp-admin/index.php:102 ++#, php-format ++msgid "%d widget" ++msgid_plural "%d widgets" ++msgstr[0] "%d widget" ++msgstr[1] "%d widget" ++ ++#: wp-admin/index.php:107 ++#, php-format ++msgid "You are using %1$s theme with %2$s." ++msgstr "Anda menggunakan tema %1$s dengan %2$s." ++ ++#: wp-admin/index.php:109 ++msgid "Change Theme" ++msgstr "Mengubah Tema" ++ ++#: wp-admin/install.php:23 ++msgid "WordPress › Installation" ++msgstr "Instalasi WordPress ›" ++ ++#: wp-admin/install.php:33 ++msgid "Already Installed" ++msgstr "Sudah Terinstal" ++ ++#: wp-admin/install.php:33 ++msgid "You appear to have already installed WordPress. To reinstall please clear your old database tables first." ++msgstr "Sepertinya Anda sudah menginstal WordPress. Untuk menginstal ulang silakan bersihkan database lama Anda terlebih dahulu." ++ ++#: wp-admin/install.php:40 ++msgid "Welcome" ++msgstr "Selamat Datang" ++ ++#: wp-admin/install.php:41 ++#, php-format ++msgid "Welcome to the famous five minute WordPress installation process! You may want to browse the ReadMe documentation at your leisure. Otherwise, just fill in the information below and you'll be on your way to using the most extendable and powerful personal publishing platform in the world." ++msgstr "Selamat datang ke proses instalasi lima menit WordPress yang terkenal itu! Anda mungkin ingin membaca dokumentasi ReadMe di waktu sela Anda. Atau, cukup isi informasi di bawah dan Anda akan menuju ke penggunaan platform penerbitan pribadi yang paling fleksibel dan handal di dunia." ++ ++#: wp-admin/install.php:42 ++msgid "First Step" ++msgstr "Langkah Pertama" ++ ++#: wp-admin/install.php:44 ++msgid "Information needed" ++msgstr "Informasi yang dibutuhkan" ++ ++#: wp-admin/install.php:45 ++msgid "Please provide the following information. Don't worry, you can always change these settings later." ++msgstr "Mohon sediakan informasi berikut. Jangan khawatir. Anda dapat mengubah penataan ini nantinya." ++ ++#: wp-admin/install.php:50 ++#: wp-admin/options-general.php:16 ++msgid "Blog Title" ++msgstr "Judul Blog" ++ ++#: wp-admin/install.php:54 ++msgid "Your E-mail" ++msgstr "E-mail Anda" ++ ++#: wp-admin/install.php:56 ++msgid "Double-check your email address before continuing." ++msgstr "Periksa ulang alamat email Anda sebelum melanjutkan." ++ ++#: wp-admin/install.php:59 ++msgid "Allow my blog to appear in search engines like Google and Technorati." ++msgstr "Biarkan blog saya muncul dalam mesin pencari seperti Google dan Technorati." ++ ++#: wp-admin/install.php:62 ++msgid "Install WordPress" ++msgstr "Instal WordPress" ++ ++#: wp-admin/install.php:79 ++msgid "ERROR: you must provide an e-mail address." ++msgstr "GALAT: Anda harus menyediakan sebuah alamat e-mail." ++ ++#: wp-admin/install.php:82 ++msgid "ERROR: that isn’t a valid e-mail address. E-mail addresses look like: username@example.com" ++msgstr "GALAT: itu bukan alamat e-mail yang benar. Alamat e-mail tertulis seperti: pengguna@example.com" ++ ++#: wp-admin/install.php:90 ++msgid "Success!" ++msgstr "Berhasil!" ++ ++#: wp-admin/install.php:92 ++msgid "WordPress has been installed. Were you expecting more steps? Sorry to disappoint." ++msgstr "WordPress telah terinstal. Apakah Anda mengira masih ada langkah-langkah lagi? Maaf jika mengecewakan." ++ ++#: wp-admin/install.php:96 ++#: wp-admin/user-edit.php:198 ++#: wp-admin/users.php:334 ++#: wp-login.php:316 ++#: wp-login.php:381 ++msgid "Username" ++msgstr "Nama Pengguna" ++ ++#: wp-admin/install.php:100 ++#: wp-admin/options-writing.php:76 ++#: wp-login.php:385 ++msgid "Password" ++msgstr "Kata Sandi" ++ ++#: wp-admin/install.php:102 ++msgid "Note that password carefully! It is a random password that was generated just for you." ++msgstr "Catat kata sandi tersebut dengan baik! Ini adalah sembarang> kata sandi yang diciptakan hanya untuk Anda." ++ ++#: wp-admin/install.php:106 ++#: wp-login.php:391 ++msgid "Log In" ++msgstr "Masuk Log" ++ ++#: wp-admin/link-add.php:22 ++msgid "Link added." ++msgstr "Taut ditambah." ++ ++#: wp-admin/link-import.php:7 ++msgid "Import Blogroll" ++msgstr "Impor Blogroll" ++ ++#: wp-admin/link-import.php:24 ++msgid "Import your blogroll from another system" ++msgstr "Impor blogroll Anda dari sistem lain" ++ ++#: wp-admin/link-import.php:28 ++msgid "If a program or website you use allows you to export your links or subscriptions as OPML you may import them here." ++msgstr "Jika sebuah program atau website yang Anda gunakan memungkinkan Anda untuk mengekspor taut Anda atau subscription seperti OPML Anda bisa mengimpornya di sini." ++ ++#: wp-admin/link-import.php:33 ++msgid "Specify an OPML URL:" ++msgstr "Tentukan URL OPML:" ++ ++#: wp-admin/link-import.php:38 ++msgid "Or choose from your local disk:" ++msgstr "Atau pilih dari disk lokal Anda:" ++ ++#: wp-admin/link-import.php:44 ++msgid "Now select a category you want to put these links in." ++msgstr "Sekarang pilih sebuah kategori di mana taut ini ingin Anda letakkan." ++ ++#: wp-admin/link-import.php:45 ++msgid "Category:" ++msgstr "Kategori:" ++ ++#: wp-admin/link-import.php:56 ++msgid "Import OPML File" ++msgstr "Impor Berkas OPML" ++ ++#: wp-admin/link-import.php:111 ++#, php-format ++msgid "Inserted %s" ++msgstr "Inserted %s" ++ ++#: wp-admin/link-import.php:115 ++#, php-format ++msgid "Inserted %1$d links into category %2$s. All done! Go manage those links." ++msgstr "Memasukkan %1$d taut ke dalam kategori %2$s. Semuanya selesai! Silakan atur taut-taut tersebut." ++ ++#: wp-admin/link-import.php:121 ++msgid "You need to supply your OPML url. Press back on your browser and try again" ++msgstr "Anda perlu menyediakan url OPML Anda. Tekan 'back' pada perambah Anda dan coba lagi" ++ ++#: wp-admin/link-manager.php:10 ++#: wp-admin/link-manager.php:42 ++#: wp-admin/link.php:7 ++msgid "You do not have sufficient permissions to edit the links for this blog." ++msgstr "Anda tidak punya cukup izin untuk menyunting taut-taut untuk blog ini." ++ ++#: wp-admin/link-manager.php:37 ++msgid "Manage Links" ++msgstr "Kelola Taut" ++ ++#: wp-admin/link-manager.php:69 ++#, php-format ++msgid "%s link deleted." ++msgid_plural "%s links deleted" ++msgstr[0] "%s taut dihapus" ++msgstr[1] "%s taut dihapus" ++ ++#: wp-admin/link-manager.php:78 ++#, php-format ++msgid "Manage Links (add new)" ++msgstr "Kelola Taut (tambahkan baru)" ++ ++#: wp-admin/link-manager.php:82 ++msgid "Search Links" ++msgstr "Taut Pencarian" ++ ++#: wp-admin/link-manager.php:94 ++msgid "View all Categories" ++msgstr "Lihat Seluruh Kategori" ++ ++#: wp-admin/link-manager.php:100 ++msgid "Order by Link ID" ++msgstr "Urutkan berdasarkan ID Taut" ++ ++#: wp-admin/link-manager.php:101 ++msgid "Order by Name" ++msgstr "Urutkan berdasarkan Nama" ++ ++#: wp-admin/link-manager.php:102 ++msgid "Order by Address" ++msgstr "Urutkan berdasarkan Alamat" ++ ++#: wp-admin/link-manager.php:103 ++msgid "Order by Rating" ++msgstr "Urutkan berdasarkan Rating" ++ ++#: wp-admin/link-manager.php:124 ++msgid "rel" ++msgstr "rel" ++ ++#: wp-admin/link-manager.php:125 ++msgid "Visible" ++msgstr "Terlihat" ++ ++#: wp-admin/link-manager.php:163 ++#: wp-admin/update.php:64 ++msgid "Yes" ++msgstr "Ya" ++ ++#: wp-admin/link-manager.php:176 ++#, php-format ++msgid "Visit %s" ++msgstr "Kunjungi %s" ++ ++#: wp-admin/link-manager.php:214 ++msgid "No links found." ++msgstr "Tidak menemukan taut." ++ ++#: wp-admin/link-parse-opml.php:58 ++#, php-format ++msgid "XML error: %1$s at line %2$s" ++msgstr "XML galat: %1$s pada baris %2$s" ++ ++#: wp-admin/link.php:97 ++msgid "Link not found." ++msgstr "Taut tidak ditemukan." ++ ++#: wp-admin/media.php:32 ++#: wp-admin/media.php:68 ++msgid "Edit Media" ++msgstr "Sunting Media" ++ ++#: wp-admin/media.php:56 ++msgid "Media attachment updated." ++msgstr "Lampiran media diperbarui." ++ ++#: wp-admin/media-upload.php:19 ++msgid "You are not allowed to be here" ++msgstr "Anda tidak diperkenankan berada di sini" ++ ++#: wp-admin/menu.php:10 ++#: wp-admin/menu.php:12 ++#: wp-admin/menu.php:14 ++msgid "Write" ++msgstr "Tulis" ++ ++#: wp-admin/menu.php:17 ++#: wp-admin/menu.php:19 ++#: wp-admin/menu.php:21 ++msgid "Manage" ++msgstr "Kelola" ++ ++#: wp-admin/menu.php:24 ++msgid "Design" ++msgstr "Desain" ++ ++#: wp-admin/menu.php:25 ++#, php-format ++msgid "Comments %s" ++msgstr "Komentar %s" ++ ++#: wp-admin/menu.php:26 ++#: wp-admin/options.php:4 ++msgid "Settings" ++msgstr "Penataan" ++ ++#: wp-admin/menu.php:31 ++#: wp-admin/user-edit.php:63 ++msgid "Profile" ++msgstr "Profil" ++ ++#: wp-admin/menu.php:36 ++msgid "Link" ++msgstr "Taut" ++ ++#: wp-admin/menu.php:52 ++msgid "Authors & Users" ++msgstr "Penulis & Pengguna" ++ ++#: wp-admin/menu.php:53 ++#: wp-admin/menu.php:55 ++msgid "Your Profile" ++msgstr "Profil Anda" ++ ++#: wp-admin/menu.php:58 ++#: wp-includes/js/tinymce/langs/wp-langs.php:290 ++msgid "General" ++msgstr "Umum" ++ ++#: wp-admin/menu.php:59 ++msgid "Writing" ++msgstr "Menulis" ++ ++#: wp-admin/menu.php:60 ++msgid "Reading" ++msgstr "Membaca" ++ ++#: wp-admin/menu.php:61 ++msgid "Discussion" ++msgstr "Diskusi" ++ ++#: wp-admin/menu.php:62 ++msgid "Privacy" ++msgstr "Privasi" ++ ++#: wp-admin/menu.php:63 ++msgid "Permalinks" ++msgstr "Permalink" ++ ++#: wp-admin/menu.php:64 ++msgid "Miscellaneous" ++msgstr "Serbaneka" ++ ++#: wp-admin/menu.php:67 ++#: wp-admin/plugin-editor.php:95 ++msgid "Plugin Editor" ++msgstr "Penyunting Plugin" ++ ++#: wp-admin/menu.php:69 ++msgid "Themes" ++msgstr "Tema" ++ ++#: wp-admin/menu.php:70 ++#: wp-admin/theme-editor.php:93 ++msgid "Theme Editor" ++msgstr "Penyunting Tema" ++ ++#: wp-admin/menu.php:140 ++msgid "You do not have sufficient permissions to access this page." ++msgstr "Anda tidak memiliki cukup izin untuk mengakses halaman ini." ++ ++#: wp-admin/options-discussion.php:4 ++#: wp-admin/options-discussion.php:11 ++msgid "Discussion Settings" ++msgstr "Penataan Diskusi" ++ ++#: wp-admin/options-discussion.php:16 ++msgid "Default article settings" ++msgstr "Penataan artikel standar" ++ ++#: wp-admin/options-discussion.php:20 ++msgid "Attempt to notify any blogs linked to from the article (slows down posting.)" ++msgstr "Mencoba memberitahu segala blog yang ditautkan dari artikel (memperlambat pengiriman tulisan)." ++ ++#: wp-admin/options-discussion.php:24 ++msgid "Allow link notifications from other blogs (pingbacks and trackbacks.)" ++msgstr "Izinkan pemberitahuan taut dari blog lain (ping balik dan lacak balik.)" ++ ++#: wp-admin/options-discussion.php:28 ++msgid "Allow people to post comments on the article" ++msgstr "Izinkan orang untuk mengirim komentar pada artikel" ++ ++#: wp-admin/options-discussion.php:30 ++msgid "These settings may be overridden for individual articles." ++msgstr "Penataan ini bisa ditimpa untuk artikel individual." ++ ++#: wp-admin/options-discussion.php:34 ++msgid "E-mail me whenever" ++msgstr "E-mail saya setiap kali" ++ ++#: wp-admin/options-discussion.php:38 ++msgid "Anyone posts a comment" ++msgstr "Seseorang mengirim komentar" ++ ++#: wp-admin/options-discussion.php:42 ++msgid "A comment is held for moderation" ++msgstr "Sebuah komentar ditahan untuk moderasi" ++ ++#: wp-admin/options-discussion.php:46 ++msgid "Before a comment appears" ++msgstr "Sebelum sebuah komentar muncul" ++ ++#: wp-admin/options-discussion.php:50 ++msgid "An administrator must always approve the comment" ++msgstr "Seorang administrator harus selalu menyetujui komentar" ++ ++#: wp-admin/options-discussion.php:52 ++msgid "Comment author must fill out name and e-mail" ++msgstr "Penulis komentar harus mengisi nama dan e-mail" ++ ++#: wp-admin/options-discussion.php:54 ++msgid "Comment author must have a previously approved comment" ++msgstr "Penulis komentar harus mempunyai komentar yang disetujui sebelumnya" ++ ++#: wp-admin/options-discussion.php:58 ++msgid "Comment Moderation" ++msgstr "Moderasi Komentar" ++ ++#: wp-admin/options-discussion.php:60 ++#, php-format ++msgid "Hold a comment in the queue if it contains %s or more links. (A common characteristic of comment spam is a large number of hyperlinks.)" ++msgstr "Tahan komentar dalam antrian jika mengandung %s atau lebih taut. (Karakteristik umum spam ialah jumlah hyperlink yang besar.)" ++ ++#: wp-admin/options-discussion.php:62 ++msgid "When a comment contains any of these words in its content, name, URL, e-mail, or IP, it will be held in the moderation queue. One word or IP per line. It will match inside words, so \"press\" will match \"WordPress\"." ++msgstr "Ketika sebuah komentar mengandung salah satu dari kata-kata ini dalam konten, nama, URL, e-mail, atau IPnya, komentar tersebut akan ditahan dalam antrian moderasi. Satu kata atau IP per baris. Ini akan cocok dalam kata, jadi \"press\" akan cocok dengan \"WordPress\"." ++ ++#: wp-admin/options-discussion.php:69 ++msgid "Comment Blacklist" ++msgstr "Daftar Hitam Komentar" ++ ++#: wp-admin/options-discussion.php:71 ++msgid "When a comment contains any of these words in its content, name, URL, e-mail, or IP, it will be marked as spam. One word or IP per line. It will match inside words, so \"press\" will match \"WordPress\"." ++msgstr "Ketika sebuah komentar mengandung kata-kata ini dalam isi, nama, URL, e-mail, atau IP-nya, ia akan ditandai sebagai spam. Satu kata atau IP pe baris. Ia akan cocok di dalam kata, jadi \"press\" akan cocok dengan \"WordPress\"." ++ ++#: wp-admin/options-discussion.php:79 ++msgid "Avatars" ++msgstr "Avatar" ++ ++#: wp-admin/options-discussion.php:81 ++msgid "By default WordPress uses Gravatars — short for Globally Recognized Avatars — for the pictures that show up next to comments. Plugins may override this." ++msgstr "Secara standar, WordPress menggunakan Gravatar — kependekan dari Globally Recognized Avatars — untuk gambar yang tampil di sebelah komentar. Ini dapat ditimpa oleh plugin." ++ ++#: wp-admin/options-discussion.php:87 ++msgid "Avatar display" ++msgstr "Tampilan avatar" ++ ++#: wp-admin/options-discussion.php:90 ++msgid "Don’t show Avatars" ++msgstr "Jangan tampilkan Avatar" ++ ++#: wp-admin/options-discussion.php:90 ++msgid "Show Avatars" ++msgstr "Tampilkan Avatar" ++ ++#: wp-admin/options-discussion.php:99 ++msgid "Maximum Rating" ++msgstr "Rating Maksimal" ++ ++#: wp-admin/options-discussion.php:103 ++msgid "G — Suitable for all audiences" ++msgstr "G — Cocok untuk seluruh pemirsa" ++ ++#: wp-admin/options-discussion.php:103 ++msgid "PG — Possibly offensive, usually for audiences 13 and above" ++msgstr "PG — Berpotensi mengandung kekerasan. Biasanya untuk pemirsa berumur 13 tahun ke atas" ++ ++#: wp-admin/options-discussion.php:103 ++msgid "R — Intended for adult audiences above 17" ++msgstr "R — Ditujukan untuk pemirsa dewasa di atas 17 tahun" ++ ++#: wp-admin/options-discussion.php:103 ++msgid "X — Even more mature than above" ++msgstr "X — Bahkan lebih dewasa daripada yang di atas" ++ ++#: wp-admin/options-general.php:4 ++#: wp-admin/options-general.php:11 ++msgid "General Settings" ++msgstr "Penataan Umum" ++ ++#: wp-admin/options-general.php:20 ++msgid "Tagline" ++msgstr "Slogan" ++ ++#: wp-admin/options-general.php:23 ++msgid "In a few words, explain what this blog is about." ++msgstr "Dalam beberapa kata, jelaskan tentang apa blog ini." ++ ++#: wp-admin/options-general.php:26 ++msgid "WordPress address (URL)" ++msgstr "Alamat WordPress (URL)" ++ ++#: wp-admin/options-general.php:30 ++msgid "Blog address (URL)" ++msgstr "Alamat blog (URL)" ++ ++#: wp-admin/options-general.php:31 ++msgid "Enter the address here if you want your blog homepage to be different from the directory you installed WordPress." ++msgstr "Masukkan alamat di sini jika Anda ingin halaman depan blog Anda berbeda dengan direktori di mana Anda menginstal WordPress." ++ ++#: wp-admin/options-general.php:34 ++msgid "E-mail address" ++msgstr "Alamat e-mail" ++ ++#: wp-admin/options-general.php:37 ++msgid "This address is used for admin purposes, like new user notification." ++msgstr "Alamat ini digunakan hanya untuk tujuan admin, seperti misalnya pemberitahuan pengguna." ++ ++#: wp-admin/options-general.php:40 ++msgid "Membership" ++msgstr "Keanggotaan" ++ ++#: wp-admin/options-general.php:43 ++msgid "Anyone can register" ++msgstr "Setiap orang dapat mendaftar" ++ ++#: wp-admin/options-general.php:46 ++msgid "Users must be registered and logged in to comment" ++msgstr "Pengguna harus terdaftar dan masuk log untuk berkomentar" ++ ++#: wp-admin/options-general.php:51 ++msgid "New User Default Role" ++msgstr "Peran Pengguna Baru Standar" ++ ++#: wp-admin/options-general.php:57 ++msgid "Timezone" ++msgstr "Zona waktu" ++ ++#: wp-admin/options-general.php:79 ++#, php-format ++msgid "UTC %s" ++msgstr "UTC %s" ++ ++#: wp-admin/options-general.php:83 ++msgid "hours" ++msgstr "jam" ++ ++#: wp-admin/options-general.php:84 ++#, php-format ++msgid "UTC time is %s" ++msgstr "Waktu UTC ialah %s" ++ ++#: wp-admin/options-general.php:84 ++#: wp-admin/options-general.php:85 ++msgid "Y-m-d G:i:s" ++msgstr "Y-m-d G:i:s" ++ ++#: wp-admin/options-general.php:85 ++#, php-format ++msgid "UTC %1$s is %2$s" ++msgstr "Waktu UTC %1$s ialah %2$s" ++ ++#: wp-admin/options-general.php:86 ++msgid "Unfortunately, you have to manually update this for Daylight Savings Time. Lame, we know, but will be fixed in the future." ++msgstr "Sayangnya, Anda harus secara manual memperbarui ini untuk Daylight Savings Time. Timpang, memang. Namun kami akan memperbaikinya untuk ke depan." ++ ++#: wp-admin/options-general.php:90 ++msgid "Date Format" ++msgstr "Format Tanggal" ++ ++#: wp-admin/options-general.php:92 ++#: wp-admin/options-general.php:97 ++msgid "Output:" ++msgstr "Keluaran:" ++ ++#: wp-admin/options-general.php:95 ++msgid "Time Format" ++msgstr "Format Waktu" ++ ++#: wp-admin/options-general.php:98 ++msgid "Documentation on date formatting. Click \"Save Changes\" to update sample output." ++msgstr "Dokumentasi tentang format penanggalan. Klik \"Simpan Perubahan\" untuk memperbarui contoh keluaran." ++ ++#: wp-admin/options-general.php:101 ++msgid "Week Starts On" ++msgstr "Minggu Dimulai Pada Hari" ++ ++#: wp-admin/options-head.php:4 ++msgid "Settings saved." ++msgstr "Penataan disimpan." ++ ++#: wp-admin/options-misc.php:4 ++#: wp-admin/options-misc.php:12 ++msgid "Miscellaneous Settings" ++msgstr "Penataan Serbaneka" ++ ++#: wp-admin/options-misc.php:15 ++msgid "Uploading" ++msgstr "Mengunggah" ++ ++#: wp-admin/options-misc.php:18 ++msgid "Store uploads in this folder" ++msgstr "Simpan unggahan di dalam folder ini" ++ ++#: wp-admin/options-misc.php:21 ++msgid "Default is wp-content/uploads" ++msgstr "Standar ialah wp-content/uploads" ++ ++#: wp-admin/options-misc.php:26 ++msgid "Full URL path to files (optional)" ++msgstr "Lokasi URL penuh ke berkas (opsional)" ++ ++#: wp-admin/options-misc.php:35 ++msgid "Organize my uploads into month- and year-based folders" ++msgstr "Organisir unggahan saya dalam folder-folder berdasarkan bulan dan tahun" ++ ++#: wp-admin/options-misc.php:41 ++msgid "Image sizes" ++msgstr "Ukuran gambar" ++ ++#: wp-admin/options-misc.php:42 ++msgid "The sizes listed below determine the maximum dimensions to use when inserting an image into the body of a post." ++msgstr "Ukuran yang dicantumkan di bawah ini menentukan dimensi maksimal yang digunakan ketika menyisipkan sebuah gambar ke dalam tubuh tulisan." ++ ++#: wp-admin/options-misc.php:46 ++msgid "Thumbnail size" ++msgstr "Ukuran miniatur" ++ ++#: wp-admin/options-misc.php:48 ++msgid "Width" ++msgstr "Lebar" ++ ++#: wp-admin/options-misc.php:50 ++msgid "Height" ++msgstr "Tinggi" ++ ++#: wp-admin/options-misc.php:53 ++msgid "Crop thumbnail to exact dimensions (normally thumbnails are proportional)" ++msgstr "Potong miniatur ke dimensi yang tepat (biasanya miniatur bersifat proporsional)" ++ ++#: wp-admin/options-misc.php:57 ++msgid "Medium size" ++msgstr "Ukuran sedang" ++ ++#: wp-admin/options-misc.php:59 ++msgid "Max Width" ++msgstr "Lebar Maksimal" ++ ++#: wp-admin/options-misc.php:61 ++msgid "Max Height" ++msgstr "Tinggi Maksimal" ++ ++#: wp-admin/options-misc.php:75 ++msgid "Track Links’ Update Times" ++msgstr "Lacak Waktu Perbaruan Bookmark" ++ ++#: wp-admin/options-misc.php:84 ++msgid "Use legacy my-hacks.php file support" ++msgstr "Gunakan dukungan berkas warisan my-hacks.php" ++ ++#: wp-admin/options-permalink.php:4 ++msgid "Permalink Settings" ++msgstr "Penataan Permalink" ++ ++#: wp-admin/options-permalink.php:105 ++msgid "You should update your .htaccess now." ++msgstr "Anda harus memperbarui .htaccess Anda sekarang." ++ ++#: wp-admin/options-permalink.php:107 ++msgid "Permalink structure updated." ++msgstr "Struktur permalink diperbarui." ++ ++#: wp-admin/options-permalink.php:112 ++msgid "Customize Permalink Structure" ++msgstr "Penyesuaian Struktur Permalink" ++ ++#: wp-admin/options-permalink.php:115 ++msgid "By default WordPress uses web URLs which have question marks and lots of numbers in them, however WordPress offers you the ability to create a custom URL structure for your permalinks and archives. This can improve the aesthetics, usability, and forward-compatibility of your links. A number of tags are available, and here are some examples to get you started." ++msgstr "Secara standar WordPress menggunakan URL web yang berisi tanda tanya dan berbagai angka di dalamnya. Tetapi WordPress menawarkan Anda kemampuan untuk membuat struktur URL tersuai untuk permalink dan arsip Anda. Ini dapat meningkatkan estetika, kegunaan, dan kompatibilitas taut-taut Anda. Sejumlah tag tersedia, dan berikut beberapa contoh yang dapat Anda gunakan sebagai pijakan." ++ ++#: wp-admin/options-permalink.php:130 ++msgid "Common settings" ++msgstr "Penataan umum" ++ ++#: wp-admin/options-permalink.php:133 ++msgid "Default" ++msgstr "Standar" ++ ++#: wp-admin/options-permalink.php:137 ++msgid "Day and name" ++msgstr "Tanggal dan nama" ++ ++#: wp-admin/options-permalink.php:141 ++msgid "Month and name" ++msgstr "Bulan dan nama" ++ ++#: wp-admin/options-permalink.php:145 ++msgid "Numeric" ++msgstr "Numerik" ++ ++#: wp-admin/options-permalink.php:155 ++msgid "Custom Structure" ++msgstr "Struktur Tersuai" ++ ++#: wp-admin/options-permalink.php:164 ++msgid "Optional" ++msgstr "Opsional" ++ ++#: wp-admin/options-permalink.php:166 ++msgid "If you like, you may enter custom structures for your category and tag URLs here. For example, using /topics/ as your category base would make your category links like http://example.org/topics/uncategorized/. If you leave these blank the defaults will be used." ++msgstr "Jika Anda suka, Anda dapat memasukkan struktur tersuai untuk URL kategori dan tag Anda. Sebagai contoh, menggunakan /topik/ sebagai basis kategori Anda akan membuat taut kategori Anda menjadi seperti http://example.org/topik/tak-berkategori/. Jika Anda meninggalkan ini kosong, bentuk yang standar yang akan digunakan." ++ ++#: wp-admin/options-permalink.php:168 ++msgid "If you like, you may enter custom structures for your category and tag URLs here. For example, using /topics/ as your category base would make your category links like http://example.org/index.php/topics/uncategorized/. If you leave these blank the defaults will be used." ++msgstr "Jika Anda suka, Anda dapat memasukkan struktur tersuai untuk URL kategori dan tag Anda. Sebagai contoh, menggunakan /topik/ sebagai basis kategori Anda akan membuat taut kategori Anda menjadi seperti http://example.org/index.php/topik/tak-berkategori/. Jika Anda meninggalkan ini kosong, bentuk yang standar yang akan digunakan." ++ ++#: wp-admin/options-permalink.php:173 ++msgid "Category base" ++msgstr "Berdasar kategori" ++ ++#: wp-admin/options-permalink.php:177 ++msgid "Tag base" ++msgstr "Berdasar tag" ++ ++#: wp-admin/options-permalink.php:184 ++msgid "If your .htaccess file were writable, we could do this automatically, but it isn’t so these are the mod_rewrite rules you should have in your .htaccess file. Click in the field and press CTRL + a to select all." ++msgstr "Jika berkas .htaccess Anda dapat ditulis, kami dapat melakukannya secara otomatis. Namun nyatanya tidak. Jadi, berikut adalah aturan mod_rewrite yang harus Anda miliki di berkas .htaccess Anda. Klik di dalam ruas dan tekan CTRL + a untuk memilih semua." ++ ++#: wp-admin/options.php:47 ++msgid "All Settings" ++msgstr "Semua Penataan" ++ ++#: wp-admin/options-privacy.php:4 ++#: wp-admin/options-privacy.php:11 ++msgid "Privacy Settings" ++msgstr "Penataan Privasi" ++ ++#: wp-admin/options-privacy.php:16 ++msgid "Blog Visibility" ++msgstr "Keterlihatan Blog" ++ ++#: wp-admin/options-privacy.php:19 ++msgid "I would like my blog to be visible to everyone, including search engines (like Google, Sphere, Technorati) and archivers" ++msgstr "Saya ingin blog saya terlihat bagi semua orang, termasuk mesin pencari (seperti Google, Sphere, Technorati) dan pengarsip" ++ ++#: wp-admin/options-privacy.php:21 ++msgid "I would like to block search engines, but allow normal visitors" ++msgstr "Saya ingin memblokir mesin pencari, tapi membiarkan pengunjung biasa" ++ ++#: wp-admin/options-reading.php:4 ++#: wp-admin/options-reading.php:11 ++msgid "Reading Settings" ++msgstr "Penataan Membaca" ++ ++#: wp-admin/options-reading.php:17 ++msgid "Front page displays" ++msgstr "Tampilan halaman depan" ++ ++#: wp-admin/options-reading.php:21 ++msgid "Your latest posts" ++msgstr "Tulisan terakhir Anda" ++ ++#: wp-admin/options-reading.php:26 ++#, php-format ++msgid "A static page (select below)" ++msgstr "Halaman statis (pilih di bawah)" ++ ++#: wp-admin/options-reading.php:30 ++#, php-format ++msgid "Front page: %s" ++msgstr "Halaman depan: %s" ++ ++#: wp-admin/options-reading.php:31 ++#, php-format ++msgid "Posts page: %s" ++msgstr "Halaman tulisan: %s" ++ ++#: wp-admin/options-reading.php:36 ++msgid "Warning: these pages should not be the same!" ++msgstr "Peringatan: halaman-halaman ini seharusnya tidak sama!" ++ ++#: wp-admin/options-reading.php:44 ++msgid "Blog pages show at most" ++msgstr "Halaman blog menampilkan paling banyak" ++ ++#: wp-admin/options-reading.php:46 ++#: wp-admin/options-reading.php:51 ++msgid "posts" ++msgstr "tulisan" ++ ++#: wp-admin/options-reading.php:50 ++msgid "Syndication feeds show the most recent" ++msgstr "Tulisan terkini yang ditampilkan dalam umpan sindikasi" ++ ++#: wp-admin/options-reading.php:54 ++msgid "For each article in a feed, show" ++msgstr "Untuk tiap artikel di dalam umpan, tampilkan" ++ ++#: wp-admin/options-reading.php:56 ++msgid "Full text" ++msgstr "Teks penuh" ++ ++#: wp-admin/options-reading.php:57 ++msgid "Summary" ++msgstr "Ringkasan" ++ ++#: wp-admin/options-reading.php:62 ++msgid "Encoding for pages and feeds" ++msgstr "Pengodean untuk halaman dan umpan" ++ ++#: wp-admin/options-reading.php:64 ++msgid "The character encoding you write your blog in (UTF-8 is recommended)" ++msgstr "Pengodean karakter yang yang Anda gunakan dalam menulis blog (UTF-8 disarankan)" ++ ++#: wp-admin/options-writing.php:4 ++#: wp-admin/options-writing.php:11 ++msgid "Writing Settings" ++msgstr "Penataan Penulisan" ++ ++#: wp-admin/options-writing.php:17 ++msgid "Size of the post box" ++msgstr "Ukuran kotak tulisan" ++ ++#: wp-admin/options-writing.php:19 ++msgid "lines" ++msgstr "baris" ++ ++#: wp-admin/options-writing.php:22 ++msgid "Formatting" ++msgstr "Pemformatan" ++ ++#: wp-admin/options-writing.php:26 ++msgid "Convert emoticons like :-) and :-P to graphics on display" ++msgstr "Konversikan emoticon seperti :-) and :-P ke grafis pada tampilan" ++ ++#: wp-admin/options-writing.php:27 ++msgid "WordPress should correct invalidly nested XHTML automatically" ++msgstr "WordPress harus membetulkan XHTML yang peletakannya tidak valid secara otomatis" ++ ++#: wp-admin/options-writing.php:31 ++msgid "Default Post Category" ++msgstr "Kategori Tulisan Standar" ++ ++#: wp-admin/options-writing.php:45 ++msgid "Default Link Category" ++msgstr "Kategori Taut Standar" ++ ++#: wp-admin/options-writing.php:60 ++msgid "Post via e-mail" ++msgstr "Mengirim tulisan via e-mail" ++ ++#: wp-admin/options-writing.php:61 ++#, php-format ++msgid "To post to WordPress by e-mail you must set up a secret e-mail account with POP3 access. Any mail received at this address will be posted, so it’s a good idea to keep this address very secret. Here are three random strings you could use: %s, %s, %s." ++msgstr "Untuk mengirim tulisan ke WordPress melalui e-mail Anda harus membuat akun e-mail rahasia dengan akses POP3. Seluruh surat yang diterima pada alamat ini akan diterbitkan, jadi ide yang baik untuk menyimpan alamat ini sangat rahasia. Berikut tiga string random yang dapat Anda gunakan: %s, %s, %s." ++ ++#: wp-admin/options-writing.php:65 ++msgid "Mail Server" ++msgstr "Server Mail" ++ ++#: wp-admin/options-writing.php:67 ++msgid "Port" ++msgstr "Port" ++ ++#: wp-admin/options-writing.php:72 ++msgid "Login Name" ++msgstr "Nama log" ++ ++#: wp-admin/options-writing.php:82 ++msgid "Default Mail Category" ++msgstr "Kategori Surat Standar" ++ ++#: wp-admin/options-writing.php:97 ++msgid "Update Services" ++msgstr "Perbarui Layanan" ++ ++#: wp-admin/options-writing.php:101 ++msgid "When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see Update Services on the Codex. Separate multiple service URLs with line breaks." ++msgstr "Ketika Anda mempublikasikan tulisan baru, WordPress secara otomatis memberitahu layanan update situs berikut. Untuk lebih lanjut mengenai ini, lihat Update Services pada Codex. Pisahkan URL beberapa layanan dengan ganti baris." ++ ++#: wp-admin/options-writing.php:107 ++#, php-format ++msgid "WordPress is not notifying any Update Services because of your blog's privacy settings." ++msgstr "WordPress tidak menemukan Layanan-Layanan Update karena settingan privasi blog Anda." ++ ++#: wp-admin/page-new.php:3 ++msgid "New Page" ++msgstr "Halaman Baru" ++ ++#: wp-admin/page-new.php:17 ++msgid "Page saved." ++msgstr "Halaman disimpan." ++ ++#: wp-admin/page-new.php:17 ++msgid "Manage pages" ++msgstr "Kelola halaman" ++ ++#: wp-admin/page.php:71 ++msgid "You attempted to edit a page that doesn't exist. Perhaps it was deleted?" ++msgstr "Anda mencoba menyunting halaman yang tidak ada. Mungkin telah terhapus?" ++ ++#: wp-admin/page.php:86 ++#, php-format ++msgid "Warning: %s is currently editing this page" ++msgstr "Peringatan: %s saat ini sedang menyunting halaman ini" ++ ++#: wp-admin/plugin-editor.php:4 ++msgid "Edit Plugins" ++msgstr "Sunting Plugin" ++ ++#: wp-admin/plugin-editor.php:30 ++#: wp-admin/theme-editor.php:44 ++msgid "You do not have sufficient permissions to edit templates for this blog." ++msgstr "Anda tidak punya cukup izin untuk menyunting template untuk blog ini." ++ ++#: wp-admin/plugin-editor.php:56 ++msgid "You do not have sufficient permissions to edit plugins for this blog." ++msgstr "Anda tidak punya cukup izin untuk menyunting plugin untuk blog ini." ++ ++#: wp-admin/plugin-editor.php:84 ++#: wp-admin/theme-editor.php:85 ++msgid "File edited successfully." ++msgstr "Berkas berhasil disunting." ++ ++#: wp-admin/plugin-editor.php:86 ++msgid "This plugin has been deactivated because your changes resulted in a fatal error." ++msgstr "Plugin ini telah dinonaktifkan karena " ++ ++#: wp-admin/plugin-editor.php:102 ++#, php-format ++msgid "Editing %s (active)" ++msgstr "Menyunting %s (aktif)" ++ ++#: wp-admin/plugin-editor.php:104 ++#, php-format ++msgid "Browsing %s (active)" ++msgstr "Merambah %s (aktif)" ++ ++#: wp-admin/plugin-editor.php:107 ++#, php-format ++msgid "Editing %s (inactive)" ++msgstr "Menyunting %s (nonaktif)" ++ ++#: wp-admin/plugin-editor.php:109 ++#, php-format ++msgid "Browsing %s (inactive)" ++msgstr "Merambah %s (nonaktif)" ++ ++#: wp-admin/plugin-editor.php:117 ++msgid "Plugin Files" ++msgstr "Berkas Plugin" ++ ++#: wp-admin/plugin-editor.php:135 ++msgid "Warning: Making changes to active plugins is not recommended. If your changes cause a fatal error, the plugin will be automatically deactivated." ++msgstr "Peringatan: Melakukan perubahan pada plugin yang sedang aktif tidak disarankan. Jika perubahan Anda mengakibatkan kesalahan fatal, plugin tersebut akan secara otomatis dinonaktifkan." ++ ++#: wp-admin/plugin-editor.php:140 ++msgid "Update File and Attempt to Reactivate" ++msgstr "Mutakhirkan Berkas dan Coba untuk Mengaktivasi Ulang" ++ ++#: wp-admin/plugin-editor.php:142 ++#: wp-admin/theme-editor.php:162 ++msgid "Update File" ++msgstr "Mutakhirkan Berkas" ++ ++#: wp-admin/plugin-editor.php:146 ++#: wp-admin/theme-editor.php:166 ++msgid "You need to make this file writable before you can save your changes. See the Codex for more information." ++msgstr "Anda perlu membuat berkas ini dapat ditulis sebelum Anda dapat menyimpan perubahan Anda. Lihat Codex untuk informasi lebih lanjut." ++ ++#: wp-admin/plugin-editor.php:151 ++#: wp-admin/theme-editor.php:172 ++msgid "Oops, no such file exists! Double check the name and try again, merci." ++msgstr "Oops, berkas seperti itu tidak ada! Periksa ulang namanya dan coba lagi." ++ ++#: wp-admin/plugins.php:39 ++msgid "Manage Plugins" ++msgstr "Kelola Plugin" ++ ++#: wp-admin/plugins.php:47 ++msgid "Plugin could not be activated because it triggered a fatal error." ++msgstr "Plugin tidak dapat diaktifkan karena terpicu kesalahan fatal" ++ ++#: wp-admin/plugins.php:57 ++msgid "Some plugins could not be reactivated because they triggered a fatal error." ++msgstr "Sebagian plugin tidak dapat diaktifkan ulang karena mereka memicu sebuah galat yang fatal." ++ ++#: wp-admin/plugins.php:59 ++msgid "Plugin activated." ++msgstr "Plugin diaktifkan." ++ ++#: wp-admin/plugins.php:61 ++msgid "Plugin deactivated." ++msgstr "Plugin dinonaktifkan." ++ ++#: wp-admin/plugins.php:63 ++msgid "All plugins deactivated." ++msgstr "Seluruh plugin dinonaktifkan." ++ ++#: wp-admin/plugins.php:65 ++msgid "Plugins reactivated." ++msgstr "Plugin telah diaktifkan ulang." ++ ++#: wp-admin/plugins.php:69 ++msgid "Plugin Management" ++msgstr "Pengelolaan Plugin" ++ ++#: wp-admin/plugins.php:70 ++msgid "Plugins extend and expand the functionality of WordPress. Once a plugin is installed, you may activate it or deactivate it here." ++msgstr "Plugin memperluas fungsionalitas dari WordPress. Setelah sebuah plugin terinstal, Anda bisa mengaktifkan atau menonaktifkannya di sini." ++ ++#: wp-admin/plugins.php:77 ++msgid "Couldn’t open plugins directory or there are no plugins available." ++msgstr "Tidak dapat membuka direktori plugin atau tidak ada plugin tersedia." ++ ++#: wp-admin/plugins.php:89 ++msgid "Deactivate All Plugins" ++msgstr "Nonaktifkan Seluruh Plugin" ++ ++#: wp-admin/plugins.php:93 ++msgid "Reactivate Plugins" ++msgstr "Aktifkan Ulang Plugin" ++ ++#: wp-admin/plugins.php:106 ++#: wp-includes/js/tinymce/langs/wp-langs.php:242 ++msgid "Plugin" ++msgstr "Plugin" ++ ++#: wp-admin/plugins.php:107 ++#: wp-includes/js/tinymce/langs/wp-langs.php:244 ++msgid "Version" ++msgstr "Versi" ++ ++#: wp-admin/plugins.php:121 ++msgid "Deactivate this plugin" ++msgstr "Nonaktifkan plugin ini" ++ ++#: wp-admin/plugins.php:121 ++msgid "Deactivate" ++msgstr "Nonaktifkan" ++ ++#: wp-admin/plugins.php:124 ++msgid "Activate this plugin" ++msgstr "Aktifkan plugin ini" ++ ++#: wp-admin/plugins.php:124 ++msgid "Activate" ++msgstr "Aktifkan" ++ ++#: wp-admin/plugins.php:127 ++msgid "Open this file in the Plugin Editor" ++msgstr "Buka berkas ini dalam Penyunting Plugin" ++ ++#: wp-admin/plugins.php:136 ++#, php-format ++msgid "By %s" ++msgstr "Oleh %s" ++ ++#: wp-admin/plugins.php:150 ++msgid "Active" ++msgstr "Aktif" ++ ++#: wp-admin/plugins.php:152 ++msgid "Inactive" ++msgstr "Nonaktif" ++ ++#: wp-admin/plugins.php:169 ++#, php-format ++msgid "If something goes wrong with a plugin and you can’t use WordPress, delete or rename that file in the %s directory and it will be automatically deactivated." ++msgstr "Jika ada yang salah dengan sebuah plugin dan Anda tidak dapat menggunakan WordPress, hapus atau ganti nama berkas tersebut dalam direktori %s dan ia akan secara otomatis dinonaktifkan." ++ ++#: wp-admin/plugins.php:171 ++msgid "Get More Plugins" ++msgstr "Dapatkan Plugin Lainnya" ++ ++#: wp-admin/plugins.php:172 ++msgid "You can find additional plugins for your site in the WordPress plugin directory." ++msgstr "Anda dapat menemukan plugin-plugin tambahan untuk situs Anda di direktori plugin WordPress." ++ ++#: wp-admin/plugins.php:173 ++#, php-format ++msgid "To install a plugin you generally just need to upload the plugin file into your %s directory. Once a plugin is uploaded, you may activate it here." ++msgstr "Untuk menginstal sebuah plugin umumnya Anda hanya perlu mengunggah berkas plugin tersebut ke direktori %s Anda. Setelah sebuah plugin diunggah, Anda dapat mengaktifkannya di sini." ++ ++#: wp-admin/post-new.php:3 ++msgid "Create New Post" ++msgstr "Buat Tulisan Baru" ++ ++#: wp-admin/post-new.php:17 ++#, php-format ++msgid "" ++"Since you’re a newcomer, you’ll have to wait for an admin to add the edit_posts capability to your user, in order to be authorized to post.
    \n" ++"You can also e-mail the admin to ask for a promotion.
    \n" ++"When you’re promoted, just reload this page and you’ll be able to blog. :)" ++msgstr "" ++"Karena Anda pendatang baru, Anda harus menunggu seorang admin menambahkan kemampuan edit_posts ke pengguna Anda, agar diberi wewenang untuk melakukan pengiriman tulisan.
    \n" ++"Anda juga dapat mengirim email ke admin untuk memohon promosi.
    \n" ++"Ketika Anda sudah dipromosikan, cukup muat ulang halaman ini dan Anda sudah dapat ngeblog. :)" ++ ++#: wp-admin/post.php:78 ++msgid "You attempted to edit a post that doesn't exist. Perhaps it was deleted?" ++msgstr "Anda mencoba menyunting tulisan yang tidak ada. Mungkin telah terhapus?" ++ ++#: wp-admin/post.php:93 ++#, php-format ++msgid "Warning: %s is currently editing this post" ++msgstr "Perhatian: %s saat ini sedang menyunting tulisan ini" ++ ++#: wp-admin/sidebar.php:15 ++msgid "WordPress › Posted" ++msgstr "WordPress › Terkirim" ++ ++#: wp-admin/sidebar.php:22 ++msgid "Posted !" ++msgstr "Terkirim!" ++ ++#: wp-admin/sidebar.php:23 ++#, php-format ++msgid "Click here to post again." ++msgstr "Klik di sini untuk mengirimkan lagi." ++ ++#: wp-admin/sidebar.php:33 ++msgid "WordPress › Sidebar" ++msgstr "WordPress › Kolom Sisi" ++ ++#: wp-admin/sidebar.php:63 ++#: wp-content/plugins/akismet/akismet.php:807 ++#: wp-includes/widgets.php:410 ++#: wp-includes/widgets.php:492 ++#: wp-includes/widgets.php:531 ++#: wp-includes/widgets.php:559 ++#: wp-includes/widgets.php:779 ++#: wp-includes/widgets.php:916 ++#: wp-includes/widgets.php:975 ++#: wp-includes/widgets.php:1349 ++msgid "Title:" ++msgstr "Judul:" ++ ++#: wp-admin/sidebar.php:66 ++#: wp-content/themes/classic/sidebar.php:10 ++msgid "Categories:" ++msgstr "Kategori:" ++ ++#: wp-admin/theme-editor.php:4 ++msgid "Edit Themes" ++msgstr "Sunting Tema" ++ ++#: wp-admin/theme-editor.php:24 ++msgid "The requested theme does not exist." ++msgstr "Tema yang diminta tidak ada." ++ ++#: wp-admin/theme-editor.php:68 ++msgid "You do not have sufficient permissions to edit themes for this blog." ++msgstr "Anda tidak punya cukup izin untuk menyunting tema blog ini." ++ ++#: wp-admin/theme-editor.php:95 ++msgid "Select theme to edit:" ++msgstr "Pilih tema untuk disunting:" ++ ++#: wp-admin/theme-editor.php:107 ++msgid "Select" ++msgstr "Pilih" ++ ++#: wp-admin/theme-editor.php:118 ++msgid "Theme Files" ++msgstr "Berkas-Berkas Tema" ++ ++#: wp-admin/theme-editor.php:123 ++msgid "Templates" ++msgstr "Templat" ++ ++#: wp-admin/theme-editor.php:134 ++msgid "Styles|Theme stylesheets in theme editor" ++msgstr "Style" ++ ++#: wp-admin/themes.php:14 ++msgid "Manage Themes" ++msgstr "Kelola Tema" ++ ++#: wp-admin/themes.php:20 ++msgid "The active theme is broken. Reverting to the default theme." ++msgstr "Tema aktif rusak. Mengembalikan ke tema standar." ++ ++#: wp-admin/themes.php:22 ++#, php-format ++msgid "New theme activated. Visit site" ++msgstr "Telah mengaktifkan tema baru. Lihat situs" ++ ++#: wp-admin/themes.php:31 ++msgid "Current Theme" ++msgstr "Tema Saat Ini" ++ ++#: wp-admin/themes.php:34 ++msgid "Current theme preview" ++msgstr "Preview tema saat ini" ++ ++#: wp-admin/themes.php:36 ++#, php-format ++msgid "%1$s %2$s by %3$s|1: theme title, 2: theme version, 3: theme author" ++msgstr "%1$s %2$s by %3$s" ++ ++#: wp-admin/themes.php:39 ++#, php-format ++msgid "The template files are located in %2$s. The stylesheet files are located in %3$s. %4$s uses templates from %5$s. Changes made to the templates will affect both themes." ++msgstr "Berkas templat terletak di dalam %2$s. Berkas stylesheet terletak di dalam %3$s. %4$s menggunakan templat dari %5$s. Perubahan yang dilakukan terhadap templat tersebut akan mempengaruhi kedua tema." ++ ++#: wp-admin/themes.php:41 ++#, php-format ++msgid "All of this theme’s files are located in %2$s." ++msgstr "Seluruh berkas tema ini terletak di %2$s." ++ ++#: wp-admin/themes.php:44 ++#: wp-admin/themes.php:82 ++msgid "Tags:" ++msgstr "Tag:" ++ ++#: wp-admin/themes.php:48 ++msgid "Available Themes" ++msgstr "Tema yang Tersedia" ++ ++#: wp-admin/themes.php:95 ++msgid "Broken Themes" ++msgstr "Tema yang Rusak" ++ ++#: wp-admin/themes.php:96 ++msgid "The following themes are installed but incomplete. Themes must have a stylesheet and a template." ++msgstr "Tema-tema berikut terinstal tapi tidak lengkap. Tema harus punya sebuah stylesheet dan sebuah template." ++ ++#: wp-admin/themes.php:126 ++msgid "Get More Themes" ++msgstr "Dapatkan Lebih banyak Tema" ++ ++#: wp-admin/themes.php:127 ++msgid "You can find additional themes for your site in the WordPress theme directory. To install a theme you generally just need to upload the theme folder into your wp-content/themes directory. Once a theme is uploaded, you should see it on this page." ++msgstr "Anda dapat menemukan tema-tema tambahan untuk situs Anda di direktori tema WordPress. Untuk menginstal sebuah tema secara umum Anda hanya perlu mengunggah folder tema ke dalam direktori wp-content/themes Anda. Setelah sebuah tema diunggah, Anda dapat melihatnya di halaman ini." ++ ++#: wp-admin/update-links.php:6 ++msgid "Feature disabled." ++msgstr "Fitur dimatikan" ++ ++#: wp-admin/update-links.php:11 ++msgid "No links" ++msgstr "Tidak ada taut" ++ ++#: wp-admin/update.php:6 ++msgid "You do not have sufficient permissions to update plugins for this blog." ++msgstr "Anda tidak memiliki cukup " ++ ++#: wp-admin/update.php:40 ++msgid "Error: There was an error connecting to the server, Please verify the settings are correct." ++msgstr "Galat: Ada kesalahan ketika menghubungi server. Silakan verifikasikan bahwa penataannya telah benar." ++ ++#: wp-admin/update.php:44 ++msgid "FTP Connection Information" ++msgstr "Informasi Sambungan FTP" ++ ++#: wp-admin/update.php:45 ++msgid "To perform the requested update, FTP connection information is required." ++msgstr "Untuk menjalankan pemutakhiran, diperlukan informasi sambungan FTP." ++ ++#: wp-admin/update.php:48 ++msgid "Hostname:" ++msgstr "Nama Host:" ++ ++#: wp-admin/update.php:52 ++msgid "Username:" ++msgstr "Nama Pengguna:" ++ ++#: wp-admin/update.php:56 ++#: wp-includes/post-template.php:527 ++msgid "Password:" ++msgstr "Kata Sandi:" ++ ++#: wp-admin/update.php:57 ++msgid "(Password not shown)" ++msgstr "(Kata sandi tidak ditampilkan)" ++ ++#: wp-admin/update.php:60 ++msgid "Use SSL:" ++msgstr "Gunakan SSL:" ++ ++#: wp-admin/update.php:74 ++msgid "Proceed" ++msgstr "Lanjutkan" ++ ++#: wp-admin/update.php:105 ++#: wp-admin/update.php:135 ++msgid "Upgrade Plugin" ++msgstr "Mutakhirkan Plugin" ++ ++#: wp-admin/update.php:121 ++msgid "Plugin upgraded successfully" ++msgstr "Plugin berhasil dimutakhirkan" ++ ++#: wp-admin/update.php:123 ++msgid "Attempting reactivation of the plugin" ++msgstr "Mencoba mengaktifkan ulang plugin" ++ ++#: wp-admin/update.php:152 ++msgid "Plugin Reactivation" ++msgstr "Pengaktifan Ulang Plugin" ++ ++#: wp-admin/update.php:161 ++msgid "Plugin reactivated successfully." ++msgstr "Plugin berhasil diaktifkan ulang." ++ ++#: wp-admin/update.php:164 ++msgid "Plugin failed to reactivate due to a fatal error." ++msgstr "Plugin gagal u" ++ ++#: wp-admin/upgrade.php:20 ++msgid "WordPress › Upgrade" ++msgstr "Upgrade WordPress ›" ++ ++#: wp-admin/upgrade.php:28 ++msgid "No Upgrade Required" ++msgstr "Tidak Memerlukan Upgrade" ++ ++#: wp-admin/upgrade.php:29 ++msgid "Your WordPress database is already up-to-date!" ++msgstr "Basis data WordPress Anda telah up-to-date!" ++ ++#: wp-admin/upgrade.php:39 ++msgid "Database Upgrade Required" ++msgstr "Upgrade Database Diperlukan" ++ ++#: wp-admin/upgrade.php:40 ++msgid "Your WordPress database is out-of-date, and must be upgraded before you can continue." ++msgstr "Database WordPress Anda telah out-of-date, dan harus diupgrade sebelum Anda dapat melanjutkan." ++ ++#: wp-admin/upgrade.php:41 ++msgid "The upgrade process may take a while, so please be patient." ++msgstr "Proses upgrade akan memakan waktu, jadi mohon sabar." ++ ++#: wp-admin/upgrade.php:42 ++msgid "Upgrade WordPress" ++msgstr "Mutakhirkan WordPress" ++ ++#: wp-admin/upgrade.php:55 ++msgid "Upgrade Complete" ++msgstr "Upgrade Selesai" ++ ++#: wp-admin/upgrade.php:56 ++msgid "Your WordPress database has been successfully upgraded!" ++msgstr "Database WordPress Anda telah berhasil diupgrade!" ++ ++#: wp-admin/upgrade.php:61 ++#, php-format ++msgid "%s queries" ++msgstr "%s query" ++ ++#: wp-admin/upgrade.php:63 ++#, php-format ++msgid "%s seconds" ++msgstr "%s detik" ++ ++#: wp-admin/upload.php:59 ++msgid "Manage Media|manage media header" ++msgstr "Kelola Media" ++ ++#: wp-admin/upload.php:114 ++msgid "Your media has been saved." ++msgstr "Media Anda telah disimpan." ++ ++#: wp-admin/upload.php:114 ++msgid "View media" ++msgstr "Lihat media" ++ ++#: wp-admin/upload.php:114 ++msgid "Edit media" ++msgstr "Sunting media" ++ ++#: wp-admin/upload.php:118 ++msgid "Media updated." ++msgstr "Media diperbarui." ++ ++#: wp-admin/upload.php:119 ++msgid "Media deleted." ++msgstr "Media dihapus." ++ ++#: wp-admin/user-edit.php:63 ++#: wp-admin/user-edit.php:142 ++msgid "Edit User" ++msgstr "Sunting Pengguna" ++ ++#: wp-admin/user-edit.php:81 ++msgid "Invalid user ID." ++msgstr "ID pengguna tidak valid." ++ ++#: wp-admin/user-edit.php:98 ++#: wp-admin/user-edit.php:117 ++msgid "You do not have permission to edit this user." ++msgstr "Anda tidak punya izin untuk menyunting pengguna ini." ++ ++#: wp-admin/user-edit.php:124 ++msgid "User updated." ++msgstr "Pengguna diperbarui." ++ ++#: wp-admin/user-edit.php:126 ++msgid "« Back to Authors and Users" ++msgstr "« Kembali ke Penulis dan Pengguna" ++ ++#: wp-admin/user-edit.php:142 ++msgid "Your Profile and Personal Options" ++msgstr "Profil Anda dan Opsi-Opsi Pribadi" ++ ++#: wp-admin/user-edit.php:154 ++msgid "Personal Options" ++msgstr "Opsi Personal" ++ ++#: wp-admin/user-edit.php:159 ++msgid "Visual Editor" ++msgstr "Penyunting Visual" ++ ++#: wp-admin/user-edit.php:160 ++msgid "Use the visual editor when writing" ++msgstr "Gunakan penyunting visual ketika menulis" ++ ++#: wp-admin/user-edit.php:164 ++msgid "Admin Color Scheme" ++msgstr "Skema Warna Admin" ++ ++#: wp-admin/user-edit.php:199 ++msgid "Your username cannot be changed" ++msgstr "Nama pengguna Anda tidak dapat diubah" ++ ++#: wp-admin/user-edit.php:203 ++msgid "Role:" ++msgstr "Peran:" ++ ++#: wp-admin/user-edit.php:220 ++#: wp-admin/user-edit.php:222 ++msgid "— No role for this blog —" ++msgstr "— Tidak ada peran untuk blog ini —" ++ ++#: wp-admin/user-edit.php:228 ++msgid "First name" ++msgstr "Nama depan" ++ ++#: wp-admin/user-edit.php:233 ++msgid "Last name" ++msgstr "Nama belakang" ++ ++#: wp-admin/user-edit.php:238 ++msgid "Nickname" ++msgstr "Nama panggilan" ++ ++#: wp-admin/user-edit.php:243 ++msgid "Display name publicly as" ++msgstr "Tampilkan nama secara umum sebagai" ++ ++#: wp-admin/user-edit.php:266 ++msgid "Contact Info" ++msgstr "Info Kontak" ++ ++#: wp-admin/user-edit.php:271 ++msgid "Required" ++msgstr "Wajib" ++ ++#: wp-admin/user-edit.php:275 ++#: wp-admin/users.php:421 ++#: wp-content/themes/classic/comments.php:57 ++msgid "Website" ++msgstr "Situs web" ++ ++#: wp-admin/user-edit.php:280 ++msgid "AIM" ++msgstr "AIM" ++ ++#: wp-admin/user-edit.php:285 ++msgid "Yahoo IM" ++msgstr "Yahoo IM" ++ ++#: wp-admin/user-edit.php:290 ++msgid "Jabber / Google Talk" ++msgstr "Jabber / Google Talk" ++ ++#: wp-admin/user-edit.php:295 ++msgid "About Yourself" ++msgstr "Tentang Diri Anda" ++ ++#: wp-admin/user-edit.php:295 ++msgid "About the user" ++msgstr "Tentang pengguna" ++ ++#: wp-admin/user-edit.php:299 ++msgid "Biographical Info" ++msgstr "Info Biografi" ++ ++#: wp-admin/user-edit.php:300 ++msgid "Share a little biographical information to fill out your profile. This may be shown publicly." ++msgstr "Bagi sedikit informasi biografi untuk mengisi profil Anda. Ini akan ditampilkan kepada publik." ++ ++#: wp-admin/user-edit.php:308 ++msgid "New Password:" ++msgstr "Kata Sandi Baru:" ++ ++#: wp-admin/user-edit.php:309 ++msgid "If you would like to change the password type a new one. Otherwise leave this blank." ++msgstr "Jika Anda ingin mengubah kata sandi, ketikkan yang baru. Jika tidak, biarkan ini kosong." ++ ++#: wp-admin/user-edit.php:310 ++msgid "Type your new password again." ++msgstr "Ketikkan kata sandi baru Anda lagi." ++ ++#: wp-admin/user-edit.php:312 ++msgid "Password Strength:" ++msgstr "Kekuatan Kata Sandi:" ++ ++#: wp-admin/user-edit.php:313 ++#: wp-includes/script-loader.php:124 ++msgid "Too short" ++msgstr "Terlalu pendek" ++ ++#: wp-admin/user-edit.php:313 ++msgid "Hint: Use upper and lower case characters, numbers and symbols like !\"?$%^&( in your password." ++msgstr "Petunjuk: Gunakan huruf besar dan kecil, angka serta simbol seperti !\"?$%^&( dalam kata sandi Anda." ++ ++#: wp-admin/user-edit.php:332 ++msgid "Additional Capabilities:" ++msgstr "Kemampuan Tambahan:" ++ ++#: wp-admin/user-edit.php:350 ++msgid "Update Profile" ++msgstr "Perbarui Profil" ++ ++#: wp-admin/user-edit.php:350 ++msgid "Update User" ++msgstr "Perbarui Pengguna" ++ ++#: wp-admin/users.php:41 ++msgid "You can’t edit users." ++msgstr "Anda tidak dapat menyunting pengguna." ++ ++#: wp-admin/users.php:47 ++msgid "You can’t edit that user." ++msgstr "Anda tidak dapat menyunting pengguna itu." ++ ++#: wp-admin/users.php:73 ++#: wp-admin/users.php:114 ++msgid "You can’t delete users." ++msgstr "Anda tidak dapat menghapus pengguna." ++ ++#: wp-admin/users.php:81 ++msgid "You can’t delete that user." ++msgstr "Anda tidak dapat menghapus pengguna itu." ++ ++#: wp-admin/users.php:125 ++msgid "Delete Users" ++msgstr "Hapus Pengguna" ++ ++#: wp-admin/users.php:126 ++msgid "You have specified these users for deletion:" ++msgstr "Anda telah menentukan pengguna-pengguna berikut untuk penghapusan:" ++ ++#: wp-admin/users.php:133 ++#, php-format ++msgid "ID #%1s: %2s The current user will not be deleted." ++msgstr "ID #%1s: %2s Pengguna ini tidak akan dihapus." ++ ++#: wp-admin/users.php:135 ++#, php-format ++msgid "ID #%1s: %2s" ++msgstr "ID #%1s: %2s" ++ ++#: wp-admin/users.php:148 ++msgid "What should be done with posts and links owned by this user?" ++msgstr "Apa yang harus dilakukan dengan tulisan dan taut milik pengguna ini?" ++ ++#: wp-admin/users.php:151 ++msgid "Delete all posts and links." ++msgstr "Hapus seluruh tulisan dan taut" ++ ++#: wp-admin/users.php:153 ++msgid "Attribute all posts and links to:" ++msgstr "Atributkan seluruh tulisan dan taut ke:" ++ ++#: wp-admin/users.php:156 ++msgid "Confirm Deletion" ++msgstr "Konfirmasi Penghapusan" ++ ++#: wp-admin/users.php:158 ++msgid "There are no valid users selected for deletion." ++msgstr "Tidak ada pengguna valid yang dipilih untuk penghapusan" ++ ++#: wp-admin/users.php:170 ++msgid "You can’t create users." ++msgstr "Anda tidak dapat membuat pengguna." ++ ++#: wp-admin/users.php:204 ++#, php-format ++msgid "%s user deleted" ++msgid_plural "%s users deleted" ++msgstr[0] "%s pengguna dihapus" ++msgstr[1] "%s pengguna dihapus" ++ ++#: wp-admin/users.php:209 ++msgid "New user created." ++msgstr "Pengguna baru telah dibuat." ++ ++#: wp-admin/users.php:214 ++msgid "Changed roles." ++msgstr "Telah mengubah peran." ++ ++#: wp-admin/users.php:219 ++msgid "The current user's role must have user editing capabilities." ++msgstr "Peran pengguna ini harus memiliki kemampuan penyuntingan pengguna." ++ ++#: wp-admin/users.php:220 ++msgid "Other user roles have been changed." ++msgstr "Peran pengguna lain telah diubah." ++ ++#: wp-admin/users.php:225 ++msgid "You can't delete the current user." ++msgstr "Anda tidak dapat menghapus pengguna ini." ++ ++#: wp-admin/users.php:226 ++msgid "Other users have been deleted." ++msgstr "Pengguna lain telah dihapus." ++ ++#: wp-admin/users.php:246 ++#, php-format ++msgid "Users Matching \"%s\"" ++msgstr "Pengguna yang Cocok dengan \"%s\"" ++ ++#: wp-admin/users.php:248 ++msgid "Manage Users" ++msgstr "Kelola Pengguna" ++ ++#: wp-admin/users.php:269 ++msgid "All Users" ++msgstr "Seluruh Pengguna" ++ ++#: wp-admin/users.php:282 ++#, php-format ++msgid "%1$s (%2$s)|user role with count" ++msgstr "%1$s (%2$s)" ++ ++#: wp-admin/users.php:291 ++msgid "Search Users" ++msgstr "Cari Pengguna" ++ ++#: wp-admin/users.php:302 ++msgid "Change role to…" ++msgstr "Ubah peran menjadi…" ++ ++#: wp-admin/users.php:327 ++msgid "« Back to All Users" ++msgstr "« Kembali ke Semua Pengguna" ++ ++#: wp-admin/users.php:337 ++#: wp-admin/users.php:435 ++msgid "Role" ++msgstr "Peran" ++ ++#: wp-admin/users.php:383 ++msgid "Add New User" ++msgstr "Tambah Pengguna Baru" ++ ++#: wp-admin/users.php:397 ++#, php-format ++msgid "Users can register themselves or you can manually create users here." ++msgstr "Pengguna dapat mendaftarkan diri atau Anda dapat secara manual membuat pengguna-pengguna di sini." ++ ++#: wp-admin/users.php:399 ++#, php-format ++msgid "Users cannot currently register themselves, but you can manually create users here." ++msgstr "Pengguna saat ini tidak dapat mendaftarkan diri, namun Anda dapat secara manual menciptakan pengguna di sini." ++ ++#: wp-admin/users.php:405 ++msgid "Username (required)" ++msgstr "Nama Pengguna (wajib)" ++ ++#: wp-admin/users.php:409 ++msgid "First Name" ++msgstr "Nama Depan" ++ ++#: wp-admin/users.php:413 ++msgid "Last Name" ++msgstr "Nama Belakang" ++ ++#: wp-admin/users.php:417 ++msgid "E-mail (required)" ++msgstr "E-mail (wajib)" ++ ++#: wp-admin/users.php:427 ++msgid "Password (twice)" ++msgstr "Kata sandi (dua kali)" ++ ++#: wp-admin/users.php:448 ++msgid "Add User" ++msgstr "Tambahkan Pengguna" ++ ++#: wp-admin/widgets.php:13 ++#: wp-admin/widgets.php:233 ++#: wp-includes/functions.php:1538 ++msgid "Widgets" ++msgstr "Widget" ++ ++#: wp-admin/widgets.php:28 ++msgid "No Sidebars Defined" ++msgstr "Tidak Ada Sidebar yang Ditentukan" ++ ++#: wp-admin/widgets.php:32 ++msgid "You are seeing this message because the theme you are currently using isn’t widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please follow these instructions." ++msgstr "Anda melihat pesan ini karena tema yang sedang Anda gunakan tidak sadar-widget. Artinya tema ini tidak memiliki sidebar yang dapat Anda ganti. Untuk informasi mengenai membuat tema Anda sadar-widget, silakan ikuti instruksi ini." ++ ++#: wp-admin/widgets.php:131 ++#: wp-admin/widgets.php:143 ++msgid "Add Widget" ++msgstr "Tambahkan Widget" ++ ++#: wp-admin/widgets.php:185 ++#, php-format ++msgid "You are using %1$s widget in the \"%2$s\" sidebar." ++msgid_plural "You are using %1$s widgets in the \"%2$s\" sidebar." ++msgstr[0] "Anda menggunakan %1$s widget di \"%2$s\" sidebar." ++msgstr[1] "Anda menggunakan %1$s widget di \"%2$s\" sidebar." ++ ++#: wp-admin/widgets.php:187 ++#, php-format ++msgid "You are using %1$s widget in the sidebar." ++msgid_plural "You are using %1$s widgets in the sidebar." ++msgstr[0] "Anda menggunakan %1$s widget di sidebar." ++msgstr[1] "Anda menggunakan %1$s widget di sidebar." ++ ++#: wp-admin/widgets.php:209 ++msgid "Show any widgets" ++msgstr "Tampilkan widget apapun" ++ ++#: wp-admin/widgets.php:209 ++msgid "Show all widgets" ++msgstr "Tampilkan seluruh widget" ++ ++#: wp-admin/widgets.php:210 ++msgid "Show unused widgets" ++msgstr "Tampilkan widget yang tak terpakai" ++ ++#: wp-admin/widgets.php:211 ++msgid "Show used widgets" ++msgstr "Tampilkan widget yang terpakai" ++ ++#: wp-admin/widgets.php:218 ++msgid "Changes saved." ++msgstr "Perubahan telah disimpan." ++ ++#: wp-admin/widgets.php:236 ++msgid "Search Widgets" ++msgstr "Cari Widget" ++ ++#: wp-admin/widgets.php:241 ++msgid "Available Widgets" ++msgstr "Widget yang Tersedia" ++ ++#: wp-admin/widgets.php:257 ++msgid "Current Widgets" ++msgstr "Widget Saat Ini" ++ ++#: wp-admin/widgets.php:292 ++msgid "Add more from the Available Widgets section." ++msgstr "Tambahkan lebih banyak lagi dari bagian Widget yang Tersedia." ++ ++#: wp-app.php:168 ++#: wp-app.php:203 ++msgid "Sorry, you do not have the right to access this blog." ++msgstr "Maaf, Anda tidak punya hak untuk mengakses blog ini." ++ ++#: wp-app.php:256 ++msgid "Sorry, you do not have the right to edit/publish new posts." ++msgstr "Maaf, Anda tidak memiliki hak untuk menyunting/menerbitkan tulisan baru." ++ ++#: wp-app.php:281 ++#: wp-app.php:448 ++#: wp-app.php:599 ++#: xmlrpc.php:1018 ++#: xmlrpc.php:1338 ++msgid "Sorry, your entry could not be posted. Something wrong happened." ++msgstr "Maaf, entri Anda tidak dapat dikirim. Terjadi suatu kesalahan." ++ ++#: wp-app.php:299 ++msgid "Sorry, you do not have the right to access this post." ++msgstr "Maaf, Anda tidak punya hak untuk mengakses tulisan ini." ++ ++#: wp-app.php:327 ++#: wp-app.php:473 ++#: wp-app.php:535 ++#: wp-app.php:570 ++#: xmlrpc.php:1054 ++msgid "Sorry, you do not have the right to edit this post." ++msgstr "Anda tidak punya hak untuk menyunting tulisan ini." ++ ++#: wp-app.php:356 ++#: wp-app.php:489 ++#: xmlrpc.php:1070 ++msgid "For some strange yet very annoying reason, this post could not be edited." ++msgstr "Untuk beberapa alasan yang aneh lagi amat mengganggu, tulisan ini tidak dapat disunting." ++ ++#: wp-app.php:370 ++#: wp-app.php:504 ++#: xmlrpc.php:1101 ++msgid "Sorry, you do not have the right to delete this post." ++msgstr "Maaf, Anda tidak memiliki hak untuk menghapus tulisan ini." ++ ++#: wp-app.php:379 ++#: wp-app.php:520 ++#: xmlrpc.php:1106 ++msgid "For some strange yet very annoying reason, this post could not be deleted." ++msgstr "Untuk beberapa alasan yang aneh lagi amat mengganggu, tulisan ini tidak dapat dihapus." ++ ++#: wp-app.php:390 ++msgid "Sorry, you do not have permission to upload files." ++msgstr "Maaf, Anda tidak memiliki izin untuk mengunggah berkas." ++ ++#: wp-app.php:511 ++#: wp-app.php:542 ++#: wp-app.php:577 ++msgid "Error ocurred while accessing post metadata for file location." ++msgstr "Terjadi kesalahan ketika mengakses metadata tulisan untuk lokasi berkas." ++ ++#: wp-comments-post.php:21 ++msgid "Sorry, comments are closed for this item." ++msgstr "Maaf, komentar ditutup untuk item ini." ++ ++#: wp-comments-post.php:46 ++msgid "Sorry, you must be logged in to post a comment." ++msgstr "Maaf, Anda harus masuk log untuk mengirim komentar." ++ ++#: wp-comments-post.php:53 ++msgid "Error: please fill the required fields (name, email)." ++msgstr "Galat: mohon isi ruas yang wajib (nama, email)." ++ ++#: wp-comments-post.php:55 ++msgid "Error: please enter a valid email address." ++msgstr "Galat: silakan masukkan alamat email yang valid." ++ ++#: wp-comments-post.php:59 ++msgid "Error: please type a comment." ++msgstr "Galat: mohon ketik sebuah komentar." ++ ++#: wp-content/plugins/akismet/akismet.php:41 ++#: wp-content/plugins/akismet/akismet.php:115 ++msgid "Akismet Configuration" ++msgstr "Konfigurasi Akismet" ++ ++#: wp-content/plugins/akismet/akismet.php:102 ++msgid "Your key has been cleared." ++msgstr "Kunci Anda telah dibersihkan." ++ ++#: wp-content/plugins/akismet/akismet.php:103 ++msgid "Your key has been verified. Happy blogging!" ++msgstr "Kunci Anda telah diverifikasi. Selamat nge-blog!" ++ ++#: wp-content/plugins/akismet/akismet.php:104 ++msgid "The key you entered is invalid. Please double-check it." ++msgstr "Kunci yang Anda masukkan tidak valid. Coba periksa ulang." ++ ++#: wp-content/plugins/akismet/akismet.php:105 ++msgid "The key you entered could not be verified because a connection to akismet.com could not be established. Please check your server configuration." ++msgstr "Kunci yang Anda masukkan tidak bisa diverifikasi karena koneksi ke akismet.com tidak dapat dibangun. Mohon periksa konfigurasi server Anda." ++ ++#: wp-content/plugins/akismet/akismet.php:106 ++msgid "There was a problem connecting to the Akismet server. Please check your server configuration." ++msgstr "Ada masalah dalam menghubungi server Akismet. Mohon periksa konfigurasi server Anda." ++ ++#: wp-content/plugins/akismet/akismet.php:107 ++#, php-format ++msgid "Please enter an API key. (Get your key.)" ++msgstr "Silakan masukkan sebuah kunci API. (Dapatkan kunci API Anda.)" ++ ++#: wp-content/plugins/akismet/akismet.php:108 ++msgid "This key is valid." ++msgstr "Kunci ini valid." ++ ++#: wp-content/plugins/akismet/akismet.php:109 ++msgid "The key below was previously validated but a connection to akismet.com can not be established at this time. Please check your server configuration." ++msgstr "Kunci di bawah sebelumnya tervalidasi tetapi koneksi ke akismet tidak dapat dibangun saat ini. Mohon periksa konfigurasi server Anda." ++ ++#: wp-content/plugins/akismet/akismet.php:112 ++#: wp-content/themes/default/functions.php:357 ++msgid "Options saved." ++msgstr "Opsi disimpan." ++ ++#: wp-content/plugins/akismet/akismet.php:119 ++#, php-format ++msgid "For many people, Akismet will greatly reduce or even completely eliminate the comment and trackback spam you get on your site. If one does happen to get through, simply mark it as \"spam\" on the moderation screen and Akismet will learn from the mistakes. If you don't have a WordPress.com account yet, you can get one at WordPress.com." ++msgstr "Bagi kebanyakan orang, Akismet akan sangat menurunkan atau bahkan sepenuhnya mengeliminasi spam komentar dan lacak balik yang Anda dapat di situs Anda. Jika satu ternyata lolos, cukup tandai sebagai \"spam\" pada layar moderasi dan Akismet akan belajar dari kesalahan tersebut. Jika Anda belum punya account WordPress.com, Anda bisa mendapatkannya pada WordPress.com." ++ ++#: wp-content/plugins/akismet/akismet.php:122 ++msgid "WordPress.com API Key" ++msgstr "Kunci API WordPress.com" ++ ++#: wp-content/plugins/akismet/akismet.php:126 ++msgid "What is this?" ++msgstr "Apa ini?" ++ ++#: wp-content/plugins/akismet/akismet.php:128 ++msgid "Why might my key be invalid?" ++msgstr "Kenapa kunci saya tidak valid?" ++ ++#: wp-content/plugins/akismet/akismet.php:129 ++msgid "This can mean one of two things, either you copied the key wrong or that the plugin is unable to reach the Akismet servers, which is most often caused by an issue with your web host around firewalls or similar." ++msgstr "Ini dapat berarti satu dari dua hal, apakah Anda mengkopi kunci yang salah atau plugin tersebut tidak dapat meraih server Akismet, yang pada kebanyakan kasus disebabkan oleh masalah host web Anda seputar firewall atau hal serupa." ++ ++#: wp-content/plugins/akismet/akismet.php:132 ++msgid "Automatically discard spam comments on posts older than a month." ++msgstr "Secara otomatis menghilangkan komentar spam pada tulisan setelah lebih dari sebulan." ++ ++#: wp-content/plugins/akismet/akismet.php:133 ++msgid "Update options »" ++msgstr "Perbarui opsi »" ++ ++#: wp-content/plugins/akismet/akismet.php:154 ++msgid "Akismet is almost ready." ++msgstr "Akismet hampir siap." ++ ++#: wp-content/plugins/akismet/akismet.php:154 ++#, php-format ++msgid "You must enter your WordPress.com API key for it to work." ++msgstr "Anda harus memasukkan kunci API WordPress.com Anda agar ini bekerja." ++ ++#: wp-content/plugins/akismet/akismet.php:326 ++#, php-format ++msgid "Akismet Spam (%s)" ++msgstr "Akismet Spam (%s)" ++ ++#: wp-content/plugins/akismet/akismet.php:328 ++#: wp-content/plugins/akismet/akismet.php:330 ++msgid "Akismet Spam" ++msgstr "Akismet Spam" ++ ++#: wp-content/plugins/akismet/akismet.php:339 ++#: wp-content/plugins/akismet/akismet.php:358 ++msgid "You do not have sufficient permission to moderate comments." ++msgstr "Anda tidak punya cukup izin untuk memoderasi komentar-komentar." ++ ++#: wp-content/plugins/akismet/akismet.php:370 ++#, php-format ++msgid "%1$s comments recovered." ++msgstr "%1$s komentar dikembalikan." ++ ++#: wp-content/plugins/akismet/akismet.php:374 ++msgid "All spam deleted." ++msgstr "Seluruh spam dihapus" ++ ++#: wp-content/plugins/akismet/akismet.php:422 ++msgid "Caught Spam" ++msgstr "Menangkap Spam" ++ ++#: wp-content/plugins/akismet/akismet.php:427 ++#, php-format ++msgid "Akismet has caught %1$s spam for you since you first installed it." ++msgstr "Akismet telah menangkap %1$s spam untuk Anda sejak pertama kali Anda menginstalnya." ++ ++#: wp-content/plugins/akismet/akismet.php:434 ++msgid "You have no spam currently in the queue. Must be your lucky day. :)" ++msgstr "Anda tidak punya spam saat ini. Pasti hari keberuntungan Anda. :)" ++ ++#: wp-content/plugins/akismet/akismet.php:437 ++msgid "You can delete all of the spam from your database with a single click. This operation cannot be undone, so you may wish to check to ensure that no legitimate comments got through first. Spam is automatically deleted after 15 days, so don’t sweat it." ++msgstr "Anda dapat menghapus seluruh spam dari database Anda dengan sekali klik. Operasi ini tidak dapat dikembalikan, jadi Anda sekiranya memeriksa untuk memastikan bahwa tidak ada komentar sah yang terbawa. Spam secara otomatis dihapus setelah 15 hari, jadi jangan cemas." ++ ++#: wp-content/plugins/akismet/akismet.php:443 ++#: wp-content/plugins/akismet/akismet.php:621 ++#, php-format ++msgid "There are currently %1$s comments identified as spam." ++msgstr "Saat ini ada %1$s komentar teridentifikasi sebagai spam." ++ ++#: wp-content/plugins/akismet/akismet.php:443 ++#: wp-content/plugins/akismet/akismet.php:621 ++msgid "Delete all" ++msgstr "Hapus semua" ++ ++#: wp-content/plugins/akismet/akismet.php:450 ++#: wp-content/themes/classic/sidebar.php:16 ++#: wp-includes/widgets.php:445 ++#: wp-includes/widgets.php:1379 ++msgid "Search" ++msgstr "Cari" ++ ++#: wp-content/plugins/akismet/akismet.php:452 ++msgid "These are the latest comments identified as spam by Akismet. If you see any mistakes, simply mark the comment as \"not spam\" and Akismet will learn from the submission. If you wish to recover a comment from spam, simply select the comment, and click Not Spam. After 15 days we clean out the junk for you." ++msgstr "Berikut adalah komentar-komentar terakhir yang teridentifikasi sebagai spam oleh Akismet. Jika Anda melihat suatu kesalahan, cukup tandai komentar tersebut sebagai \"not spam\" dan Akismet akan belajar dari pengiriman ini. Jika Anda berharap " ++ ++#: wp-content/plugins/akismet/akismet.php:483 ++msgid "All" ++msgstr "Semua" ++ ++#: wp-content/plugins/akismet/akismet.php:506 ++msgid "Search Spam »" ++msgstr "Cari Spam »" ++ ++#: wp-content/plugins/akismet/akismet.php:513 ++#: wp-content/plugins/akismet/akismet.php:580 ++msgid "« Previous Page" ++msgstr "« Halaman Sebelumnya" ++ ++#: wp-content/plugins/akismet/akismet.php:534 ++#: wp-content/plugins/akismet/akismet.php:601 ++msgid "Next Page »" ++msgstr "Halaman Berikutnya »" ++ ++#: wp-content/plugins/akismet/akismet.php:556 ++msgid "IP:" ++msgstr "IP:" ++ ++#: wp-content/plugins/akismet/akismet.php:562 ++msgid "Not Spam" ++msgstr "Bukan Spam" ++ ++#: wp-content/plugins/akismet/akismet.php:568 ++msgid "View Post" ++msgstr "Lihat Tulisan" ++ ++#: wp-content/plugins/akismet/akismet.php:607 ++msgid "De-spam marked comments »" ++msgstr "De-spam komentar-komentar yang ditandai »" ++ ++#: wp-content/plugins/akismet/akismet.php:609 ++msgid "Comments you de-spam will be submitted to Akismet as mistakes so it can learn and get better." ++msgstr "Komentar yang Anda de-spam akan dikirimkan ke Akismet sebagai kesalahan sehingga dapat dipelajari dan lebih baik." ++ ++#: wp-content/plugins/akismet/akismet.php:645 ++#, php-format ++msgid "Akismet has protected your site from %3$s spam comments." ++msgstr "Akismet telah melindungi sistem Anda dari %3$s komentar spam." ++ ++#: wp-content/plugins/akismet/akismet.php:660 ++#, php-format ++msgid "Akismet has protected your site from %2$s spam comment already," ++msgid_plural "Akismet has protected your site from %2$s spam comments already," ++msgstr[0] "Akismet telah melindungi situs Anda dari %2$s komentar spam." ++msgstr[1] "Akismet telah melindungi situs Anda dari %2$s komentar spam." ++ ++#: wp-content/plugins/akismet/akismet.php:665 ++#, php-format ++msgid "Akismet blocks spam from getting to your blog," ++msgstr "Akismet memblokir spam agar tidak masuk blog Anda," ++ ++#: wp-content/plugins/akismet/akismet.php:670 ++#, php-format ++msgid "and there's %1$s comment in your spam queue right now." ++msgid_plural "and there are %1$s comments in your spam queue right now." ++msgstr[0] "dan ada %1$s komentar di dalam daftar spam Anda saat ini." ++msgstr[1] "dan ada %1$s komentar di dalam daftar spam Anda saat ini." ++ ++#: wp-content/plugins/akismet/akismet.php:675 ++#, php-format ++msgid "but there's nothing in your spam queue at the moment." ++msgstr "namun saat ini tidak ada apapun dalam antrian spam Anda." ++ ++#: wp-content/plugins/akismet/akismet.php:678 ++#, php-format ++msgid "%1$s %2$s|akismet_rightnow" ++msgstr "%1$s %2$s" ++ ++#: wp-content/plugins/akismet/akismet.php:693 ++msgid "Recheck Queue for Spam" ++msgstr "Cek Ulang Antrian untuk Spam" ++ ++#: wp-content/plugins/akismet/akismet.php:708 ++msgid "Check for Spam" ++msgstr "Periksa akan Spam" ++ ++#: wp-content/plugins/akismet/akismet.php:775 ++#, php-format ++msgid "%1$s %2$sspam comments%3$s %4$sblocked by%5$s
    %6$sAkismet%7$s" ++msgstr "%1$s %2$skomentar spam%3$s %4$sdiblok oleh%5$s
    %6$sAkismet%7$s" ++ ++#: wp-content/plugins/akismet/akismet.php:837 ++msgid "spam comments" ++msgstr "komentar spam" ++ ++#: wp-content/plugins/akismet/akismet.php:837 ++msgid "blocked by" ++msgstr "diblokir oleh" ++ ++#: wp-content/themes/classic/comments.php:2 ++msgid "Enter your password to view comments." ++msgstr "Masukkan kata sandi Anda untuk melihat komentar." ++ ++#: wp-content/themes/classic/comments.php:5 ++#: wp-includes/comment-template.php:394 ++msgid "No Comments" ++msgstr "Tidak ada Komentar" ++ ++#: wp-content/themes/classic/comments.php:5 ++#: wp-includes/comment-template.php:396 ++msgid "1 Comment" ++msgstr "1 Komentar" ++ ++#: wp-content/themes/classic/comments.php:5 ++#: wp-includes/comment-template.php:392 ++msgid "% Comments" ++msgstr "& Komentar" ++ ++#: wp-content/themes/classic/comments.php:7 ++#: wp-content/themes/classic/comments.php:36 ++#: wp-content/themes/classic/comments-popup.php:55 ++msgid "Leave a comment" ++msgstr "Tinggalkan komentar" ++ ++#: wp-content/themes/classic/comments.php:18 ++#: wp-content/themes/classic/comments-popup.php:45 ++msgid "Trackback" ++msgstr "Lacak balik" ++ ++#: wp-content/themes/classic/comments.php:18 ++#: wp-content/themes/classic/comments-popup.php:45 ++msgid "Pingback" ++msgstr "Ping balik" ++ ++#: wp-content/themes/classic/comments.php:18 ++#: wp-content/themes/classic/comments-popup.php:45 ++msgid "by" ++msgstr "oleh" ++ ++#: wp-content/themes/classic/comments.php:18 ++#: wp-content/themes/classic/index.php:11 ++msgid "Edit This" ++msgstr "Sunting Ini" ++ ++#: wp-content/themes/classic/comments.php:26 ++#: wp-content/themes/classic/comments-popup.php:51 ++msgid "No comments yet." ++msgstr "Belum ada komentar." ++ ++#: wp-content/themes/classic/comments.php:29 ++#: wp-content/themes/classic/comments-popup.php:24 ++msgid "RSS feed for comments on this post." ++msgstr "RSS umpan untuk komentar-komentar dalam tulisan ini." ++ ++#: wp-content/themes/classic/comments.php:31 ++msgid "TrackBack URL" ++msgstr "URL Lacak Balik" ++ ++#: wp-content/themes/classic/comments.php:39 ++#, php-format ++msgid "You must be logged in to post a comment." ++msgstr "Anda harus masuk log untuk mengirim sebuah komentar." ++ ++#: wp-content/themes/classic/comments.php:46 ++#: wp-content/themes/classic/comments-popup.php:60 ++#, php-format ++msgid "Logged in as %s." ++msgstr "Masuk log sebagai %s." ++ ++#: wp-content/themes/classic/comments.php:46 ++#: wp-content/themes/classic/comments-popup.php:60 ++msgid "Log out of this account" ++msgstr "Keluar log dari akun ini" ++ ++#: wp-content/themes/classic/comments.php:46 ++#: wp-content/themes/classic/comments-popup.php:60 ++msgid "Log out »" ++msgstr "Keluar log »" ++ ++#: wp-content/themes/classic/comments.php:51 ++#: wp-content/themes/classic/comments.php:54 ++msgid "(required)" ++msgstr "(wajib)" ++ ++#: wp-content/themes/classic/comments.php:54 ++msgid "Mail (will not be published)" ++msgstr "Surat (tidak akan dipublikasikan)" ++ ++#: wp-content/themes/classic/comments.php:61 ++#, php-format ++msgid "You can use these tags: %s" ++msgstr "Anda dapat menggunakan tag berikut: %s" ++ ++#: wp-content/themes/classic/comments.php:65 ++msgid "Submit Comment" ++msgstr "Kirim Komentar" ++ ++#: wp-content/themes/classic/comments.php:75 ++#: wp-content/themes/classic/comments-popup.php:92 ++msgid "Sorry, the comment form is closed at this time." ++msgstr "Maaf, form komentar ditutup saat ini." ++ ++#: wp-content/themes/classic/comments-popup.php:27 ++msgid "The URL to TrackBack this entry is:" ++msgstr "URL untuk menlacak balik entri ini ialah:" ++ ++#: wp-content/themes/classic/comments-popup.php:56 ++msgid "Line and paragraph breaks automatic, e-mail address never displayed, HTML allowed:" ++msgstr "Baris dan paragraf memotong otomatis, alamat e-mail tidak pernah ditampilkan HTML diizinkan:" ++ ++#: wp-content/themes/classic/comments-popup.php:76 ++msgid "URL" ++msgstr "URL" ++ ++#: wp-content/themes/classic/comments-popup.php:81 ++msgid "Your Comment" ++msgstr "Komentar Anda" ++ ++#: wp-content/themes/classic/comments-popup.php:87 ++msgid "Say It!" ++msgstr "Katakan!" ++ ++#: wp-content/themes/classic/comments-popup.php:97 ++msgid "Close this window." ++msgstr "Tutup jendela ini." ++ ++#: wp-content/themes/classic/comments-popup.php:105 ++#, php-format ++msgid "Powered by WordPress" ++msgstr "Didukung oleh WordPress" ++ ++#: wp-content/themes/classic/comments-popup.php:105 ++#: wp-content/themes/classic/footer.php:6 ++#: wp-content/themes/classic/sidebar.php:33 ++#: wp-includes/widgets.php:514 ++msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform." ++msgstr "Didukung oleh WordPress, state-of-the-art semantic personal publishing platform." ++ ++#: wp-content/themes/classic/footer.php:6 ++#, php-format ++msgid "Powered by WordPress" ++msgstr "Didukung oleh WordPress" ++ ++#: wp-content/themes/classic/index.php:11 ++msgid "Filed under:" ++msgstr "Diarsipkan di bawah:" ++ ++#: wp-content/themes/classic/index.php:11 ++msgid "Tags: " ++msgstr "Tag:" ++ ++#: wp-content/themes/classic/index.php:14 ++msgid "(more...)" ++msgstr "(lagi...)" ++ ++#: wp-content/themes/classic/index.php:19 ++msgid "Comments (0)" ++msgstr "Komentar (0)" ++ ++#: wp-content/themes/classic/index.php:19 ++msgid "Comments (1)" ++msgstr "Komentar (1)" ++ ++#: wp-content/themes/classic/index.php:19 ++msgid "Comments (%)" ++msgstr "Komentar (%)" ++ ++#: wp-content/themes/classic/index.php:27 ++msgid "Sorry, no posts matched your criteria." ++msgstr "Maaf, tidak ada tulisan yang memenuhi kriteria Anda." ++ ++#: wp-content/themes/classic/index.php:30 ++msgid "« Older Posts" ++msgstr "« Tulisan Lebih Lama" ++ ++#: wp-content/themes/classic/index.php:30 ++msgid "Newer Posts »" ++msgstr "Tulisan Lebih Baru »" ++ ++#: wp-content/themes/classic/sidebar.php:8 ++#: wp-includes/post-template.php:162 ++msgid "Pages:" ++msgstr "Halaman:" ++ ++#: wp-content/themes/classic/sidebar.php:12 ++msgid "Search:" ++msgstr "Pencarian:" ++ ++#: wp-content/themes/classic/sidebar.php:20 ++msgid "Archives:" ++msgstr "Arsip:" ++ ++#: wp-content/themes/classic/sidebar.php:25 ++msgid "Meta:" ++msgstr "Meta:" ++ ++#: wp-content/themes/classic/sidebar.php:29 ++msgid "Syndicate this site using RSS" ++msgstr "Sindikasikan situs ini menggunakan RSS" ++ ++#: wp-content/themes/classic/sidebar.php:29 ++msgid "RSS" ++msgstr "RSS" ++ ++#: wp-content/themes/classic/sidebar.php:30 ++#: wp-includes/widgets.php:513 ++msgid "The latest comments to all posts in RSS" ++msgstr "Komentar-komentar terakhir pada seluruh tulisan dalam RSS" ++ ++#: wp-content/themes/classic/sidebar.php:30 ++#: wp-includes/widgets.php:513 ++msgid "Comments RSS" ++msgstr "RSS Komentar" ++ ++#: wp-content/themes/classic/sidebar.php:31 ++msgid "This page validates as XHTML 1.0 Transitional" ++msgstr "Halaman ini vali sebagai XHTML 1.0 Transitional" ++ ++#: wp-content/themes/classic/sidebar.php:31 ++msgid "Valid XHTML" ++msgstr "Valid XHTML" ++ ++#: wp-content/themes/default/functions.php:147 ++msgid "Customize Header" ++msgstr "Kustomisasi Tajuk" ++ ++#: wp-content/themes/default/functions.php:147 ++#: wp-content/themes/default/functions.php:361 ++msgid "Header Image and Color" ++msgstr "Gambar dan Warna Tajuk" ++ ++#: wp-content/themes/default/functions.php:160 ++msgid "Close Color Picker" ++msgstr "Tutup Pemungut Warna" ++ ++#: wp-content/themes/default/functions.php:375 ++msgid "Font Color:" ++msgstr "Warna Font:" ++ ++#: wp-content/themes/default/functions.php:375 ++#, php-format ++msgid "Any CSS color (%s or %s or %s)" ++msgstr "Warna CSS apapun (%s atau %s atau %s)" ++ ++#: wp-content/themes/default/functions.php:376 ++msgid "Upper Color:" ++msgstr "Warna Atas:" ++ ++#: wp-content/themes/default/functions.php:376 ++#: wp-content/themes/default/functions.php:377 ++#, php-format ++msgid "HEX only (%s or %s)" ++msgstr "Hanya HEX (%s or %s)" ++ ++#: wp-content/themes/default/functions.php:377 ++msgid "Lower Color:" ++msgstr "Warna Bawah:" ++ ++#: wp-content/themes/default/functions.php:379 ++msgid "Toggle Text" ++msgstr "Toggle Teks" ++ ++#: wp-content/themes/default/functions.php:380 ++msgid "Use Defaults" ++msgstr "Gunakan Standar" ++ ++#: wp-content/themes/default/functions.php:389 ++msgid "Font Color" ++msgstr "Warna Font" ++ ++#: wp-content/themes/default/functions.php:390 ++msgid "Upper Color" ++msgstr "Warna Atas" ++ ++#: wp-content/themes/default/functions.php:391 ++msgid "Lower Color" ++msgstr "Warna Bawah" ++ ++#: wp-content/themes/default/functions.php:392 ++msgid "Revert" ++msgstr "Kembalikan" ++ ++#: wp-content/themes/default/functions.php:400 ++msgid "Update Header" ++msgstr "Perbarui Tajuk" ++ ++#: wp-content/themes/default/functions.php:406 ++msgid "Font Color (CSS):" ++msgstr "Warna Font (CSS):" ++ ++#: wp-content/themes/default/functions.php:407 ++msgid "Upper Color (HEX):" ++msgstr "Warna Atas (HEX):" ++ ++#: wp-content/themes/default/functions.php:408 ++msgid "Lower Color (HEX):" ++msgstr "Warna Bawah (HEX):" ++ ++#: wp-content/themes/default/functions.php:409 ++msgid "Select Default Colors" ++msgstr "Pilih Warna Standar" ++ ++#: wp-content/themes/default/functions.php:410 ++msgid "Toggle Text Display" ++msgstr "Toggle Tampilan Teks" ++ ++#: wp-includes/atomlib.php:133 ++#, php-format ++msgid "XML error: %s at line %d" ++msgstr "Galat XML: %s pada baris %d" ++ ++#: wp-includes/author-template.php:237 ++#, php-format ++msgid "Visit %s's website" ++msgstr "Kunjungi situs web %s" ++ ++#: wp-includes/author-template.php:371 ++#: wp-includes/author-template.php:469 ++#, php-format ++msgid "Posts by %s" ++msgstr "Tulisan oleh %s" ++ ++#: wp-includes/bookmark-template.php:73 ++#, php-format ++msgid "Last updated: %s" ++msgstr "Terakhir diperbarui: %s" ++ ++#: wp-includes/bookmark-template.php:161 ++msgid "Bookmarks" ++msgstr "Marka buku" ++ ++#: wp-includes/category-template.php:62 ++#: wp-includes/category-template.php:129 ++#: wp-includes/category-template.php:132 ++#: wp-includes/category-template.php:139 ++#: wp-includes/category-template.php:152 ++#: wp-includes/category-template.php:155 ++#: wp-includes/category-template.php:162 ++#, php-format ++msgid "View all posts in %s" ++msgstr "Lihat seluruh tulisan dalam %s" ++ ++#: wp-includes/category-template.php:300 ++#: wp-includes/category-template.php:302 ++msgid "No categories" ++msgstr "Tidak ada kategori" ++ ++#: wp-includes/category-template.php:416 ++#, php-format ++msgid "%d topic" ++msgid_plural "%d topics" ++msgstr[0] "%d topik" ++msgstr[1] "%d topik" ++ ++#: wp-includes/classes.php:634 ++#, php-format ++msgid "View all posts filed under %s" ++msgstr "Lihat seluruh tulisan dalam %s" ++ ++#: wp-includes/classes.php:649 ++#, php-format ++msgid "Feed for all posts filed under %s" ++msgstr "Umpan untuk seluruh tulisan dalam %s" ++ ++#: wp-includes/class-pop3.php:83 ++msgid "No server specified" ++msgstr "Tidak ada server yang ditentukan" ++ ++#: wp-includes/class-pop3.php:91 ++#: wp-includes/class-pop3.php:103 ++#: wp-includes/class-pop3.php:124 ++#: wp-includes/class-pop3.php:247 ++#: wp-includes/class-pop3.php:301 ++#: wp-includes/class-pop3.php:312 ++#: wp-includes/class-pop3.php:360 ++#: wp-includes/class-pop3.php:394 ++#: wp-includes/class-pop3.php:427 ++#: wp-includes/class-pop3.php:526 ++#: wp-includes/class-pop3.php:549 ++msgid "Error " ++msgstr "Galat" ++ ++#: wp-includes/class-pop3.php:116 ++msgid "no login ID submitted" ++msgstr "Tidak ada ID log yang dikirim" ++ ++#: wp-includes/class-pop3.php:119 ++#: wp-includes/class-pop3.php:139 ++msgid "connection not established" ++msgstr "koneksi tidak dapat dibangun" ++ ++#: wp-includes/class-pop3.php:136 ++#: wp-includes/class-pop3.php:172 ++msgid "No password submitted" ++msgstr "Tidak ada kata kata sandi yang dikirim" ++ ++#: wp-includes/class-pop3.php:144 ++msgid "Authentication failed" ++msgstr "Otentifikasi gagal" ++ ++#: wp-includes/class-pop3.php:163 ++#: wp-includes/class-pop3.php:206 ++#: wp-includes/class-pop3.php:231 ++#: wp-includes/class-pop3.php:273 ++#: wp-includes/class-pop3.php:347 ++#: wp-includes/class-pop3.php:387 ++#: wp-includes/class-pop3.php:417 ++#: wp-includes/class-pop3.php:451 ++#: wp-includes/class-pop3.php:514 ++#: wp-includes/class-pop3.php:582 ++msgid "No connection to server" ++msgstr "Tidak ada koneksi ke server" ++ ++#: wp-includes/class-pop3.php:169 ++msgid "No login ID submitted" ++msgstr "Tidak ada ID log yang dikirim" ++ ++#: wp-includes/class-pop3.php:177 ++msgid "No server banner" ++msgstr "Tidak ada banner server" ++ ++#: wp-includes/class-pop3.php:177 ++#: wp-includes/class-pop3.php:187 ++msgid "abort" ++msgstr "batalkan" ++ ++#: wp-includes/class-pop3.php:187 ++msgid "apop authentication failed" ++msgstr "otentifikasi apop gagal" ++ ++#: wp-includes/class-pop3.php:324 ++msgid "Premature end of list" ++msgstr "Akhir senarai yang prematur" ++ ++#: wp-includes/class-pop3.php:457 ++msgid "Empty command string" ++msgstr "String perintah kosong" ++ ++#: wp-includes/class-pop3.php:477 ++msgid "connection does not exist" ++msgstr "tidak ada koneksi" ++ ++#: wp-includes/class-pop3.php:587 ++msgid "No msg number submitted" ++msgstr "No msg number submitted" ++ ++#: wp-includes/class-pop3.php:593 ++msgid "Command failed " ++msgstr "Perintah gagal" ++ ++#: wp-includes/comment.php:337 ++msgid "Duplicate comment detected; it looks as though you've already said that!" ++msgstr "Duplikasi komentar terdeteksi; sepertinya Anda telah mengatakan itu!" ++ ++#: wp-includes/comment.php:388 ++msgid "You are posting comments too quickly. Slow down." ++msgstr "Anda mengirim komentar terlalu cepat. Sabar." ++ ++#: wp-includes/comment-template.php:25 ++#: wp-includes/theme.php:116 ++msgid "Anonymous" ++msgstr "Anonymous" ++ ++#: wp-includes/comment-template.php:735 ++msgid "Enter your password to view comments" ++msgstr "Masukkan kata sandi Anda untuk melihat komentar" ++ ++#: wp-includes/comment-template.php:763 ++#, php-format ++msgid "Comment on %s" ++msgstr "Komentar pada %s" ++ ++#: wp-includes/cron.php:135 ++msgid "Once Hourly" ++msgstr "Sejam Sekali" ++ ++#: wp-includes/cron.php:136 ++msgid "Once Daily" ++msgstr "Sehari Sekali" ++ ++#: wp-includes/deprecated.php:123 ++msgid "new WordPress Loop" ++msgstr "gunakan Loop WordPress" ++ ++#: wp-includes/deprecated.php:1016 ++msgid "Last updated" ++msgstr "Terakhir diperbarui" ++ ++#: wp-includes/feed-atom-comments.php:18 ++#: wp-includes/feed-rss2-comments.php:20 ++#, php-format ++msgid "Comments on: %s" ++msgstr "Komentar di: %s" ++ ++#: wp-includes/feed-atom-comments.php:20 ++#, php-format ++msgid "Comments for %1$s searching on %2$s" ++msgstr "Komentar untuk %1$s mencari di %2$s" ++ ++#: wp-includes/feed-atom-comments.php:22 ++#: wp-includes/feed-rss2-comments.php:24 ++#, php-format ++msgid "Comments for %s" ++msgstr "Komentar untuk %s" ++ ++#: wp-includes/feed-atom-comments.php:53 ++#: wp-includes/feed-rss2-comments.php:42 ++#, php-format ++msgid "Comment on %1$s by %2$s" ++msgstr "Komentar di %1$s oleh %2$s" ++ ++#: wp-includes/feed-atom-comments.php:55 ++#: wp-includes/feed-rss2-comments.php:44 ++#, php-format ++msgid "By: %s" ++msgstr "Oleh: %s" ++ ++#: wp-includes/feed-rss2-comments.php:22 ++#, php-format ++msgid "Comments for %s searching on %s" ++msgstr "Komentar untuk %s mencari pada %s" ++ ++#: wp-includes/feed-rss2-comments.php:52 ++msgid "Protected Comments: Please enter your password to view comments." ++msgstr "Komentar Terlindung: Silakan masukkan kata sandi Anda untuk melihat komentar." ++ ++#: wp-includes/formatting.php:812 ++#, php-format ++msgid "%s min" ++msgid_plural "%s mins" ++msgstr[0] "%s menit" ++msgstr[1] "%s menit" ++ ++#: wp-includes/formatting.php:818 ++#, php-format ++msgid "%s hour" ++msgid_plural "%s hours" ++msgstr[0] "%s jam" ++msgstr[1] "%s jam" ++ ++#: wp-includes/formatting.php:824 ++#, php-format ++msgid "%s day" ++msgid_plural "%s days" ++msgstr[0] "%s hari" ++msgstr[1] "%s hari" ++ ++#: wp-includes/formatting.php:1371 ++msgid ", |between list items" ++msgstr ", " ++ ++#: wp-includes/formatting.php:1372 ++msgid ", and |between last two list items" ++msgstr ", dan " ++ ++#: wp-includes/formatting.php:1373 ++msgid " and |between only two list items" ++msgstr " dan " ++ ++#: wp-includes/functions.php:250 ++#, php-format ++msgid "%s is a protected WP option and may not be modified" ++msgstr "%s adalah opsi WP yang diproteksi dan tidak bisa dimodifikasi" ++ ++#: wp-includes/functions.php:907 ++#, php-format ++msgid "ERROR: %s is not a valid feed template" ++msgstr "GALAT: %s bukanlah templat umpan yang sah" ++ ++#: wp-includes/functions.php:1113 ++#: wp-includes/functions.php:1175 ++#, php-format ++msgid "Unable to create directory %s. Is its parent directory writable by the server?" ++msgstr "Tidak dapat membuat direktori %s. Apakah direktori induknya dapat ditulis oleh server?" ++ ++#: wp-includes/functions.php:1160 ++msgid "Empty filename" ++msgstr "Nama berkas kosong" ++ ++#: wp-includes/functions.php:1181 ++#, php-format ++msgid "Could not write file %s" ++msgstr "Tidak dapat menulis berkas %s" ++ ++#: wp-includes/functions.php:1283 ++#, php-format ++msgid "Your attempt to edit this attachment: "%s" has failed." ++msgstr "Usaha Anda untuk menyunting lampiran ini: "%s" telah gagal." ++ ++#: wp-includes/functions.php:1285 ++msgid "Your attempt to add this category has failed." ++msgstr "Usaha Anda untuk menambahkan kategori ini telah gagal." ++ ++#: wp-includes/functions.php:1286 ++#, php-format ++msgid "Your attempt to delete this category: "%s" has failed." ++msgstr "Usaha Anda untuk menghapus kategori ini: "%s" telah gagal." ++ ++#: wp-includes/functions.php:1287 ++#, php-format ++msgid "Your attempt to edit this category: "%s" has failed." ++msgstr "Usaha Anda untuk menyunting kategori ini: "%s" telah gagal." ++ ++#: wp-includes/functions.php:1289 ++#, php-format ++msgid "Your attempt to delete this comment: "%s" has failed." ++msgstr "Usaha Anda untuk menghapus komentar ini: "%s" telah gagal." ++ ++#: wp-includes/functions.php:1290 ++#, php-format ++msgid "Your attempt to unapprove this comment: "%s" has failed." ++msgstr "Usaha Anda untuk menolak komentar ini: "%s" telah gagal." ++ ++#: wp-includes/functions.php:1291 ++#, php-format ++msgid "Your attempt to approve this comment: "%s" has failed." ++msgstr "Usaha Anda untuk menyetujui komentar ini: "%s" telah gagal." ++ ++#: wp-includes/functions.php:1292 ++#, php-format ++msgid "Your attempt to edit this comment: "%s" has failed." ++msgstr "Usaha Anda untuk menyunting komentar ini: "%s" telah gagal." ++ ++#: wp-includes/functions.php:1293 ++msgid "Your attempt to bulk modify comments has failed." ++msgstr "Usaha Anda untuk memodifikasi massal komentar-komentar telah gagal." ++ ++#: wp-includes/functions.php:1294 ++msgid "Your attempt to moderate comments has failed." ++msgstr "Usaha Anda untuk memoderasikan komentar telah gagal." ++ ++#: wp-includes/functions.php:1296 ++msgid "Your attempt to add this link has failed." ++msgstr "Usaha Anda untuk menambahkan taut ini telah gagal." ++ ++#: wp-includes/functions.php:1297 ++#, php-format ++msgid "Your attempt to delete this link: "%s" has failed." ++msgstr "Usaha Anda untuk menghapus taut ini: "%s" telah gagal." ++ ++#: wp-includes/functions.php:1298 ++#, php-format ++msgid "Your attempt to edit this link: "%s" has failed." ++msgstr "Usaha Anda untuk menyunting taut ini: "%s" telah gagal." ++ ++#: wp-includes/functions.php:1299 ++msgid "Your attempt to bulk modify links has failed." ++msgstr "Usaha Anda untuk memodifikasi massal taut-taut telah gagal." ++ ++#: wp-includes/functions.php:1301 ++msgid "Your attempt to add this page has failed." ++msgstr "Usaha Anda untuk menambahkan halaman ini telah gagal." ++ ++#: wp-includes/functions.php:1302 ++#, php-format ++msgid "Your attempt to delete this page: "%s" has failed." ++msgstr "Usaha Anda untuk menghapus halaman ini: "%s" telah gagal." ++ ++#: wp-includes/functions.php:1303 ++#, php-format ++msgid "Your attempt to edit this page: "%s" has failed." ++msgstr "Usaha Anda untuk menyunting halaman ini: "%s" telah gagal." ++ ++#: wp-includes/functions.php:1305 ++#, php-format ++msgid "Your attempt to edit this plugin file: "%s" has failed." ++msgstr "Usaha Anda untuk menyunting berkas plugin ini: "%s" telah gagal." ++ ++#: wp-includes/functions.php:1306 ++#, php-format ++msgid "Your attempt to activate this plugin: "%s" has failed." ++msgstr "Usaha Anda untuk mengaktivasi plugin ini: "%s" telah gagal." ++ ++#: wp-includes/functions.php:1307 ++#, php-format ++msgid "Your attempt to deactivate this plugin: "%s" has failed." ++msgstr "Usaha Anda untuk menonaktifkan plugin ini: "%s" telah gagal." ++ ++#: wp-includes/functions.php:1308 ++#, php-format ++msgid "Your attempt to upgrade this plugin: "%s" has failed." ++msgstr "Usaha Anda untuk memutakhirkan plugin ini: "%s" telah gagal." ++ ++#: wp-includes/functions.php:1310 ++msgid "Your attempt to add this post has failed." ++msgstr "Usaha Anda untuk menambahkan tulisan ini telah gagal." ++ ++#: wp-includes/functions.php:1311 ++#, php-format ++msgid "Your attempt to delete this post: "%s" has failed." ++msgstr "Usaha Anda untuk menghapus tulisan ini: "%s" telah gagal." ++ ++#: wp-includes/functions.php:1312 ++#, php-format ++msgid "Your attempt to edit this post: "%s" has failed." ++msgstr "Usaha Anda untuk menyunting tulisan ini: "%s" telah gagal." ++ ++#: wp-includes/functions.php:1314 ++msgid "Your attempt to add this user has failed." ++msgstr "Usaha Anda untuk menambahkan pengguna ini telah gagal." ++ ++#: wp-includes/functions.php:1315 ++msgid "Your attempt to delete users has failed." ++msgstr "Usaha Anda untuk menghapus pengguna telah gagal." ++ ++#: wp-includes/functions.php:1316 ++msgid "Your attempt to bulk modify users has failed." ++msgstr "Usaha Anda untuk memodifikasi pengguna secara massal telah gagal." ++ ++#: wp-includes/functions.php:1317 ++#, php-format ++msgid "Your attempt to edit this user: "%s" has failed." ++msgstr "Usaha Anda untuk menyunting pengguna ini: "%s" telah gagal." ++ ++#: wp-includes/functions.php:1318 ++#, php-format ++msgid "Your attempt to modify the profile for: "%s" has failed." ++msgstr "Usaha Anda untuk memodifikasi profil milik: "%s" telah gagal." ++ ++#: wp-includes/functions.php:1320 ++msgid "Your attempt to edit your settings has failed." ++msgstr "Usaha Anda untuk mengubah pengaturan Anda telah gagal." ++ ++#: wp-includes/functions.php:1321 ++#, php-format ++msgid "Your attempt to change your permalink structure to: %s has failed." ++msgstr "Usaha Anda untuk mengubah struktur permalink Anda ke: %s telah gagal." ++ ++#: wp-includes/functions.php:1322 ++#, php-format ++msgid "Your attempt to edit this file: "%s" has failed." ++msgstr "Usaha Anda untuk menyunting berkas ini: "%s" telah gagal." ++ ++#: wp-includes/functions.php:1323 ++#, php-format ++msgid "Your attempt to edit this theme file: "%s" has failed." ++msgstr "Usaha Anda untuk menyunting berkas tema ini: "%s" telah gagal." ++ ++#: wp-includes/functions.php:1324 ++#, php-format ++msgid "Your attempt to switch to this theme: "%s" has failed." ++msgstr "Usaha Anda untuk menukar tema ke: "%s" telah gagal." ++ ++#: wp-includes/functions.php:1339 ++msgid "Are you sure you want to do this?" ++msgstr "Yakinkah Anda ingin melakukan ini?" ++ ++#: wp-includes/functions.php:1344 ++msgid "WordPress Failure Notice" ++msgstr "Pemberitahuan Kegagalan WordPress" ++ ++#: wp-includes/functions.php:1347 ++msgid "Please try again." ++msgstr "Silakan coba lagi." ++ ++#: wp-includes/functions.php:1395 ++msgid "WordPress › Error" ++msgstr "WordPress › Galat" ++ ++#: wp-includes/general-template.php:36 ++#: wp-login.php:261 ++#: wp-login.php:264 ++#: wp-login.php:329 ++msgid "Log in" ++msgstr "Masuk log" ++ ++#: wp-includes/general-template.php:38 ++msgid "Log out" ++msgstr "Keluar log" ++ ++#: wp-includes/general-template.php:48 ++#: wp-login.php:262 ++#: wp-login.php:325 ++#: wp-login.php:403 ++msgid "Register" ++msgstr "Daftar" ++ ++#: wp-includes/general-template.php:52 ++msgid "Site Admin" ++msgstr "Admin Situs" ++ ++#: wp-includes/general-template.php:414 ++#, php-format ++msgid "%1$s %2$d" ++msgstr "%1$s %2$d" ++ ++#: wp-includes/general-template.php:591 ++#: wp-includes/widgets.php:1364 ++#: wp-includes/widgets.php:1365 ++msgid "Calendar" ++msgstr "Kalender" ++ ++#: wp-includes/general-template.php:592 ++#, php-format ++msgid "%1$s %2$s|Used as a calendar caption" ++msgstr "%1$s %2$s" ++ ++#: wp-includes/general-template.php:616 ++#: wp-includes/general-template.php:626 ++#, php-format ++msgid "View posts for %1$s %2$s" ++msgstr "Lihat tulisan untuk %1$s %2$s" ++ ++#: wp-includes/general-template.php:933 ++#: wp-includes/general-template.php:937 ++msgid "HTML" ++msgstr "HTML" ++ ++#: wp-includes/general-template.php:934 ++#: wp-includes/general-template.php:938 ++msgid "Visual" ++msgstr "Visual" ++ ++#: wp-includes/general-template.php:1032 ++msgid "« Previous" ++msgstr "« Sebelumnya" ++ ++#: wp-includes/general-template.php:1033 ++msgid "Next »" ++msgstr "Berikutnya »" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:13 ++msgid "Do you want to use the WYSIWYG mode for this textarea?" ++msgstr "Apakah Anda ingin menggunakan moda WYSIWYG untuk textarea ini?" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:14 ++msgid "Apply" ++msgstr "Terapkan" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:15 ++#: wp-includes/script-loader.php:183 ++msgid "Insert" ++msgstr "Sisipkan" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:18 ++#: wp-includes/js/tinymce/wp-mce-help.php:246 ++msgid "Close" ++msgstr "Tutup" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:19 ++msgid "Browse" ++msgstr "Rambah" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:20 ++#: wp-includes/js/tinymce/langs/wp-langs.php:300 ++msgid "Class" ++msgstr "Kelas" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:21 ++msgid "-- Not set --" ++msgstr "-- Tak Ditentukan --" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:22 ++#: wp-includes/js/tinymce/langs/wp-langs.php:227 ++msgid "Copy/Cut/Paste is not available in Mozilla and Firefox." ++msgstr "Salin/Potong/Tempel tidak tersedia di Mozilla dan Firefox." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:23 ++msgid "Currently not supported by your browser, use keyboard shortcuts instead." ++msgstr "Saat ini tidak didukung oleh perambah Anda. Silakan gunakan jalan pintas papan ketik." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:24 ++msgid "Sorry, but we have noticed that your popup-blocker has disabled a window that provides application functionality. You will need to disable popup blocking on this site in order to fully utilize this tool." ++msgstr "Maaf, tapi kami mendapatkan pemblokir popup telah mematikan sebuah jendela yang berperan dalam fungsionalitas aplikasi. Anda perlu mematikan pemblokiran popup di situs ini agar dapat memanfaatkan peralatan ini." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:25 ++msgid "Error: Invalid values entered, these are marked in red." ++msgstr "Galat: Anda memasukkan nilai yang salah, nilai-nilai itu ditandai warna merah." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:26 ++#: wp-includes/js/tinymce/langs/wp-langs.php:231 ++msgid "More colors" ++msgstr "Warna lainnya" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:33 ++msgid "Full" ++msgstr "Penuh" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:36 ++msgid "%Y-%m-%d" ++msgstr "%Y-%m-%d" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:37 ++msgid "%H:%M:%S" ++msgstr "%H:%M:%S" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:38 ++msgid "Insert date" ++msgstr "Sisipkan tanggal" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:39 ++msgid "Insert time" ++msgstr "Sisipkan waktu" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:142 ++#: wp-includes/locale.php:157 ++msgid "January" ++msgstr "Januari" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:143 ++#: wp-includes/locale.php:158 ++msgid "February" ++msgstr "Februari" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:144 ++#: wp-includes/locale.php:159 ++msgid "March" ++msgstr "Maret" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:145 ++#: wp-includes/locale.php:160 ++msgid "April" ++msgstr "April" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:146 ++#: wp-includes/locale.php:161 ++msgid "May" ++msgstr "Mei" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:147 ++#: wp-includes/locale.php:162 ++msgid "June" ++msgstr "Juni" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:148 ++#: wp-includes/locale.php:163 ++msgid "July" ++msgstr "Juli" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:149 ++#: wp-includes/locale.php:164 ++msgid "August" ++msgstr "Agustus" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:150 ++#: wp-includes/locale.php:165 ++msgid "September" ++msgstr "September" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:151 ++#: wp-includes/locale.php:166 ++msgid "October" ++msgstr "Oktober" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:152 ++#: wp-includes/locale.php:167 ++msgid "November" ++msgstr "Nopember" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:153 ++#: wp-includes/locale.php:168 ++msgid "December" ++msgstr "Desember" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:157 ++msgid "Jan_January_abbreviation" ++msgstr "Jan_January_abbreviation" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:158 ++msgid "Feb_February_abbreviation" ++msgstr "Feb_February_abbreviation" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:159 ++msgid "Mar_March_abbreviation" ++msgstr "Mar_March_abbreviation" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:160 ++msgid "Apr_April_abbreviation" ++msgstr "Apr_April_abbreviation" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:161 ++msgid "May_May_abbreviation" ++msgstr "Mei_May_abbreviation" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:162 ++msgid "Jun_June_abbreviation" ++msgstr "Jun_June_abbreviation" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:163 ++msgid "Jul_July_abbreviation" ++msgstr "Jul_July_abbreviation" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:164 ++msgid "Aug_August_abbreviation" ++msgstr "Agu_August_abbreviation" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:165 ++msgid "Sep_September_abbreviation" ++msgstr "Sep_September_abbreviation" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:166 ++msgid "Oct_October_abbreviation" ++msgstr "Okt_October_abbreviation" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:167 ++msgid "Nov_November_abbreviation" ++msgstr "Nop_November_abbreviation" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:168 ++msgid "Dec_December_abbreviation" ++msgstr "Des_December_abbreviation" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:110 ++#: wp-includes/locale.php:120 ++#: wp-includes/locale.php:133 ++msgid "Sunday" ++msgstr "Minggu" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:111 ++#: wp-includes/locale.php:121 ++#: wp-includes/locale.php:134 ++msgid "Monday" ++msgstr "Senin" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:112 ++#: wp-includes/locale.php:122 ++#: wp-includes/locale.php:135 ++msgid "Tuesday" ++msgstr "Selasa" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:113 ++#: wp-includes/locale.php:123 ++#: wp-includes/locale.php:136 ++msgid "Wednesday" ++msgstr "Rabu" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:114 ++#: wp-includes/locale.php:124 ++#: wp-includes/locale.php:137 ++msgid "Thursday" ++msgstr "Kamis" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:115 ++#: wp-includes/locale.php:125 ++#: wp-includes/locale.php:138 ++msgid "Friday" ++msgstr "Jumat" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:116 ++#: wp-includes/locale.php:126 ++#: wp-includes/locale.php:139 ++msgid "Saturday" ++msgstr "Sabtu" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:133 ++msgid "Sun" ++msgstr "Ming" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:134 ++msgid "Mon" ++msgstr "Sen" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:135 ++msgid "Tue" ++msgstr "Sel" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:136 ++msgid "Wed" ++msgstr "Rab" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:137 ++msgid "Thu" ++msgstr "Kam" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:138 ++msgid "Fri" ++msgstr "Jum" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:139 ++msgid "Sat" ++msgstr "Sab" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:46 ++msgid "Print" ++msgstr "Cetak" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:49 ++#: wp-includes/js/tinymce/langs/wp-langs.php:295 ++msgid "Preview" ++msgstr "Pratampil" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:52 ++msgid "Direction left to right" ++msgstr "Arah kiri ke kanan" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:53 ++msgid "Direction right to left" ++msgstr "Arah kanan ke kiri" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:56 ++msgid "Insert new layer" ++msgstr "Sisipkan layer baru" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:57 ++msgid "Move forward" ++msgstr "Maju" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:58 ++msgid "Move backward" ++msgstr "Mundur" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:59 ++msgid "Toggle absolute positioning" ++msgstr "Tukar balik peletakan absolut" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:60 ++msgid "New layer..." ++msgstr "Lapisan baru ..." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:64 ++msgid "Cancel all changes" ++msgstr "Batalkan seluruh perubahan" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:67 ++msgid "Insert non-breaking space character" ++msgstr "Sisipkan karakter spasi" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:70 ++msgid "Run spell checking" ++msgstr "Jalankan pemeriksaan ejaan" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:71 ++msgid "ieSpell not detected. Do you want to install it now?" ++msgstr "ieSpell tidak terdeteksi. Apakah Anda ingin menginstalnya sekarang?" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:74 ++msgid "Horizontale rule" ++msgstr "Garis horisontal" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:77 ++msgid "Emotions" ++msgstr "Emosi" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:80 ++msgid "Find" ++msgstr "Temukan" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:81 ++msgid "Find/Replace" ++msgstr "Temukan/Ganti" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:84 ++#: wp-includes/js/tinymce/langs/wp-langs.php:206 ++#: wp-includes/js/tinymce/langs/wp-langs.php:260 ++msgid "Insert/edit image" ++msgstr "Sisipkan/sunting gambar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:87 ++#: wp-includes/js/tinymce/langs/wp-langs.php:202 ++#: wp-includes/js/tinymce/langs/wp-langs.php:277 ++msgid "Insert/edit link" ++msgstr "Sisipkan/sunting taut" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:90 ++msgid "Citation" ++msgstr "Citasi" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:91 ++msgid "Abbreviation" ++msgstr "Singkatan" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:92 ++msgid "Acronym" ++msgstr "Akronim" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:93 ++msgid "Deletion" ++msgstr "Penghapusan" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:94 ++msgid "Insertion" ++msgstr "Penyisipan" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:95 ++msgid "Insert/Edit Attributes" ++msgstr "Sisipkan/Sunting Atribut" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:98 ++msgid "Edit CSS Style" ++msgstr "Sunting Gaya CSS" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:101 ++msgid "Paste as Plain Text" ++msgstr "Tempel sebagai Teks Murni" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:102 ++msgid "Paste from Word" ++msgstr "Tempel dari Word" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:103 ++msgid "Select All" ++msgstr "Pilih Semua" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:106 ++#: wp-includes/js/tinymce/langs/wp-langs.php:108 ++msgid "Use CTRL+V on your keyboard to paste the text into the window." ++msgstr "Gunakan CTRL+V pada papan ketik Anda untuk menempelkan teks ke dalam jendela." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:107 ++msgid "Keep linebreaks" ++msgstr "Biarkan pergantian baris" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:111 ++msgid "Inserts a new table" ++msgstr "Sisipkan sebuah tabel baru" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:112 ++msgid "Insert row before" ++msgstr "Sisipkan baris sebelum" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:113 ++msgid "Insert row after" ++msgstr "Sisipkan baris setelah" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:114 ++msgid "Delete row" ++msgstr "Hapus baris" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:115 ++msgid "Insert column before" ++msgstr "Sisipkan kolom sebelum" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:116 ++msgid "Insert column after" ++msgstr "Sisipkan kolom setelah" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:117 ++msgid "Remove column" ++msgstr "Hilangkan kolum" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:118 ++msgid "Split merged table cells" ++msgstr "Belah sel tabel yang tergabung" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:119 ++msgid "Merge table cells" ++msgstr "Gabung sel tabel" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:120 ++msgid "Table row properties" ++msgstr "Properti baris tabel" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:121 ++msgid "Table cell properties" ++msgstr "Properti tabel sel" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:122 ++msgid "Table properties" ++msgstr "Properti tabel" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:123 ++msgid "Paste table row before" ++msgstr "Tempel baris tabel sebelum" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:124 ++msgid "Paste table row after" ++msgstr "Tempel baris tabel setelah" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:125 ++msgid "Cut table row" ++msgstr "Potong baris tabel" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:126 ++msgid "Copy table row" ++msgstr "Salin baris tabel" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:127 ++msgid "Delete table" ++msgstr "Hapus tabel" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:128 ++msgid "Row" ++msgstr "Baris" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:129 ++msgid "Column" ++msgstr "Kolom" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:130 ++msgid "Cell" ++msgstr "Sel" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:133 ++msgid "The changes you made will be lost if you navigate away from this page." ++msgstr "Perubahan yang Anda buat akan hilang jika Anda meninggalkan halaman ini." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:136 ++msgid "Toggle fullscreen mode" ++msgstr "Tukar balik moda selayar penuh" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:139 ++#: wp-includes/js/tinymce/langs/wp-langs.php:289 ++msgid "Insert / edit embedded media" ++msgstr "Sisipkan / sunting media yang ditempelkan" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:140 ++msgid "0| Extra width for the media popup in pixels" ++msgstr "0" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:141 ++msgid "0| Extra height for the media popup in pixels" ++msgstr "0" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:142 ++msgid "Edit embedded media" ++msgstr "Sunting media yang ditempelkan" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:145 ++msgid "Document properties" ++msgstr "Properti dokumen" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:148 ++msgid "Insert predefined template content" ++msgstr "Sisipkan konten templat yang telah dipersiapkan" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:151 ++msgid "Visual control characters on/off." ++msgstr "Karakter kendali visual hidup/mati." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:154 ++msgid "Toggle spellchecker" ++msgstr "Tukar balik pemeriksa ejaan" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:155 ++msgid "Spellchecker settings" ++msgstr "Penataan pemeriksa ejaan" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:156 ++msgid "Ignore word" ++msgstr "Hiraukan kata" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:157 ++msgid "Ignore all" ++msgstr "Hiraukan semua" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:158 ++msgid "Languages" ++msgstr "Bahasa" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:159 ++msgid "Please wait..." ++msgstr "Silakan tunggu..." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:160 ++msgid "Suggestions" ++msgstr "Saran" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:161 ++msgid "No suggestions" ++msgstr "Tak ada saran" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:162 ++msgid "No misspellings found." ++msgstr "Tidak menemukan kesalahan ejaan." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:165 ++msgid "Insert page break." ++msgstr "Sisipkan pergantian baris." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:169 ++msgid "Styles" ++msgstr "Gaya" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:170 ++msgid "Font size" ++msgstr "Ukuran fonta" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:171 ++msgid "Font family" ++msgstr "Keluarga fonta" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:172 ++msgid "Format" ++msgstr "Format" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:173 ++msgid "Paragraph" ++msgstr "Paragraf" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:174 ++msgid "Div" ++msgstr "Div" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:175 ++#: wp-includes/js/tinymce/wp-mce-help.php:204 ++msgid "Address" ++msgstr "Alamat" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:176 ++msgid "Preformatted" ++msgstr "Praformat" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:177 ++msgid "Heading 1" ++msgstr "Penajukan 1" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:178 ++msgid "Heading 2" ++msgstr "Penajukan 2" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:179 ++msgid "Heading 3" ++msgstr "Penajukan 3" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:180 ++msgid "Heading 4" ++msgstr "Penajukan 4" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:181 ++msgid "Heading 5" ++msgstr "Penajukan 5" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:182 ++msgid "Heading 6" ++msgstr "Penajukan 6" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:183 ++#: wp-includes/js/tinymce/langs/wp-langs.php:226 ++msgid "Blockquote" ++msgstr "Blok kutipan" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:184 ++msgid "Code" ++msgstr "Kode" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:185 ++msgid "Code sample" ++msgstr "Contoh kode" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:186 ++msgid "Definition term " ++msgstr "Istilah definisi" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:187 ++msgid "Definition description" ++msgstr "Keterangan definisi" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:188 ++#: wp-includes/js/tinymce/wp-mce-help.php:200 ++#: wp-includes/js/tinymce/wp-mce-help.php:213 ++msgid "Bold" ++msgstr "Tebal" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:189 ++#: wp-includes/js/tinymce/wp-mce-help.php:200 ++#: wp-includes/js/tinymce/wp-mce-help.php:213 ++msgid "Italic" ++msgstr "Miring" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:190 ++#: wp-includes/js/tinymce/wp-mce-help.php:201 ++msgid "Underline" ++msgstr "Garis bawah" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:191 ++#: wp-includes/js/tinymce/wp-mce-help.php:217 ++msgid "Strikethrough" ++msgstr "Strikethrough" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:192 ++msgid "Align left" ++msgstr "Rata kiri" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:193 ++msgid "Align center" ++msgstr "Rata tengah" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:194 ++msgid "Align right" ++msgstr "Rata kanan" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:195 ++msgid "Align full" ++msgstr "Rata penuh" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:196 ++msgid "Unordered list" ++msgstr "Senarai tak berurutan" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:197 ++msgid "Ordered list" ++msgstr "Senarai berurutan" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:198 ++msgid "Outdent" ++msgstr "Outdent" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:199 ++msgid "Indent" ++msgstr "Indent" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:200 ++#: wp-includes/js/tinymce/wp-mce-help.php:197 ++msgid "Undo" ++msgstr "Undo" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:201 ++#: wp-includes/js/tinymce/wp-mce-help.php:197 ++msgid "Redo" ++msgstr "Redo" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:203 ++msgid "0| Extra width for the link popup in pixels" ++msgstr "0" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:204 ++msgid "0| Extra height for the link popup in pixels" ++msgstr "0" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:205 ++msgid "Unlink" ++msgstr "Hilangkan taut" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:207 ++msgid "0| Extra width for the image popup in pixels" ++msgstr "0" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:208 ++msgid "0| Extra height for the image popup in pixels" ++msgstr "0" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:209 ++msgid "Cleanup messy code" ++msgstr "Rapikan kode yang berantakan" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:210 ++msgid "Edit HTML Source" ++msgstr "Sunting Sumber HTML" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:211 ++msgid "Subscript" ++msgstr "Tika bawah" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:212 ++msgid "Superscript" ++msgstr "Tika atas" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:213 ++msgid "Insert horizontal ruler" ++msgstr "Sisipkan garis horisontal" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:214 ++msgid "Remove formatting" ++msgstr "Hilangkan pemformatan" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:215 ++msgid "Select text color" ++msgstr "Pilih warna teks" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:216 ++msgid "Select background color" ++msgstr "Pilih warna latar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:217 ++msgid "Insert custom character" ++msgstr "Sisipkan karakter tersuai" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:218 ++msgid "Toggle guidelines/invisible elements" ++msgstr "Tukar balik garis bantu/elemen tersebunyi" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:219 ++#: wp-includes/js/tinymce/langs/wp-langs.php:246 ++msgid "Insert/edit anchor" ++msgstr "Sisipkan/sunting anchor" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:220 ++#: wp-includes/js/tinymce/wp-mce-help.php:196 ++msgid "Cut" ++msgstr "Potong" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:221 ++#: wp-includes/js/tinymce/wp-mce-help.php:195 ++msgid "Copy" ++msgstr "Salin" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:222 ++#: wp-includes/js/tinymce/wp-mce-help.php:195 ++msgid "Paste" ++msgstr "Tempel" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:223 ++msgid "Image properties" ++msgstr "Properti gambar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:224 ++msgid "New document" ++msgstr "Dokumen baru" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:225 ++#: wp-includes/js/tinymce/langs/wp-langs.php:239 ++#: wp-includes/js/tinymce/langs/wp-langs.php:396 ++#: wp-includes/js/tinymce/wp-mce-help.php:222 ++msgid "Help" ++msgstr "Bantuan" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:228 ++msgid "Path" ++msgstr "Lokasi" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:229 ++msgid "Are you sure you want to clear all contents?" ++msgstr "Apakah Anda yakin ingin mengosongkan seluruh konten?" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:230 ++msgid "Jump to tool buttons - Alt+Q, Jump to editor - Alt-Z, Jump to element path - Alt-X" ++msgstr "Pindah ke tombol peralatan - Alt+Q, Pindah ke penyunting - Alt-Z, Lompat ke jalur elemen - Alt-X" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:232 ++msgid "0| Extra width for the colorpicker popup in pixels" ++msgstr "0" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:233 ++msgid "0| Extra height for the colorpicker popup in pixels" ++msgstr "0" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:237 ++#: wp-includes/js/tinymce/wp-mce-help.php:228 ++msgid "About TinyMCE" ++msgstr "Tentang TinyMCE" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:240 ++msgid "License" ++msgstr "Izin" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:245 ++msgid "Loaded plugins" ++msgstr "Plugin yang dimuat" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:247 ++msgid "Anchor name" ++msgstr "Nama anchor" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:248 ++msgid "HTML Source Editor" ++msgstr "Penyunting Sumber HTML" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:249 ++msgid "Word wrap" ++msgstr "Bungkus kata" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:250 ++msgid "Select a color" ++msgstr "Pilih sebuah warna" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:251 ++msgid "Picker" ++msgstr "Pemungut" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:252 ++msgid "Color picker" ++msgstr "Pemungut warna" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:253 ++msgid "Palette" ++msgstr "Palet" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:254 ++msgid "Palette colors" ++msgstr "Warna palet" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:255 ++msgid "Named" ++msgstr "Dinamai" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:256 ++msgid "Named colors" ++msgstr "Warna yang dinamai" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:257 ++msgid "Color:" ++msgstr "Warna:" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:258 ++msgid "Name:" ++msgstr "Nama:" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:259 ++msgid "Select custom character" ++msgstr "Pilih karakter tersuai" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:262 ++msgid "Image description" ++msgstr "Keterangan gambar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:263 ++msgid "Image list" ++msgstr "Senarai gambar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:264 ++msgid "Border" ++msgstr "Tepi" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:265 ++#: wp-includes/js/tinymce/langs/wp-langs.php:294 ++msgid "Dimensions" ++msgstr "Dimensi" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:266 ++msgid "Vertical space" ++msgstr "Spasi vertikal" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:267 ++msgid "Horizontal space" ++msgstr "Spasi horisontal" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:269 ++msgid "Baseline" ++msgstr "Rata baris" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:270 ++#: wp-includes/js/tinymce/langs/wp-langs.php:369 ++msgid "Top" ++msgstr "Puncak" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:271 ++msgid "Middle" ++msgstr "Tengah" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:272 ++#: wp-includes/js/tinymce/langs/wp-langs.php:371 ++msgid "Bottom" ++msgstr "Dasar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:273 ++msgid "Text top" ++msgstr "Puncak teks" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:274 ++msgid "Text bottom" ++msgstr "Dasar teks" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:280 ++msgid "Open link in the same window" ++msgstr "Buka taut di jendela yang sama" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:281 ++msgid "Open link in a new window" ++msgstr "Buka taut di jendela yang baru" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:283 ++msgid "The URL you entered seems to be an email address, do you want to add the required mailto: prefix?" ++msgstr "URL yang Anda masukkan sepertinya merupakan alamat email. Apakah Anda ingin menambahkan awalan mailto:?" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:284 ++msgid "The URL you entered seems to external link, do you want to add the required http:// prefix?" ++msgstr "URL yang Anda masukkan sepertinya merupakan taut eksternal. Apakah Anda ingin menambah awalan http://?" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:285 ++msgid "Link list" ++msgstr "Senarai Taut" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:292 ++msgid "File/URL" ++msgstr "File/URL" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:293 ++#: wp-includes/js/tinymce/wp-mce-help.php:218 ++#: wp-includes/js/tinymce/wp-mce-help.php:219 ++msgid "List" ++msgstr "Senarai" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:296 ++msgid "Constrain proportions" ++msgstr "Pertahankan proporsi" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:297 ++msgid "Type" ++msgstr "Jenis" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:298 ++msgid "Id" ++msgstr "Id" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:301 ++msgid "V-Space" ++msgstr "Spasi-V" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:302 ++msgid "H-Space" ++msgstr "Spasi-H" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:303 ++msgid "Auto play" ++msgstr "Pemutaran otomatis" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:304 ++#: wp-includes/js/tinymce/langs/wp-langs.php:386 ++msgid "Loop" ++msgstr "Pengulangan" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:305 ++msgid "Show menu" ++msgstr "Tampilkan menu" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:306 ++msgid "Quality" ++msgstr "Kualitas" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:307 ++msgid "Scale" ++msgstr "Skala" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:308 ++msgid "Align" ++msgstr "Rata" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:309 ++msgid "SAlign" ++msgstr "SAlign" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:310 ++msgid "WMode" ++msgstr "WMode" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:311 ++msgid "Background" ++msgstr "Latar belakang" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:312 ++msgid "Base" ++msgstr "Dasar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:313 ++msgid "Flashvars" ++msgstr "Flashvars" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:314 ++msgid "SWLiveConnect" ++msgstr "SWLiveConnect" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:315 ++msgid "AutoHREF" ++msgstr "AutoHREF" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:316 ++msgid "Cache" ++msgstr "Tembolok" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:317 ++msgid "Hidden" ++msgstr "Tersembunyi" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:318 ++msgid "Controller" ++msgstr "Pengendali" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:319 ++msgid "Kiosk mode" ++msgstr "Moda kiosk" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:320 ++msgid "Play every frame" ++msgstr "Mainkan tiap frame" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:321 ++msgid "Target cache" ++msgstr "Tembolok target" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:322 ++msgid "No correction" ++msgstr "Tanpa koreksi" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:323 ++msgid "Enable JavaScript" ++msgstr "Aktifkan JavaScript" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:324 ++#: wp-includes/js/tinymce/langs/wp-langs.php:382 ++msgid "Start time" ++msgstr "Waktu mulai" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:325 ++msgid "End time" ++msgstr "Waktu selesai" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:326 ++msgid "Href" ++msgstr "Href" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:327 ++msgid "Choke speed" ++msgstr "Kecepatan" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:329 ++msgid "Volume" ++msgstr "Volum" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:330 ++#: wp-includes/js/tinymce/langs/wp-langs.php:385 ++msgid "Auto start" ++msgstr "Mulai otomatis" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:331 ++msgid "Enabled" ++msgstr "Diaktifkan" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:332 ++msgid "Fullscreen" ++msgstr "Selayar penuh" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:333 ++msgid "Invoke URLs" ++msgstr "meminta URL" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:334 ++msgid "Mute" ++msgstr "Bisu" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:335 ++msgid "Stretch to fit" ++msgstr "Bentangkan hingga pas" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:336 ++msgid "Windowless video" ++msgstr "Video tak berjendela" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:337 ++msgid "Balance" ++msgstr "Keseimbangan" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:338 ++msgid "Base URL" ++msgstr "URL Dasar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:339 ++msgid "Captioning id" ++msgstr "ID penjudulan" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:340 ++msgid "Current marker" ++msgstr "Penanda saat ini" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:341 ++msgid "Current position" ++msgstr "Posisi saat ini" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:342 ++msgid "Default frame" ++msgstr "Bingkai standar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:343 ++msgid "Play count" ++msgstr "Penghitungan main" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:344 ++msgid "Rate" ++msgstr "Rating" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:345 ++msgid "UI Mode" ++msgstr "Moda UI" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:346 ++msgid "Flash options" ++msgstr "Opsi Flash" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:347 ++msgid "Quicktime options" ++msgstr "Opsi Quicktime" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:348 ++msgid "Windows media player options" ++msgstr "Opsi windows media player" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:349 ++msgid "Real media player options" ++msgstr "Opsi real media player" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:350 ++msgid "Shockwave options" ++msgstr "Opsi Shockwave" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:351 ++msgid "Auto goto URL" ++msgstr "Otomatis pergi ke URL" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:353 ++msgid "Image status" ++msgstr "Status gambar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:354 ++msgid "Maintain aspect" ++msgstr "Pertahankan aspek" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:355 ++msgid "No java" ++msgstr "Tanpa java" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:356 ++msgid "Prefetch" ++msgstr "Prefetch" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:357 ++msgid "Shuffle" ++msgstr "Acak" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:358 ++msgid "Console" ++msgstr "Konsol" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:359 ++msgid "Num loops" ++msgstr "Num loops" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:360 ++msgid "Controls" ++msgstr "Kendali" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:361 ++msgid "Script callbacks" ++msgstr "Callback skrip" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:362 ++msgid "Stretch style" ++msgstr "Gaya pembentangan" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:363 ++msgid "Stretch H-Align" ++msgstr "Rentang H-Align" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:364 ++msgid "Stretch V-Align" ++msgstr "Rentang V-Align" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:365 ++msgid "Sound" ++msgstr "Suara" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:366 ++msgid "Progress" ++msgstr "Progress" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:367 ++msgid "QT Src" ++msgstr "QT Src" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:368 ++msgid "Streamed rtsp resources should be added to the QT Src field under the advanced tab." ++msgstr "Sumber daya rtsp yang di-streaming harus ditambahkan ke dalam ruas QT Src di bawah tab tingkat lanjut." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:374 ++msgid "Top left" ++msgstr "Puncak kiri" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:375 ++msgid "Top right" ++msgstr "Puncak kanan" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:376 ++msgid "Bottom left" ++msgstr "Dasar kiri" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:377 ++msgid "Bottom right" ++msgstr "Dasar kanan" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:378 ++msgid "Flash video options" ++msgstr "Opsi video Flash" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:379 ++msgid "Scale mode" ++msgstr "Mode Skala" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:380 ++msgid "Buffer" ++msgstr "Penyangga" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:381 ++msgid "Start image" ++msgstr "Mulai gambar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:383 ++msgid "Default volume" ++msgstr "Volume standar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:384 ++msgid "Hidden GUI" ++msgstr "GUI Tersembunyi" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:387 ++msgid "Show scale modes" ++msgstr "Tampilkan moda skala" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:388 ++msgid "Smooth video" ++msgstr "Perhalus video" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:389 ++msgid "JS Callback" ++msgstr "Callback JS" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:393 ++msgid "Show/Hide Kitchen Sink" ++msgstr "Tampilkan/Sembunyikan Kitchen Sink" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:394 ++msgid "Insert More tag" ++msgstr "Sisipkan tag \"More\"" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:395 ++msgid "Insert Page break" ++msgstr "Sisipkan pemotongan halaman" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:397 ++msgid "More..." ++msgstr "Selebihnya..." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:398 ++msgid "Next page..." ++msgstr "Halaman berikutnya..." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:8 ++msgid "Rich Editor Help" ++msgstr "Bantuan Rich Editor" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:162 ++msgid "Basics of Rich Editing" ++msgstr "Dasar-Dasar Rich Editing" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:162 ++msgid "Basics" ++msgstr "Dasar-Dasar" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:163 ++msgid "Advanced use of the Rich Editor" ++msgstr "Penggunaan tingkat lanjut Rich Editor" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:164 ++msgid "Hotkeys" ++msgstr "Tombol Cepat" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:165 ++msgid "About the software" ++msgstr "Tentang piranti lunak ini" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:171 ++msgid "Rich Editing Basics" ++msgstr "Dasar-Dasar Rich Editing" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:172 ++msgid "Rich editing, also called WYSIWYG for What You See Is What You Get, means your text is formatted as you type. The rich editor creates HTML code behind the scenes while you concentrate on writing. Font styles, links and images all appear approximately as they will on the internet." ++msgstr "Rich editing, atau yang juga disebut WYSIWYG, singkatan dari What You See Is What You Get, berarti teks Anda diformat seketika Anda mengetik. Rich editor menciptakan kode HTML di belakang layar sedangkan Anda berkonsentrasi pada menulis. Style font, taut dan gambar tampil kira-kira seperti yang akan tampil di internet." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:173 ++msgid "WordPress includes a rich HTML editor that works well in all major web browsers used today. However editing HTML is not the same as typing text. Each web page has two major components: the structure, which is the actual HTML code and is produced by the editor as you type, and the display, that is applied to it by the currently selected WordPress theme and is defined in style.css. WordPress is producing valid XHTML 1.0 which means that inserting multiple line breaks (BR tags) after a paragraph would not produce white space on the web page. The BR tags will be removed as invalid by the internal HTML correcting functions." ++msgstr "WordPress menyertakan penyunting visual HTML yang bekerja baik pada kebanyakan " ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:174 ++msgid "While using the editor, most basic keyboard shortcuts work like in any other text editor. For example: Shift+Enter inserts line break, Ctrl+C = copy, Ctrl+X = cut, Ctrl+Z = undo, Ctrl+Y = redo, Ctrl+A = select all, etc. (on Mac use the Command key instead of Ctrl). See the Hotkeys tab for all available keyboard shortcuts." ++msgstr "Ketika menggunakan penyunting, mayoritas tombol jalan pintas bekerja seperti di penyunting-penyunting teks lain. Sebagai contoh: Shift+Enter menyisipkan pergantian baris, Ctrl+C = salin, Ctrl+X = potong, Ctrl+Z = membatalkan, Ctrl+A = pilih semua, dan lain-lain. (Pada Mac gunakan tombol Command sebagai pengganti Ctrl). Lihat tab Hotkey untuk informasi mengenai tombol-tombol pintas yang tersedia." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:175 ++msgid "If you do not like the way the rich editor works, you may turn it off from Your Profile submenu, under Users in the admin menu." ++msgstr "Jika Anda tidak menyukai cara kerja penyunting visual ini, Anda dapat mematikannya dari submenu Profil Anda, di bawah Pengguna di menu admin." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:179 ++msgid "Advanced Rich Editing" ++msgstr "Advanced Rich Tingkat Lanjut" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:180 ++msgid "Images and Attachments" ++msgstr "Gambar dan Lampiran" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:181 ++msgid "There is a button in the editor toolbar for inserting images that are already hosted somewhere on the internet. If you have a URL for an image, click this button and enter the URL in the box which appears." ++msgstr "Ada tombol di toolbar penyunting untuk memasukkan gambar yang sudah dihostingkan di tempat lain di internet. Jika Anda memiliki URL untuk sebuah gambar, klik tombol ini dan masukkan URL tersebut di dalam kotak yang muncul." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:182 ++msgid "If you need to upload an image or another media file from your computer, you can use the Media Library buttons above the editor. The media library will attempt to create a thumbnail-sized copy from each uploaded image. To insert your image into the post, first click on the thumbnail to reveal a menu of options. When you have selected the options you like, click \"Send to Editor\" and your image or file will appear in the post you are editing. If you are inserting a movie, there are additional options in the \"Media\" dialog that can be opened from the second toolbar row." ++msgstr "Jika Anda perlu mengunggah sebuah gambar atau berkas media lainnya dari komputer, Anda dapat menggunakan tombol Pustaka Media di atas penyunting. Pustaka media akan mencoba untuk membuat salinan ukuran mini dari setiap gambar yang diunggah. Untuk menyisipkan gambar Anda ke dalam tulisan, pertama klik pada miniatur untuk menampilkan menu opsi. Setelah Anda memilih opsi yang Anda pilih, klik \"Kirim ke Penyunting\" dan gambar atau berkas Anda akan muncul di tulisan yang sedang Anda sunting. Jika Anda sedang menyisipkan film, ada opsi-opsi tambahan di dalam dialog \"Media\" yang dapat Anda buka dari batang perkakas di baris kedua." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:183 ++msgid "HTML in the Rich Editor" ++msgstr "HTML dalam Rich Editor" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:184 ++msgid "Any HTML entered directly into the rich editor will show up as text when the post is viewed. What you see is what you get. When you want to include HTML elements that cannot be generated with the toolbar buttons, you must enter it by hand in the HTML editor. Examples are tables and <code>. To do this, click the HTML tab and edit the code, then switch back to Visual mode. If the code is valid and understood by the editor, you should see it rendered immediately." ++msgstr "Segala HTML yang secara langsung dimasukkan ke dalam penyunting visual akan tampil sebagai teks sebagaimana tulisan tersebut akan ditampilkan. Yang Anda lihat adalah yang Anda dapat. Ketika Anda ingin menyertakan elemen HTML yang tidak dapat dibuat dengan tombol batang perkakas, Anda harus memasukkannya secara manual di dalam penyunting HTML. Sebagai contoh adalah tabel dan kode (<code>). Untuk melakukannya, klik pada tab HTML dan sunting kodenya, lalu kembali ke moda visual. Jika kode tersebut valid dan dipahami oleh penyunting, Anda akan melihatnya dirender secara seketika." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:185 ++msgid "Pasting in the Rich Editor" ++msgstr "Melakukan penempelan di Penyunting Visual" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:186 ++msgid "When pasting content from another web page the results can be inconsistent and depend on your browser and on the web page you are pasting from. The editor tries to correct any invalid HTML code that was pasted, but for best results try using the HTML tab or one of the paste buttons that are on the second row. Alternatively try pasting paragraph by paragraph. In most browsers to select one paragraph at a time, triple-click on it." ++msgstr "Ketika menempelkan konten dari halaman web lain, hasilnya bisa jadi tidak konsisten dan tergantung dari perambah Anda serta halaman web sumber. Penyunting akan berusaha mengoreksi segala kode HTML yang tidak sah yang ditempelkan. Namun, untuk hasil terbaik, coba gunakan tab HTML atau salah satu dari tombol tempel yang ada di baris kedua. Pilihan alternatifnya ialah mencoba melakukan penempelan paragraf demi paragraf. Pada kebanyakan perambah, cara untuk memilih satu paragraf sekaligus ialah dengan klik tiga kali." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:187 ++msgid "Pasting content from another application, like Word or Excel, is best done with the Paste from Word button on the second row, or in HTML mode." ++msgstr "Menempelkan konten dari aplikasi lain, seperti Word atau Excel, paling baik untuk dilakukan dengan tombol \"Tempel dari Word\" di baris kedua, atau dalam moda HTML." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:191 ++msgid "Writing at Full Speed" ++msgstr "Menulis pada Kecepatan Penuh" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:192 ++msgid "Rather than reaching for your mouse to click on the toolbar, use these access keys. Windows and Linux use Ctrl + letter. Macintosh uses Command + letter." ++msgstr "Daripada menggapai tetikus Anda untuk mengklik batang perkakas, gunakan tombol akses berikut. Windows dan Linux menggunakan Ctrl + huruf. Macintosh menggunakan Command + huruf." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:194 ++#: wp-includes/js/tinymce/wp-mce-help.php:210 ++msgid "Letter" ++msgstr "Huruf" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:196 ++msgid "Select all" ++msgstr "Pilih semua" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:201 ++msgid "Header 1" ++msgstr "Tajuk 1" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:202 ++msgid "Header 2" ++msgstr "Tajuk 2" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:202 ++msgid "Header 3" ++msgstr "Tajuk 3" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:203 ++msgid "Header 4" ++msgstr "Tajuk 4" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:203 ++msgid "Header 5" ++msgstr "Tajuk 5" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:204 ++msgid "Header 6" ++msgstr "Tajuk 6" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:208 ++msgid "The following shortcuts use different access keys: Alt + Shift + letter." ++msgstr "Jalan pintas berikut menggunakan tombol-tombol akses yang berbeda: Alt + Shift + huruf." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:215 ++msgid "Check Spelling" ++msgstr "Cek Ejaan" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:215 ++msgid "Align Left" ++msgstr "Rata Kiri" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:216 ++msgid "Justify Text" ++msgstr "Justify Teks" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:216 ++msgid "Align Center" ++msgstr "Rata Tengah" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:217 ++msgid "Align Right" ++msgstr "Rata Kanan" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:218 ++msgid "Insert link" ++msgstr "Sisipkan taut" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:219 ++msgid "Remove link" ++msgstr "Hilangkan Taut" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:220 ++msgid "Quote" ++msgstr "Kutip" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:220 ++msgid "Insert Image" ++msgstr "Masukkan Gambar" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:221 ++msgid "Full Screen" ++msgstr "Selayar Penuh" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:221 ++msgid "Insert More Tag" ++msgstr "Sisipkan Tag \"More\"" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:222 ++msgid "Insert Page Break tag" ++msgstr "Sisipkan tag Pemotong Baris" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:223 ++msgid "Switch to HTML mode" ++msgstr "Tukar ke moda HTML" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:230 ++msgid "Version:" ++msgstr "Versi:" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:231 ++#, php-format ++msgid "TinyMCE is a platform independent web based Javascript HTML WYSIWYG editor control released as Open Source under %sLGPL\tby Moxiecode Systems AB. It has the ability to convert HTML TEXTAREA fields or other HTML elements to editor instances." ++msgstr "TinyMCE adalah penyunting HTML WYSIWYG javascript berbasis web yang tidak terikat platform dirilis sebagai Open Source di bawah %sLGPL\t oleh Moxiecode Systems AB. Kemampuannya ialah mengkonversikan elemen TEXTAREA HTML ke dalam penyunting." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:231 ++msgid "GNU Library General Public Licence" ++msgstr "GNU Library General Public Licence" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:232 ++msgid "Copyright © 2003-2007, Moxiecode Systems AB, All rights reserved." ++msgstr "Hak Cipta © 2003-2007, Moxiecode Systems AB, Seluruh hak dilindungi." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:233 ++msgid "For more information about this software visit the TinyMCE website." ++msgstr "Untuk informasi lebih lanjut tentang piranti lunak ini kunjungi situs web TinyMCE." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:236 ++msgid "Got Moxie?" ++msgstr "Dapat Moxie?" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:237 ++msgid "Hosted By Sourceforge" ++msgstr "Dihostingkan Oleh Sourceforge" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:238 ++msgid "Also on freshmeat" ++msgstr "Juga pada freshmeat" ++ ++#: wp-includes/link-template.php:317 ++msgid "Comments Feed" ++msgstr "Umpan Komentar" ++ ++#: wp-includes/link-template.php:593 ++msgid "Previous Post" ++msgstr "Tulisan Sebelumnya" ++ ++#: wp-includes/link-template.php:593 ++msgid "Next Post" ++msgstr "Tulisan Berikutnya" ++ ++#: wp-includes/locale.php:120 ++msgid "S_Sunday_initial" ++msgstr "M_Sunday_initial" ++ ++#: wp-includes/locale.php:121 ++msgid "M_Monday_initial" ++msgstr "S_Monday_initial" ++ ++#: wp-includes/locale.php:122 ++msgid "T_Tuesday_initial" ++msgstr "S_Tuesday_initial" ++ ++#: wp-includes/locale.php:123 ++msgid "W_Wednesday_initial" ++msgstr "R_Wednesday_initial" ++ ++#: wp-includes/locale.php:124 ++msgid "T_Thursday_initial" ++msgstr "K_Thursday_initial" ++ ++#: wp-includes/locale.php:125 ++msgid "F_Friday_initial" ++msgstr "J_Friday_initial" ++ ++#: wp-includes/locale.php:126 ++msgid "S_Saturday_initial" ++msgstr "S_Saturday_initial" ++ ++#: wp-includes/locale.php:175 ++msgid "am" ++msgstr "am" ++ ++#: wp-includes/locale.php:176 ++msgid "pm" ++msgstr "pm" ++ ++#: wp-includes/locale.php:177 ++msgid "AM" ++msgstr "AM" ++ ++#: wp-includes/locale.php:178 ++msgid "PM" ++msgstr "PM" ++ ++#: wp-includes/locale.php:183 ++msgid "number_format_decimals|$decimals argument for http://php.net/number_format, default is 0" ++msgstr "0" ++ ++#: wp-includes/locale.php:186 ++msgid "number_format_decimal_point|$dec_point argument for http://php.net/number_format, default is ." ++msgstr "," ++ ++#: wp-includes/locale.php:189 ++msgid "number_format_thousands_sep|$thousands_sep argument for http://php.net/number_format, default is ," ++msgstr "." ++ ++#: wp-includes/media.php:217 ++#: wp-includes/media.php:221 ++#: wp-includes/media.php:227 ++msgid "Resize path invalid" ++msgstr "Path pengubahan ukuran tidak benar" ++ ++#: wp-includes/pluggable.php:416 ++#: wp-includes/user.php:39 ++msgid "ERROR: The username field is empty." ++msgstr "GALAT: Ruas nama pengguna kosong." ++ ++#: wp-includes/pluggable.php:419 ++#: wp-includes/user.php:41 ++msgid "ERROR: The password field is empty." ++msgstr "GALAT: Ruas kata sandi kosong." ++ ++#: wp-includes/pluggable.php:425 ++msgid "ERROR: Invalid username." ++msgstr "GALAT: Nama pengguna tidak valid." ++ ++#: wp-includes/pluggable.php:436 ++msgid "ERROR: Incorrect password." ++msgstr "GALAT: Kata sandi salah." ++ ++#: wp-includes/pluggable.php:784 ++#, php-format ++msgid "New comment on your post #%1$s \"%2$s\"" ++msgstr "Komentar baru pada tulisan Anda #%1$s \"%2$s\"" ++ ++#: wp-includes/pluggable.php:785 ++#: wp-includes/pluggable.php:880 ++#, php-format ++msgid "Author : %1$s (IP: %2$s , %3$s)" ++msgstr "Penulis : %1$s (IP: %2$s , %3$s)" ++ ++#: wp-includes/pluggable.php:786 ++#: wp-includes/pluggable.php:881 ++#, php-format ++msgid "E-mail : %s" ++msgstr "E-mail : %s" ++ ++#: wp-includes/pluggable.php:787 ++#: wp-includes/pluggable.php:795 ++#: wp-includes/pluggable.php:802 ++#: wp-includes/pluggable.php:867 ++#: wp-includes/pluggable.php:874 ++#: wp-includes/pluggable.php:882 ++#, php-format ++msgid "URL : %s" ++msgstr "URL : %s" ++ ++#: wp-includes/pluggable.php:788 ++#: wp-includes/pluggable.php:883 ++#, php-format ++msgid "Whois : http://ws.arin.net/cgi-bin/whois.pl?queryinput=%s" ++msgstr "Siapa : http://ws.arin.net/cgi-bin/whois.pl?queryinput=%s" ++ ++#: wp-includes/pluggable.php:789 ++#: wp-includes/pluggable.php:884 ++msgid "Comment: " ++msgstr "Komentar:" ++ ++#: wp-includes/pluggable.php:790 ++msgid "You can see all comments on this post here: " ++msgstr "Anda dapat melihat seluruh komentar pada tulisan ini di sini:" ++ ++#: wp-includes/pluggable.php:791 ++#, php-format ++msgid "[%1$s] Comment: \"%2$s\"" ++msgstr "[%1$s] Komentar: \"%2$s\"" ++ ++#: wp-includes/pluggable.php:793 ++#, php-format ++msgid "New trackback on your post #%1$s \"%2$s\"" ++msgstr "Lacak Balik baru pada tulisan Anda #%1$s \"%2$s\"" ++ ++#: wp-includes/pluggable.php:794 ++#: wp-includes/pluggable.php:801 ++#, php-format ++msgid "Website: %1$s (IP: %2$s , %3$s)" ++msgstr "Situs Web: %1$s (IP: %2$s , %3$s)" ++ ++#: wp-includes/pluggable.php:796 ++#: wp-includes/pluggable.php:803 ++msgid "Excerpt: " ++msgstr "Kutipan:" ++ ++#: wp-includes/pluggable.php:797 ++msgid "You can see all trackbacks on this post here: " ++msgstr "Anda dapat melihat seluruh lacak balik pada tulisan ini di sini:" ++ ++#: wp-includes/pluggable.php:798 ++#, php-format ++msgid "[%1$s] Trackback: \"%2$s\"" ++msgstr "[%1$s] Lacak balik: \"%2$s\"" ++ ++#: wp-includes/pluggable.php:800 ++#, php-format ++msgid "New pingback on your post #%1$s \"%2$s\"" ++msgstr "Ping balik baru pada tulisan Anda #%1$s \"%2$s\"" ++ ++#: wp-includes/pluggable.php:804 ++msgid "You can see all pingbacks on this post here: " ++msgstr "Anda dapat melihat seluruh ping balik pada tulisan ini di sini:" ++ ++#: wp-includes/pluggable.php:805 ++#, php-format ++msgid "[%1$s] Pingback: \"%2$s\"" ++msgstr "[%1$s] Ping balik: \"%2$s\"" ++ ++#: wp-includes/pluggable.php:808 ++#: wp-includes/pluggable.php:889 ++#, php-format ++msgid "Delete it: %s" ++msgstr "Hapus ini: %s" ++ ++#: wp-includes/pluggable.php:809 ++#: wp-includes/pluggable.php:890 ++#, php-format ++msgid "Spam it: %s" ++msgstr "Spam ini: %s" ++ ++#: wp-includes/pluggable.php:864 ++#, php-format ++msgid "A new trackback on the post #%1$s \"%2$s\" is waiting for your approval" ++msgstr "Sebuah lacak balik untuk tulisan #%1$s \"%2$s\" sedang menunggu persetujuan Anda" ++ ++#: wp-includes/pluggable.php:866 ++#: wp-includes/pluggable.php:873 ++#, php-format ++msgid "Website : %1$s (IP: %2$s , %3$s)" ++msgstr "Situs web: %1$s (IP: %2$s , %3$s)" ++ ++#: wp-includes/pluggable.php:868 ++msgid "Trackback excerpt: " ++msgstr "Kutipan lacak balik:" ++ ++#: wp-includes/pluggable.php:871 ++#, php-format ++msgid "A new pingback on the post #%1$s \"%2$s\" is waiting for your approval" ++msgstr "Ping balik baru pada tulisan #%1$s \"%2$s\" sedang menunggu persetujuan Anda" ++ ++#: wp-includes/pluggable.php:875 ++msgid "Pingback excerpt: " ++msgstr "Kutipan Ping Balik:" ++ ++#: wp-includes/pluggable.php:878 ++#, php-format ++msgid "A new comment on the post #%1$s \"%2$s\" is waiting for your approval" ++msgstr "Komentar baru pada tulisan #%1$s \"%2$s\" sedang menunggu persetujuan Anda" ++ ++#: wp-includes/pluggable.php:888 ++#, php-format ++msgid "Approve it: %s" ++msgstr "Setujui ini: %s" ++ ++#: wp-includes/pluggable.php:893 ++#, php-format ++msgid "Currently %s are waiting for approval. Please visit the moderation panel:" ++msgstr "Saat ini %s sedang menunggu persetujuan. Silakan ke panel moderasi:" ++ ++#: wp-includes/pluggable.php:896 ++#, php-format ++msgid "[%1$s] Please moderate: \"%2$s\"" ++msgstr "[%1$s] Mohon moderasi: \"%2$s\"" ++ ++#: wp-includes/pluggable.php:923 ++#, php-format ++msgid "New user registration on your blog %s:" ++msgstr "Pendaftaran user baru di blog Anda %s:" ++ ++#: wp-includes/pluggable.php:924 ++#: wp-includes/pluggable.php:932 ++#: wp-login.php:103 ++#: wp-login.php:130 ++#, php-format ++msgid "Username: %s" ++msgstr "Nama user: %s" ++ ++#: wp-includes/pluggable.php:925 ++#, php-format ++msgid "E-mail: %s" ++msgstr "E-mail: %s" ++ ++#: wp-includes/pluggable.php:927 ++#, php-format ++msgid "[%s] New User Registration" ++msgstr "[%s] Pendaftaran User Baru" ++ ++#: wp-includes/pluggable.php:933 ++#: wp-login.php:131 ++#, php-format ++msgid "Password: %s" ++msgstr "Kata sandi: %s" ++ ++#: wp-includes/pluggable.php:936 ++#, php-format ++msgid "[%s] Your username and password" ++msgstr "[%s] Nama pengguna dan kata sandi Anda" ++ ++#: wp-includes/post-template.php:60 ++#, php-format ++msgid "Protected: %s" ++msgstr "Diproteksi: %s" ++ ++#: wp-includes/post-template.php:62 ++#, php-format ++msgid "Private: %s" ++msgstr "Privat: %s" ++ ++#: wp-includes/post-template.php:147 ++msgid "There is no excerpt because this is a protected post." ++msgstr "Tidak ada kutipan karena ini adalah tulisan yang dilindungi kata sandi." ++ ++#: wp-includes/post-template.php:163 ++msgid "Next page" ++msgstr "Halaman berikutnya" ++ ++#: wp-includes/post-template.php:164 ++msgid "Previous page" ++msgstr "Halaman sebelumnya" ++ ++#: wp-includes/post-template.php:379 ++#: wp-includes/post-template.php:400 ++msgid "Missing Attachment" ++msgstr "Lampiran Hilang" ++ ++#: wp-includes/post-template.php:526 ++msgid "This post is password protected. To view it please enter your password below:" ++msgstr "Tulisan ini dilindungi kata sandi. Untuk melihatnya mohon masukkan sandi Anda di bawah ini:" ++ ++#: wp-includes/rss.php:856 ++msgid "An error has occurred, which probably means the feed is down. Try again later." ++msgstr "Sebuah galat telah terjadi, yang kemungkinan berarti umpan tersebut sedang anjlok. Coba lagi nanti." ++ ++#: wp-includes/script-loader.php:19 ++msgid "(Quick Links)" ++msgstr "(Taut Cepat)" ++ ++#: wp-includes/script-loader.php:20 ++msgid "Enter a word to look up:" ++msgstr "Masukkan sebuah kata untuk dicari:" ++ ++#: wp-includes/script-loader.php:21 ++msgid "Dictionary lookup" ++msgstr "Pencarian kamus" ++ ++#: wp-includes/script-loader.php:22 ++msgid "lookup" ++msgstr "pencarian" ++ ++#: wp-includes/script-loader.php:23 ++msgid "Close all open tags" ++msgstr "Tutup seluruh tag yang terbuka" ++ ++#: wp-includes/script-loader.php:24 ++msgid "close tags" ++msgstr "tutup tag" ++ ++#: wp-includes/script-loader.php:25 ++msgid "Enter the URL" ++msgstr "Masukkan URL" ++ ++#: wp-includes/script-loader.php:26 ++msgid "Enter the URL of the image" ++msgstr "Masukkan URL gambar" ++ ++#: wp-includes/script-loader.php:27 ++msgid "Enter a description of the image" ++msgstr "Masukkan sebuah deskripsi dari gambar tersebut" ++ ++#: wp-includes/script-loader.php:46 ++#: wp-includes/script-loader.php:55 ++msgid "You do not have permission to do that." ++msgstr "Anda tidak punya izin untuk melakukan itu." ++ ++#: wp-includes/script-loader.php:47 ++msgid "An unidentified error has occurred." ++msgstr "Galat yang tak dapat didefinisikan telah terjadi." ++ ++#: wp-includes/script-loader.php:56 ++msgid "Something strange happened. Try refreshing the page." ++msgstr "Sesuatu yang aneh terjadi. Coba muat ulang halaman ini." ++ ++#: wp-includes/script-loader.php:57 ++msgid "Slow down, I'm still sending your data!" ++msgstr "Sabar! Saya sedang mengirim data Anda!" ++ ++#: wp-includes/script-loader.php:93 ++msgid "You have attempted to queue too many files." ++msgstr "Anda telah mencoba mengantrikan terlalu banyak berkas." ++ ++#: wp-includes/script-loader.php:94 ++#, php-format ++msgid "This file is too big. Your php.ini upload_max_filesize is %s." ++msgstr "Berkas ini terlalu besar. Nilai upload_max_filesize dalam php.ini Anda ialah %s." ++ ++#: wp-includes/script-loader.php:95 ++msgid "This file is empty. Please try another." ++msgstr "Berkas ini kosong. Silakan coba yang lain." ++ ++#: wp-includes/script-loader.php:96 ++msgid "This file type is not allowed. Please try another." ++msgstr "Berkas jenis ini tidak diperbolehkan. Silakan coba yang lain." ++ ++#: wp-includes/script-loader.php:97 ++msgid "An error occurred in the upload. Please try again later." ++msgstr "Sebuah galat telah terjadi selama proses pengunggahan. Silakan coba lagi nanti." ++ ++#: wp-includes/script-loader.php:98 ++msgid "There was a configuration error. Please contact the server administrator." ++msgstr "Ada galat konfigurasi. Silakan hubungi administrator server." ++ ++#: wp-includes/script-loader.php:99 ++msgid "You may only upload 1 file." ++msgstr "Anda hanya boleh mengunggah satu berkas." ++ ++#: wp-includes/script-loader.php:100 ++msgid "HTTP error." ++msgstr "Galat HTTP." ++ ++#: wp-includes/script-loader.php:101 ++msgid "Upload failed." ++msgstr "Pengunggahan gagal." ++ ++#: wp-includes/script-loader.php:102 ++msgid "IO error." ++msgstr "Galat IO" ++ ++#: wp-includes/script-loader.php:103 ++msgid "Security error." ++msgstr "Galat keamanan." ++ ++#: wp-includes/script-loader.php:104 ++msgid "File cancelled." ++msgstr "Berkas dibatalkan." ++ ++#: wp-includes/script-loader.php:105 ++msgid "Upload stopped." ++msgstr "Pengunggahan terhenti." ++ ++#: wp-includes/script-loader.php:106 ++msgid "Dismiss" ++msgstr "Selesai" ++ ++#: wp-includes/script-loader.php:107 ++msgid "Crunching…" ++msgstr "Memproses…" ++ ++#: wp-includes/script-loader.php:108 ++msgid "Deleted" ++msgstr "Terhapus" ++ ++#: wp-includes/script-loader.php:117 ++msgid "Separate multiple categories with commas." ++msgstr "Pisahkan berbagai kategori dengan koma." ++ ++#: wp-includes/script-loader.php:125 ++msgid "Bad" ++msgstr "Buruk" ++ ++#: wp-includes/script-loader.php:126 ++msgid "Good" ++msgstr "Baik" ++ ++#: wp-includes/script-loader.php:127 ++msgid "Strong" ++msgstr "Kuat" ++ ++#: wp-includes/script-loader.php:131 ++msgid "%i% pending" ++msgstr "%s ditangguhkan" ++ ++#: wp-includes/script-loader.php:149 ++msgid "Tags used on this post:" ++msgstr "Tag yang digunakan di tulisan ini:" ++ ++#: wp-includes/script-loader.php:151 ++msgid "Add new tag" ++msgstr "Tambahkan tag baru" ++ ++#: wp-includes/script-loader.php:152 ++msgid "Separate tags with commas" ++msgstr "Pisahkan tag dengan koma" ++ ++#: wp-includes/script-loader.php:169 ++msgid "Browse your files" ++msgstr "Rambah berkas-berkas Anda" ++ ++#: wp-includes/script-loader.php:170 ++msgid "« Back" ++msgstr "« Kembali" ++ ++#: wp-includes/script-loader.php:171 ++msgid "Direct link to file" ++msgstr "Taut langsung ke berkas" ++ ++#: wp-includes/script-loader.php:175 ++msgid "Icon" ++msgstr "Ikon" ++ ++#: wp-includes/script-loader.php:177 ++msgid "Show:" ++msgstr "Tampilkan:" ++ ++#: wp-includes/script-loader.php:178 ++msgid "Link to:" ++msgstr "Taut ke:" ++ ++#: wp-includes/script-loader.php:179 ++msgid "File" ++msgstr "Berkas" ++ ++#: wp-includes/script-loader.php:182 ++msgid "Send to editor »" ++msgstr "Kirim ke penyunting »" ++ ++#: wp-includes/script-loader.php:186 ++msgid "Delete File" ++msgstr "Hapus Berkas" ++ ++#: wp-includes/script-loader.php:187 ++msgid "Save »" ++msgstr "Simpan »" ++ ++#: wp-includes/script-loader.php:188 ++msgid "" ++"Are you sure you want to delete the file '%title%'?\n" ++"Click ok to delete or cancel to go back." ++msgstr "" ++"Apakah Anda yakin ingin menghapus berkas '%title%'?\n" ++"Klik ok untuk menghapus atau cancel untuk kembali." ++ ++#: wp-includes/script-loader.php:501 ++msgid "Saving Draft…" ++msgstr "Menyimpan Naskah…" ++ ++#: wp-includes/taxonomy.php:224 ++#: wp-includes/taxonomy.php:290 ++#: wp-includes/taxonomy.php:404 ++#: wp-includes/taxonomy.php:543 ++#: wp-includes/taxonomy.php:1045 ++#: wp-includes/taxonomy.php:1262 ++msgid "Invalid Taxonomy" ++msgstr "Taksonomi yang Tidak Benar" ++ ++#: wp-includes/taxonomy.php:1165 ++#: wp-includes/taxonomy.php:1416 ++msgid "Invalid taxonomy" ++msgstr "Taksonomi yang tidak benar" ++ ++#: wp-includes/taxonomy.php:1168 ++msgid "Invalid term ID" ++msgstr "ID istilah yang tidak benar" ++ ++#: wp-includes/taxonomy.php:1199 ++#: wp-includes/taxonomy.php:1206 ++msgid "Could not insert term into the database" ++msgstr "Tak dapat menyisipkan istilah ke dalam basis data" ++ ++#: wp-includes/taxonomy.php:1464 ++#, php-format ++msgid "The slug \"%s\" is already in use by another term" ++msgstr "Slug \"%s\" telah digunakan oleh yang lain" ++ ++#: wp-includes/theme.php:174 ++msgid "Stylesheet is missing." ++msgstr "Stylesheet hilang." ++ ++#: wp-includes/theme.php:188 ++msgid "File not readable." ++msgstr "Berkas tidak dapat dibaca." ++ ++#: wp-includes/theme.php:229 ++msgid "Template is missing." ++msgstr "Template hilang." ++ ++#: wp-includes/user.php:29 ++msgid "Please log in again." ++msgstr "Silakan masuk log lagi." ++ ++#: wp-includes/widgets.php:24 ++#: wp-includes/widgets.php:52 ++#, php-format ++msgid "Sidebar %d" ++msgstr "Kolom Sisi %d" ++ ++#: wp-includes/widgets.php:412 ++msgid "Sort by:" ++msgstr "Sortir berdasarkan:" ++ ++#: wp-includes/widgets.php:414 ++msgid "Page title" ++msgstr "Judul halaman" ++ ++#: wp-includes/widgets.php:415 ++msgid "Page order" ++msgstr "Urutan halaman" ++ ++#: wp-includes/widgets.php:416 ++msgid "Page ID" ++msgstr "ID Halaman" ++ ++#: wp-includes/widgets.php:421 ++msgid "Exclude:" ++msgstr "Eksklusikan:" ++ ++#: wp-includes/widgets.php:423 ++msgid "Page IDs, separated by commas." ++msgstr "ID Halaman, dipisahkan dengan koma." ++ ++#: wp-includes/widgets.php:464 ++msgid "Select Month" ++msgstr "Pilih Bulan" ++ ++#: wp-includes/widgets.php:494 ++#: wp-includes/widgets.php:792 ++msgid "Show post counts" ++msgstr "Tunjukkan jumlah tulisan" ++ ++#: wp-includes/widgets.php:496 ++msgid "Display as a drop down" ++msgstr "Tampilkan sebagai 'drop down'" ++ ++#: wp-includes/widgets.php:505 ++#: wp-includes/widgets.php:1375 ++#: wp-includes/widgets.php:1376 ++msgid "Meta" ++msgstr "Meta" ++ ++#: wp-includes/widgets.php:512 ++msgid "Syndicate this site using RSS 2.0" ++msgstr "Sindikasikan situs ini menggunakan RSS 2.0" ++ ++#: wp-includes/widgets.php:512 ++msgid "Entries RSS" ++msgstr "RSS Entri" ++ ++#: wp-includes/widgets.php:649 ++msgid "Arbitrary text or HTML" ++msgstr "Teks biasa atau HTML" ++ ++#: wp-includes/widgets.php:651 ++msgid "Text" ++msgstr "Teks" ++ ++#: wp-includes/widgets.php:694 ++msgid "Select Category" ++msgstr "Pilih Kategori" ++ ++#: wp-includes/widgets.php:787 ++msgid "Show as dropdown" ++msgstr "Tunjukkan sebagai tarikturun" ++ ++#: wp-includes/widgets.php:797 ++msgid "Show hierarchy" ++msgstr "Tunjukkan hierarki" ++ ++#: wp-includes/widgets.php:812 ++msgid "A list or dropdown of categories" ++msgstr "Senarai atau tarik turun kategori" ++ ++#: wp-includes/widgets.php:867 ++#: wp-includes/widgets.php:1382 ++#: wp-includes/widgets.php:1383 ++msgid "Recent Posts" ++msgstr "Tulisan Terakhir" ++ ++#: wp-includes/widgets.php:918 ++msgid "Number of posts to show:" ++msgstr "Jumlah tulisan untuk ditampilkan:" ++ ++#: wp-includes/widgets.php:920 ++#: wp-includes/widgets.php:979 ++msgid "(at most 15)" ++msgstr "(paling banyak 15)" ++ ++#: wp-includes/widgets.php:948 ++#, php-format ++msgid "%1$s on %2$s" ++msgstr "%1$s pada %2$s" ++ ++#: wp-includes/widgets.php:977 ++msgid "Number of comments to show:" ++msgstr "Jumlah komentar yang ditunjukkan:" ++ ++#: wp-includes/widgets.php:992 ++msgid "The most recent comments" ++msgstr "Komentar terkini" ++ ++#: wp-includes/widgets.php:1035 ++msgid "Unknown Feed" ++msgstr "Umpan yang Tidak Diketahui" ++ ++#: wp-includes/widgets.php:1041 ++msgid "Syndicate this content" ++msgstr "Sindikasikan konten ini" ++ ++#: wp-includes/widgets.php:1083 ++msgid "Untitled" ++msgstr "Tidak Berjudul" ++ ++#: wp-includes/widgets.php:1133 ++msgid "An error has occurred; the feed is probably down. Try again later." ++msgstr "Sebuah galat telah terjadi; umpan tersebut kemungkinan sedang anjlok. Coba lagi nanti." ++ ++#: wp-includes/widgets.php:1215 ++msgid "Enter the RSS feed URL here:" ++msgstr "Masukkan URL umpan RSS tersebut di sini:" ++ ++#: wp-includes/widgets.php:1221 ++msgid "Give the feed a title (optional):" ++msgstr "Berikan umpan ini sebuah judul (opsional):" ++ ++#: wp-includes/widgets.php:1227 ++msgid "How many items would you like to display?" ++msgstr "Berapa banyak butir yang ingin Anda tampilkan?" ++ ++#: wp-includes/widgets.php:1240 ++msgid "Display item content?" ++msgstr "Tampilkan konten objek?" ++ ++#: wp-includes/widgets.php:1247 ++msgid "Display item author if available?" ++msgstr "Tampilkan penulis jika tersedia?" ++ ++#: wp-includes/widgets.php:1254 ++msgid "Display item date?" ++msgstr "Tampilkan tanggal objek?" ++ ++#: wp-includes/widgets.php:1287 ++msgid "Error: could not find an RSS or ATOM feed at that URL." ++msgstr "Galat: tidak dapat menemukan umpan RSS atau ATOM pada URL tersebut." ++ ++#: wp-includes/widgets.php:1288 ++#, php-format ++msgid "Error in RSS %1$d" ++msgstr "Galat dalam RSS %1$d" ++ ++#: wp-includes/widgets.php:1302 ++msgid "Entries from any RSS or Atom feed" ++msgstr "Entri dari umpan RSS atau Atom" ++ ++#: wp-includes/widgets.php:1359 ++msgid "Your blog's WordPress Pages" ++msgstr "Halaman WordPress blog Anda" ++ ++#: wp-includes/widgets.php:1363 ++msgid "A calendar of your blog's posts" ++msgstr "Kalender tulisan blog Anda" ++ ++#: wp-includes/widgets.php:1367 ++msgid "A monthly archive of your blog's posts" ++msgstr "Arsip bulanan tulisan blog Anda" ++ ++#: wp-includes/widgets.php:1371 ++msgid "Your blogroll" ++msgstr "Blogroll Anda" ++ ++#: wp-includes/widgets.php:1374 ++msgid "Log in/out, admin, feed and WordPress links" ++msgstr "Log masuk/keluar, admin, umpan dan taut WordPress" ++ ++#: wp-includes/widgets.php:1378 ++msgid "A search form for your blog" ++msgstr "Sebuah formulir pencarian untuk blog Anda" ++ ++#: wp-includes/widgets.php:1381 ++msgid "The most recent posts on your blog" ++msgstr "Tulisan terkini di blog Anda" ++ ++#: wp-includes/widgets.php:1385 ++msgid "Your most used tags in cloud format" ++msgstr "Tag yang paling sering Anda gunakan dalam bentuk awan" ++ ++#: wp-includes/widgets.php:1386 ++#: wp-includes/widgets.php:1387 ++msgid "Tag Cloud" ++msgstr "Awan Tag" ++ ++#: wp-includes/wp-db.php:532 ++#, php-format ++msgid "ERROR: WordPress %s requires MySQL 4.0.0 or higher" ++msgstr "GALAT: WordPress %s membutuhkan MySQL 4.0.0 atau lebih tinggi" ++ ++#: wp-login.php:30 ++msgid "Powered by WordPress" ++msgstr "Didukung oleh WordPress" ++ ++#: wp-login.php:65 ++msgid "ERROR: Enter a username or e-mail address." ++msgstr "GALAT: Masukkan sebuah nama pengguna atau alamat e-mail." ++ ++#: wp-login.php:70 ++msgid "ERROR: There is no user registered with that email address." ++msgstr "GALAT: Tidak ada pengguna yang terdaftar dengan alamat email tersebut." ++ ++#: wp-login.php:82 ++msgid "ERROR: Invalid username or e-mail." ++msgstr "ERROR: Nama pengguna atau e-mail tidak sah." ++ ++#: wp-login.php:101 ++msgid "Someone has asked to reset the password for the following site and username." ++msgstr "Seseorang telah meminta men-set-ulang kata sandi untuk situs dan nama user berikut." ++ ++#: wp-login.php:104 ++msgid "To reset your password visit the following address, otherwise just ignore this email and nothing will happen." ++msgstr "Untuk men-set-ulang kata sandi Anda kunjungi alamat berikut. Jika tidak hiraukan email ini dan tidak akan terjadi apa-apa." ++ ++#: wp-login.php:107 ++#, php-format ++msgid "[%s] Password Reset" ++msgstr "Set Ulang Kata Sandi [%s]" ++ ++#: wp-login.php:108 ++#: wp-login.php:135 ++msgid "The e-mail could not be sent." ++msgstr "E-mail tidak dapat dikirim" ++ ++#: wp-login.php:108 ++#: wp-login.php:135 ++msgid "Possible reason: your host may have disabled the mail() function..." ++msgstr "Kemungkinan penyebab: host Anda menonaktifkan fungsi mail()..." ++ ++#: wp-login.php:119 ++#: wp-login.php:123 ++msgid "Invalid key" ++msgstr "Kunci tidak sah" ++ ++#: wp-login.php:134 ++#, php-format ++msgid "[%s] Your new password" ++msgstr "[%s] Kata sandi baru Anda" ++ ++#: wp-login.php:140 ++#, php-format ++msgid "Password Lost and Changed for user: %s" ++msgstr "Kata Sandi Hilang dan Diubah untuk pengguna: %s" ++ ++#: wp-login.php:141 ++#, php-format ++msgid "[%s] Password Lost/Changed" ++msgstr "[%s] Kata Sandi Hilang/Diubah" ++ ++#: wp-login.php:157 ++msgid "ERROR: This username is invalid. Please enter a valid username." ++msgstr "GALAT: Nama pengguna ini tidak valid. Mohon masukkan nama pengguna yang valid." ++ ++#: wp-login.php:160 ++msgid "ERROR: This username is already registered, please choose another one." ++msgstr "GALAT: Nama pengguna ini sudah terdaftar. Mohon pilih yang lain." ++ ++#: wp-login.php:164 ++msgid "ERROR: Please type your e-mail address." ++msgstr "GALAT: Mohon ketikkan alamat e-mail Anda." ++ ++#: wp-login.php:166 ++msgid "ERROR: The email address isn’t correct." ++msgstr "GALAT: Alamat email tidak benar." ++ ++#: wp-login.php:169 ++msgid "ERROR: This email is already registered, please choose another one." ++msgstr "GALAT: Alamat email ini sudah terdaftar, silakan pilih yang lain." ++ ++#: wp-login.php:181 ++#, php-format ++msgid "ERROR: Couldn’t register you... please contact the webmaster !" ++msgstr "GALAT: Tidak dapat mendaftarkan Anda... mohon hubungi webmaster !" ++ ++#: wp-login.php:244 ++msgid "Sorry, that key does not appear to be valid." ++msgstr "Maaf, key itu sepertinya tidak valid." ++ ++#: wp-login.php:247 ++msgid "Lost Password" ++msgstr "Kata Sandi Hilang" ++ ++#: wp-login.php:247 ++msgid "Please enter your username or e-mail address. You will receive a new password via e-mail." ++msgstr "Mohon masukkan nama penggua atau alamat e-mail Anda. Anda akan menerima kata sandi baru melalui e-mail." ++ ++#: wp-login.php:252 ++msgid "Username or E-mail:" ++msgstr "Nama Pengguna atau E-mail:" ++ ++#: wp-login.php:256 ++msgid "Get New Password" ++msgstr "Dapatkan Kata Sandi Baru" ++ ++#: wp-login.php:270 ++#: wp-login.php:335 ++#: wp-login.php:412 ++msgid "Are you lost?" ++msgstr "Apakah Anda tersesat?" ++ ++#: wp-login.php:270 ++#: wp-login.php:335 ++#: wp-login.php:412 ++#, php-format ++msgid "« Back to %s" ++msgstr "« Kembali ke %s" ++ ++#: wp-login.php:311 ++msgid "Registration Form" ++msgstr "Form Pendaftaran" ++ ++#: wp-login.php:311 ++msgid "Register For This Site" ++msgstr "Daftar di Situs Ini" ++ ++#: wp-login.php:324 ++msgid "A password will be e-mailed to you." ++msgstr "Sebuah kata sandi akan dikirim ke e-mail Anda." ++ ++#: wp-login.php:330 ++#: wp-login.php:404 ++#: wp-login.php:406 ++msgid "Password Lost and Found" ++msgstr "Kata Sandi Hilang dan Ditemukan" ++ ++#: wp-login.php:330 ++#: wp-login.php:404 ++#: wp-login.php:406 ++msgid "Lost your password?" ++msgstr "Kehilangan kata sandi Anda?" ++ ++#: wp-login.php:366 ++msgid "ERROR: Cookies are blocked or not supported by your browser. You must enable cookies to use WordPress." ++msgstr "GALAT: Cookies diblokir atau tidak didukung oleh perambah Anda. Anda harus mengaktifkan cookies untuk menggunakan WordPress." ++ ++#: wp-login.php:369 ++msgid "You are now logged out." ++msgstr "Anda sekarang sudah keluar log." ++ ++#: wp-login.php:370 ++msgid "User registration is currently not allowed." ++msgstr "Pendaftaran pengguna saat ini tidak dibuka." ++ ++#: wp-login.php:371 ++msgid "Check your e-mail for the confirmation link." ++msgstr "Periksa e-mail Anda untuk taut konfirmasi." ++ ++#: wp-login.php:372 ++msgid "Check your e-mail for your new password." ++msgstr "Periksa e-mail Anda untuk kata sandi baru Anda." ++ ++#: wp-login.php:373 ++msgid "Registration complete. Please check your e-mail." ++msgstr "Registrasi selesai. Silakan periksa e-mail Anda." ++ ++#: wp-login.php:375 ++msgid "Login" ++msgstr "Masuk log" ++ ++#: wp-login.php:389 ++msgid "Remember Me" ++msgstr "Ingat Saya" ++ ++#: xmlrpc.php:152 ++#: xmlrpc.php:690 ++#: xmlrpc.php:712 ++#: xmlrpc.php:734 ++msgid "Bad login/pass combination." ++msgstr "Kombinasi login/kata sandi yang salah." ++ ++#: xmlrpc.php:238 ++msgid "Sorry, you can not edit this page." ++msgstr "Maaf, Anda tidak dapat menyunting halaman ini." ++ ++#: xmlrpc.php:305 ++#: xmlrpc.php:409 ++#: xmlrpc.php:452 ++msgid "Sorry, no such page." ++msgstr "Maaf, tidak ada halaman seperti itu." ++ ++#: xmlrpc.php:326 ++#: xmlrpc.php:496 ++msgid "Sorry, you can not edit pages." ++msgstr "Maaf, Anda tidak dapat menyunting halaman." ++ ++#: xmlrpc.php:374 ++msgid "Sorry, you can not add new pages." ++msgstr "Maaf, Anda tidak dapat menambahkan halaman baru." ++ ++#: xmlrpc.php:415 ++msgid "Sorry, you do not have the right to delete this page." ++msgstr "Maaf, Anda tidak memiliki hak untuk menghapus halaman ini." ++ ++#: xmlrpc.php:421 ++msgid "Failed to delete the page." ++msgstr "Gagal untuk menghapus halaman ini." ++ ++#: xmlrpc.php:458 ++msgid "Sorry, you do not have the right to edit this page." ++msgstr "Maaf, Anda tidak memiliki hak untuk menyunting halaman ini." ++ ++#: xmlrpc.php:546 ++msgid "Sorry, you can not edit posts on this blog." ++msgstr "Maaf, Anda tidak dapat menyunting tulisan di blog ini." ++ ++#: xmlrpc.php:585 ++msgid "Sorry, you do not have the right to add a category." ++msgstr "Maaf, Anda tidak memiliki hak untuk menambahkan kategori." ++ ++#: xmlrpc.php:613 ++msgid "Sorry, the new category failed." ++msgstr "Maaf, kategori baru gagal." ++ ++#: xmlrpc.php:639 ++msgid "Sorry, you do not have the right to delete a category." ++msgstr "Maaf, Anda tidak memiliki hak untuk menghapus sebuah kategori." ++ ++#: xmlrpc.php:665 ++msgid "Sorry, you must be able to edit posts to this blog in order to view categories." ++msgstr "Maaf, Anda harus memiliki wewenang penyuntingan tulisan di blog ini untuk dapat melihat kategori." ++ ++#: xmlrpc.php:695 ++msgid "You are not allowed access to details about comments." ++msgstr "Anda tidak diperbolehkan untuk mengakses hal-hal detail mengenai komentar." ++ ++#: xmlrpc.php:717 ++#: xmlrpc.php:739 ++msgid "You are not allowed access to details about this blog." ++msgstr "Anda tidak diperbolehkan untuk mengakses hal-hal detail mengenai blog ini." ++ ++#: xmlrpc.php:795 ++msgid "Sorry, you do not have access to user data on this blog." ++msgstr "Maaf, Anda tidak memiliki akses terhadap data pengguna di blog ini." ++ ++#: xmlrpc.php:828 ++#: xmlrpc.php:1624 ++#: xmlrpc.php:2013 ++#: xmlrpc.php:2052 ++#: xmlrpc.php:2141 ++msgid "Sorry, you can not edit this post." ++msgstr "Maaf, Anda tidak dapat menyunting tulisan ini." ++ ++#: xmlrpc.php:872 ++#: xmlrpc.php:1714 ++#: xmlrpc.php:1932 ++msgid "Either there are no posts, or something went wrong." ++msgstr "Entah tidak ada tulisan, atau sesuatu yang salah telah terjadi." ++ ++#: xmlrpc.php:923 ++#: xmlrpc.php:960 ++msgid "Sorry, this user can not edit the template." ++msgstr "Maaf, pengguna ini tidak dapat menyunting templat." ++ ++#: xmlrpc.php:971 ++msgid "Either the file is not writable, or something wrong happened. The file has not been updated." ++msgstr "Entah berkas tersebut tidak dapat ditulis, atau sesuatu yang salah terjadi. Berkas tersebut belum diperbarui." ++ ++#: xmlrpc.php:998 ++msgid "Sorry, you are not allowed to post on this blog." ++msgstr "Maaf, Anda tidak diperbolehkan untuk mengirim tulisan ke blog ini." ++ ++#: xmlrpc.php:1047 ++#: xmlrpc.php:1096 ++#: xmlrpc.php:1690 ++#: xmlrpc.php:2098 ++msgid "Sorry, no such post." ++msgstr "Maaf, tidak ada tulisan seperti itu." ++ ++#: xmlrpc.php:1059 ++#: xmlrpc.php:1564 ++msgid "Sorry, you do not have the right to publish this post." ++msgstr "Maaf, Anda tidak memiliki hak untuk mempublikasikan tulisan ini." ++ ++#: xmlrpc.php:1136 ++#: xmlrpc.php:1385 ++msgid "Sorry, you are not allowed to publish posts on this blog." ++msgstr "Maaf, Anda tidak diperbolehkan untuk menerbitkan tulisan di blog ini." ++ ++#: xmlrpc.php:1141 ++#: xmlrpc.php:1390 ++msgid "Sorry, you are not allowed to publish pages on this blog." ++msgstr "Maaf, Anda tidak diperbolehkan untuk menerbitkan halaman di blog ini." ++ ++#: xmlrpc.php:1149 ++#: xmlrpc.php:1198 ++#: xmlrpc.php:1398 ++#: xmlrpc.php:1458 ++msgid "Invalid post type." ++msgstr "Tipe tulisan tidak valid." ++ ++#: xmlrpc.php:1189 ++msgid "You are not allowed to post as this user" ++msgstr "Anda tidak diperbolehkan untuk mengirim tulisan sebagai pengguna ini" ++ ++#: xmlrpc.php:1194 ++msgid "You are not allowed to create pages as this user" ++msgstr "Anda tidak diperbolehkan untuk membuat halaman sebagai pengguna ini" ++ ++#: xmlrpc.php:1412 ++msgid "Invalid post id." ++msgstr "ID tulisan tidak valid." ++ ++#: xmlrpc.php:1449 ++msgid "You are not allowed to change the post author as this user." ++msgstr "Anda tidak diperbolehkan untuk mengganti penulis tulisan sebagai pengguna ini." ++ ++#: xmlrpc.php:1454 ++msgid "You are not allowed to change the page author as this user." ++msgstr "Anda tidak diperbolehkan untuk mengganti penulis halaman sebagai pengguna ini." ++ ++#: xmlrpc.php:1562 ++msgid "Sorry, you do not have the right to publish this page." ++msgstr "Maaf, Anda tidak memiliki hak untuk mempublikasikan halaman ini." ++ ++#: xmlrpc.php:1594 ++msgid "Sorry, your entry could not be edited. Something wrong happened." ++msgstr "Maaf, entri Anda tidak dapat disunting. Terjadi suatu kesalahan." ++ ++#: xmlrpc.php:1809 ++#: xmlrpc.php:1979 ++msgid "Sorry, you must be able to edit posts on this blog in order to view categories." ++msgstr "Maaf, Anda harus memiliki wewenang penyuntingan tulisan di blog ini untuk melihat kategori." ++ ++#: xmlrpc.php:1858 ++msgid "You are not allowed to upload files to this site." ++msgstr "Anda tidak diperkenankan mengunggah berkas." ++ ++#: xmlrpc.php:1885 ++#, php-format ++msgid "Could not write file %1$s (%2$s)" ++msgstr "Tidak dapat menulis berkas %1$s (%2$s)" ++ ++#: xmlrpc.php:2183 ++msgid "Is there no link to us?" ++msgstr "Tidak adakah taut untuk kami?" ++ ++#: xmlrpc.php:2223 ++#: xmlrpc.php:2233 ++#: xmlrpc.php:2240 ++#: xmlrpc.php:2342 ++msgid "The specified target URL cannot be used as a target. It either doesn't exist, or it is not a pingback-enabled resource." ++msgstr "URL target yang diberikan tidak dapat digunakan. Entah karena tidak ada, atau karena bukan merupakan sumberdaya yang mendukung pingback." ++ ++#: xmlrpc.php:2236 ++msgid "The source URL and the target URL cannot both point to the same resource." ++msgstr "URL sumber dan URL target tersebut tidak dapat menunjuk ke sumber yang sama." ++ ++#: xmlrpc.php:2246 ++msgid "The pingback has already been registered." ++msgstr "Ping balik tersebut telah terdaftar." ++ ++#: xmlrpc.php:2254 ++msgid "The source URL does not exist." ++msgstr "URL sumber tidak ada." ++ ++#: xmlrpc.php:2266 ++msgid "We cannot find a title on that page." ++msgstr "Kami tidak dapat menemukan judul pada halaman tersebut." ++ ++#: xmlrpc.php:2302 ++msgid "The source URL does not contain a link to the target URL, and so cannot be used as a source." ++msgstr "URL sumber tersebut tidak mengandung sebuah taut ke URL target, sehingga tidak dapat digunakan sebagai sumber." ++ ++#: xmlrpc.php:2322 ++#, php-format ++msgid "Pingback from %1$s to %2$s registered. Keep the web talking! :-)" ++msgstr "Pingbalik dari %1$s ke %2$s telah terdaftar. Buat web terus berbicara! :-)" ++ ++#: xmlrpc.php:2349 ++msgid "The specified target URL does not exist." ++msgstr "URL target yang diberikan tidak ada." ++ +diff -Nru wordpress/wp-content/languages/ja.po wordpress-2.5.0/wp-content/languages/ja.po +--- wordpress/wp-content/languages/ja.po 1970-01-01 01:00:00.000000000 +0100 ++++ wordpress-2.5.0/wp-content/languages/ja.po 2008-04-18 14:21:14.000000000 +0200 +@@ -0,0 +1,10707 @@ ++# WordPress 甚日本語リ゜ヌス (UTF-8) ++# Japanese (UTF-8) translation for WordPress ++# ++# Copyright (c) 2005-2008 ++# このファむルは WordPress 本䜓ず同じラむセンスのもず配垃されおいたす。 ++# This file is distributed under the same license as the WordPress package. ++# ++# WordPress 日本語版䜜成チヌム / WP ja translation team ++# ++# ++# 誀字脱字誀蚳、あるいはよりよい蚳などありたしたら以䞋たでぜひお知らせください。 ++# たた、翻蚳、校正、コミットをお手䌝いしおいただける方も随時募集䞭です。 ++# 連絡先 / Contact: wpja.team@gmail.com (件名か内容に「日本語リ゜ヌス」ず入れおください) ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: WordPress 2.5 ja 1.0\n" ++"Report-Msgid-Bugs-To: wp-polyglots@lists.automattic.com\n" ++"POT-Creation-Date: 2008-03-29 18:22+0200\n" ++"PO-Revision-Date: 2008-03-30 12:49+0900\n" ++"Last-Translator: Takayuki Miyoshi \n" ++"Language-Team: wp-ja \n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++"X-Poedit-Language: Japanese\n" ++"X-Poedit-Country: JAPAN\n" ++"Plural-Forms: nplurals=1; plural=0;\n" ++"X-Poedit-SourceCharset: utf-8\n" ++"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_c\n" ++"X-Poedit-Basepath: /Applications/MAMP/htdocs\n" ++"X-Poedit-SearchPath-0: wp-trunk\n" ++ ++#: wp-admin/admin-ajax.php:69 ++#: wp-admin/categories.php:40 ++#: wp-admin/categories.php:60 ++#: wp-admin/edit-link-categories.php:16 ++#: wp-admin/link-category.php:34 ++#, php-format ++msgid "Can’t delete the %s category: this is the default one" ++msgstr "カテゎリヌ %s は削陀できたせん。これはデフォルトのカテゎリヌです。" ++ ++#: wp-admin/admin-ajax.php:227 ++#: wp-admin/admin-ajax.php:279 ++#: wp-admin/includes/taxonomy.php:62 ++msgid "You did not enter a category name." ++msgstr "カテゎリヌ名が入力されたせんでした。" ++ ++#: wp-admin/admin-ajax.php:235 ++msgid "The category you are trying to create already exists." ++msgstr "䜜成しようずしたカテゎリヌはすでに存圚したす。" ++ ++#: wp-admin/admin-ajax.php:267 ++#, php-format ++msgid "Category %s added" ++msgstr "カテゎリヌ %s が远加されたした" ++ ++#: wp-admin/admin-ajax.php:313 ++msgid "You did not enter a tag name." ++msgstr "タグ名が入力されたせんでした。" ++ ++#: wp-admin/admin-ajax.php:338 ++#, php-format ++msgid "Tag %s added" ++msgstr "タグ %s が远加されたした" ++ ++#: wp-admin/admin-ajax.php:456 ++#, php-format ++msgid "User %s added" ++msgstr " ナヌザヌ %s が远加されたした" ++ ++#: wp-admin/admin-ajax.php:476 ++#, php-format ++msgid "Draft Saved at %s." ++msgstr "䞋曞きが %s に保存されたした。" ++ ++#: wp-admin/admin-ajax.php:476 ++msgid "g:i:s a" ++msgstr "g:i:s a" ++ ++#: wp-admin/admin-ajax.php:496 ++msgid "Someone" ++msgstr "誰か" ++ ++#: wp-admin/admin-ajax.php:498 ++#, php-format ++msgid "Autosave disabled: %s is currently editing this page." ++msgstr "オヌトセヌブ無効: 珟圚 %s さんがこのペヌゞを線集䞭です。" ++ ++#: wp-admin/admin-ajax.php:498 ++#, php-format ++msgid "Autosave disabled: %s is currently editing this post." ++msgstr "オヌトセヌブ無効: 珟圚 %s さんがこの投皿を線集䞭です。" ++ ++#: wp-admin/admin-ajax.php:507 ++#: wp-admin/includes/post.php:10 ++#: wp-admin/page.php:97 ++msgid "You are not allowed to edit this page." ++msgstr "このペヌゞの線集は蚱可されおいたせん。" ++ ++#: wp-admin/admin-ajax.php:510 ++#: wp-admin/includes/post.php:13 ++#: wp-admin/post.php:104 ++msgid "You are not allowed to edit this post." ++msgstr "この投皿の線集は蚱可されおいたせん。" ++ ++#: wp-admin/admin-footer.php:8 ++msgid "Thank you for creating with WordPress" ++msgstr "WordPress のご利甚ありがずうございたす" ++ ++#: wp-admin/admin-footer.php:8 ++msgid "Documentation" ++msgstr "オンラむン資料 (英語)" ++ ++#: wp-admin/admin-footer.php:8 ++msgid "Feedback" ++msgstr "フィヌドバック" ++ ++#: wp-admin/admin-header.php:64 ++msgid "Visit Site" ++msgstr "サむトを衚瀺" ++ ++#: wp-admin/admin-header.php:66 ++#, php-format ++msgid "Howdy, %2$s!" ++msgstr "こんにちは、%2$sさん !" ++ ++#: wp-admin/admin-header.php:66 ++msgid "Log Out" ++msgstr "ログアりト" ++ ++#: wp-admin/admin-header.php:66 ++msgid "Help" ++msgstr "ヘルプ (英語)" ++ ++#: wp-admin/admin-header.php:66 ++msgid "Forums" ++msgstr "フォヌラム" ++ ++#: wp-admin/admin.php:29 ++msgid "Classic" ++msgstr "クラシック" ++ ++#: wp-admin/admin.php:30 ++msgid "Fresh" ++msgstr "フレッシュ" ++ ++#: wp-admin/admin.php:58 ++msgid "Invalid plugin page" ++msgstr "無効なプラグむンのペヌゞ" ++ ++#: wp-admin/admin.php:62 ++#, php-format ++msgid "Cannot load %s." ++msgstr "%s を読み蟌めたせん。" ++ ++#: wp-admin/admin.php:80 ++msgid "You are not allowed to import." ++msgstr "むンポヌトの暩限がありたせん。" ++ ++#: wp-admin/admin.php:83 ++msgid "Invalid importer." ++msgstr "無効なむンポヌタヌです。" ++ ++#: wp-admin/admin.php:91 ++msgid "Cannot load importer." ++msgstr "むンポヌタヌを読み蟌めたせん。" ++ ++#: wp-admin/admin.php:98 ++#: wp-admin/import/blogger.php:151 ++#: wp-admin/import.php:3 ++#: wp-admin/import.php:9 ++#: wp-admin/import/textpattern.php:49 ++#: wp-admin/menu.php:47 ++msgid "Import" ++msgstr "むンポヌト" ++ ++#: wp-admin/async-upload.php:21 ++#: wp-admin/media-upload.php:11 ++#: wp-admin/upload.php:5 ++#: wp-app.php:407 ++#: wp-app.php:562 ++msgid "You do not have permission to upload files." ++msgstr "ファむルをアップロヌドをする暩限がありたせん。" ++ ++#: wp-admin/bookmarklet.php:6 ++#: wp-admin/categories.php:19 ++#: wp-admin/categories.php:34 ++#: wp-admin/categories.php:86 ++#: wp-admin/edit-link-categories.php:9 ++#: wp-admin/edit-tags.php:19 ++#: wp-admin/edit-tags.php:35 ++#: wp-admin/edit-tags.php:48 ++#: wp-admin/edit-tags.php:82 ++#: wp-admin/import/wp-cat2tag.php:210 ++#: wp-admin/includes/bookmark.php:9 ++#: wp-admin/link-category.php:13 ++#: wp-admin/link-category.php:28 ++#: wp-admin/link-category.php:68 ++#: wp-admin/link-import.php:17 ++#: wp-admin/link-import.php:69 ++#: wp-admin/options.php:11 ++#: wp-admin/sidebar.php:7 ++#: wp-admin/users.php:6 ++#: wp-admin/widgets.php:7 ++#: wp-content/plugins/akismet/akismet.php:50 ++msgid "Cheatin’ uh?" ++msgstr "間違えたしたか ?" ++ ++#: wp-admin/categories.php:4 ++#: wp-admin/edit-form-advanced.php:217 ++#: wp-admin/edit-form.php:19 ++#: wp-admin/edit-link-form.php:101 ++#: wp-admin/includes/template.php:295 ++#: wp-admin/link-category.php:52 ++#: wp-admin/link-manager.php:123 ++#: wp-admin/menu.php:43 ++#: wp-includes/category-template.php:276 ++#: wp-includes/widgets.php:686 ++#: wp-includes/widgets.php:814 ++msgid "Categories" ++msgstr "カテゎリヌ" ++ ++#: wp-admin/categories.php:53 ++msgid "You are not allowed to delete categories." ++msgstr "カテゎリヌを削陀する暩限がありたせん。" ++ ++#: wp-admin/categories.php:108 ++#: wp-admin/edit-link-categories.php:43 ++msgid "Category added." ++msgstr "カテゎリヌが远加されたした。" ++ ++#: wp-admin/categories.php:109 ++#: wp-admin/edit-link-categories.php:44 ++msgid "Category deleted." ++msgstr "カテゎリヌが削陀されたした。" ++ ++#: wp-admin/categories.php:110 ++#: wp-admin/edit-link-categories.php:45 ++msgid "Category updated." ++msgstr "カテゎリヌが曎新されたした。" ++ ++#: wp-admin/categories.php:111 ++#: wp-admin/edit-link-categories.php:46 ++msgid "Category not added." ++msgstr "カテゎリヌは远加されたせんでした。" ++ ++#: wp-admin/categories.php:112 ++#: wp-admin/edit-link-categories.php:47 ++msgid "Category not updated." ++msgstr "カテゎリヌは曎新されたせんでした。" ++ ++#: wp-admin/categories.php:123 ++#, php-format ++msgid "Manage Categories (add new)" ++msgstr "カテゎリヌの管理 (新芏远加)" ++ ++#: wp-admin/categories.php:125 ++msgid "Manage Categories" ++msgstr "カテゎリヌの管理" ++ ++#: wp-admin/categories.php:130 ++#: wp-admin/edit-link-categories.php:66 ++msgid "Search Categories" ++msgstr "カテゎリヌを怜玢" ++ ++#: wp-admin/categories.php:138 ++#: wp-admin/edit-comments.php:173 ++#: wp-admin/edit-link-categories.php:92 ++#: wp-admin/edit-pages.php:121 ++#: wp-admin/edit.php:138 ++#: wp-admin/edit-post-rows.php:174 ++#: wp-admin/edit-tags.php:163 ++#: wp-admin/includes/media.php:690 ++#: wp-admin/includes/template.php:689 ++#: wp-admin/includes/template.php:778 ++#: wp-admin/link-manager.php:90 ++#: wp-admin/upload.php:149 ++#: wp-admin/users.php:301 ++msgid "Delete" ++msgstr "削陀 " ++ ++#: wp-admin/categories.php:151 ++#: wp-admin/edit-form-comment.php:67 ++#: wp-admin/edit-link-categories.php:105 ++#: wp-admin/edit-link-form.php:77 ++#: wp-admin/edit-tags.php:176 ++#: wp-admin/link-manager.php:121 ++#: wp-admin/themes.php:100 ++#: wp-admin/user-edit.php:194 ++#: wp-admin/users.php:335 ++#: wp-content/themes/classic/comments.php:51 ++#: wp-content/themes/classic/comments-popup.php:64 ++#: wp-includes/js/tinymce/langs/wp-langs.php:299 ++msgid "Name" ++msgstr "名前" ++ ++#: wp-admin/categories.php:152 ++#: wp-admin/edit-category-form.php:45 ++#: wp-admin/edit-link-categories.php:106 ++#: wp-admin/edit-link-form.php:93 ++#: wp-admin/includes/media.php:447 ++#: wp-admin/includes/media.php:544 ++#: wp-admin/includes/media.php:626 ++#: wp-admin/includes/media.php:1089 ++#: wp-admin/plugins.php:108 ++#: wp-admin/themes.php:101 ++#: wp-includes/script-loader.php:185 ++msgid "Description" ++msgstr "説明" ++ ++#: wp-admin/categories.php:153 ++#: wp-admin/edit.php:34 ++#: wp-admin/edit-tags.php:177 ++#: wp-admin/import/blogger.php:162 ++#: wp-admin/menu.php:40 ++#: wp-admin/users.php:338 ++msgid "Posts" ++msgstr "投皿" ++ ++#: wp-admin/categories.php:173 ++#, php-format ++msgid "Note:
    Deleting a category does not delete the posts in that category. Instead, posts that were only assigned to the deleted category are set to the category %s." ++msgstr "メモ:
    カテゎリヌを削陀しおも、そのカテゎリヌ内の投皿は削陀されたせん。その代わり、削陀したカテゎリヌだけに属しおいた投皿は %s カテゎリヌに移動されたす。" ++ ++#: wp-admin/categories.php:174 ++#, php-format ++msgid "Categories can be selectively converted to tags using the category to tag converter." ++msgstr "カテゎリヌをタグに倉換するコンバヌタヌ を䜿甚するずカテゎリヌを遞択しおタグに倉換するこずができたす。" ++ ++#: wp-admin/comment.php:21 ++#: wp-admin/edit-form-comment.php:2 ++msgid "Edit Comment" ++msgstr "コメント線集" ++ ++#: wp-admin/comment.php:30 ++#: wp-admin/comment.php:52 ++#: wp-admin/comment.php:134 ++#: wp-admin/comment.php:162 ++#: wp-admin/comment.php:187 ++msgid "Oops, no comment with this ID." ++msgstr "この ID のコメントはありたせん。" ++ ++#: wp-admin/comment.php:30 ++#: wp-admin/comment.php:52 ++#: wp-admin/comment.php:134 ++#: wp-admin/comment.php:162 ++#: wp-admin/comment.php:187 ++msgid "Go back" ++msgstr "戻る" ++ ++#: wp-admin/comment.php:33 ++#: wp-admin/comment.php:137 ++msgid "You are not allowed to edit comments on this post." ++msgstr "この投皿ぞのコメントの線集は蚱可されおいたせん。" ++ ++#: wp-admin/comment.php:55 ++msgid "You are not allowed to delete comments on this post." ++msgstr "この投皿ぞのコメントの削陀は蚱可されおいたせん。" ++ ++#: wp-admin/comment.php:55 ++#: wp-admin/comment.php:190 ++msgid "You are not allowed to edit comments on this post, so you cannot approve this comment." ++msgstr "この投皿のコメントを線集する暩限がないので、このコメントを承認するこずはできたせん。" ++ ++#: wp-admin/comment.php:62 ++msgid "You are about to mark the following comment as spam:" ++msgstr "このコメントをスパムずしおマヌクしようずしおいたす:" ++ ++#: wp-admin/comment.php:63 ++msgid "Spam Comment" ++msgstr "コメントをスパムずしおマヌクする" ++ ++#: wp-admin/comment.php:65 ++msgid "You are about to delete the following comment:" ++msgstr "このコメントを削陀しようずしおいたす:" ++ ++#: wp-admin/comment.php:66 ++msgid "Delete Comment" ++msgstr "コメントを削陀する" ++ ++#: wp-admin/comment.php:68 ++msgid "You are about to approve the following comment:" ++msgstr "このコメントを承認しようずしおいたす:" ++ ++#: wp-admin/comment.php:69 ++msgid "Approve Comment" ++msgstr "コメントを承認する" ++ ++#: wp-admin/comment.php:73 ++msgid "Caution:" ++msgstr "泚意:" ++ ++#: wp-admin/comment.php:75 ++msgid "Are you sure you want to do that?" ++msgstr "本圓に実行しおいいですか ?" ++ ++#: wp-admin/comment.php:81 ++#: wp-admin/link-manager.php:163 ++#: wp-admin/update.php:64 ++msgid "No" ++msgstr "いいえ" ++ ++#: wp-admin/comment.php:98 ++#: wp-admin/includes/template.php:294 ++#: wp-admin/includes/template.php:331 ++#: wp-includes/js/tinymce/langs/wp-langs.php:243 ++msgid "Author" ++msgstr "䜜成者" ++ ++#: wp-admin/comment.php:103 ++#: wp-admin/edit-form-comment.php:74 ++#: wp-admin/user-edit.php:270 ++#: wp-admin/users.php:336 ++#: wp-content/themes/classic/comments-popup.php:71 ++#: wp-login.php:320 ++msgid "E-mail" ++msgstr "メヌルアドレス" ++ ++#: wp-admin/comment.php:109 ++#: wp-admin/edit-form-comment.php:81 ++#: wp-admin/includes/media.php:1179 ++#: wp-admin/includes/template.php:938 ++#: wp-admin/link-manager.php:122 ++#: wp-includes/script-loader.php:184 ++msgid "URL" ++msgstr "URL" ++ ++#: wp-admin/comment.php:114 ++#: wp-admin/edit-comments.php:190 ++#: wp-admin/edit-form-comment.php:88 ++#: wp-admin/edit-pages.php:191 ++#: wp-admin/edit.php:217 ++#: wp-admin/upload.php:227 ++#: wp-content/themes/classic/comments.php:18 ++#: wp-content/themes/classic/comments-popup.php:45 ++msgid "Comment" ++msgstr "コメント" ++ ++#: wp-admin/comment.php:165 ++msgid "You are not allowed to edit comments on this post, so you cannot disapprove this comment." ++msgstr "この投皿のコメントを線集する暩限がないので、このコメントを非承認にするこずはできたせん。" ++ ++#: wp-admin/comment.php:223 ++msgid "Unknown action." ++msgstr "䞍明なアクション" ++ ++#: wp-admin/custom-header.php:11 ++msgid "Custom Image Header" ++msgstr "カスタム画像ヘッダヌ" ++ ++#: wp-admin/custom-header.php:128 ++msgid "Show Text" ++msgstr "テキストを衚瀺" ++ ++#: wp-admin/custom-header.php:139 ++#: wp-admin/custom-header.php:169 ++msgid "Hide Text" ++msgstr "テキストを隠す" ++ ++#: wp-admin/custom-header.php:155 ++msgid "Header updated." ++msgstr "ヘッダヌが曎新されたした。" ++ ++#: wp-admin/custom-header.php:160 ++msgid "Your Header Image" ++msgstr "ヘッダヌ画像" ++ ++#: wp-admin/custom-header.php:161 ++msgid "This is your header image. You can change the text color or upload and crop a new image." ++msgstr "これはヘッダヌ画像です。文字色の倉曎や新しい画像のアップロヌド/トリミングをするこずができたす。" ++ ++#: wp-admin/custom-header.php:170 ++msgid "Select a Text Color" ++msgstr "文字色を遞択" ++ ++#: wp-admin/custom-header.php:170 ++msgid "Use Original Color" ++msgstr "オリゞナル色を䜿甚" ++ ++#: wp-admin/custom-header.php:172 ++#: wp-admin/edit-link-form.php:4 ++#: wp-admin/import/blogger.php:616 ++#: wp-admin/media.php:78 ++#: wp-admin/options-discussion.php:119 ++#: wp-admin/options-general.php:113 ++#: wp-admin/options-misc.php:94 ++#: wp-admin/options-permalink.php:181 ++#: wp-admin/options.php:88 ++#: wp-admin/options-privacy.php:27 ++#: wp-admin/options-reading.php:70 ++#: wp-admin/options-writing.php:114 ++#: wp-admin/widgets.php:307 ++msgid "Save Changes" ++msgstr "倉曎を保存" ++ ++#: wp-admin/custom-header.php:178 ++msgid "Upload New Header Image" ++msgstr "新しいヘッダヌ画像のアップロヌド" ++ ++#: wp-admin/custom-header.php:178 ++msgid "Here you can upload a custom header image to be shown at the top of your blog instead of the default one. On the next screen you will be able to crop the image." ++msgstr "ここではデフォルトの代わりに衚瀺させるカスタムなヘッダヌ画像をアップロヌドするこずができたす。次の画面ではアップロヌドした画像をトリミングするこずができたす。" ++ ++#: wp-admin/custom-header.php:179 ++#, php-format ++msgid "Images of exactly %1$d x %2$d pixels will be used as-is." ++msgstr "画像の倧きさを %1$d x %2$d ピクセルにするずそのたたの倧きさで衚瀺されたす。" ++ ++#: wp-admin/custom-header.php:182 ++msgid "Choose an image from your computer:" ++msgstr "自分のコンピュヌタから画像を遞択:" ++ ++#: wp-admin/custom-header.php:186 ++#: wp-admin/includes/media.php:834 ++msgid "Upload" ++msgstr "アップロヌド" ++ ++#: wp-admin/custom-header.php:194 ++msgid "Reset Header Image and Color" ++msgstr "ヘッダヌ画像ず色のリセット" ++ ++#: wp-admin/custom-header.php:195 ++msgid "This will restore the original header image and color. You will not be able to retrieve any customizations." ++msgstr "この操䜜によりオリゞナルのヘッダヌ画像ず色に戻したす。いったんオリゞナルに戻すずカスタム蚭定を回埩させるこずはできたせん。" ++ ++#: wp-admin/custom-header.php:198 ++msgid "Restore Original Header" ++msgstr "オリゞナルヘッダヌのリストア" ++ ++#: wp-admin/custom-header.php:254 ++msgid "Choose the part of the image you want to use as your header." ++msgstr "ヘッダヌずしお䜿甚したい郚分を画像から遞択しおください。" ++ ++#: wp-admin/custom-header.php:269 ++msgid "Crop Header" ++msgstr "ヘッダヌのトリミング" ++ ++#: wp-admin/custom-header.php:321 ++msgid "Header complete!" ++msgstr "ヘッダヌの倉曎完了 !" ++ ++#: wp-admin/custom-header.php:323 ++msgid "Visit your site and you should see the new header now." ++msgstr "ブログを開くず新しいヘッダヌが衚瀺されおいるはずです。" ++ ++#: wp-admin/edit-attachment-rows.php:53 ++#: wp-admin/edit-post-rows.php:75 ++#: wp-admin/includes/template.php:46 ++#: wp-admin/includes/template.php:79 ++#: wp-admin/includes/template.php:245 ++#: wp-admin/includes/template.php:403 ++#: wp-admin/link-manager.php:172 ++#, php-format ++msgid "Edit \"%s\"" ++msgstr "\"%s\" を線集する" ++ ++#: wp-admin/edit-attachment-rows.php:68 ++#: wp-admin/edit-form-advanced.php:96 ++#: wp-admin/edit-page-form.php:84 ++#: wp-admin/edit-post-rows.php:49 ++#: wp-admin/edit-post-rows.php:151 ++#: wp-admin/includes/template.php:377 ++#: wp-admin/includes/template.php:447 ++msgid "Unpublished" ++msgstr "未公開" ++ ++#: wp-admin/edit-attachment-rows.php:70 ++#: wp-admin/edit-post-rows.php:52 ++#: wp-admin/edit-post-rows.php:56 ++#: wp-admin/includes/template.php:380 ++#: wp-admin/includes/template.php:384 ++msgid "Y/m/d g:i:s A" ++msgstr "Y 幎 n 月 j 日 g:i:s a" ++ ++#: wp-admin/edit-attachment-rows.php:75 ++#: wp-admin/edit-post-rows.php:62 ++#: wp-admin/includes/template.php:390 ++#, php-format ++msgid "%s from now" ++msgstr "%s埌" ++ ++#: wp-admin/edit-attachment-rows.php:77 ++#: wp-admin/edit-post-rows.php:64 ++#: wp-admin/includes/template.php:392 ++#: wp-admin/includes/template.php:640 ++#, php-format ++msgid "%s ago" ++msgstr "%s前" ++ ++#: wp-admin/edit-attachment-rows.php:79 ++#: wp-admin/edit-post-rows.php:66 ++#: wp-admin/includes/template.php:394 ++#: wp-admin/includes/template.php:669 ++msgid "Y/m/d" ++msgstr "Y 幎 n 月 j 日" ++ ++#: wp-admin/edit-attachment-rows.php:88 ++#: wp-admin/edit-post-rows.php:31 ++#: wp-admin/includes/template.php:358 ++msgid "(no title)" ++msgstr "(タむトルなし)" ++ ++#: wp-admin/edit-attachment-rows.php:111 ++#: wp-admin/edit-post-rows.php:117 ++#: wp-admin/includes/template.php:413 ++#, php-format ++msgid "%s pending" ++msgstr "%s 件の承認埅ち" ++ ++#: wp-admin/edit-attachment-rows.php:114 ++#: wp-admin/edit-post-rows.php:120 ++#: wp-admin/includes/template.php:416 ++msgid "0" ++msgstr "0" ++ ++#: wp-admin/edit-attachment-rows.php:114 ++#: wp-admin/edit-post-rows.php:120 ++#: wp-admin/includes/template.php:416 ++msgid "1" ++msgstr "1" ++ ++#: wp-admin/edit-attachment-rows.php:114 ++#: wp-admin/edit-post-rows.php:120 ++#: wp-admin/includes/template.php:416 ++msgid "%" ++msgstr "%" ++ ++#: wp-admin/edit-attachment-rows.php:124 ++msgid "Permalink" ++msgstr "パヌマリンク" ++ ++#: wp-admin/edit-attachment-rows.php:142 ++#: wp-admin/edit-post-rows.php:192 ++msgid "No posts found." ++msgstr "芋぀かりたせんでした。" ++ ++#: wp-admin/edit-category-form.php:3 ++#: wp-admin/edit-category-form.php:4 ++#: wp-admin/edit-link-category-form.php:3 ++#: wp-admin/edit-link-category-form.php:4 ++msgid "Edit Category" ++msgstr "カテゎリヌの線集" ++ ++#: wp-admin/edit-category-form.php:10 ++#: wp-admin/edit-category-form.php:11 ++#: wp-admin/edit-link-category-form.php:10 ++#: wp-admin/edit-link-category-form.php:11 ++msgid "Add Category" ++msgstr "カテゎリヌの远加" ++ ++#: wp-admin/edit-category-form.php:28 ++msgid "Category Name" ++msgstr "カテゎリヌ名" ++ ++#: wp-admin/edit-category-form.php:30 ++msgid "The name is used to identify the category almost everywhere, for example under the post or in the category widget." ++msgstr "この名前はカテゎリヌの識別のために、䟋えば投皿の䞋やカテゎリヌりィゞェットの内郚など、いたるずころで䜿われたす。" ++ ++#: wp-admin/edit-category-form.php:33 ++msgid "Category Slug" ++msgstr "カテゎリヌスラッグ" ++ ++#: wp-admin/edit-category-form.php:35 ++#: wp-admin/edit-link-category-form.php:34 ++#: wp-admin/edit-tag-form.php:35 ++msgid "The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens." ++msgstr "“スラッグ” は URL 内で䜿甚可胜な圢匏にされた名前です。通垞はすべお小文字で構成され、アルファベット、数字、ハむフンを含めるこずができたす。" ++ ++#: wp-admin/edit-category-form.php:38 ++msgid "Category Parent" ++msgstr "芪カテゎリヌ" ++ ++#: wp-admin/edit-category-form.php:40 ++#: wp-admin/includes/media.php:456 ++#: wp-admin/includes/media.php:553 ++#: wp-admin/includes/media.php:1099 ++#: wp-includes/deprecated.php:741 ++#: wp-includes/script-loader.php:181 ++msgid "None" ++msgstr "なし" ++ ++#: wp-admin/edit-category-form.php:41 ++msgid "Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional." ++msgstr "タグずは異なり、カテゎリヌは階局構造を持぀こずができたす。䟋えば、ゞャズずいうカテゎリヌの䞋にビバップやビッグバンドずいう子カテゎリヌを䜜る、ずいったようなこずです。これはオプションです。" ++ ++#: wp-admin/edit-category-form.php:47 ++msgid "The description is not prominent by default, however some themes may show it." ++msgstr "この説明はデフォルトではあたり重芁な意味を持ちたせんが、これを衚瀺するテヌマも䞭にはありたす。" ++ ++#: wp-admin/edit-comments.php:4 ++msgid "Edit Comments" ++msgstr "コメント線集" ++ ++#: wp-admin/edit-comments.php:74 ++#, php-format ++msgid "%s comment approved" ++msgid_plural "%s comments approved" ++msgstr[0] "%s 件のコメントが承認されたした" ++ ++#: wp-admin/edit-comments.php:79 ++#, php-format ++msgid "%s comment deleted" ++msgid_plural "%s comments deleted" ++msgstr[0] "%s 件のコメントが削陀されたした" ++ ++#: wp-admin/edit-comments.php:84 ++#, php-format ++msgid "%s comment marked as spam" ++msgid_plural "%s comments marked as spam" ++msgstr[0] "%s 件のコメントがスパムずしおマヌクされたした。" ++ ++#: wp-admin/edit-comments.php:94 ++msgid "Manage Comments" ++msgstr "コメントの管理" ++ ++#: wp-admin/edit-comments.php:100 ++#, php-format ++msgid "Awaiting Moderation (%s)" ++msgid_plural "Awaiting Moderation (%s)" ++msgstr[0] "承認埅ち (%s) " ++ ++#: wp-admin/edit-comments.php:100 ++msgid "Approved|plural" ++msgstr "承認|耇数圢" ++ ++#: wp-admin/edit-comments.php:102 ++msgid "Show All Comments" ++msgstr "すべおのコメントを衚瀺" ++ ++#: wp-admin/edit-comments.php:121 ++msgid "Search Comments" ++msgstr "コメントを怜玢" ++ ++#: wp-admin/edit-comments.php:129 ++msgid "Detail View" ++msgstr "詳现衚瀺" ++ ++#: wp-admin/edit-comments.php:130 ++msgid "List View" ++msgstr "リスト衚瀺" ++ ++#: wp-admin/edit-comments.php:167 ++#: wp-admin/includes/template.php:675 ++#: wp-admin/includes/template.php:680 ++msgid "Approve" ++msgstr "承認" ++ ++#: wp-admin/edit-comments.php:169 ++msgid "Mark as Spam" ++msgstr "スパムずしおマヌク" ++ ++#: wp-admin/edit-comments.php:171 ++#: wp-admin/includes/template.php:676 ++#: wp-admin/includes/template.php:683 ++msgid "Unapprove" ++msgstr "承認しない" ++ ++#: wp-admin/edit-comments.php:191 ++#: wp-admin/edit-pages.php:192 ++#: wp-admin/edit.php:218 ++#: wp-admin/includes/template.php:292 ++#: wp-admin/includes/template.php:329 ++#: wp-admin/upload.php:228 ++msgid "Date" ++msgstr "日付" ++ ++#: wp-admin/edit-comments.php:192 ++#: wp-admin/edit-pages.php:193 ++#: wp-admin/edit.php:219 ++#: wp-admin/upload.php:229 ++msgid "Actions" ++msgstr "操䜜" ++ ++#: wp-admin/edit-comments.php:224 ++msgid "No comments awaiting moderation… yet." ++msgstr "承認埅ちのコメントはありたせん… 今のずころ。" ++ ++#: wp-admin/edit-comments.php:230 ++#: wp-content/plugins/akismet/akismet.php:614 ++msgid "No results found." ++msgstr "芋぀かりたせんでした。" ++ ++#: wp-admin/edit-form-advanced.php:5 ++#, php-format ++msgid "Post updated. Continue editing below or go back." ++msgstr "投皿を曎新したした。このたた線集を続けるか䞀芧に戻っおください。" ++ ++#: wp-admin/edit-form-advanced.php:6 ++#: wp-admin/edit-page-form.php:5 ++msgid "Custom field updated." ++msgstr "カスタムフィヌルドが曎新されたした。" ++ ++#: wp-admin/edit-form-advanced.php:7 ++#: wp-admin/edit-page-form.php:6 ++msgid "Custom field deleted." ++msgstr "カスタムフィヌルドが削陀されたした。" ++ ++#: wp-admin/edit-form-advanced.php:8 ++msgid "Post updated." ++msgstr "投皿が曎新されたした。" ++ ++#: wp-admin/edit-form-advanced.php:20 ++#: wp-admin/edit-form.php:3 ++msgid "Write Post" ++msgstr "投皿䜜成" ++ ++#: wp-admin/edit-form-advanced.php:42 ++msgid "Already pinged:" ++msgstr "送信枈みトラックバック/ピンバック:" ++ ++#: wp-admin/edit-form-advanced.php:50 ++msgid "Save and Continue Editing" ++msgstr "保存しお線集を続ける" ++ ++#: wp-admin/edit-form-advanced.php:78 ++msgid "View this Post" ++msgstr "この投皿を衚瀺" ++ ++#: wp-admin/edit-form-advanced.php:80 ++#: wp-includes/script-loader.php:499 ++msgid "Preview this Post" ++msgstr "この投皿をプレビュヌ" ++ ++#: wp-admin/edit-form-advanced.php:86 ++#: wp-admin/edit-page-form.php:72 ++msgid "Publish Status" ++msgstr "公開ステヌタス" ++ ++#: wp-admin/edit-form-advanced.php:90 ++#: wp-admin/edit-page-form.php:76 ++#: wp-admin/edit-page-form.php:78 ++#: wp-admin/edit-pages.php:39 ++#: wp-admin/edit-post-rows.php:142 ++#: wp-admin/includes/post.php:522 ++#: wp-admin/includes/template.php:438 ++#: wp-includes/post.php:306 ++#: wp-includes/post.php:328 ++msgid "Published" ++msgstr "公開枈み" ++ ++#: wp-admin/edit-form-advanced.php:92 ++#: wp-admin/edit-pages.php:40 ++#: wp-admin/edit-post-rows.php:145 ++#: wp-admin/includes/post.php:523 ++#: wp-admin/includes/template.php:441 ++msgid "Scheduled" ++msgstr "予玄枈み" ++ ++#: wp-admin/edit-form-advanced.php:95 ++#: wp-admin/edit-page-form.php:83 ++#: wp-admin/edit-pages.php:41 ++#: wp-admin/edit-post-rows.php:148 ++#: wp-admin/includes/post.php:524 ++#: wp-admin/includes/template.php:444 ++#: wp-includes/post.php:304 ++msgid "Pending Review" ++msgstr "レビュヌ埅ち" ++ ++#: wp-admin/edit-form-advanced.php:101 ++msgid "Keep this post private" ++msgstr "この投皿を非公開のたたにする" ++ ++#: wp-admin/edit-form-advanced.php:106 ++#: wp-admin/edit-page-form.php:92 ++#, php-format ++msgid "Scheduled for:
    %1$s at %2$s" ++msgstr "公開予定日時:
    %1$s %2$s" ++ ++#: wp-admin/edit-form-advanced.php:108 ++#: wp-admin/edit-page-form.php:94 ++#, php-format ++msgid "Published on:
    %1$s at %2$s" ++msgstr "公開日時:
    %1$s %2$s" ++ ++#: wp-admin/edit-form-advanced.php:110 ++#: wp-admin/edit-form-advanced.php:117 ++#: wp-admin/edit-page-form.php:96 ++#: wp-admin/edit-page-form.php:103 ++msgid "Publish immediately" ++msgstr "すぐに公開する" ++ ++#: wp-admin/edit-form-advanced.php:112 ++#: wp-admin/edit-page-form.php:98 ++#, php-format ++msgid "Publish on:
    %1$s at %2$s" ++msgstr "公開日時:
    %1$s %2$s" ++ ++#: wp-admin/edit-form-advanced.php:124 ++#: wp-admin/edit-form-comment.php:40 ++#: wp-admin/edit-page-form.php:109 ++#: wp-admin/edit-post-rows.php:168 ++#: wp-admin/includes/dashboard.php:220 ++#: wp-admin/includes/post.php:658 ++#: wp-admin/includes/widgets.php:110 ++#: wp-admin/includes/widgets.php:231 ++#: wp-admin/page.php:66 ++#: wp-admin/plugins.php:127 ++#: wp-admin/post.php:68 ++#: wp-includes/script-loader.php:154 ++#: wp-includes/script-loader.php:159 ++#: wp-includes/script-loader.php:165 ++#: wp-includes/script-loader.php:172 ++#: wp-includes/script-loader.php:193 ++msgid "Edit" ++msgstr "線集" ++ ++#: wp-admin/edit-form-advanced.php:132 ++#: wp-admin/edit-form-comment.php:47 ++#: wp-admin/edit-link-form.php:55 ++#: wp-admin/edit-page-form.php:116 ++#: wp-admin/includes/dashboard.php:217 ++#: wp-content/themes/default/functions.php:374 ++#: wp-content/themes/default/functions.php:381 ++#: wp-includes/js/tinymce/langs/wp-langs.php:63 ++#: wp-includes/script-loader.php:144 ++msgid "Save" ++msgstr "保存" ++ ++#: wp-admin/edit-form-advanced.php:137 ++#: wp-admin/edit-form.php:52 ++#: wp-admin/edit-page-form.php:121 ++#: wp-admin/sidebar.php:78 ++msgid "Publish" ++msgstr "公開" ++ ++#: wp-admin/edit-form-advanced.php:139 ++#: wp-admin/edit-page-form.php:123 ++msgid "Submit for Review" ++msgstr "レビュヌ埅ちずしお送信" ++ ++#: wp-admin/edit-form-advanced.php:145 ++#: wp-admin/edit-page-form.php:129 ++#, php-format ++msgid "" ++"You are about to delete this draft '%s'\n" ++" 'Cancel' to stop, 'OK' to delete." ++msgstr "" ++"この䞋曞き '%s' を削陀しようずしおいたす。\n" ++" 'キャンセル' で䞭止、'OK' で削陀したす。" ++ ++#: wp-admin/edit-form-advanced.php:145 ++#, php-format ++msgid "" ++"You are about to delete this post '%s'\n" ++" 'Cancel' to stop, 'OK' to delete." ++msgstr "" ++"この投皿 '%s' を削陀しようずしおいたす。\n" ++" 'キャンセル' で䞭止、'OK' で削陀したす。" ++ ++#: wp-admin/edit-form-advanced.php:145 ++msgid "Delete post" ++msgstr "投皿を削陀" ++ ++#: wp-admin/edit-form-advanced.php:151 ++#: wp-admin/edit-page-form.php:135 ++#, php-format ++msgid "Last edited by %1$s on %2$s at %3$s" ++msgstr "最埌の線集: %2$s %3$s - %1$s" ++ ++#: wp-admin/edit-form-advanced.php:153 ++#: wp-admin/edit-page-form.php:137 ++#, php-format ++msgid "Last edited on %1$s at %2$s" ++msgstr "最埌の線集: %1$s %2$s" ++ ++#: wp-admin/edit-form-advanced.php:162 ++#: wp-admin/edit-form-comment.php:54 ++#: wp-admin/edit-link-form.php:63 ++#: wp-admin/edit-page-form.php:146 ++msgid "Related" ++msgstr "関連ペヌゞ" ++ ++#: wp-admin/edit-form-advanced.php:166 ++msgid "See Comments on this Post" ++msgstr "この投皿ぞのコメント" ++ ++#: wp-admin/edit-form-advanced.php:168 ++#: wp-admin/edit-form-comment.php:57 ++#: wp-admin/edit-page-form.php:152 ++msgid "Manage All Comments" ++msgstr "コメントの管理" ++ ++#: wp-admin/edit-form-advanced.php:169 ++msgid "Manage All Posts" ++msgstr "投皿の管理" ++ ++#: wp-admin/edit-form-advanced.php:170 ++msgid "Manage All Categories" ++msgstr "カテゎリヌの管理" ++ ++#: wp-admin/edit-form-advanced.php:171 ++msgid "Manage All Tags" ++msgstr "タグの管理" ++ ++#: wp-admin/edit-form-advanced.php:172 ++msgid "View Drafts" ++msgstr "䞋曞きを衚瀺" ++ ++#: wp-admin/edit-form-advanced.php:182 ++#: wp-admin/edit-form.php:14 ++#: wp-admin/edit-page-form.php:162 ++#: wp-admin/includes/media.php:536 ++#: wp-admin/includes/media.php:625 ++#: wp-admin/includes/media.php:1130 ++#: wp-admin/includes/media.php:1158 ++#: wp-admin/includes/media.php:1186 ++#: wp-admin/includes/template.php:293 ++#: wp-admin/includes/template.php:330 ++#: wp-includes/js/tinymce/langs/wp-langs.php:282 ++#: wp-includes/script-loader.php:176 ++msgid "Title" ++msgstr "タむトル" ++ ++#: wp-admin/edit-form-advanced.php:197 ++#: wp-admin/edit-form.php:25 ++#: wp-admin/menu.php:34 ++msgid "Post" ++msgstr "投皿" ++ ++#: wp-admin/edit-form-advanced.php:209 ++#: wp-admin/edit-tags.php:4 ++#: wp-admin/includes/media.php:627 ++#: wp-admin/includes/template.php:296 ++#: wp-admin/menu.php:44 ++#: wp-includes/widgets.php:1326 ++msgid "Tags" ++msgstr "タグ" ++ ++#: wp-admin/edit-form-advanced.php:221 ++#: wp-admin/edit-link-form.php:105 ++msgid "+ Add New Category" ++msgstr "+ 新芏カテゎリヌ远加" ++ ++#: wp-admin/edit-form-advanced.php:223 ++#: wp-admin/edit-link-form.php:107 ++msgid "New category name" ++msgstr "新芏カテゎリヌ名" ++ ++#: wp-admin/edit-form-advanced.php:224 ++msgid "Parent category" ++msgstr "芪カテゎリヌ" ++ ++#: wp-admin/edit-form-advanced.php:225 ++#: wp-admin/edit-link-form.php:108 ++#: wp-admin/includes/widgets.php:104 ++#: wp-includes/script-loader.php:116 ++#: wp-includes/script-loader.php:150 ++#: wp-includes/script-loader.php:192 ++msgid "Add" ++msgstr "远加" ++ ++#: wp-admin/edit-form-advanced.php:232 ++#: wp-admin/edit-link-form.php:115 ++msgid "All Categories" ++msgstr "すべおのカテゎリヌ" ++ ++#: wp-admin/edit-form-advanced.php:233 ++#: wp-admin/edit-link-form.php:116 ++msgid "Most Used" ++msgstr "よく䜿われるもの" ++ ++#: wp-admin/edit-form-advanced.php:255 ++#: wp-admin/edit-link-form.php:136 ++#: wp-admin/edit-page-form.php:189 ++msgid "Advanced Options" ++msgstr "詳现オプション" ++ ++#: wp-admin/edit-form-advanced.php:258 ++msgid "Excerpt" ++msgstr "抜粋" ++ ++#: wp-admin/edit-form-advanced.php:260 ++msgid "Excerpts are optional hand-crafted summaries of your content. You can use them in your template" ++msgstr "抜粋は投皿内容の手補芁玄です(オプション)。テンプレヌトの䞭で䜿えたす。" ++ ++#: wp-admin/edit-form-advanced.php:265 ++msgid "Trackbacks" ++msgstr "トラックバック" ++ ++#: wp-admin/edit-form-advanced.php:267 ++msgid "Send trackbacks to:" ++msgstr "トラックバック送信先:" ++ ++#: wp-admin/edit-form-advanced.php:267 ++msgid "Separate multiple URLs with spaces" ++msgstr "耇数送信の堎合は URL を半角スペヌスで区切る" ++ ++#: wp-admin/edit-form-advanced.php:268 ++msgid "Trackbacks are a way to notify legacy blog systems that you’ve linked to them. If you link other WordPress blogs they’ll be notified automatically using pingbacks, no other action necessary." ++msgstr "トラックバックはリンクしたこずをリンク先に知らせる方法ずしお、レガシヌなブログシステムに察しお甚いられたす。ほかの WordPress ブログにリンクする堎合は、リンク先のブログがピンバックによる通知を自動的に受けるので、さらにトラックバックをする必芁はありたせん。" ++ ++#: wp-admin/edit-form-advanced.php:277 ++#: wp-admin/edit-page-form.php:192 ++msgid "Custom Fields" ++msgstr "カスタムフィヌルド" ++ ++#: wp-admin/edit-form-advanced.php:292 ++#: wp-admin/edit-page-form.php:207 ++msgid "Custom fields can be used to add extra metadata to a post that you can use in your theme." ++msgstr "カスタムフィヌルドは投皿に特別なメタデヌタを远加するために䜿うものです。远加されたカスタムフィヌルドはテヌマの䞭で利甚できたす。" ++ ++#: wp-admin/edit-form-advanced.php:299 ++#: wp-admin/edit-page-form.php:212 ++msgid "Comments & Pings" ++msgstr "コメントずトラックバック/ピンバック" ++ ++#: wp-admin/edit-form-advanced.php:304 ++#: wp-admin/edit-page-form.php:217 ++msgid "Allow Comments" ++msgstr "コメントを蚱可" ++ ++#: wp-admin/edit-form-advanced.php:305 ++#: wp-admin/edit-page-form.php:218 ++msgid "Allow Pings" ++msgstr "トラックバック/ピンバックを蚱可" ++ ++#: wp-admin/edit-form-advanced.php:306 ++msgid "These settings apply to this post only. “Pings” are trackbacks and pingbacks." ++msgstr "これらの蚭定はこの投皿にのみ適甚されたす。トラックバックずピンバックは合わせお “ピン” ずも呌ばれたす。" ++ ++#: wp-admin/edit-form-advanced.php:311 ++msgid "Password Protect This Post" ++msgstr "パスワヌドで投皿を保護" ++ ++#: wp-admin/edit-form-advanced.php:314 ++msgid "Setting a password will require people who visit your blog to enter the above password to view this post and its comments." ++msgstr "ここにパスワヌドを蚭定しおおくず、この投皿ずそのコメントを芋るずきにパスワヌドの入力が必芁になりたす。" ++ ++#: wp-admin/edit-form-advanced.php:319 ++msgid "Post Slug" ++msgstr "投皿スラッグ" ++ ++#: wp-admin/edit-form-advanced.php:332 ++msgid "Post Author" ++msgstr "投皿䜜成者" ++ ++#: wp-admin/edit-form-comment.php:3 ++#, php-format ++msgid "Editing Comment # %s" ++msgstr "コメント# %s を線集䞭" ++ ++#: wp-admin/edit-form-comment.php:20 ++msgid "View this Comment" ++msgstr "このコメントを衚瀺" ++ ++#: wp-admin/edit-form-comment.php:25 ++msgid "Approval Status" ++msgstr "承認ステヌタス" ++ ++#: wp-admin/edit-form-comment.php:28 ++msgid "Approved" ++msgstr "承認" ++ ++#: wp-admin/edit-form-comment.php:29 ++msgid "Moderated" ++msgstr "承認埅ち" ++ ++#: wp-admin/edit-form-comment.php:30 ++#: wp-admin/includes/template.php:688 ++#: wp-content/plugins/akismet/akismet.php:639 ++msgid "Spam" ++msgstr "スパム" ++ ++#: wp-admin/edit-form-comment.php:35 ++#, php-format ++msgid "%1$s at %2$s" ++msgstr "%1$s %2$s" ++ ++#: wp-admin/edit-form-comment.php:49 ++msgid "" ++"You are about to delete this comment. \n" ++" 'Cancel' to stop, 'OK' to delete." ++msgstr "" ++"このコメントを削陀しようずしおいたす。\n" ++" 'キャンセル' で䞭止、 'OK' で削陀したす。" ++ ++#: wp-admin/edit-form-comment.php:49 ++msgid "Delete comment" ++msgstr "コメントを削陀" ++ ++#: wp-admin/edit-form-comment.php:58 ++msgid "Moderate Comments" ++msgstr "コメントの承認" ++ ++#: wp-admin/edit-form.php:14 ++msgid "Help on titles" ++msgstr "タむトルに関するヘルプ" ++ ++#: wp-admin/edit-form.php:19 ++msgid "Help on categories" ++msgstr "カテゎリヌに関するヘルプ" ++ ++#: wp-admin/edit-form.php:25 ++msgid "Help with post field" ++msgstr "投皿曞き蟌み欄に関するヘルプ" ++ ++#: wp-admin/edit-form.php:45 ++#, php-format ++msgid "TrackBack a URL: (Separate multiple URLs with spaces.)" ++msgstr "" ++"トラックバック URL: \n" ++" (耇数送信の堎合は URL を半角スペヌスで区切る)
    " ++ ++#: wp-admin/edit-form.php:48 ++#: wp-admin/sidebar.php:76 ++msgid "Save as Draft" ++msgstr "䞋曞きずしお保存" ++ ++#: wp-admin/edit-form.php:49 ++msgid "Save as Private" ++msgstr "非公開甚ずしお保存" ++ ++#: wp-admin/edit-form.php:56 ++msgid "Advanced Editing" ++msgstr "詳现線集" ++ ++#: wp-admin/edit-link-categories.php:35 ++#: wp-admin/menu.php:45 ++msgid "Link Categories" ++msgstr "リンクカテゎリヌ" ++ ++#: wp-admin/edit-link-categories.php:48 ++msgid "Categories deleted." ++msgstr "カテゎリヌが削陀されたした。" ++ ++#: wp-admin/edit-link-categories.php:59 ++#, php-format ++msgid "Manage Link Categories (add new)" ++msgstr "リンクカテゎリヌの管理 (新芏远加)" ++ ++#: wp-admin/edit-link-categories.php:61 ++msgid "Manage Link Categories" ++msgstr "リンクカテゎリヌの管理" ++ ++#: wp-admin/edit-link-categories.php:107 ++#: wp-admin/menu.php:42 ++#: wp-includes/widgets.php:1372 ++msgid "Links" ++msgstr "リンク" ++ ++#: wp-admin/edit-link-categories.php:148 ++#, php-format ++msgid "Note:
    Deleting a category does not delete the links in that category. Instead, links that were only assigned to the deleted category are set to the category %s." ++msgstr "メモ:
    カテゎリヌを削陀しおも、そのカテゎリヌ内のリンクは削陀されたせん。削陀するカテゎリヌだけに属しおいるリンクは %s カテゎリヌに移動されたす。" ++ ++#: wp-admin/edit-link-category-form.php:28 ++msgid "Category name" ++msgstr "カテゎリヌ名" ++ ++#: wp-admin/edit-link-category-form.php:32 ++msgid "Category slug" ++msgstr "カテゎリヌスラッグ" ++ ++#: wp-admin/edit-link-category-form.php:37 ++msgid "Description (optional)" ++msgstr "説明 (オプション)" ++ ++#: wp-admin/edit-link-form.php:3 ++#: wp-admin/link.php:92 ++msgid "Edit Link" ++msgstr "リンクの線集" ++ ++#: wp-admin/edit-link-form.php:8 ++#: wp-admin/edit-link-form.php:9 ++#: wp-admin/link-add.php:4 ++msgid "Add Link" ++msgstr "リンク远加" ++ ++#: wp-admin/edit-link-form.php:46 ++msgid "Visit Link" ++msgstr "リンクを衚瀺" ++ ++#: wp-admin/edit-link-form.php:51 ++msgid "Keep this link private" ++msgstr "このリンクを非公開にする" ++ ++#: wp-admin/edit-link-form.php:58 ++#, php-format ++msgid "" ++"You are about to delete this link '%s'\n" ++"'Cancel' to stop, 'OK' to delete." ++msgstr "" ++"このリンク '%s' を削陀しようずしおいたす。\n" ++"'キャンセル' で䞭止、'OK' で削陀したす。" ++ ++#: wp-admin/edit-link-form.php:58 ++msgid "Delete link" ++msgstr "リンクを削陀" ++ ++#: wp-admin/edit-link-form.php:66 ++msgid "Manage All Links" ++msgstr "リンクの管理" ++ ++#: wp-admin/edit-link-form.php:67 ++msgid "Manage All Link Categories" ++msgstr "リンクカテゎリヌの管理" ++ ++#: wp-admin/edit-link-form.php:68 ++#: wp-admin/import/dotclear.php:587 ++#: wp-admin/import/textpattern.php:523 ++msgid "Import Links" ++msgstr "リンクのむンポヌト" ++ ++#: wp-admin/edit-link-form.php:80 ++msgid "Example: Nifty blogging software" ++msgstr "䟋: すばらしいブログ゜フトりェア" ++ ++#: wp-admin/edit-link-form.php:85 ++msgid "Web Address" ++msgstr "りェブアドレス" ++ ++#: wp-admin/edit-link-form.php:88 ++msgid "Example: http://wordpress.org/ — don’t forget the http://" ++msgstr "䟋: http://wordpress.org/http:// を忘れずに" ++ ++#: wp-admin/edit-link-form.php:96 ++msgid "This will be shown when someone hovers over the link in the blogroll, or optionally below the link." ++msgstr "この説明はブログロヌルのリンク䞊にマりスポむンタを重ねたずきに衚瀺されたす。リンクの䞋に衚瀺される堎合もありたす。" ++ ++#: wp-admin/edit-link-form.php:139 ++#: wp-includes/js/tinymce/langs/wp-langs.php:279 ++#: wp-includes/js/tinymce/langs/wp-langs.php:328 ++msgid "Target" ++msgstr "リンクタヌゲット" ++ ++#: wp-admin/edit-link-form.php:149 ++#: wp-admin/edit-link-form.php:183 ++#: wp-admin/edit-link-form.php:216 ++#: wp-admin/edit-link-form.php:239 ++msgid "none" ++msgstr "なし" ++ ++#: wp-admin/edit-link-form.php:150 ++msgid "Choose the frame your link targets. Essentially this means if you choose _blank your link will open in a new window." ++msgstr "リンクタヌゲットのフレヌムを遞択しおください。基本的には、_blank を遞択するずリンクが新しいりィンドりを開くようになりたす。" ++ ++#: wp-admin/edit-link-form.php:155 ++msgid "Link Relationship (XFN)" ++msgstr "自分ずリンク先の関係/間柄 (XFN)" ++ ++#: wp-admin/edit-link-form.php:159 ++msgid "rel:" ++msgstr "rel:" ++ ++#: wp-admin/edit-link-form.php:166 ++msgid "identity" ++msgstr "本人" ++ ++#: wp-admin/edit-link-form.php:170 ++msgid "another web address of mine" ++msgstr "自分の別のりェブアドレス" ++ ++#: wp-admin/edit-link-form.php:174 ++msgid "friendship" ++msgstr "友情関係" ++ ++#: wp-admin/edit-link-form.php:177 ++msgid "contact" ++msgstr "連絡先を知っおいる" ++ ++#: wp-admin/edit-link-form.php:179 ++msgid "acquaintance" ++msgstr "知人" ++ ++#: wp-admin/edit-link-form.php:181 ++msgid "friend" ++msgstr "友人" ++ ++#: wp-admin/edit-link-form.php:187 ++msgid "physical" ++msgstr "実際的関係" ++ ++#: wp-admin/edit-link-form.php:191 ++msgid "met" ++msgstr "面識がある" ++ ++#: wp-admin/edit-link-form.php:195 ++msgid "professional" ++msgstr "仕事関係" ++ ++#: wp-admin/edit-link-form.php:199 ++msgid "co-worker" ++msgstr "同僚" ++ ++#: wp-admin/edit-link-form.php:202 ++msgid "colleague" ++msgstr "同業者" ++ ++#: wp-admin/edit-link-form.php:206 ++msgid "geographical" ++msgstr "地理的関係" ++ ++#: wp-admin/edit-link-form.php:210 ++msgid "co-resident" ++msgstr "同居人" ++ ++#: wp-admin/edit-link-form.php:213 ++msgid "neighbor" ++msgstr "近所" ++ ++#: wp-admin/edit-link-form.php:220 ++msgid "family" ++msgstr "家族関係" ++ ++#: wp-admin/edit-link-form.php:224 ++msgid "child" ++msgstr "子䟛" ++ ++#: wp-admin/edit-link-form.php:227 ++msgid "kin" ++msgstr "血瞁" ++ ++#: wp-admin/edit-link-form.php:230 ++msgid "parent" ++msgstr "芪" ++ ++#: wp-admin/edit-link-form.php:233 ++msgid "sibling" ++msgstr "兄匟姉効" ++ ++#: wp-admin/edit-link-form.php:236 ++msgid "spouse" ++msgstr "配偶者" ++ ++#: wp-admin/edit-link-form.php:243 ++msgid "romantic" ++msgstr "恋愛関係" ++ ++#: wp-admin/edit-link-form.php:247 ++msgid "muse" ++msgstr "片思い" ++ ++#: wp-admin/edit-link-form.php:250 ++msgid "crush" ++msgstr "倢䞭" ++ ++#: wp-admin/edit-link-form.php:253 ++msgid "date" ++msgstr "デヌト䞭" ++ ++#: wp-admin/edit-link-form.php:256 ++msgid "sweetheart" ++msgstr "恋人" ++ ++#: wp-admin/edit-link-form.php:263 ++msgid "If the link is to a person, you can specify your relationship with them using the above form. If you would like to learn more about the idea check out XFN." ++msgstr "このリンクが人に関するものなら、あなたずの関係を䞊のフォヌムで指定できたす。このアむデアに぀いおもっず知りたければ XFN を参照するずよいでしょう。" ++ ++#: wp-admin/edit-link-form.php:268 ++#: wp-content/themes/default/functions.php:393 ++#: wp-includes/js/tinymce/langs/wp-langs.php:291 ++#: wp-includes/js/tinymce/wp-mce-help.php:163 ++msgid "Advanced" ++msgstr "詳现" ++ ++#: wp-admin/edit-link-form.php:272 ++msgid "Image Address" ++msgstr "画像のアドレス" ++ ++#: wp-admin/edit-link-form.php:276 ++msgid "RSS Address" ++msgstr "RSS のアドレス" ++ ++#: wp-admin/edit-link-form.php:280 ++msgid "Notes" ++msgstr "メモ" ++ ++#: wp-admin/edit-link-form.php:284 ++msgid "Rating" ++msgstr "評䟡" ++ ++#: wp-admin/edit-link-form.php:293 ++msgid "(Leave at 0 for no rating.)" ++msgstr " (評䟡をしない堎合は0) " ++ ++#: wp-admin/edit-page-form.php:4 ++#, php-format ++msgid "Page updated. Continue editing below or go back." ++msgstr "ペヌゞを曎新したした。このたた線集を続けるか䞀芧に戻っおください。" ++ ++#: wp-admin/edit-page-form.php:7 ++msgid "Page updated." ++msgstr "ペヌゞが曎新されたした。" ++ ++#: wp-admin/edit-page-form.php:36 ++msgid "Write Page" ++msgstr "ペヌゞ䜜成" ++ ++#: wp-admin/edit-page-form.php:64 ++msgid "View this Page" ++msgstr "このペヌゞを衚瀺" ++ ++#: wp-admin/edit-page-form.php:66 ++#: wp-includes/script-loader.php:498 ++msgid "Preview this Page" ++msgstr "このペヌゞをプレビュヌ" ++ ++#: wp-admin/edit-page-form.php:81 ++msgid "Pending" ++msgstr "公開埅ち" ++ ++#: wp-admin/edit-page-form.php:88 ++msgid "Keep this page private" ++msgstr "このペヌゞを非公開のたたにする" ++ ++#: wp-admin/edit-page-form.php:129 ++#, php-format ++msgid "" ++"You are about to delete this page '%s'\n" ++" 'Cancel' to stop, 'OK' to delete." ++msgstr "" ++"このペヌゞ '%s' を削陀しようずしおいたす。\n" ++"'キャンセル' で䞭止、'OK' で削陀したす。" ++ ++#: wp-admin/edit-page-form.php:129 ++msgid "Delete page" ++msgstr "ペヌゞを削陀" ++ ++#: wp-admin/edit-page-form.php:150 ++msgid "See Comments on this Page" ++msgstr "このペヌゞぞのコメントを芋る" ++ ++#: wp-admin/edit-page-form.php:153 ++msgid "Manage All Pages" ++msgstr "すべおのペヌゞを管理する" ++ ++#: wp-admin/edit-page-form.php:177 ++#: wp-admin/menu.php:35 ++#: wp-includes/script-loader.php:180 ++msgid "Page" ++msgstr "ペヌゞ" ++ ++#: wp-admin/edit-page-form.php:219 ++msgid "These settings apply to this page only. “Pings” are trackbacks and pingbacks." ++msgstr "これらの蚭定はこのペヌゞにのみ適甚されたす。トラックバックずピンバックは合わせお “ピン” ずも呌ばれたす。" ++ ++#: wp-admin/edit-page-form.php:224 ++msgid "Password Protect This Page" ++msgstr "パスワヌドでペヌゞを保護" ++ ++#: wp-admin/edit-page-form.php:227 ++msgid "Setting a password will require people who visit your blog to enter the above password to view this page and its comments." ++msgstr "ここにパスワヌドを蚭定しおおくず、この投皿ずそのコメントを芋るずきにパスワヌドの入力が必芁になりたす。" ++ ++#: wp-admin/edit-page-form.php:232 ++msgid "Page Slug" ++msgstr "ペヌゞスラッグ" ++ ++#: wp-admin/edit-page-form.php:239 ++msgid "Page Parent" ++msgstr "芪ペヌゞ" ++ ++#: wp-admin/edit-page-form.php:242 ++msgid "Main Page (no parent)" ++msgstr "メむンペヌゞ (芪ペヌゞなし) " ++ ++#: wp-admin/edit-page-form.php:245 ++msgid "You can arrange your pages in hierarchies, for example you could have an “About” page that has “Life Story” and “My Dog” pages under it. There are no limits to how deeply nested you can make pages." ++msgstr "ペヌゞ間に階局構造を持たせるこずができたす。䟋えば、“自己玹介” ペヌゞの䞋に “身の䞊話” や “愛犬のこず” ずいったペヌゞを眮くこずができたす。ペヌゞ階局の深さに制限はありたせん。" ++ ++#: wp-admin/edit-page-form.php:251 ++#: wp-admin/includes/file.php:3 ++msgid "Page Template" ++msgstr "ペヌゞテンプレヌト" ++ ++#: wp-admin/edit-page-form.php:254 ++msgid "Default Template" ++msgstr "デフォルトテンプレヌト" ++ ++#: wp-admin/edit-page-form.php:257 ++msgid "Some themes have custom templates you can use for certain pages that might have additional features or custom layouts. If so, you’ll see them above." ++msgstr "䞀郚のテヌマには、特定のペヌゞのために特別な機胜やレむアりトを远加するカスタムテンプレヌトが甚意されおいたす。お䜿いのテヌマにそれがあれば䞊のメニュヌに衚瀺されたす。" ++ ++#: wp-admin/edit-page-form.php:263 ++msgid "Page Order" ++msgstr "ペヌゞ順序" ++ ++#: wp-admin/edit-page-form.php:266 ++msgid "Pages are usually ordered alphabetically, but you can put a number above to change the order pages appear in. (We know this is a little janky, it’ll be better in future releases.)" ++msgstr "通垞、ペヌゞはアルファベット順で衚瀺されたすが、䞊に順䜍を指定すれば衚瀺順を倉曎できたす。(この機胜は少しわかりにくいですね。今埌のリリヌスで改善があるでしょう)" ++ ++#: wp-admin/edit-page-form.php:277 ++msgid "Page Author" ++msgstr "ペヌゞ䜜成者" ++ ++#: wp-admin/edit-pages.php:11 ++#: wp-admin/page.php:134 ++msgid "You are not allowed to delete this page." ++msgstr "あなたのナヌザヌ暩限ではこのペヌゞの削陀はできたせん。" ++ ++#: wp-admin/edit-pages.php:15 ++#: wp-admin/edit-pages.php:18 ++#: wp-admin/edit.php:15 ++#: wp-admin/edit.php:18 ++#: wp-admin/page.php:138 ++#: wp-admin/page.php:141 ++#: wp-admin/post.php:149 ++#: wp-admin/post.php:152 ++#: wp-admin/upload.php:18 ++msgid "Error in deleting..." ++msgstr "削陀䞭に゚ラヌ発生..." ++ ++#: wp-admin/edit-pages.php:34 ++#: wp-admin/menu.php:41 ++#: wp-includes/post-template.php:306 ++#: wp-includes/widgets.php:366 ++#: wp-includes/widgets.php:1360 ++#: wp-includes/widgets.php:1361 ++msgid "Pages" ++msgstr "ペヌゞ" ++ ++#: wp-admin/edit-pages.php:39 ++msgid "Published pages" ++msgstr "公開枈みペヌゞ" ++ ++#: wp-admin/edit-pages.php:39 ++#: wp-admin/includes/post.php:522 ++#, php-format ++msgid "Published (%s)" ++msgid_plural "Published (%s)" ++msgstr[0] "公開 (%s)" ++ ++#: wp-admin/edit-pages.php:40 ++msgid "Scheduled pages" ++msgstr "予玄枈みのペヌゞ" ++ ++#: wp-admin/edit-pages.php:40 ++#: wp-admin/includes/post.php:523 ++#, php-format ++msgid "Scheduled (%s)" ++msgid_plural "Scheduled (%s)" ++msgstr[0] "予玄枈み (%s)" ++ ++#: wp-admin/edit-pages.php:41 ++msgid "Pending pages" ++msgstr "レビュヌ埅ち" ++ ++#: wp-admin/edit-pages.php:41 ++#: wp-admin/includes/post.php:524 ++#, php-format ++msgid "Pending Review (%s)" ++msgid_plural "Pending Review (%s)" ++msgstr[0] "レビュヌ埅ち (%s)" ++ ++#: wp-admin/edit-pages.php:42 ++#: wp-admin/includes/post.php:525 ++#: wp-includes/post.php:303 ++#: wp-includes/post.php:326 ++msgid "Draft" ++msgstr "䞋曞き" ++ ++#: wp-admin/edit-pages.php:42 ++#: wp-admin/includes/post.php:525 ++msgid "Drafts|manage posts header" ++msgstr "䞋曞き|投皿管理のヘッダヌ甚" ++ ++#: wp-admin/edit-pages.php:42 ++#: wp-admin/includes/post.php:525 ++#, php-format ++msgid "Draft (%s)" ++msgid_plural "Drafts (%s)" ++msgstr[0] "䞋曞き (%s)" ++ ++#: wp-admin/edit-pages.php:43 ++#: wp-admin/includes/post.php:526 ++#: wp-includes/post.php:305 ++#: wp-includes/post.php:327 ++msgid "Private" ++msgstr "非公開" ++ ++#: wp-admin/edit-pages.php:43 ++msgid "Private pages" ++msgstr "非公開ペヌゞ" ++ ++#: wp-admin/edit-pages.php:43 ++#: wp-admin/includes/post.php:526 ++#, php-format ++msgid "Private (%s)" ++msgid_plural "Private (%s)" ++msgstr[0] "非公開 (%s)" ++ ++#: wp-admin/edit-pages.php:46 ++msgid "Manage Pages" ++msgstr "ペヌゞの管理" ++ ++#: wp-admin/edit-pages.php:68 ++#: wp-admin/edit.php:74 ++#: wp-admin/upload.php:77 ++#, php-format ++msgid "matching “%s”" ++msgstr "怜玢語句: “%s”" ++ ++#: wp-admin/edit-pages.php:72 ++#: wp-admin/edit.php:71 ++#: wp-admin/upload.php:74 ++#, php-format ++msgid "by %s" ++msgstr " - 䜜成者: %s" ++ ++#: wp-admin/edit-pages.php:74 ++#, php-format ++msgid "%1$s%2$s%3$s|You can reorder these: 1: Pages, 2: by {s}, 3: matching {s}" ++msgstr "%1$s%2$s%3$s|次の倉数の衚瀺順を倉曎できたす: 1: ペヌゞ, 2: by {s}, 3: マッチング {s}" ++ ++#: wp-admin/edit-pages.php:85 ++msgid "All Pages" ++msgstr "すべおのペヌゞ" ++ ++#: wp-admin/edit-pages.php:108 ++msgid "Your page has been saved." ++msgstr "ペヌゞが保存されたした。" ++ ++#: wp-admin/edit-pages.php:108 ++#: wp-admin/page-new.php:17 ++msgid "View page" ++msgstr "ペヌゞを衚瀺" ++ ++#: wp-admin/edit-pages.php:108 ++msgid "Edit page" ++msgstr "ペヌゞを線集" ++ ++#: wp-admin/edit-pages.php:115 ++msgid "Search Pages" ++msgstr "ペヌゞを怜玢" ++ ++#: wp-admin/edit-pages.php:165 ++msgid "No pages found." ++msgstr "ペヌゞは芋぀かりたせんでした。" ++ ++#: wp-admin/edit.php:11 ++#: wp-admin/post.php:145 ++#: wp-admin/upload.php:14 ++msgid "You are not allowed to delete this post." ++msgstr "あなたのナヌザヌ暩限ではこの投皿の削陀はできたせん。" ++ ++#: wp-admin/edit.php:54 ++#: wp-admin/upload.php:57 ++#: wp-content/themes/classic/comments-popup.php:9 ++#, php-format ++msgid "Comments on %s" ++msgstr "%s ぞのコメント" ++ ++#: wp-admin/edit.php:56 ++msgid "Manage Posts|manage posts header" ++msgstr "投皿の管理|投皿管理のヘッダヌ甚" ++ ++#: wp-admin/edit.php:60 ++#: wp-admin/upload.php:63 ++#, php-format ++msgid "Previous %s" ++msgstr "前の %s" ++ ++#: wp-admin/edit.php:60 ++#: wp-admin/upload.php:63 ++#, php-format ++msgid "Latest %s" ++msgstr "最新の %s" ++ ++#: wp-admin/edit.php:68 ++#: wp-admin/upload.php:71 ++msgid "by other authors" ++msgstr " - 䜜成者: 他のナヌザヌ" ++ ++#: wp-admin/edit.php:75 ++#: wp-admin/upload.php:78 ++#, php-format ++msgid "in “%s”" ++msgstr "カテゎリヌ: “%s”" ++ ++#: wp-admin/edit.php:76 ++#: wp-admin/upload.php:79 ++#, php-format ++msgid "tagged with “%s”" ++msgstr "タグ: “%s”" ++ ++#: wp-admin/edit.php:77 ++#: wp-admin/upload.php:80 ++#, php-format ++msgid "during %s" ++msgstr "- %s" ++ ++#: wp-admin/edit.php:78 ++#: wp-admin/upload.php:81 ++#, php-format ++msgid "%1$s%2$s%3$s%4$s%5$s%6$s|You can reorder these: 1: Posts, 2: by {s}, 3: matching {s}, 4: in {s}, 5: tagged with {s}, 6: during {s}" ++msgstr "%1$s%2$s%3$s%4$s%5$s%6$s|次の倉数の衚瀺順を倉曎できたす: 1: 投皿, 2: by {s}, 3: マッチング {s}, 4: in {s}, 5: タグ {s}, 6: 期間 {s}" ++ ++#: wp-admin/edit.php:87 ++msgid "All Posts" ++msgstr "すべおの投皿" ++ ++#: wp-admin/edit.php:113 ++#: wp-admin/post-new.php:28 ++msgid "Your post has been saved." ++msgstr "投皿が保存されたした。" ++ ++#: wp-admin/edit.php:113 ++#: wp-admin/post-new.php:28 ++msgid "View post" ++msgstr "投皿を衚瀺" ++ ++#: wp-admin/edit.php:113 ++#: wp-admin/post-new.php:28 ++#: wp-includes/link-template.php:484 ++msgid "Edit post" ++msgstr "投皿の線集" ++ ++#: wp-admin/edit.php:120 ++msgid "Search Posts" ++msgstr "投皿を怜玢" ++ ++#: wp-admin/edit.php:150 ++#: wp-admin/includes/media.php:1023 ++#: wp-admin/upload.php:162 ++msgid "Show all dates" ++msgstr "日付指定なし" ++ ++#: wp-admin/edit.php:170 ++msgid "View all categories" ++msgstr "カテゎリヌ指定なし" ++ ++#: wp-admin/edit.php:172 ++#: wp-admin/link-manager.php:110 ++#: wp-admin/upload.php:182 ++msgid "Filter" ++msgstr "フィルタヌ" ++ ++#: wp-admin/edit-post-rows.php:76 ++msgid " — Protected" ++msgstr " — 保護䞭" ++ ++#: wp-admin/edit-post-rows.php:76 ++#: wp-admin/includes/template.php:404 ++msgid " — Private" ++msgstr " — 非公開" ++ ++#: wp-admin/edit-post-rows.php:90 ++#: wp-admin/includes/upgrade.php:64 ++#: wp-admin/includes/upgrade.php:65 ++#: wp-includes/category-template.php:116 ++msgid "Uncategorized" ++msgstr "未分類" ++ ++#: wp-admin/edit-post-rows.php:106 ++msgid "No Tags" ++msgstr "タグなし" ++ ++#: wp-admin/edit-post-rows.php:137 ++#: wp-admin/includes/template.php:433 ++#, php-format ++msgid "View \"%s\"" ++msgstr "\"%s\" を衚瀺する" ++ ++#: wp-admin/edit-post-rows.php:162 ++msgid "View" ++msgstr "衚瀺" ++ ++#: wp-admin/edit-tag-form.php:3 ++#: wp-admin/edit-tag-form.php:4 ++msgid "Edit Tag" ++msgstr "タグの線集" ++ ++#: wp-admin/edit-tag-form.php:10 ++#: wp-admin/edit-tag-form.php:11 ++msgid "Add Tag" ++msgstr "タグの远加" ++ ++#: wp-admin/edit-tag-form.php:28 ++msgid "Tag name" ++msgstr "タグ名" ++ ++#: wp-admin/edit-tag-form.php:30 ++msgid "The name is how the tag appears on your site." ++msgstr "この名前でタグがサむト䞊に衚瀺されたす。" ++ ++#: wp-admin/edit-tag-form.php:33 ++msgid "Tag slug" ++msgstr "タグスラッグ" ++ ++#: wp-admin/edit-tags.php:113 ++msgid "Tag added." ++msgstr "タグが远加されたした。" ++ ++#: wp-admin/edit-tags.php:114 ++msgid "Tag deleted." ++msgstr "タグが削陀されたした。" ++ ++#: wp-admin/edit-tags.php:115 ++msgid "Tag updated." ++msgstr "タグが曎新されたした。" ++ ++#: wp-admin/edit-tags.php:116 ++msgid "Tag not added." ++msgstr "タグは远加されたせんでした。" ++ ++#: wp-admin/edit-tags.php:117 ++msgid "Tag not updated." ++msgstr "タグは曎新されたせんでした。" ++ ++#: wp-admin/edit-tags.php:118 ++msgid "Tags deleted." ++msgstr "タグが削陀されたした。" ++ ++#: wp-admin/edit-tags.php:130 ++#, php-format ++msgid "Manage Tags (add new)" ++msgstr "タグの管理 (新芏远加)" ++ ++#: wp-admin/edit-tags.php:132 ++msgid "Manage Tags" ++msgstr "タグの管理" ++ ++#: wp-admin/edit-tags.php:137 ++msgid "Search Tags" ++msgstr "タグを怜玢" ++ ++#: wp-admin/export.php:4 ++#: wp-admin/export.php:16 ++#: wp-admin/menu.php:48 ++msgid "Export" ++msgstr "゚クスポヌト" ++ ++#: wp-admin/export.php:17 ++msgid "When you click the button below WordPress will create an XML file for you to save to your computer." ++msgstr "䞋のボタンをクリックするず、WordPress がロヌカルに保存するための XML ファむルを䜜成したす。" ++ ++#: wp-admin/export.php:18 ++msgid "This format, which we call WordPress eXtended RSS or WXR, will contain your posts, pages, comments, custom fields, categories, and tags." ++msgstr "WordPress eXtended RSS もしくは WXR ず呌んでいるこのフォヌマットには、投皿、ペヌゞ、コメント、カスタムフィヌルド、カテゎリヌ、タグが含たれたす。" ++ ++#: wp-admin/export.php:19 ++msgid "Once you’ve saved the download file, you can use the Import function on another WordPress blog to import this blog." ++msgstr "このダりンロヌドファむルを保存すれば、別の WordPress のむンポヌト機胜を䜿甚しおこのブログをむンポヌトするこずができたす。" ++ ++#: wp-admin/export.php:21 ++msgid "Options" ++msgstr "蚭定" ++ ++#: wp-admin/export.php:25 ++msgid "Restrict Author" ++msgstr "゚クスポヌトする投皿者" ++ ++#: wp-admin/export.php:28 ++msgid "All Authors" ++msgstr "すべおの䜜成者" ++ ++#: wp-admin/export.php:40 ++msgid "Download Export File" ++msgstr "゚クスポヌトファむルをダりンロヌド" ++ ++#: wp-admin/import/blogger.php:13 ++msgid "Import Blogger" ++msgstr "Blogger のむンポヌト" ++ ++#: wp-admin/import/blogger.php:14 ++msgid "Howdy! This importer allows you to import posts and comments from your Blogger account into your WordPress blog." ++msgstr "こんにちは ! このむンポヌタヌによっお、Blogger のあなたの投皿蚘事ずコメントをこの WordPress ぞむンポヌトするこずができたす。" ++ ++#: wp-admin/import/blogger.php:15 ++msgid "To use this importer, you must have a Google account and an upgraded (New, was Beta) blog hosted on blogspot.com or a custom domain (not FTP)." ++msgstr "このむンポヌタヌを䜿甚するには、Google アカりントずアップグレヌドした (新しい、か぀おのベヌタ版) ブログが必芁です。たた、そのブログは blogspot.com 䞊もしくはカスタムなドメむン䞊 (FTP ではなく) になくおはなりたせん。" ++ ++#: wp-admin/import/blogger.php:16 ++msgid "The first thing you need to do is tell Blogger to let WordPress access your account. You will be sent back here after providing authorization." ++msgstr "たずは、あなたのアカりントに WordPress がアクセスできるように Blogger を蚭定しおください。認蚌埌にこの画面に戻っおきたす。" ++ ++#: wp-admin/import/blogger.php:17 ++msgid "Authorize" ++msgstr "認蚌する" ++ ++#: wp-admin/import/blogger.php:51 ++msgid "Authorization failed" ++msgstr "認蚌倱敗" ++ ++#: wp-admin/import/blogger.php:52 ++msgid "Something went wrong. If the problem persists, send this info to support:" ++msgstr "䜕かがうたくいかなかったようです。もしこの問題が続くようならこの情報を次のサポヌトに送っおください:" ++ ++#: wp-admin/import/blogger.php:109 ++msgid "Trouble signing in" ++msgstr "サむンむンに問題が生じたした" ++ ++#: wp-admin/import/blogger.php:110 ++msgid "We were not able to gain access to your account. Try starting over." ++msgstr "あなたのアカりントにアクセスできたせんでした。最初からやり盎しおください。" ++ ++#: wp-admin/import/blogger.php:143 ++msgid "No blogs found" ++msgstr "ブログは芋぀かりたせんでした" ++ ++#: wp-admin/import/blogger.php:144 ++msgid "We were able to log in but there were no blogs. Try a different account next time." ++msgstr "ログむンはできたしたがブログがありたせんでした。次は別のアカりントを詊しおください。" ++ ++#: wp-admin/import/blogger.php:152 ++#: wp-admin/upgrade.php:30 ++#: wp-admin/upgrade.php:57 ++msgid "Continue" ++msgstr "続ける" ++ ++#: wp-admin/import/blogger.php:153 ++#: wp-admin/link-import.php:73 ++msgid "Importing..." ++msgstr "むンポヌト䞭..." ++ ++#: wp-admin/import/blogger.php:154 ++msgid "Set Authors" ++msgstr "䜜成者の蚭定" ++ ++#: wp-admin/import/blogger.php:155 ++msgid "Preparing author mapping form..." ++msgstr "䜜成者の割圓を準備䞭..." ++ ++#: wp-admin/import/blogger.php:156 ++msgid "Final Step: Author Mapping" ++msgstr "最埌のステップ: 䜜成者の割圓" ++ ++#: wp-admin/import/blogger.php:157 ++msgid "Nothing was imported. Had you already imported this blog?" ++msgstr "䜕もむンポヌトされたせんでした。このブログはすでにむンポヌト枈みではありたせんか ?" ++ ++#: wp-admin/import/blogger.php:158 ++msgid "Blogger Blogs" ++msgstr "Blogger ブログ" ++ ++#: wp-admin/import/blogger.php:159 ++msgid "Blog Name" ++msgstr "ブログ名" ++ ++#: wp-admin/import/blogger.php:160 ++msgid "Blog URL" ++msgstr "ブログの URL" ++ ++#: wp-admin/import/blogger.php:161 ++msgid "The Magic Button" ++msgstr "魔法のボタン" ++ ++#: wp-admin/import/blogger.php:163 ++#: wp-admin/includes/file.php:3 ++#: wp-admin/menu.php:38 ++#: wp-content/plugins/akismet/akismet.php:488 ++#: wp-content/themes/classic/comments-popup.php:22 ++msgid "Comments" ++msgstr "コメント" ++ ++#: wp-admin/import/blogger.php:164 ++msgid "This feature requires Javascript but it seems to be disabled. Please enable Javascript and then reload this page. Don't worry, you can turn it back off when you're done." ++msgstr "この機胜は Javascript を必芁ずしたすが無効になっおいるようです。Javascript を有効にしおこのペヌゞを再読蟌みしおください。ご心配なく、この䜜業が終わったら無効にしおかたいたせん。" ++ ++#: wp-admin/import/blogger.php:611 ++msgid "All posts were imported with the current user as author. Use this form to move each Blogger user's posts to a different WordPress user. You may add users and then return to this page and complete the user mapping. This form may be used as many times as you like until you activate the \"Restart\" function below." ++msgstr "今ログむン䞭のナヌザヌを䜜成者ずしおすべおの投皿をむンポヌトしたした。このフォヌムを䜿甚しお WordPress の別のナヌザヌに投皿を割り圓おるこずができたす。たた、ナヌザヌを远加埌にこのペヌゞに戻っお、投皿をそのナヌザヌに割り圓おるこずもできたす。このフォヌムは䞋蚘の \"再スタヌト\" 機胜を有効化するたで䜕床でも䜿甚するこずができたす。" ++ ++#: wp-admin/import/blogger.php:612 ++msgid "Author mapping" ++msgstr "䜜成者の割圓" ++ ++#: wp-admin/import/blogger.php:614 ++msgid "Blogger username" ++msgstr "Blogger のナヌザヌ名" ++ ++#: wp-admin/import/blogger.php:615 ++msgid "WordPress login" ++msgstr "WordPress のナヌザヌ名 " ++ ++#: wp-admin/import/blogger.php:673 ++msgid "Could not connect to https://www.google.com" ++msgstr "https://www.google.com に接続するこずができたせん" ++ ++#: wp-admin/import/blogger.php:674 ++msgid "There was a problem opening a secure connection to Google. This is what went wrong:" ++msgstr "Google ずの安党な接続のオヌプンに問題が生じたした。原因は次のずおりです:" ++ ++#: wp-admin/import/blogger.php:685 ++#, php-format ++msgid "Could not connect to %s" ++msgstr "%s に接続できたせんでした" ++ ++#: wp-admin/import/blogger.php:686 ++msgid "There was a problem opening a connection to Blogger. This is what went wrong:" ++msgstr "Blogger ずの接続に問題が生じたした。原因は次のずおりです。" ++ ++#: wp-admin/import/blogger.php:752 ++msgid "Congratulations!" ++msgstr "おめでずうございたす !" ++ ++#: wp-admin/import/blogger.php:752 ++msgid "Now that you have imported your Blogger blog into WordPress, what are you going to do? Here are some suggestions:" ++msgstr "あなたの Blogger ブログを WordPress にむンポヌトしたした。次に䜕をしたすか ? いく぀か提案しおみたしょう。" ++ ++#: wp-admin/import/blogger.php:752 ++msgid "That was hard work! Take a break." ++msgstr "倧倉な䜜業でしたね ! ひず䌑みしおください。" ++ ++#: wp-admin/import/blogger.php:754 ++msgid "In case you haven't done it already, you can import the posts from your other blogs:" ++msgstr "これで完了したしたか ? ほかのブログからもあなたの投皿をむンポヌトするこずができたす。" ++ ++#: wp-admin/import/blogger.php:756 ++#, php-format ++msgid "Go to Authors & Users, where you can modify the new user(s) or delete them. If you want to make all of the imported posts yours, you will be given that option when you delete the new authors." ++msgstr "投皿者ずナヌザヌのペヌゞでむンポヌトした新しいナヌザヌの蚭定や削陀を行うこずができたす。むンポヌトしたすべおの投皿を自分の投皿ずしお割り圓おるには、むンポヌトした新しい投皿者を削陀するずきに提瀺されるオプションで自分のナヌザヌ名を遞択しおください。" ++ ++#: wp-admin/import/blogger.php:757 ++msgid "For security, click the link below to reset this importer." ++msgstr "あなたの情報を保護するため、䞋のリンクをクリックしおこのむンポヌタヌをリセットしおください。" ++ ++#: wp-admin/import/blogger.php:788 ++msgid "Restart" ++msgstr "再スタヌト" ++ ++#: wp-admin/import/blogger.php:789 ++msgid "We have saved some information about your Blogger account in your WordPress database. Clearing this information will allow you to start over. Restarting will not affect any posts you have already imported. If you attempt to re-import a blog, duplicate posts and comments will be skipped." ++msgstr "WordPress のデヌタベヌスに Blogger アカりント情報をいく぀か保存したした。この情報を削陀するずもう䞀床やり盎すこずができたす。やり盎しおもすでにむンポヌト枈みの投皿には圱響したせん。再むンポヌト時に重耇した投皿やコメントがあればスキップされたす。" ++ ++#: wp-admin/import/blogger.php:790 ++msgid "Clear account information" ++msgstr "アカりント情報を消去" ++ ++#: wp-admin/import/blogger.php:840 ++msgid "Blogger" ++msgstr "Blogger" ++ ++#: wp-admin/import/blogger.php:840 ++msgid "Import posts, comments, and users from a Blogger blog." ++msgstr "Blogger ブログから投皿、コメント、ナヌザヌをむンポヌトしたす。" ++ ++#: wp-admin/import/blogware.php:11 ++msgid "Import Blogware" ++msgstr "Blogware のむンポヌト" ++ ++#: wp-admin/import/blogware.php:26 ++msgid "Howdy! This importer allows you to extract posts from Blogware XML export file into your blog. Pick a Blogware file to upload and click Import." ++msgstr "こんにちは ! このむンポヌタヌは Blogware XML ゚クスポヌトファむルから投皿を抜き出しお、あなたのブログにむンポヌトしたす。アップロヌドする Blogware ファむルを遞択しおむンポヌトをクリックしおください。" ++ ++#: wp-admin/import/blogware.php:89 ++#: wp-admin/import/livejournal.php:69 ++#: wp-admin/import/mt.php:210 ++#: wp-admin/import/wordpress.php:387 ++#, php-format ++msgid "Post %s already exists." ++msgstr "投皿 %s はすでに存圚しおいたす。" ++ ++#: wp-admin/import/blogware.php:91 ++#: wp-admin/import/livejournal.php:71 ++#: wp-admin/import/mt.php:213 ++#: wp-admin/import/wordpress.php:418 ++#, php-format ++msgid "Importing post %s..." ++msgstr "投皿 %s のむンポヌト䞭..." ++ ++#: wp-admin/import/blogware.php:98 ++#: wp-admin/import/livejournal.php:77 ++#: wp-admin/import/rss.php:116 ++msgid "Couldn't get post ID" ++msgstr "post ID を取埗できたせんでした" ++ ++#: wp-admin/import/blogware.php:144 ++#: wp-includes/pluggable.php:892 ++#, php-format ++msgid "%s comment" ++msgid_plural "%s comments" ++msgstr[0] "%s 件のコメント" ++ ++#: wp-admin/import/blogware.php:167 ++#: wp-admin/import/livejournal.php:144 ++#: wp-admin/import/mt.php:423 ++#: wp-admin/import/rss.php:147 ++#, php-format ++msgid "All done. Have fun!" ++msgstr "すべお完了したした。ではお楜しみください ! " ++ ++#: wp-admin/import/blogware.php:200 ++msgid "Blogware" ++msgstr "Blogware" ++ ++#: wp-admin/import/blogware.php:200 ++msgid "Import posts from Blogware." ++msgstr "Blogware から投皿をむンポヌトしたす。" ++ ++#: wp-admin/import/btt.php:7 ++msgid "Import Bunny’s Technorati Tags" ++msgstr "Bunny’s Technorati Tags のむンポヌト" ++ ++#: wp-admin/import/btt.php:8 ++#: wp-admin/import/dotclear.php:116 ++#: wp-admin/import/jkw.php:8 ++#: wp-admin/import/stp.php:6 ++#: wp-admin/import/textpattern.php:33 ++#: wp-admin/import/utw.php:8 ++msgid "Steps may take a few minutes depending on the size of your database. Please be patient." ++msgstr "この䜜業はあなたのデヌタベヌスの倧きさによっおは数分かかるこずがありたすので、あせらずお埅ちください。" ++ ++#: wp-admin/import/btt.php:17 ++msgid "Howdy! This imports tags from Bunny’s Technorati Tags into WordPress tags." ++msgstr "こんにちは ! このむンポヌタヌは Bunny’s Technorati Tags のタグを WordPress のタグにむンポヌトしたす。" ++ ++#: wp-admin/import/btt.php:18 ++msgid "This is suitable for Bunny’s Technorati Tags version 0.6." ++msgstr "このむンポヌタヌは Bunny’s Technorati Tags バヌゞョン 0.6 甚です。" ++ ++#: wp-admin/import/btt.php:19 ++msgid "All existing Bunny’s Technorati Tags will be removed after import." ++msgstr "むンポヌト埌、既存の Bunny’s Technorati Tags はすべお削陀されたす。" ++ ++#: wp-admin/import/btt.php:20 ++#: wp-admin/import/jkw.php:20 ++#: wp-admin/import/stp.php:18 ++#: wp-admin/import/utw.php:20 ++msgid "Don’t be stupid - backup your database before proceeding!" ++msgstr "泚意 - 先に進む前に必ずデヌタベヌスをバックアップしおください !" ++ ++#: wp-admin/import/btt.php:23 ++msgid "Import Tags" ++msgstr "Tags をむンポヌト" ++ ++#: wp-admin/import/btt.php:62 ++msgid "Reading Bunny’s Technorati Tags…" ++msgstr "Bunny’s Technorati Tags のタグを読み蟌み䞭…" ++ ++#: wp-admin/import/btt.php:67 ++#: wp-admin/import/jkw.php:83 ++#: wp-admin/import/jkw.php:124 ++#: wp-admin/import/utw.php:72 ++msgid "No Tags Found!" ++msgstr "タグは芋぀かりたせんでした !" ++ ++#: wp-admin/import/btt.php:71 ++#: wp-admin/import/jkw.php:87 ++#, php-format ++msgid "Done! %s post with tags were read." ++msgid_plural "Done! %s posts with tags were read." ++msgstr[0] "完了 ! タグ付けされた %s 件の投皿が読み蟌たれたした。" ++ ++#: wp-admin/import/btt.php:93 ++#: wp-admin/import/jkw.php:109 ++#: wp-admin/import/jkw.php:142 ++msgid "Next" ++msgstr "次ペヌゞぞ" ++ ++#: wp-admin/import/btt.php:100 ++#: wp-admin/import/jkw.php:163 ++#: wp-admin/import/stp.php:139 ++#: wp-admin/import/utw.php:250 ++msgid "Import Complete!" ++msgstr "むンポヌト完了 !" ++ ++#: wp-admin/import/btt.php:113 ++msgid "Import Bunny’s Technorati Tags into WordPress tags." ++msgstr "Bunny’s Technorati Tags を WordPress のタグにむンポヌトしたす。" ++ ++#: wp-admin/import/dotclear.php:115 ++msgid "Import DotClear" ++msgstr "DotClear のむンポヌト" ++ ++#: wp-admin/import/dotclear.php:126 ++msgid "Howdy! This importer allows you to extract posts from a DotClear database into your blog. Mileage may vary." ++msgstr "こんにちは ! このむンポヌタヌは DotClear のデヌタベヌスから投皿を抜き出しお、あなたのブログにむンポヌトしたす。しかし、堎合によっおはすべおをむンポヌトできないかもしれたせん。" ++ ++#: wp-admin/import/dotclear.php:127 ++msgid "Your DotClear Configuration settings are as follows:" ++msgstr "あなたの DotClear の蚭定を入力しおください:" ++ ++#: wp-admin/import/dotclear.php:131 ++msgid "Import Categories" ++msgstr "カテゎリヌのむンポヌト" ++ ++#: wp-admin/import/dotclear.php:204 ++#: wp-admin/import/textpattern.php:156 ++msgid "Importing Categories..." ++msgstr "カテゎリヌのむンポヌト䞭..." ++ ++#: wp-admin/import/dotclear.php:228 ++#: wp-admin/import/textpattern.php:180 ++#, php-format ++msgid "Done! %1$s category imported." ++msgid_plural "Done! %1$s categories imported." ++msgstr[0] "完了 ! %1$s 個のカテゎリヌをむンポヌトしたした。" ++ ++#: wp-admin/import/dotclear.php:231 ++#: wp-admin/import/textpattern.php:183 ++msgid "No Categories to Import!" ++msgstr "むンポヌトするカテゎリヌはありたせん !" ++ ++#: wp-admin/import/dotclear.php:245 ++#: wp-admin/import/textpattern.php:197 ++msgid "Importing Users..." ++msgstr "ナヌザヌをむンポヌト䞭..." ++ ++#: wp-admin/import/dotclear.php:302 ++#: wp-admin/import/textpattern.php:252 ++#, php-format ++msgid "Done! %1$s users imported." ++msgstr "完了 ! %1$s 人のナヌザヌをむンポヌトしたした。" ++ ++#: wp-admin/import/dotclear.php:306 ++#: wp-admin/import/textpattern.php:256 ++msgid "No Users to Import!" ++msgstr "むンポヌトするナヌザヌはいたせん !" ++ ++#: wp-admin/import/dotclear.php:322 ++#: wp-admin/import/textpattern.php:272 ++msgid "Importing Posts..." ++msgstr "投皿のむンポヌト䞭..." ++ ++#: wp-admin/import/dotclear.php:405 ++#: wp-admin/import/textpattern.php:346 ++#, php-format ++msgid "Done! %1$s posts imported." ++msgstr "完了 ! %1$s 件の投皿をむンポヌトしたした。" ++ ++#: wp-admin/import/dotclear.php:420 ++#: wp-admin/import/textpattern.php:361 ++msgid "Importing Comments..." ++msgstr "コメントのむンポヌト䞭..." ++ ++#: wp-admin/import/dotclear.php:475 ++#: wp-admin/import/textpattern.php:413 ++#, php-format ++msgid "Done! %1$s comments imported." ++msgstr "完了 ! %1$s 件のコメントをむンポヌトしたした。" ++ ++#: wp-admin/import/dotclear.php:478 ++#: wp-admin/import/textpattern.php:416 ++msgid "No Comments to Import!" ++msgstr "むンポヌトするコメントはありたせんでした !" ++ ++#: wp-admin/import/dotclear.php:491 ++#: wp-admin/import/textpattern.php:429 ++msgid "Importing Links..." ++msgstr "リンクのむンポヌト䞭..." ++ ++#: wp-admin/import/dotclear.php:529 ++#, php-format ++msgid "Done! %s link or link category imported." ++msgid_plural "Done! %s links or link categories imported." ++msgstr[0] "完了 ! %s 個のリンクもしくはリンクカテゎリヌをむンポヌトしたした。" ++ ++#: wp-admin/import/dotclear.php:533 ++#: wp-admin/import/textpattern.php:469 ++msgid "No Links to Import!" ++msgstr "むンポヌトするリンクはありたせんでした !" ++ ++#: wp-admin/import/dotclear.php:548 ++#: wp-admin/import/textpattern.php:484 ++msgid "Import Users" ++msgstr "ナヌザヌのむンポヌト" ++ ++#: wp-admin/import/dotclear.php:561 ++#: wp-admin/import/textpattern.php:497 ++msgid "Import Posts" ++msgstr "投皿のむンポヌト" ++ ++#: wp-admin/import/dotclear.php:575 ++#: wp-admin/import/textpattern.php:511 ++msgid "Import Comments" ++msgstr "コメントのむンポヌト" ++ ++#: wp-admin/import/dotclear.php:600 ++#: wp-admin/import/textpattern.php:536 ++msgid "Finish" ++msgstr "終了" ++ ++#: wp-admin/import/dotclear.php:624 ++msgid "Welcome to WordPress. We hope (and expect!) that you will find this platform incredibly rewarding! As a new WordPress user coming from DotClear, there are some things that we would like to point out. Hopefully, they will help your transition go as smoothly as possible." ++msgstr "WordPress ぞようこそ。このプラットフォヌムがあなたにずっお倧いに有意矩なものになるこずを望んで (そしお期埅しお) いたす。DotClear から新しく WordPress ナヌザヌになったあなたにいく぀かお知らせするこずがありたす。これはむンポヌトをできるかぎり円滑に進めるための手助けずなるでしょう。" ++ ++#: wp-admin/import/dotclear.php:625 ++#: wp-admin/import/textpattern.php:560 ++#: wp-admin/menu.php:29 ++#: wp-admin/users.php:8 ++msgid "Users" ++msgstr "ナヌザヌ" ++ ++#: wp-admin/import/dotclear.php:626 ++#, php-format ++msgid "You have already setup WordPress and have been assigned an administrative login and password. Forget it. You didn't have that login in DotClear, why should you have it here? Instead we have taken care to import all of your users into our system. Unfortunately there is one downside. Because both WordPress and DotClear uses a strong encryption hash with passwords, it is impossible to decrypt it and we are forced to assign temporary passwords to all your users. Every user has the same username, but their passwords are reset to password123. So Login and change it." ++msgstr "あなたはすでに WordPress のセットアップを終え、管理者暩限のログむンずパスワヌドを割り圓おられおいるこずでしょう。それは忘れおください。DotClear ではそのログむンを持っおいなかったのに、どうしおここにそのログむンを持っおいるのでしょう ? その代わり、このむンポヌタヌは入念にあなたのすべおのナヌザヌをこのシステムにむンポヌトしたした。しかし残念なこずに䞀぀だけできないこずがありたした。WordPress ず DotClear は䞡方ずもパスワヌドの保存に匷力な暗号化ハッシュを䜿甚しおいるので、それを埩号するこずは䞍可胜です。したがっお、すべおのナヌザヌに䞀時的なパスワヌドを割り圓おざるをえたせんでした。各ナヌザヌは DotClear ず同じナヌザヌ名になっおいたすが、パスワヌドはリセットされお「password123」に倉曎されおいたす。ログむンしお倉曎しおください。" ++ ++#: wp-admin/import/dotclear.php:627 ++#: wp-admin/import/textpattern.php:562 ++msgid "Preserving Authors" ++msgstr "投皿者の保存" ++ ++#: wp-admin/import/dotclear.php:628 ++#: wp-admin/import/textpattern.php:563 ++msgid "Secondly, we have attempted to preserve post authors. If you are the only author or contributor to your blog, then you are safe. In most cases, we are successful in this preservation endeavor. However, if we cannot ascertain the name of the writer due to discrepancies between database tables, we assign it to you, the administrative user." ++msgstr "次に、投皿者の保存を詊みたした。あなたがブログの唯䞀の投皿者もしくは寄皿者なら、問題はありたせん。たいおいの堎合、この保存䜜業は成功しおいたす。しかし、もしデヌタベヌスの䞍䞀臎により曞いた人の名前を確定できない堎合、管理ナヌザヌであるあなたにその名前を割り圓おるこずになりたす。" ++ ++#: wp-admin/import/dotclear.php:629 ++#: wp-admin/import/textpattern.php:564 ++msgid "Textile" ++msgstr "Textile" ++ ++#: wp-admin/import/dotclear.php:630 ++msgid "Also, since you're coming from DotClear, you probably have been using Textile to format your comments and posts. If this is the case, we recommend downloading and installing Textile for WordPress. Trust me... You'll want it." ++msgstr "たた、DotClear を䜿甚しおいたのであれば、おそらくコメントや投皿のフォヌマットに Textile を䜿甚しおいたこずず思いたす。もしそうであれば Textile for WordPress のダりンロヌドずむンストヌルをお勧めしたす。信じおください、、、必芁になりたすから。" ++ ++#: wp-admin/import/dotclear.php:631 ++#: wp-admin/import/textpattern.php:566 ++msgid "WordPress Resources" ++msgstr "WordPress の資料" ++ ++#: wp-admin/import/dotclear.php:632 ++#: wp-admin/import/textpattern.php:567 ++msgid "Finally, there are numerous WordPress resources around the internet. Some of them are:" ++msgstr "最埌に、WordPress に関する資料はむンタヌネット䞊にたくさんありたす。いく぀か挙げおみたしょう。" ++ ++#: wp-admin/import/dotclear.php:634 ++#: wp-admin/import/textpattern.php:569 ++msgid "The official WordPress site" ++msgstr "WordPress の公匏サむト" ++ ++#: wp-admin/import/dotclear.php:635 ++#: wp-admin/import/textpattern.php:570 ++msgid "The WordPress support forums" ++msgstr "WordPress サポヌトフォヌラム" ++ ++#: wp-admin/import/dotclear.php:636 ++#: wp-admin/import/textpattern.php:571 ++msgid "The Codex (In other words, the WordPress Bible)" ++msgstr "Codex (すなわち、WordPress のバむブル) " ++ ++#: wp-admin/import/dotclear.php:638 ++#, php-format ++msgid "That's it! What are you waiting for? Go login!" ++msgstr "以䞊です ! 䜕を埅っおいるのですか ? ログむンしたしょう !" ++ ++#: wp-admin/import/dotclear.php:644 ++msgid "DotClear Database User:" ++msgstr "DotClear デヌタベヌスナヌザヌ:" ++ ++#: wp-admin/import/dotclear.php:645 ++msgid "DotClear Database Password:" ++msgstr "DotClear デヌタベヌスのパスワヌド:" ++ ++#: wp-admin/import/dotclear.php:646 ++msgid "DotClear Database Name:" ++msgstr "DotClear デヌタベヌス名:" ++ ++#: wp-admin/import/dotclear.php:647 ++msgid "DotClear Database Host:" ++msgstr "DotClear デヌタベヌスのホスト:" ++ ++#: wp-admin/import/dotclear.php:648 ++msgid "DotClear Table prefix:" ++msgstr "DotClear テヌブル接頭語:" ++ ++#: wp-admin/import/dotclear.php:649 ++msgid "Originating character set:" ++msgstr "むンポヌト元の文字コヌド:" ++ ++#: wp-admin/import/dotclear.php:745 ++msgid "DotClear" ++msgstr "DotClear" ++ ++#: wp-admin/import/dotclear.php:745 ++msgid "Import categories, users, posts, comments, and links from a DotClear blog." ++msgstr "DotClear ブログからカテゎリヌ、ナヌザヌ、投皿、コメント、リンクをむンポヌトしたす。" ++ ++#: wp-admin/import/greymatter.php:9 ++msgid "Import GreyMatter" ++msgstr "GreyMatter のむンポヌト" ++ ++#: wp-admin/import/greymatter.php:19 ++msgid "This is a basic GreyMatter to WordPress import script." ++msgstr "これは GreyMatter から WordPress ぞむンポヌトするための基本的なスクリプトです。" ++ ++#: wp-admin/import/greymatter.php:20 ++msgid "What it does:" ++msgstr "このむンポヌタヌが実斜するこず:" ++ ++#: wp-admin/import/greymatter.php:22 ++msgid "Parses gm-authors.cgi to import (new) authors. Everyone is imported at level 1." ++msgstr "gm-authors.cgi をパヌスしお (新しい) 投皿者をむンポヌトしたす。すべおのナヌザヌがレベル 1 ずしおむンポヌトされたす。" ++ ++#: wp-admin/import/greymatter.php:23 ++msgid "Parses the entries cgi files to import posts, comments, and karma on posts (although karma is not used on WordPress yet).
    If authors are found not to be in gm-authors.cgi, imports them at level 0." ++msgstr "゚ントリヌ cgi ファむルをパヌスしお投皿、コメント、投皿のカルマ (WordPress では䜿甚しおいたせんが) をむンポヌトしたす。
    投皿者が gm-authors.cgi に芋圓たらない堎合は、その投皿者をレベル 0 ずしおむンポヌトしたす。" ++ ++#: wp-admin/import/greymatter.php:24 ++msgid "Detects duplicate entries or comments. If you don't import everything the first time, or this import should fail in the middle, duplicate entries will not be made when you try again." ++msgstr "重耇した投皿やコメントを怜知したす。最初のずきにすべおをむンポヌトしなかったり、途䞭でむンポヌトに倱敗しおも、再床むンポヌトしたずきに投皿やコメントは重耇したせん。" ++ ++#: wp-admin/import/greymatter.php:26 ++msgid "What it does not:" ++msgstr "このむンポヌタヌが実斜しないこず:" ++ ++#: wp-admin/import/greymatter.php:28 ++msgid "Parse gm-counter.cgi, gm-banlist.cgi, gm-cplog.cgi (you can make a CP log hack if you really feel like it, but I question the need of a CP log)." ++msgstr "gm-counter.cgi、gm-banlist.cgi、gm-cplog.cgi (もし本圓にお望みなら CP log hack を䜜成できたすが、必芁はないでしょう) のパヌス。" ++ ++#: wp-admin/import/greymatter.php:29 ++msgid "Import gm-templates." ++msgstr "gm-templates のむンポヌト。" ++ ++#: wp-admin/import/greymatter.php:30 ++msgid "Doesn't keep entries on top." ++msgstr "゚ントリヌを䞀番䞊に保持しないこず。" ++ ++#: wp-admin/import/greymatter.php:38 ++msgid "Second step: GreyMatter details:" ++msgstr "2 番目のステップ: GreyMatter の詳现:" ++ ++#: wp-admin/import/greymatter.php:41 ++msgid "Path to GM files:" ++msgstr "GM ファむルぞのパス:" ++ ++#: wp-admin/import/greymatter.php:45 ++msgid "Path to GM entries:" ++msgstr "GM の゚ントリヌぞのパス:" ++ ++#: wp-admin/import/greymatter.php:49 ++msgid "Last entry's number:" ++msgstr "最埌の゚ントリヌの数:" ++ ++#: wp-admin/import/greymatter.php:51 ++msgid "This importer will search for files 00000001.cgi to 000-whatever.cgi,
    so you need to enter the number of the last GM post here.
    (if you don't know that number, just log into your FTP and look it out
    in the entries' folder)" ++msgstr "このむンポヌタヌでは 00000001.cgi から 000-任意の数.cgi のファむルを怜玢するので
    GM での投皿の最埌の数をここに入力する必芁がありたす。
    (最埌の数がわからなければ FTP でログむンしお゚ントリヌフォルダを調べおください) " ++ ++#: wp-admin/import/greymatter.php:55 ++msgid "Start Importing" ++msgstr "むンポヌトを開始" ++ ++#: wp-admin/import/greymatter.php:88 ++msgid "Wrong path, the path to the GM entries does not exist on the server" ++msgstr "パスが間違っおいたす、このサヌバヌには GM の゚ントリヌはありたせん" ++ ++#: wp-admin/import/greymatter.php:91 ++msgid "Wrong path, the path to the GM files does not exist on the server" ++msgstr "パスが間違っおいたす、このサヌバヌには GM のファむルはありたせん" ++ ++#: wp-admin/import/greymatter.php:97 ++msgid "The importer is running..." ++msgstr "むンポヌタヌを実行䞭です..." ++ ++#: wp-admin/import/greymatter.php:99 ++msgid "importing users..." ++msgstr "ナヌザヌをむンポヌト䞭..." ++ ++#: wp-admin/import/greymatter.php:123 ++#, php-format ++msgid "user %s" ++msgstr "ナヌザヌ %s" ++ ++#: wp-admin/import/greymatter.php:123 ++msgid "Already exists" ++msgstr "すでに存圚しおいたす" ++ ++#: wp-admin/import/greymatter.php:132 ++#, php-format ++msgid "user %s..." ++msgstr "ナヌザヌ %s..." ++ ++#: wp-admin/import/greymatter.php:132 ++#: wp-admin/import/greymatter.php:135 ++#: wp-admin/import/greymatter.php:280 ++#: wp-admin/import/greymatter.php:285 ++msgid "Done" ++msgstr "完了" ++ ++#: wp-admin/import/greymatter.php:136 ++msgid "importing posts, comments, and karma..." ++msgstr "投皿、コメント、カルマをむンポヌト䞭..." ++ ++#: wp-admin/import/greymatter.php:172 ++#, php-format ++msgid "entry # %s : %s : by %s" ++msgstr "゚ントリヌ # %s : %s : by %s" ++ ++#: wp-admin/import/greymatter.php:200 ++msgid "(already exists)" ++msgstr " (すでに存圚しおいたす) " ++ ++#: wp-admin/import/greymatter.php:222 ++#, php-format ++msgid "registered deleted user %s at level 0 " ++msgstr "削陀したナヌザヌ %s をレベル 0 ずしお登録したした" ++ ++#: wp-admin/import/greymatter.php:272 ++#, php-format ++msgid "imported %s comment" ++msgid_plural "imported %s comments" ++msgstr[0] "%s 件のコメントがむンポヌトされたした" ++ ++#: wp-admin/import/greymatter.php:277 ++#, php-format ++msgid "ignored %s pre-existing comment" ++msgid_plural "ignored %s pre-existing comments" ++msgstr[0] "すでにある %s 件のコメントを無芖したした" ++ ++#: wp-admin/import/greymatter.php:287 ++msgid "Completed GreyMatter import!" ++msgstr "GreyMatter のむンポヌトを完了 !" ++ ++#: wp-admin/import/greymatter.php:319 ++msgid "GreyMatter" ++msgstr "GreyMatter" ++ ++#: wp-admin/import/greymatter.php:319 ++msgid "Import users, posts, and comments from a Greymatter blog." ++msgstr "GreyMatter ブログからナヌザヌ、投皿、コメントをむンポヌトしたす。" ++ ++#: wp-admin/import/jkw.php:7 ++msgid "Import Jerome’s Keywords" ++msgstr "Jerome’s Keywords のむンポヌト" ++ ++#: wp-admin/import/jkw.php:17 ++msgid "Howdy! This imports tags from Jerome’s Keywords into WordPress tags." ++msgstr "こんにちは ! このむンポヌタヌは Jerome’s Keywords のタグを WordPress のタグにむンポヌトしたす。" ++ ++#: wp-admin/import/jkw.php:18 ++msgid "This is suitable for Jerome’s Keywords version 1.x and 2.0a." ++msgstr "このむンポヌタヌは Jerome’s Keywords バヌゞョン 1.x ず 2.0a 甚です。" ++ ++#: wp-admin/import/jkw.php:19 ++msgid "All existing Jerome’s Keywords will be removed after import." ++msgstr "むンポヌト埌、既存の Jerome’s Keywords はすべお削陀されたす。" ++ ++#: wp-admin/import/jkw.php:23 ++msgid "Import Version 1.x" ++msgstr "バヌゞョン 1.x をむンポヌト" ++ ++#: wp-admin/import/jkw.php:27 ++msgid "Import Version 2.0a" ++msgstr "バヌゞョン 2.0a をむンポヌト" ++ ++#: wp-admin/import/jkw.php:78 ++#: wp-admin/import/jkw.php:118 ++msgid "Reading Jerome’s Keywords Tags…" ++msgstr "Jerome’s Keywords のタグを読み蟌み䞭…" ++ ++#: wp-admin/import/jkw.php:128 ++#: wp-admin/import/utw.php:87 ++#, php-format ++msgid "Done! %s tag were read." ++msgid_plural "Done! %s tags were read." ++msgstr[0] "完了 ! %s 個のタグが読み蟌たれたした。" ++ ++#: wp-admin/import/jkw.php:176 ++msgid "Import Jerome’s Keywords into WordPress tags." ++msgstr "Jerome’s Keywords を WordPress のタグにむンポヌトしたす。" ++ ++#: wp-admin/import/livejournal.php:9 ++msgid "Import LiveJournal" ++msgstr "LiveJournal のむンポヌト" ++ ++#: wp-admin/import/livejournal.php:24 ++msgid "Howdy! Upload your LiveJournal XML export file and we’ll import the posts into this blog." ++msgstr "こんにちは ! LiveJournal XML ゚クスポヌトファむルをアップロヌドしおください。投皿をこのブログにむンポヌトしたす。" ++ ++#: wp-admin/import/livejournal.php:25 ++msgid "Choose a LiveJournal XML file to upload, then click Upload file and import." ++msgstr "LiveJournal XML ファむルを遞択し、「ファむルをアップロヌドしおむンポヌト」をクリックしおください。" ++ ++#: wp-admin/import/livejournal.php:122 ++#: wp-admin/import/mt.php:250 ++#: wp-admin/import/wordpress.php:493 ++#, php-format ++msgid "(%s comment)" ++msgid_plural "(%s comments)" ++msgstr[0] "(%s 件のコメント)" ++ ++#: wp-admin/import/livejournal.php:178 ++msgid "LiveJournal" ++msgstr "LiveJournal" ++ ++#: wp-admin/import/livejournal.php:178 ++msgid "Import posts from a LiveJournal XML export file." ++msgstr "LiveJournal XML ゚クスポヌトファむルから投皿をむンポヌトしたす。" ++ ++#: wp-admin/import/mt.php:14 ++msgid "Import Movable Type or TypePad" ++msgstr "Movable Type もしくは Typepad のむンポヌト" ++ ++#: wp-admin/import/mt.php:25 ++msgid "Howdy! We’re about to begin importing all of your Movable Type or Typepad entries into WordPress. To begin, either choose a file to upload and click \"Upload file and import,\" or use FTP to upload your MT export file as mt-export.txt in your /wp-content/ directory and then click \"Import mt-export.txt\"" ++msgstr "こんにちは ! これからあなたの Movable Type もしくは Typepad ゚ントリヌのすべおを WordPress にむンポヌトする䜜業を開始したす。アップロヌドするファむルを遞択しお \"ファむルをアップロヌドしおむンポヌト\" をクリックするか、 FTP を䜿甚しお mt-export.txt ずしお MT の゚クスポヌトファむルを /wp-content/ にアップロヌドし、\"Import mt-export.txt\" をクリックしおください 。" ++ ++#: wp-admin/import/mt.php:33 ++msgid "Or use mt-export.txt in your /wp-content/ directory" ++msgstr "もしくは /wp-content/ ディレクトリの mt-export.txt をお䜿いください。" ++ ++#: wp-admin/import/mt.php:35 ++msgid "Import mt-export.txt" ++msgstr "mt-export.txt のむンポヌト" ++ ++#: wp-admin/import/mt.php:38 ++msgid "The importer is smart enough not to import duplicates, so you can run this multiple times without worry if—for whatever reason—it doesn't finish. If you get an out of memory error try splitting up the import file into pieces." ++msgstr "このむンポヌタヌは優秀なので重耇したファむルはむンポヌトしたせん。したがっお䜕らかの理由でむンポヌト䜜業が終了できなくおも、安心しおこのむンポヌタヌを䜕床でも実行するこずができたす。もし out of memory (メモリヌ䞍足) ゚ラヌが発生した堎合はむンポヌトするファむルをいく぀かに分けおください。" ++ ++#: wp-admin/import/mt.php:48 ++#: wp-admin/import/wordpress.php:232 ++#: wp-admin/includes/template.php:807 ++#: wp-admin/options-reading.php:30 ++#: wp-admin/options-reading.php:31 ++msgid "- Select -" ++msgstr "- 遞択 -" ++ ++#: wp-admin/import/mt.php:155 ++#: wp-admin/import/wordpress.php:181 ++msgid "Assign Authors" ++msgstr "投皿者の割り圓お" ++ ++#: wp-admin/import/mt.php:156 ++msgid "To make it easier for you to edit and save the imported posts and drafts, you may want to change the name of the author of the posts. For example, you may want to import all the entries as admin's entries." ++msgstr "むンポヌトした投皿や䞋曞きの線集/保存を簡単にするために投皿者名を倉曎するこずができたす。䟋えば、すべおの゚ントリを管理者の゚ントリずしおむンポヌトするこずができたす。" ++ ++#: wp-admin/import/mt.php:157 ++msgid "Below, you can see the names of the authors of the MovableType posts in italics. For each of these names, you can either pick an author in your WordPress installation from the menu, or enter a name for the author in the textbox." ++msgstr "䞋蚘には MovableType の投皿者名がむタリックで衚瀺されおいたす。これらの各投皿者名ごずに、WordPress ブログの投皿者をメニュヌから遞択するか、あるいはテキスト゚リアに投皿者名を入力するこずができたす。" ++ ++#: wp-admin/import/mt.php:158 ++#: wp-admin/import/wordpress.php:185 ++msgid "If a new user is created by WordPress, a password will be randomly generated. Manually change the user's details if necessary." ++msgstr "WordPress によっお新しいナヌザヌが䜜成されるず、パスワヌドはランダムに生成されたす。必芁があれば埌で倉曎しおください。" ++ ++#: wp-admin/import/mt.php:169 ++msgid "Current author:" ++msgstr "珟圚の投皿者:" ++ ++#: wp-admin/import/mt.php:169 ++#: wp-admin/import/wordpress.php:221 ++#, php-format ++msgid "Create user %1$s or map to existing" ++msgstr "ナヌザヌ %1$s を䜜成もしくは既存のナヌザヌに割り圓お" ++ ++#: wp-admin/import/mt.php:174 ++#: wp-admin/import/wordpress.php:213 ++#: wp-includes/post-template.php:527 ++msgid "Submit" ++msgstr "実行" ++ ++#: wp-admin/import/mt.php:184 ++msgid "mt-export.txt does not exist" ++msgstr "mt-export.txt がありたせん。" ++ ++#: wp-admin/import/mt.php:190 ++msgid "Sorry, there has been an error" ++msgstr "゚ラヌが発生したした。" ++ ++#: wp-admin/import/mt.php:231 ++#, php-format ++msgid "
    Adding tags %s..." ++msgstr "
    次のタグを远加䞭 %s..." ++ ++#: wp-admin/import/mt.php:267 ++#, php-format ++msgid "(%s ping)" ++msgid_plural "(%s pings)" ++msgstr[0] " (%s 件のトラックバック/ピンバック) " ++ ++#: wp-admin/import/mt.php:468 ++msgid "Movable Type and TypePad" ++msgstr "Movable Type ず TypePad" ++ ++#: wp-admin/import/mt.php:468 ++msgid "Import posts and comments from a Movable Type or Typepad blog." ++msgstr "Movable Type もしくは Typepad から投皿ずコメントをむンポヌトしたす。" ++ ++#: wp-admin/import.php:10 ++msgid "If you have posts or comments in another system, WordPress can import those into this blog. To get started, choose a system to import from below:" ++msgstr "別のブログシステムに投皿やコメントがある堎合、WordPress はそれらの投皿等をむンポヌトするこずができたす。この䜜業を始めるには以䞋からむンポヌトするブログシステムを遞択しおください:" ++ ++#: wp-admin/import.php:32 ++msgid "No importers are available." ++msgstr "利甚可胜なむンポヌタヌがありたせん。" ++ ++#: wp-admin/import/rss.php:10 ++msgid "Import RSS" ++msgstr "RSS のむンポヌト" ++ ++#: wp-admin/import/rss.php:25 ++msgid "Howdy! This importer allows you to extract posts from an RSS 2.0 file into your blog. This is useful if you want to import your posts from a system that is not handled by a custom import tool. Pick an RSS file to upload and click Import." ++msgstr "こんにちは ! このむンポヌタヌは RSS 2.0 ファむルから投皿を抜き出しおあなたのブログにむンポヌトしたす。これは専甚のむンポヌトツヌルが甚意されおいないシステムから投皿をむンポヌトしたい堎合に圹に立ちたす。アップロヌドする RSS ファむルを遞択しおむンポヌトをクリックしおください。" ++ ++#: wp-admin/import/rss.php:105 ++msgid "Importing post..." ++msgstr "投皿のむンポヌト䞭..." ++ ++#: wp-admin/import/rss.php:110 ++msgid "Post already imported" ++msgstr "投皿はすでにむンポヌトされおいたす。" ++ ++#: wp-admin/import/rss.php:122 ++msgid "Done !" ++msgstr "完了 !" ++ ++#: wp-admin/import/rss.php:181 ++#: wp-admin/includes/dashboard.php:225 ++#: wp-includes/widgets.php:1304 ++msgid "RSS" ++msgstr "RSS" ++ ++#: wp-admin/import/rss.php:181 ++msgid "Import posts from an RSS feed." ++msgstr "RSS フィヌドから投皿をむンポヌトしたす。" ++ ++#: wp-admin/import/stp.php:5 ++msgid "Import Simple Tagging" ++msgstr "Simple Tagging のむンポヌト" ++ ++#: wp-admin/import/stp.php:15 ++msgid "Howdy! This imports tags from Simple Tagging 1.6.2 into WordPress tags." ++msgstr "こんにちは ! このむンポヌタヌは Simple Tagging 1.6.2 のタグを WordPress のタグにむンポヌトしたす。" ++ ++#: wp-admin/import/stp.php:16 ++msgid "This has not been tested on any other versions of Simple Tagging. Mileage may vary." ++msgstr "Simple Tagging のこれ以倖のバヌゞョンではテストされおいたせん。すべおをむンポヌトできないかもしれたせん。" ++ ++#: wp-admin/import/stp.php:17 ++msgid "To accommodate larger databases for those tag-crazy authors out there, we have made this into an easy 4-step program to help you kick that nasty Simple Tagging habit. Just keep clicking along and we will let you know when you are in the clear!" ++msgstr "タグ倧奜き投皿者のみなさんにより倧きなデヌタベヌスを提䟛するため、この凊理を簡単な 4 個のステップのプログラムにしお Simple Tagging の悪習を断぀お手䌝いをしたす。指瀺に埓っおクリックし続けおください。あなたが自由の身になったらお知らせしたす !" ++ ++#: wp-admin/import/stp.php:21 ++#: wp-admin/import/utw.php:22 ++msgid "Step 1" ++msgstr "ステップ 1" ++ ++#: wp-admin/import/stp.php:58 ++msgid "Reading STP Post Tags…" ++msgstr "STP の投皿タグを読み蟌み䞭…" ++ ++#: wp-admin/import/stp.php:65 ++#: wp-admin/import/utw.php:124 ++msgid "No posts were found to have tags!" ++msgstr "タグ付けされおいる投皿は芋぀かりたせんでした !" ++ ++#: wp-admin/import/stp.php:76 ++#: wp-admin/import/utw.php:139 ++#, php-format ++msgid "Done! %s tag to post relationships were read." ++msgid_plural "Done! %s tags to post relationships were read." ++msgstr[0] "完了したした ! %s 個のタグず投皿の関連付けを読み蟌みたした。" ++ ++#: wp-admin/import/stp.php:81 ++#: wp-admin/import/utw.php:109 ++msgid "Step 2" ++msgstr "ステップ 2" ++ ++#: wp-admin/import/stp.php:89 ++#: wp-admin/import/utw.php:155 ++msgid "Adding Tags to Posts…" ++msgstr "投皿にタグ付け䞭…" ++ ++#: wp-admin/import/stp.php:94 ++#, php-format ++msgid "Done! %s tag was added!" ++msgid_plural "Done! %s tags were added!" ++msgstr[0] "完了したした ! %s 個のタグが远加されたした !" ++ ++#: wp-admin/import/stp.php:97 ++#: wp-admin/import/utw.php:145 ++msgid "Step 3" ++msgstr "ステップ 3" ++ ++#: wp-admin/import/stp.php:140 ++msgid "OK, so we lied about this being a 4-step program! You’re done!" ++msgstr "4 個のステップのプログラムがあるずいったのはり゜でした ! 以䞊で完了です !" ++ ++#: wp-admin/import/stp.php:141 ++#: wp-admin/import/utw.php:254 ++msgid "Now wasn’t that easy?" ++msgstr "簡単だったでしょ ?" ++ ++#: wp-admin/import/stp.php:154 ++msgid "Import Simple Tagging tags into WordPress tags." ++msgstr "Simple Tagging のタグを WordPress のタグにむンポヌトしたす。" ++ ++#: wp-admin/import/textpattern.php:32 ++msgid "Import Textpattern" ++msgstr "Textpattern のむンポヌト" ++ ++#: wp-admin/import/textpattern.php:43 ++msgid "Howdy! This imports categories, users, posts, comments, and links from any Textpattern 4.0.2+ into this blog." ++msgstr "こんにちは ! このむンポヌタヌは Textpattern 4.0.2 以䞊のブログから、カテゎリヌ、ナヌザヌ、投皿、コメント、リンクをむンポヌトしたす。" ++ ++#: wp-admin/import/textpattern.php:44 ++msgid "This has not been tested on previous versions of Textpattern. Mileage may vary." ++msgstr "Textpattern のこれ以前のバヌゞョンではテストされおいたせん。すべおをむンポヌトできないかもしれたせん。" ++ ++#: wp-admin/import/textpattern.php:45 ++msgid "Your Textpattern Configuration settings are as follows:" ++msgstr "あなたの Textpattern の蚭定を入力しおください:" ++ ++#: wp-admin/import/textpattern.php:465 ++#, php-format ++msgid "Done! %s link imported" ++msgid_plural "Done! %s links imported" ++msgstr[0] "完了 ! %s 個のリンクをむンポヌトしたした。" ++ ++#: wp-admin/import/textpattern.php:559 ++msgid "Welcome to WordPress. We hope (and expect!) that you will find this platform incredibly rewarding! As a new WordPress user coming from Textpattern, there are some things that we would like to point out. Hopefully, they will help your transition go as smoothly as possible." ++msgstr "WordPress ぞようこそ。このプラットフォヌムがあなたにずっお倧いに実りあるものずなるこずを私たちは望み、そしお期埅しおいたす。Textpattern から新しく WordPress ナヌザヌになったあなたにいく぀かお知らせするこずがありたす。これはあなたの移行をできるかぎり円滑に進めるための手助けずなるでしょう。" ++ ++#: wp-admin/import/textpattern.php:561 ++#, php-format ++msgid "You have already setup WordPress and have been assigned an administrative login and password. Forget it. You didn’t have that login in Textpattern, why should you have it here? Instead we have taken care to import all of your users into our system. Unfortunately there is one downside. Because both WordPress and Textpattern uses a strong encryption hash with passwords, it is impossible to decrypt it and we are forced to assign temporary passwords to all your users. Every user has the same username, but their passwords are reset to password123. So Login and change it." ++msgstr "あなたはすでに WordPress のセットアップを終え、管理者暩限のログむンずパスワヌドを割り圓おられおいたす。それは忘れおください。Textpattern ではそのログむンを持っおいなかったのに、どうしおここでそのログむンを持っおいるのでしょう ? その代わり、このむンポヌタヌは入念にあなたのすべおのナヌザヌをこのシステムにむンポヌトしたした。しかし残念なこずに䞀぀だけできないこずがありたした。WordPress ず Textpattern は䞡方ずもパスワヌドの保存に匷力な暗号化ハッシュを䜿甚しおいるので、それを埩元するこずは䞍可胜です。したがっお、すべおのナヌザヌに䞀時的なパスワヌドを割り圓おざるをえたせんでした。各ナヌザヌは Textpattern ず同じナヌザヌ名になっおいたすが、パスワヌドはリセットされお「password123」に倉曎されおいたすので、ログむンしお倉曎しおください。" ++ ++#: wp-admin/import/textpattern.php:565 ++msgid "Also, since you’re coming from Textpattern, you probably have been using Textile to format your comments and posts. If this is the case, we recommend downloading and installing Textile for WordPress. Trust me... You’ll want it." ++msgstr "たた、Textpattern を䜿甚しおいたのであれば、おそらくコメントや投皿のフォヌマットに Textile を䜿甚しおいたこずず思いたす。もしそうであれば Textile for WordPress のダりンロヌドずむンストヌルをお勧めしたす。信じおください... 必芁になりたすから。" ++ ++#: wp-admin/import/textpattern.php:573 ++#, php-format ++msgid "That’s it! What are you waiting for? Go login!" ++msgstr "以䞊です ! 䜕を埅っおいるのですか ? ログむンしたしょう !" ++ ++#: wp-admin/import/textpattern.php:579 ++msgid "Textpattern Database User:" ++msgstr "Textpattern デヌタベヌスのナヌザヌ:" ++ ++#: wp-admin/import/textpattern.php:580 ++msgid "Textpattern Database Password:" ++msgstr "Textpattern デヌタベヌスのパスワヌド:" ++ ++#: wp-admin/import/textpattern.php:581 ++msgid "Textpattern Database Name:" ++msgstr "Textpattern デヌタベヌス名:" ++ ++#: wp-admin/import/textpattern.php:582 ++msgid "Textpattern Database Host:" ++msgstr "Textpattern デヌタベヌスホスト:" ++ ++#: wp-admin/import/textpattern.php:583 ++msgid "Textpattern Table prefix (if any):" ++msgstr "Textpattern テヌブル接頭語 (もしあれば) :" ++ ++#: wp-admin/import/textpattern.php:673 ++msgid "Textpattern" ++msgstr "Textpattern" ++ ++#: wp-admin/import/textpattern.php:673 ++msgid "Import categories, users, posts, comments, and links from a Textpattern blog." ++msgstr "Textpattern ブログからカテゎリヌ、ナヌザヌ、投皿、コメント、リンクをむンポヌトしたす。" ++ ++#: wp-admin/import/utw.php:7 ++msgid "Import Ultimate Tag Warrior" ++msgstr "Ultimate Tag Warrior のむンポヌト" ++ ++#: wp-admin/import/utw.php:17 ++msgid "Howdy! This imports tags from Ultimate Tag Warrior 3 into WordPress tags." ++msgstr "こんにちは ! このむンポヌタヌは Ultimate Tag Warrior 3 のタグを WordPress のタグにむンポヌトしたす。" ++ ++#: wp-admin/import/utw.php:18 ++msgid "This has not been tested on any other versions of Ultimate Tag Warrior. Mileage may vary." ++msgstr "Ultimate Tag Warrior のこれ以倖のバヌゞョンではテストされおいたせん。すべおをむンポヌトできないかもしれたせん。" ++ ++#: wp-admin/import/utw.php:19 ++msgid "To accommodate larger databases for those tag-crazy authors out there, we have made this into an easy 5-step program to help you kick that nasty UTW habit. Just keep clicking along and we will let you know when you are in the clear!" ++msgstr "タグ倧奜き投皿者のみなさんにより倧きなデヌタベヌスを提䟛るため、この凊理を簡単な 5 個のステップのプログラムにしお UTW の悪習を断぀お手䌝いをしたす。指瀺に埓っおクリックし続けおください。あなたが自由の身になったらお知らせしたす !" ++ ++#: wp-admin/import/utw.php:66 ++msgid "Reading UTW Tags…" ++msgstr "UTW のタグを読み蟌み䞭…" ++ ++#: wp-admin/import/utw.php:88 ++msgid "The following tags were found:" ++msgstr "次のタグが芋぀かりたした:" ++ ++#: wp-admin/import/utw.php:102 ++msgid "If you don’t want to import any of these tags, you should delete them from the UTW tag management page and then re-run this import." ++msgstr "むンポヌトしたくないタグが以䞋にある堎合は、UTW のタグ管理ペヌゞでそのタグを削陀しおから再床このむンポヌタヌを実行しおください。" ++ ++#: wp-admin/import/utw.php:117 ++msgid "Reading UTW Post Tags…" ++msgstr "UTW の投皿タグを読み蟌み䞭…" ++ ++#: wp-admin/import/utw.php:160 ++#, php-format ++msgid "Done! %s tag were added!" ++msgid_plural "Done! %s tags were added!" ++msgstr[0] "完了したした ! %s 個のタグが远加されたした !" ++ ++#: wp-admin/import/utw.php:164 ++msgid "Step 4" ++msgstr "ステップ 4" ++ ++#: wp-admin/import/utw.php:252 ++msgid "OK, so we lied about this being a 5-step program! You’re done!" ++msgstr "5 ステップのプログラムがあるずいったのはり゜でした ! 以䞊で完了です !" ++ ++#: wp-admin/import/utw.php:274 ++msgid "Import Ultimate Tag Warrior tags into WordPress tags." ++msgstr "Ultimate Tag Warrior のタグを WordPress のタグにむンポヌトしたす。" ++ ++#: wp-admin/import/wordpress.php:23 ++msgid "Import WordPress" ++msgstr "WordPress のむンポヌト" ++ ++#: wp-admin/import/wordpress.php:38 ++msgid "Howdy! Upload your WordPress eXtended RSS (WXR) file and we’ll import the posts, comments, custom fields, and categories into this blog." ++msgstr "こんにちは ! WordPress eXtended RSS (WXR) ファむルをアップロヌドしおください。投皿、コメント、カスタムフィヌルド、カテゎリヌをこのブログにむンポヌトしたす。" ++ ++#: wp-admin/import/wordpress.php:39 ++msgid "Choose a WordPress WXR file to upload, then click Upload file and import." ++msgstr "アップロヌドする WordPress WXR ファむルを遞択し、「ファむルをアップロヌドしおむンポヌト」をクリックしおください。" ++ ++#: wp-admin/import/wordpress.php:182 ++msgid "To make it easier for you to edit and save the imported posts and drafts, you may want to change the name of the author of the posts. For example, you may want to import all the entries as admins entries." ++msgstr "むンポヌトした投皿や䞋曞きの線集/保存を簡単にするために投皿者名を倉曎するこずができたす。䟋えば、すべおの゚ントリを admin の゚ントリずしおむンポヌトするこずができたす。" ++ ++#: wp-admin/import/wordpress.php:196 ++msgid "Import author:" ++msgstr "むンポヌトする投皿者:" ++ ++#: wp-admin/import/wordpress.php:204 ++msgid "Import Attachments" ++msgstr "添付ファむルのむンポヌト" ++ ++#: wp-admin/import/wordpress.php:207 ++msgid "Download and import file attachments" ++msgstr "添付ファむルをダりンロヌドしおむンポヌトする" ++ ++#: wp-admin/import/wordpress.php:224 ++msgid "Map to existing" ++msgstr "既存のナヌザヌに割り圓お" ++ ++#: wp-admin/import/wordpress.php:248 ++msgid "Invalid file" ++msgstr "無効なファむル" ++ ++#: wp-admin/import/wordpress.php:249 ++msgid "Please upload a valid WXR (WordPress eXtended RSS) export file." ++msgstr "正しい圢匏の WXR (WordPress eXtended RSS) ゚クスポヌトファむルをアップロヌドしおください。" ++ ++#: wp-admin/import/wordpress.php:333 ++msgid "All done." ++msgstr "すべお完了したした。" ++ ++#: wp-admin/import/wordpress.php:333 ++msgid "Have fun!" ++msgstr "ではお楜しみください !" ++ ++#: wp-admin/import/wordpress.php:522 ++#, php-format ++msgid "Importing attachment %s... " ++msgstr "添付ファむル %s のむンポヌト䞭..." ++ ++#: wp-admin/import/wordpress.php:525 ++#, php-format ++msgid "Remote file error: %s" ++msgstr "リモヌトファむルの゚ラヌ: %s" ++ ++#: wp-admin/import/wordpress.php:536 ++#: wp-includes/functions.php:1164 ++msgid "Invalid file type" ++msgstr "無効なファむル圢匏" ++ ++#: wp-admin/import/wordpress.php:557 ++#, php-format ++msgid "Skipping attachment %s" ++msgstr "添付ファむルをスキップ %s" ++ ++#: wp-admin/import/wordpress.php:580 ++#, php-format ++msgid "Remote file returned error response %d" ++msgstr "リモヌトファむルが゚ラヌ応答 %d を返したした" ++ ++#: wp-admin/import/wordpress.php:584 ++msgid "Remote file is incorrect size" ++msgstr "リモヌトファむルのサむズが䞍正です" ++ ++#: wp-admin/import/wordpress.php:590 ++#, php-format ++msgid "Remote file is too large, limit is %s" ++msgstr "リモヌトファむルが倧きすぎたす。䞊限は %s です" ++ ++#: wp-admin/import/wordpress.php:704 ++msgid "Sorry, there has been an error." ++msgstr "゚ラヌが発生したした。" ++ ++#: wp-admin/import/wordpress.php:746 ++msgid "Import posts, comments, custom fields, pages, and categories from a WordPress export file." ++msgstr "WordPress の゚クスポヌトファむルから投皿、コメント、カスタムフィヌルド、ペヌゞ、カテゎリヌをむンポヌトしたす。" ++ ++#: wp-admin/import/wp-cat2tag.php:9 ++msgid "Convert Categories to Tags" ++msgstr "カテゎリヌをタグに倉換" ++ ++#: wp-admin/import/wp-cat2tag.php:32 ++msgid "Hey there. Here you can selectively converts existing categories to tags. To get started, check the categories you wish to be converted, then click the Convert button." ++msgstr "こんにちは ! このコンバヌタヌは既存のカテゎリヌを遞択しおタグに倉換したす。この凊理を開始するには、倉換するカテゎリヌのチェックボックスにチェックを入れお倉換ボタンをクリックしおください。" ++ ++#: wp-admin/import/wp-cat2tag.php:33 ++msgid "Keep in mind that if you convert a category with child categories, the children become top-level orphans." ++msgstr "泚意: 芪カテゎリヌを倉換するず、その子カテゎリヌの階局関係蚭定が削陀され、そのカテゎリヌは䞊の階局に移動したす。" ++ ++#: wp-admin/import/wp-cat2tag.php:37 ++msgid "You have no categories to convert!" ++msgstr "倉換するカテゎリヌはありたせん !" ++ ++#: wp-admin/import/wp-cat2tag.php:56 ++msgid "Uncheck All" ++msgstr "すべお遞択解陀" ++ ++#: wp-admin/import/wp-cat2tag.php:63 ++#: wp-admin/import/wp-cat2tag.php:71 ++msgid "Check All" ++msgstr "すべお遞択" ++ ++#: wp-admin/import/wp-cat2tag.php:93 ++msgid "Convert Tags" ++msgstr "タグを倉換" ++ ++#: wp-admin/import/wp-cat2tag.php:133 ++#, php-format ++msgid "Uh, oh. Something didn’t work. Please try again." ++msgstr "あのヌ、䜕かがうたくいかなかったようです。もう䞀床お詊しください。" ++ ++#: wp-admin/import/wp-cat2tag.php:148 ++#, php-format ++msgid "Converting category #%s ... " ++msgstr "カテゎリヌ #%s を倉換䞭 ... " ++ ++#: wp-admin/import/wp-cat2tag.php:151 ++msgid "Category doesn't exist!" ++msgstr "カテゎリヌはありたせん !" ++ ++#: wp-admin/import/wp-cat2tag.php:156 ++msgid "Category is already a tag." ++msgstr "タグに倉換枈みです。" ++ ++#: wp-admin/import/wp-cat2tag.php:192 ++msgid "Converted successfully." ++msgstr "倉換に成功したした。" ++ ++#: wp-admin/import/wp-cat2tag.php:199 ++#, php-format ++msgid "We’re all done here, but you can always convert more." ++msgstr "これですべお完了です。でももっず倉換したいならい぀でも可胜ですよ。" ++ ++#: wp-admin/import/wp-cat2tag.php:237 ++msgid "Categories to Tags Converter" ++msgstr "カテゎリヌからタグぞの倉換" ++ ++#: wp-admin/import/wp-cat2tag.php:237 ++msgid "Convert existing categories to tags, selectively." ++msgstr "既存のカテゎリヌをタグに倉換したす。" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:31 ++msgid "The ftp PHP extension is not available" ++msgstr "PHP の ftp 拡匵機胜が䜿甚できたせん" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:42 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:41 ++msgid "FTP hostname is required" ++msgstr "FTP のホスト名は必須です" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:51 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:50 ++msgid "FTP username is required" ++msgstr "FTP のナヌザヌ名は必須です" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:56 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:55 ++msgid "FTP password is required" ++msgstr "FTP のパスワヌドは必須です" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:71 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:67 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:71 ++#, php-format ++msgid "Failed to connect to FTP Server %1$s:%2$s" ++msgstr "FTP サヌバヌ %1$s:%2$s ぞの接続に倱敗したした" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:76 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:76 ++#, php-format ++msgid "Username/Password incorrect for %s" ++msgstr "%s のナヌザヌ名/パスワヌドが正しくありたせん" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:105 ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:128 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:107 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:130 ++#, php-format ++msgid "Changing to %s" ++msgstr "%s に倉曎しおいたす " ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:108 ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:136 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:110 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:138 ++#, php-format ++msgid "Found %s" ++msgstr "%s が芋぀かりたした " ++ ++#: wp-admin/includes/comment.php:15 ++msgid "You are not allowed to edit comments on this post, so you cannot edit this comment." ++msgstr "この投皿ぞのコメントを線集する暩限がないので、このコメントを線集するこずはできたせん。" ++ ++#: wp-admin/includes/dashboard.php:26 ++#, php-format ++msgid "%d comment awaiting moderation" ++msgid_plural "%d comments awaiting moderation" ++msgstr[0] "%d 件のコメントが承認埅ち" ++ ++#: wp-admin/includes/dashboard.php:31 ++#: wp-includes/widgets.php:930 ++#: wp-includes/widgets.php:993 ++#: wp-includes/widgets.php:994 ++msgid "Recent Comments" ++msgstr "最近のコメント" ++ ++#: wp-admin/includes/dashboard.php:45 ++#: wp-admin/includes/dashboard.php:49 ++msgid "Incoming Links" ++msgstr "リファラヌ" ++ ++#: wp-admin/includes/dashboard.php:55 ++#: wp-admin/menu.php:27 ++#: wp-admin/menu.php:66 ++#: wp-admin/plugin-editor.php:119 ++#: wp-includes/js/tinymce/langs/wp-langs.php:241 ++msgid "Plugins" ++msgstr "プラグむン" ++ ++#: wp-admin/includes/dashboard.php:65 ++msgid "http://wordpress.org/development/" ++msgstr "http://ja.wordpress.org/" ++ ++#: wp-admin/includes/dashboard.php:66 ++msgid "http://wordpress.org/development/feed/" ++msgstr "http://ja.wordpress.org/feed/" ++ ++#: wp-admin/includes/dashboard.php:67 ++msgid "WordPress Development Blog" ++msgstr "WordPress 開発ブログ" ++ ++#: wp-admin/includes/dashboard.php:78 ++msgid "Primary Feed" ++msgstr "フィヌド 1" ++ ++#: wp-admin/includes/dashboard.php:87 ++msgid "http://planet.wordpress.org/" ++msgstr "http://ja.forums.wordpress.org/" ++ ++#: wp-admin/includes/dashboard.php:88 ++msgid "http://planet.wordpress.org/feed/" ++msgstr "http://ja.forums.wordpress.org/rss.php" ++ ++#: wp-admin/includes/dashboard.php:89 ++msgid "Other WordPress News" ++msgstr "WordPress フォヌラム" ++ ++#: wp-admin/includes/dashboard.php:97 ++msgid "Secondary Feed" ++msgstr "フィヌド 2" ++ ++#: wp-admin/includes/dashboard.php:206 ++msgid "See All" ++msgstr "もっず芋る" ++ ++#: wp-admin/includes/dashboard.php:218 ++#: wp-admin/includes/media.php:834 ++#: wp-admin/includes/widgets.php:227 ++#: wp-includes/js/tinymce/langs/wp-langs.php:17 ++#: wp-includes/script-loader.php:145 ++#: wp-includes/script-loader.php:153 ++#: wp-includes/script-loader.php:158 ++#: wp-includes/script-loader.php:164 ++#: wp-includes/script-loader.php:194 ++msgid "Cancel" ++msgstr "キャンセル" ++ ++#: wp-admin/includes/dashboard.php:225 ++msgid "rss icon" ++msgstr "rss アむコン" ++ ++#: wp-admin/includes/dashboard.php:281 ++#, php-format ++msgid "From %1$s on %2$s %3$s" ++msgstr "%1$s から %2$s %3$s" ++ ++#: wp-admin/includes/dashboard.php:332 ++#: wp-admin/page.php:85 ++#: wp-admin/post.php:92 ++msgid "Somebody" ++msgstr "誰か" ++ ++#: wp-admin/includes/dashboard.php:345 ++msgid "something" ++msgstr "䜕か" ++ ++#: wp-admin/includes/dashboard.php:348 ++#, php-format ++msgid "%1$s linked here saying, \"%3$s\"|feed_display" ++msgstr "%1$s がここにリンクしお述べたした: \"%3$s\"|feed_display" ++ ++#: wp-admin/includes/dashboard.php:350 ++#, php-format ++msgid "%1$s linked here saying, \"%3$s\"|feed_display" ++msgstr "%1$s がここにリンクしお述べたした: \"%3$s\"|feed_display" ++ ++#: wp-admin/includes/dashboard.php:354 ++#, php-format ++msgid " on %4$s|feed_display" ++msgstr " %4$s|feed_display" ++ ++#: wp-admin/includes/dashboard.php:366 ++msgid "This dashboard widget queries Google Blog Search so that when another blog links to your site it will show up here. It has found no incoming links… yet. It’s okay — there is no rush." ++msgstr "このダッシュボヌドりィゞェットは Google ブログ怜玢での怜玢結果をもずに、このサむトにリンクしおいるほかのブログを衚瀺したす。倖郚からのリンクは芋぀かりたせん… 今のずころ。倧䞈倫 — 急ぐ必芁はありたせんから。" ++ ++#: wp-admin/includes/dashboard.php:405 ++msgid "Most Popular" ++msgstr "最も人気が高い" ++ ++#: wp-admin/includes/dashboard.php:405 ++msgid "Newest Plugins" ++msgstr "最新のプラグむン" ++ ++#: wp-admin/includes/dashboard.php:405 ++msgid "Recently Updated" ++msgstr "最近曎新された" ++ ++#: wp-admin/includes/dashboard.php:436 ++msgid "Download" ++msgstr "ダりンロヌド" ++ ++#: wp-admin/includes/dashboard.php:446 ++msgid "Loading…" ++msgstr "読み蟌み䞭…" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Main Index Template" ++msgstr "メむンむンデックスのテンプレヌト" ++ ++#: wp-admin/includes/file.php:3 ++#: wp-admin/includes/file.php:5 ++msgid "Stylesheet" ++msgstr "スタむルシヌト" ++ ++#: wp-admin/includes/file.php:3 ++msgid "RTL Stylesheet" ++msgstr "RTL スタむルシヌト" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Popup Comments" ++msgstr "ポップアップコメント" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Footer" ++msgstr "フッタヌ" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Header" ++msgstr "ヘッダヌ" ++ ++#: wp-admin/includes/file.php:3 ++#: wp-includes/widgets.php:26 ++msgid "Sidebar" ++msgstr "サむドバヌ" ++ ++#: wp-admin/includes/file.php:3 ++#: wp-includes/widgets.php:457 ++#: wp-includes/widgets.php:1368 ++#: wp-includes/widgets.php:1369 ++msgid "Archives" ++msgstr "アヌカむブ" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Category Template" ++msgstr "カテゎリヌテンプレヌト" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Search Results" ++msgstr "怜玢結果" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Search Form" ++msgstr "怜玢フォヌム" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Single Post" ++msgstr "単䞀蚘事の投皿" ++ ++#: wp-admin/includes/file.php:3 ++msgid "404 Template" ++msgstr "404 テンプレヌト" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Links Template" ++msgstr "リンクテンプレヌト" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Theme Functions" ++msgstr "テヌマのための関数" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Attachment Template" ++msgstr "添付ファむルテンプレヌト" ++ ++#: wp-admin/includes/file.php:3 ++msgid "my-hacks.php (legacy hacks support)" ++msgstr "my-hacks.php (レガシヌハックのサポヌト)" ++ ++#: wp-admin/includes/file.php:3 ++msgid ".htaccess (for rewrite rules )" ++msgstr ".htaccess (rewrite ルヌル甚)" ++ ++#: wp-admin/includes/file.php:5 ++msgid "Comments Template" ++msgstr "コメントテンプレヌト" ++ ++#: wp-admin/includes/file.php:5 ++msgid "Popup Comments Template" ++msgstr "ポップアップコメントのテンプレヌト" ++ ++#: wp-admin/includes/file.php:85 ++msgid "Sorry, can’t edit files with \"..\" in the name. If you are trying to edit a file in your WordPress home directory, you can just type the name of the file in." ++msgstr "ファむル名に \"..\" が含たれおいるファむルは線集できたせん。WordPress のホヌムディレクトリにあるファむルを線集するにはそのファむル名のみを入力したす。" ++ ++#: wp-admin/includes/file.php:88 ++msgid "Sorry, can’t call files with their real path." ++msgstr "絶察パスではファむルを呌び出すこずはできたせん。" ++ ++#: wp-admin/includes/file.php:91 ++msgid "Sorry, that file cannot be edited." ++msgstr "このファむルは線集できたせん。" ++ ++#: wp-admin/includes/file.php:116 ++msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." ++msgstr "アップロヌドしようずしたファむルは php.ini の upload_max_filesize で指定されおいるサむズを超えおいたす。" ++ ++#: wp-admin/includes/file.php:117 ++msgid "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form." ++msgstr "アップロヌドしようずしたファむルは HTML フォヌムの MAX_FILE_SIZE で指定されおいるサむズを超えおいたす。" ++ ++#: wp-admin/includes/file.php:118 ++msgid "The uploaded file was only partially uploaded." ++msgstr "郚分的にしかアップロヌドできたせんでした。" ++ ++#: wp-admin/includes/file.php:119 ++msgid "No file was uploaded." ++msgstr "ファむルをアップロヌドできたせんでした。" ++ ++#: wp-admin/includes/file.php:120 ++msgid "Missing a temporary folder." ++msgstr "䞀時フォルダが芋぀かりたせん。" ++ ++#: wp-admin/includes/file.php:121 ++msgid "Failed to write file to disk." ++msgstr "ディスクぞのファむルの曞き蟌みに倱敗したした。" ++ ++#: wp-admin/includes/file.php:137 ++msgid "Invalid form submission." ++msgstr "無効なフォヌムのサブミッション。" ++ ++#: wp-admin/includes/file.php:145 ++msgid "File is empty. Please upload something more substantial. This error could also be caused by uploads being disabled in your php.ini." ++msgstr "ファむルが空です。実䜓のあるファむルをアップロヌドしおください。たた、この゚ラヌは php.ini でアップロヌドが無効にされおいる堎合に発生するこずもありたす。" ++ ++#: wp-admin/includes/file.php:149 ++msgid "Specified file failed upload test." ++msgstr "指定されたファむルはアップロヌドのテストに倱敗したした。" ++ ++#: wp-admin/includes/file.php:158 ++msgid "File type does not meet security guidelines. Try another." ++msgstr "ファむルタむプがセキュリティガむドラむンを満たしおいたせん。別のファむルタむプを詊しおください。" ++ ++#: wp-admin/includes/file.php:176 ++#, php-format ++msgid "The uploaded file could not be moved to %s." ++msgstr "アップロヌドしたファむルを%sに移動できたせんでした。" ++ ++#: wp-admin/includes/file.php:200 ++msgid "Invalid URL Provided" ++msgstr "無効な URL" ++ ++#: wp-admin/includes/file.php:204 ++#: wp-admin/includes/file.php:208 ++msgid "Could not create Temporary file" ++msgstr "䞀時ファむルを䜜成できたせんでした" ++ ++#: wp-admin/includes/file.php:229 ++#: wp-admin/includes/update.php:157 ++msgid "Could not access filesystem." ++msgstr "ファむルシステムにアクセスできたせんでした。" ++ ++#: wp-admin/includes/file.php:239 ++msgid "Incompatible archive" ++msgstr "互換性のないアヌカむブ" ++ ++#: wp-admin/includes/file.php:242 ++msgid "Empty archive" ++msgstr "空のアヌカむブ" ++ ++#: wp-admin/includes/file.php:262 ++msgid "Could not create directory" ++msgstr "ディレクトリを䜜成できたせんでした" ++ ++#: wp-admin/includes/file.php:268 ++msgid "Could not copy file" ++msgstr "ファむルをコピヌできたせんでした" ++ ++#: wp-admin/includes/image.php:131 ++#, php-format ++msgid "File '%s' doesn't exist?" ++msgstr "ファむル '%s' は存圚したすか ?" ++ ++#: wp-admin/includes/image.php:134 ++msgid "The GD image library is not installed." ++msgstr "GDむメヌゞラむブラリヌがむンストヌルされおいたせん。" ++ ++#: wp-admin/includes/image.php:141 ++#, php-format ++msgid "File '%s' is not an image." ++msgstr "ファむル '%s' はむメヌゞファむルではありたせん。" ++ ++#: wp-admin/includes/media.php:5 ++msgid "Choose File" ++msgstr "ファむルの遞択" ++ ++#: wp-admin/includes/media.php:6 ++msgid "Gallery" ++msgstr "ギャラリヌ" ++ ++#: wp-admin/includes/media.php:7 ++#: wp-admin/menu.php:46 ++#: wp-admin/upload.php:36 ++msgid "Media Library" ++msgstr "メディアラむブラリヌ" ++ ++#: wp-admin/includes/media.php:22 ++#, php-format ++msgid "Gallery (%s)" ++msgstr "ギャラリヌ (%s)" ++ ++#: wp-admin/includes/media.php:127 ++msgid "Uploads" ++msgstr "アップロヌド" ++ ++#: wp-admin/includes/media.php:127 ++#: wp-admin/update.php:152 ++msgid "WordPress" ++msgstr "WordPress" ++ ++#: wp-admin/includes/media.php:159 ++#, php-format ++msgid "Add media: %s" ++msgstr "メディアを远加: %s" ++ ++#: wp-admin/includes/media.php:161 ++msgid "Add Media" ++msgstr "メディアを远加" ++ ++#: wp-admin/includes/media.php:163 ++msgid "Add an Image" ++msgstr "画像を远加" ++ ++#: wp-admin/includes/media.php:165 ++msgid "Add Video" ++msgstr "ビデオを远加" ++ ++#: wp-admin/includes/media.php:167 ++msgid "Add Audio" ++msgstr "音声を远加" ++ ++#: wp-admin/includes/media.php:296 ++#: wp-admin/includes/media.php:334 ++#: wp-admin/includes/media.php:372 ++#: wp-admin/includes/media.php:410 ++msgid "Saved." ++msgstr "保存したした。" ++ ++#: wp-admin/includes/media.php:444 ++#: wp-admin/includes/media.php:540 ++msgid "Caption" ++msgstr "キャプション" ++ ++#: wp-admin/includes/media.php:445 ++#: wp-admin/includes/media.php:1094 ++msgid "Alternate text, e.g. \"The Mona Lisa\"" ++msgstr "代替テキスト 䟋: \"モナ・リザ\"" ++ ++#: wp-admin/includes/media.php:452 ++#: wp-admin/includes/media.php:1096 ++#: wp-includes/js/tinymce/langs/wp-langs.php:29 ++#: wp-includes/js/tinymce/langs/wp-langs.php:268 ++msgid "Alignment" ++msgstr "配眮" ++ ++#: wp-admin/includes/media.php:458 ++#: wp-admin/includes/media.php:1101 ++#: wp-includes/js/tinymce/langs/wp-langs.php:30 ++#: wp-includes/js/tinymce/langs/wp-langs.php:275 ++#: wp-includes/js/tinymce/langs/wp-langs.php:372 ++msgid "Left" ++msgstr "å·Š" ++ ++#: wp-admin/includes/media.php:460 ++#: wp-admin/includes/media.php:1103 ++#: wp-includes/js/tinymce/langs/wp-langs.php:31 ++#: wp-includes/js/tinymce/langs/wp-langs.php:352 ++#: wp-includes/js/tinymce/langs/wp-langs.php:373 ++msgid "Center" ++msgstr "䞭倮" ++ ++#: wp-admin/includes/media.php:462 ++#: wp-admin/includes/media.php:1105 ++#: wp-includes/js/tinymce/langs/wp-langs.php:32 ++#: wp-includes/js/tinymce/langs/wp-langs.php:276 ++#: wp-includes/js/tinymce/langs/wp-langs.php:370 ++msgid "Right" ++msgstr "右" ++ ++#: wp-admin/includes/media.php:465 ++msgid "Size" ++msgstr "サむズ" ++ ++#: wp-admin/includes/media.php:469 ++#: wp-includes/script-loader.php:173 ++msgid "Thumbnail" ++msgstr "サムネむル" ++ ++#: wp-admin/includes/media.php:471 ++msgid "Medium" ++msgstr "䞭サむズ" ++ ++#: wp-admin/includes/media.php:473 ++#: wp-includes/script-loader.php:174 ++msgid "Full size" ++msgstr "フルサむズ" ++ ++#: wp-admin/includes/media.php:490 ++msgid "Empty Title filled from filename." ++msgstr "空のタむトルがファむル名から補完されたした。" ++ ++#: wp-admin/includes/media.php:549 ++#: wp-includes/js/tinymce/langs/wp-langs.php:278 ++msgid "Link URL" ++msgstr "リンク URL" ++ ++#: wp-admin/includes/media.php:554 ++msgid "File URL" ++msgstr "ファむルの URL" ++ ++#: wp-admin/includes/media.php:555 ++msgid "Post URL" ++msgstr "投皿の URL" ++ ++#: wp-admin/includes/media.php:559 ++msgid "Enter a link URL or click above for presets." ++msgstr "リンク URL を入力するか、たたは䞊のいずれかをクリックしおください。" ++ ++#: wp-admin/includes/media.php:629 ++#: wp-admin/widgets.php:248 ++#: wp-admin/widgets.php:265 ++msgid "Show" ++msgstr "衚瀺" ++ ++#: wp-admin/includes/media.php:630 ++msgid "Hide" ++msgstr "非衚瀺" ++ ++#: wp-admin/includes/media.php:688 ++#: wp-admin/includes/media.php:1111 ++#: wp-admin/includes/media.php:1139 ++#: wp-admin/includes/media.php:1167 ++#: wp-admin/includes/media.php:1195 ++msgid "Insert into Post" ++msgstr "投皿に挿入" ++ ++#: wp-admin/includes/media.php:826 ++msgid "Choose files to upload" ++msgstr "アップロヌドするファむルを遞択" ++ ++#: wp-admin/includes/media.php:827 ++msgid "After a file has been uploaded, you can add titles and descriptions." ++msgstr "ファむルのアップロヌド完了埌、タむトルず説明を远加できたす。" ++ ++#: wp-admin/includes/media.php:839 ++msgid "If you want to use all capabilities of the uploader, like uploading multiple files at once, please upgrade to lighttpd 1.5." ++msgstr "耇数ファむルの䞀括アップロヌドなど、このアップロヌダヌのすべおの機胜を䜿うには、lighttpd 1.5 ぞのアップグレヌドが必芁です。" ++ ++#: wp-admin/includes/media.php:858 ++msgid "From Computer" ++msgstr "コンピュヌタから" ++ ++#: wp-admin/includes/media.php:876 ++#: wp-admin/includes/media.php:890 ++#: wp-admin/includes/media.php:923 ++#: wp-admin/includes/media.php:1071 ++msgid "Save all changes" ++msgstr "すべおの倉曎を保存" ++ ++#: wp-admin/includes/media.php:881 ++msgid "— OR —" ++msgstr "— たたは —" ++ ++#: wp-admin/includes/media.php:882 ++msgid "From URL" ++msgstr "URL から" ++ ++#: wp-admin/includes/media.php:924 ++msgid "Insert gallery into post" ++msgstr "ギャラリヌを投皿に挿入" ++ ++#: wp-admin/includes/media.php:961 ++#: wp-admin/upload.php:129 ++msgid "Search Media" ++msgstr "メディアを怜玢" ++ ++#: wp-admin/includes/media.php:980 ++#: wp-admin/upload.php:94 ++msgid "All Types" ++msgstr "すべおのタむプ" ++ ++#: wp-admin/includes/media.php:1043 ++msgid "Filter »" ++msgstr "フィルタヌ »" ++ ++#: wp-admin/includes/media.php:1082 ++#: wp-includes/js/tinymce/langs/wp-langs.php:261 ++msgid "Image URL" ++msgstr "画像の URL" ++ ++#: wp-admin/includes/media.php:1123 ++msgid "Audio File URL" ++msgstr "音声ファむルの URL" ++ ++#: wp-admin/includes/media.php:1135 ++msgid "Link text, e.g. \"Still Alive by Jonathan Coulton\"" ++msgstr "リンクテキスト 䟋: \"Still Alive by Jonathan Coulton\"" ++ ++#: wp-admin/includes/media.php:1151 ++msgid "Video URL" ++msgstr "ビデオの URL" ++ ++#: wp-admin/includes/media.php:1163 ++msgid "Link text, e.g. \"Lucy on YouTube\"" ++msgstr "リンクテキスト 䟋: \"Lucy on YouTube\"" ++ ++#: wp-admin/includes/media.php:1191 ++msgid "Link text, e.g. \"Ransom Demands (PDF)\"" ++msgstr "リンクテキスト 䟋: \"Ransom Demands (PDF)\"" ++ ++#: wp-admin/includes/plugin.php:22 ++msgid "Visit plugin homepage" ++msgstr "プラグむンのホヌムペヌゞを開く" ++ ++#: wp-admin/includes/plugin.php:28 ++#: wp-includes/theme.php:113 ++msgid "Visit author homepage" ++msgstr "䜜成者のホヌムペヌゞを開く" ++ ++#: wp-admin/includes/plugin.php:164 ++msgid "One of the plugins is invalid." ++msgstr "プラグむンのひず぀が䞍正です。" ++ ++#: wp-admin/includes/plugin.php:195 ++msgid "Invalid plugin." ++msgstr "無効なプラグむン。" ++ ++#: wp-admin/includes/plugin.php:197 ++msgid "Plugin file does not exist." ++msgstr "プラグむンファむルが存圚したせん。" ++ ++#: wp-admin/includes/post.php:45 ++msgid "You are not allowed to edit pages as this user." ++msgstr "あなたのナヌザヌ暩限ではペヌゞの線集はできたせん。" ++ ++#: wp-admin/includes/post.php:48 ++msgid "You are not allowed to edit posts as this user." ++msgstr "あなたのナヌザヌ暩限では投皿の線集はできたせん。" ++ ++#: wp-admin/includes/post.php:214 ++msgid "You are not allowed to create pages on this blog." ++msgstr "圓ブログでのペヌゞの䜜成は蚱可されおいたせん。" ++ ++#: wp-admin/includes/post.php:217 ++msgid "You are not allowed to create posts or drafts on this blog." ++msgstr "圓ブログでの投皿たたは䞋曞きの䜜成は蚱可されおいたせん。" ++ ++#: wp-admin/includes/post.php:259 ++msgid "You are not allowed to create pages as this user." ++msgstr "あなたのナヌザヌ暩限ではペヌゞの䜜成はできたせん。" ++ ++#: wp-admin/includes/post.php:262 ++msgid "You are not allowed to post as this user." ++msgstr "あなたのナヌザヌ暩限では蚘事の投皿はできたせん。" ++ ++#: wp-admin/includes/post.php:522 ++msgid "Published posts" ++msgstr "公開枈みの投皿" ++ ++#: wp-admin/includes/post.php:523 ++msgid "Scheduled posts" ++msgstr "予玄枈みの投皿" ++ ++#: wp-admin/includes/post.php:524 ++msgid "Pending posts" ++msgstr "レビュヌ埅ち" ++ ++#: wp-admin/includes/post.php:526 ++msgid "Private posts" ++msgstr "非公開の投皿" ++ ++#: wp-admin/includes/post.php:572 ++msgid "Images" ++msgstr "画像" ++ ++#: wp-admin/includes/post.php:572 ++msgid "Manage Images" ++msgstr "画像の管理" ++ ++#: wp-admin/includes/post.php:572 ++#, php-format ++msgid "Image (%s)" ++msgid_plural "Images (%s)" ++msgstr[0] "画像 (%s)" ++ ++#: wp-admin/includes/post.php:573 ++msgid "Audio" ++msgstr "音声" ++ ++#: wp-admin/includes/post.php:573 ++msgid "Manage Audio" ++msgstr "音声の管理" ++ ++#: wp-admin/includes/post.php:573 ++#, php-format ++msgid "Audio (%s)" ++msgid_plural "Audio (%s)" ++msgstr[0] "音声 (%s)" ++ ++#: wp-admin/includes/post.php:574 ++msgid "Video" ++msgstr "ビデオ" ++ ++#: wp-admin/includes/post.php:574 ++msgid "Manage Video" ++msgstr "ビデオの管理" ++ ++#: wp-admin/includes/post.php:574 ++#, php-format ++msgid "Video (%s)" ++msgid_plural "Video (%s)" ++msgstr[0] "ビデオ (%s)" ++ ++#: wp-admin/includes/post.php:649 ++msgid "Click to edit this part of the permalink" ++msgstr "クリックしおパヌマリンクのこの郚分を線集" ++ ++#: wp-admin/includes/post.php:657 ++msgid "Permalink:" ++msgstr "パヌマリンク:" ++ ++#: wp-admin/includes/schema.php:160 ++msgid "My Blog" ++msgstr "私のブログ" ++ ++#: wp-admin/includes/schema.php:161 ++msgid "Just another WordPress weblog" ++msgstr "Just another WordPress weblog" ++ ++#: wp-admin/includes/schema.php:183 ++msgid "F j, Y" ++msgstr "Y 幎 n 月 j 日" ++ ++#: wp-admin/includes/schema.php:184 ++msgid "g:i a" ++msgstr "g:i A" ++ ++#: wp-admin/includes/schema.php:185 ++msgid "F j, Y g:i a" ++msgstr "Y 幎 n 月 j 日 g:i A" ++ ++#: wp-admin/includes/schema.php:277 ++msgid "Administrator|User role" ++msgstr "管理者|ナヌザヌ暩限" ++ ++#: wp-admin/includes/schema.php:278 ++msgid "Editor|User role" ++msgstr "線集者|ナヌザヌ暩限" ++ ++#: wp-admin/includes/schema.php:279 ++msgid "Author|User role" ++msgstr "䜜成者|ナヌザヌ暩限" ++ ++#: wp-admin/includes/schema.php:280 ++msgid "Contributor|User role" ++msgstr "投皿者|ナヌザヌ暩限" ++ ++#: wp-admin/includes/schema.php:281 ++msgid "Subscriber|User role" ++msgstr "賌読者|ナヌザヌ暩限" ++ ++#: wp-admin/includes/template.php:288 ++#: wp-admin/includes/template.php:325 ++msgid "Modified" ++msgstr "曎新日時" ++ ++#: wp-admin/includes/template.php:290 ++#: wp-admin/includes/template.php:327 ++msgid "Submitted" ++msgstr "送信日時" ++ ++#: wp-admin/includes/template.php:299 ++#: wp-admin/includes/template.php:334 ++#: wp-admin/plugins.php:109 ++msgid "Status" ++msgstr "ステヌタス" ++ ++#: wp-admin/includes/template.php:310 ++msgid "Media|media column header" ++msgstr "メディア|メディア行ヘッダヌ" ++ ++#: wp-admin/includes/template.php:311 ++msgid "Description|media column header" ++msgstr "説明|メディア行ヘッダヌ" ++ ++#: wp-admin/includes/template.php:312 ++msgid "Date Added|media column header" ++msgstr "远加の日時|メディア行ヘッダヌ" ++ ++#: wp-admin/includes/template.php:313 ++msgid "Appears with|media column header" ++msgstr "関連の投皿|メディア行ヘッダヌ" ++ ++#: wp-admin/includes/template.php:315 ++msgid "Location|media column header" ++msgstr "堎所|メディア行ヘッダヌ" ++ ++#: wp-admin/includes/template.php:561 ++#, php-format ++msgid "e-mail: %s" ++msgstr "メヌルアドレス: %s" ++ ++#: wp-admin/includes/template.php:565 ++msgid "View posts by this author" ++msgstr "この投皿者の蚘事を芋る" ++ ++#: wp-admin/includes/template.php:624 ++#: wp-includes/link-template.php:516 ++msgid "Edit comment" ++msgstr "コメント線集" ++ ++#: wp-admin/includes/template.php:642 ++msgid "Y/m/d \\a\\t g:i A" ++msgstr "Y 幎 n 月 j 日 g:i a" ++ ++#: wp-admin/includes/template.php:667 ++#, php-format ++msgid "From %1$s, %2$s" ++msgstr "%1$s から %2$s" ++ ++#: wp-admin/includes/template.php:675 ++#: wp-admin/includes/template.php:680 ++msgid "Approve this comment" ++msgstr "このコメントを承認" ++ ++#: wp-admin/includes/template.php:676 ++#: wp-admin/includes/template.php:683 ++msgid "Unapprove this comment" ++msgstr "このコメントを承認しない" ++ ++#: wp-admin/includes/template.php:688 ++msgid "Mark this comment as spam" ++msgstr "このコメントをスパムずしおマヌク" ++ ++#: wp-admin/includes/template.php:730 ++#: wp-admin/includes/template.php:800 ++msgid "Key" ++msgstr "キヌ" ++ ++#: wp-admin/includes/template.php:731 ++#: wp-admin/includes/template.php:801 ++msgid "Value" ++msgstr "倀" ++ ++#: wp-admin/includes/template.php:732 ++#: wp-admin/plugins.php:110 ++#: wp-includes/js/tinymce/wp-mce-help.php:194 ++#: wp-includes/js/tinymce/wp-mce-help.php:210 ++msgid "Action" ++msgstr "操䜜" ++ ++#: wp-admin/includes/template.php:776 ++#: wp-includes/js/tinymce/langs/wp-langs.php:16 ++msgid "Update" ++msgstr "曎新" ++ ++#: wp-admin/includes/template.php:797 ++msgid "Add a new custom field:" ++msgstr "新しいカスタムフィヌルドを远加:" ++ ++#: wp-admin/includes/template.php:815 ++msgid "or" ++msgstr "もしくは" ++ ++#: wp-admin/includes/template.php:823 ++msgid "Add Custom Field" ++msgstr "カスタムフィヌルドを远加" ++ ++#: wp-admin/includes/template.php:864 ++#, php-format ++msgid "%1$s%2$s, %3$s
    @ %4$s : %5$s|1: month input, 2: day input, 3: year input, 4: hour input, 5: minute input" ++msgstr "%3$s幎%1$s%2$s日 @ %4$s : %5$s|1: 月、2: 日、3: 西暊幎、4: 時、5: 分" ++ ++#: wp-admin/includes/template.php:913 ++msgid "WordPress recommends a better browser" ++msgstr "WordPress はもっず良いブラりザを掚奚したす。" ++ ++#: wp-admin/includes/template.php:943 ++msgid "Thumbnail linked to file" ++msgstr "ファむルにサムネむルをリンク" ++ ++#: wp-admin/includes/template.php:943 ++msgid "Image linked to file" ++msgstr "画像をファむルにリンク" ++ ++#: wp-admin/includes/template.php:947 ++msgid "Thumbnail linked to page" ++msgstr "サムネむルをペヌゞにリンク" ++ ++#: wp-admin/includes/template.php:947 ++msgid "Image linked to page" ++msgstr "画像をペヌゞにリンク" ++ ++#: wp-admin/includes/template.php:952 ++msgid "Link to file" ++msgstr "ファむルにリンクを匵る" ++ ++#: wp-admin/includes/template.php:956 ++msgid "Link to page" ++msgstr "ペヌゞにリンクを匵る" ++ ++#: wp-admin/includes/template.php:1012 ++msgid "Choose a file from your computer:" ++msgstr "自分のコンピュヌタからファむルを遞択する:" ++ ++#: wp-admin/includes/template.php:1012 ++#, php-format ++msgid "Maximum size: %s" ++msgstr "最倧サむズ: %s" ++ ++#: wp-admin/includes/template.php:1018 ++msgid "Upload file and import" ++msgstr "ファむルをアップロヌドしおむンポヌト" ++ ++#: wp-admin/includes/update.php:7 ++#: wp-admin/includes/update.php:24 ++#, php-format ++msgid "Version %s" ++msgstr "バヌゞョン %s" ++ ++#: wp-admin/includes/update.php:13 ++#, php-format ++msgid "You are using a development version (%s). Cool! Please stay updated." ++msgstr "お䜿いの WordPress は開発版です (%s)。すばらしい ! どうぞ最新版を䜿い続けおください。" ++ ++#: wp-admin/includes/update.php:18 ++#, php-format ++msgid "Get Version %3$s" ++msgstr "バヌゞョン %3$s を入手" ++ ++#: wp-admin/includes/update.php:37 ++#, php-format ++msgid "WordPress %2$s is available! Please update now." ++msgstr "WordPress %2$s が利甚可胜です ! アップデヌトしおください。" ++ ++#: wp-admin/includes/update.php:39 ++#, php-format ++msgid "WordPress %2$s is available! Please notify the site administrator." ++msgstr "WordPress %2$s が利甚可胜です ! サむト管理者にお知らせください。" ++ ++#: wp-admin/includes/update.php:49 ++#, php-format ++msgid "This is WordPress version %s." ++msgstr "お䜿いの WordPress のバヌゞョンは %s です。" ++ ++#: wp-admin/includes/update.php:51 ++#, php-format ++msgid "Update to %s" ++msgstr "%s にアップデヌト" ++ ++#: wp-admin/includes/update.php:51 ++msgid "Latest" ++msgstr "最新" ++ ++#: wp-admin/includes/update.php:131 ++#, php-format ++msgid "There is a new version of %1$s available. Download version %3$s here." ++msgstr "新しいバヌゞョンの %1$s が利甚可胜です。バヌゞョン %3$s をこちらからダりンロヌドしおください。" ++ ++#: wp-admin/includes/update.php:133 ++#, php-format ++msgid "There is a new version of %1$s available. Download version %3$s here automatic upgrade unavailable for this plugin." ++msgstr "新しいバヌゞョンの %1$s が利甚可胜です。バヌゞョン %3$s をこちらからダりンロヌドしおください。自動アップグレヌドはこのプラグむンでは利甚できたせん。" ++ ++#: wp-admin/includes/update.php:135 ++#, php-format ++msgid "There is a new version of %1$s available. Download version %3$s here or upgrade automatically." ++msgstr "新しいバヌゞョンの %1$s が利甚可胜です。バヌゞョン %3$s をこちらからダりンロヌドするか、たたは自動アップグレヌドを実行しおください。" ++ ++#: wp-admin/includes/update.php:150 ++msgid "The plugin is at the latest version." ++msgstr "プラグむンは最新のバヌゞョンです。" ++ ++#: wp-admin/includes/update.php:160 ++msgid "Filesystem error" ++msgstr "ファむルシステムの゚ラヌ" ++ ++#: wp-admin/includes/update.php:166 ++msgid "Unable to locate WordPress directory." ++msgstr "WordPress ディレクトリを配眮できたせん。" ++ ++#: wp-admin/includes/update.php:172 ++msgid "Upgrade package not available." ++msgstr "アップグレヌドパッケヌゞは䜿甚できたせん。" ++ ++#: wp-admin/includes/update.php:176 ++#, php-format ++msgid "Downloading update from %s" ++msgstr "%s からアップデヌトをダりンロヌドしおいたす" ++ ++#: wp-admin/includes/update.php:180 ++msgid "Download failed." ++msgstr "ダりンロヌドに倱敗したした。" ++ ++#: wp-admin/includes/update.php:188 ++msgid "Unpacking the update" ++msgstr "曎新を解凍しおいたす" ++ ++#: wp-admin/includes/update.php:202 ++msgid "Deactivating the plugin" ++msgstr "プラグむンを停止する" ++ ++#: wp-admin/includes/update.php:207 ++msgid "Removing the old version of the plugin" ++msgstr "プラグむンの叀いバヌゞョンを削陀しおいたす" ++ ++#: wp-admin/includes/update.php:219 ++msgid "Could not remove the old plugin" ++msgstr "叀いプラグむンを削陀できたせんでした" ++ ++#: wp-admin/includes/update.php:222 ++msgid "Installing the latest version" ++msgstr "最新のバヌゞョンをむンストヌルしおいたす" ++ ++#: wp-admin/includes/update.php:226 ++msgid "Installation failed" ++msgstr "むンストヌル倱敗" ++ ++#: wp-admin/includes/upgrade.php:41 ++msgid "User already exists. Password inherited." ++msgstr "ナヌザヌはすでに存圚しおいたす。パスワヌドを匕き継ぎたした。" ++ ++#: wp-admin/includes/upgrade.php:70 ++#: wp-admin/includes/upgrade.php:71 ++msgid "Blogroll" ++msgstr "ブログロヌル" ++ ++#: wp-admin/includes/upgrade.php:101 ++msgid "Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!" ++msgstr "WordPress ぞようこそ。これは最初の投皿です。線集もしくは削陀しおブログを始めおください !" ++ ++#: wp-admin/includes/upgrade.php:101 ++msgid "Hello world!" ++msgstr "Hello world!" ++ ++#: wp-admin/includes/upgrade.php:101 ++msgid "hello-world" ++msgstr "hello-world" ++ ++#: wp-admin/includes/upgrade.php:105 ++msgid "Mr WordPress" ++msgstr "Mr WordPress" ++ ++#: wp-admin/includes/upgrade.php:105 ++msgid "Hi, this is a comment.
    To delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them." ++msgstr "こんにちは。これはコメント䟋です。
    コメントを削陀するには、ログむンしおその投皿のコメントを衚瀺させおください。そこでコメントを線集したり削陀したりするこずができたす。" ++ ++#: wp-admin/includes/upgrade.php:109 ++msgid "This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress." ++msgstr "これは WordPress のペヌゞ機胜の䟋です。このペヌゞを線集しおあなた自身やあなたのサむトに぀いおの情報を茉せれば、読者はあなたがどんな人なのかを知るこずができたす。このようなペヌゞや階局化したペヌゞは奜きな数だけ䜜成するこずができ、すべおのコンテンツを WordPress 内で管理するこずができたす。" ++ ++#: wp-admin/includes/upgrade.php:109 ++#: wp-includes/js/tinymce/langs/wp-langs.php:238 ++#: wp-includes/js/tinymce/wp-mce-help.php:165 ++msgid "About" ++msgstr "玹介" ++ ++#: wp-admin/includes/upgrade.php:109 ++msgid "about" ++msgstr "about" ++ ++#: wp-admin/includes/upgrade.php:119 ++#, php-format ++msgid "" ++"Your new WordPress blog has been successfully set up at:\n" ++"\n" ++"%1$s\n" ++"\n" ++"You can log in to the administrator account with the following information:\n" ++"\n" ++"Username: %2$s\n" ++"Password: %3$s\n" ++"\n" ++"We hope you enjoy your new blog. Thanks!\n" ++"\n" ++"--The WordPress Team\n" ++"http://wordpress.org/\n" ++msgstr "" ++"新しい WordPress ブログの蚭眮に成功したした: \n" ++"\n" ++"%1$s\n" ++"\n" ++"次のナヌザヌ名ずパスワヌドを䜿っお管理アカりントにログむンするこずができたす: \n" ++"\n" ++"ナヌザヌ名: %2$s\n" ++"パスワヌド: %3$s\n" ++"\n" ++"では新しいブログを楜しんでください。 ありがずう !\n" ++"\n" ++"--WordPress チヌム\n" ++"http://ja.wordpress.org/\n" ++ ++#: wp-admin/includes/upgrade.php:134 ++msgid "New WordPress Blog" ++msgstr "新しい WordPress ブログ" ++ ++#: wp-admin/includes/user.php:87 ++#: wp-login.php:155 ++msgid "ERROR: Please enter a username." ++msgstr "゚ラヌ: ナヌザヌ名を入力しおください。" ++ ++#: wp-admin/includes/user.php:94 ++#: wp-admin/includes/user.php:96 ++msgid "ERROR: You entered your new password only once." ++msgstr "゚ラヌ: 新しいパスワヌドが 1 回しか入力されおいたせん。" ++ ++#: wp-admin/includes/user.php:99 ++msgid "ERROR: Please enter your password." ++msgstr "゚ラヌ: パスワヌドを入力しおください。" ++ ++#: wp-admin/includes/user.php:101 ++msgid "ERROR: Please enter your password twice." ++msgstr "゚ラヌ: パスワヌドは 2 回入力しおください。" ++ ++#: wp-admin/includes/user.php:106 ++msgid "ERROR: Passwords may not contain the character \"\\\"." ++msgstr "゚ラヌ: パスワヌドに文字 \"\\\" を含めるこずはできたせん。" ++ ++#: wp-admin/includes/user.php:110 ++msgid "ERROR: Please enter the same password in the two password fields." ++msgstr "゚ラヌ: パスワヌドは同じものを 2 回入力しおください。" ++ ++#: wp-admin/includes/user.php:116 ++msgid "ERROR: This username is invalid. Please enter a valid username." ++msgstr "゚ラヌ: このナヌザヌ名は無効です。有効なナヌザヌ名を入力しおください。" ++ ++#: wp-admin/includes/user.php:119 ++msgid "ERROR: This username is already registered. Please choose another one." ++msgstr "゚ラヌ: このナヌザヌ名はすでに登録されおいたす。別のナヌザヌ名を遞んでください。" ++ ++#: wp-admin/includes/user.php:123 ++msgid "ERROR: Please enter an e-mail address." ++msgstr "゚ラヌ: メヌルアドレスを入力しおください。" ++ ++#: wp-admin/includes/user.php:126 ++msgid "ERROR: The e-mail address isn't correct." ++msgstr "゚ラヌ: メヌルアドレスが䞍正です。" ++ ++#: wp-admin/includes/user.php:354 ++msgid "No matching users were found!" ++msgstr "該圓のナヌザヌは芋぀かりたせんでした !" ++ ++#: wp-admin/includes/widgets.php:136 ++msgid "No matching widgets" ++msgstr "該圓するりィゞェットなし" ++ ++#: wp-admin/includes/widgets.php:216 ++#, php-format ++msgid "%1$s: %2$s|1: widget name, 2: widget title" ++msgstr "%1$s: %2$s|1: りィゞェットの名前, 2: りィゞェットのタむトル" ++ ++#: wp-admin/includes/widgets.php:243 ++msgid "There are no options for this widget." ++msgstr "このりィゞェットのオプションはありたせん。" ++ ++#: wp-admin/includes/widgets.php:253 ++#: wp-admin/users.php:303 ++msgid "Change" ++msgstr "倉曎" ++ ++#: wp-admin/includes/widgets.php:257 ++msgid "Remove" ++msgstr "削陀" ++ ++#: wp-admin/index.php:30 ++#: wp-admin/index.php:39 ++#: wp-admin/menu.php:7 ++msgid "Dashboard" ++msgstr "ダッシュボヌド" ++ ++#: wp-admin/index.php:43 ++msgid "Right Now" ++msgstr "珟圚の状況" ++ ++#: wp-admin/index.php:46 ++msgid "Write a New Post" ++msgstr "新芏投皿䜜成" ++ ++#: wp-admin/index.php:48 ++msgid "Write a New Page" ++msgstr "新芏ペヌゞ䜜成" ++ ++#: wp-admin/index.php:64 ++#, php-format ++msgid "%s post" ++msgid_plural "%s posts" ++msgstr[0] "%s 件の投皿" ++ ++#: wp-admin/index.php:68 ++#, php-format ++msgid "%s page" ++msgid_plural "%s pages" ++msgstr[0] "%s 件のペヌゞ" ++ ++#: wp-admin/index.php:71 ++#, php-format ++msgid "%s draft" ++msgid_plural "%s drafts" ++msgstr[0] "%s 件の䞋曞き" ++ ++#: wp-admin/index.php:74 ++#, php-format ++msgid "%s scheduled post" ++msgid_plural "%s scheduled posts" ++msgstr[0] "%s 件の予玄枈みの投皿" ++ ++#: wp-admin/index.php:78 ++#, php-format ++msgid "There is %2$s post pending your review." ++msgid_plural "There are %2$s posts pending your review." ++msgstr[0] "レビュヌ埅ちの %2$s 件の投皿" ++ ++#: wp-admin/index.php:83 ++#, php-format ++msgid "%s category" ++msgid_plural "%s categories" ++msgstr[0] "%s 個のカテゎリヌ" ++ ++#: wp-admin/index.php:84 ++#, php-format ++msgid "%s tag" ++msgid_plural "%s tags" ++msgstr[0] "%s 個のタグ" ++ ++#: wp-admin/index.php:93 ++#, php-format ++msgid "You have %1$s, contained within %2$s and %3$s. %4$s" ++msgstr "%1$s、%2$s、%3$s、%4$s がありたす。" ++ ++#: wp-admin/index.php:102 ++#, php-format ++msgid "%d widget" ++msgid_plural "%d widgets" ++msgstr[0] "%d 個のりィゞェット" ++ ++#: wp-admin/index.php:107 ++#, php-format ++msgid "You are using %1$s theme with %2$s." ++msgstr "%1$s テヌマず %2$sを䜿甚しおいたす。" ++ ++#: wp-admin/index.php:109 ++msgid "Change Theme" ++msgstr "テヌマの倉曎" ++ ++#: wp-admin/install.php:23 ++msgid "WordPress › Installation" ++msgstr "WordPress › むンストヌル" ++ ++#: wp-admin/install.php:33 ++msgid "Already Installed" ++msgstr "むンストヌル枈み" ++ ++#: wp-admin/install.php:33 ++msgid "You appear to have already installed WordPress. To reinstall please clear your old database tables first." ++msgstr "すでに WordPress をむンストヌル枈みのようです。再むンストヌルするにはたず最初に叀いデヌタベヌステヌブルを削陀しおください。" ++ ++#: wp-admin/install.php:40 ++msgid "Welcome" ++msgstr "ようこそ" ++ ++#: wp-admin/install.php:41 ++#, php-format ++msgid "Welcome to the famous five minute WordPress installation process! You may want to browse the ReadMe documentation at your leisure. Otherwise, just fill in the information below and you'll be on your way to using the most extendable and powerful personal publishing platform in the world." ++msgstr "5 分でできる WordPress の有名なむンストヌルプロセスぞようこそ ! ReadMe ドキュメントはお暇なずきにでもお読みください。䞋蚘にいく぀か情報を入力しお、䞖界で最も拡匵的で匷力なパヌ゜ナルパブリッシングプラットフォヌムを䜿甚するための準備を始めたしょう。" ++ ++#: wp-admin/install.php:42 ++msgid "First Step" ++msgstr "最初のステップ" ++ ++#: wp-admin/install.php:44 ++msgid "Information needed" ++msgstr "必芁情報" ++ ++#: wp-admin/install.php:45 ++msgid "Please provide the following information. Don't worry, you can always change these settings later." ++msgstr "次の情報をいく぀か入力しおください。ご心配なく、これらの情報は埌からい぀でも倉曎するこずができたす。" ++ ++#: wp-admin/install.php:50 ++#: wp-admin/options-general.php:16 ++msgid "Blog Title" ++msgstr "ブログタむトル" ++ ++#: wp-admin/install.php:54 ++msgid "Your E-mail" ++msgstr "メヌルアドレス" ++ ++#: wp-admin/install.php:56 ++msgid "Double-check your email address before continuing." ++msgstr "次に進む前にメヌルアドレスをもう䞀床確認しおください。" ++ ++#: wp-admin/install.php:59 ++msgid "Allow my blog to appear in search engines like Google and Technorati." ++msgstr "このブログを Google や Technorat などの怜玢゚ンゞンに衚瀺されるようにする。" ++ ++#: wp-admin/install.php:62 ++msgid "Install WordPress" ++msgstr "WordPress をむンストヌル" ++ ++#: wp-admin/install.php:79 ++msgid "ERROR: you must provide an e-mail address." ++msgstr "゚ラヌ: メヌルアドレスを入力しおください。" ++ ++#: wp-admin/install.php:82 ++msgid "ERROR: that isn’t a valid e-mail address. E-mail addresses look like: username@example.com" ++msgstr "゚ラヌ: 有効なメヌルアドレスではありたせん。メヌルアドレスは次のようなものです: username@example.com" ++ ++#: wp-admin/install.php:90 ++msgid "Success!" ++msgstr "成功したした !" ++ ++#: wp-admin/install.php:92 ++msgid "WordPress has been installed. Were you expecting more steps? Sorry to disappoint." ++msgstr "WordPress がむンストヌルされたした。もっず䜕か䜜業をしたかったですか ? がっかりさせおゎメンナサむ。これだけです !" ++ ++#: wp-admin/install.php:96 ++#: wp-admin/user-edit.php:198 ++#: wp-admin/users.php:334 ++#: wp-login.php:316 ++#: wp-login.php:381 ++msgid "Username" ++msgstr "ナヌザヌ名" ++ ++#: wp-admin/install.php:100 ++#: wp-admin/options-writing.php:76 ++#: wp-login.php:385 ++msgid "Password" ++msgstr "パスワヌド" ++ ++#: wp-admin/install.php:102 ++msgid "Note that password carefully! It is a random password that was generated just for you." ++msgstr "パスワヌドを泚意深くメモしおください ! このパスワヌドは今回のむンストヌル甚にランダムに生成されたものです。" ++ ++#: wp-admin/install.php:106 ++#: wp-login.php:391 ++msgid "Log In" ++msgstr "ログむン" ++ ++#: wp-admin/link-add.php:22 ++msgid "Link added." ++msgstr "リンクが远加されたした。" ++ ++#: wp-admin/link-import.php:7 ++msgid "Import Blogroll" ++msgstr "リンクのむンポヌト" ++ ++#: wp-admin/link-import.php:24 ++msgid "Import your blogroll from another system" ++msgstr "別システムからのリンクのむンポヌト" ++ ++#: wp-admin/link-import.php:28 ++msgid "If a program or website you use allows you to export your links or subscriptions as OPML you may import them here." ++msgstr "お䜿いのプログラムやりェブサむトがリンク集やサブスクリプションを OPML 圢匏で゚クスポヌトできるのなら、このペヌゞでむンポヌトするこずができたす。" ++ ++#: wp-admin/link-import.php:33 ++msgid "Specify an OPML URL:" ++msgstr "OPML URL の指定:" ++ ++#: wp-admin/link-import.php:38 ++msgid "Or choose from your local disk:" ++msgstr "もしくはロヌカルディスクから遞択:" ++ ++#: wp-admin/link-import.php:44 ++msgid "Now select a category you want to put these links in." ++msgstr "取り蟌むリンクのカテゎリヌを遞択しおください。" ++ ++#: wp-admin/link-import.php:45 ++msgid "Category:" ++msgstr "カテゎリヌ:" ++ ++#: wp-admin/link-import.php:56 ++msgid "Import OPML File" ++msgstr "OPML をむンポヌト" ++ ++#: wp-admin/link-import.php:111 ++#, php-format ++msgid "Inserted %s" ++msgstr "%sが挿入されたした。" ++ ++#: wp-admin/link-import.php:115 ++#, php-format ++msgid "Inserted %1$d links into category %2$s. All done! Go manage those links." ++msgstr "%1$d 個のリンクをカテゎリヌ %2$s に挿入完了 ! リンクの管理に移動。" ++ ++#: wp-admin/link-import.php:121 ++msgid "You need to supply your OPML url. Press back on your browser and try again" ++msgstr "OPML URL を入力する必芁がありたす。ブラりザの「戻る」ボタンを抌しおやり盎しおください。" ++ ++#: wp-admin/link-manager.php:10 ++#: wp-admin/link-manager.php:42 ++#: wp-admin/link.php:7 ++msgid "You do not have sufficient permissions to edit the links for this blog." ++msgstr "あなたのナヌザヌ暩限ではこのブログのリンクを線集できたせん。" ++ ++#: wp-admin/link-manager.php:37 ++msgid "Manage Links" ++msgstr "リンクの管理" ++ ++#: wp-admin/link-manager.php:69 ++#, php-format ++msgid "%s link deleted." ++msgid_plural "%s links deleted" ++msgstr[0] "%s 個のリンクが削陀されたした。" ++ ++#: wp-admin/link-manager.php:78 ++#, php-format ++msgid "Manage Links (add new)" ++msgstr "リンクの管理 (新芏远加)" ++ ++#: wp-admin/link-manager.php:82 ++msgid "Search Links" ++msgstr "リンクを怜玢" ++ ++#: wp-admin/link-manager.php:94 ++msgid "View all Categories" ++msgstr "すべおのカテゎリヌを衚瀺する" ++ ++#: wp-admin/link-manager.php:100 ++msgid "Order by Link ID" ++msgstr "リンク ID 順で䞊べる" ++ ++#: wp-admin/link-manager.php:101 ++msgid "Order by Name" ++msgstr "名前順で䞊べる" ++ ++#: wp-admin/link-manager.php:102 ++msgid "Order by Address" ++msgstr "アドレス順で䞊べる" ++ ++#: wp-admin/link-manager.php:103 ++msgid "Order by Rating" ++msgstr "評䟡順で䞊べる" ++ ++#: wp-admin/link-manager.php:124 ++msgid "rel" ++msgstr "rel" ++ ++#: wp-admin/link-manager.php:125 ++msgid "Visible" ++msgstr "衚瀺" ++ ++#: wp-admin/link-manager.php:163 ++#: wp-admin/update.php:64 ++msgid "Yes" ++msgstr "はい" ++ ++#: wp-admin/link-manager.php:176 ++#, php-format ++msgid "Visit %s" ++msgstr "%s を開く" ++ ++#: wp-admin/link-manager.php:214 ++msgid "No links found." ++msgstr "リンクは芋぀かりたせんでした。" ++ ++#: wp-admin/link-parse-opml.php:58 ++#, php-format ++msgid "XML error: %1$s at line %2$s" ++msgstr "XML ゚ラヌ: %2$s行目の%1$s " ++ ++#: wp-admin/link.php:97 ++msgid "Link not found." ++msgstr "リンクが芋぀かりたせんでした。" ++ ++#: wp-admin/media.php:32 ++#: wp-admin/media.php:68 ++msgid "Edit Media" ++msgstr "メディアを線集" ++ ++#: wp-admin/media.php:56 ++msgid "Media attachment updated." ++msgstr "メディア添付ファむルがアップデヌトされたした。" ++ ++#: wp-admin/media-upload.php:19 ++msgid "You are not allowed to be here" ++msgstr "このペヌゞを閲芧する暩限がありたせん。" ++ ++#: wp-admin/menu.php:10 ++#: wp-admin/menu.php:12 ++#: wp-admin/menu.php:14 ++msgid "Write" ++msgstr "䜜成" ++ ++#: wp-admin/menu.php:17 ++#: wp-admin/menu.php:19 ++#: wp-admin/menu.php:21 ++msgid "Manage" ++msgstr "管理" ++ ++#: wp-admin/menu.php:24 ++msgid "Design" ++msgstr "デザむン" ++ ++#: wp-admin/menu.php:25 ++#, php-format ++msgid "Comments %s" ++msgstr "コメント %s" ++ ++#: wp-admin/menu.php:26 ++#: wp-admin/options.php:4 ++msgid "Settings" ++msgstr "蚭定" ++ ++#: wp-admin/menu.php:31 ++#: wp-admin/user-edit.php:63 ++msgid "Profile" ++msgstr "プロフィヌル" ++ ++#: wp-admin/menu.php:36 ++msgid "Link" ++msgstr "リンク" ++ ++#: wp-admin/menu.php:52 ++msgid "Authors & Users" ++msgstr "投皿者ずナヌザヌ" ++ ++#: wp-admin/menu.php:53 ++#: wp-admin/menu.php:55 ++msgid "Your Profile" ++msgstr "あなたのプロフィヌル" ++ ++#: wp-admin/menu.php:58 ++#: wp-includes/js/tinymce/langs/wp-langs.php:290 ++msgid "General" ++msgstr "䞀般蚭定" ++ ++#: wp-admin/menu.php:59 ++msgid "Writing" ++msgstr "投皿蚭定" ++ ++#: wp-admin/menu.php:60 ++msgid "Reading" ++msgstr "衚瀺蚭定" ++ ++#: wp-admin/menu.php:61 ++msgid "Discussion" ++msgstr "ディスカッション" ++ ++#: wp-admin/menu.php:62 ++msgid "Privacy" ++msgstr "プラむバシヌ" ++ ++#: wp-admin/menu.php:63 ++msgid "Permalinks" ++msgstr "パヌマリンク蚭定" ++ ++#: wp-admin/menu.php:64 ++msgid "Miscellaneous" ++msgstr "その他の蚭定" ++ ++#: wp-admin/menu.php:67 ++#: wp-admin/plugin-editor.php:95 ++msgid "Plugin Editor" ++msgstr "プラグむン゚ディタ" ++ ++#: wp-admin/menu.php:69 ++msgid "Themes" ++msgstr "テヌマ" ++ ++#: wp-admin/menu.php:70 ++#: wp-admin/theme-editor.php:93 ++msgid "Theme Editor" ++msgstr "テヌマ゚ディタ" ++ ++#: wp-admin/menu.php:140 ++msgid "You do not have sufficient permissions to access this page." ++msgstr "このペヌゞにアクセスするための十分なアクセス暩がありたせん。" ++ ++#: wp-admin/options-discussion.php:4 ++#: wp-admin/options-discussion.php:11 ++msgid "Discussion Settings" ++msgstr "ディスカッション蚭定" ++ ++#: wp-admin/options-discussion.php:16 ++msgid "Default article settings" ++msgstr "投皿のデフォルト蚭定" ++ ++#: wp-admin/options-discussion.php:20 ++msgid "Attempt to notify any blogs linked to from the article (slows down posting.)" ++msgstr "投皿䞭からリンクしたすべおのブログぞの通知を詊みる (投皿に時間がかかりたす)" ++ ++#: wp-admin/options-discussion.php:24 ++msgid "Allow link notifications from other blogs (pingbacks and trackbacks.)" ++msgstr "他のブログからのリンク通知を蚱可する (ピンバックずトラックバック)" ++ ++#: wp-admin/options-discussion.php:28 ++msgid "Allow people to post comments on the article" ++msgstr "コメントの投皿を蚱可する" ++ ++#: wp-admin/options-discussion.php:30 ++msgid "These settings may be overridden for individual articles." ++msgstr "これらの蚭定は各投皿の蚭定が優先されたす。" ++ ++#: wp-admin/options-discussion.php:34 ++msgid "E-mail me whenever" ++msgstr "自分宛のメヌル通知" ++ ++#: wp-admin/options-discussion.php:38 ++msgid "Anyone posts a comment" ++msgstr "コメントが投皿されたずき" ++ ++#: wp-admin/options-discussion.php:42 ++msgid "A comment is held for moderation" ++msgstr "承認のためにコメントが保留されたずき" ++ ++#: wp-admin/options-discussion.php:46 ++msgid "Before a comment appears" ++msgstr "コメント衚瀺条件" ++ ++#: wp-admin/options-discussion.php:50 ++msgid "An administrator must always approve the comment" ++msgstr "管理者の承認を垞に必芁ずする" ++ ++#: wp-admin/options-discussion.php:52 ++msgid "Comment author must fill out name and e-mail" ++msgstr "名前ずメヌルアドレスの入力を必須にする" ++ ++#: wp-admin/options-discussion.php:54 ++msgid "Comment author must have a previously approved comment" ++msgstr "すでに承認されたコメントの投皿者のコメントを蚱可し、それ以倖のコメントを承認埅ちにする" ++ ++#: wp-admin/options-discussion.php:58 ++msgid "Comment Moderation" ++msgstr "コメントモデレヌション" ++ ++#: wp-admin/options-discussion.php:60 ++#, php-format ++msgid "Hold a comment in the queue if it contains %s or more links. (A common characteristic of comment spam is a large number of hyperlinks.)" ++msgstr "%s 個以䞊のリンクを含んでいる堎合は承認埅ちにする (コメントスパムに共通する特城のひず぀に倚数のハむパヌリンクがある) " ++ ++#: wp-admin/options-discussion.php:62 ++msgid "When a comment contains any of these words in its content, name, URL, e-mail, or IP, it will be held in the moderation queue. One word or IP per line. It will match inside words, so \"press\" will match \"WordPress\"." ++msgstr "コメントの内容、名前、URL、メヌルアドレス、IP に以䞋の単語のうちいずれかでも含んでいる堎合、そのコメントは承認埅ちになりたす。各単語や IP は改行で区切っおください。単語内に含たれる語句にもマッチしたす。䟋: \"press\" は \"WordPress\" にマッチしたす。" ++ ++#: wp-admin/options-discussion.php:69 ++msgid "Comment Blacklist" ++msgstr "コメントブラックリスト" ++ ++#: wp-admin/options-discussion.php:71 ++msgid "When a comment contains any of these words in its content, name, URL, e-mail, or IP, it will be marked as spam. One word or IP per line. It will match inside words, so \"press\" will match \"WordPress\"." ++msgstr "コメントの内容、名前、URL、メヌルアドレス、IP に以䞋の単語のうちいずれかでも含んでいる堎合、そのコメントはスパムずしおマヌクされたす。各単語や IP は改行で区切っおください。単語内に含たれる語句にもマッチしたす。䟋: \"press\" は \"WordPress\" にマッチしたす。" ++ ++#: wp-admin/options-discussion.php:79 ++msgid "Avatars" ++msgstr "アバタヌ" ++ ++#: wp-admin/options-discussion.php:81 ++msgid "By default WordPress uses Gravatars — short for Globally Recognized Avatars — for the pictures that show up next to comments. Plugins may override this." ++msgstr "初期蚭定ではコメントのずなりに衚瀺されるむメヌゞに Gravatar が䜿甚されたす。プラグむンでこれを倉曎するこずも可胜です。" ++ ++#: wp-admin/options-discussion.php:87 ++msgid "Avatar display" ++msgstr "アバタヌの衚瀺" ++ ++#: wp-admin/options-discussion.php:90 ++msgid "Don’t show Avatars" ++msgstr "アバタヌを衚瀺しない" ++ ++#: wp-admin/options-discussion.php:90 ++msgid "Show Avatars" ++msgstr "アバタヌを衚瀺する" ++ ++#: wp-admin/options-discussion.php:99 ++msgid "Maximum Rating" ++msgstr "評䟡による制限" ++ ++#: wp-admin/options-discussion.php:103 ++msgid "G — Suitable for all audiences" ++msgstr "G — あらゆる人に奜適" ++ ++#: wp-admin/options-discussion.php:103 ++msgid "PG — Possibly offensive, usually for audiences 13 and above" ++msgstr "PG — 䞍快感を䞎える恐れ — 13歳以䞊の人向き" ++ ++#: wp-admin/options-discussion.php:103 ++msgid "R — Intended for adult audiences above 17" ++msgstr "R — 18歳以䞊の成人向き" ++ ++#: wp-admin/options-discussion.php:103 ++msgid "X — Even more mature than above" ++msgstr "X — 最高レベルの制限" ++ ++#: wp-admin/options-general.php:4 ++#: wp-admin/options-general.php:11 ++msgid "General Settings" ++msgstr "䞀般蚭定" ++ ++#: wp-admin/options-general.php:20 ++msgid "Tagline" ++msgstr "キャッチフレヌズ" ++ ++#: wp-admin/options-general.php:23 ++msgid "In a few words, explain what this blog is about." ++msgstr "このブログの簡単な説明。" ++ ++#: wp-admin/options-general.php:26 ++msgid "WordPress address (URL)" ++msgstr "WordPress のアドレス (URL)" ++ ++#: wp-admin/options-general.php:30 ++msgid "Blog address (URL)" ++msgstr "ブログのアドレス (URL)" ++ ++#: wp-admin/options-general.php:31 ++msgid "Enter the address here if you want your blog homepage to be different from the directory you installed WordPress." ++msgstr "WordPress をむンストヌルしたディレクトリずは別のディレクトリにホヌムペヌゞを蚭定する堎合、ここにそのアドレスを入力しおください。" ++ ++#: wp-admin/options-general.php:34 ++msgid "E-mail address" ++msgstr "メヌルアドレス" ++ ++#: wp-admin/options-general.php:37 ++msgid "This address is used for admin purposes, like new user notification." ++msgstr "このアドレスは新芏ナヌザヌのお知らせなどブログ管理のために䜿甚されたす。" ++ ++#: wp-admin/options-general.php:40 ++msgid "Membership" ++msgstr "メンバヌシップ" ++ ++#: wp-admin/options-general.php:43 ++msgid "Anyone can register" ++msgstr "誰でもナヌザヌ登録ができるようにする" ++ ++#: wp-admin/options-general.php:46 ++msgid "Users must be registered and logged in to comment" ++msgstr "ナヌザヌ登録しおログむンしたナヌザヌのみコメントを぀けられるようにする" ++ ++#: wp-admin/options-general.php:51 ++msgid "New User Default Role" ++msgstr "新芏ナヌザヌのデフォルト暩限" ++ ++#: wp-admin/options-general.php:57 ++msgid "Timezone" ++msgstr "タむムゟヌン" ++ ++#: wp-admin/options-general.php:79 ++#, php-format ++msgid "UTC %s" ++msgstr "UTC %s" ++ ++#: wp-admin/options-general.php:83 ++msgid "hours" ++msgstr "時間" ++ ++#: wp-admin/options-general.php:84 ++#, php-format ++msgid "UTC time is %s" ++msgstr "UTC (協定䞖界時) では %s" ++ ++#: wp-admin/options-general.php:84 ++#: wp-admin/options-general.php:85 ++msgid "Y-m-d G:i:s" ++msgstr "Y 幎 n 月 j 日 g:i:s a" ++ ++#: wp-admin/options-general.php:85 ++#, php-format ++msgid "UTC %1$s is %2$s" ++msgstr "UTC %1$s では %2$s" ++ ++#: wp-admin/options-general.php:86 ++msgid "Unfortunately, you have to manually update this for Daylight Savings Time. Lame, we know, but will be fixed in the future." ++msgstr "サマヌタむムに぀いおは面倒ですがその郜床、手䜜業で倉曎しおください。これは倧倉なのでいずれは改善したす。" ++ ++#: wp-admin/options-general.php:90 ++msgid "Date Format" ++msgstr "日付フォヌマット" ++ ++#: wp-admin/options-general.php:92 ++#: wp-admin/options-general.php:97 ++msgid "Output:" ++msgstr "衚瀺䟋:" ++ ++#: wp-admin/options-general.php:95 ++msgid "Time Format" ++msgstr "時刻フォヌマット" ++ ++#: wp-admin/options-general.php:98 ++msgid "Documentation on date formatting. Click \"Save Changes\" to update sample output." ++msgstr "日時フォヌマットの説明。蚭定を保存するず衚瀺䟋が曎新されたす。" ++ ++#: wp-admin/options-general.php:101 ++msgid "Week Starts On" ++msgstr "週の始たり" ++ ++#: wp-admin/options-head.php:4 ++msgid "Settings saved." ++msgstr "蚭定を保存したした。" ++ ++#: wp-admin/options-misc.php:4 ++#: wp-admin/options-misc.php:12 ++msgid "Miscellaneous Settings" ++msgstr "その他の蚭定" ++ ++#: wp-admin/options-misc.php:15 ++msgid "Uploading" ++msgstr "アップロヌド" ++ ++#: wp-admin/options-misc.php:18 ++msgid "Store uploads in this folder" ++msgstr "アップロヌドするファむルの保存堎所" ++ ++#: wp-admin/options-misc.php:21 ++msgid "Default is wp-content/uploads" ++msgstr "デフォルトは wp-content/uploads" ++ ++#: wp-admin/options-misc.php:26 ++msgid "Full URL path to files (optional)" ++msgstr "ファむルのフル URL パス (オプション)" ++ ++#: wp-admin/options-misc.php:35 ++msgid "Organize my uploads into month- and year-based folders" ++msgstr "アップロヌドしたファむルを幎月ベヌスのフォルダに敎理" ++ ++#: wp-admin/options-misc.php:41 ++msgid "Image sizes" ++msgstr "画像サむズ" ++ ++#: wp-admin/options-misc.php:42 ++msgid "The sizes listed below determine the maximum dimensions to use when inserting an image into the body of a post." ++msgstr "投皿本文に挿入するずきに䜿甚する画像の䞊限寞法を蚭定できたす。" ++ ++#: wp-admin/options-misc.php:46 ++msgid "Thumbnail size" ++msgstr "サムネむルのサむズ" ++ ++#: wp-admin/options-misc.php:48 ++msgid "Width" ++msgstr "幅" ++ ++#: wp-admin/options-misc.php:50 ++msgid "Height" ++msgstr "高さ" ++ ++#: wp-admin/options-misc.php:53 ++msgid "Crop thumbnail to exact dimensions (normally thumbnails are proportional)" ++msgstr "サムネむルを実寞法にトリミングする (通垞は盞察的な瞮小によりサムネむルを䜜りたす)" ++ ++#: wp-admin/options-misc.php:57 ++msgid "Medium size" ++msgstr "䞭サむズ" ++ ++#: wp-admin/options-misc.php:59 ++msgid "Max Width" ++msgstr "幅の䞊限" ++ ++#: wp-admin/options-misc.php:61 ++msgid "Max Height" ++msgstr "高さの䞊限" ++ ++#: wp-admin/options-misc.php:75 ++msgid "Track Links’ Update Times" ++msgstr "リンクの曎新時間を远跡" ++ ++#: wp-admin/options-misc.php:84 ++msgid "Use legacy my-hacks.php file support" ++msgstr "レガシヌな my-hacks.php ファむルを䜿甚" ++ ++#: wp-admin/options-permalink.php:4 ++msgid "Permalink Settings" ++msgstr "パヌマリンク蚭定" ++ ++#: wp-admin/options-permalink.php:105 ++msgid "You should update your .htaccess now." ++msgstr ".htaccess を曎新する必芁がありたす。" ++ ++#: wp-admin/options-permalink.php:107 ++msgid "Permalink structure updated." ++msgstr "パヌマリンク構造を曎新したした。" ++ ++#: wp-admin/options-permalink.php:112 ++msgid "Customize Permalink Structure" ++msgstr "パヌマリンク構造のカスタマむズ" ++ ++#: wp-admin/options-permalink.php:115 ++msgid "By default WordPress uses web URLs which have question marks and lots of numbers in them, however WordPress offers you the ability to create a custom URL structure for your permalinks and archives. This can improve the aesthetics, usability, and forward-compatibility of your links. A number of tags are available, and here are some examples to get you started." ++msgstr "初期蚭定では、WordPress はク゚スチョンマヌクず倚くの数字からなる URL を䜿甚しおいたすが、パヌマリンクずアヌカむブ甚にカスタムな URL 構造を䜜成するこずもできたす。これにより、リンクの芋た目、䜿いやすさ、そしお継続性を改善するこずができたす。利甚可胜なタグはたくさんありたす。たた、すぐに䜿甚できる䟋をいく぀か甚意したした。" ++ ++#: wp-admin/options-permalink.php:130 ++msgid "Common settings" ++msgstr "䞀般的な蚭定" ++ ++#: wp-admin/options-permalink.php:133 ++msgid "Default" ++msgstr "デフォルト" ++ ++#: wp-admin/options-permalink.php:137 ++msgid "Day and name" ++msgstr "日付ず投皿名" ++ ++#: wp-admin/options-permalink.php:141 ++msgid "Month and name" ++msgstr "月ず投皿名" ++ ++#: wp-admin/options-permalink.php:145 ++msgid "Numeric" ++msgstr "数字ベヌス" ++ ++#: wp-admin/options-permalink.php:155 ++msgid "Custom Structure" ++msgstr "カスタム構造" ++ ++#: wp-admin/options-permalink.php:164 ++msgid "Optional" ++msgstr "オプション" ++ ++#: wp-admin/options-permalink.php:166 ++msgid "If you like, you may enter custom structures for your category and tag URLs here. For example, using /topics/ as your category base would make your category links like http://example.org/topics/uncategorized/. If you leave these blank the defaults will be used." ++msgstr "お望みなら、カテゎリヌずタグ URL 甚のカスタム構造を蚭定するこずもできたす。䟋えばカテゎリヌベヌスずしお /topics/ ず入力するず、 http://example.org/topics/uncategorized/ のようなカテゎリヌリンクが䜜成されたす。このフィヌルドが空の堎合はデフォルトの蚭定が䜿甚されたす。" ++ ++#: wp-admin/options-permalink.php:168 ++msgid "If you like, you may enter custom structures for your category and tag URLs here. For example, using /topics/ as your category base would make your category links like http://example.org/index.php/topics/uncategorized/. If you leave these blank the defaults will be used." ++msgstr "お望みなら、カテゎリヌずタグ URL 甚のカスタム構造を蚭定するこずもできたす。䟋えばカテゎリヌベヌスずしお /topics/ ず入力するず、 http://example.org/index.php/topics/uncategorized/ のようなカテゎリヌリンクが䜜成されたす。このフィヌルドが空の堎合はデフォルトの蚭定が䜿甚されたす。" ++ ++#: wp-admin/options-permalink.php:173 ++msgid "Category base" ++msgstr "カテゎリヌベヌス" ++ ++#: wp-admin/options-permalink.php:177 ++msgid "Tag base" ++msgstr "タグベヌス" ++ ++#: wp-admin/options-permalink.php:184 ++msgid "If your .htaccess file were writable, we could do this automatically, but it isn’t so these are the mod_rewrite rules you should have in your .htaccess file. Click in the field and press CTRL + a to select all." ++msgstr "あなたの .htaccess が曞き蟌み可胜ならこの操䜜は自動的に行われたすが、そうでない堎合は .htaccess ファむルに mod_rewrite ルヌルを曞き蟌む必芁がありたす。このフィヌルドをクリックし、CTRL + a ですべおのコヌドを遞択しおください。" ++ ++#: wp-admin/options.php:47 ++msgid "All Settings" ++msgstr "すべおの蚭定" ++ ++#: wp-admin/options-privacy.php:4 ++#: wp-admin/options-privacy.php:11 ++msgid "Privacy Settings" ++msgstr "プラむバシヌ蚭定" ++ ++#: wp-admin/options-privacy.php:16 ++msgid "Blog Visibility" ++msgstr "ブログの公開範囲" ++ ++#: wp-admin/options-privacy.php:19 ++msgid "I would like my blog to be visible to everyone, including search engines (like Google, Sphere, Technorati) and archivers" ++msgstr "このブログを、怜玢゚ンゞン (Google、Sphere、Technorati など) ずアヌカむブサむトを含め、誰でも閲芧できるようにする" ++ ++#: wp-admin/options-privacy.php:21 ++msgid "I would like to block search engines, but allow normal visitors" ++msgstr "怜玢゚ンゞンはブロックするが通垞の蚪問者の閲芧は蚱可する" ++ ++#: wp-admin/options-reading.php:4 ++#: wp-admin/options-reading.php:11 ++msgid "Reading Settings" ++msgstr "衚瀺蚭定" ++ ++#: wp-admin/options-reading.php:17 ++msgid "Front page displays" ++msgstr "トップペヌゞの衚瀺" ++ ++#: wp-admin/options-reading.php:21 ++msgid "Your latest posts" ++msgstr "最新の投皿" ++ ++#: wp-admin/options-reading.php:26 ++#, php-format ++msgid "A static page (select below)" ++msgstr "固定ペヌゞ (以䞋を遞択) " ++ ++#: wp-admin/options-reading.php:30 ++#, php-format ++msgid "Front page: %s" ++msgstr "トップペヌゞ: %s" ++ ++#: wp-admin/options-reading.php:31 ++#, php-format ++msgid "Posts page: %s" ++msgstr "投皿ペヌゞ: %s" ++ ++#: wp-admin/options-reading.php:36 ++msgid "Warning: these pages should not be the same!" ++msgstr "è­Šå‘Š: 同じペヌゞは蚭定できたせん !" ++ ++#: wp-admin/options-reading.php:44 ++msgid "Blog pages show at most" ++msgstr "1 ペヌゞ内の投皿数" ++ ++#: wp-admin/options-reading.php:46 ++#: wp-admin/options-reading.php:51 ++msgid "posts" ++msgstr "件" ++ ++#: wp-admin/options-reading.php:50 ++msgid "Syndication feeds show the most recent" ++msgstr "RSS/Atom フィヌドで衚瀺する最新の投皿数" ++ ++#: wp-admin/options-reading.php:54 ++msgid "For each article in a feed, show" ++msgstr "RSS/Atom フィヌドでの各投皿の衚瀺" ++ ++#: wp-admin/options-reading.php:56 ++msgid "Full text" ++msgstr "å…šæ–‡" ++ ++#: wp-admin/options-reading.php:57 ++msgid "Summary" ++msgstr "抜粋" ++ ++#: wp-admin/options-reading.php:62 ++msgid "Encoding for pages and feeds" ++msgstr "ペヌゞずフィヌドの文字コヌド" ++ ++#: wp-admin/options-reading.php:64 ++msgid "The character encoding you write your blog in (UTF-8 is recommended)" ++msgstr "このブログの文字コヌド (UTF-8 を掚奚) " ++ ++#: wp-admin/options-writing.php:4 ++#: wp-admin/options-writing.php:11 ++msgid "Writing Settings" ++msgstr "投皿蚭定" ++ ++#: wp-admin/options-writing.php:17 ++msgid "Size of the post box" ++msgstr "投皿入力欄の倧きさ" ++ ++#: wp-admin/options-writing.php:19 ++msgid "lines" ++msgstr "行" ++ ++#: wp-admin/options-writing.php:22 ++msgid "Formatting" ++msgstr "敎圢" ++ ++#: wp-admin/options-writing.php:26 ++msgid "Convert emoticons like :-) and :-P to graphics on display" ++msgstr ":-) や :-P のような顔文字を画像に倉換しお衚瀺する" ++ ++#: wp-admin/options-writing.php:27 ++msgid "WordPress should correct invalidly nested XHTML automatically" ++msgstr "䞍正にネスト化した XHTML を自動的に修正する" ++ ++#: wp-admin/options-writing.php:31 ++msgid "Default Post Category" ++msgstr "投皿甚カテゎリヌの初期蚭定" ++ ++#: wp-admin/options-writing.php:45 ++msgid "Default Link Category" ++msgstr "リンクカテゎリヌの初期蚭定" ++ ++#: wp-admin/options-writing.php:60 ++msgid "Post via e-mail" ++msgstr "メヌルでの投皿" ++ ++#: wp-admin/options-writing.php:61 ++#, php-format ++msgid "To post to WordPress by e-mail you must set up a secret e-mail account with POP3 access. Any mail received at this address will be posted, so it’s a good idea to keep this address very secret. Here are three random strings you could use: %s, %s, %s." ++msgstr "メヌルを利甚しお WordPress に投皿するには POP3 アクセスによる秘密のメヌルアカりントを䜜成しおください。そのアドレスで受信されたすべおのメヌルが投皿されるので、䜿甚するアドレスは秘密にしおおいたほうがいいでしょう。䜿甚できる 3 ぀のランダムな文字列: %s, %s, %s" ++ ++#: wp-admin/options-writing.php:65 ++msgid "Mail Server" ++msgstr "メヌルサヌバヌ" ++ ++#: wp-admin/options-writing.php:67 ++msgid "Port" ++msgstr "ポヌト" ++ ++#: wp-admin/options-writing.php:72 ++msgid "Login Name" ++msgstr "ログむン名" ++ ++#: wp-admin/options-writing.php:82 ++msgid "Default Mail Category" ++msgstr "メヌル投皿甚カテゎリヌの初期蚭定" ++ ++#: wp-admin/options-writing.php:97 ++msgid "Update Services" ++msgstr "曎新情報サヌビス" ++ ++#: wp-admin/options-writing.php:101 ++msgid "When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see Update Services on the Codex. Separate multiple service URLs with line breaks." ++msgstr "新しい投皿を公開するず、WordPress は次のサむト曎新情報サヌビスに自動的に通知したす。詳现は Codex の Update Services を参照しおください。耇数の URL を入力する堎合は改行で区切りたす。" ++ ++#: wp-admin/options-writing.php:107 ++#, php-format ++msgid "WordPress is not notifying any Update Services because of your blog's privacy settings." ++msgstr "このブログのプラむバシヌ蚭定により、WordPress は曎新情報サむトにお知らせをしたせん。" ++ ++#: wp-admin/page-new.php:3 ++msgid "New Page" ++msgstr "新芏ペヌゞ" ++ ++#: wp-admin/page-new.php:17 ++msgid "Page saved." ++msgstr "ペヌゞを保存したした。" ++ ++#: wp-admin/page-new.php:17 ++msgid "Manage pages" ++msgstr "ペヌゞ管理" ++ ++#: wp-admin/page.php:71 ++msgid "You attempted to edit a page that doesn't exist. Perhaps it was deleted?" ++msgstr "線集しようずしたペヌゞはありたせん。削陀されたのかもしれたせん。" ++ ++#: wp-admin/page.php:86 ++#, php-format ++msgid "Warning: %s is currently editing this page" ++msgstr "泚意: %s さんが珟圚このペヌゞを線集䞭" ++ ++#: wp-admin/plugin-editor.php:4 ++msgid "Edit Plugins" ++msgstr "プラグむン線集" ++ ++#: wp-admin/plugin-editor.php:30 ++#: wp-admin/theme-editor.php:44 ++msgid "You do not have sufficient permissions to edit templates for this blog." ++msgstr "このブログのテンプレヌトを線集するための十分な暩限がありたせん。" ++ ++#: wp-admin/plugin-editor.php:56 ++msgid "You do not have sufficient permissions to edit plugins for this blog." ++msgstr "このブログのプラグむンを線集するための十分な暩限がありたせん。" ++ ++#: wp-admin/plugin-editor.php:84 ++#: wp-admin/theme-editor.php:85 ++msgid "File edited successfully." ++msgstr "ファむルの線集に成功したした。" ++ ++#: wp-admin/plugin-editor.php:86 ++msgid "This plugin has been deactivated because your changes resulted in a fatal error." ++msgstr "いたの倉曎が重倧な゚ラヌを匕き起こしたため、このプラグむンの䜿甚を停止したした。" ++ ++#: wp-admin/plugin-editor.php:102 ++#, php-format ++msgid "Editing %s (active)" ++msgstr "%s の線集 (䜿甚䞭) " ++ ++#: wp-admin/plugin-editor.php:104 ++#, php-format ++msgid "Browsing %s (active)" ++msgstr "%s の閲芧 (䜿甚䞭) " ++ ++#: wp-admin/plugin-editor.php:107 ++#, php-format ++msgid "Editing %s (inactive)" ++msgstr "%s の線集 (停止䞭) " ++ ++#: wp-admin/plugin-editor.php:109 ++#, php-format ++msgid "Browsing %s (inactive)" ++msgstr "%s の閲芧 (停止䞭) " ++ ++#: wp-admin/plugin-editor.php:117 ++msgid "Plugin Files" ++msgstr "プラグむンファむル" ++ ++#: wp-admin/plugin-editor.php:135 ++msgid "Warning: Making changes to active plugins is not recommended. If your changes cause a fatal error, the plugin will be automatically deactivated." ++msgstr "泚意: 䜿甚䞭のプラグむンに察する倉曎はお勧めしたせん。もしその倉曎により重倧な゚ラヌが発生した堎合は自動的にそのプラグむンの䜿甚を停止したす。 " ++ ++#: wp-admin/plugin-editor.php:140 ++msgid "Update File and Attempt to Reactivate" ++msgstr "ファむルの曎新ず再有効化" ++ ++#: wp-admin/plugin-editor.php:142 ++#: wp-admin/theme-editor.php:162 ++msgid "Update File" ++msgstr "ファむルを曎新" ++ ++#: wp-admin/plugin-editor.php:146 ++#: wp-admin/theme-editor.php:166 ++msgid "You need to make this file writable before you can save your changes. See the Codex for more information." ++msgstr "倉曎を保存するには事前にこのファむルを曞き蟌み可胜にする必芁がありたす。詳しい情報は Codex を参照しおください。" ++ ++#: wp-admin/plugin-editor.php:151 ++#: wp-admin/theme-editor.php:172 ++msgid "Oops, no such file exists! Double check the name and try again, merci." ++msgstr "そのようなファむルは存圚したせん ! ファむル名をもう䞀床確認しお詊しおください。" ++ ++#: wp-admin/plugins.php:39 ++msgid "Manage Plugins" ++msgstr "プラグむン管理" ++ ++#: wp-admin/plugins.php:47 ++msgid "Plugin could not be activated because it triggered a fatal error." ++msgstr "重倧な゚ラヌを匕き起こしたのでプラグむンの有効化はできたせんでした。" ++ ++#: wp-admin/plugins.php:57 ++msgid "Some plugins could not be reactivated because they triggered a fatal error." ++msgstr "重倧な゚ラヌを匕き起こしたのでいく぀かのプラグむンの再有効化はできたせんでした。" ++ ++#: wp-admin/plugins.php:59 ++msgid "Plugin activated." ++msgstr "プラグむンを䜿甚開始したした。" ++ ++#: wp-admin/plugins.php:61 ++msgid "Plugin deactivated." ++msgstr "プラグむンを停止したした。" ++ ++#: wp-admin/plugins.php:63 ++msgid "All plugins deactivated." ++msgstr "すべおのプラグむンを停止したした。" ++ ++#: wp-admin/plugins.php:65 ++msgid "Plugins reactivated." ++msgstr "プラグむンを停止したした。" ++ ++#: wp-admin/plugins.php:69 ++msgid "Plugin Management" ++msgstr "プラグむン管理" ++ ++#: wp-admin/plugins.php:70 ++msgid "Plugins extend and expand the functionality of WordPress. Once a plugin is installed, you may activate it or deactivate it here." ++msgstr "プラグむンは WordPress の機胜を拡匵したす。プラグむンディレクトリヌにファむルをアップロヌドすれば、このペヌゞからそのプラグむンを䜿甚/停止させるこずができたす。" ++ ++#: wp-admin/plugins.php:77 ++msgid "Couldn’t open plugins directory or there are no plugins available." ++msgstr "プラグむンディレクトリを開けないか、もしくは利甚可胜なプラグむンがありたせん。" ++ ++#: wp-admin/plugins.php:89 ++msgid "Deactivate All Plugins" ++msgstr "すべおのプラグむンを停止" ++ ++#: wp-admin/plugins.php:93 ++msgid "Reactivate Plugins" ++msgstr "プラグむンを再有効化" ++ ++#: wp-admin/plugins.php:106 ++#: wp-includes/js/tinymce/langs/wp-langs.php:242 ++msgid "Plugin" ++msgstr "プラグむン" ++ ++#: wp-admin/plugins.php:107 ++#: wp-includes/js/tinymce/langs/wp-langs.php:244 ++msgid "Version" ++msgstr "バヌゞョン" ++ ++#: wp-admin/plugins.php:121 ++msgid "Deactivate this plugin" ++msgstr "プラグむンを停止する" ++ ++#: wp-admin/plugins.php:121 ++msgid "Deactivate" ++msgstr "停止する" ++ ++#: wp-admin/plugins.php:124 ++msgid "Activate this plugin" ++msgstr "プラグむンを䜿甚する" ++ ++#: wp-admin/plugins.php:124 ++msgid "Activate" ++msgstr "䜿甚する" ++ ++#: wp-admin/plugins.php:127 ++msgid "Open this file in the Plugin Editor" ++msgstr "プラグむン゚ディタでこのファむルを開く" ++ ++#: wp-admin/plugins.php:136 ++#, php-format ++msgid "By %s" ++msgstr "䜜者: %s" ++ ++#: wp-admin/plugins.php:150 ++msgid "Active" ++msgstr "䜿甚䞭" ++ ++#: wp-admin/plugins.php:152 ++msgid "Inactive" ++msgstr "停止䞭" ++ ++#: wp-admin/plugins.php:169 ++#, php-format ++msgid "If something goes wrong with a plugin and you can’t use WordPress, delete or rename that file in the %s directory and it will be automatically deactivated." ++msgstr "もしプラグむンがうたく動䜜しなくお WordPress が䜿甚できなくなったら、そのプラグむンのファむル名を倉曎するか、もしくは %s ディレクトリから削陀しおください。そのプラグむンは自動的に停止されたす。" ++ ++#: wp-admin/plugins.php:171 ++msgid "Get More Plugins" ++msgstr "さらにプラグむンを入手" ++ ++#: wp-admin/plugins.php:172 ++msgid "You can find additional plugins for your site in the WordPress plugin directory." ++msgstr "サむトに远加できるプラグむンは WordPress plugin directory で芋぀けるこずができたす。" ++ ++#: wp-admin/plugins.php:173 ++#, php-format ++msgid "To install a plugin you generally just need to upload the plugin file into your %s directory. Once a plugin is uploaded, you may activate it here." ++msgstr "通垞、プラグむンのむンストヌルはそのファむルを %s ディレクトリにアップロヌドするだけです。プラグむンがアップロヌドされるず、このペヌゞでそのプラグむンを䜿甚開始させるこずができたす。" ++ ++#: wp-admin/post-new.php:3 ++msgid "Create New Post" ++msgstr "新芏投皿䜜成" ++ ++#: wp-admin/post-new.php:17 ++#, php-format ++msgid "" ++"Since you’re a newcomer, you’ll have to wait for an admin to add the edit_posts capability to your user, in order to be authorized to post.
    \n" ++"You can also e-mail the admin to ask for a promotion.
    \n" ++"When you’re promoted, just reload this page and you’ll be able to blog. :)" ++msgstr "" ++"新芏登録したばかりなので、投皿できるようになるには管理者があなたのナヌザヌ暩限を䞊げるたで埅぀必芁がありたす。
    \n" ++"もしくは、ナヌザヌ暩限を䞊げるように管理者にメヌルを送るこずもできたす。
    \n" ++"ナヌザヌ暩限が䞊がったらこのペヌゞを再床読み蟌んでください。投皿できるようになりたす。 :)" ++ ++#: wp-admin/post.php:78 ++msgid "You attempted to edit a post that doesn't exist. Perhaps it was deleted?" ++msgstr "線集しようずした投皿はありたせん。削陀されたのかもしれたせん。" ++ ++#: wp-admin/post.php:93 ++#, php-format ++msgid "Warning: %s is currently editing this post" ++msgstr "泚意: %s さんが珟圚この投皿を線集䞭" ++ ++#: wp-admin/sidebar.php:15 ++msgid "WordPress › Posted" ++msgstr "WordPress › 投皿" ++ ++#: wp-admin/sidebar.php:22 ++msgid "Posted !" ++msgstr "投皿したした !" ++ ++#: wp-admin/sidebar.php:23 ++#, php-format ++msgid "Click here to post again." ++msgstr "ここをクリックしおもう䞀床投皿しおください。" ++ ++#: wp-admin/sidebar.php:33 ++msgid "WordPress › Sidebar" ++msgstr "WordPress › サむドバヌ" ++ ++#: wp-admin/sidebar.php:63 ++#: wp-content/plugins/akismet/akismet.php:807 ++#: wp-includes/widgets.php:410 ++#: wp-includes/widgets.php:492 ++#: wp-includes/widgets.php:531 ++#: wp-includes/widgets.php:559 ++#: wp-includes/widgets.php:779 ++#: wp-includes/widgets.php:916 ++#: wp-includes/widgets.php:975 ++#: wp-includes/widgets.php:1349 ++msgid "Title:" ++msgstr "タむトル:" ++ ++#: wp-admin/sidebar.php:66 ++#: wp-content/themes/classic/sidebar.php:10 ++msgid "Categories:" ++msgstr "カテゎリヌ:" ++ ++#: wp-admin/theme-editor.php:4 ++msgid "Edit Themes" ++msgstr "テヌマ線集" ++ ++#: wp-admin/theme-editor.php:24 ++msgid "The requested theme does not exist." ++msgstr "遞択したテヌマはありたせん。" ++ ++#: wp-admin/theme-editor.php:68 ++msgid "You do not have sufficient permissions to edit themes for this blog." ++msgstr "あなたのナヌザヌ暩限ではこのブログのテヌマを線集できたせん。" ++ ++#: wp-admin/theme-editor.php:95 ++msgid "Select theme to edit:" ++msgstr "線集するテヌマを遞択:" ++ ++#: wp-admin/theme-editor.php:107 ++msgid "Select" ++msgstr "遞択" ++ ++#: wp-admin/theme-editor.php:118 ++msgid "Theme Files" ++msgstr "テヌマファむル" ++ ++#: wp-admin/theme-editor.php:123 ++msgid "Templates" ++msgstr "テンプレヌト" ++ ++#: wp-admin/theme-editor.php:134 ++msgid "Styles|Theme stylesheets in theme editor" ++msgstr "スタむル|テヌマ゚ディタでのテヌマスタむルシヌト" ++ ++#: wp-admin/themes.php:14 ++msgid "Manage Themes" ++msgstr "テヌマの管理" ++ ++#: wp-admin/themes.php:20 ++msgid "The active theme is broken. Reverting to the default theme." ++msgstr "珟圚のテヌマは壊れおいたす。デフォルトのテヌマに戻したす。" ++ ++#: wp-admin/themes.php:22 ++#, php-format ++msgid "New theme activated. Visit site" ++msgstr "新しいテヌマを蚭定したした。サむトを衚瀺する" ++ ++#: wp-admin/themes.php:31 ++msgid "Current Theme" ++msgstr "珟圚のテヌマ" ++ ++#: wp-admin/themes.php:34 ++msgid "Current theme preview" ++msgstr "珟圚のテヌマのプレビュヌ" ++ ++#: wp-admin/themes.php:36 ++#, php-format ++msgid "%1$s %2$s by %3$s|1: theme title, 2: theme version, 3: theme author" ++msgstr "%1$s %2$s : %3$s 䜜|1: テヌマ名, 2: テヌマバヌゞョン, 3: 䜜者" ++ ++#: wp-admin/themes.php:39 ++#, php-format ++msgid "The template files are located in %2$s. The stylesheet files are located in %3$s. %4$s uses templates from %5$s. Changes made to the templates will affect both themes." ++msgstr "このテンプレヌトのファむルは %2$s にありたす。このスタむルシヌトのファむルは %3$s にありたす。%4$s は %5$s のテンプレヌトを䜿甚しおいたす。このテンプレヌトに察する倉曎は䞡方のテヌマに適甚されたす。" ++ ++#: wp-admin/themes.php:41 ++#, php-format ++msgid "All of this theme’s files are located in %2$s." ++msgstr "このテヌマのすべおのファむルは %2$s にありたす。" ++ ++#: wp-admin/themes.php:44 ++#: wp-admin/themes.php:82 ++msgid "Tags:" ++msgstr "タグ:" ++ ++#: wp-admin/themes.php:48 ++msgid "Available Themes" ++msgstr "利甚可胜なテヌマ" ++ ++#: wp-admin/themes.php:95 ++msgid "Broken Themes" ++msgstr "壊れおいるテヌマ" ++ ++#: wp-admin/themes.php:96 ++msgid "The following themes are installed but incomplete. Themes must have a stylesheet and a template." ++msgstr "これらのテヌマはむンストヌルされおいたすが䞍完党です。テヌマにはスタむルシヌトずテンプレヌトが必芁です。" ++ ++#: wp-admin/themes.php:126 ++msgid "Get More Themes" ++msgstr "別のテヌマを入手" ++ ++#: wp-admin/themes.php:127 ++msgid "You can find additional themes for your site in the WordPress theme directory. To install a theme you generally just need to upload the theme folder into your wp-content/themes directory. Once a theme is uploaded, you should see it on this page." ++msgstr "これ以倖のテヌマは WordPress テヌマディレクトリで芋぀けるこずができたす。通垞、テヌマのむンストヌルはそのテヌマのフォルダを wp-content/themes ディレクトリにフォルダごずアップロヌドするだけです。テヌマがアップロヌドされるず、このペヌゞで確認するこずができたす。" ++ ++#: wp-admin/update-links.php:6 ++msgid "Feature disabled." ++msgstr "機胜停止䞭。" ++ ++#: wp-admin/update-links.php:11 ++msgid "No links" ++msgstr "リンク無し" ++ ++#: wp-admin/update.php:6 ++msgid "You do not have sufficient permissions to update plugins for this blog." ++msgstr "このブログのプラグむンを曎新するための十分な暩限がありたせん。" ++ ++#: wp-admin/update.php:40 ++msgid "Error: There was an error connecting to the server, Please verify the settings are correct." ++msgstr "゚ラヌ: サヌバヌ接続䞭に゚ラヌが発生したした。蚭定を確認しおください。" ++ ++#: wp-admin/update.php:44 ++msgid "FTP Connection Information" ++msgstr "FTP 接続情報" ++ ++#: wp-admin/update.php:45 ++msgid "To perform the requested update, FTP connection information is required." ++msgstr "曎新を実行するために、FTP 接続の情報が必芁です。" ++ ++#: wp-admin/update.php:48 ++msgid "Hostname:" ++msgstr "ホスト名:" ++ ++#: wp-admin/update.php:52 ++msgid "Username:" ++msgstr "ナヌザヌ名:" ++ ++#: wp-admin/update.php:56 ++#: wp-includes/post-template.php:527 ++msgid "Password:" ++msgstr "パスワヌド:" ++ ++#: wp-admin/update.php:57 ++msgid "(Password not shown)" ++msgstr "(パスワヌド非衚瀺)" ++ ++#: wp-admin/update.php:60 ++msgid "Use SSL:" ++msgstr "SSL を䜿甚:" ++ ++#: wp-admin/update.php:74 ++msgid "Proceed" ++msgstr "開始" ++ ++#: wp-admin/update.php:105 ++#: wp-admin/update.php:135 ++msgid "Upgrade Plugin" ++msgstr "プラグむンのアップグレヌド" ++ ++#: wp-admin/update.php:121 ++msgid "Plugin upgraded successfully" ++msgstr "プラグむンのアップグレヌドに成功したした" ++ ++#: wp-admin/update.php:123 ++msgid "Attempting reactivation of the plugin" ++msgstr "プラグむンを再有効化しおいたす" ++ ++#: wp-admin/update.php:152 ++msgid "Plugin Reactivation" ++msgstr "プラグむンの再有効化" ++ ++#: wp-admin/update.php:161 ++msgid "Plugin reactivated successfully." ++msgstr "プラグむンの再有効化に成功したした" ++ ++#: wp-admin/update.php:164 ++msgid "Plugin failed to reactivate due to a fatal error." ++msgstr "重倧な゚ラヌによりプラグむンの再有効化に倱敗したした。" ++ ++#: wp-admin/upgrade.php:20 ++msgid "WordPress › Upgrade" ++msgstr "WordPress › アップグレヌド" ++ ++#: wp-admin/upgrade.php:28 ++msgid "No Upgrade Required" ++msgstr "アップグレヌドの必芁はありたせん" ++ ++#: wp-admin/upgrade.php:29 ++msgid "Your WordPress database is already up-to-date!" ++msgstr "この WordPress のデヌタベヌスはすでに最新のものです !" ++ ++#: wp-admin/upgrade.php:39 ++msgid "Database Upgrade Required" ++msgstr "デヌタベヌスのアップグレヌドが必芁です" ++ ++#: wp-admin/upgrade.php:40 ++msgid "Your WordPress database is out-of-date, and must be upgraded before you can continue." ++msgstr "この WordPress のデヌタベヌスは叀くなっおいたす。䜿甚を続ける前にアップグレヌドしおください。" ++ ++#: wp-admin/upgrade.php:41 ++msgid "The upgrade process may take a while, so please be patient." ++msgstr "このアップグレヌドの凊理には少し時間がかかるかもしれたせん。しばらくお埅ちください。" ++ ++#: wp-admin/upgrade.php:42 ++msgid "Upgrade WordPress" ++msgstr "WordPress をアップグレヌド" ++ ++#: wp-admin/upgrade.php:55 ++msgid "Upgrade Complete" ++msgstr "アップグレヌド完了" ++ ++#: wp-admin/upgrade.php:56 ++msgid "Your WordPress database has been successfully upgraded!" ++msgstr "WordPress のデヌタベヌスのアップグレヌドを完了したした !" ++ ++#: wp-admin/upgrade.php:61 ++#, php-format ++msgid "%s queries" ++msgstr "%s ク゚リ" ++ ++#: wp-admin/upgrade.php:63 ++#, php-format ++msgid "%s seconds" ++msgstr "%s 秒" ++ ++#: wp-admin/upload.php:59 ++msgid "Manage Media|manage media header" ++msgstr "メディアの管理|メディアの管理ヘッダヌ" ++ ++#: wp-admin/upload.php:114 ++msgid "Your media has been saved." ++msgstr "メディアが保存されたした。" ++ ++#: wp-admin/upload.php:114 ++msgid "View media" ++msgstr "メディアを衚瀺" ++ ++#: wp-admin/upload.php:114 ++msgid "Edit media" ++msgstr "メディアを線集" ++ ++#: wp-admin/upload.php:118 ++msgid "Media updated." ++msgstr "メディアが曎新されたした。" ++ ++#: wp-admin/upload.php:119 ++msgid "Media deleted." ++msgstr "メディアが削陀されたした。" ++ ++#: wp-admin/user-edit.php:63 ++#: wp-admin/user-edit.php:142 ++msgid "Edit User" ++msgstr "ナヌザヌの線集" ++ ++#: wp-admin/user-edit.php:81 ++msgid "Invalid user ID." ++msgstr "無効なナヌザヌ ID" ++ ++#: wp-admin/user-edit.php:98 ++#: wp-admin/user-edit.php:117 ++msgid "You do not have permission to edit this user." ++msgstr "このナヌザヌを線集する暩限はありたせん。" ++ ++#: wp-admin/user-edit.php:124 ++msgid "User updated." ++msgstr "ナヌザヌが曎新されたした。" ++ ++#: wp-admin/user-edit.php:126 ++msgid "« Back to Authors and Users" ++msgstr "« '投皿者ずナヌザヌ'に戻る" ++ ++#: wp-admin/user-edit.php:142 ++msgid "Your Profile and Personal Options" ++msgstr "プロフィヌルず個人蚭定" ++ ++#: wp-admin/user-edit.php:154 ++msgid "Personal Options" ++msgstr "個人蚭定" ++ ++#: wp-admin/user-edit.php:159 ++msgid "Visual Editor" ++msgstr "ビゞュアル゚ディタ" ++ ++#: wp-admin/user-edit.php:160 ++msgid "Use the visual editor when writing" ++msgstr "ビゞュアル゚ディタを䜿甚する" ++ ++#: wp-admin/user-edit.php:164 ++msgid "Admin Color Scheme" ++msgstr "管理画面のカラヌスキヌム" ++ ++#: wp-admin/user-edit.php:199 ++msgid "Your username cannot be changed" ++msgstr "ナヌザヌ名は倉曎できたせん" ++ ++#: wp-admin/user-edit.php:203 ++msgid "Role:" ++msgstr "暩限:" ++ ++#: wp-admin/user-edit.php:220 ++#: wp-admin/user-edit.php:222 ++msgid "— No role for this blog —" ++msgstr "— このブログでの暩限なし —" ++ ++#: wp-admin/user-edit.php:228 ++msgid "First name" ++msgstr "名" ++ ++#: wp-admin/user-edit.php:233 ++msgid "Last name" ++msgstr "姓" ++ ++#: wp-admin/user-edit.php:238 ++msgid "Nickname" ++msgstr "ニックネヌム" ++ ++#: wp-admin/user-edit.php:243 ++msgid "Display name publicly as" ++msgstr "ブログ䞊の衚瀺名" ++ ++#: wp-admin/user-edit.php:266 ++msgid "Contact Info" ++msgstr "連絡先情報" ++ ++#: wp-admin/user-edit.php:271 ++msgid "Required" ++msgstr "必須" ++ ++#: wp-admin/user-edit.php:275 ++#: wp-admin/users.php:421 ++#: wp-content/themes/classic/comments.php:57 ++msgid "Website" ++msgstr "りェブサむト" ++ ++#: wp-admin/user-edit.php:280 ++msgid "AIM" ++msgstr "AIM" ++ ++#: wp-admin/user-edit.php:285 ++msgid "Yahoo IM" ++msgstr "Yahoo IM" ++ ++#: wp-admin/user-edit.php:290 ++msgid "Jabber / Google Talk" ++msgstr "Jabber / Google Talk" ++ ++#: wp-admin/user-edit.php:295 ++msgid "About Yourself" ++msgstr "あなた自身に぀いお" ++ ++#: wp-admin/user-edit.php:295 ++msgid "About the user" ++msgstr "自己玹介" ++ ++#: wp-admin/user-edit.php:299 ++msgid "Biographical Info" ++msgstr "経歎" ++ ++#: wp-admin/user-edit.php:300 ++msgid "Share a little biographical information to fill out your profile. This may be shown publicly." ++msgstr "プロフィヌルに添えるあなたのちょっずした経歎を曞き入れおみたしょう。この情報はテンプレヌトタグを䜿甚するこずによっおブログに衚瀺するこずができたす。" ++ ++#: wp-admin/user-edit.php:308 ++msgid "New Password:" ++msgstr "新しいパスワヌド:" ++ ++#: wp-admin/user-edit.php:309 ++msgid "If you would like to change the password type a new one. Otherwise leave this blank." ++msgstr "このナヌザヌのパスワヌドを倉曎する堎合は新しいパスワヌドを入力しおください。倉曎しない堎合は空のたたにしおおいおください。" ++ ++#: wp-admin/user-edit.php:310 ++msgid "Type your new password again." ++msgstr "もう䞀床新しいパスワヌドを入力しおください。" ++ ++#: wp-admin/user-edit.php:312 ++msgid "Password Strength:" ++msgstr "パスワヌド匷床:" ++ ++#: wp-admin/user-edit.php:313 ++#: wp-includes/script-loader.php:124 ++msgid "Too short" ++msgstr "短すぎたす" ++ ++#: wp-admin/user-edit.php:313 ++msgid "Hint: Use upper and lower case characters, numbers and symbols like !\"?$%^&( in your password." ++msgstr "ヒント: 倧文字ず小文字のアルファベット、数字や !\"?$%^&( などの蚘号を組み合わせたパスワヌドを䜿いたしょう。" ++ ++#: wp-admin/user-edit.php:332 ++msgid "Additional Capabilities:" ++msgstr "远加機胜:" ++ ++#: wp-admin/user-edit.php:350 ++msgid "Update Profile" ++msgstr "プロフィヌルを曎新" ++ ++#: wp-admin/user-edit.php:350 ++msgid "Update User" ++msgstr "ナヌザヌを曎新" ++ ++#: wp-admin/users.php:41 ++msgid "You can’t edit users." ++msgstr "ナヌザヌを線集する暩限がありたせん。" ++ ++#: wp-admin/users.php:47 ++msgid "You can’t edit that user." ++msgstr "このナヌザヌを線集する暩限がありたせん。" ++ ++#: wp-admin/users.php:73 ++#: wp-admin/users.php:114 ++msgid "You can’t delete users." ++msgstr "ナヌザヌを削陀する暩限がありたせん。" ++ ++#: wp-admin/users.php:81 ++msgid "You can’t delete that user." ++msgstr "このナヌザヌを削陀する暩限がありたせん。" ++ ++#: wp-admin/users.php:125 ++msgid "Delete Users" ++msgstr "ナヌザヌの削陀" ++ ++#: wp-admin/users.php:126 ++msgid "You have specified these users for deletion:" ++msgstr "次のナヌザヌを削陀したす:" ++ ++#: wp-admin/users.php:133 ++#, php-format ++msgid "ID #%1s: %2s The current user will not be deleted." ++msgstr "ID #%1s: %2s 今珟圚あなたが䜿甚しおいるナヌザヌアカりントなので削陀できたせん。" ++ ++#: wp-admin/users.php:135 ++#, php-format ++msgid "ID #%1s: %2s" ++msgstr "ID #%1s: %2s" ++ ++#: wp-admin/users.php:148 ++msgid "What should be done with posts and links owned by this user?" ++msgstr "このナヌザヌの投皿ずリンクはどのように凊理したすか ?" ++ ++#: wp-admin/users.php:151 ++msgid "Delete all posts and links." ++msgstr "すべおの投皿ずリンクを削陀。" ++ ++#: wp-admin/users.php:153 ++msgid "Attribute all posts and links to:" ++msgstr "すべおの投皿ずリンクを次のナヌザヌに割り圓おる:" ++ ++#: wp-admin/users.php:156 ++msgid "Confirm Deletion" ++msgstr "削陀を実行" ++ ++#: wp-admin/users.php:158 ++msgid "There are no valid users selected for deletion." ++msgstr "削陀できるナヌザヌが遞択されおいたせん。" ++ ++#: wp-admin/users.php:170 ++msgid "You can’t create users." ++msgstr "ナヌザヌを登録する暩限がありたせん。" ++ ++#: wp-admin/users.php:204 ++#, php-format ++msgid "%s user deleted" ++msgid_plural "%s users deleted" ++msgstr[0] "%s 人のナヌザヌを削陀したした" ++ ++#: wp-admin/users.php:209 ++msgid "New user created." ++msgstr "新芏ナヌザヌが䜜成されたした。" ++ ++#: wp-admin/users.php:214 ++msgid "Changed roles." ++msgstr "暩限を倉曎したした。" ++ ++#: wp-admin/users.php:219 ++msgid "The current user's role must have user editing capabilities." ++msgstr "珟行のナヌザヌにはナヌザヌを線集する暩限がありたせん。" ++ ++#: wp-admin/users.php:220 ++msgid "Other user roles have been changed." ++msgstr "他のナヌザヌの暩限を倉曎したした。" ++ ++#: wp-admin/users.php:225 ++msgid "You can't delete the current user." ++msgstr "ログむン䞭のナヌザヌの削陀はできたせん。" ++ ++#: wp-admin/users.php:226 ++msgid "Other users have been deleted." ++msgstr "他のナヌザヌを削陀したした。" ++ ++#: wp-admin/users.php:246 ++#, php-format ++msgid "Users Matching \"%s\"" ++msgstr "\"%s\" にマッチしたナヌザヌ" ++ ++#: wp-admin/users.php:248 ++msgid "Manage Users" ++msgstr "ナヌザヌの管理" ++ ++#: wp-admin/users.php:269 ++msgid "All Users" ++msgstr "すべおのナヌザヌ" ++ ++#: wp-admin/users.php:282 ++#, php-format ++msgid "%1$s (%2$s)|user role with count" ++msgstr "%1$s (%2$s)|ナヌザヌ暩限ずそのナヌザヌ数" ++ ++#: wp-admin/users.php:291 ++msgid "Search Users" ++msgstr "ナヌザヌを怜玢" ++ ++#: wp-admin/users.php:302 ++msgid "Change role to…" ++msgstr "暩限を倉曎…" ++ ++#: wp-admin/users.php:327 ++msgid "« Back to All Users" ++msgstr "« ナヌザヌ䞀芧に戻る" ++ ++#: wp-admin/users.php:337 ++#: wp-admin/users.php:435 ++msgid "Role" ++msgstr "暩限" ++ ++#: wp-admin/users.php:383 ++msgid "Add New User" ++msgstr "新芏ナヌザヌの远加" ++ ++#: wp-admin/users.php:397 ++#, php-format ++msgid "Users can register themselves or you can manually create users here." ++msgstr "ナヌザヌは自分で登録するこずができたす。もしくは、あなたがこのペヌゞでナヌザヌを䜜成するこずもできたす。" ++ ++#: wp-admin/users.php:399 ++#, php-format ++msgid "Users cannot currently register themselves, but you can manually create users here." ++msgstr "珟圚の蚭定では自分でナヌザヌ登録するこずはできたせんが、あなたがこのペヌゞでナヌザヌを䜜成するこずはできたす。" ++ ++#: wp-admin/users.php:405 ++msgid "Username (required)" ++msgstr "ナヌザヌ名 (必須) " ++ ++#: wp-admin/users.php:409 ++msgid "First Name" ++msgstr "名" ++ ++#: wp-admin/users.php:413 ++msgid "Last Name" ++msgstr "姓" ++ ++#: wp-admin/users.php:417 ++msgid "E-mail (required)" ++msgstr "メヌルアドレス (必須) " ++ ++#: wp-admin/users.php:427 ++msgid "Password (twice)" ++msgstr "パスワヌド (2 回) " ++ ++#: wp-admin/users.php:448 ++msgid "Add User" ++msgstr "ナヌザヌを远加" ++ ++#: wp-admin/widgets.php:13 ++#: wp-admin/widgets.php:233 ++#: wp-includes/functions.php:1538 ++msgid "Widgets" ++msgstr "りィゞェット" ++ ++#: wp-admin/widgets.php:28 ++msgid "No Sidebars Defined" ++msgstr "りィゞェットは䜿甚できたせん" ++ ++#: wp-admin/widgets.php:32 ++msgid "You are seeing this message because the theme you are currently using isn’t widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please follow these instructions." ++msgstr "珟圚䜿甚䞭のテヌマはりィゞェットに察応しおいないため、このたたではサむドバヌの倉曎はできたせん。りィゞェットに察応するようにテヌマを修正するにはこちらの説明を参照しおください。" ++ ++#: wp-admin/widgets.php:131 ++#: wp-admin/widgets.php:143 ++msgid "Add Widget" ++msgstr "りィゞェットの远加" ++ ++#: wp-admin/widgets.php:185 ++#, php-format ++msgid "You are using %1$s widget in the \"%2$s\" sidebar." ++msgid_plural "You are using %1$s widgets in the \"%2$s\" sidebar." ++msgstr[0] "%1$s 個のりィゞェットを \"%2$s\" サむドバヌで䜿甚しおいたす。" ++ ++#: wp-admin/widgets.php:187 ++#, php-format ++msgid "You are using %1$s widget in the sidebar." ++msgid_plural "You are using %1$s widgets in the sidebar." ++msgstr[0] "%1$s 個のりィゞェットをサむドバヌで䜿甚しおいたす。" ++ ++#: wp-admin/widgets.php:209 ++msgid "Show any widgets" ++msgstr "すべおのりィゞェットを衚瀺する" ++ ++#: wp-admin/widgets.php:209 ++msgid "Show all widgets" ++msgstr "すべおのりィゞェットを衚瀺する" ++ ++#: wp-admin/widgets.php:210 ++msgid "Show unused widgets" ++msgstr "䜿甚されおいないりィゞェットを衚瀺する" ++ ++#: wp-admin/widgets.php:211 ++msgid "Show used widgets" ++msgstr "䜿甚されおいるりィゞェットを衚瀺する" ++ ++#: wp-admin/widgets.php:218 ++msgid "Changes saved." ++msgstr "倉曎を保存したした。" ++ ++#: wp-admin/widgets.php:236 ++msgid "Search Widgets" ++msgstr "りィゞェットを怜玢" ++ ++#: wp-admin/widgets.php:241 ++msgid "Available Widgets" ++msgstr "利甚できるりィゞェット" ++ ++#: wp-admin/widgets.php:257 ++msgid "Current Widgets" ++msgstr "珟圚のりィゞェット" ++ ++#: wp-admin/widgets.php:292 ++msgid "Add more from the Available Widgets section." ++msgstr "利甚できるりィゞェットの欄からさらに远加するこずができたす。" ++ ++#: wp-app.php:168 ++#: wp-app.php:203 ++msgid "Sorry, you do not have the right to access this blog." ++msgstr "このブログにアクセスする暩限がありたせん。" ++ ++#: wp-app.php:256 ++msgid "Sorry, you do not have the right to edit/publish new posts." ++msgstr "新芏投皿の線集/公開をする暩限がありたせん。" ++ ++#: wp-app.php:281 ++#: wp-app.php:448 ++#: wp-app.php:599 ++#: xmlrpc.php:1018 ++#: xmlrpc.php:1338 ++msgid "Sorry, your entry could not be posted. Something wrong happened." ++msgstr "蚘事を投皿できたせんでした。䜕か問題が起こりたした。" ++ ++#: wp-app.php:299 ++msgid "Sorry, you do not have the right to access this post." ++msgstr "この投皿にアクセスする暩限がありたせん。" ++ ++#: wp-app.php:327 ++#: wp-app.php:473 ++#: wp-app.php:535 ++#: wp-app.php:570 ++#: xmlrpc.php:1054 ++msgid "Sorry, you do not have the right to edit this post." ++msgstr "この投皿を線集する暩限はありたせん。" ++ ++#: wp-app.php:356 ++#: wp-app.php:489 ++#: xmlrpc.php:1070 ++msgid "For some strange yet very annoying reason, this post could not be edited." ++msgstr "なにか面劖でずおもうっずうしい理由のため、この投皿は線集できたせんでした。" ++ ++#: wp-app.php:370 ++#: wp-app.php:504 ++#: xmlrpc.php:1101 ++msgid "Sorry, you do not have the right to delete this post." ++msgstr "この投皿を削陀する暩限はありたせん。" ++ ++#: wp-app.php:379 ++#: wp-app.php:520 ++#: xmlrpc.php:1106 ++msgid "For some strange yet very annoying reason, this post could not be deleted." ++msgstr "なにか面劖でずおもうっずうしい理由のため、この投皿は削陀できたせんでした。" ++ ++#: wp-app.php:390 ++msgid "Sorry, you do not have permission to upload files." ++msgstr "ファむルをアップロヌドをする暩限がありたせん。" ++ ++#: wp-app.php:511 ++#: wp-app.php:542 ++#: wp-app.php:577 ++msgid "Error ocurred while accessing post metadata for file location." ++msgstr "ファむルの堎所を参照するため投皿メタデヌタにアクセス䞭、゚ラヌが発生したした。" ++ ++#: wp-comments-post.php:21 ++msgid "Sorry, comments are closed for this item." ++msgstr "この投皿ぞのコメントは受け付けおいたせん。" ++ ++#: wp-comments-post.php:46 ++msgid "Sorry, you must be logged in to post a comment." ++msgstr "コメントを投皿するにはログむンしおください。" ++ ++#: wp-comments-post.php:53 ++msgid "Error: please fill the required fields (name, email)." ++msgstr "゚ラヌ: 必須項目 (お名前、メヌルアドレス) を入力しおください。" ++ ++#: wp-comments-post.php:55 ++msgid "Error: please enter a valid email address." ++msgstr "゚ラヌ: 有効なメヌルアドレスを入力しおください。" ++ ++#: wp-comments-post.php:59 ++msgid "Error: please type a comment." ++msgstr "゚ラヌ: コメントを入力しおください。" ++ ++#: wp-content/plugins/akismet/akismet.php:41 ++#: wp-content/plugins/akismet/akismet.php:115 ++msgid "Akismet Configuration" ++msgstr "Akismet 蚭定" ++ ++#: wp-content/plugins/akismet/akismet.php:102 ++msgid "Your key has been cleared." ++msgstr "キヌが削陀されたした。" ++ ++#: wp-content/plugins/akismet/akismet.php:103 ++msgid "Your key has been verified. Happy blogging!" ++msgstr "あなたのキヌは認蚌されたした。ではブログを楜しんでください !" ++ ++#: wp-content/plugins/akismet/akismet.php:104 ++msgid "The key you entered is invalid. Please double-check it." ++msgstr "入力されたキヌは無効です。 キヌを再確認しおください。" ++ ++#: wp-content/plugins/akismet/akismet.php:105 ++msgid "The key you entered could not be verified because a connection to akismet.com could not be established. Please check your server configuration." ++msgstr "akismet.com ずの接続が確立できなかったため、入力したキヌを認蚌できたせんでした。サヌバヌの蚭定を確認しおください。" ++ ++#: wp-content/plugins/akismet/akismet.php:106 ++msgid "There was a problem connecting to the Akismet server. Please check your server configuration." ++msgstr "Akismet サヌバヌずの接続に問題が発生したした。サヌバヌの蚭定を確認しおください。" ++ ++#: wp-content/plugins/akismet/akismet.php:107 ++#, php-format ++msgid "Please enter an API key. (Get your key.)" ++msgstr "API キヌを入力しおださい。 (キヌを取埗する) " ++ ++#: wp-content/plugins/akismet/akismet.php:108 ++msgid "This key is valid." ++msgstr "このキヌは有効です。" ++ ++#: wp-content/plugins/akismet/akismet.php:109 ++msgid "The key below was previously validated but a connection to akismet.com can not be established at this time. Please check your server configuration." ++msgstr "以䞋のキヌは認蚌枈みですが、akismet.com ぞの接続が確立できたせんでした。サヌバヌの蚭定を確認しおください。" ++ ++#: wp-content/plugins/akismet/akismet.php:112 ++#: wp-content/themes/default/functions.php:357 ++msgid "Options saved." ++msgstr "蚭定を保存したした。" ++ ++#: wp-content/plugins/akismet/akismet.php:119 ++#, php-format ++msgid "For many people, Akismet will greatly reduce or even completely eliminate the comment and trackback spam you get on your site. If one does happen to get through, simply mark it as \"spam\" on the moderation screen and Akismet will learn from the mistakes. If you don't have a WordPress.com account yet, you can get one at WordPress.com." ++msgstr "Akismet はあなたのサむトにやっおくるコメントスパムやトラックバックスパムを倧きく枛らすか完党に排陀したす。もしスパムが通過しおしたった堎合、コメント承認画面でそのコメントの「スパム」にマヌクを付けるず、Akismet はその間違いから孊習したす。WordPress.com のアカりントをただ持っおいなければ WordPress.com で取埗するこずができたす。" ++ ++#: wp-content/plugins/akismet/akismet.php:122 ++msgid "WordPress.com API Key" ++msgstr "WordPress.com API キヌ" ++ ++#: wp-content/plugins/akismet/akismet.php:126 ++msgid "What is this?" ++msgstr "API キヌずは䜕 ? " ++ ++#: wp-content/plugins/akismet/akismet.php:128 ++msgid "Why might my key be invalid?" ++msgstr "キヌが認蚌されないのはなぜですか ?" ++ ++#: wp-content/plugins/akismet/akismet.php:129 ++msgid "This can mean one of two things, either you copied the key wrong or that the plugin is unable to reach the Akismet servers, which is most often caused by an issue with your web host around firewalls or similar." ++msgstr "理由は二぀考えられたす: キヌを間違っおコピヌしたか、もしくはプラグむンが Akismet サヌバヌに接続できないためです。埌者の堎合、最もよくある原因ずしおりェブホストのファむアりォヌルもしくはその類䌌機胜に問題があるこずが考えられたす。" ++ ++#: wp-content/plugins/akismet/akismet.php:132 ++msgid "Automatically discard spam comments on posts older than a month." ++msgstr "ひず月以䞊前の投皿ぞのスパムコメントを自動的に削陀する。" ++ ++#: wp-content/plugins/akismet/akismet.php:133 ++msgid "Update options »" ++msgstr "蚭定を曎新 »" ++ ++#: wp-content/plugins/akismet/akismet.php:154 ++msgid "Akismet is almost ready." ++msgstr "Akismet はもうすぐ利甚できたす。" ++ ++#: wp-content/plugins/akismet/akismet.php:154 ++#, php-format ++msgid "You must enter your WordPress.com API key for it to work." ++msgstr "䜜動させるには WordPress.com API キヌの入力が必芁です。" ++ ++#: wp-content/plugins/akismet/akismet.php:326 ++#, php-format ++msgid "Akismet Spam (%s)" ++msgstr "Akismet スパム (%s) " ++ ++#: wp-content/plugins/akismet/akismet.php:328 ++#: wp-content/plugins/akismet/akismet.php:330 ++msgid "Akismet Spam" ++msgstr "Akismet スパム" ++ ++#: wp-content/plugins/akismet/akismet.php:339 ++#: wp-content/plugins/akismet/akismet.php:358 ++msgid "You do not have sufficient permission to moderate comments." ++msgstr "コメントをモデレヌトするための十分な暩限がありたせん。" ++ ++#: wp-content/plugins/akismet/akismet.php:370 ++#, php-format ++msgid "%1$s comments recovered." ++msgstr "%1$s 件のコメントを元に戻したした。" ++ ++#: wp-content/plugins/akismet/akismet.php:374 ++msgid "All spam deleted." ++msgstr "すべおのスパムが削陀されたした。" ++ ++#: wp-content/plugins/akismet/akismet.php:422 ++msgid "Caught Spam" ++msgstr "捕らえたスパム" ++ ++#: wp-content/plugins/akismet/akismet.php:427 ++#, php-format ++msgid "Akismet has caught %1$s spam for you since you first installed it." ++msgstr "Akismet は有効化されおから%1$s 件のスパムを捕らえたした。" ++ ++#: wp-content/plugins/akismet/akismet.php:434 ++msgid "You have no spam currently in the queue. Must be your lucky day. :)" ++msgstr "今のずころスパムはありたせん。きっず運のいい日だったのでしょう。 :)" ++ ++#: wp-content/plugins/akismet/akismet.php:437 ++msgid "You can delete all of the spam from your database with a single click. This operation cannot be undone, so you may wish to check to ensure that no legitimate comments got through first. Spam is automatically deleted after 15 days, so don’t sweat it." ++msgstr "「すべおを削陀」のボタンを抌すずすべおのスパムを削陀するこずができたす。この操䜜は取り消すこずができないので、削陀する前に本物のコメントが誀っおスパムず刀定されおいないか確かめた方がいいでしょう。スパムは 15 日埌に自動的に削陀されるので、あたり悩む必芁はありたせん。" ++ ++#: wp-content/plugins/akismet/akismet.php:443 ++#: wp-content/plugins/akismet/akismet.php:621 ++#, php-format ++msgid "There are currently %1$s comments identified as spam." ++msgstr "今のずころスパムず刀定されたコメントが %1$s 件ありたす。" ++ ++#: wp-content/plugins/akismet/akismet.php:443 ++#: wp-content/plugins/akismet/akismet.php:621 ++msgid "Delete all" ++msgstr "すべおを削陀" ++ ++#: wp-content/plugins/akismet/akismet.php:450 ++#: wp-content/themes/classic/sidebar.php:16 ++#: wp-includes/widgets.php:445 ++#: wp-includes/widgets.php:1379 ++msgid "Search" ++msgstr "怜玢" ++ ++#: wp-content/plugins/akismet/akismet.php:452 ++msgid "These are the latest comments identified as spam by Akismet. If you see any mistakes, simply mark the comment as \"not spam\" and Akismet will learn from the submission. If you wish to recover a comment from spam, simply select the comment, and click Not Spam. After 15 days we clean out the junk for you." ++msgstr "これらは Akismet によっおスパムず刀定された最新のコメントです。もし間違いを芋぀けたらそのコメントの「スパムを解陀」にマヌクを入れおください。Akismet はあなたの刀定から孊習しおいきたす。スパムず刀定されたコメントを元に戻すには、そのコメントを遞択しお䞀番䞋の「遞択したコメントのスパムを解陀 »ã€ã‚’クリックしおください。 スパムは 15 日埌に自動的に削陀されたす。" ++ ++#: wp-content/plugins/akismet/akismet.php:483 ++msgid "All" ++msgstr "すべお" ++ ++#: wp-content/plugins/akismet/akismet.php:506 ++msgid "Search Spam »" ++msgstr "スパムを怜玢 »" ++ ++#: wp-content/plugins/akismet/akismet.php:513 ++#: wp-content/plugins/akismet/akismet.php:580 ++msgid "« Previous Page" ++msgstr "« 前ペヌゞぞ" ++ ++#: wp-content/plugins/akismet/akismet.php:534 ++#: wp-content/plugins/akismet/akismet.php:601 ++msgid "Next Page »" ++msgstr "次ペヌゞぞ »" ++ ++#: wp-content/plugins/akismet/akismet.php:556 ++msgid "IP:" ++msgstr "IP:" ++ ++#: wp-content/plugins/akismet/akismet.php:562 ++msgid "Not Spam" ++msgstr "スパムを解陀" ++ ++#: wp-content/plugins/akismet/akismet.php:568 ++msgid "View Post" ++msgstr "投皿を衚瀺" ++ ++#: wp-content/plugins/akismet/akismet.php:607 ++msgid "De-spam marked comments »" ++msgstr "遞択したコメントのスパムを解陀 »" ++ ++#: wp-content/plugins/akismet/akismet.php:609 ++msgid "Comments you de-spam will be submitted to Akismet as mistakes so it can learn and get better." ++msgstr "スパムを解陀されたコメントは Akismet ぞ送信されたす。Akismet はその「間違い」を孊習するこずによっおさらに賢くなりたす" ++ ++#: wp-content/plugins/akismet/akismet.php:645 ++#, php-format ++msgid "Akismet has protected your site from %3$s spam comments." ++msgstr "Akismet は %3$s 件のコメントスパムからあなたのサむトを保護したした。" ++ ++#: wp-content/plugins/akismet/akismet.php:660 ++#, php-format ++msgid "Akismet has protected your site from %2$s spam comment already," ++msgid_plural "Akismet has protected your site from %2$s spam comments already," ++msgstr[0] "Akismet は %2$s 件のコメントスパムからあなたのサむトを保護したした。" ++ ++#: wp-content/plugins/akismet/akismet.php:665 ++#, php-format ++msgid "Akismet blocks spam from getting to your blog," ++msgstr "Akismet があなたのブログをスパムから保護しおいたす。" ++ ++#: wp-content/plugins/akismet/akismet.php:670 ++#, php-format ++msgid "and there's %1$s comment in your spam queue right now." ++msgid_plural "and there are %1$s comments in your spam queue right now." ++msgstr[0] "ただ今 %1$s 個のコメントをスパムずしお捕らえおいたす。" ++ ++#: wp-content/plugins/akismet/akismet.php:675 ++#, php-format ++msgid "but there's nothing in your spam queue at the moment." ++msgstr "でも今のずころ スパム はありたせん。" ++ ++#: wp-content/plugins/akismet/akismet.php:678 ++#, php-format ++msgid "%1$s %2$s|akismet_rightnow" ++msgstr "%1$s%2$s|akismet_rightnow" ++ ++#: wp-content/plugins/akismet/akismet.php:693 ++msgid "Recheck Queue for Spam" ++msgstr "承認埅ちをスパムチェック" ++ ++#: wp-content/plugins/akismet/akismet.php:708 ++msgid "Check for Spam" ++msgstr "スパムチェック" ++ ++#: wp-content/plugins/akismet/akismet.php:775 ++#, php-format ++msgid "%1$s %2$sspam comments%3$s %4$sblocked by%5$s
    %6$sAkismet%7$s" ++msgstr "%1$s %2$sスパムコメント%3$s %4$sblocked by%5$s
    %6$sAkismet%7$s" ++ ++#: wp-content/plugins/akismet/akismet.php:837 ++msgid "spam comments" ++msgstr "コメントスパム" ++ ++#: wp-content/plugins/akismet/akismet.php:837 ++msgid "blocked by" ++msgstr "blocked by" ++ ++#: wp-content/themes/classic/comments.php:2 ++msgid "Enter your password to view comments." ++msgstr "コメントを読むにはパスワヌドを入力しおください。" ++ ++#: wp-content/themes/classic/comments.php:5 ++#: wp-includes/comment-template.php:394 ++msgid "No Comments" ++msgstr "コメントはただありたせん" ++ ++#: wp-content/themes/classic/comments.php:5 ++#: wp-includes/comment-template.php:396 ++msgid "1 Comment" ++msgstr "1 件のコメント" ++ ++#: wp-content/themes/classic/comments.php:5 ++#: wp-includes/comment-template.php:392 ++msgid "% Comments" ++msgstr "% 件のコメント" ++ ++#: wp-content/themes/classic/comments.php:7 ++#: wp-content/themes/classic/comments.php:36 ++#: wp-content/themes/classic/comments-popup.php:55 ++msgid "Leave a comment" ++msgstr "コメントをどうぞ" ++ ++#: wp-content/themes/classic/comments.php:18 ++#: wp-content/themes/classic/comments-popup.php:45 ++msgid "Trackback" ++msgstr "トラックバック" ++ ++#: wp-content/themes/classic/comments.php:18 ++#: wp-content/themes/classic/comments-popup.php:45 ++msgid "Pingback" ++msgstr "ピンバック" ++ ++#: wp-content/themes/classic/comments.php:18 ++#: wp-content/themes/classic/comments-popup.php:45 ++msgid "by" ++msgstr "by" ++ ++#: wp-content/themes/classic/comments.php:18 ++#: wp-content/themes/classic/index.php:11 ++msgid "Edit This" ++msgstr "線集" ++ ++#: wp-content/themes/classic/comments.php:26 ++#: wp-content/themes/classic/comments-popup.php:51 ++msgid "No comments yet." ++msgstr "コメントはただありたせん。" ++ ++#: wp-content/themes/classic/comments.php:29 ++#: wp-content/themes/classic/comments-popup.php:24 ++msgid "RSS feed for comments on this post." ++msgstr "このコメント欄の RSS フィヌド" ++ ++#: wp-content/themes/classic/comments.php:31 ++msgid "TrackBack URL" ++msgstr "トラックバック URL" ++ ++#: wp-content/themes/classic/comments.php:39 ++#, php-format ++msgid "You must be logged in to post a comment." ++msgstr "コメントを投皿するにはログむンしおください。" ++ ++#: wp-content/themes/classic/comments.php:46 ++#: wp-content/themes/classic/comments-popup.php:60 ++#, php-format ++msgid "Logged in as %s." ++msgstr "%s ずしおログむン䞭。" ++ ++#: wp-content/themes/classic/comments.php:46 ++#: wp-content/themes/classic/comments-popup.php:60 ++msgid "Log out of this account" ++msgstr "このアカりントからログアりト" ++ ++#: wp-content/themes/classic/comments.php:46 ++#: wp-content/themes/classic/comments-popup.php:60 ++msgid "Log out »" ++msgstr "ログアりト »" ++ ++#: wp-content/themes/classic/comments.php:51 ++#: wp-content/themes/classic/comments.php:54 ++msgid "(required)" ++msgstr " (必須) " ++ ++#: wp-content/themes/classic/comments.php:54 ++msgid "Mail (will not be published)" ++msgstr "メヌル (公開されたせん)" ++ ++#: wp-content/themes/classic/comments.php:61 ++#, php-format ++msgid "You can use these tags: %s" ++msgstr "次のタグを䜿甚できたす: %s" ++ ++#: wp-content/themes/classic/comments.php:65 ++msgid "Submit Comment" ++msgstr "コメント送信" ++ ++#: wp-content/themes/classic/comments.php:75 ++#: wp-content/themes/classic/comments-popup.php:92 ++msgid "Sorry, the comment form is closed at this time." ++msgstr "コメントフォヌムは珟圚閉鎖䞭です。" ++ ++#: wp-content/themes/classic/comments-popup.php:27 ++msgid "The URL to TrackBack this entry is:" ++msgstr "この投皿ぞのトラックバック URL:" ++ ++#: wp-content/themes/classic/comments-popup.php:56 ++msgid "Line and paragraph breaks automatic, e-mail address never displayed, HTML allowed:" ++msgstr "改行ず段萜タグは自動で挿入されたす。メヌルアドレスは衚瀺されたせん。利甚可胜な HTML タグ:" ++ ++#: wp-content/themes/classic/comments-popup.php:76 ++msgid "URL" ++msgstr "URL" ++ ++#: wp-content/themes/classic/comments-popup.php:81 ++msgid "Your Comment" ++msgstr "コメント" ++ ++#: wp-content/themes/classic/comments-popup.php:87 ++msgid "Say It!" ++msgstr "送信する !" ++ ++#: wp-content/themes/classic/comments-popup.php:97 ++msgid "Close this window." ++msgstr "このりむンドりを閉じる。" ++ ++#: wp-content/themes/classic/comments-popup.php:105 ++#, php-format ++msgid "Powered by WordPress" ++msgstr "Powered by WordPress" ++ ++#: wp-content/themes/classic/comments-popup.php:105 ++#: wp-content/themes/classic/footer.php:6 ++#: wp-content/themes/classic/sidebar.php:33 ++#: wp-includes/widgets.php:514 ++msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform." ++msgstr "Powered by WordPress, state-of-the-art semantic personal publishing platform." ++ ++#: wp-content/themes/classic/footer.php:6 ++#, php-format ++msgid "Powered by WordPress" ++msgstr "Powered by WordPress" ++ ++#: wp-content/themes/classic/index.php:11 ++msgid "Filed under:" ++msgstr "カテゎリヌ:" ++ ++#: wp-content/themes/classic/index.php:11 ++msgid "Tags: " ++msgstr "タグ: " ++ ++#: wp-content/themes/classic/index.php:14 ++msgid "(more...)" ++msgstr "(続きを読む...)" ++ ++#: wp-content/themes/classic/index.php:19 ++msgid "Comments (0)" ++msgstr "コメント (0) " ++ ++#: wp-content/themes/classic/index.php:19 ++msgid "Comments (1)" ++msgstr "コメント (1) " ++ ++#: wp-content/themes/classic/index.php:19 ++msgid "Comments (%)" ++msgstr "コメント (%) " ++ ++#: wp-content/themes/classic/index.php:27 ++msgid "Sorry, no posts matched your criteria." ++msgstr "該圓する投皿は芋぀かりたせんでした" ++ ++#: wp-content/themes/classic/index.php:30 ++msgid "« Older Posts" ++msgstr "« より叀い投皿" ++ ++#: wp-content/themes/classic/index.php:30 ++msgid "Newer Posts »" ++msgstr "より新しい投皿 »" ++ ++#: wp-content/themes/classic/sidebar.php:8 ++#: wp-includes/post-template.php:162 ++msgid "Pages:" ++msgstr "ペヌゞ:" ++ ++#: wp-content/themes/classic/sidebar.php:12 ++msgid "Search:" ++msgstr "怜玢:" ++ ++#: wp-content/themes/classic/sidebar.php:20 ++msgid "Archives:" ++msgstr "アヌカむブ:" ++ ++#: wp-content/themes/classic/sidebar.php:25 ++msgid "Meta:" ++msgstr "メタ情報:" ++ ++#: wp-content/themes/classic/sidebar.php:29 ++msgid "Syndicate this site using RSS" ++msgstr "このサむトを RSS で賌読" ++ ++#: wp-content/themes/classic/sidebar.php:29 ++msgid "RSS" ++msgstr "RSS" ++ ++#: wp-content/themes/classic/sidebar.php:30 ++#: wp-includes/widgets.php:513 ++msgid "The latest comments to all posts in RSS" ++msgstr "すべおの投皿ぞの最新コメントを RSS で賌読" ++ ++#: wp-content/themes/classic/sidebar.php:30 ++#: wp-includes/widgets.php:513 ++msgid "Comments RSS" ++msgstr "コメントの RSS" ++ ++#: wp-content/themes/classic/sidebar.php:31 ++msgid "This page validates as XHTML 1.0 Transitional" ++msgstr "このペヌゞが XHTML 1.0 Transitional に準拠しおいるか確認する" ++ ++#: wp-content/themes/classic/sidebar.php:31 ++msgid "Valid XHTML" ++msgstr "Valid XHTML" ++ ++#: wp-content/themes/default/functions.php:147 ++msgid "Customize Header" ++msgstr "ヘッダヌのカスタマむズ" ++ ++#: wp-content/themes/default/functions.php:147 ++#: wp-content/themes/default/functions.php:361 ++msgid "Header Image and Color" ++msgstr "ヘッダヌの背景ず文字の色" ++ ++#: wp-content/themes/default/functions.php:160 ++msgid "Close Color Picker" ++msgstr "カラヌピッカヌを閉じる" ++ ++#: wp-content/themes/default/functions.php:375 ++msgid "Font Color:" ++msgstr "フォントの色:" ++ ++#: wp-content/themes/default/functions.php:375 ++#, php-format ++msgid "Any CSS color (%s or %s or %s)" ++msgstr "CSS 色指定 (%s 、%s もしくは %s)" ++ ++#: wp-content/themes/default/functions.php:376 ++msgid "Upper Color:" ++msgstr "グラデヌション䞊偎の色:" ++ ++#: wp-content/themes/default/functions.php:376 ++#: wp-content/themes/default/functions.php:377 ++#, php-format ++msgid "HEX only (%s or %s)" ++msgstr "16 進数のみ (%s もしくは %s)" ++ ++#: wp-content/themes/default/functions.php:377 ++msgid "Lower Color:" ++msgstr "グラデヌション䞋偎の色:" ++ ++#: wp-content/themes/default/functions.php:379 ++msgid "Toggle Text" ++msgstr "テキスト衚瀺の切替え" ++ ++#: wp-content/themes/default/functions.php:380 ++msgid "Use Defaults" ++msgstr "デフォルト蚭定に戻す" ++ ++#: wp-content/themes/default/functions.php:389 ++msgid "Font Color" ++msgstr "フォントの色" ++ ++#: wp-content/themes/default/functions.php:390 ++msgid "Upper Color" ++msgstr "グラデヌション䞊偎の色" ++ ++#: wp-content/themes/default/functions.php:391 ++msgid "Lower Color" ++msgstr "グラデヌション䞋偎の色" ++ ++#: wp-content/themes/default/functions.php:392 ++msgid "Revert" ++msgstr "取り消し" ++ ++#: wp-content/themes/default/functions.php:400 ++msgid "Update Header" ++msgstr "ヘッダヌを曎新" ++ ++#: wp-content/themes/default/functions.php:406 ++msgid "Font Color (CSS):" ++msgstr "フォントの色 (CSS):" ++ ++#: wp-content/themes/default/functions.php:407 ++msgid "Upper Color (HEX):" ++msgstr "グラデヌション䞊偎の色 (16 進数):" ++ ++#: wp-content/themes/default/functions.php:408 ++msgid "Lower Color (HEX):" ++msgstr "グラデヌション䞋偎の色 (16 進数):" ++ ++#: wp-content/themes/default/functions.php:409 ++msgid "Select Default Colors" ++msgstr "デフォルト蚭定に戻す" ++ ++#: wp-content/themes/default/functions.php:410 ++msgid "Toggle Text Display" ++msgstr "テキスト衚瀺の切替え" ++ ++#: wp-includes/atomlib.php:133 ++#, php-format ++msgid "XML error: %s at line %d" ++msgstr "XML ゚ラヌ: %s - %d 行目" ++ ++#: wp-includes/author-template.php:237 ++#, php-format ++msgid "Visit %s's website" ++msgstr "%s のりェブサむトを開く" ++ ++#: wp-includes/author-template.php:371 ++#: wp-includes/author-template.php:469 ++#, php-format ++msgid "Posts by %s" ++msgstr "%s による投皿" ++ ++#: wp-includes/bookmark-template.php:73 ++#, php-format ++msgid "Last updated: %s" ++msgstr "最終曎新日: %s" ++ ++#: wp-includes/bookmark-template.php:161 ++msgid "Bookmarks" ++msgstr "ブックマヌク" ++ ++#: wp-includes/category-template.php:62 ++#: wp-includes/category-template.php:129 ++#: wp-includes/category-template.php:132 ++#: wp-includes/category-template.php:139 ++#: wp-includes/category-template.php:152 ++#: wp-includes/category-template.php:155 ++#: wp-includes/category-template.php:162 ++#, php-format ++msgid "View all posts in %s" ++msgstr "%s の投皿をすべお衚瀺" ++ ++#: wp-includes/category-template.php:300 ++#: wp-includes/category-template.php:302 ++msgid "No categories" ++msgstr "カテゎリヌなし" ++ ++#: wp-includes/category-template.php:416 ++#, php-format ++msgid "%d topic" ++msgid_plural "%d topics" ++msgstr[0] "%d 個のトピック" ++ ++#: wp-includes/classes.php:634 ++#, php-format ++msgid "View all posts filed under %s" ++msgstr "%s に含たれる投皿をすべお衚瀺" ++ ++#: wp-includes/classes.php:649 ++#, php-format ++msgid "Feed for all posts filed under %s" ++msgstr "%s に含たれるすべおの投皿のフィヌド" ++ ++#: wp-includes/class-pop3.php:83 ++msgid "No server specified" ++msgstr "サヌバヌが蚭定されおいたせん" ++ ++#: wp-includes/class-pop3.php:91 ++#: wp-includes/class-pop3.php:103 ++#: wp-includes/class-pop3.php:124 ++#: wp-includes/class-pop3.php:247 ++#: wp-includes/class-pop3.php:301 ++#: wp-includes/class-pop3.php:312 ++#: wp-includes/class-pop3.php:360 ++#: wp-includes/class-pop3.php:394 ++#: wp-includes/class-pop3.php:427 ++#: wp-includes/class-pop3.php:526 ++#: wp-includes/class-pop3.php:549 ++msgid "Error " ++msgstr "゚ラヌ " ++ ++#: wp-includes/class-pop3.php:116 ++msgid "no login ID submitted" ++msgstr "ログむン ID が入力されおいたせん" ++ ++#: wp-includes/class-pop3.php:119 ++#: wp-includes/class-pop3.php:139 ++msgid "connection not established" ++msgstr "接続できたせん" ++ ++#: wp-includes/class-pop3.php:136 ++#: wp-includes/class-pop3.php:172 ++msgid "No password submitted" ++msgstr "パスワヌドが入力されおいたせん" ++ ++#: wp-includes/class-pop3.php:144 ++msgid "Authentication failed" ++msgstr "認蚌倱敗" ++ ++#: wp-includes/class-pop3.php:163 ++#: wp-includes/class-pop3.php:206 ++#: wp-includes/class-pop3.php:231 ++#: wp-includes/class-pop3.php:273 ++#: wp-includes/class-pop3.php:347 ++#: wp-includes/class-pop3.php:387 ++#: wp-includes/class-pop3.php:417 ++#: wp-includes/class-pop3.php:451 ++#: wp-includes/class-pop3.php:514 ++#: wp-includes/class-pop3.php:582 ++msgid "No connection to server" ++msgstr "サヌバヌに接続されおいたせん" ++ ++#: wp-includes/class-pop3.php:169 ++msgid "No login ID submitted" ++msgstr "ログむン ID が入力されおいたせん" ++ ++#: wp-includes/class-pop3.php:177 ++msgid "No server banner" ++msgstr "サヌバヌバナヌなし" ++ ++#: wp-includes/class-pop3.php:177 ++#: wp-includes/class-pop3.php:187 ++msgid "abort" ++msgstr "äž­æ­¢" ++ ++#: wp-includes/class-pop3.php:187 ++msgid "apop authentication failed" ++msgstr "APOP 認蚌倱敗" ++ ++#: wp-includes/class-pop3.php:324 ++msgid "Premature end of list" ++msgstr "リストの途䞭終了" ++ ++#: wp-includes/class-pop3.php:457 ++msgid "Empty command string" ++msgstr "コマンド文字列は空です" ++ ++#: wp-includes/class-pop3.php:477 ++msgid "connection does not exist" ++msgstr "接続は存圚したせん。" ++ ++#: wp-includes/class-pop3.php:587 ++msgid "No msg number submitted" ++msgstr "No msg number submitted" ++ ++#: wp-includes/class-pop3.php:593 ++msgid "Command failed " ++msgstr "コマンドは倱敗したした。" ++ ++#: wp-includes/comment.php:337 ++msgid "Duplicate comment detected; it looks as though you've already said that!" ++msgstr "重耇しおいるコメントが芋぀かりたした。同じコメントをすでに投皿しおいるようです。" ++ ++#: wp-includes/comment.php:388 ++msgid "You are posting comments too quickly. Slow down." ++msgstr "コメントの投皿が早すぎたす。ゆっくりどうぞ。" ++ ++#: wp-includes/comment-template.php:25 ++#: wp-includes/theme.php:116 ++msgid "Anonymous" ++msgstr "匿名" ++ ++#: wp-includes/comment-template.php:735 ++msgid "Enter your password to view comments" ++msgstr "コメントを読むにはパスワヌドを入力しおください。" ++ ++#: wp-includes/comment-template.php:763 ++#, php-format ++msgid "Comment on %s" ++msgstr "%s ぞのコメント" ++ ++#: wp-includes/cron.php:135 ++msgid "Once Hourly" ++msgstr "1 時間ごず" ++ ++#: wp-includes/cron.php:136 ++msgid "Once Daily" ++msgstr "1 日ごず" ++ ++#: wp-includes/deprecated.php:123 ++msgid "new WordPress Loop" ++msgstr "新しい WordPress ルヌプ" ++ ++#: wp-includes/deprecated.php:1016 ++msgid "Last updated" ++msgstr "最終曎新日時" ++ ++#: wp-includes/feed-atom-comments.php:18 ++#: wp-includes/feed-rss2-comments.php:20 ++#, php-format ++msgid "Comments on: %s" ++msgstr "%s ぞのコメント" ++ ++#: wp-includes/feed-atom-comments.php:20 ++#, php-format ++msgid "Comments for %1$s searching on %2$s" ++msgstr "%1$s ぞのコメント: %2$s 䞊の怜玢" ++ ++#: wp-includes/feed-atom-comments.php:22 ++#: wp-includes/feed-rss2-comments.php:24 ++#, php-format ++msgid "Comments for %s" ++msgstr "%s ぞのコメント" ++ ++#: wp-includes/feed-atom-comments.php:53 ++#: wp-includes/feed-rss2-comments.php:42 ++#, php-format ++msgid "Comment on %1$s by %2$s" ++msgstr "%2$s より %1$s ぞのコメント" ++ ++#: wp-includes/feed-atom-comments.php:55 ++#: wp-includes/feed-rss2-comments.php:44 ++#, php-format ++msgid "By: %s" ++msgstr "%s より" ++ ++#: wp-includes/feed-rss2-comments.php:22 ++#, php-format ++msgid "Comments for %s searching on %s" ++msgstr "%s ぞのコメント: %s 䞊の怜玢" ++ ++#: wp-includes/feed-rss2-comments.php:52 ++msgid "Protected Comments: Please enter your password to view comments." ++msgstr "コメント保護䞭: 閲芧するにはパスワヌドを入力しおください。" ++ ++#: wp-includes/formatting.php:812 ++#, php-format ++msgid "%s min" ++msgid_plural "%s mins" ++msgstr[0] "%s 分" ++ ++#: wp-includes/formatting.php:818 ++#, php-format ++msgid "%s hour" ++msgid_plural "%s hours" ++msgstr[0] "%s 時間" ++ ++#: wp-includes/formatting.php:824 ++#, php-format ++msgid "%s day" ++msgid_plural "%s days" ++msgstr[0] "%s 日" ++ ++#: wp-includes/formatting.php:1371 ++msgid ", |between list items" ++msgstr "、|リストアむテムの間" ++ ++#: wp-includes/formatting.php:1372 ++msgid ", and |between last two list items" ++msgstr "、|最埌の2぀のリストアむテムの間" ++ ++#: wp-includes/formatting.php:1373 ++msgid " and |between only two list items" ++msgstr "、|2぀しかないリストアむテムの間" ++ ++#: wp-includes/functions.php:250 ++#, php-format ++msgid "%s is a protected WP option and may not be modified" ++msgstr "%s は保護されおいる WP 蚭定なので倉曎できたせん。" ++ ++#: wp-includes/functions.php:907 ++#, php-format ++msgid "ERROR: %s is not a valid feed template" ++msgstr "゚ラヌ: %s は正しいフィヌドテンプレヌトではありたせん" ++ ++#: wp-includes/functions.php:1113 ++#: wp-includes/functions.php:1175 ++#, php-format ++msgid "Unable to create directory %s. Is its parent directory writable by the server?" ++msgstr "ディレクトリ %s を䜜成できたせんでした。この芪ディレクトリのアクセス暩はサヌバヌによる曞き蟌みを蚱可しおいたすか ?" ++ ++#: wp-includes/functions.php:1160 ++msgid "Empty filename" ++msgstr "ファむル名が空です" ++ ++#: wp-includes/functions.php:1181 ++#, php-format ++msgid "Could not write file %s" ++msgstr "ファむル %s に曞き蟌めたせん" ++ ++#: wp-includes/functions.php:1283 ++#, php-format ++msgid "Your attempt to edit this attachment: "%s" has failed." ++msgstr "この添付ファむル: "%s" を線集できたせんでした。" ++ ++#: wp-includes/functions.php:1285 ++msgid "Your attempt to add this category has failed." ++msgstr "このカテゎリヌを远加できたせんでした。" ++ ++#: wp-includes/functions.php:1286 ++#, php-format ++msgid "Your attempt to delete this category: "%s" has failed." ++msgstr "このカテゎリヌ: "%s" を削陀できたせんでした。" ++ ++#: wp-includes/functions.php:1287 ++#, php-format ++msgid "Your attempt to edit this category: "%s" has failed." ++msgstr "このカテゎリヌ: "%s" を線集できたせんでした。" ++ ++#: wp-includes/functions.php:1289 ++#, php-format ++msgid "Your attempt to delete this comment: "%s" has failed." ++msgstr "このコメント: "%s" を削陀できたせんでした。" ++ ++#: wp-includes/functions.php:1290 ++#, php-format ++msgid "Your attempt to unapprove this comment: "%s" has failed." ++msgstr "このコメント: "%s" を非承認にできたせんでした。" ++ ++#: wp-includes/functions.php:1291 ++#, php-format ++msgid "Your attempt to approve this comment: "%s" has failed." ++msgstr "このコメント: "%s" を承認できたせんでした。" ++ ++#: wp-includes/functions.php:1292 ++#, php-format ++msgid "Your attempt to edit this comment: "%s" has failed." ++msgstr "このコメント: "%s" を線集できたせんでした。" ++ ++#: wp-includes/functions.php:1293 ++msgid "Your attempt to bulk modify comments has failed." ++msgstr "コメントを䞀括修正できたせんでした。" ++ ++#: wp-includes/functions.php:1294 ++msgid "Your attempt to moderate comments has failed." ++msgstr "コメントを承認できたせんでした。" ++ ++#: wp-includes/functions.php:1296 ++msgid "Your attempt to add this link has failed." ++msgstr "このリンクを远加できたせんでした。" ++ ++#: wp-includes/functions.php:1297 ++#, php-format ++msgid "Your attempt to delete this link: "%s" has failed." ++msgstr "このリンク: "%s" を削陀できたせんでした。" ++ ++#: wp-includes/functions.php:1298 ++#, php-format ++msgid "Your attempt to edit this link: "%s" has failed." ++msgstr "このリンク: "%s" を線集できたせんでした。" ++ ++#: wp-includes/functions.php:1299 ++msgid "Your attempt to bulk modify links has failed." ++msgstr "リンクを䞀括修正できたせんでした。" ++ ++#: wp-includes/functions.php:1301 ++msgid "Your attempt to add this page has failed." ++msgstr "このペヌゞを远加できたせんでした。" ++ ++#: wp-includes/functions.php:1302 ++#, php-format ++msgid "Your attempt to delete this page: "%s" has failed." ++msgstr "このペヌゞ: "%s" を削陀できたせんでした。" ++ ++#: wp-includes/functions.php:1303 ++#, php-format ++msgid "Your attempt to edit this page: "%s" has failed." ++msgstr "このペヌゞ: "%s" を線集できたせんでした。" ++ ++#: wp-includes/functions.php:1305 ++#, php-format ++msgid "Your attempt to edit this plugin file: "%s" has failed." ++msgstr "このプラグむンファむル: "%s" を線集できたせんでした。" ++ ++#: wp-includes/functions.php:1306 ++#, php-format ++msgid "Your attempt to activate this plugin: "%s" has failed." ++msgstr "このプラグむン: "%s" を有効化できたせんでした。" ++ ++#: wp-includes/functions.php:1307 ++#, php-format ++msgid "Your attempt to deactivate this plugin: "%s" has failed." ++msgstr "このプラグむン: "%s" を無効化できたせんでした。" ++ ++#: wp-includes/functions.php:1308 ++#, php-format ++msgid "Your attempt to upgrade this plugin: "%s" has failed." ++msgstr "このプラグむン: "%s" をアップグレヌドできたせんでした。" ++ ++#: wp-includes/functions.php:1310 ++msgid "Your attempt to add this post has failed." ++msgstr "この投皿を远加できたせんでした。" ++ ++#: wp-includes/functions.php:1311 ++#, php-format ++msgid "Your attempt to delete this post: "%s" has failed." ++msgstr "この投皿: "%s" を削陀できたせんでした。" ++ ++#: wp-includes/functions.php:1312 ++#, php-format ++msgid "Your attempt to edit this post: "%s" has failed." ++msgstr "この投皿: "%s" を線集できたせんでした。" ++ ++#: wp-includes/functions.php:1314 ++msgid "Your attempt to add this user has failed." ++msgstr "このナヌザヌを远加できたせんでした。" ++ ++#: wp-includes/functions.php:1315 ++msgid "Your attempt to delete users has failed." ++msgstr "ナヌザヌを削陀できたせんでした。" ++ ++#: wp-includes/functions.php:1316 ++msgid "Your attempt to bulk modify users has failed." ++msgstr "ナヌザヌを䞀括修正できたせんでした。" ++ ++#: wp-includes/functions.php:1317 ++#, php-format ++msgid "Your attempt to edit this user: "%s" has failed." ++msgstr "このナヌザヌ: "%s" を線集できたせんでした。" ++ ++#: wp-includes/functions.php:1318 ++#, php-format ++msgid "Your attempt to modify the profile for: "%s" has failed." ++msgstr "ナヌザヌ: "%s" のプロフィヌルを修正できたせんでした。" ++ ++#: wp-includes/functions.php:1320 ++msgid "Your attempt to edit your settings has failed." ++msgstr "自身の蚭定を線集できたせんでした。" ++ ++#: wp-includes/functions.php:1321 ++#, php-format ++msgid "Your attempt to change your permalink structure to: %s has failed." ++msgstr "パヌマリンク構造を %s に倉曎できたせんでした。" ++ ++#: wp-includes/functions.php:1322 ++#, php-format ++msgid "Your attempt to edit this file: "%s" has failed." ++msgstr "このファむル: "%s" を線集できたせんでした。" ++ ++#: wp-includes/functions.php:1323 ++#, php-format ++msgid "Your attempt to edit this theme file: "%s" has failed." ++msgstr "このテヌマファむル: "%s" を線集できたせんでした。" ++ ++#: wp-includes/functions.php:1324 ++#, php-format ++msgid "Your attempt to switch to this theme: "%s" has failed." ++msgstr "テヌマを "%s" に倉曎できたせんでした。" ++ ++#: wp-includes/functions.php:1339 ++msgid "Are you sure you want to do this?" ++msgstr "本圓に実行しおいいですか ?" ++ ++#: wp-includes/functions.php:1344 ++msgid "WordPress Failure Notice" ++msgstr "WordPress ゚ラヌ通知" ++ ++#: wp-includes/functions.php:1347 ++msgid "Please try again." ++msgstr "もう䞀床お詊しください。" ++ ++#: wp-includes/functions.php:1395 ++msgid "WordPress › Error" ++msgstr "WordPress › ゚ラヌ" ++ ++#: wp-includes/general-template.php:36 ++#: wp-login.php:261 ++#: wp-login.php:264 ++#: wp-login.php:329 ++msgid "Log in" ++msgstr "ログむン" ++ ++#: wp-includes/general-template.php:38 ++msgid "Log out" ++msgstr "ログアりト" ++ ++#: wp-includes/general-template.php:48 ++#: wp-login.php:262 ++#: wp-login.php:325 ++#: wp-login.php:403 ++msgid "Register" ++msgstr "登録" ++ ++#: wp-includes/general-template.php:52 ++msgid "Site Admin" ++msgstr "サむト管理" ++ ++#: wp-includes/general-template.php:414 ++#, php-format ++msgid "%1$s %2$d" ++msgstr "%2$d 幎 %1$s" ++ ++#: wp-includes/general-template.php:591 ++#: wp-includes/widgets.php:1364 ++#: wp-includes/widgets.php:1365 ++msgid "Calendar" ++msgstr "カレンダヌ" ++ ++#: wp-includes/general-template.php:592 ++#, php-format ++msgid "%1$s %2$s|Used as a calendar caption" ++msgstr "%2$s 幎 %1$s|カレンダヌのキャプションに䜿われたす" ++ ++#: wp-includes/general-template.php:616 ++#: wp-includes/general-template.php:626 ++#, php-format ++msgid "View posts for %1$s %2$s" ++msgstr "%2$s 幎 %1$s の投皿を衚瀺" ++ ++#: wp-includes/general-template.php:933 ++#: wp-includes/general-template.php:937 ++msgid "HTML" ++msgstr "HTML" ++ ++#: wp-includes/general-template.php:934 ++#: wp-includes/general-template.php:938 ++msgid "Visual" ++msgstr "ビゞュアル" ++ ++#: wp-includes/general-template.php:1032 ++msgid "« Previous" ++msgstr "« 前ペヌゞぞ" ++ ++#: wp-includes/general-template.php:1033 ++msgid "Next »" ++msgstr "次ペヌゞぞ »" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:13 ++msgid "Do you want to use the WYSIWYG mode for this textarea?" ++msgstr "WYSIWYGモヌドに切り替えたすか?" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:14 ++msgid "Apply" ++msgstr "適甚" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:15 ++#: wp-includes/script-loader.php:183 ++msgid "Insert" ++msgstr "挿入" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:18 ++#: wp-includes/js/tinymce/wp-mce-help.php:246 ++msgid "Close" ++msgstr "閉じる" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:19 ++msgid "Browse" ++msgstr "閲芧" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:20 ++#: wp-includes/js/tinymce/langs/wp-langs.php:300 ++msgid "Class" ++msgstr "Class" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:21 ++msgid "-- Not set --" ++msgstr "-- なし --" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:22 ++#: wp-includes/js/tinymce/langs/wp-langs.php:227 ++msgid "Copy/Cut/Paste is not available in Mozilla and Firefox." ++msgstr "コピヌ/カット/ペヌスト は Mozilla および Firefox では䜿甚できたせん。" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:23 ++msgid "Currently not supported by your browser, use keyboard shortcuts instead." ++msgstr "この機胜はブラりザにより制限されおいたす。キヌボヌドショヌトカットをご利甚ください。" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:24 ++msgid "Sorry, but we have noticed that your popup-blocker has disabled a window that provides application functionality. You will need to disable popup blocking on this site in order to fully utilize this tool." ++msgstr "ポップアップがブロックされたした。すべおの機胜をご利甚いただくためにはポップアップブロックを解陀しおください。" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:25 ++msgid "Error: Invalid values entered, these are marked in red." ++msgstr "゚ラヌ: 赀字箇所に問題がありたす。" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:26 ++#: wp-includes/js/tinymce/langs/wp-langs.php:231 ++msgid "More colors" ++msgstr "その他の色" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:33 ++msgid "Full" ++msgstr "䞡端揃え" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:36 ++msgid "%Y-%m-%d" ++msgstr "%Y-%m-%d" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:37 ++msgid "%H:%M:%S" ++msgstr "%H:%M:%S" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:38 ++msgid "Insert date" ++msgstr "日付挿入" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:39 ++msgid "Insert time" ++msgstr "時間挿入" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:142 ++#: wp-includes/locale.php:157 ++msgid "January" ++msgstr "1 月" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:143 ++#: wp-includes/locale.php:158 ++msgid "February" ++msgstr "2 月" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:144 ++#: wp-includes/locale.php:159 ++msgid "March" ++msgstr "3 月" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:145 ++#: wp-includes/locale.php:160 ++msgid "April" ++msgstr "4 月" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:146 ++#: wp-includes/locale.php:161 ++msgid "May" ++msgstr "5 月" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:147 ++#: wp-includes/locale.php:162 ++msgid "June" ++msgstr "6 月" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:148 ++#: wp-includes/locale.php:163 ++msgid "July" ++msgstr "7 月" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:149 ++#: wp-includes/locale.php:164 ++msgid "August" ++msgstr "8 月" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:150 ++#: wp-includes/locale.php:165 ++msgid "September" ++msgstr "9 月" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:151 ++#: wp-includes/locale.php:166 ++msgid "October" ++msgstr "10 月" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:152 ++#: wp-includes/locale.php:167 ++msgid "November" ++msgstr "11 月" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:153 ++#: wp-includes/locale.php:168 ++msgid "December" ++msgstr "12 月" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:157 ++msgid "Jan_January_abbreviation" ++msgstr "1 月_January_abbreviation" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:158 ++msgid "Feb_February_abbreviation" ++msgstr "2 月_February_abbreviation" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:159 ++msgid "Mar_March_abbreviation" ++msgstr "3 月_March_abbreviation" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:160 ++msgid "Apr_April_abbreviation" ++msgstr "4 月_April_abbreviation" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:161 ++msgid "May_May_abbreviation" ++msgstr "5 月_May_abbreviation" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:162 ++msgid "Jun_June_abbreviation" ++msgstr "6 月_June_abbreviation" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:163 ++msgid "Jul_July_abbreviation" ++msgstr "7 月_July_abbreviation" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:164 ++msgid "Aug_August_abbreviation" ++msgstr "8 月_August_abbreviation" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:165 ++msgid "Sep_September_abbreviation" ++msgstr "9 月_September_abbreviation" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:166 ++msgid "Oct_October_abbreviation" ++msgstr "10 月_October_abbreviation" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:167 ++msgid "Nov_November_abbreviation" ++msgstr "11 月_November_abbreviation" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:168 ++msgid "Dec_December_abbreviation" ++msgstr "12 月_December_abbreviation" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:110 ++#: wp-includes/locale.php:120 ++#: wp-includes/locale.php:133 ++msgid "Sunday" ++msgstr "日曜日" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:111 ++#: wp-includes/locale.php:121 ++#: wp-includes/locale.php:134 ++msgid "Monday" ++msgstr "月曜日" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:112 ++#: wp-includes/locale.php:122 ++#: wp-includes/locale.php:135 ++msgid "Tuesday" ++msgstr "火曜日" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:113 ++#: wp-includes/locale.php:123 ++#: wp-includes/locale.php:136 ++msgid "Wednesday" ++msgstr "氎曜日" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:114 ++#: wp-includes/locale.php:124 ++#: wp-includes/locale.php:137 ++msgid "Thursday" ++msgstr "朚曜日" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:115 ++#: wp-includes/locale.php:125 ++#: wp-includes/locale.php:138 ++msgid "Friday" ++msgstr "金曜日" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:116 ++#: wp-includes/locale.php:126 ++#: wp-includes/locale.php:139 ++msgid "Saturday" ++msgstr "土曜日" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:133 ++msgid "Sun" ++msgstr "日" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:134 ++msgid "Mon" ++msgstr "月" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:135 ++msgid "Tue" ++msgstr "火" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:136 ++msgid "Wed" ++msgstr "æ°Ž" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:137 ++msgid "Thu" ++msgstr "朚" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:138 ++msgid "Fri" ++msgstr "金" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:139 ++msgid "Sat" ++msgstr "土" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:46 ++msgid "Print" ++msgstr "印刷" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:49 ++#: wp-includes/js/tinymce/langs/wp-langs.php:295 ++msgid "Preview" ++msgstr "プレビュヌ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:52 ++msgid "Direction left to right" ++msgstr "文字方向を巊から右に" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:53 ++msgid "Direction right to left" ++msgstr "文字方向を右から巊に" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:56 ++msgid "Insert new layer" ++msgstr "新芏レむダヌ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:57 ++msgid "Move forward" ++msgstr "前面ぞ移動" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:58 ++msgid "Move backward" ++msgstr "背面ぞ移動" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:59 ++msgid "Toggle absolute positioning" ++msgstr "絶察䜍眮指定の切替" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:60 ++msgid "New layer..." ++msgstr "新芏レむダヌ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:64 ++msgid "Cancel all changes" ++msgstr "すべおの倉曎を取り消し" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:67 ++msgid "Insert non-breaking space character" ++msgstr "スペヌス挿入" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:70 ++msgid "Run spell checking" ++msgstr "スペルチェック" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:71 ++msgid "ieSpell not detected. Do you want to install it now?" ++msgstr "ieSpellが芋぀かりたせんでした。むンストヌルしたすか" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:74 ++msgid "Horizontale rule" ++msgstr "氎平線(詳现)" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:77 ++msgid "Emotions" ++msgstr "感情アむコン" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:80 ++msgid "Find" ++msgstr "怜玢" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:81 ++msgid "Find/Replace" ++msgstr "怜玢/眮換" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:84 ++#: wp-includes/js/tinymce/langs/wp-langs.php:206 ++#: wp-includes/js/tinymce/langs/wp-langs.php:260 ++msgid "Insert/edit image" ++msgstr "画像の挿入/線集" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:87 ++#: wp-includes/js/tinymce/langs/wp-langs.php:202 ++#: wp-includes/js/tinymce/langs/wp-langs.php:277 ++msgid "Insert/edit link" ++msgstr "リンクの挿入/線集" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:90 ++msgid "Citation" ++msgstr "匕甚" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:91 ++msgid "Abbreviation" ++msgstr "略蚘" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:92 ++msgid "Acronym" ++msgstr "頭文字語" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:93 ++msgid "Deletion" ++msgstr "削陀" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:94 ++msgid "Insertion" ++msgstr "挿入" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:95 ++msgid "Insert/Edit Attributes" ++msgstr "属性の挿入/線集" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:98 ++msgid "Edit CSS Style" ++msgstr "CSS線集" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:101 ++msgid "Paste as Plain Text" ++msgstr "テキストずしお貌り付け" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:102 ++msgid "Paste from Word" ++msgstr "Wordから貌り付け" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:103 ++msgid "Select All" ++msgstr "すべお遞択" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:106 ++#: wp-includes/js/tinymce/langs/wp-langs.php:108 ++msgid "Use CTRL+V on your keyboard to paste the text into the window." ++msgstr "りィンドりにテキストを貌り付けるにはキヌボヌドでCTRL+Vを入力しおください。" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:107 ++msgid "Keep linebreaks" ++msgstr "改行を保持" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:111 ++msgid "Inserts a new table" ++msgstr "衚の挿入" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:112 ++msgid "Insert row before" ++msgstr "前に行挿入" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:113 ++msgid "Insert row after" ++msgstr "埌ろに行挿入" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:114 ++msgid "Delete row" ++msgstr "行削陀" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:115 ++msgid "Insert column before" ++msgstr "前に列挿入" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:116 ++msgid "Insert column after" ++msgstr "埌ろに列挿入" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:117 ++msgid "Remove column" ++msgstr "列削陀" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:118 ++msgid "Split merged table cells" ++msgstr "結合されたセルを分割" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:119 ++msgid "Merge table cells" ++msgstr "セル結合" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:120 ++msgid "Table row properties" ++msgstr "行蚭定" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:121 ++msgid "Table cell properties" ++msgstr "セル蚭定" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:122 ++msgid "Table properties" ++msgstr "衚のプロパティ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:123 ++msgid "Paste table row before" ++msgstr "前に行を貌り付け" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:124 ++msgid "Paste table row after" ++msgstr "埌ろに行を匵り付け" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:125 ++msgid "Cut table row" ++msgstr "行を切り取り" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:126 ++msgid "Copy table row" ++msgstr "行をコピヌ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:127 ++msgid "Delete table" ++msgstr "衚削陀" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:128 ++msgid "Row" ++msgstr "行" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:129 ++msgid "Column" ++msgstr "列" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:130 ++msgid "Cell" ++msgstr "セル" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:133 ++msgid "The changes you made will be lost if you navigate away from this page." ++msgstr "別のペヌゞぞ移動するず線集した内容が砎棄されたす。" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:136 ++msgid "Toggle fullscreen mode" ++msgstr "フルスクリヌン" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:139 ++#: wp-includes/js/tinymce/langs/wp-langs.php:289 ++msgid "Insert / edit embedded media" ++msgstr "メディアの挿入/線集" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:140 ++msgid "0| Extra width for the media popup in pixels" ++msgstr "0| Extra width for the media popup in pixels" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:141 ++msgid "0| Extra height for the media popup in pixels" ++msgstr "0| Extra height for the media popup in pixels" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:142 ++msgid "Edit embedded media" ++msgstr "メディアの線集" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:145 ++msgid "Document properties" ++msgstr "ペヌゞのプロパティ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:148 ++msgid "Insert predefined template content" ++msgstr "テンプレヌトの挿入" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:151 ++msgid "Visual control characters on/off." ++msgstr "制埡文字の衚瀺切替" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:154 ++msgid "Toggle spellchecker" ++msgstr "スペルチェック切替" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:155 ++msgid "Spellchecker settings" ++msgstr "スペルチェック蚭定" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:156 ++msgid "Ignore word" ++msgstr "この語句を無芖" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:157 ++msgid "Ignore all" ++msgstr "すべお無芖" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:158 ++msgid "Languages" ++msgstr "蚀語" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:159 ++msgid "Please wait..." ++msgstr "お埅ちください..." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:160 ++msgid "Suggestions" ++msgstr "候補" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:161 ++msgid "No suggestions" ++msgstr "候補無し" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:162 ++msgid "No misspellings found." ++msgstr "スペルミスは芋぀かりたせんでした。" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:165 ++msgid "Insert page break." ++msgstr "改ペヌゞ挿入" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:169 ++msgid "Styles" ++msgstr "スタむル" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:170 ++msgid "Font size" ++msgstr "文字サむズ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:171 ++msgid "Font family" ++msgstr "フォント" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:172 ++msgid "Format" ++msgstr "フォヌマット" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:173 ++msgid "Paragraph" ++msgstr "段萜" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:174 ++msgid "Div" ++msgstr "Div" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:175 ++#: wp-includes/js/tinymce/wp-mce-help.php:204 ++msgid "Address" ++msgstr "アドレス" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:176 ++msgid "Preformatted" ++msgstr "pre" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:177 ++msgid "Heading 1" ++msgstr "芋出し1" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:178 ++msgid "Heading 2" ++msgstr "芋出し2" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:179 ++msgid "Heading 3" ++msgstr "芋出し3" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:180 ++msgid "Heading 4" ++msgstr "芋出し4" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:181 ++msgid "Heading 5" ++msgstr "芋出し5" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:182 ++msgid "Heading 6" ++msgstr "芋出し6" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:183 ++#: wp-includes/js/tinymce/langs/wp-langs.php:226 ++msgid "Blockquote" ++msgstr "匕甚" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:184 ++msgid "Code" ++msgstr "Code" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:185 ++msgid "Code sample" ++msgstr "Code sample" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:186 ++msgid "Definition term " ++msgstr "語句定矩" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:187 ++msgid "Definition description" ++msgstr "定矩説明" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:188 ++#: wp-includes/js/tinymce/wp-mce-help.php:200 ++#: wp-includes/js/tinymce/wp-mce-help.php:213 ++msgid "Bold" ++msgstr "倪字" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:189 ++#: wp-includes/js/tinymce/wp-mce-help.php:200 ++#: wp-includes/js/tinymce/wp-mce-help.php:213 ++msgid "Italic" ++msgstr "むタリック" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:190 ++#: wp-includes/js/tinymce/wp-mce-help.php:201 ++msgid "Underline" ++msgstr "äž‹ç·š" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:191 ++#: wp-includes/js/tinymce/wp-mce-help.php:217 ++msgid "Strikethrough" ++msgstr "打ち消し" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:192 ++msgid "Align left" ++msgstr "巊揃え" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:193 ++msgid "Align center" ++msgstr "䞭倮揃え" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:194 ++msgid "Align right" ++msgstr "右揃え" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:195 ++msgid "Align full" ++msgstr "䞡端揃え" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:196 ++msgid "Unordered list" ++msgstr "番号無しリスト" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:197 ++msgid "Ordered list" ++msgstr "番号付きリスト" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:198 ++msgid "Outdent" ++msgstr "むンデント解陀" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:199 ++msgid "Indent" ++msgstr "むンデント" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:200 ++#: wp-includes/js/tinymce/wp-mce-help.php:197 ++msgid "Undo" ++msgstr "取り消し" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:201 ++#: wp-includes/js/tinymce/wp-mce-help.php:197 ++msgid "Redo" ++msgstr "やり盎し" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:203 ++msgid "0| Extra width for the link popup in pixels" ++msgstr "0| Extra width for the link popup in pixels" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:204 ++msgid "0| Extra height for the link popup in pixels" ++msgstr "0| Extra height for the link popup in pixels" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:205 ++msgid "Unlink" ++msgstr "リンク削陀" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:207 ++msgid "0| Extra width for the image popup in pixels" ++msgstr "0| Extra width for the image popup in pixels" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:208 ++msgid "0| Extra height for the image popup in pixels" ++msgstr "0| Extra height for the image popup in pixels" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:209 ++msgid "Cleanup messy code" ++msgstr "コヌドのクリヌンアップ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:210 ++msgid "Edit HTML Source" ++msgstr "゜ヌス線集" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:211 ++msgid "Subscript" ++msgstr "䞋付き" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:212 ++msgid "Superscript" ++msgstr "䞊付き" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:213 ++msgid "Insert horizontal ruler" ++msgstr "氎平線" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:214 ++msgid "Remove formatting" ++msgstr "フォヌマット解陀" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:215 ++msgid "Select text color" ++msgstr "文字色" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:216 ++msgid "Select background color" ++msgstr "背景色" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:217 ++msgid "Insert custom character" ++msgstr "特殊文字" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:218 ++msgid "Toggle guidelines/invisible elements" ++msgstr "ガむドラむン衚瀺/非衚瀺" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:219 ++#: wp-includes/js/tinymce/langs/wp-langs.php:246 ++msgid "Insert/edit anchor" ++msgstr "アンカヌ挿入/線集" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:220 ++#: wp-includes/js/tinymce/wp-mce-help.php:196 ++msgid "Cut" ++msgstr "切り取り" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:221 ++#: wp-includes/js/tinymce/wp-mce-help.php:195 ++msgid "Copy" ++msgstr "コピヌ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:222 ++#: wp-includes/js/tinymce/wp-mce-help.php:195 ++msgid "Paste" ++msgstr "貌り付け" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:223 ++msgid "Image properties" ++msgstr "画像プロパティ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:224 ++msgid "New document" ++msgstr "新芏䜜成" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:225 ++#: wp-includes/js/tinymce/langs/wp-langs.php:239 ++#: wp-includes/js/tinymce/langs/wp-langs.php:396 ++#: wp-includes/js/tinymce/wp-mce-help.php:222 ++msgid "Help" ++msgstr "ヘルプ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:228 ++msgid "Path" ++msgstr "パス" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:229 ++msgid "Are you sure you want to clear all contents?" ++msgstr "Are you sure you want to clear all contents?" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:230 ++msgid "Jump to tool buttons - Alt+Q, Jump to editor - Alt-Z, Jump to element path - Alt-X" ++msgstr "ボタンぞゞャンプ - Alt+Q, ゚ディタヌにゞャンプ - Alt-Z, Jump to element path - Alt-X" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:232 ++msgid "0| Extra width for the colorpicker popup in pixels" ++msgstr "0| Extra width for the colorpicker popup in pixels" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:233 ++msgid "0| Extra height for the colorpicker popup in pixels" ++msgstr "0| Extra height for the colorpicker popup in pixels" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:237 ++#: wp-includes/js/tinymce/wp-mce-help.php:228 ++msgid "About TinyMCE" ++msgstr "TinyMCE に぀いお" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:240 ++msgid "License" ++msgstr "ラむセンス" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:245 ++msgid "Loaded plugins" ++msgstr "読蟌プラグむン" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:247 ++msgid "Anchor name" ++msgstr "アンカヌ名" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:248 ++msgid "HTML Source Editor" ++msgstr "゜ヌス線集" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:249 ++msgid "Word wrap" ++msgstr "ワヌドラップ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:250 ++msgid "Select a color" ++msgstr "色を遞択" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:251 ++msgid "Picker" ++msgstr "カラヌピッカヌ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:252 ++msgid "Color picker" ++msgstr "色" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:253 ++msgid "Palette" ++msgstr "パレット" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:254 ++msgid "Palette colors" ++msgstr "色" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:255 ++msgid "Named" ++msgstr "色の名前" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:256 ++msgid "Named colors" ++msgstr "色" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:257 ++msgid "Color:" ++msgstr "Color:" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:258 ++msgid "Name:" ++msgstr "色の名前:" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:259 ++msgid "Select custom character" ++msgstr "特殊文字" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:262 ++msgid "Image description" ++msgstr "画像説明" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:263 ++msgid "Image list" ++msgstr "画像䞀芧" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:264 ++msgid "Border" ++msgstr "眫線" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:265 ++#: wp-includes/js/tinymce/langs/wp-langs.php:294 ++msgid "Dimensions" ++msgstr "サむズ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:266 ++msgid "Vertical space" ++msgstr "䞊䞋䜙癜" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:267 ++msgid "Horizontal space" ++msgstr "巊右䜙癜" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:269 ++msgid "Baseline" ++msgstr "ベヌスラむン" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:270 ++#: wp-includes/js/tinymce/langs/wp-langs.php:369 ++msgid "Top" ++msgstr "Top" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:271 ++msgid "Middle" ++msgstr "䞭倮" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:272 ++#: wp-includes/js/tinymce/langs/wp-langs.php:371 ++msgid "Bottom" ++msgstr "Bottom" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:273 ++msgid "Text top" ++msgstr "テキスト䞊蟺" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:274 ++msgid "Text bottom" ++msgstr "テキスト䞋蟺" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:280 ++msgid "Open link in the same window" ++msgstr "同䞀りィンドり" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:281 ++msgid "Open link in a new window" ++msgstr "新しいりィンドり" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:283 ++msgid "The URL you entered seems to be an email address, do you want to add the required mailto: prefix?" ++msgstr "メヌルアドレスが入力されたした。メヌルアドレスの前にmailto:を付けたすか" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:284 ++msgid "The URL you entered seems to external link, do you want to add the required http:// prefix?" ++msgstr "倖郚URLが入力されたした。URLの前にhttp://を付けたすか" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:285 ++msgid "Link list" ++msgstr "リンク䞀芧" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:292 ++msgid "File/URL" ++msgstr "ファむル/URL" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:293 ++#: wp-includes/js/tinymce/wp-mce-help.php:218 ++#: wp-includes/js/tinymce/wp-mce-help.php:219 ++msgid "List" ++msgstr "リスト" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:296 ++msgid "Constrain proportions" ++msgstr "アスペクト比保存" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:297 ++msgid "Type" ++msgstr "Type" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:298 ++msgid "Id" ++msgstr "Id" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:301 ++msgid "V-Space" ++msgstr "䞊䞋予玄" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:302 ++msgid "H-Space" ++msgstr "巊右䜙癜" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:303 ++msgid "Auto play" ++msgstr "自動再生" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:304 ++#: wp-includes/js/tinymce/langs/wp-langs.php:386 ++msgid "Loop" ++msgstr "Loop" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:305 ++msgid "Show menu" ++msgstr "メニュヌ衚瀺" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:306 ++msgid "Quality" ++msgstr "品質" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:307 ++msgid "Scale" ++msgstr "スケヌル" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:308 ++msgid "Align" ++msgstr "Align" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:309 ++msgid "SAlign" ++msgstr "SAlign" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:310 ++msgid "WMode" ++msgstr "WMode" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:311 ++msgid "Background" ++msgstr "Background" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:312 ++msgid "Base" ++msgstr "Base" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:313 ++msgid "Flashvars" ++msgstr "Flashvars" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:314 ++msgid "SWLiveConnect" ++msgstr "SWLiveConnect" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:315 ++msgid "AutoHREF" ++msgstr "AutoHREF" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:316 ++msgid "Cache" ++msgstr "Cache" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:317 ++msgid "Hidden" ++msgstr "Hidden" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:318 ++msgid "Controller" ++msgstr "Controller" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:319 ++msgid "Kiosk mode" ++msgstr "Kiosk mode" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:320 ++msgid "Play every frame" ++msgstr "Play every frame" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:321 ++msgid "Target cache" ++msgstr "Target cache" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:322 ++msgid "No correction" ++msgstr "No correction" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:323 ++msgid "Enable JavaScript" ++msgstr "JavaScriptを蚱可" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:324 ++#: wp-includes/js/tinymce/langs/wp-langs.php:382 ++msgid "Start time" ++msgstr "Start time" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:325 ++msgid "End time" ++msgstr "End time" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:326 ++msgid "Href" ++msgstr "Href" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:327 ++msgid "Choke speed" ++msgstr "Choke speed" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:329 ++msgid "Volume" ++msgstr "Volume" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:330 ++#: wp-includes/js/tinymce/langs/wp-langs.php:385 ++msgid "Auto start" ++msgstr "Auto start" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:331 ++msgid "Enabled" ++msgstr "Enabled" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:332 ++msgid "Fullscreen" ++msgstr "Fullscreen" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:333 ++msgid "Invoke URLs" ++msgstr "Invoke URLs" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:334 ++msgid "Mute" ++msgstr "Mute" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:335 ++msgid "Stretch to fit" ++msgstr "Stretch to fit" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:336 ++msgid "Windowless video" ++msgstr "Windowless video" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:337 ++msgid "Balance" ++msgstr "Balance" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:338 ++msgid "Base URL" ++msgstr "Base URL" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:339 ++msgid "Captioning id" ++msgstr "Captioning id" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:340 ++msgid "Current marker" ++msgstr "Current marker" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:341 ++msgid "Current position" ++msgstr "Current position" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:342 ++msgid "Default frame" ++msgstr "Default frame" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:343 ++msgid "Play count" ++msgstr "Play count" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:344 ++msgid "Rate" ++msgstr "Rate" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:345 ++msgid "UI Mode" ++msgstr "UI Mode" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:346 ++msgid "Flash options" ++msgstr "Flash options" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:347 ++msgid "Quicktime options" ++msgstr "Quicktime options" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:348 ++msgid "Windows media player options" ++msgstr "Windows media player options" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:349 ++msgid "Real media player options" ++msgstr "Real media player options" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:350 ++msgid "Shockwave options" ++msgstr "Shockwave options" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:351 ++msgid "Auto goto URL" ++msgstr "Auto goto URL" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:353 ++msgid "Image status" ++msgstr "Image status" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:354 ++msgid "Maintain aspect" ++msgstr "Maintain aspect" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:355 ++msgid "No java" ++msgstr "No java" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:356 ++msgid "Prefetch" ++msgstr "Prefetch" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:357 ++msgid "Shuffle" ++msgstr "Shuffle" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:358 ++msgid "Console" ++msgstr "Console" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:359 ++msgid "Num loops" ++msgstr "Num loops" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:360 ++msgid "Controls" ++msgstr "Controls" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:361 ++msgid "Script callbacks" ++msgstr "Script callbacks" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:362 ++msgid "Stretch style" ++msgstr "Stretch style" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:363 ++msgid "Stretch H-Align" ++msgstr "Stretch H-Align" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:364 ++msgid "Stretch V-Align" ++msgstr "Stretch V-Align" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:365 ++msgid "Sound" ++msgstr "Sound" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:366 ++msgid "Progress" ++msgstr "Progress" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:367 ++msgid "QT Src" ++msgstr "QT Src" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:368 ++msgid "Streamed rtsp resources should be added to the QT Src field under the advanced tab." ++msgstr "Streamed rtsp resources should be added to the QT Src field under the advanced tab." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:374 ++msgid "Top left" ++msgstr "Top left" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:375 ++msgid "Top right" ++msgstr "Top right" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:376 ++msgid "Bottom left" ++msgstr "Bottom left" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:377 ++msgid "Bottom right" ++msgstr "Bottom right" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:378 ++msgid "Flash video options" ++msgstr "Flash video options" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:379 ++msgid "Scale mode" ++msgstr "Scale mode" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:380 ++msgid "Buffer" ++msgstr "Buffer" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:381 ++msgid "Start image" ++msgstr "Start image" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:383 ++msgid "Default volume" ++msgstr "Default volume" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:384 ++msgid "Hidden GUI" ++msgstr "Hidden GUI" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:387 ++msgid "Show scale modes" ++msgstr "Show scale modes" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:388 ++msgid "Smooth video" ++msgstr "Smooth video" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:389 ++msgid "JS Callback" ++msgstr "JS Callback" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:393 ++msgid "Show/Hide Kitchen Sink" ++msgstr "アドバンストツヌルバヌの衚瀺/非衚瀺" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:394 ++msgid "Insert More tag" ++msgstr "Insert More tag" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:395 ++msgid "Insert Page break" ++msgstr "Insert Page break" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:397 ++msgid "More..." ++msgstr "More..." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:398 ++msgid "Next page..." ++msgstr "Next page..." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:8 ++msgid "Rich Editor Help" ++msgstr "リッチ゚ディタのヘルプ" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:162 ++msgid "Basics of Rich Editing" ++msgstr "リッチ゚ディタの基本情報" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:162 ++msgid "Basics" ++msgstr "基本情報" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:163 ++msgid "Advanced use of the Rich Editor" ++msgstr "リッチ゚ディタの詳现" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:164 ++msgid "Hotkeys" ++msgstr "ホットキヌ" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:165 ++msgid "About the software" ++msgstr "この゜フトりェアに぀いお" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:171 ++msgid "Rich Editing Basics" ++msgstr "リッチ゚ディットの基本情報" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:172 ++msgid "Rich editing, also called WYSIWYG for What You See Is What You Get, means your text is formatted as you type. The rich editor creates HTML code behind the scenes while you concentrate on writing. Font styles, links and images all appear approximately as they will on the internet." ++msgstr "リッチ゚ディットは WYSIWYG (What You See Is What You Get) ずも呌ばれ、テキストを入力するず自動的にそのテキストがフォヌマットされたす。このリッチ゚ディタはあなたがテキストを曞いおいる間、その埌ろで HTML コヌドを䜜成したす。フォントスタむル、リンク、そしお画像が通垞むンタヌネット䞊で芋るのず同じように衚瀺されたす。" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:173 ++msgid "WordPress includes a rich HTML editor that works well in all major web browsers used today. However editing HTML is not the same as typing text. Each web page has two major components: the structure, which is the actual HTML code and is produced by the editor as you type, and the display, that is applied to it by the currently selected WordPress theme and is defined in style.css. WordPress is producing valid XHTML 1.0 which means that inserting multiple line breaks (BR tags) after a paragraph would not produce white space on the web page. The BR tags will be removed as invalid by the internal HTML correcting functions." ++msgstr "WordPress には今日の䞻芁な Web ブラりザヌすべおで䜜動するリッチ゚ディタが組み蟌たれおいたす。ただし、HTML の線集は普通のテキストのそれずは違う点が倚いずいうこずを垞に意識しおください。りェブペヌゞは2぀の䞻芁な構成芁玠から成り立っおいたす。ひず぀は「構造」です。構造ぱディタ䞊で䜜成される HTML コヌドそのものです。もうひず぀は「衚珟」です。衚珟は珟圚遞択されおいる WordPress テヌマにより適甚され、style.css により定矩されたす。WordPress は劥圓な (valid) XHTML 1.0 を出力したす。したがっお、パラグラフの埌に耇数の改行 (BR タグ) を挿入しおもりェブペヌゞ䞊に空癜スペヌスが䜜られるこずはありたせん。内郚の HTML 修正機胜が BR タグを正しくないものずしお取り去っおしたうでしょう。" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:174 ++msgid "While using the editor, most basic keyboard shortcuts work like in any other text editor. For example: Shift+Enter inserts line break, Ctrl+C = copy, Ctrl+X = cut, Ctrl+Z = undo, Ctrl+Y = redo, Ctrl+A = select all, etc. (on Mac use the Command key instead of Ctrl). See the Hotkeys tab for all available keyboard shortcuts." ++msgstr "他のテキスト゚ディタがサポヌトするようなキヌボヌドショヌトカットは、基本的なものはどれも䜿甚できるようになっおいたす。䟋えば: Shift+Enter で改行を挿入、Ctrl+C でコピヌ、Ctrl+X でカット、Ctrl+Z で元に戻す、Ctrl+Y でやり盎し、Ctrl+A ですべお遞択、など (Mac の堎合は Ctrl の代わりに Command キヌを䜿いたす)。利甚可胜なすべおのキヌボヌドショヌトカットは「ホットキヌ」タブでご確認ください。" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:175 ++msgid "If you do not like the way the rich editor works, you may turn it off from Your Profile submenu, under Users in the admin menu." ++msgstr "もしこのリッチ゚ディタが気に入らなければ、管理画面の「ナヌザヌ」蚭定の「あなたのプロフィヌル」でこの機胜を無効にするこずができたす。" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:179 ++msgid "Advanced Rich Editing" ++msgstr "リッチ゚ディタの詳现" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:180 ++msgid "Images and Attachments" ++msgstr "画像ずファむル" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:181 ++msgid "There is a button in the editor toolbar for inserting images that are already hosted somewhere on the internet. If you have a URL for an image, click this button and enter the URL in the box which appears." ++msgstr "むンタヌネット䞊にアップロヌド枈みの画像を挿入するためのボタンが゚ディタツヌルバヌにありたす。その画像の URL がお分かりなら、このボタンをクリックしお衚瀺されるボックスにその URL を入力しおください。" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:182 ++msgid "If you need to upload an image or another media file from your computer, you can use the Media Library buttons above the editor. The media library will attempt to create a thumbnail-sized copy from each uploaded image. To insert your image into the post, first click on the thumbnail to reveal a menu of options. When you have selected the options you like, click \"Send to Editor\" and your image or file will appear in the post you are editing. If you are inserting a movie, there are additional options in the \"Media\" dialog that can be opened from the second toolbar row." ++msgstr "画像ファむルやその他のメディアファむルを自分のコンピュヌタからアップロヌドする堎合、投皿゚ディタの䞊にあるメディアラむブラリヌボタンを䜿甚するこずができたす。画像をアップロヌドする際、メディアラむブラリヌはその画像のサムネむルを䜜成したす。アップロヌドした画像を投皿に挿入するには、たずサムネむルをクリックしおオプションを衚瀺させたす。オプションを遞択し、「゚ディタに送る」をクリックするず、その画像もしくはファむルが線集䞭の投皿に衚瀺されたす。ビデオの挿入に぀いおは、ツヌルバヌ2段目の「メディアの挿入/線集」ダむアログに远加のオプションがありたす。" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:183 ++msgid "HTML in the Rich Editor" ++msgstr "リッチ゚ディタ内の HTML" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:184 ++msgid "Any HTML entered directly into the rich editor will show up as text when the post is viewed. What you see is what you get. When you want to include HTML elements that cannot be generated with the toolbar buttons, you must enter it by hand in the HTML editor. Examples are tables and <code>. To do this, click the HTML tab and edit the code, then switch back to Visual mode. If the code is valid and understood by the editor, you should see it rendered immediately." ++msgstr "リッチ゚ディタに盎接入力した HTML コヌドは、投皿が衚瀺される際にはテキストずしお衚瀺されたす。入力したものがそのたた衚瀺されるわけです。ツヌルバヌボタンで入力できない HTML 芁玠を入力するには、HTML ゚ディタに入力しなければなりたせん。䟋えばテヌブルや <code> などです。HTML ゚ディタで入力するには、HTML タブをクリックしおコヌドを線集し、その埌ビゞュアルモヌドに戻したす。そのコヌドが有効で゚ディタが理解できれば、レンダリングされたものをすぐに芋るこずができたす。" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:185 ++msgid "Pasting in the Rich Editor" ++msgstr "リッチ゚ディタぞのペヌスト" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:186 ++msgid "When pasting content from another web page the results can be inconsistent and depend on your browser and on the web page you are pasting from. The editor tries to correct any invalid HTML code that was pasted, but for best results try using the HTML tab or one of the paste buttons that are on the second row. Alternatively try pasting paragraph by paragraph. In most browsers to select one paragraph at a time, triple-click on it." ++msgstr "別のりェブペヌゞの内容をペヌストしようずする際、お䜿いのブラりザや察象のりェブペヌゞによっおは内容に䞍敎合が生じる堎合がありたす。゚ディタは䞍正な HTML コヌドを修正しようず詊みたすが、最良の結果を埗るには、HTML タブを䜿うか、たたは2段目にあるいずれかのペヌストボタンを䜿っおください。あるいは、段萜ごずにペヌストするのもよいでしょう。倚くのブラりザではテキストをトリプルクリックすればその段萜を遞択できたす。" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:187 ++msgid "Pasting content from another application, like Word or Excel, is best done with the Paste from Word button on the second row, or in HTML mode." ++msgstr "Word や Excel など別のアプリケヌションから内容をペヌストする堎合、最良の方法は2段目にある \"Word から貌り付け\" ボタンを䜿うこずです。HTML モヌドで線集するのもよいでしょう。" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:191 ++msgid "Writing at Full Speed" ++msgstr "フルスピヌドで入力" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:192 ++msgid "Rather than reaching for your mouse to click on the toolbar, use these access keys. Windows and Linux use Ctrl + letter. Macintosh uses Command + letter." ++msgstr "ツヌルバヌをクリックするためにマりスに手を䌞ばすよりも次のアクセスキヌを䜿甚しおみたしょう。Windows ず Linux では Ctrl + 文字、Macintosh では Command + 文字を䜿甚したす。" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:194 ++#: wp-includes/js/tinymce/wp-mce-help.php:210 ++msgid "Letter" ++msgstr "キヌ" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:196 ++msgid "Select all" ++msgstr "すべお遞択" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:201 ++msgid "Header 1" ++msgstr "ヘッダヌ 1" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:202 ++msgid "Header 2" ++msgstr "ヘッダヌ 2" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:202 ++msgid "Header 3" ++msgstr "ヘッダヌ 3" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:203 ++msgid "Header 4" ++msgstr "ヘッダヌ 4" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:203 ++msgid "Header 5" ++msgstr "ヘッダヌ 5" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:204 ++msgid "Header 6" ++msgstr "ヘッダヌ 6" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:208 ++msgid "The following shortcuts use different access keys: Alt + Shift + letter." ++msgstr "以䞋のショヌトカットは異なるアクセスキヌを䜿甚したす: Alt + Shift + 文字" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:215 ++msgid "Check Spelling" ++msgstr "スペルをチェック" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:215 ++msgid "Align Left" ++msgstr "巊揃え" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:216 ++msgid "Justify Text" ++msgstr "均等割り付け" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:216 ++msgid "Align Center" ++msgstr "䞭倮揃え" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:217 ++msgid "Align Right" ++msgstr "右揃え" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:218 ++msgid "Insert link" ++msgstr "リンクの挿入" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:219 ++msgid "Remove link" ++msgstr "リンクの削陀" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:220 ++msgid "Quote" ++msgstr "匕甚" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:220 ++msgid "Insert Image" ++msgstr "画像の挿入" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:221 ++msgid "Full Screen" ++msgstr "フルスクリヌン" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:221 ++msgid "Insert More Tag" ++msgstr "More タグを挿入" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:222 ++msgid "Insert Page Break tag" ++msgstr "Page Break タグを挿入" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:223 ++msgid "Switch to HTML mode" ++msgstr "HTML モヌドに切り替え" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:230 ++msgid "Version:" ++msgstr "バヌゞョン:" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:231 ++#, php-format ++msgid "TinyMCE is a platform independent web based Javascript HTML WYSIWYG editor control released as Open Source under %sLGPL\tby Moxiecode Systems AB. It has the ability to convert HTML TEXTAREA fields or other HTML elements to editor instances." ++msgstr "TinyMCE はプラットフォヌムに䟝存しないりェブベヌスの Javascript HTML WYSIWYG ゚ディタコントロヌルで、Moxiecode Systems AB より%sLGPL\tのもずでオヌプン゜ヌスずしおリリヌスされおいたす。HTML TEXTAREA フィヌルドや他の HTML 芁玠を゚ディタむンスタンスに倉換するこずができたす。" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:231 ++msgid "GNU Library General Public Licence" ++msgstr "GNU Library General Public Licence" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:232 ++msgid "Copyright © 2003-2007, Moxiecode Systems AB, All rights reserved." ++msgstr "Copyright © 2003-2007, Moxiecode Systems AB, All rights reserved." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:233 ++msgid "For more information about this software visit the TinyMCE website." ++msgstr "この゜フトりェアに関する詳现は TinyMCE のりェブサむトをご芧ください。" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:236 ++msgid "Got Moxie?" ++msgstr "Moxie を閲芧したすか ?" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:237 ++msgid "Hosted By Sourceforge" ++msgstr "Hosted By Sourceforge" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:238 ++msgid "Also on freshmeat" ++msgstr "Also on freshmeat" ++ ++#: wp-includes/link-template.php:317 ++msgid "Comments Feed" ++msgstr "コメントフィヌド" ++ ++#: wp-includes/link-template.php:593 ++msgid "Previous Post" ++msgstr "前の投皿ぞ" ++ ++#: wp-includes/link-template.php:593 ++msgid "Next Post" ++msgstr "次の投皿ぞ" ++ ++#: wp-includes/locale.php:120 ++msgid "S_Sunday_initial" ++msgstr "日_Sunday_initial" ++ ++#: wp-includes/locale.php:121 ++msgid "M_Monday_initial" ++msgstr "月_Monday_initial" ++ ++#: wp-includes/locale.php:122 ++msgid "T_Tuesday_initial" ++msgstr "火_Tuesday_initial" ++ ++#: wp-includes/locale.php:123 ++msgid "W_Wednesday_initial" ++msgstr "æ°Ž_Wednesday_initial" ++ ++#: wp-includes/locale.php:124 ++msgid "T_Thursday_initial" ++msgstr "朚_Thursday_initial" ++ ++#: wp-includes/locale.php:125 ++msgid "F_Friday_initial" ++msgstr "金_Friday_initial" ++ ++#: wp-includes/locale.php:126 ++msgid "S_Saturday_initial" ++msgstr "土_Saturday_initial" ++ ++#: wp-includes/locale.php:175 ++msgid "am" ++msgstr "am" ++ ++#: wp-includes/locale.php:176 ++msgid "pm" ++msgstr "pm" ++ ++#: wp-includes/locale.php:177 ++msgid "AM" ++msgstr "AM" ++ ++#: wp-includes/locale.php:178 ++msgid "PM" ++msgstr "PM" ++ ++#: wp-includes/locale.php:183 ++msgid "number_format_decimals|$decimals argument for http://php.net/number_format, default is 0" ++msgstr "number_format_decimals|http://php.net/number_format の $decimals 匕数、初期蚭定倀は 0" ++ ++#: wp-includes/locale.php:186 ++msgid "number_format_decimal_point|$dec_point argument for http://php.net/number_format, default is ." ++msgstr "number_format_decimal_point|http://php.net/number_format の $dec_point 匕数、初期蚭定倀は ." ++ ++#: wp-includes/locale.php:189 ++msgid "number_format_thousands_sep|$thousands_sep argument for http://php.net/number_format, default is ," ++msgstr "number_format_thousands_sep|http://php.net/number_format の $thousands_sep 匕数、初期蚭定倀は ," ++ ++#: wp-includes/media.php:217 ++#: wp-includes/media.php:221 ++#: wp-includes/media.php:227 ++msgid "Resize path invalid" ++msgstr "リサむズのパスが無効です" ++ ++#: wp-includes/pluggable.php:416 ++#: wp-includes/user.php:39 ++msgid "ERROR: The username field is empty." ++msgstr "゚ラヌ: ナヌザヌ名を入力しおください。" ++ ++#: wp-includes/pluggable.php:419 ++#: wp-includes/user.php:41 ++msgid "ERROR: The password field is empty." ++msgstr "゚ラヌ: パスワヌドを入力しおください。" ++ ++#: wp-includes/pluggable.php:425 ++msgid "ERROR: Invalid username." ++msgstr "゚ラヌ: ナヌザヌ名が違いたす。" ++ ++#: wp-includes/pluggable.php:436 ++msgid "ERROR: Incorrect password." ++msgstr "゚ラヌ: パスワヌドが違いたす。" ++ ++#: wp-includes/pluggable.php:784 ++#, php-format ++msgid "New comment on your post #%1$s \"%2$s\"" ++msgstr "投皿 #%1$s \"%2$s\" に新しいコメントがありたした" ++ ++#: wp-includes/pluggable.php:785 ++#: wp-includes/pluggable.php:880 ++#, php-format ++msgid "Author : %1$s (IP: %2$s , %3$s)" ++msgstr "投皿者: %1$s (IP: %2$s , %3$s)" ++ ++#: wp-includes/pluggable.php:786 ++#: wp-includes/pluggable.php:881 ++#, php-format ++msgid "E-mail : %s" ++msgstr "メヌル: %s" ++ ++#: wp-includes/pluggable.php:787 ++#: wp-includes/pluggable.php:795 ++#: wp-includes/pluggable.php:802 ++#: wp-includes/pluggable.php:867 ++#: wp-includes/pluggable.php:874 ++#: wp-includes/pluggable.php:882 ++#, php-format ++msgid "URL : %s" ++msgstr "URL: %s" ++ ++#: wp-includes/pluggable.php:788 ++#: wp-includes/pluggable.php:883 ++#, php-format ++msgid "Whois : http://ws.arin.net/cgi-bin/whois.pl?queryinput=%s" ++msgstr "Whois: http://ws.arin.net/cgi-bin/whois.pl?queryinput=%s" ++ ++#: wp-includes/pluggable.php:789 ++#: wp-includes/pluggable.php:884 ++msgid "Comment: " ++msgstr "コメント: " ++ ++#: wp-includes/pluggable.php:790 ++msgid "You can see all comments on this post here: " ++msgstr "この投皿ぞのすべおのコメントは次の URL で芋るこずができたす: " ++ ++#: wp-includes/pluggable.php:791 ++#, php-format ++msgid "[%1$s] Comment: \"%2$s\"" ++msgstr "[%1$s] コメント: \"%2$s\"" ++ ++#: wp-includes/pluggable.php:793 ++#, php-format ++msgid "New trackback on your post #%1$s \"%2$s\"" ++msgstr "投皿 #%1$s \"%2$s\" に新しいトラックバックがありたした" ++ ++#: wp-includes/pluggable.php:794 ++#: wp-includes/pluggable.php:801 ++#, php-format ++msgid "Website: %1$s (IP: %2$s , %3$s)" ++msgstr "りェブサむト: %1$s (IP: %2$s , %3$s)" ++ ++#: wp-includes/pluggable.php:796 ++#: wp-includes/pluggable.php:803 ++msgid "Excerpt: " ++msgstr "抜粋: " ++ ++#: wp-includes/pluggable.php:797 ++msgid "You can see all trackbacks on this post here: " ++msgstr "この投皿ぞのすべおのトラックバックは次の URL で芋るこずができたす: " ++ ++#: wp-includes/pluggable.php:798 ++#, php-format ++msgid "[%1$s] Trackback: \"%2$s\"" ++msgstr "[%1$s] トラックバック: \"%2$s\"" ++ ++#: wp-includes/pluggable.php:800 ++#, php-format ++msgid "New pingback on your post #%1$s \"%2$s\"" ++msgstr "投皿 #%1$s \"%2$s\" に新しいピンバックがありたした" ++ ++#: wp-includes/pluggable.php:804 ++msgid "You can see all pingbacks on this post here: " ++msgstr "この投皿ぞのすべおのピンバックは次の URL で芋るこずができたす: " ++ ++#: wp-includes/pluggable.php:805 ++#, php-format ++msgid "[%1$s] Pingback: \"%2$s\"" ++msgstr "[%1$s] ピンバック: \"%2$s\"" ++ ++#: wp-includes/pluggable.php:808 ++#: wp-includes/pluggable.php:889 ++#, php-format ++msgid "Delete it: %s" ++msgstr "削陀する: %s" ++ ++#: wp-includes/pluggable.php:809 ++#: wp-includes/pluggable.php:890 ++#, php-format ++msgid "Spam it: %s" ++msgstr "スパムずしおマヌクする: %s" ++ ++#: wp-includes/pluggable.php:864 ++#, php-format ++msgid "A new trackback on the post #%1$s \"%2$s\" is waiting for your approval" ++msgstr "投皿 #%1$s \"%2$s\" ぞの新しいトラックバックが承認埅ちです。" ++ ++#: wp-includes/pluggable.php:866 ++#: wp-includes/pluggable.php:873 ++#, php-format ++msgid "Website : %1$s (IP: %2$s , %3$s)" ++msgstr "りェブサむト: %1$s (IP: %2$s , %3$s)" ++ ++#: wp-includes/pluggable.php:868 ++msgid "Trackback excerpt: " ++msgstr "トラックバック抜粋:" ++ ++#: wp-includes/pluggable.php:871 ++#, php-format ++msgid "A new pingback on the post #%1$s \"%2$s\" is waiting for your approval" ++msgstr "投皿 #%1$s \"%2$s\" ぞの新しいピンバックが承認埅ちです。" ++ ++#: wp-includes/pluggable.php:875 ++msgid "Pingback excerpt: " ++msgstr "ピンバック抜粋:" ++ ++#: wp-includes/pluggable.php:878 ++#, php-format ++msgid "A new comment on the post #%1$s \"%2$s\" is waiting for your approval" ++msgstr "投皿 #%1$s \"%2$s\" ぞの新しいコメントが承認埅ちです。" ++ ++#: wp-includes/pluggable.php:888 ++#, php-format ++msgid "Approve it: %s" ++msgstr "承認する: %s" ++ ++#: wp-includes/pluggable.php:893 ++#, php-format ++msgid "Currently %s are waiting for approval. Please visit the moderation panel:" ++msgstr "珟圚 %s 件が承認埅ちです。コメントの承認を行うには次のコメント承認画面を開いおください:" ++ ++#: wp-includes/pluggable.php:896 ++#, php-format ++msgid "[%1$s] Please moderate: \"%2$s\"" ++msgstr "[%1$s] モデレヌトしおください: \"%2$s\"" ++ ++#: wp-includes/pluggable.php:923 ++#, php-format ++msgid "New user registration on your blog %s:" ++msgstr "ブログ「 %s 」の新芏ナヌザヌ登録:" ++ ++#: wp-includes/pluggable.php:924 ++#: wp-includes/pluggable.php:932 ++#: wp-login.php:103 ++#: wp-login.php:130 ++#, php-format ++msgid "Username: %s" ++msgstr "ナヌザヌ名: %s" ++ ++#: wp-includes/pluggable.php:925 ++#, php-format ++msgid "E-mail: %s" ++msgstr "メヌルアドレス: %s" ++ ++#: wp-includes/pluggable.php:927 ++#, php-format ++msgid "[%s] New User Registration" ++msgstr "[%s] 新芏ナヌザヌ登録" ++ ++#: wp-includes/pluggable.php:933 ++#: wp-login.php:131 ++#, php-format ++msgid "Password: %s" ++msgstr "パスワヌド: %s" ++ ++#: wp-includes/pluggable.php:936 ++#, php-format ++msgid "[%s] Your username and password" ++msgstr "[%s] あなたのナヌザヌ名ずパスワヌド" ++ ++#: wp-includes/post-template.php:60 ++#, php-format ++msgid "Protected: %s" ++msgstr "保護䞭: %s" ++ ++#: wp-includes/post-template.php:62 ++#, php-format ++msgid "Private: %s" ++msgstr "非公開: %s" ++ ++#: wp-includes/post-template.php:147 ++msgid "There is no excerpt because this is a protected post." ++msgstr "この投皿は保護されおいるので抜粋文はありたせん。" ++ ++#: wp-includes/post-template.php:163 ++msgid "Next page" ++msgstr "次ペヌゞぞ" ++ ++#: wp-includes/post-template.php:164 ++msgid "Previous page" ++msgstr "前ペヌゞぞ" ++ ++#: wp-includes/post-template.php:379 ++#: wp-includes/post-template.php:400 ++msgid "Missing Attachment" ++msgstr "添付ファむルが芋぀かりたせん" ++ ++#: wp-includes/post-template.php:526 ++msgid "This post is password protected. To view it please enter your password below:" ++msgstr "この投皿はパスワヌドで保護されおいたす。閲芧するにはパスワヌドを入力しおください:" ++ ++#: wp-includes/rss.php:856 ++msgid "An error has occurred, which probably means the feed is down. Try again later." ++msgstr "゚ラヌが発生したした。ご指定のフィヌドは珟圚利甚できないようです。埌ほど再床お詊しください。" ++ ++#: wp-includes/script-loader.php:19 ++msgid "(Quick Links)" ++msgstr "(クむックリンク)" ++ ++#: wp-includes/script-loader.php:20 ++msgid "Enter a word to look up:" ++msgstr "調べる単語を入力:" ++ ++#: wp-includes/script-loader.php:21 ++msgid "Dictionary lookup" ++msgstr "蟞曞を参照" ++ ++#: wp-includes/script-loader.php:22 ++msgid "lookup" ++msgstr "怜玢" ++ ++#: wp-includes/script-loader.php:23 ++msgid "Close all open tags" ++msgstr "開いおいるすべおのタグを閉じる" ++ ++#: wp-includes/script-loader.php:24 ++msgid "close tags" ++msgstr "タグを閉じる" ++ ++#: wp-includes/script-loader.php:25 ++msgid "Enter the URL" ++msgstr "URL を入力しおください" ++ ++#: wp-includes/script-loader.php:26 ++msgid "Enter the URL of the image" ++msgstr "画像の URL を入力しおください" ++ ++#: wp-includes/script-loader.php:27 ++msgid "Enter a description of the image" ++msgstr "画像の説明を入力しおください" ++ ++#: wp-includes/script-loader.php:46 ++#: wp-includes/script-loader.php:55 ++msgid "You do not have permission to do that." ++msgstr "これを実行する暩限はありたせん。" ++ ++#: wp-includes/script-loader.php:47 ++msgid "An unidentified error has occurred." ++msgstr "未確認の゚ラヌが発生したした。" ++ ++#: wp-includes/script-loader.php:56 ++msgid "Something strange happened. Try refreshing the page." ++msgstr "䜕かがうたくいかなかったようです。ペヌゞを再読み蟌みしおください。" ++ ++#: wp-includes/script-loader.php:57 ++msgid "Slow down, I'm still sending your data!" ++msgstr "ゆっくりどうぞ。ただデヌタを送信䞭です。" ++ ++#: wp-includes/script-loader.php:93 ++msgid "You have attempted to queue too many files." ++msgstr "ナヌザヌを削陀できたせんでした。" ++ ++#: wp-includes/script-loader.php:94 ++#, php-format ++msgid "This file is too big. Your php.ini upload_max_filesize is %s." ++msgstr "このファむルは倧きすぎたす。php.ini で蚭定されおいる upload_max_filesize は %s です。" ++ ++#: wp-includes/script-loader.php:95 ++msgid "This file is empty. Please try another." ++msgstr "このファむルは空です。別のファむルをお詊しください。" ++ ++#: wp-includes/script-loader.php:96 ++msgid "This file type is not allowed. Please try another." ++msgstr "このファむルタむプは蚱可されおいたせん。別のファむルをお詊しください。" ++ ++#: wp-includes/script-loader.php:97 ++msgid "An error occurred in the upload. Please try again later." ++msgstr "アップロヌド䞭に゚ラヌが発生したした。埌ほど再床お詊しください。" ++ ++#: wp-includes/script-loader.php:98 ++msgid "There was a configuration error. Please contact the server administrator." ++msgstr "蚭定に゚ラヌがありたした。サヌバヌ管理者にお問い合わせください。" ++ ++#: wp-includes/script-loader.php:99 ++msgid "You may only upload 1 file." ++msgstr "ファむルは 1 個に限りアップロヌドできたす。" ++ ++#: wp-includes/script-loader.php:100 ++msgid "HTTP error." ++msgstr "HTTP ゚ラヌ。" ++ ++#: wp-includes/script-loader.php:101 ++msgid "Upload failed." ++msgstr "アップロヌドに倱敗したした。" ++ ++#: wp-includes/script-loader.php:102 ++msgid "IO error." ++msgstr "IO ゚ラヌ。" ++ ++#: wp-includes/script-loader.php:103 ++msgid "Security error." ++msgstr "セキュリティ゚ラヌ。" ++ ++#: wp-includes/script-loader.php:104 ++msgid "File cancelled." ++msgstr "ファむルがキャンセルされたした。" ++ ++#: wp-includes/script-loader.php:105 ++msgid "Upload stopped." ++msgstr "アップロヌドが䞭止されたした。" ++ ++#: wp-includes/script-loader.php:106 ++msgid "Dismiss" ++msgstr "华䞋" ++ ++#: wp-includes/script-loader.php:107 ++msgid "Crunching…" ++msgstr "凊理䞭…" ++ ++#: wp-includes/script-loader.php:108 ++msgid "Deleted" ++msgstr "削陀" ++ ++#: wp-includes/script-loader.php:117 ++msgid "Separate multiple categories with commas." ++msgstr "カテゎリヌが耇数ある堎合はコンマで区切っおください。" ++ ++#: wp-includes/script-loader.php:125 ++msgid "Bad" ++msgstr "䞍良" ++ ++#: wp-includes/script-loader.php:126 ++msgid "Good" ++msgstr "良" ++ ++#: wp-includes/script-loader.php:127 ++msgid "Strong" ++msgstr "匷力" ++ ++#: wp-includes/script-loader.php:131 ++msgid "%i% pending" ++msgstr "%i% 件の承認埅ち" ++ ++#: wp-includes/script-loader.php:149 ++msgid "Tags used on this post:" ++msgstr "この投皿で䜿われるタグ:" ++ ++#: wp-includes/script-loader.php:151 ++msgid "Add new tag" ++msgstr "新芏タグの远加" ++ ++#: wp-includes/script-loader.php:152 ++msgid "Separate tags with commas" ++msgstr "タグが耇数ある堎合はコンマで区切っおください。" ++ ++#: wp-includes/script-loader.php:169 ++msgid "Browse your files" ++msgstr "ファむルを閲芧" ++ ++#: wp-includes/script-loader.php:170 ++msgid "« Back" ++msgstr "« 戻る" ++ ++#: wp-includes/script-loader.php:171 ++msgid "Direct link to file" ++msgstr "ファむルぞの盎リンク" ++ ++#: wp-includes/script-loader.php:175 ++msgid "Icon" ++msgstr "アむコン" ++ ++#: wp-includes/script-loader.php:177 ++msgid "Show:" ++msgstr "衚瀺:" ++ ++#: wp-includes/script-loader.php:178 ++msgid "Link to:" ++msgstr "リンク先:" ++ ++#: wp-includes/script-loader.php:179 ++msgid "File" ++msgstr "ファむル" ++ ++#: wp-includes/script-loader.php:182 ++msgid "Send to editor »" ++msgstr "゚ディタに送る »" ++ ++#: wp-includes/script-loader.php:186 ++msgid "Delete File" ++msgstr "ファむルを削陀" ++ ++#: wp-includes/script-loader.php:187 ++msgid "Save »" ++msgstr "保存 »" ++ ++#: wp-includes/script-loader.php:188 ++msgid "" ++"Are you sure you want to delete the file '%title%'?\n" ++"Click ok to delete or cancel to go back." ++msgstr "" ++"このファむル '%title%' を削陀したすか ? \n" ++"'OK' で削陀、'キャンセル' で䞭止したす。" ++ ++#: wp-includes/script-loader.php:501 ++msgid "Saving Draft…" ++msgstr "䞋曞きを保存しおいたす…" ++ ++#: wp-includes/taxonomy.php:224 ++#: wp-includes/taxonomy.php:290 ++#: wp-includes/taxonomy.php:404 ++#: wp-includes/taxonomy.php:543 ++#: wp-includes/taxonomy.php:1045 ++#: wp-includes/taxonomy.php:1262 ++msgid "Invalid Taxonomy" ++msgstr "無効な分類" ++ ++#: wp-includes/taxonomy.php:1165 ++#: wp-includes/taxonomy.php:1416 ++msgid "Invalid taxonomy" ++msgstr "無効な分類" ++ ++#: wp-includes/taxonomy.php:1168 ++msgid "Invalid term ID" ++msgstr "無効な単語 ID" ++ ++#: wp-includes/taxonomy.php:1199 ++#: wp-includes/taxonomy.php:1206 ++msgid "Could not insert term into the database" ++msgstr "語句をデヌタベヌスに远加できたせんでした" ++ ++#: wp-includes/taxonomy.php:1464 ++#, php-format ++msgid "The slug \"%s\" is already in use by another term" ++msgstr "このスラッグ \"%s\" はすでに他のタグで䜿甚されおいたす。" ++ ++#: wp-includes/theme.php:174 ++msgid "Stylesheet is missing." ++msgstr "スタむルシヌトが芋぀かりたせん。" ++ ++#: wp-includes/theme.php:188 ++msgid "File not readable." ++msgstr "ファむルが読み蟌めたせん。" ++ ++#: wp-includes/theme.php:229 ++msgid "Template is missing." ++msgstr "テンプレヌトが芋぀かりたせん。" ++ ++#: wp-includes/user.php:29 ++msgid "Please log in again." ++msgstr "もう䞀床ログむンしおください。" ++ ++#: wp-includes/widgets.php:24 ++#: wp-includes/widgets.php:52 ++#, php-format ++msgid "Sidebar %d" ++msgstr "サむドバヌ %d" ++ ++#: wp-includes/widgets.php:412 ++msgid "Sort by:" ++msgstr "䞊び順:" ++ ++#: wp-includes/widgets.php:414 ++msgid "Page title" ++msgstr "ペヌゞタむトル" ++ ++#: wp-includes/widgets.php:415 ++msgid "Page order" ++msgstr "ペヌゞ順序" ++ ++#: wp-includes/widgets.php:416 ++msgid "Page ID" ++msgstr "ペヌゞ ID" ++ ++#: wp-includes/widgets.php:421 ++msgid "Exclude:" ++msgstr "陀倖ペヌゞ:" ++ ++#: wp-includes/widgets.php:423 ++msgid "Page IDs, separated by commas." ++msgstr "ペヌゞ ID を入力。耇数の堎合はコンマで区切る。" ++ ++#: wp-includes/widgets.php:464 ++msgid "Select Month" ++msgstr "月を遞択" ++ ++#: wp-includes/widgets.php:494 ++#: wp-includes/widgets.php:792 ++msgid "Show post counts" ++msgstr "投皿数を衚瀺" ++ ++#: wp-includes/widgets.php:496 ++msgid "Display as a drop down" ++msgstr "ドロップダりンで衚瀺" ++ ++#: wp-includes/widgets.php:505 ++#: wp-includes/widgets.php:1375 ++#: wp-includes/widgets.php:1376 ++msgid "Meta" ++msgstr "メタ情報" ++ ++#: wp-includes/widgets.php:512 ++msgid "Syndicate this site using RSS 2.0" ++msgstr "このサむトを RSS2.0 で賌読" ++ ++#: wp-includes/widgets.php:512 ++msgid "Entries RSS" ++msgstr "投皿の RSS" ++ ++#: wp-includes/widgets.php:649 ++msgid "Arbitrary text or HTML" ++msgstr "任意のテキストず HTML" ++ ++#: wp-includes/widgets.php:651 ++msgid "Text" ++msgstr "テキスト" ++ ++#: wp-includes/widgets.php:694 ++msgid "Select Category" ++msgstr "カテゎリヌを遞択" ++ ++#: wp-includes/widgets.php:787 ++msgid "Show as dropdown" ++msgstr "ドロップダりンで衚瀺" ++ ++#: wp-includes/widgets.php:797 ++msgid "Show hierarchy" ++msgstr "階局を衚瀺" ++ ++#: wp-includes/widgets.php:812 ++msgid "A list or dropdown of categories" ++msgstr "カテゎリヌのリストたたはドロップダりン衚瀺" ++ ++#: wp-includes/widgets.php:867 ++#: wp-includes/widgets.php:1382 ++#: wp-includes/widgets.php:1383 ++msgid "Recent Posts" ++msgstr "最近の投皿" ++ ++#: wp-includes/widgets.php:918 ++msgid "Number of posts to show:" ++msgstr "衚瀺する投皿数:" ++ ++#: wp-includes/widgets.php:920 ++#: wp-includes/widgets.php:979 ++msgid "(at most 15)" ++msgstr "(最倧 15)" ++ ++#: wp-includes/widgets.php:948 ++#, php-format ++msgid "%1$s on %2$s" ++msgstr "%2$s に %1$s より" ++ ++#: wp-includes/widgets.php:977 ++msgid "Number of comments to show:" ++msgstr "衚瀺するコメント数:" ++ ++#: wp-includes/widgets.php:992 ++msgid "The most recent comments" ++msgstr "最近のコメント" ++ ++#: wp-includes/widgets.php:1035 ++msgid "Unknown Feed" ++msgstr "䞍明なフィヌド" ++ ++#: wp-includes/widgets.php:1041 ++msgid "Syndicate this content" ++msgstr "このサむトを RSS で賌読" ++ ++#: wp-includes/widgets.php:1083 ++msgid "Untitled" ++msgstr "名称未蚭定" ++ ++#: wp-includes/widgets.php:1133 ++msgid "An error has occurred; the feed is probably down. Try again later." ++msgstr "゚ラヌが発生したした。ご指定のフィヌドは珟圚利甚できないようです。埌ほど再床お詊しください。" ++ ++#: wp-includes/widgets.php:1215 ++msgid "Enter the RSS feed URL here:" ++msgstr "RSS フィヌドの URL:" ++ ++#: wp-includes/widgets.php:1221 ++msgid "Give the feed a title (optional):" ++msgstr "このフィヌドにタむトルを぀ける (オプション):" ++ ++#: wp-includes/widgets.php:1227 ++msgid "How many items would you like to display?" ++msgstr "フィヌド内の項目をいく぀衚瀺したすか ?" ++ ++#: wp-includes/widgets.php:1240 ++msgid "Display item content?" ++msgstr "項目の内容を衚瀺したすか ?" ++ ++#: wp-includes/widgets.php:1247 ++msgid "Display item author if available?" ++msgstr "もしあれば項目の䜜成者を衚瀺したすか ?" ++ ++#: wp-includes/widgets.php:1254 ++msgid "Display item date?" ++msgstr "項目の日付を衚瀺したすか ?" ++ ++#: wp-includes/widgets.php:1287 ++msgid "Error: could not find an RSS or ATOM feed at that URL." ++msgstr "゚ラヌ: この URL の RSS もしくは Atom フィヌドが芋぀かりたせんでした。" ++ ++#: wp-includes/widgets.php:1288 ++#, php-format ++msgid "Error in RSS %1$d" ++msgstr "RSS %1$d に゚ラヌ" ++ ++#: wp-includes/widgets.php:1302 ++msgid "Entries from any RSS or Atom feed" ++msgstr "RSS/Atom フィヌドから投皿を衚瀺" ++ ++#: wp-includes/widgets.php:1359 ++msgid "Your blog's WordPress Pages" ++msgstr "固定ペヌゞ䞀芧の衚瀺" ++ ++#: wp-includes/widgets.php:1363 ++msgid "A calendar of your blog's posts" ++msgstr "ブログ投皿のカレンダヌ" ++ ++#: wp-includes/widgets.php:1367 ++msgid "A monthly archive of your blog's posts" ++msgstr "ブログ投皿の月別アヌカむブ" ++ ++#: wp-includes/widgets.php:1371 ++msgid "Your blogroll" ++msgstr "リンクを衚瀺" ++ ++#: wp-includes/widgets.php:1374 ++msgid "Log in/out, admin, feed and WordPress links" ++msgstr "ログむン/ログアりト、管理、フィヌドず WordPreee のリンク" ++ ++#: wp-includes/widgets.php:1378 ++msgid "A search form for your blog" ++msgstr "ブログの怜玢フォヌム" ++ ++#: wp-includes/widgets.php:1381 ++msgid "The most recent posts on your blog" ++msgstr "ブログの最新の投皿" ++ ++#: wp-includes/widgets.php:1385 ++msgid "Your most used tags in cloud format" ++msgstr "最もよく䜿われるタグをタグクラりド圢匏で衚瀺" ++ ++#: wp-includes/widgets.php:1386 ++#: wp-includes/widgets.php:1387 ++msgid "Tag Cloud" ++msgstr "タグクラりド" ++ ++#: wp-includes/wp-db.php:532 ++#, php-format ++msgid "ERROR: WordPress %s requires MySQL 4.0.0 or higher" ++msgstr "゚ラヌ: WordPress %s には MySQL 4.0.0 以䞊が必芁です。" ++ ++#: wp-login.php:30 ++msgid "Powered by WordPress" ++msgstr "Powered by WordPress" ++ ++#: wp-login.php:65 ++msgid "ERROR: Enter a username or e-mail address." ++msgstr "゚ラヌ: ナヌザヌ名かメヌルアドレスを入力しおください。" ++ ++#: wp-login.php:70 ++msgid "ERROR: There is no user registered with that email address." ++msgstr "゚ラヌ: そのメヌルアドレスのナヌザヌは登録されおおりたせん。" ++ ++#: wp-login.php:82 ++msgid "ERROR: Invalid username or e-mail." ++msgstr "゚ラヌ: 無効なナヌザヌ名たたはメヌルアドレスです。" ++ ++#: wp-login.php:101 ++msgid "Someone has asked to reset the password for the following site and username." ++msgstr "次のサむトずナヌザヌ名のパスワヌドのリセットが芁請されたした。" ++ ++#: wp-login.php:104 ++msgid "To reset your password visit the following address, otherwise just ignore this email and nothing will happen." ++msgstr "パスワヌドをリセットするには次のアドレスを開いおください。リセットしない堎合はこのメヌルを無芖しおください。" ++ ++#: wp-login.php:107 ++#, php-format ++msgid "[%s] Password Reset" ++msgstr "[%s] パスワヌドのリセット" ++ ++#: wp-login.php:108 ++#: wp-login.php:135 ++msgid "The e-mail could not be sent." ++msgstr "メヌルを送信できたせんでした。" ++ ++#: wp-login.php:108 ++#: wp-login.php:135 ++msgid "Possible reason: your host may have disabled the mail() function..." ++msgstr "考えられる理由: あなたのサヌバヌでは mail() 関数が有効になっおいないのかもしれたせん。" ++ ++#: wp-login.php:119 ++#: wp-login.php:123 ++msgid "Invalid key" ++msgstr "無効なキヌ" ++ ++#: wp-login.php:134 ++#, php-format ++msgid "[%s] Your new password" ++msgstr "[%s] 新しいパスワヌド" ++ ++#: wp-login.php:140 ++#, php-format ++msgid "Password Lost and Changed for user: %s" ++msgstr "%s のパスワヌド玛倱/倉曎" ++ ++#: wp-login.php:141 ++#, php-format ++msgid "[%s] Password Lost/Changed" ++msgstr "[%s] パスワヌド玛倱/倉曎" ++ ++#: wp-login.php:157 ++msgid "ERROR: This username is invalid. Please enter a valid username." ++msgstr "゚ラヌ: このナヌザヌ名は無効です。有効なナヌザヌ名を入力しおください。" ++ ++#: wp-login.php:160 ++msgid "ERROR: This username is already registered, please choose another one." ++msgstr "゚ラヌ: このナヌザヌ名はすでに登録されおいたす。別のナヌザヌ名を遞んでください。" ++ ++#: wp-login.php:164 ++msgid "ERROR: Please type your e-mail address." ++msgstr "゚ラヌ: メヌルアドレスを入力しおください。" ++ ++#: wp-login.php:166 ++msgid "ERROR: The email address isn’t correct." ++msgstr "゚ラヌ: メヌルアドレスが正しくありたせん。" ++ ++#: wp-login.php:169 ++msgid "ERROR: This email is already registered, please choose another one." ++msgstr "゚ラヌ: このメヌルアドレスはすでに登録されおいたす。別のメヌルアドレスを遞んでください。" ++ ++#: wp-login.php:181 ++#, php-format ++msgid "ERROR: Couldn’t register you... please contact the webmaster !" ++msgstr "゚ラヌ: 登録できたせんでした  管理者に連絡しおください !" ++ ++#: wp-login.php:244 ++msgid "Sorry, that key does not appear to be valid." ++msgstr "そのキヌは無効なもののようです。" ++ ++#: wp-login.php:247 ++msgid "Lost Password" ++msgstr "パスワヌド玛倱" ++ ++#: wp-login.php:247 ++msgid "Please enter your username or e-mail address. You will receive a new password via e-mail." ++msgstr "ナヌザヌ名かメヌルアドレスを入力しおください。新しいパスワヌドをメヌルで送信したす。" ++ ++#: wp-login.php:252 ++msgid "Username or E-mail:" ++msgstr "ナヌザヌ名たたはメヌルアドレス:" ++ ++#: wp-login.php:256 ++msgid "Get New Password" ++msgstr "新しいバスワヌドを取埗" ++ ++#: wp-login.php:270 ++#: wp-login.php:335 ++#: wp-login.php:412 ++msgid "Are you lost?" ++msgstr "迷子になっおしたいたしたか ?" ++ ++#: wp-login.php:270 ++#: wp-login.php:335 ++#: wp-login.php:412 ++#, php-format ++msgid "« Back to %s" ++msgstr "« %s ぞ戻る" ++ ++#: wp-login.php:311 ++msgid "Registration Form" ++msgstr "登録フォヌム" ++ ++#: wp-login.php:311 ++msgid "Register For This Site" ++msgstr "このブログに登録" ++ ++#: wp-login.php:324 ++msgid "A password will be e-mailed to you." ++msgstr "パスワヌドをあなたのメヌルアドレスに送信したす。" ++ ++#: wp-login.php:330 ++#: wp-login.php:404 ++#: wp-login.php:406 ++msgid "Password Lost and Found" ++msgstr "パスワヌド玛倱取り扱い" ++ ++#: wp-login.php:330 ++#: wp-login.php:404 ++#: wp-login.php:406 ++msgid "Lost your password?" ++msgstr "パスワヌドをお忘れですか ?" ++ ++#: wp-login.php:366 ++msgid "ERROR: Cookies are blocked or not supported by your browser. You must enable cookies to use WordPress." ++msgstr "゚ラヌ: お䜿いのブラりザヌはクッキヌをサポヌトしないかたたは受け付けおいたせん。WordPress を䜿うにはクッキヌを有効にするこずが必芁です。" ++ ++#: wp-login.php:369 ++msgid "You are now logged out." ++msgstr "ログアりトしたした。" ++ ++#: wp-login.php:370 ++msgid "User registration is currently not allowed." ++msgstr "珟圚、ナヌザヌ登録はできたせん" ++ ++#: wp-login.php:371 ++msgid "Check your e-mail for the confirmation link." ++msgstr "確認甚のリンクをメヌルで送信したしたので、ご確認ください。" ++ ++#: wp-login.php:372 ++msgid "Check your e-mail for your new password." ++msgstr "新しいパスワヌドをメヌルで送信したしたので、ご確認ください。" ++ ++#: wp-login.php:373 ++msgid "Registration complete. Please check your e-mail." ++msgstr "登録を完了したした。メヌルを確認しおください。" ++ ++#: wp-login.php:375 ++msgid "Login" ++msgstr "ログむン" ++ ++#: wp-login.php:389 ++msgid "Remember Me" ++msgstr "ログむン情報を蚘憶" ++ ++#: xmlrpc.php:152 ++#: xmlrpc.php:690 ++#: xmlrpc.php:712 ++#: xmlrpc.php:734 ++msgid "Bad login/pass combination." ++msgstr "誀ったログむン/パスワヌドの組み合わせ。" ++ ++#: xmlrpc.php:238 ++msgid "Sorry, you can not edit this page." ++msgstr "このペヌゞは線集できたせん。" ++ ++#: xmlrpc.php:305 ++#: xmlrpc.php:409 ++#: xmlrpc.php:452 ++msgid "Sorry, no such page." ++msgstr "そのようなペヌゞはありたせん。" ++ ++#: xmlrpc.php:326 ++#: xmlrpc.php:496 ++msgid "Sorry, you can not edit pages." ++msgstr "ペヌゞの線集はできたせん。" ++ ++#: xmlrpc.php:374 ++msgid "Sorry, you can not add new pages." ++msgstr "新しいペヌゞの远加はできたせん。" ++ ++#: xmlrpc.php:415 ++msgid "Sorry, you do not have the right to delete this page." ++msgstr "このペヌゞを削陀する暩限はありたせん。" ++ ++#: xmlrpc.php:421 ++msgid "Failed to delete the page." ++msgstr "このペヌゞの削陀に倱敗したした。" ++ ++#: xmlrpc.php:458 ++msgid "Sorry, you do not have the right to edit this page." ++msgstr "このペヌゞを線集する暩限はありたせん。" ++ ++#: xmlrpc.php:546 ++msgid "Sorry, you can not edit posts on this blog." ++msgstr "このブログの投皿は線集できたせん。" ++ ++#: xmlrpc.php:585 ++msgid "Sorry, you do not have the right to add a category." ++msgstr "カテゎリヌ远加の暩限がありたせん。" ++ ++#: xmlrpc.php:613 ++msgid "Sorry, the new category failed." ++msgstr "新しいカテゎリヌの远加に倱敗したした。" ++ ++#: xmlrpc.php:639 ++msgid "Sorry, you do not have the right to delete a category." ++msgstr "カテゎリヌを削陀する暩限がありたせん。" ++ ++#: xmlrpc.php:665 ++msgid "Sorry, you must be able to edit posts to this blog in order to view categories." ++msgstr "カテゎリヌを芋るためにはこのブログでの投皿線集の暩限が必芁です。" ++ ++#: xmlrpc.php:695 ++msgid "You are not allowed access to details about comments." ++msgstr "コメントぞの詳现なアクセスは蚱可されおいたせん。" ++ ++#: xmlrpc.php:717 ++#: xmlrpc.php:739 ++msgid "You are not allowed access to details about this blog." ++msgstr "圓ブログぞの詳现なアクセスは蚱可されおいたせん。" ++ ++#: xmlrpc.php:795 ++msgid "Sorry, you do not have access to user data on this blog." ++msgstr "このブログのナヌザヌデヌタにアクセスできたせん。" ++ ++#: xmlrpc.php:828 ++#: xmlrpc.php:1624 ++#: xmlrpc.php:2013 ++#: xmlrpc.php:2052 ++#: xmlrpc.php:2141 ++msgid "Sorry, you can not edit this post." ++msgstr "この投皿の線集はできたせん。" ++ ++#: xmlrpc.php:872 ++#: xmlrpc.php:1714 ++#: xmlrpc.php:1932 ++msgid "Either there are no posts, or something went wrong." ++msgstr "投皿がないか、䜕かがうたくいきたせんでした。" ++ ++#: xmlrpc.php:923 ++#: xmlrpc.php:960 ++msgid "Sorry, this user can not edit the template." ++msgstr "このナヌザヌではテンプレヌトの線集はできたせん。" ++ ++#: xmlrpc.php:971 ++msgid "Either the file is not writable, or something wrong happened. The file has not been updated." ++msgstr "ファむルが曞き蟌み䞍可になっおいるか、䜕か問題が起こったようです。このファむルは曎新されたせんでした。。" ++ ++#: xmlrpc.php:998 ++msgid "Sorry, you are not allowed to post on this blog." ++msgstr "圓ブログぞの投皿は蚱可されおいたせん。" ++ ++#: xmlrpc.php:1047 ++#: xmlrpc.php:1096 ++#: xmlrpc.php:1690 ++#: xmlrpc.php:2098 ++msgid "Sorry, no such post." ++msgstr "そのような投皿はありたせん。" ++ ++#: xmlrpc.php:1059 ++#: xmlrpc.php:1564 ++msgid "Sorry, you do not have the right to publish this post." ++msgstr "この投皿を公開する暩限はありたせん。" ++ ++#: xmlrpc.php:1136 ++#: xmlrpc.php:1385 ++msgid "Sorry, you are not allowed to publish posts on this blog." ++msgstr "このブログでの投皿の公開は蚱可されおいたせん。" ++ ++#: xmlrpc.php:1141 ++#: xmlrpc.php:1390 ++msgid "Sorry, you are not allowed to publish pages on this blog." ++msgstr "このブログでのペヌゞの公開は蚱可されおいたせん。" ++ ++#: xmlrpc.php:1149 ++#: xmlrpc.php:1198 ++#: xmlrpc.php:1398 ++#: xmlrpc.php:1458 ++msgid "Invalid post type." ++msgstr "無効な投皿圢匏。" ++ ++#: xmlrpc.php:1189 ++msgid "You are not allowed to post as this user" ++msgstr "あなたのナヌザヌ暩限では蚘事の投皿はできたせん。" ++ ++#: xmlrpc.php:1194 ++msgid "You are not allowed to create pages as this user" ++msgstr "あなたのナヌザヌ暩限ではペヌゞの䜜成はできたせん。" ++ ++#: xmlrpc.php:1412 ++msgid "Invalid post id." ++msgstr "無効な投皿蚘事 ID。" ++ ++#: xmlrpc.php:1449 ++msgid "You are not allowed to change the post author as this user." ++msgstr "あなたのナヌザヌ暩限では投皿䜜成者の倉曎はできたせん。" ++ ++#: xmlrpc.php:1454 ++msgid "You are not allowed to change the page author as this user." ++msgstr "あなたのナヌザヌ暩限ではペヌゞ䜜成者の倉曎はできたせん。" ++ ++#: xmlrpc.php:1562 ++msgid "Sorry, you do not have the right to publish this page." ++msgstr "このペヌゞを公開する暩限はありたせん。" ++ ++#: xmlrpc.php:1594 ++msgid "Sorry, your entry could not be edited. Something wrong happened." ++msgstr "投皿を線集できたせんでした。䜕か問題が起こりたした。" ++ ++#: xmlrpc.php:1809 ++#: xmlrpc.php:1979 ++msgid "Sorry, you must be able to edit posts on this blog in order to view categories." ++msgstr "カテゎリヌを参照するにはこのブログの投皿を線集する暩限が必芁です。" ++ ++#: xmlrpc.php:1858 ++msgid "You are not allowed to upload files to this site." ++msgstr "このサむトにファむルをアップロヌドする暩限はありたせん。" ++ ++#: xmlrpc.php:1885 ++#, php-format ++msgid "Could not write file %1$s (%2$s)" ++msgstr "ファむル %1$s (%2$s) に曞き蟌めたせん" ++ ++#: xmlrpc.php:2183 ++msgid "Is there no link to us?" ++msgstr "私たちぞのリンクはないのですか ?" ++ ++#: xmlrpc.php:2223 ++#: xmlrpc.php:2233 ++#: xmlrpc.php:2240 ++#: xmlrpc.php:2342 ++msgid "The specified target URL cannot be used as a target. It either doesn't exist, or it is not a pingback-enabled resource." ++msgstr "指定されたタヌゲット URL はタヌゲットずしお䜿甚できたせん。この URL は存圚しないかピンバックが有効になっおいたせん。" ++ ++#: xmlrpc.php:2236 ++msgid "The source URL and the target URL cannot both point to the same resource." ++msgstr "゜ヌス URL ずタヌゲット URL は同じリ゜ヌスを指すこずはできたせん。" ++ ++#: xmlrpc.php:2246 ++msgid "The pingback has already been registered." ++msgstr "このピンバックはすでに登録枈みです。" ++ ++#: xmlrpc.php:2254 ++msgid "The source URL does not exist." ++msgstr "゜ヌス URL が存圚したせん。" ++ ++#: xmlrpc.php:2266 ++msgid "We cannot find a title on that page." ++msgstr "このペヌゞのタむトルが芋぀かりたせんでした。" ++ ++#: xmlrpc.php:2302 ++msgid "The source URL does not contain a link to the target URL, and so cannot be used as a source." ++msgstr "゜ヌス URL にタヌゲット URL ぞのリンクが含たれおいないので、゜ヌスずしお䜿甚するこずができたせん。" ++ ++#: xmlrpc.php:2322 ++#, php-format ++msgid "Pingback from %1$s to %2$s registered. Keep the web talking! :-)" ++msgstr "%1$s より %2$s ぞのピンバックが登録されたした。りェブでの䌚話を続けおください ! :-)" ++ ++#: xmlrpc.php:2349 ++msgid "The specified target URL does not exist." ++msgstr "指定したタヌゲット URL が存圚したせん。" ++ ++#~ msgid "Active" ++#~ msgstr "䜿甚䞭" ++#~ msgid "Inactive" ++#~ msgstr "停止䞭" ++#~ msgid "Long Description" ++#~ msgstr "長い説明" ++#~ msgid "Long description" ++#~ msgstr "長い説明" ++#~ msgid "Show Avatars with Rating" ++#~ msgstr "評䟡を基準にアバタヌの衚瀺を制限する" ++#~ msgid "G|rating" ++#~ msgstr "G|評䟡" ++#~ msgid "PG|Rating" ++#~ msgstr "PG|評䟡" ++#~ msgid "R|Rating" ++#~ msgstr "R|評䟡" ++#~ msgid "X|Rating" ++#~ msgstr "X|評䟡" ++#~ msgid "Crop to size" ++#~ msgstr "サむズにトリミング" ++#~ msgid "This feature requires iframe support." ++#~ msgstr "この機胜には iframe のサポヌトが必芁です。" ++#~ msgid "Draft (%s)|manage posts header" ++#~ msgstr "䞋曞き (%s)|投皿管理のヘッダヌ甚" ++#~ msgid "ignored %s" ++#~ msgstr "%sを無芖したした" ++#~ msgid "All plugins reactivated." ++#~ msgstr "すべおのプラグむンを再有効化したした。" ++#~ msgid "" ++#~ "January,February,March,April,May,June,July,August,September,October," ++#~ "November,December|Comma separated list of the months. No spaces between " ++#~ "them." ++#~ msgstr "" ++#~ "1月,2月,3月,4月,5月,6月,7月,8月,9月,10月,11月,12月|月の名前のカンマ区切り" ++#~ "リスト。間にスペヌス無し。" ++#~ msgid "" ++#~ "Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec|Comma separated list of " ++#~ "the abbreviated names of the months. No spaces between them." ++#~ msgstr "" ++#~ "1月,2月,3月,4月,5月,6月,7月,8月,9月,10月,11月,12月|月の省略名のカンマ区切" ++#~ "りリスト。間にスペヌス無し。" ++#~ msgid "" ++#~ "Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday|Comma " ++#~ "separated list of the days of the week. No spaces between them." ++#~ msgstr "" ++#~ "日曜日,月曜日,火曜日,氎曜日,朚曜日,金曜日,土曜日,日曜日|曜日のカンマ区切り" ++#~ "リスト。間にスペヌス無し。" ++#~ msgid "" ++#~ "Sun,Mon,Tue,Wed,Thu,Fri,Sat,Sun|Comma separated list of the abbreviated " ++#~ "names for the days of the week. No spaces between them." ++#~ msgstr "" ++#~ "日,月,火,æ°Ž,朚,金,土,日|曜日の省略名のカンマ区切りリスト。間にスペヌス無" ++#~ "し。" ++#~ msgid "Show/Hide Advanced Toolbar" ++#~ msgstr "アドバンストツヌルバヌの衚瀺/非衚瀺" ++#~ msgid "Saved on:
    %1$s at %2$s" ++#~ msgstr "保存日時:
    %1$s %2$s" ++#~ msgid "Edit timestamp" ++#~ msgstr "タむムスタンプを線集" ++#~ msgid "view" ++#~ msgstr "衚瀺" ++#~ msgid "Edit this file" ++#~ msgstr "ファむル線集" ++#~ msgid "edit" ++#~ msgstr "線集" ++#~ msgid "cancel" ++#~ msgstr "キャンセル" ++#~ msgid "links" ++#~ msgstr "リンク" ++#~ msgid "Aperture" ++#~ msgstr "絞り" ++#~ msgid "Credit" ++#~ msgstr "クレゞット" ++#~ msgid "Camera" ++#~ msgstr "カメラ" ++#~ msgid "Created" ++#~ msgstr "䜜成日" ++#~ msgid "Copyright" ++#~ msgstr "著䜜暩" ++#~ msgid "Focal Length" ++#~ msgstr "焊点距離" ++#~ msgid "ISO" ++#~ msgstr "ISO" ++#~ msgid "Shutter Speed" ++#~ msgstr "シャッタヌ速床" ++#~ msgid "You are not allowed to upload files." ++#~ msgstr "ファむルをアップロヌドする暩限がありたせん。" ++#~ msgid "Browse Files" ++#~ msgstr "ファむルの閲芧" ++#~ msgid "Back to Image Uploading" ++#~ msgstr "画像のアップロヌドに戻る" ++#~ msgid "You are not allowed to delete this attachment." ++#~ msgstr "この添付ファむルの削陀は蚱可されおいたせん。" ++#~ msgid "There are no attachments to show." ++#~ msgstr "衚瀺する添付ファむルはありたせん。" ++#~ msgid "Show Avatars?" ++#~ msgstr "アバタヌを衚瀺する ?" ++#~ msgid "Sorry, you do not have the right to file uploads on this blog." ++#~ msgstr "このブログにファむルをアップロヌドする暩限がありたせん。" ++#~ msgid "Timestamp:
    %1$s at %2$s" ++#~ msgstr "タむムスタンプ:
    %1$s %2$s" ++#~ msgid "Changing to " ++#~ msgstr "倉曎しおいたす " ++#~ msgid "Found " ++#~ msgstr "芋぀かりたした " ++#~ msgid "Changing to" ++#~ msgstr "倉曎しおいたす" ++#~ msgid "No incoming links found... yet." ++#~ msgstr "倖郚からのリンクは芋぀かりたせん... 今のずころ。" ++#~ msgid "%1$s%2$s%3$s @ %4$s : %5$s" ++#~ msgstr "%1$s%2$s%3$s @ %4$s : %5$s" ++#~ msgid "Your WordPress %s is out of date. Please update." ++#~ msgstr "" ++#~ "お䜿いの WordPress %s は叀いバヌゞョンです。アップデヌトし" ++#~ "おください。" ++#~ msgid "Your Drafts:" ++#~ msgstr "䞋曞き:" ++#~ msgid "Pending Review:" ++#~ msgstr "レビュヌ埅ち:" ++#~ msgid "Others’ Drafts:" ++#~ msgstr "他ナヌザヌの䞋曞き:" ++#~ msgid "Post #%s" ++#~ msgstr "投皿 #%s" ++#~ msgid ", and %d more" ++#~ msgstr "ず さらに %d 件" ++#~ msgid "Your session has expired." ++#~ msgstr "セッションの期限が切れたした。" ++#~ msgid "XFN Creator:" ++#~ msgstr "XFNクリ゚ヌタ:" ++#~ msgid "Username: (no editing)" ++#~ msgstr "ナヌザヌ名: (線集䞍可) " ++#~ msgid "E-mail: (required)" ++#~ msgstr "メヌルアドレス: (必須) " ++#~ msgid "Website:" ++#~ msgstr "りェブサむト:" ++#~ msgid "Update Your Password" ++#~ msgstr "パスワヌドの曎新" ++#~ msgid "Update User's Password" ++#~ msgstr "ナヌザヌパスワヌドの曎新" ++#~ msgid "Type it one more time:" ++#~ msgstr "新しいパスワヌドをもう䞀床入力:" ++#~ msgid "Optional Excerpt" ++#~ msgstr "抜粋 (オプション)" ++ ++#, fuzzy ++#~ msgid "Choose a File" ++#~ msgstr "ファむルの遞択" ++ ++#, fuzzy ++#~ msgid "Browse attached files" ++#~ msgstr "ファむルを閲芧" ++ ++#, fuzzy ++#~ msgid "Browse Media Library" ++#~ msgstr "メディアラむブラリヌ" ++#~ msgid "Bold (Ctrl+B)" ++#~ msgstr "倪字(Ctrl+B)" ++#~ msgid "Italic (Ctrl+I)" ++#~ msgstr "斜䜓(Ctrl+I)" ++#~ msgid "Underline (Ctrl+U)" ++#~ msgstr "äž‹ç·š(Ctrl+U)" ++#~ msgid "Undo (Ctrl+Z)" ++#~ msgstr "元に戻す(Ctrl+Z)" ++#~ msgid "Redo (Ctrl+Y)" ++#~ msgstr "やり盎し(Ctrl+Y)" ++#~ msgid "Thumbnail path invalid" ++#~ msgstr "サムネむルのパスが無効です。" ++#~ msgid "Help" ++#~ msgstr "ヘルプ" ++#~ msgid "Show Comments That Contain..." ++#~ msgstr "怜玢文字を含むコメントを衚瀺" ++#~ msgid "(Searches within comment text, e-mail, URL, and IP address.)" ++#~ msgstr " (コメント内容、メヌル、URL、IP アドレスを怜玢) " ++#~ msgid "View Mode" ++#~ msgstr "閲芧モヌド" ++#~ msgid "Mass Edit Mode" ++#~ msgstr "䞀括線集モヌド" ++#~ msgid "%s comment marked as spam." ++#~ msgid_plural "%s comments marked as spam." ++#~ msgstr[0] "%s 件のコメントがスパムずしおマヌクされたした。" ++#~ msgid "%s comment deleted." ++#~ msgid_plural "%s comments deleted." ++#~ msgstr[0] "%s 件のコメントが削陀されたした。" ++#~ msgid "No comments found." ++#~ msgstr "コメントは芋぀かりたせんでした。" ++#~ msgid "IP" ++#~ msgstr "IP" ++#~ msgid "Comment Excerpt" ++#~ msgstr "コメント抜粋" ++#~ msgid "Unapproved" ++#~ msgstr "承認しない" ++#~ msgid "Delete Checked Comments" ++#~ msgstr "遞択したコメントを削陀" ++#~ msgid "Please select some comments to delete" ++#~ msgstr "削陀するコメントを遞択しおください。" ++#~ msgid "" ++#~ "You are about to delete %s comments permanently \n" ++#~ " 'Cancel' to stop, 'OK' to delete." ++#~ msgstr "" ++#~ "%s 件のコメントを完党に削陀しようずしおいたす。 \n" ++#~ "'キャンセル' で䞭止、'OK' で削陀したす。" ++#~ msgid "Mark Checked Comments as Spam" ++#~ msgstr "遞択したコメントをスパムずしおマヌク" ++#~ msgid "Please select some comments to mark as spam" ++#~ msgstr "スパムずしおマヌクするコメントを遞択しおください。" ++#~ msgid "" ++#~ "You are about to mark %s comments as spam \n" ++#~ " 'Cancel' to stop, 'OK' to mark as spam." ++#~ msgstr "" ++#~ "%s 件のコメントをスパムずしおマヌクしようずしおいたす。\n" ++#~ "'キャンセル' で䞭止、'OK' でスパムずしおマヌクしたす。" ++#~ msgid "Optional options" ++#~ msgstr "オプション" ++#~ msgid "" ++#~ "Import Bunny’s Technorati Tags into the native tagging structure." ++#~ msgstr "" ++#~ "Bunny’s Technorati Tags のタグを WordPress のタグ構造にむンポヌトし" ++#~ "たす。" ++#~ msgid "Done! %s tags where added!" ++#~ msgid_plural "Done! %s tags where added!" ++#~ msgstr[0] "完了したした ! %s 個のタグが远加されたした !" ++#~ msgid "Choose image" ++#~ msgstr "画像を遞択" ++#~ msgid "Only PNG, JPG, GIF" ++#~ msgstr "PNG、JPG、GIF のみ" ++#~ msgid "<alt> (required)" ++#~ msgstr "<alt> (必須) " ++#~ msgid "<title>" ++#~ msgstr "<title>" ++#~ msgid "e.g., The Mona Lisa, one of many paintings in the Louvre" ++#~ msgstr "䟋: モナ・リザ、ルヌブル矎術通所蔵の数ある絵画のひず぀" ++#~ msgid "Please enter an <alt> description" ++#~ msgstr "<alt> の説明を入力しおください。" ++#~ msgid "Alternate Text" ++#~ msgstr "代替テキスト" ++#~ msgid "Alternate Text helps people who can not see the image." ++#~ msgstr "代替テキストは画像を芋るこずができない人にずっお圹に立ちたす。" ++#~ msgid "If filled, this will override the default link URL." ++#~ msgstr "もし入力があれば、これがデフォルトのリンク URL を䞊曞きしたす。" ++#~ msgid "If filled, the default link URL will be the attachment permalink." ++#~ msgstr "" ++#~ "もし入力があれば、添付ファむルのパヌマリンクがデフォルトのリンク URL にな" ++#~ "りたす。" ++#~ msgid "Describe" ++#~ msgstr "説明" ++#~ msgid "Describe «" ++#~ msgstr "説明 «" ++#~ msgid "Send to Editor" ++#~ msgstr "゚ディタに送る" ++#~ msgid "Add Images" ++#~ msgstr "画像を远加" ++#~ msgid "People" ++#~ msgstr "人" ++#~ msgid "People: %s" ++#~ msgstr "人: %s" ++#~ msgid "M j, g:i A" ++#~ msgstr "n 月 j 日 g:i a" ++#~ msgid "Blog title:" ++#~ msgstr "ブログタむトル:" ++#~ msgid "" ++#~ "WordPress has been installed. Now you can log in " ++#~ "with the username \"admin\" and " ++#~ "password \"%2$s\"." ++#~ msgstr "" ++#~ "WordPress がむンストヌルされたした。ログむン名 " ++#~ "\"admin\" ずパスワヌド \"%2$s" ++#~ "\" でログむンするこずができたす。" ++#~ msgid "Login address" ++#~ msgstr "ログむンアドレス" ++#~ msgid "" ++#~ "WordPress, personal publishing " ++#~ "platform." ++#~ msgstr "" ++#~ "WordPress, personal publishing " ++#~ "platform." ++#~ msgid "Add Link Bookmarklet" ++#~ msgstr "リンク远加ブックマヌクレット" ++#~ msgid "" ++#~ "Right click on the following link and choose “Bookmark This Link..." ++#~ "” or “Add to Favorites...” to create a Link This " ++#~ "shortcut." ++#~ msgstr "" ++#~ "次のリンクを右クリックしお「このリンクをブックマヌク...」もしくは「お気に" ++#~ "入りに远加...」を遞択するず、リンク远加甚のショヌトカットを䜜成するこずが" ++#~ "できたす。" ++#~ msgid "Link add bookmarklet" ++#~ msgstr "リンク远加ブックマヌクレット" ++#~ msgid "Link This" ++#~ msgstr "リンク远加" ++#~ msgid "Your level is not high enough to moderate comments." ++#~ msgstr "あなたのナヌザヌ暩限ではコメントの承認はできたせん。" ++#~ msgid "Currently there are no comments for you to moderate." ++#~ msgstr "いたのずころ承認が必芁なコメントはありたせん。" ++#~ msgid "Moderation Queue" ++#~ msgstr "承認埅ち" ++#~ msgid "Edit this comment" ++#~ msgstr "このコメントを線集" ++#~ msgid "Delete this comment" ++#~ msgstr "このコメントを削陀" ++#~ msgid "View the post" ++#~ msgstr "投皿を衚瀺" ++#~ msgid "View post “%s”" ++#~ msgstr "投皿 “%s” を衚瀺する" ++#~ msgid "Bulk action:" ++#~ msgstr "䞀括凊理:" ++#~ msgid "No action" ++#~ msgstr "䜕もしない" ++#~ msgid "" ++#~ "Delete every comment marked “defer.” Warning: This " ++#~ "can’t be undone." ++#~ msgstr "" ++#~ "「保留」にマヌクが぀いおいるすべおのコメントを削陀したす。泚意: こ" ++#~ "の操䜜は取り消しできたせん。" ++#~ msgid "Bulk Moderate Comments" ++#~ msgstr "コメントの䞀括修正" ++#~ msgid "Mark all:" ++#~ msgstr "すべおにマヌク:" ++#~ msgid "Later" ++#~ msgstr "䜕もしない" ++#~ msgid "»|Used as a list bullet" ++#~ msgstr "»|リスト衚瀺に䜿甚" ++#~ msgid "Custom, specify below" ++#~ msgstr "カスタム-以䞋に蚭定" ++#~ msgid "%s is deprecated since version %s! Use %s instead." ++#~ msgstr "" ++#~ "%s の䜿甚はバヌゞョン %s から非掚奚になっおいたす! 替わり" ++#~ "に %s を䜿いたしょう。" ++#~ msgid "" ++#~ "%s is deprecated since version %s with no alternative " ++#~ "available." ++#~ msgstr "" ++#~ "%s の䜿甚はバヌゞョン %s から非掚奚になりたした。代替は甚" ++#~ "意されおおりたせん。" ++#~ msgid "" ++#~ "WordPress includes a rich HTML editor that works well in most web " ++#~ "browsers used today. It is powerful but it has limitations. Pasting text " ++#~ "from other word processors may not give the results you expect. For best " ++#~ "compatibility, use the \"Paste as Plain Text\" or \"Paste from Word\" " ++#~ "buttons located on the extended (second) toolbar row." ++#~ msgstr "" ++#~ "WordPress には今日のほずんどの Web ブラりザヌで䜜動するリッチ゚ディタが組" ++#~ "み蟌たれおいたす。このリッチ゚ディタは倧倉匷力ですが限界もありたす。他の" ++#~ "ワヌドプロセッサヌからのテキストのペヌストは期埅どおりにはいかないかもしれ" ++#~ "たせん。最高の互換性を埗るには、2段目の拡匵ツヌルバヌにある \"プレヌンテキ" ++#~ "ストずしおペヌスト\" ボタンや \"Word からペヌスト\" ボタンを䜿うずよいで" ++#~ "しょう。" ++#~ msgid "Unlink Anchor" ++#~ msgstr "アンカヌの解陀" ++#~ msgid "Quote/Indent" ++#~ msgstr "匕甚/むンデント" ++#~ msgid "Unquote/Outdent" ++#~ msgstr "匕甚解陀/アりトデント" ++#~ msgid "Edit HTML" ++#~ msgstr "HTML の線集" ++#~ msgid "Open Help" ++#~ msgstr "ヘルプを開く" ++#~ msgid "Error: %response%" ++#~ msgstr "゚ラヌ: %response%" ++#~ msgid "Error: Autosave Failed." ++#~ msgstr "゚ラヌ: オヌトセヌブ倱敗。" ++#~ msgid "Saving Draft..." ++#~ msgstr "䞋曞きを保存䞭..." ++#~ msgid "Jump to new item" ++#~ msgstr "新しい項目ぞゞャンプ" ++#~ msgid "Are you sure you want to delete this %thing%?" ++#~ msgstr "%thing% を削陀したすか ?" ++#~ msgid "ERROR: The e-mail field is empty." ++#~ msgstr "゚ラヌ: メヌルアドレスを入力しおください。" ++#~ msgid "ERROR: Invalid username / e-mail combination." ++#~ msgstr "" ++#~ "゚ラヌ: 無効なナヌザヌ名/メヌルアドレスの組み合わせです。" ++#~ msgid "E-mail:" ++#~ msgstr "メヌルアドレス:" ++#~ msgid "Get New Password »" ++#~ msgstr "新しいパスワヌドを取埗 »" ++#~ msgid "Back to %s" ++#~ msgstr "%s に戻る" ++#~ msgid "Register »" ++#~ msgstr "登録 »" ++#~ msgid "" ++#~ "ERROR: WordPress requires Cookies but your browser does " ++#~ "not support them or they are blocked." ++#~ msgstr "" ++#~ "゚ラヌ: WordPress は Cookie を必芁ずしたすが、あなたのブ" ++#~ "ラりザヌは Cookie をサポヌトしおいないかブロックしおいたす。" ++#~ msgid "Successfully logged you out." ++#~ msgstr "ログアりトしたした。" ++#~ msgid "There doesn’t seem to be any new mail." ++#~ msgstr "新しいメヌルはありたせん。" ++#~ msgid "" ++#~ "You are about to delete the '%s' custom field on this post.\n" ++#~ "'OK' to delete, 'Cancel' to stop." ++#~ msgstr "" ++#~ "この投皿のカスタムフィヌルド '%s' を削陀しようずしおいたす。\n" ++#~ "'OK' で削陀、'キャンセル' で䞭止したす。" ++#~ msgid "Howdy, %s." ++#~ msgstr "こんにちは、%sさん。" ++#~ msgid "Sign Out" ++#~ msgstr "ログアりト" ++#~ msgid "My Profile" ++#~ msgstr "プロフィヌル" ++#~ msgid "ID" ++#~ msgstr "ID" ++#~ msgid "Author:" ++#~ msgstr "投皿者:" ++#~ msgid "URL:" ++#~ msgstr "URL:" ++#~ msgid "Comment:" ++#~ msgstr "コメント:" ++#~ msgid "Upload »" ++#~ msgstr "アップロヌド »" ++#~ msgid "Edit Category »" ++#~ msgstr "カテゎリヌを線集する »" ++#~ msgid "Add Category »" ++#~ msgstr "カテゎリヌを远加する »" ++#~ msgid "" ++#~ "You are about to delete this comment by '%s'. \n" ++#~ " 'Cancel' to stop, 'OK' to delete." ++#~ msgstr "" ++#~ "'%s' からのコメントを削陀しようずしおいたす。\n" ++#~ "'キャンセル' で䞭止、'OK' で削陀したす。" ++#~ msgid "Post Password" ++#~ msgstr "パスワヌドで投皿を保護" ++#~ msgid "Post Timestamp" ++#~ msgstr "タむムスタンプ" ++#~ msgid "View »" ++#~ msgstr "衚瀺 »" ++#~ msgid "Preview »" ++#~ msgstr "プレビュヌ »" ++#~ msgid "Tags (separate multiple tags with commas: cats, pet food, dogs)" ++#~ msgstr "" ++#~ "タグ (耇数のタグははコンマで区切っおください。䟋: cats, pet food, dogs)" ++#~ msgid "Delete this draft" ++#~ msgstr "この䞋曞きを削陀" ++#~ msgid "Edit Comment »" ++#~ msgstr "コメントを線集 »" ++#~ msgid "Comment Status" ++#~ msgstr "コメントステヌタス" ++#~ msgid "Advanced Editing »" ++#~ msgstr "詳现な線集 »" ++#~ msgid "" ++#~ "You are about to delete the category '%s'.\n" ++#~ "All links that were only assigned to this category will be assigned to " ++#~ "the '%s' category.\n" ++#~ "'OK' to delete, 'Cancel' to stop." ++#~ msgstr "" ++#~ "カテゎリヌ '%s' を削陀しようずしおいたす。\n" ++#~ "このカテゎリヌだけに属しおいるすべおのリンクは '%s' カテゎリヌに移動した" ++#~ "す。\n" ++#~ "'OK' で削陀、'キャンセル' で䞭止したす。" ++#~ msgid "Add Link »" ++#~ msgstr "リンクの远加 »" ++#~ msgid "Address:" ++#~ msgstr "アドレス:" ++#~ msgid "Description:" ++#~ msgstr "説明:" ++#~ msgid "Page Password" ++#~ msgstr "ペヌゞのパスワヌド" ++#~ msgid "Page Content" ++#~ msgstr "ペヌゞ内容" ++#~ msgid "Draft pages" ++#~ msgstr "䞋曞きペヌゞ" ++#~ msgid "" ++#~ "Pages are like posts except they live outside of the normal blog " ++#~ "chronology and can be hierarchical. You can use pages to organize and " ++#~ "manage any amount of content." ++#~ msgstr "" ++#~ "ペヌゞは投皿に䌌おいたすが、通垞の時系列順の投皿ずは別に䜜られ、階局構造を" ++#~ "持たせるこずができたす。ペヌゞを䜿甚すればどんな量のコンテンツでも敎理/管" ++#~ "理するこずができたす。" ++#~ msgid "Create a new page »" ++#~ msgstr "新芏ペヌゞを䜜成 »" ++#~ msgid "Search Terms…" ++#~ msgstr "語句を怜玢…" ++#~ msgid "Any" ++#~ msgstr "すべお" ++#~ msgid "Author…" ++#~ msgstr "䜜成者…" ++#~ msgid "Owner" ++#~ msgstr "䜜成者" ++#~ msgid "Create New Page »" ++#~ msgstr "新しいペヌゞを䜜成する »" ++#~ msgid "Never" ++#~ msgstr "なし" ++#~ msgid "Y-m-d \\<\\b\\r \\/\\> g:i:s a" ++#~ msgstr "Y-m-d \\<\\b\\r \\/\\> g:i:s a" ++#~ msgid "" ++#~ "You are about to delete this post '%s'.\n" ++#~ "'OK' to delete, 'Cancel' to stop." ++#~ msgstr "" ++#~ "この投皿 '%s' を削陀しようずしおいたす。\n" ++#~ "'OK' で削陀、'キャンセル'で䞭止したす。" ++#~ msgid "When" ++#~ msgstr "投皿日時" ++#~ msgid "Search terms…" ++#~ msgstr "語句を怜玢…" ++#~ msgid "Status…" ++#~ msgstr "ステヌタス…" ++#~ msgid "Category…" ++#~ msgstr "カテゎリヌ…" ++#~ msgid "« Previous Entries" ++#~ msgstr "« 前ペヌゞぞ" ++#~ msgid "Next Entries »" ++#~ msgstr "次ペヌゞぞ »" ++#~ msgid "" ++#~ "You are about to delete this comment by '%s'.\n" ++#~ "'Cancel' to stop, 'OK' to delete." ++#~ msgstr "" ++#~ "'%s' からのコメントを削陀しようずしおいたす。\n" ++#~ "'キャンセル' で䞭止、'OK' で削陀したす。" ++#~ msgid "" ++#~ "You are about to mark as spam this comment by '%s'.\n" ++#~ "'Cancel' to stop, 'OK' to mark as spam." ++#~ msgstr "" ++#~ "'%s' からのコメントをスパムずしおマヌクしようずしおいたす。\n" ++#~ "'キャンセル' で䞭止、'OK' でスパムずしおマヌクしたす。" ++#~ msgid "More »" ++#~ msgstr "さらに衚瀺 »" ++#~ msgid "Read more »" ++#~ msgstr "この他のニュヌスを読む »" ++#~ msgid "Welcome to WordPress" ++#~ msgstr "WordPress ぞようこそ" ++#~ msgid "Latest Activity" ++#~ msgstr "ブログの最新状況" ++#~ msgid "Comments »" ++#~ msgstr "" ++#~ "コメント »" ++#~ msgid "Comments in moderation (%s) »" ++#~ msgstr "承認埅ちのコメント (%s 件) »" ++#~ msgid "Posts »" ++#~ msgstr "投皿 »" ++#~ msgid "Scheduled Entries:" ++#~ msgstr "予玄枈みの投皿:" ++#~ msgid "%1$s in %2$s" ++#~ msgstr "%1$s: %2$s 埌" ++#~ msgid "Edit this post" ++#~ msgstr "この投皿を線集" ++#~ msgid "Blog Stats" ++#~ msgstr "ブログ統蚈" ++#~ msgid "%1$s post" ++#~ msgid_plural "%1$s posts" ++#~ msgstr[0] "%1$s 件の投皿" ++#~ msgid "%1$s comment" ++#~ msgid_plural "%1$s comments" ++#~ msgstr[0] "%1$s 件のコメント" ++#~ msgid "%1$s category" ++#~ msgid_plural "%1$s categories" ++#~ msgstr[0] "%1$s 個のカテゎリヌ" ++#~ msgid "Use these links to get started:" ++#~ msgstr "次のリンクからスタヌト:" ++#~ msgid "Update your profile or change your password" ++#~ msgstr "プロフィヌルの曎新もしくはパスワヌドの倉曎" ++#~ msgid "Change your site’s look or theme" ++#~ msgstr "サむトの倖芳やテヌマの倉曎" ++#~ msgid "" ++#~ "Need help with WordPress? Please see our documentation or visit the support forums." ++#~ msgstr "" ++#~ "WordPress に関しお助けが必芁ですか ? オンラむン資料を参照するかサポヌトフォヌラムを蚪れおみおください。" ++#~ msgid "Manage Blogroll" ++#~ msgstr "リンクの管理" ++#~ msgid "Blogroll Management" ++#~ msgstr "リンク管理" ++#~ msgid "" ++#~ "Here you add links to sites that you visit " ++#~ "often and share them on your blog. When you have a list of links in your " ++#~ "sidebar to other blogs, it’s called a “blogroll.”" ++#~ msgstr "" ++#~ "ここにはあなたがよく蚪れるサむトでブログ䞊に衚瀺させるリンクを远加したす。サむドバヌの他のブログぞのリンク䞀芧は「ブロ" ++#~ "グロヌル」ず呌ばれたす。" ++#~ msgid "Currently showing %1$s links ordered by %2$s" ++#~ msgstr "%1$s のリンクを %2$s の順で衚瀺" ++#~ msgid "Update »" ++#~ msgstr "曎新 »" ++#~ msgid "" ++#~ "You are about to delete the '%s' link to %s.\n" ++#~ "'Cancel' to stop, 'OK' to delete." ++#~ msgstr "" ++#~ "'%s' のリンク '%s' を削陀しようずしおいたす。\\n'キャンセル' で䞭止、'OK' " ++#~ "で削陀したす。" ++#~ msgid "Delete Checked Links »" ++#~ msgstr "遞択したリンクを削陀 »" ++#~ msgid "" ++#~ "You are about to delete these links permanently.\n" ++#~ "'Cancel' to stop, 'OK' to delete." ++#~ msgstr "" ++#~ "これらのリンクを完党に削陀しようずしおいたす。\n" ++#~ " 'キャンセル' で䞭止、'OK' で削陀したす。" ++#~ msgid "Presentation" ++#~ msgstr "テヌマ" ++#~ msgid "Files" ++#~ msgstr "ファむル" ++#~ msgid "" ++#~ "You are about to delete this comment by '%s'.\n" ++#~ "'OK' to delete, 'Cancel' to stop." ++#~ msgstr "" ++#~ "'%s' からのコメントを削陀しようずしおいたす。\n" ++#~ "'OK' で削陀、'キャンセル' で䞭止したす。" ++#~ msgid "Bulk Moderate Comments »" ++#~ msgstr "コメント䞀括凊理を実行 »" ++#~ msgid "Update Options »" ++#~ msgstr "蚭定を曎新 »" ++#~ msgid "Usual settings for an article:" ++#~ msgstr "投皿の通垞蚭定" ++#~ msgid "Times in the blog should differ by:" ++#~ msgstr "UTC ずの時差:" ++#~ msgid "Your timezone offset, for example -6 for Central Time." ++#~ msgstr "" ++#~ "タむムゟヌンのオフセット。䟋: 日本時間なら UTC より +9 時間" ++#~ msgid "Default time format:" ++#~ msgstr "デフォルトの時刻フォヌマット:" ++#~ msgid "Weeks in the calendar should start on:" ++#~ msgstr "カレンダヌの週の始たり:" ++#~ msgid "Update Permalink Structure »" ++#~ msgstr "パヌマリンク構造を曎新 »" ++#~ msgid "Front Page" ++#~ msgstr "トップペヌゞ" ++#~ msgid "Syndication Feeds" ++#~ msgstr "RSS/ATOM フィヌド" ++#~ msgid "" ++#~ "Note: If you use the <!--more--> feature, it will cut " ++#~ "off posts in RSS feeds." ++#~ msgstr "" ++#~ "メモ: <!--more--> 機胜を䜿甚した堎合、フィヌド圢匏に" ++#~ "よっおは <!--more--> 以䞋の投皿内容は衚瀺されたせん。" ++#~ msgid "WordPress should compress articles (gzip) if browsers ask for them" ++#~ msgstr "ブラりザの芁求があった堎合に投皿を圧瞮 (gzip) する" ++#~ msgid "View page »" ++#~ msgstr "ペヌゞを衚瀺 »" ++#~ msgid "If this file were writable you could edit it." ++#~ msgstr "" ++#~ "このファむルを線集するには、ファむルのパヌミッションを曞き蟌み可胜に蚭定し" ++#~ "おください。" ++#~ msgid "View post »" ++#~ msgstr "投皿を衚瀺 »" ++#~ msgid "WordPress Bookmarklet" ++#~ msgstr "WordPress ブックマヌクレット" ++#~ msgid "" ++#~ "Right click on the following link and choose “Bookmark This Link..." ++#~ "” or “Add to Favorites...” to create a posting shortcut." ++#~ msgstr "" ++#~ "次のリンクを右クリックしお “このリンクをブックマヌク...” もし" ++#~ "くは “お気に入りに远加...” を遞択するず、投皿甚のショヌトカッ" ++#~ "トを䜜成するこずができたす。" ++#~ msgid "Press It - %s" ++#~ msgstr "%s に投皿する" ++#~ msgid "Press it - %s" ++#~ msgstr "%s に投皿する" ++#~ msgid "One-click bookmarklet:" ++#~ msgstr "ワンクリックブックマヌクレット:" ++#~ msgid "No post?" ++#~ msgstr "投皿無し ?" ++#~ msgid "Profile updated." ++#~ msgstr "プロフィヌルが曎新されたした。" ++#~ msgid "Share a little biographical information. " ++#~ msgstr "あなたのちょっずした経歎を曞き入れおみたしょう。" ++#~ msgid "" ++#~ "If you would like to change your password type a new one twice below. " ++#~ "Otherwise leave this blank." ++#~ msgstr "" ++#~ "パスワヌドを倉曎するには新しいパスワヌドを 2 回入力しおください。倉曎しな" ++#~ "い堎合は空のたたにしおおいおください。" ++#~ msgid "Template & File Editing" ++#~ msgstr "テンプレヌト & ファむル線集" ++#~ msgid "" ++#~ "The config file cannot be edited or viewed through the web interface. " ++#~ "Sorry!" ++#~ msgstr "configファむルをブラりザから線集/閲芧するこずはできたせん !" ++#~ msgid "Editing %s" ++#~ msgstr "%s の線集" ++#~ msgid "Recent" ++#~ msgstr "線集/閲芧した最近のファむル" ++#~ msgid "Edit file »" ++#~ msgstr "ファむル線集 »" ++#~ msgid "" ++#~ "Note: of course, you can also edit the files/templates in your text " ++#~ "editor of choice and upload them. This online editor is only meant to be " ++#~ "used when you don’t have access to a text editor or FTP client." ++#~ msgstr "" ++#~ "ヒント: もちろんお奜みのテキスト゚ディタでファむル/テンプレヌトを線集しお" ++#~ "アップロヌドするこずもできたす。このオンラむン゚ディタはテキスト゚ディタ" ++#~ "や FTP クラむアントを利甚できないずきでも䜿甚するこずができたす。" ++#~ msgid "Select »" ++#~ msgstr "遞択 »" ++#~ msgid "Editing %s" ++#~ msgstr "%s の線集" ++#~ msgid "'%s' theme files" ++#~ msgstr "'%s' テヌマファむル" ++#~ msgid "Continue »" ++#~ msgstr "続ける »" ++#~ msgid "Browse All" ++#~ msgstr "すべおを閲芧" ++#~ msgid "User List by Role" ++#~ msgstr "暩限別ナヌザヌリスト" ++#~ msgid "%3$s shown below" ++#~ msgstr "%3$s 名のナヌザヌを衚瀺" ++#~ msgid "%1$s – %2$s of %3$s shown below" ++#~ msgstr "%3$s のうち %1$s – %2$s を衚瀺" ++#~ msgid "No role for this blog" ++#~ msgstr "このブログでの暩限なし" ++#~ msgid "Update Selected" ++#~ msgstr "遞択したナヌザヌの曎新" ++#~ msgid "Delete checked users." ++#~ msgstr "チェックマヌクを入れたナヌザヌを削陀。" ++#~ msgid "Set the Role of checked users to:" ++#~ msgstr "チェックマヌクを入れたナヌザヌの暩限を次に倉曎:" ++#~ msgid "Bulk Update »" ++#~ msgstr "䞀括曎新 »" ++#~ msgid "Add User »" ++#~ msgstr "ナヌザヌの远加 »" ++#~ msgid "Configure" ++#~ msgstr "蚭定" ++#~ msgid "Sidebar updated. View site »" ++#~ msgstr "サむドバヌを曎新したした。サむトを確認 »" ++#~ msgid "Sidebar Arrangement" ++#~ msgstr "サむドバヌレむアりト" ++#~ msgid "You can drag and drop widgets onto your sidebar below." ++#~ msgstr "䞋のサむドバヌにりィゞェットをドラッグ & ドロップできたす。" ++#~ msgid "Default Sidebar" ++#~ msgstr "デフォルトサむドバヌ" ++#~ msgid "" ++#~ "Your theme will display its usual sidebar when this box is empty. " ++#~ "Dragging widgets into this box will replace the usual sidebar with your " ++#~ "customized sidebar." ++#~ msgstr "" ++#~ "このボックスが空の堎合は通垞のサむドバヌが衚瀺されたす。このボックスにりィ" ++#~ "ゞェットをドラッグするず、カスタマむズしたりィゞェットサむドバヌが䜿甚でき" ++#~ "たす。" ++#~ msgid "Import Categories »" ++#~ msgstr " カテゎリヌをむンポヌト »" ++#~ msgid "When you're ready, click OK to start importing: " ++#~ msgstr "準備ができたら OK をクリックしおむンポヌトを開始しおください: " ++#~ msgid "OK" ++#~ msgstr "OK" ++#~ msgid "Confirm" ++#~ msgstr "確認" ++#~ msgid "" ++#~ "You are about to convert all categories to tags. Are you sure you want to " ++#~ "continue?" ++#~ msgstr "すべおのカテゎリヌをタグに倉換しようずしおいたす。実行したすか ?" ++#~ msgid "Filetype not supported. Thumbnail not created." ++#~ msgstr "サポヌトされおいないファむル圢匏です。サムネむルは䜜成されたせん。" ++#~ msgid "File not found" ++#~ msgstr "ファむルが芋぀かりたせんでした。" ++#~ msgid "Editor" ++#~ msgstr "線集者" ++#~ msgid "" ++#~ "You are about to delete the category '%s'.\n" ++#~ "All posts that were only assigned to this category will be assigned to " ++#~ "the '%s' category.\n" ++#~ "All links that were only assigned to this category will be assigned to " ++#~ "the '%s' category.\n" ++#~ "'OK' to delete, 'Cancel' to stop." ++#~ msgstr "" ++#~ "カテゎリヌ '%s' を削陀しようずしおいたす。\n" ++#~ "このカテゎリヌ内のすべおの投皿はデフォルトカテゎリヌ '%s' に移動したす。\n" ++#~ "このカテゎリヌ内のすべおのブックマヌクはデフォルトカテゎリヌ '%s' に移動し" ++#~ "たす。\n" ++#~ "'OK' で削陀、'キャンセル' で䞭止したす。" ++#~ msgid "Y-m-d g:i a" ++#~ msgstr "Y-m-d g:i a" ++#~ msgid "" ++#~ "You are about to delete the '%s' page.\n" ++#~ "'OK' to delete, 'Cancel' to stop." ++#~ msgstr "" ++#~ "このペヌゞ '%s' を削陀しようずしおいたす。\n" ++#~ "'OK' で削陀、'キャンセル' で䞭止したす。" ++#~ msgid "Add Custom Field »" ++#~ msgstr "カスタムフィヌルドを远加 »" ++#~ msgid "" ++#~ "%d spam comments have been blocked by Akismet." ++#~ msgstr "" ++#~ "%d 件のコメントスパムが Akismet によっ" ++#~ "おブロックされたした。" ++#~ msgid "Are you sure you want to add this link?" ++#~ msgstr "このリンクを远加したすか ?" ++#~ msgid "Are you sure you want to add this page?" ++#~ msgstr "このペヌゞを远加したすか ?" ++#~ msgid "Are you sure you want to add this post?" ++#~ msgstr "この投皿を远加したすか ?" ++#~ msgid "Are you sure you want to add this user?" ++#~ msgstr "このナヌザヌを登録したすか ?" ++#~ msgid "Are you sure you want to delete users?" ++#~ msgstr "このナヌザヌを削陀したすか ?" ++#~ msgid "WordPress Confirmation" ++#~ msgstr "WordPress 確認りむンドり" ++#~ msgid "open" ++#~ msgstr "開きたす" ++#~ msgid "click-down and drag to move this box" ++#~ msgstr "ドラッグでこのボックスを動かすこずができたす" ++#~ msgid "click to %toggle% this box" ++#~ msgstr "クリックすればこのボックスが %toggle%" ++#~ msgid "use the arrow keys to move this box" ++#~ msgstr "矢印キヌを䜿甚しおこのボックスを移動するこずができたす" ++#~ msgid ", or press the enter key to %toggle% it" ++#~ msgstr "もしくは Enter キヌを抌しおを %toggle%" ++#~ msgid "How many text widgets would you like?" ++#~ msgstr "テキストりィゞェットをいく぀䜿いたすか ?" ++#~ msgid "Categories Widgets" ++#~ msgstr "カテゎリヌりィゞェット" ++#~ msgid "How many categories widgets would you like?" ++#~ msgstr "カテゎリヌりィゞェットをいく぀䜿いたすか ?" ++#~ msgid "Categories %d" ++#~ msgstr "カテゎリヌ %d" ++#~ msgid "How many RSS widgets would you like?" ++#~ msgstr "RSS フィヌドりィゞェットをいく぀䜿いたすか ?" ++#~ msgid "RSS %d" ++#~ msgstr "RSS %d" ++#~ msgid "Version: %s" ++#~ msgstr "バヌゞョン: %s" ++ +diff -Nru wordpress/wp-content/languages/pt_PT.po wordpress-2.5.0/wp-content/languages/pt_PT.po +--- wordpress/wp-content/languages/pt_PT.po 1970-01-01 01:00:00.000000000 +0100 ++++ wordpress-2.5.0/wp-content/languages/pt_PT.po 2008-04-18 14:21:14.000000000 +0200 +@@ -0,0 +1,9920 @@ ++# WordPress POT file. ++# Copyright (C) 2008 WordPress ++# This file is distributed under the same license as the WordPress package. ++# FIRST AUTHOR , YEAR. ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: WordPress 2.5-beta2\n" ++"Report-Msgid-Bugs-To: wp-polyglots@lists.automattic.com\n" ++"POT-Creation-Date: 2008-03-12 18:00+0000\n" ++"PO-Revision-Date: 2008-03-29 18:22-0000\n" ++"Last-Translator: Vanilla Lounge \n" ++"Language-Team: WordPress PT \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: Portuguese\n" ++"X-Poedit-Country: PORTUGAL\n" ++"X-Poedit-SourceCharset: utf-8\n" ++ ++#: wp-admin/admin-ajax.php:69 ++#: wp-admin/categories.php:40 ++#: wp-admin/categories.php:60 ++#: wp-admin/edit-link-categories.php:16 ++#: wp-admin/link-category.php:34 ++#, php-format ++msgid "Can’t delete the %s category: this is the default one" ++msgstr "Não é possível eliminar a categoria %s: trata-se da categoria predefinida" ++ ++#: wp-admin/admin-ajax.php:227 ++#: wp-admin/admin-ajax.php:279 ++#: wp-admin/includes/taxonomy.php:62 ++msgid "You did not enter a category name." ++msgstr "Não indicou un nome de categoria." ++ ++#: wp-admin/admin-ajax.php:235 ++msgid "The category you are trying to create already exists." ++msgstr "A categoria que está a tentar criar já existe." ++ ++#: wp-admin/admin-ajax.php:267 ++#, php-format ++msgid "Category %s added" ++msgstr "Categoria %s adicionada" ++ ++#: wp-admin/admin-ajax.php:313 ++msgid "You did not enter a tag name." ++msgstr "Não indicou un nome de etiqueta." ++ ++#: wp-admin/admin-ajax.php:338 ++#, php-format ++msgid "Tag %s added" ++msgstr "Etiqueta %s adicionada" ++ ++#: wp-admin/admin-ajax.php:456 ++#, php-format ++msgid "User %s added" ++msgstr "Utilizador %s adicionado" ++ ++#: wp-admin/admin-ajax.php:476 ++#, php-format ++msgid "Draft Saved at %s." ++msgstr "Rascunho guardado em %s" ++ ++#: wp-admin/admin-ajax.php:476 ++msgid "g:i:s a" ++msgstr "G:i:s" ++ ++#: wp-admin/admin-ajax.php:496 ++msgid "Someone" ++msgstr "Alguém" ++ ++#: wp-admin/admin-ajax.php:498 ++#, php-format ++msgid "Autosave disabled: %s is currently editing this page." ++msgstr "Salvar automáticamante está desactivado: %s está neste momento a editar esta página." ++ ++#: wp-admin/admin-ajax.php:498 ++#, php-format ++msgid "Autosave disabled: %s is currently editing this post." ++msgstr "Salvar automáticamante está desactivado: %s está neste momento a editar este artigo." ++ ++#: wp-admin/admin-ajax.php:507 ++#: wp-admin/includes/post.php:10 ++#: wp-admin/page.php:97 ++msgid "You are not allowed to edit this page." ++msgstr "Não tem permissão para editar esta página." ++ ++#: wp-admin/admin-ajax.php:510 ++#: wp-admin/includes/post.php:13 ++#: wp-admin/post.php:104 ++msgid "You are not allowed to edit this post." ++msgstr "Não tem permissão para editar este artigo." ++ ++#: wp-admin/admin-footer.php:8 ++msgid "Thank you for creating with WordPress" ++msgstr "Obrigado por criar com o WordPress" ++ ++#: wp-admin/admin-footer.php:8 ++msgid "Documentation" ++msgstr "Documentação" ++ ++#: wp-admin/admin-footer.php:8 ++msgid "Feedback" ++msgstr "Feedback" ++ ++#: wp-admin/admin-header.php:64 ++msgid "Visit Site" ++msgstr "Ver o Site" ++ ++#: wp-admin/admin-header.php:66 ++#, php-format ++msgid "Howdy, %2$s!" ++msgstr "Olá, %2$s!" ++ ++#: wp-admin/admin-header.php:66 ++msgid "Log Out" ++msgstr "Terminar Sessão" ++ ++#: wp-admin/admin-header.php:66 ++msgid "Help" ++msgstr "Ajuda" ++ ++#: wp-admin/admin-header.php:66 ++msgid "Forums" ++msgstr "Fórum" ++ ++#: wp-admin/admin.php:29 ++msgid "Classic" ++msgstr "Clássico" ++ ++#: wp-admin/admin.php:30 ++msgid "Fresh" ++msgstr "Fresco" ++ ++#: wp-admin/admin.php:58 ++msgid "Invalid plugin page" ++msgstr "Página de extensão inválida" ++ ++#: wp-admin/admin.php:62 ++#, php-format ++msgid "Cannot load %s." ++msgstr "Não é possível carregar %s." ++ ++#: wp-admin/admin.php:80 ++msgid "You are not allowed to import." ++msgstr "Não tem permissão para importar." ++ ++#: wp-admin/admin.php:83 ++msgid "Invalid importer." ++msgstr "Importador inválido." ++ ++#: wp-admin/admin.php:91 ++msgid "Cannot load importer." ++msgstr "Não é possível carregar importador." ++ ++#: wp-admin/admin.php:98 ++#: wp-admin/import/blogger.php:151 ++#: wp-admin/import.php:3 ++#: wp-admin/import.php:9 ++#: wp-admin/import/textpattern.php:49 ++#: wp-admin/menu.php:47 ++msgid "Import" ++msgstr "Importar" ++ ++#: wp-admin/async-upload.php:21 ++#: wp-admin/media-upload.php:11 ++#: wp-admin/upload.php:5 ++#: wp-app.php:407 ++#: wp-app.php:562 ++msgid "You do not have permission to upload files." ++msgstr "Não tem permissão para enviar ficheiros." ++ ++#: wp-admin/bookmarklet.php:6 ++#: wp-admin/categories.php:19 ++#: wp-admin/categories.php:34 ++#: wp-admin/categories.php:86 ++#: wp-admin/edit-link-categories.php:9 ++#: wp-admin/edit-tags.php:19 ++#: wp-admin/edit-tags.php:35 ++#: wp-admin/edit-tags.php:48 ++#: wp-admin/edit-tags.php:82 ++#: wp-admin/import/wp-cat2tag.php:210 ++#: wp-admin/includes/bookmark.php:9 ++#: wp-admin/link-category.php:13 ++#: wp-admin/link-category.php:28 ++#: wp-admin/link-category.php:68 ++#: wp-admin/link-import.php:17 ++#: wp-admin/link-import.php:69 ++#: wp-admin/options.php:11 ++#: wp-admin/sidebar.php:7 ++#: wp-admin/users.php:6 ++#: wp-admin/widgets.php:7 ++#: wp-content/plugins/akismet/akismet.php:50 ++msgid "Cheatin’ uh?" ++msgstr "Com que então a fazer batota?" ++ ++#: wp-admin/categories.php:4 ++#: wp-admin/edit-form-advanced.php:217 ++#: wp-admin/edit-form.php:19 ++#: wp-admin/edit-link-form.php:101 ++#: wp-admin/includes/template.php:295 ++#: wp-admin/link-category.php:52 ++#: wp-admin/link-manager.php:123 ++#: wp-admin/menu.php:43 ++#: wp-includes/category-template.php:276 ++#: wp-includes/widgets.php:686 ++#: wp-includes/widgets.php:814 ++msgid "Categories" ++msgstr "Categorias" ++ ++#: wp-admin/categories.php:53 ++msgid "You are not allowed to delete categories." ++msgstr "Não tem permissões para eliminar caregorias" ++ ++#: wp-admin/categories.php:108 ++#: wp-admin/edit-link-categories.php:43 ++msgid "Category added." ++msgstr "Categoria adicionada." ++ ++#: wp-admin/categories.php:109 ++#: wp-admin/edit-link-categories.php:44 ++msgid "Category deleted." ++msgstr "Categoria eliminada." ++ ++#: wp-admin/categories.php:110 ++#: wp-admin/edit-link-categories.php:45 ++msgid "Category updated." ++msgstr "Categoria actualizada." ++ ++#: wp-admin/categories.php:111 ++#: wp-admin/edit-link-categories.php:46 ++msgid "Category not added." ++msgstr "Categoria não adicionada." ++ ++#: wp-admin/categories.php:112 ++#: wp-admin/edit-link-categories.php:47 ++msgid "Category not updated." ++msgstr "Categoria não actualizada." ++ ++#: wp-admin/categories.php:123 ++#, php-format ++msgid "Manage Categories (add new)" ++msgstr "Gerir Categorias (nova)" ++ ++#: wp-admin/categories.php:125 ++msgid "Manage Categories" ++msgstr "Gerir Categorias" ++ ++#: wp-admin/categories.php:130 ++#: wp-admin/edit-link-categories.php:66 ++msgid "Search Categories" ++msgstr "Pesquisar Categorias" ++ ++#: wp-admin/categories.php:138 ++#: wp-admin/edit-comments.php:173 ++#: wp-admin/edit-link-categories.php:92 ++#: wp-admin/edit-pages.php:121 ++#: wp-admin/edit.php:138 ++#: wp-admin/edit-post-rows.php:174 ++#: wp-admin/edit-tags.php:163 ++#: wp-admin/includes/media.php:690 ++#: wp-admin/includes/template.php:689 ++#: wp-admin/includes/template.php:778 ++#: wp-admin/link-manager.php:90 ++#: wp-admin/upload.php:149 ++#: wp-admin/users.php:301 ++msgid "Delete" ++msgstr "Eliminar" ++ ++#: wp-admin/categories.php:151 ++#: wp-admin/edit-form-comment.php:67 ++#: wp-admin/edit-link-categories.php:105 ++#: wp-admin/edit-link-form.php:77 ++#: wp-admin/edit-tags.php:176 ++#: wp-admin/link-manager.php:121 ++#: wp-admin/themes.php:100 ++#: wp-admin/user-edit.php:194 ++#: wp-admin/users.php:335 ++#: wp-content/themes/classic/comments.php:51 ++#: wp-content/themes/classic/comments-popup.php:64 ++#: wp-includes/js/tinymce/langs/wp-langs.php:299 ++msgid "Name" ++msgstr "Nome" ++ ++#: wp-admin/categories.php:152 ++#: wp-admin/edit-category-form.php:45 ++#: wp-admin/edit-link-categories.php:106 ++#: wp-admin/edit-link-form.php:93 ++#: wp-admin/includes/media.php:447 ++#: wp-admin/includes/media.php:544 ++#: wp-admin/includes/media.php:626 ++#: wp-admin/includes/media.php:1089 ++#: wp-admin/plugins.php:108 ++#: wp-admin/themes.php:101 ++#: wp-includes/script-loader.php:185 ++msgid "Description" ++msgstr "Descrição" ++ ++#: wp-admin/categories.php:153 ++#: wp-admin/edit.php:34 ++#: wp-admin/edit-tags.php:177 ++#: wp-admin/import/blogger.php:162 ++#: wp-admin/menu.php:40 ++#: wp-admin/users.php:338 ++msgid "Posts" ++msgstr "Artigos" ++ ++#: wp-admin/categories.php:173 ++#, php-format ++msgid "Note:
    Deleting a category does not delete the posts in that category. Instead, posts that were only assigned to the deleted category are set to the category %s." ++msgstr "Nota:
    eliminar uma categoria não elimina os artigos e links nessa categoria. Em vez disso, os artigos que apenas estavam atribuídos à categoria eliminada, serão atribuídos à categoria %s." ++ ++#: wp-admin/categories.php:174 ++#, php-format ++msgid "Categories can be selectively converted to tags using the category to tag converter." ++msgstr "As categorias podem ser convertidas selectivamente para etiquetas usando conversor de categorias para etiquetas." ++ ++#: wp-admin/comment.php:21 ++#: wp-admin/edit-form-comment.php:2 ++msgid "Edit Comment" ++msgstr "Editar Comentário" ++ ++#: wp-admin/comment.php:30 ++#: wp-admin/comment.php:52 ++#: wp-admin/comment.php:134 ++#: wp-admin/comment.php:162 ++#: wp-admin/comment.php:187 ++msgid "Oops, no comment with this ID." ++msgstr "Oops, não existe nenhum comentário com este ID." ++ ++#: wp-admin/comment.php:30 ++#: wp-admin/comment.php:52 ++#: wp-admin/comment.php:134 ++#: wp-admin/comment.php:162 ++#: wp-admin/comment.php:187 ++msgid "Go back" ++msgstr "Regressar" ++ ++#: wp-admin/comment.php:33 ++#: wp-admin/comment.php:137 ++msgid "You are not allowed to edit comments on this post." ++msgstr "Não tem permissão para editar comentários neste artigo." ++ ++#: wp-admin/comment.php:55 ++msgid "You are not allowed to delete comments on this post." ++msgstr "Não tem permissão para eliminar comentários neste artigo." ++ ++#: wp-admin/comment.php:55 ++#: wp-admin/comment.php:190 ++msgid "You are not allowed to edit comments on this post, so you cannot approve this comment." ++msgstr "Não tem permissão para editar comentários neste artigo, pelo que não pode aprovar este comentário." ++ ++#: wp-admin/comment.php:62 ++msgid "You are about to mark the following comment as spam:" ++msgstr "Está prestes a assinalar como SPAM o seguinte comentário:" ++ ++#: wp-admin/comment.php:63 ++msgid "Spam Comment" ++msgstr "é Spam" ++ ++#: wp-admin/comment.php:65 ++msgid "You are about to delete the following comment:" ++msgstr "Está prestes a eliminar o seguinte comentário:" ++ ++#: wp-admin/comment.php:66 ++msgid "Delete Comment" ++msgstr "Eliminar Comentário" ++ ++#: wp-admin/comment.php:68 ++msgid "You are about to approve the following comment:" ++msgstr "Está prestes a aprovar o seguinte comentário:" ++ ++#: wp-admin/comment.php:69 ++msgid "Approve Comment" ++msgstr "Aprovar Comentário" ++ ++#: wp-admin/comment.php:73 ++msgid "Caution:" ++msgstr "Atenção:" ++ ++#: wp-admin/comment.php:75 ++msgid "Are you sure you want to do that?" ++msgstr "Tem a certeza de que é o que pretende?" ++ ++#: wp-admin/comment.php:81 ++#: wp-admin/link-manager.php:163 ++#: wp-admin/update.php:64 ++msgid "No" ++msgstr "Não" ++ ++#: wp-admin/comment.php:98 ++#: wp-admin/includes/template.php:294 ++#: wp-admin/includes/template.php:331 ++#: wp-includes/js/tinymce/langs/wp-langs.php:243 ++msgid "Author" ++msgstr "Autor" ++ ++#: wp-admin/comment.php:103 ++#: wp-admin/edit-form-comment.php:74 ++#: wp-admin/user-edit.php:270 ++#: wp-admin/users.php:336 ++#: wp-content/themes/classic/comments-popup.php:71 ++#: wp-login.php:320 ++msgid "E-mail" ++msgstr "Endereço de Correio Electrónico" ++ ++#: wp-admin/comment.php:109 ++#: wp-admin/edit-form-comment.php:81 ++#: wp-admin/includes/media.php:1179 ++#: wp-admin/includes/template.php:938 ++#: wp-admin/link-manager.php:122 ++#: wp-includes/script-loader.php:184 ++msgid "URL" ++msgstr "URL" ++ ++#: wp-admin/comment.php:114 ++#: wp-admin/edit-comments.php:190 ++#: wp-admin/edit-form-comment.php:88 ++#: wp-admin/edit-pages.php:191 ++#: wp-admin/edit.php:217 ++#: wp-admin/upload.php:227 ++#: wp-content/themes/classic/comments.php:18 ++#: wp-content/themes/classic/comments-popup.php:45 ++msgid "Comment" ++msgstr "Comentário" ++ ++#: wp-admin/comment.php:165 ++msgid "You are not allowed to edit comments on this post, so you cannot disapprove this comment." ++msgstr "Não tem permissão para editar comentários neste artigo, pelo que não pode rejeitar este comentário." ++ ++#: wp-admin/comment.php:223 ++msgid "Unknown action." ++msgstr "Acção desconhecida" ++ ++#: wp-admin/custom-header.php:11 ++msgid "Custom Image Header" ++msgstr "Cabeçalho de Imagem Personalizado" ++ ++#: wp-admin/custom-header.php:128 ++msgid "Show Text" ++msgstr "Mostrar Texto" ++ ++#: wp-admin/custom-header.php:139 ++#: wp-admin/custom-header.php:169 ++msgid "Hide Text" ++msgstr "Ocultar Texto" ++ ++#: wp-admin/custom-header.php:155 ++msgid "Header updated." ++msgstr "Cabeçalho actualizado." ++ ++#: wp-admin/custom-header.php:160 ++msgid "Your Header Image" ++msgstr "A Sua Imagem de Cabeçalho" ++ ++#: wp-admin/custom-header.php:161 ++msgid "This is your header image. You can change the text color or upload and crop a new image." ++msgstr "Esta é a sua imagem de cabeçalho. Poderá alterar a cor do texto, ou enviar e recortar uma nova imagem." ++ ++#: wp-admin/custom-header.php:170 ++msgid "Select a Text Color" ++msgstr "Seleccione uma Cor de Texto" ++ ++#: wp-admin/custom-header.php:170 ++msgid "Use Original Color" ++msgstr "Utilizar Cor Original" ++ ++#: wp-admin/custom-header.php:172 ++#: wp-admin/edit-link-form.php:4 ++#: wp-admin/import/blogger.php:616 ++#: wp-admin/media.php:78 ++#: wp-admin/options-discussion.php:119 ++#: wp-admin/options-general.php:113 ++#: wp-admin/options-misc.php:94 ++#: wp-admin/options-permalink.php:181 ++#: wp-admin/options.php:88 ++#: wp-admin/options-privacy.php:27 ++#: wp-admin/options-reading.php:70 ++#: wp-admin/options-writing.php:114 ++#: wp-admin/widgets.php:307 ++msgid "Save Changes" ++msgstr "Guardar Alterações" ++ ++#: wp-admin/custom-header.php:178 ++msgid "Upload New Header Image" ++msgstr "Enviar Nova Imagem de Cabeçalho" ++ ++#: wp-admin/custom-header.php:178 ++msgid "Here you can upload a custom header image to be shown at the top of your blog instead of the default one. On the next screen you will be able to crop the image." ++msgstr "Aqui poderá enviar uma imagem de cabeçalho personalizada para ser apresentada na parte superior do blog, em vez da imagem predefinida. No ecrã seguinte, poderá recortar a imagem." ++ ++#: wp-admin/custom-header.php:179 ++#, php-format ++msgid "Images of exactly %1$d x %2$d pixels will be used as-is." ++msgstr "Imagens que tenham uma dimensão de exactamente %1$d x %2$d pixels serão usadas tal como se encontram." ++ ++#: wp-admin/custom-header.php:182 ++msgid "Choose an image from your computer:" ++msgstr "Escolha uma imagem no seu computador:" ++ ++#: wp-admin/custom-header.php:186 ++#: wp-admin/includes/media.php:834 ++msgid "Upload" ++msgstr "Enviar" ++ ++#: wp-admin/custom-header.php:194 ++msgid "Reset Header Image and Color" ++msgstr "Repor Imagem e Cor do Cabeçalho" ++ ++#: wp-admin/custom-header.php:195 ++msgid "This will restore the original header image and color. You will not be able to retrieve any customizations." ++msgstr "Isto irá restaurar a imagem e cor do cabeçalho originais. Não será possível recuperar nenhuma personalização." ++ ++#: wp-admin/custom-header.php:198 ++msgid "Restore Original Header" ++msgstr "Restaurar Cabeçalho Original" ++ ++#: wp-admin/custom-header.php:254 ++msgid "Choose the part of the image you want to use as your header." ++msgstr "Escolha a parte da imagem que pretende utilizar como cabeçalho." ++ ++#: wp-admin/custom-header.php:269 ++msgid "Crop Header" ++msgstr "Cortar Cabeçalho" ++ ++#: wp-admin/custom-header.php:321 ++msgid "Header complete!" ++msgstr "Cabeçalho concluído!" ++ ++#: wp-admin/custom-header.php:323 ++msgid "Visit your site and you should see the new header now." ++msgstr "Visite o seu site e já deverá ver o novo cabeçalho." ++ ++#: wp-admin/edit-attachment-rows.php:53 ++#: wp-admin/edit-post-rows.php:75 ++#: wp-admin/includes/template.php:46 ++#: wp-admin/includes/template.php:79 ++#: wp-admin/includes/template.php:245 ++#: wp-admin/includes/template.php:403 ++#: wp-admin/link-manager.php:172 ++#, php-format ++msgid "Edit \"%s\"" ++msgstr "Editar \"%s\"" ++ ++#: wp-admin/edit-attachment-rows.php:68 ++#: wp-admin/edit-form-advanced.php:96 ++#: wp-admin/edit-page-form.php:84 ++#: wp-admin/edit-post-rows.php:49 ++#: wp-admin/edit-post-rows.php:151 ++#: wp-admin/includes/template.php:377 ++#: wp-admin/includes/template.php:447 ++msgid "Unpublished" ++msgstr "Não Publicado" ++ ++#: wp-admin/edit-attachment-rows.php:70 ++#: wp-admin/edit-post-rows.php:52 ++#: wp-admin/edit-post-rows.php:56 ++#: wp-admin/includes/template.php:380 ++#: wp-admin/includes/template.php:384 ++msgid "Y/m/d g:i:s A" ++msgstr "Y/m/d H:i:s" ++ ++#: wp-admin/edit-attachment-rows.php:75 ++#: wp-admin/edit-post-rows.php:62 ++#: wp-admin/includes/template.php:390 ++#, php-format ++msgid "%s from now" ++msgstr "%s de agora" ++ ++#: wp-admin/edit-attachment-rows.php:77 ++#: wp-admin/edit-post-rows.php:64 ++#: wp-admin/includes/template.php:392 ++#: wp-admin/includes/template.php:640 ++#, php-format ++msgid "%s ago" ++msgstr "%s atrás" ++ ++#: wp-admin/edit-attachment-rows.php:79 ++#: wp-admin/edit-post-rows.php:66 ++#: wp-admin/includes/template.php:394 ++#: wp-admin/includes/template.php:669 ++msgid "Y/m/d" ++msgstr "Y/m/d" ++ ++#: wp-admin/edit-attachment-rows.php:88 ++#: wp-admin/edit-post-rows.php:31 ++#: wp-admin/includes/template.php:358 ++msgid "(no title)" ++msgstr "(sem título)" ++ ++#: wp-admin/edit-attachment-rows.php:111 ++#: wp-admin/edit-post-rows.php:117 ++#: wp-admin/includes/template.php:413 ++#, php-format ++msgid "%s pending" ++msgstr "%s pendente(s)" ++ ++#: wp-admin/edit-attachment-rows.php:114 ++#: wp-admin/edit-post-rows.php:120 ++#: wp-admin/includes/template.php:416 ++msgid "0" ++msgstr "0" ++ ++#: wp-admin/edit-attachment-rows.php:114 ++#: wp-admin/edit-post-rows.php:120 ++#: wp-admin/includes/template.php:416 ++msgid "1" ++msgstr "1" ++ ++#: wp-admin/edit-attachment-rows.php:114 ++#: wp-admin/edit-post-rows.php:120 ++#: wp-admin/includes/template.php:416 ++msgid "%" ++msgstr "%" ++ ++#: wp-admin/edit-attachment-rows.php:124 ++msgid "Permalink" ++msgstr "Link Permanente" ++ ++#: wp-admin/edit-attachment-rows.php:142 ++#: wp-admin/edit-post-rows.php:192 ++msgid "No posts found." ++msgstr "Não foram encontrados artigos." ++ ++#: wp-admin/edit-category-form.php:3 ++#: wp-admin/edit-category-form.php:4 ++#: wp-admin/edit-link-category-form.php:3 ++#: wp-admin/edit-link-category-form.php:4 ++msgid "Edit Category" ++msgstr "Editar Categoria" ++ ++#: wp-admin/edit-category-form.php:10 ++#: wp-admin/edit-category-form.php:11 ++#: wp-admin/edit-link-category-form.php:10 ++#: wp-admin/edit-link-category-form.php:11 ++msgid "Add Category" ++msgstr "Adicionar Categoria" ++ ++#: wp-admin/edit-category-form.php:28 ++msgid "Category Name" ++msgstr "Nome da Categoria" ++ ++#: wp-admin/edit-category-form.php:30 ++msgid "The name is used to identify the category almost everywhere, for example under the post or in the category widget." ++msgstr "O nome é usado para identificar a categoria em quase todo o lado, por exemplo por baixo de um artigo ou no widget de categorias." ++ ++#: wp-admin/edit-category-form.php:33 ++msgid "Category Slug" ++msgstr "Nome par URL" ++ ++#: wp-admin/edit-category-form.php:35 ++#: wp-admin/edit-link-category-form.php:34 ++#: wp-admin/edit-tag-form.php:35 ++msgid "The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens." ++msgstr "O “Nome para URL” é a versão URL legível do nome. Normalmente é em minúsculas e só contém letras, números e hífenes." ++ ++#: wp-admin/edit-category-form.php:38 ++msgid "Category Parent" ++msgstr "Categoria Pai" ++ ++#: wp-admin/edit-category-form.php:40 ++#: wp-admin/includes/media.php:456 ++#: wp-admin/includes/media.php:553 ++#: wp-admin/includes/media.php:1099 ++#: wp-includes/deprecated.php:741 ++#: wp-includes/script-loader.php:181 ++msgid "None" ++msgstr "Nenhuma" ++ ++#: wp-admin/edit-category-form.php:41 ++msgid "Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional." ++msgstr "As categorias, ao contrário das etiquetas, podem ter uma hierarquia. Pode ter uma categoria chamada Jazz e por baixo dela ter categorias para o BeBop e Big Band. Totalmente opcional." ++ ++#: wp-admin/edit-category-form.php:47 ++msgid "The description is not prominent by default, however some themes may show it." ++msgstr "A descrição não está normalmente em destaque, no entanto alguns temas podem apresentá-la." ++ ++#: wp-admin/edit-comments.php:4 ++msgid "Edit Comments" ++msgstr "Editar Comentários" ++ ++#: wp-admin/edit-comments.php:74 ++#, php-format ++msgid "%s comment approved" ++msgid_plural "%s comments approved" ++msgstr[0] "%s comentário aprovado" ++msgstr[1] "%s comentários aprovados" ++ ++#: wp-admin/edit-comments.php:79 ++#, php-format ++msgid "%s comment deleted" ++msgid_plural "%s comments deleted" ++msgstr[0] "%s comentário eliminado" ++msgstr[1] "%s comentários eliminados" ++ ++#: wp-admin/edit-comments.php:84 ++#, php-format ++msgid "%s comment marked as spam" ++msgid_plural "%s comments marked as spam" ++msgstr[0] "%s comentário assinalado como SPAM" ++msgstr[1] "%s comentários assinalados como SPAM" ++ ++#: wp-admin/edit-comments.php:94 ++msgid "Manage Comments" ++msgstr "Gerir Comentários" ++ ++#: wp-admin/edit-comments.php:100 ++#, php-format ++msgid "Awaiting Moderation (%s)" ++msgid_plural "Awaiting Moderation (%s)" ++msgstr[0] "À Espera de Moderação (%s)" ++msgstr[1] "À Espera de Moderação (%s)" ++ ++#: wp-admin/edit-comments.php:100 ++msgid "Approved|plural" ++msgstr "Aprovados" ++ ++#: wp-admin/edit-comments.php:102 ++msgid "Show All Comments" ++msgstr "Mostrar Todos os Comentários" ++ ++#: wp-admin/edit-comments.php:121 ++msgid "Search Comments" ++msgstr "Pesquisar Comentários" ++ ++#: wp-admin/edit-comments.php:129 ++msgid "Detail View" ++msgstr "Vista Detalhada" ++ ++#: wp-admin/edit-comments.php:130 ++msgid "List View" ++msgstr "Vista em Lista" ++ ++#: wp-admin/edit-comments.php:167 ++#: wp-admin/includes/template.php:675 ++#: wp-admin/includes/template.php:680 ++msgid "Approve" ++msgstr "Aprovar" ++ ++#: wp-admin/edit-comments.php:169 ++msgid "Mark as Spam" ++msgstr "Marcar como Spam" ++ ++#: wp-admin/edit-comments.php:171 ++#: wp-admin/includes/template.php:676 ++#: wp-admin/includes/template.php:683 ++msgid "Unapprove" ++msgstr "Rejeitar" ++ ++#: wp-admin/edit-comments.php:191 ++#: wp-admin/edit-pages.php:192 ++#: wp-admin/edit.php:218 ++#: wp-admin/includes/template.php:292 ++#: wp-admin/includes/template.php:329 ++#: wp-admin/upload.php:228 ++msgid "Date" ++msgstr "Data" ++ ++#: wp-admin/edit-comments.php:192 ++#: wp-admin/edit-pages.php:193 ++#: wp-admin/edit.php:219 ++#: wp-admin/upload.php:229 ++msgid "Actions" ++msgstr "Acções" ++ ++#: wp-admin/edit-comments.php:224 ++msgid "No comments awaiting moderation… yet." ++msgstr "Nenhum comentário à espera de moderação, por enquanto." ++ ++#: wp-admin/edit-comments.php:230 ++#: wp-content/plugins/akismet/akismet.php:614 ++msgid "No results found." ++msgstr "Nenhum resultado encontrado." ++ ++#: wp-admin/edit-form-advanced.php:5 ++#, php-format ++msgid "Post updated. Continue editing below or go back." ++msgstr "Artigo actualizado. Continue a edição abaixo ou volte atrás." ++ ++#: wp-admin/edit-form-advanced.php:6 ++#: wp-admin/edit-page-form.php:5 ++msgid "Custom field updated." ++msgstr "Campo personalizado actualizado" ++ ++#: wp-admin/edit-form-advanced.php:7 ++#: wp-admin/edit-page-form.php:6 ++msgid "Custom field deleted." ++msgstr "Campo personalizado eliminado." ++ ++#: wp-admin/edit-form-advanced.php:8 ++msgid "Post updated." ++msgstr "Artigo actualizado" ++ ++#: wp-admin/edit-form-advanced.php:20 ++#: wp-admin/edit-form.php:3 ++msgid "Write Post" ++msgstr "Escrever Artigo" ++ ++#: wp-admin/edit-form-advanced.php:42 ++msgid "Already pinged:" ++msgstr "Ping já executado:" ++ ++#: wp-admin/edit-form-advanced.php:50 ++msgid "Save and Continue Editing" ++msgstr "Guardar e Continuar Edição" ++ ++#: wp-admin/edit-form-advanced.php:78 ++msgid "View this Post" ++msgstr "Ver este Artigo" ++ ++#: wp-admin/edit-form-advanced.php:80 ++#: wp-includes/script-loader.php:499 ++msgid "Preview this Post" ++msgstr "Prévisualizar este Artigo" ++ ++#: wp-admin/edit-form-advanced.php:86 ++#: wp-admin/edit-page-form.php:72 ++msgid "Publish Status" ++msgstr "Estado de Publicação" ++ ++#: wp-admin/edit-form-advanced.php:90 ++#: wp-admin/edit-page-form.php:76 ++#: wp-admin/edit-page-form.php:78 ++#: wp-admin/edit-pages.php:39 ++#: wp-admin/edit-post-rows.php:142 ++#: wp-admin/includes/post.php:522 ++#: wp-admin/includes/template.php:438 ++#: wp-includes/post.php:306 ++#: wp-includes/post.php:328 ++msgid "Published" ++msgstr "Publicado" ++ ++#: wp-admin/edit-form-advanced.php:92 ++#: wp-admin/edit-pages.php:40 ++#: wp-admin/edit-post-rows.php:145 ++#: wp-admin/includes/post.php:523 ++#: wp-admin/includes/template.php:441 ++msgid "Scheduled" ++msgstr "Entradas Agendadas:" ++ ++#: wp-admin/edit-form-advanced.php:95 ++#: wp-admin/edit-page-form.php:83 ++#: wp-admin/edit-pages.php:41 ++#: wp-admin/edit-post-rows.php:148 ++#: wp-admin/includes/post.php:524 ++#: wp-admin/includes/template.php:444 ++#: wp-includes/post.php:304 ++msgid "Pending Review" ++msgstr "Revisão Pendente" ++ ++#: wp-admin/edit-form-advanced.php:101 ++msgid "Keep this post private" ++msgstr "Manter privado" ++ ++#: wp-admin/edit-form-advanced.php:106 ++#: wp-admin/edit-page-form.php:92 ++#, php-format ++msgid "Scheduled for:
    %1$s at %2$s" ++msgstr "Agendado para:
    %1$s às %2$s" ++ ++#: wp-admin/edit-form-advanced.php:108 ++#: wp-admin/edit-page-form.php:94 ++#, php-format ++msgid "Published on:
    %1$s at %2$s" ++msgstr "Publicado em:
    %1$s ás %2$s" ++ ++#: wp-admin/edit-form-advanced.php:110 ++#: wp-admin/edit-form-advanced.php:117 ++#: wp-admin/edit-page-form.php:96 ++#: wp-admin/edit-page-form.php:103 ++msgid "Publish immediately" ++msgstr "Publicar imediatamente" ++ ++#: wp-admin/edit-form-advanced.php:112 ++#: wp-admin/edit-page-form.php:98 ++#, php-format ++msgid "Publish on:
    %1$s at %2$s" ++msgstr "Publicar em:
    %1$s ás %2$s" ++ ++#: wp-admin/edit-form-advanced.php:124 ++#: wp-admin/edit-form-comment.php:40 ++#: wp-admin/edit-page-form.php:109 ++#: wp-admin/edit-post-rows.php:168 ++#: wp-admin/includes/dashboard.php:220 ++#: wp-admin/includes/post.php:658 ++#: wp-admin/includes/widgets.php:110 ++#: wp-admin/includes/widgets.php:231 ++#: wp-admin/page.php:66 ++#: wp-admin/plugins.php:127 ++#: wp-admin/post.php:68 ++#: wp-includes/script-loader.php:154 ++#: wp-includes/script-loader.php:159 ++#: wp-includes/script-loader.php:165 ++#: wp-includes/script-loader.php:172 ++#: wp-includes/script-loader.php:193 ++msgid "Edit" ++msgstr "Editar" ++ ++#: wp-admin/edit-form-advanced.php:132 ++#: wp-admin/edit-form-comment.php:47 ++#: wp-admin/edit-link-form.php:55 ++#: wp-admin/edit-page-form.php:116 ++#: wp-admin/includes/dashboard.php:217 ++#: wp-content/themes/default/functions.php:374 ++#: wp-content/themes/default/functions.php:381 ++#: wp-includes/js/tinymce/langs/wp-langs.php:63 ++#: wp-includes/script-loader.php:144 ++msgid "Save" ++msgstr "Guardar" ++ ++#: wp-admin/edit-form-advanced.php:137 ++#: wp-admin/edit-form.php:52 ++#: wp-admin/edit-page-form.php:121 ++#: wp-admin/sidebar.php:78 ++msgid "Publish" ++msgstr "Publicar" ++ ++#: wp-admin/edit-form-advanced.php:139 ++#: wp-admin/edit-page-form.php:123 ++msgid "Submit for Review" ++msgstr "Ver artigos para %1$s %2$s" ++ ++#: wp-admin/edit-form-advanced.php:145 ++#: wp-admin/edit-page-form.php:129 ++#, php-format ++msgid "" ++"You are about to delete this draft '%s'\n" ++" 'Cancel' to stop, 'OK' to delete." ++msgstr "" ++"Está prestes a eliminar este rascunho '%s'\n" ++" 'Cancelar' para interromper, 'OK' para eliminar." ++ ++#: wp-admin/edit-form-advanced.php:145 ++#, php-format ++msgid "" ++"You are about to delete this post '%s'\n" ++" 'Cancel' to stop, 'OK' to delete." ++msgstr "" ++"Está prestes a eliminar este artigo '%s'\n" ++" 'Cancelar' para interromper, 'OK' para eliminar." ++ ++#: wp-admin/edit-form-advanced.php:145 ++msgid "Delete post" ++msgstr "Eliminar" ++ ++#: wp-admin/edit-form-advanced.php:151 ++#: wp-admin/edit-page-form.php:135 ++#, php-format ++msgid "Last edited by %1$s on %2$s at %3$s" ++msgstr "Última edição por %1$s, em %2$s ás %3$s " ++ ++#: wp-admin/edit-form-advanced.php:153 ++#: wp-admin/edit-page-form.php:137 ++#, php-format ++msgid "Last edited on %1$s at %2$s" ++msgstr "Última edição em %1$s ás %2$s " ++ ++#: wp-admin/edit-form-advanced.php:162 ++#: wp-admin/edit-form-comment.php:54 ++#: wp-admin/edit-link-form.php:63 ++#: wp-admin/edit-page-form.php:146 ++msgid "Related" ++msgstr "Relacionado" ++ ++#: wp-admin/edit-form-advanced.php:166 ++msgid "See Comments on this Post" ++msgstr "Ver Comentários a este Artigo" ++ ++#: wp-admin/edit-form-advanced.php:168 ++#: wp-admin/edit-form-comment.php:57 ++#: wp-admin/edit-page-form.php:152 ++msgid "Manage All Comments" ++msgstr "Gerir Todos os Comentários" ++ ++#: wp-admin/edit-form-advanced.php:169 ++msgid "Manage All Posts" ++msgstr "Gerir Todos os Artigos" ++ ++#: wp-admin/edit-form-advanced.php:170 ++msgid "Manage All Categories" ++msgstr "Gerir Todas as Categorias" ++ ++#: wp-admin/edit-form-advanced.php:171 ++msgid "Manage All Tags" ++msgstr "Gerir Todas as Etiquetas" ++ ++#: wp-admin/edit-form-advanced.php:172 ++msgid "View Drafts" ++msgstr "Ver Rascunhos" ++ ++#: wp-admin/edit-form-advanced.php:182 ++#: wp-admin/edit-form.php:14 ++#: wp-admin/edit-page-form.php:162 ++#: wp-admin/includes/media.php:536 ++#: wp-admin/includes/media.php:625 ++#: wp-admin/includes/media.php:1130 ++#: wp-admin/includes/media.php:1158 ++#: wp-admin/includes/media.php:1186 ++#: wp-admin/includes/template.php:293 ++#: wp-admin/includes/template.php:330 ++#: wp-includes/js/tinymce/langs/wp-langs.php:282 ++#: wp-includes/script-loader.php:176 ++msgid "Title" ++msgstr "Título" ++ ++#: wp-admin/edit-form-advanced.php:197 ++#: wp-admin/edit-form.php:25 ++#: wp-admin/menu.php:34 ++msgid "Post" ++msgstr "Artigo" ++ ++#: wp-admin/edit-form-advanced.php:209 ++#: wp-admin/edit-tags.php:4 ++#: wp-admin/includes/media.php:627 ++#: wp-admin/includes/template.php:296 ++#: wp-admin/menu.php:44 ++#: wp-includes/widgets.php:1326 ++msgid "Tags" ++msgstr "Etiquetas" ++ ++#: wp-admin/edit-form-advanced.php:221 ++#: wp-admin/edit-link-form.php:105 ++msgid "+ Add New Category" ++msgstr "+ Adicionar Nova Categoria" ++ ++#: wp-admin/edit-form-advanced.php:223 ++#: wp-admin/edit-link-form.php:107 ++msgid "New category name" ++msgstr "Nome da nova categoria" ++ ++#: wp-admin/edit-form-advanced.php:224 ++msgid "Parent category" ++msgstr "Categoria pai" ++ ++#: wp-admin/edit-form-advanced.php:225 ++#: wp-admin/edit-link-form.php:108 ++#: wp-admin/includes/widgets.php:104 ++#: wp-includes/script-loader.php:116 ++#: wp-includes/script-loader.php:150 ++#: wp-includes/script-loader.php:192 ++msgid "Add" ++msgstr "Adicionar" ++ ++#: wp-admin/edit-form-advanced.php:232 ++#: wp-admin/edit-link-form.php:115 ++msgid "All Categories" ++msgstr "Todas as Categorias" ++ ++#: wp-admin/edit-form-advanced.php:233 ++#: wp-admin/edit-link-form.php:116 ++msgid "Most Used" ++msgstr "Mais Usadas" ++ ++#: wp-admin/edit-form-advanced.php:255 ++#: wp-admin/edit-link-form.php:136 ++#: wp-admin/edit-page-form.php:189 ++msgid "Advanced Options" ++msgstr "Opções avançadas" ++ ++#: wp-admin/edit-form-advanced.php:258 ++msgid "Excerpt" ++msgstr "Excerto" ++ ++#: wp-admin/edit-form-advanced.php:260 ++msgid "Excerpts are optional hand-crafted summaries of your content. You can use them in your template" ++msgstr "Um excerto é um resumo manual do conteúdo do seu artigo. Pode usá-lo no seu tema" ++ ++#: wp-admin/edit-form-advanced.php:265 ++msgid "Trackbacks" ++msgstr "Trackbacks" ++ ++#: wp-admin/edit-form-advanced.php:267 ++msgid "Send trackbacks to:" ++msgstr "Enviar trackbacks para:" ++ ++#: wp-admin/edit-form-advanced.php:267 ++msgid "Separate multiple URLs with spaces" ++msgstr "Separe vários URLs por espaços" ++ ++#: wp-admin/edit-form-advanced.php:268 ++msgid "Trackbacks are a way to notify legacy blog systems that you’ve linked to them. If you link other WordPress blogs they’ll be notified automatically using pingbacks, no other action necessary." ++msgstr "Trackbacks são uma maneira de notificar outros blogs que se ligou a eles. Se está a ligar-se a outro blog em WordPress, ele será automáticamente notificado usando pingbacks, não sendo necessário mais nada." ++ ++#: wp-admin/edit-form-advanced.php:277 ++#: wp-admin/edit-page-form.php:192 ++msgid "Custom Fields" ++msgstr "Campos Personalizados" ++ ++#: wp-admin/edit-form-advanced.php:292 ++#: wp-admin/edit-page-form.php:207 ++msgid "Custom fields can be used to add extra metadata to a post that you can use in your theme." ++msgstr "Os campos personalizados servem para adicionar metainformação adicional a um artigo, que pode usar no seu tema." ++ ++#: wp-admin/edit-form-advanced.php:299 ++#: wp-admin/edit-page-form.php:212 ++msgid "Comments & Pings" ++msgstr "Comentários & Pings" ++ ++#: wp-admin/edit-form-advanced.php:304 ++#: wp-admin/edit-page-form.php:217 ++msgid "Allow Comments" ++msgstr "Permitir Comentários" ++ ++#: wp-admin/edit-form-advanced.php:305 ++#: wp-admin/edit-page-form.php:218 ++msgid "Allow Pings" ++msgstr "Permitir Pings" ++ ++#: wp-admin/edit-form-advanced.php:306 ++msgid "These settings apply to this post only. “Pings” are trackbacks and pingbacks." ++msgstr "Estas opções aplicam apenas a este conteúdo. “Pings”, são trackbacks e pingbacks." ++ ++#: wp-admin/edit-form-advanced.php:311 ++msgid "Password Protect This Post" ++msgstr "Proteger com Password" ++ ++#: wp-admin/edit-form-advanced.php:314 ++msgid "Setting a password will require people who visit your blog to enter the above password to view this post and its comments." ++msgstr "Ao definir uma password para este conteúdo, obrigará os visitantes do seu blog a introduzi-la para poderem ver o artigo e os respectivos comentários." ++ ++#: wp-admin/edit-form-advanced.php:319 ++msgid "Post Slug" ++msgstr "Nome Para URL" ++ ++#: wp-admin/edit-form-advanced.php:332 ++msgid "Post Author" ++msgstr "Autor do Artigo" ++ ++#: wp-admin/edit-form-comment.php:3 ++#, php-format ++msgid "Editing Comment # %s" ++msgstr "A Editar Comentário # %s" ++ ++#: wp-admin/edit-form-comment.php:20 ++msgid "View this Comment" ++msgstr "Ver este Comentário" ++ ++#: wp-admin/edit-form-comment.php:25 ++msgid "Approval Status" ++msgstr "Estado" ++ ++#: wp-admin/edit-form-comment.php:28 ++msgid "Approved" ++msgstr "Aprovado" ++ ++#: wp-admin/edit-form-comment.php:29 ++msgid "Moderated" ++msgstr "Moderado" ++ ++#: wp-admin/edit-form-comment.php:30 ++#: wp-admin/includes/template.php:688 ++#: wp-content/plugins/akismet/akismet.php:639 ++msgid "Spam" ++msgstr "SPAM" ++ ++#: wp-admin/edit-form-comment.php:35 ++#, php-format ++msgid "%1$s at %2$s" ++msgstr "%1$s ás %2$s" ++ ++#: wp-admin/edit-form-comment.php:49 ++msgid "" ++"You are about to delete this comment. \n" ++" 'Cancel' to stop, 'OK' to delete." ++msgstr "" ++"Está prestes a eliminar este comentário. \n" ++" 'Cancelar' para interromper, 'OK' para eliminar." ++ ++#: wp-admin/edit-form-comment.php:49 ++msgid "Delete comment" ++msgstr "Apagar comentário" ++ ++#: wp-admin/edit-form-comment.php:58 ++msgid "Moderate Comments" ++msgstr "Moderar comentários" ++ ++#: wp-admin/edit-form.php:14 ++msgid "Help on titles" ++msgstr "Ajuda acerca de títulos" ++ ++#: wp-admin/edit-form.php:19 ++msgid "Help on categories" ++msgstr "Ajuda acerca de categorias" ++ ++#: wp-admin/edit-form.php:25 ++msgid "Help with post field" ++msgstr "Ajuda com campo de artigo" ++ ++#: wp-admin/edit-form.php:45 ++#, php-format ++msgid "TrackBack a URL: (Separate multiple URLs with spaces.)" ++msgstr "TrackBack de URL: (Separe vários URLs por espaços.)" ++ ++#: wp-admin/edit-form.php:48 ++#: wp-admin/sidebar.php:76 ++msgid "Save as Draft" ++msgstr "Guardar Como Rascunho" ++ ++#: wp-admin/edit-form.php:49 ++msgid "Save as Private" ++msgstr "Guardar Como Privado" ++ ++#: wp-admin/edit-form.php:56 ++msgid "Advanced Editing" ++msgstr "Edição Avançada" ++ ++#: wp-admin/edit-link-categories.php:35 ++#: wp-admin/menu.php:45 ++msgid "Link Categories" ++msgstr "Categorias de Links" ++ ++#: wp-admin/edit-link-categories.php:48 ++msgid "Categories deleted." ++msgstr "Categorias eliminadas" ++ ++#: wp-admin/edit-link-categories.php:59 ++#, php-format ++msgid "Manage Link Categories (add new)" ++msgstr "Gerir Categorias de Links (nova)" ++ ++#: wp-admin/edit-link-categories.php:61 ++msgid "Manage Link Categories" ++msgstr "Gerir Categorias de Links" ++ ++#: wp-admin/edit-link-categories.php:107 ++#: wp-admin/menu.php:42 ++#: wp-includes/widgets.php:1372 ++msgid "Links" ++msgstr "Links" ++ ++#: wp-admin/edit-link-categories.php:148 ++#, php-format ++msgid "Note:
    Deleting a category does not delete the links in that category. Instead, links that were only assigned to the deleted category are set to the category %s." ++msgstr "Nota:
    eliminar uma categoria não elimina os artigos e links nessa categoria. Em vez disso, os artigos que apenas estavam atribuídos à categoria eliminada, serão atribuídos à categoria %s." ++ ++#: wp-admin/edit-link-category-form.php:28 ++msgid "Category name" ++msgstr "Nome da categoria" ++ ++#: wp-admin/edit-link-category-form.php:32 ++msgid "Category slug" ++msgstr "Nome para URL" ++ ++#: wp-admin/edit-link-category-form.php:37 ++msgid "Description (optional)" ++msgstr "Descrição (opcional)" ++ ++#: wp-admin/edit-link-form.php:3 ++#: wp-admin/link.php:92 ++msgid "Edit Link" ++msgstr "Editar Link" ++ ++#: wp-admin/edit-link-form.php:8 ++#: wp-admin/edit-link-form.php:9 ++#: wp-admin/link-add.php:4 ++msgid "Add Link" ++msgstr "Adicionar Link" ++ ++#: wp-admin/edit-link-form.php:46 ++msgid "Visit Link" ++msgstr "Visitar Link" ++ ++#: wp-admin/edit-link-form.php:51 ++msgid "Keep this link private" ++msgstr "Manter este link privado" ++ ++#: wp-admin/edit-link-form.php:58 ++#, php-format ++msgid "" ++"You are about to delete this link '%s'\n" ++"'Cancel' to stop, 'OK' to delete." ++msgstr "" ++"Está prestes a eliminar este link '%s'\n" ++"'Cancelar' para parar, 'OK' para eliminar." ++ ++#: wp-admin/edit-link-form.php:58 ++msgid "Delete link" ++msgstr "Eliminar link" ++ ++#: wp-admin/edit-link-form.php:66 ++msgid "Manage All Links" ++msgstr "Gerir Todos os Links" ++ ++#: wp-admin/edit-link-form.php:67 ++msgid "Manage All Link Categories" ++msgstr "Gerir Todas as Categorias de Links" ++ ++#: wp-admin/edit-link-form.php:68 ++#: wp-admin/import/dotclear.php:587 ++#: wp-admin/import/textpattern.php:523 ++msgid "Import Links" ++msgstr "Importar Links" ++ ++#: wp-admin/edit-link-form.php:80 ++msgid "Example: Nifty blogging software" ++msgstr "Por exemplo: Magnífico Software de Blog" ++ ++#: wp-admin/edit-link-form.php:85 ++msgid "Web Address" ++msgstr "Endereço (URL)" ++ ++#: wp-admin/edit-link-form.php:88 ++msgid "Example: http://wordpress.org/ — don’t forget the http://" ++msgstr "Por exemplo: http://pt.wordpress.org/ — não se esqueça do http://" ++ ++#: wp-admin/edit-link-form.php:96 ++msgid "This will be shown when someone hovers over the link in the blogroll, or optionally below the link." ++msgstr "O texto acima será mostrado quando alguém passar com o rato por cima do link. Opcionalmente, por baixo do link." ++ ++#: wp-admin/edit-link-form.php:139 ++#: wp-includes/js/tinymce/langs/wp-langs.php:279 ++#: wp-includes/js/tinymce/langs/wp-langs.php:328 ++msgid "Target" ++msgstr "Janela" ++ ++#: wp-admin/edit-link-form.php:149 ++#: wp-admin/edit-link-form.php:183 ++#: wp-admin/edit-link-form.php:216 ++#: wp-admin/edit-link-form.php:239 ++msgid "none" ++msgstr "nenhum" ++ ++#: wp-admin/edit-link-form.php:150 ++msgid "Choose the frame your link targets. Essentially this means if you choose _blank your link will open in a new window." ++msgstr "Escolha a janela em que abrirá este link. Básicamente quer dizer que se escolher a opção _blank, o link será aberto numa nova janela." ++ ++#: wp-admin/edit-link-form.php:155 ++msgid "Link Relationship (XFN)" ++msgstr "Relação de Links (XFN)" ++ ++#: wp-admin/edit-link-form.php:159 ++msgid "rel:" ++msgstr "Relação (rel):" ++ ++#: wp-admin/edit-link-form.php:166 ++msgid "identity" ++msgstr "identidade" ++ ++#: wp-admin/edit-link-form.php:170 ++msgid "another web address of mine" ++msgstr "outro endereço Web meu" ++ ++#: wp-admin/edit-link-form.php:174 ++msgid "friendship" ++msgstr "amizade" ++ ++#: wp-admin/edit-link-form.php:177 ++msgid "contact" ++msgstr "contacto" ++ ++#: wp-admin/edit-link-form.php:179 ++msgid "acquaintance" ++msgstr "conhecimento" ++ ++#: wp-admin/edit-link-form.php:181 ++msgid "friend" ++msgstr "amigo(a)" ++ ++#: wp-admin/edit-link-form.php:187 ++msgid "physical" ++msgstr "físico" ++ ++#: wp-admin/edit-link-form.php:191 ++msgid "met" ++msgstr "encontrado" ++ ++#: wp-admin/edit-link-form.php:195 ++msgid "professional" ++msgstr "profissional" ++ ++#: wp-admin/edit-link-form.php:199 ++msgid "co-worker" ++msgstr "colega" ++ ++#: wp-admin/edit-link-form.php:202 ++msgid "colleague" ++msgstr "parceiro" ++ ++#: wp-admin/edit-link-form.php:206 ++msgid "geographical" ++msgstr "geográfico" ++ ++#: wp-admin/edit-link-form.php:210 ++msgid "co-resident" ++msgstr "co-residente" ++ ++#: wp-admin/edit-link-form.php:213 ++msgid "neighbor" ++msgstr "vizinho(a)" ++ ++#: wp-admin/edit-link-form.php:220 ++msgid "family" ++msgstr "familía" ++ ++#: wp-admin/edit-link-form.php:224 ++msgid "child" ++msgstr "filho(a)" ++ ++#: wp-admin/edit-link-form.php:227 ++msgid "kin" ++msgstr "relacionado" ++ ++#: wp-admin/edit-link-form.php:230 ++msgid "parent" ++msgstr "parente" ++ ++#: wp-admin/edit-link-form.php:233 ++msgid "sibling" ++msgstr "irmã(o)" ++ ++#: wp-admin/edit-link-form.php:236 ++msgid "spouse" ++msgstr "esposo(a)" ++ ++#: wp-admin/edit-link-form.php:243 ++msgid "romantic" ++msgstr "romântico" ++ ++#: wp-admin/edit-link-form.php:247 ++msgid "muse" ++msgstr "musa" ++ ++#: wp-admin/edit-link-form.php:250 ++msgid "crush" ++msgstr "paixoneta" ++ ++#: wp-admin/edit-link-form.php:253 ++msgid "date" ++msgstr "encontro" ++ ++#: wp-admin/edit-link-form.php:256 ++msgid "sweetheart" ++msgstr "querido(a)" ++ ++#: wp-admin/edit-link-form.php:263 ++msgid "If the link is to a person, you can specify your relationship with them using the above form. If you would like to learn more about the idea check out XFN." ++msgstr "Se o link é para uma pessoa, pode especificar a sua relação com ela usando o formulário acima. Se quiser saber mais sobre esta ideia consulte XFN." ++ ++#: wp-admin/edit-link-form.php:268 ++#: wp-content/themes/default/functions.php:393 ++#: wp-includes/js/tinymce/langs/wp-langs.php:291 ++#: wp-includes/js/tinymce/wp-mce-help.php:163 ++msgid "Advanced" ++msgstr "Avançadas" ++ ++#: wp-admin/edit-link-form.php:272 ++msgid "Image Address" ++msgstr "Endereço da Imagem" ++ ++#: wp-admin/edit-link-form.php:276 ++msgid "RSS Address" ++msgstr "Endereço do Feed RSS" ++ ++#: wp-admin/edit-link-form.php:280 ++msgid "Notes" ++msgstr "Notas" ++ ++#: wp-admin/edit-link-form.php:284 ++msgid "Rating" ++msgstr "Classificação" ++ ++#: wp-admin/edit-link-form.php:293 ++msgid "(Leave at 0 for no rating.)" ++msgstr "(Deixe a 0 para não classificar.)" ++ ++#: wp-admin/edit-page-form.php:4 ++#, php-format ++msgid "Page updated. Continue editing below or go back." ++msgstr "Página actualizada. Continue a edição abaixo ou volte atrás." ++ ++#: wp-admin/edit-page-form.php:7 ++msgid "Page updated." ++msgstr "Página actualizada" ++ ++#: wp-admin/edit-page-form.php:36 ++msgid "Write Page" ++msgstr "Escrever Página" ++ ++#: wp-admin/edit-page-form.php:64 ++msgid "View this Page" ++msgstr "Ver esta Página" ++ ++#: wp-admin/edit-page-form.php:66 ++#: wp-includes/script-loader.php:498 ++msgid "Preview this Page" ++msgstr "Prévisualizar esta Página" ++ ++#: wp-admin/edit-page-form.php:81 ++msgid "Pending" ++msgstr "Pendente" ++ ++#: wp-admin/edit-page-form.php:88 ++msgid "Keep this page private" ++msgstr "Manter página privada" ++ ++#: wp-admin/edit-page-form.php:129 ++#, php-format ++msgid "" ++"You are about to delete this page '%s'\n" ++" 'Cancel' to stop, 'OK' to delete." ++msgstr "" ++"Está prestes a eliminar esta página '%s'\n" ++" 'Cancelar' para interromper, 'OK' para eliminar." ++ ++#: wp-admin/edit-page-form.php:129 ++msgid "Delete page" ++msgstr " Eliminar " ++ ++#: wp-admin/edit-page-form.php:150 ++msgid "See Comments on this Page" ++msgstr "Ver Comentários nesta Página" ++ ++#: wp-admin/edit-page-form.php:153 ++msgid "Manage All Pages" ++msgstr "Gerir Todas as Páginas" ++ ++#: wp-admin/edit-page-form.php:177 ++#: wp-admin/menu.php:35 ++#: wp-includes/script-loader.php:180 ++msgid "Page" ++msgstr "Página" ++ ++#: wp-admin/edit-page-form.php:219 ++msgid "These settings apply to this page only. “Pings” are trackbacks and pingbacks." ++msgstr "Estas opções aplicam apenas a esta página. “Pings”, são trackbacks e pingbacks." ++ ++#: wp-admin/edit-page-form.php:224 ++msgid "Password Protect This Page" ++msgstr "Proteger com Password" ++ ++#: wp-admin/edit-page-form.php:227 ++msgid "Setting a password will require people who visit your blog to enter the above password to view this page and its comments." ++msgstr "Ao definir uma password para esta página, obrigará os visitantes do seu blog a introduzi-la para poderem ver esta página e os respectivos comentários." ++ ++#: wp-admin/edit-page-form.php:232 ++msgid "Page Slug" ++msgstr "Nome Para URL da Página" ++ ++#: wp-admin/edit-page-form.php:239 ++msgid "Page Parent" ++msgstr "Página Principal" ++ ++#: wp-admin/edit-page-form.php:242 ++msgid "Main Page (no parent)" ++msgstr "Raiz" ++ ++#: wp-admin/edit-page-form.php:245 ++msgid "You can arrange your pages in hierarchies, for example you could have an “About” page that has “Life Story” and “My Dog” pages under it. There are no limits to how deeply nested you can make pages." ++msgstr "Pode organizar as suas páginas numa hierarquia. Por exemplo poderia ter uma página “Sobre Mim” que tem abaixo de si as páginas “A Minha Vida”, “O Meu Amor” e “As Minhas Vacas”. Não há limite para a quantidade de níveis de subpáginas." ++ ++#: wp-admin/edit-page-form.php:251 ++#: wp-admin/includes/file.php:3 ++msgid "Page Template" ++msgstr "Modelo da Página" ++ ++#: wp-admin/edit-page-form.php:254 ++msgid "Default Template" ++msgstr "Template por Omissão" ++ ++#: wp-admin/edit-page-form.php:257 ++msgid "Some themes have custom templates you can use for certain pages that might have additional features or custom layouts. If so, you’ll see them above." ++msgstr "Alguns temas têm templates personalizados (tanto com funções adicionais como com aspecto diferente do resto do tema) que pode usar para certas páginas. Se isto for o caso do tema, pode ver esses templates acima." ++ ++#: wp-admin/edit-page-form.php:263 ++msgid "Page Order" ++msgstr "Ordem da Página" ++ ++#: wp-admin/edit-page-form.php:266 ++msgid "Pages are usually ordered alphabetically, but you can put a number above to change the order pages appear in. (We know this is a little janky, it’ll be better in future releases.)" ++msgstr "As páginas são normalmente ordenadas alfabeticamente, mas pode indicar um número acima para alterar a ordem. (Sim, é um pouco estranho, mas ficará melhor em versões futuras)." ++ ++#: wp-admin/edit-page-form.php:277 ++msgid "Page Author" ++msgstr "Autor da Página" ++ ++#: wp-admin/edit-pages.php:11 ++#: wp-admin/page.php:134 ++msgid "You are not allowed to delete this page." ++msgstr "Não tem permissão para eliminar esta página." ++ ++#: wp-admin/edit-pages.php:15 ++#: wp-admin/edit-pages.php:18 ++#: wp-admin/edit.php:15 ++#: wp-admin/edit.php:18 ++#: wp-admin/page.php:138 ++#: wp-admin/page.php:141 ++#: wp-admin/post.php:149 ++#: wp-admin/post.php:152 ++#: wp-admin/upload.php:18 ++msgid "Error in deleting..." ++msgstr "Erro ao eliminar..." ++ ++#: wp-admin/edit-pages.php:34 ++#: wp-admin/menu.php:41 ++#: wp-includes/post-template.php:306 ++#: wp-includes/widgets.php:366 ++#: wp-includes/widgets.php:1360 ++#: wp-includes/widgets.php:1361 ++msgid "Pages" ++msgstr "Páginas" ++ ++#: wp-admin/edit-pages.php:39 ++msgid "Published pages" ++msgstr "Paginas publicadas" ++ ++#: wp-admin/edit-pages.php:39 ++#: wp-admin/includes/post.php:522 ++#, php-format ++msgid "Published (%s)" ++msgid_plural "Published (%s)" ++msgstr[0] "Publicada (%s)" ++msgstr[1] "Publicadas (%s)" ++ ++#: wp-admin/edit-pages.php:40 ++msgid "Scheduled pages" ++msgstr "Páginas agendadas" ++ ++#: wp-admin/edit-pages.php:40 ++#: wp-admin/includes/post.php:523 ++#, php-format ++msgid "Scheduled (%s)" ++msgid_plural "Scheduled (%s)" ++msgstr[0] "Agendado (%s)" ++msgstr[1] "Agendados (%s)" ++ ++#: wp-admin/edit-pages.php:41 ++msgid "Pending pages" ++msgstr "Páginas pendentes" ++ ++#: wp-admin/edit-pages.php:41 ++#: wp-admin/includes/post.php:524 ++#, php-format ++msgid "Pending Review (%s)" ++msgid_plural "Pending Review (%s)" ++msgstr[0] "Pendente de Revisão (%s)" ++msgstr[1] "Pendentes de Revisão (%s)" ++ ++#: wp-admin/edit-pages.php:42 ++#: wp-admin/includes/post.php:525 ++#: wp-includes/post.php:303 ++#: wp-includes/post.php:326 ++msgid "Draft" ++msgstr "Rascunho" ++ ++#: wp-admin/edit-pages.php:42 ++#: wp-admin/includes/post.php:525 ++msgid "Drafts|manage posts header" ++msgstr "Rascunhos|Gerir o cabeçalho dos artigos" ++ ++#: wp-admin/edit-pages.php:42 ++#: wp-admin/includes/post.php:525 ++#, php-format ++msgid "Draft (%s)" ++msgid_plural "Drafts (%s)" ++msgstr[0] "Privado (%s)" ++msgstr[1] "Rascunhos (%s)" ++ ++#: wp-admin/edit-pages.php:43 ++#: wp-admin/includes/post.php:526 ++#: wp-includes/post.php:305 ++#: wp-includes/post.php:327 ++msgid "Private" ++msgstr "Privado" ++ ++#: wp-admin/edit-pages.php:43 ++msgid "Private pages" ++msgstr "Páginas de blog" ++ ++#: wp-admin/edit-pages.php:43 ++#: wp-admin/includes/post.php:526 ++#, php-format ++msgid "Private (%s)" ++msgid_plural "Private (%s)" ++msgstr[0] "Privado (%s)" ++msgstr[1] "Privados (%s)" ++ ++#: wp-admin/edit-pages.php:46 ++msgid "Manage Pages" ++msgstr "Gerir Páginas" ++ ++#: wp-admin/edit-pages.php:68 ++#: wp-admin/edit.php:74 ++#: wp-admin/upload.php:77 ++#, php-format ++msgid "matching “%s”" ++msgstr "Procurar por “%s”" ++ ++#: wp-admin/edit-pages.php:72 ++#: wp-admin/edit.php:71 ++#: wp-admin/upload.php:74 ++#, php-format ++msgid "by %s" ++msgstr "Por %s" ++ ++#: wp-admin/edit-pages.php:74 ++#, php-format ++msgid "%1$s%2$s%3$s|You can reorder these: 1: Pages, 2: by {s}, 3: matching {s}" ++msgstr "%1$s%2$s%3$s|Pode reordenar\testes: 1: Páginas, 2: por {s}, 3: correspondente {s}" ++ ++#: wp-admin/edit-pages.php:85 ++msgid "All Pages" ++msgstr "Todas as Páginas" ++ ++#: wp-admin/edit-pages.php:108 ++msgid "Your page has been saved." ++msgstr "A sua página foi guardada." ++ ++#: wp-admin/edit-pages.php:108 ++#: wp-admin/page-new.php:17 ++msgid "View page" ++msgstr "Ver página" ++ ++#: wp-admin/edit-pages.php:108 ++msgid "Edit page" ++msgstr "Editar página." ++ ++#: wp-admin/edit-pages.php:115 ++msgid "Search Pages" ++msgstr "Pesquisar Páginas" ++ ++#: wp-admin/edit-pages.php:165 ++msgid "No pages found." ++msgstr "Não foi encontrado nenhum comentário." ++ ++#: wp-admin/edit.php:11 ++#: wp-admin/post.php:145 ++#: wp-admin/upload.php:14 ++msgid "You are not allowed to delete this post." ++msgstr "Não tem permissão para eliminar este artigo." ++ ++#: wp-admin/edit.php:54 ++#: wp-admin/upload.php:57 ++#: wp-content/themes/classic/comments-popup.php:9 ++#, php-format ++msgid "Comments on %s" ++msgstr "Comentários em %s" ++ ++#: wp-admin/edit.php:56 ++msgid "Manage Posts|manage posts header" ++msgstr "Gerir Artigos|gerir cabeçalho de artigos" ++ ++#: wp-admin/edit.php:60 ++#: wp-admin/upload.php:63 ++#, php-format ++msgid "Previous %s" ++msgstr "%s anteriores" ++ ++#: wp-admin/edit.php:60 ++#: wp-admin/upload.php:63 ++#, php-format ++msgid "Latest %s" ++msgstr "Últimos %s" ++ ++#: wp-admin/edit.php:68 ++#: wp-admin/upload.php:71 ++msgid "by other authors" ++msgstr "Autores & Utilizadores" ++ ++#: wp-admin/edit.php:75 ++#: wp-admin/upload.php:78 ++#, php-format ++msgid "in “%s”" ++msgstr "Procurar por “%s”" ++ ++#: wp-admin/edit.php:76 ++#: wp-admin/upload.php:79 ++#, php-format ++msgid "tagged with “%s”" ++msgstr "com as etiquetas “%s”" ++ ++#: wp-admin/edit.php:77 ++#: wp-admin/upload.php:80 ++#, php-format ++msgid "during %s" ++msgstr "durante %s" ++ ++#: wp-admin/edit.php:78 ++#: wp-admin/upload.php:81 ++#, php-format ++msgid "%1$s%2$s%3$s%4$s%5$s%6$s|You can reorder these: 1: Posts, 2: by {s}, 3: matching {s}, 4: in {s}, 5: tagged with {s}, 6: during {s}" ++msgstr "%1$s%2$s%3$s%4$s%5$s%6$s|Pode reordenar: 1: Artigos, 2: por {s}, 3: correspondentes {s}, 4: em {s}, 5: com etiqueta {s}, 6: durante {s}" ++ ++#: wp-admin/edit.php:87 ++msgid "All Posts" ++msgstr "Todos os Artigos" ++ ++#: wp-admin/edit.php:113 ++#: wp-admin/post-new.php:28 ++msgid "Your post has been saved." ++msgstr "O seu artigo foi guardado" ++ ++#: wp-admin/edit.php:113 ++#: wp-admin/post-new.php:28 ++msgid "View post" ++msgstr "Ver artigo" ++ ++#: wp-admin/edit.php:113 ++#: wp-admin/post-new.php:28 ++#: wp-includes/link-template.php:484 ++msgid "Edit post" ++msgstr "Editar este artigo" ++ ++#: wp-admin/edit.php:120 ++msgid "Search Posts" ++msgstr "Pesquisar Artigos" ++ ++#: wp-admin/edit.php:150 ++#: wp-admin/includes/media.php:1023 ++#: wp-admin/upload.php:162 ++msgid "Show all dates" ++msgstr "Mostrar todas as datas" ++ ++#: wp-admin/edit.php:170 ++msgid "View all categories" ++msgstr "Ver todas as categorias" ++ ++#: wp-admin/edit.php:172 ++#: wp-admin/link-manager.php:110 ++#: wp-admin/upload.php:182 ++msgid "Filter" ++msgstr "Filtrar" ++ ++#: wp-admin/edit-post-rows.php:76 ++msgid " — Protected" ++msgstr " — Privado" ++ ++#: wp-admin/edit-post-rows.php:76 ++#: wp-admin/includes/template.php:404 ++msgid " — Private" ++msgstr "— Privado" ++ ++#: wp-admin/edit-post-rows.php:90 ++#: wp-admin/includes/upgrade.php:64 ++#: wp-admin/includes/upgrade.php:65 ++#: wp-includes/category-template.php:116 ++msgid "Uncategorized" ++msgstr "Sem categoria" ++ ++#: wp-admin/edit-post-rows.php:106 ++msgid "No Tags" ++msgstr "Sem Etiquetas" ++ ++#: wp-admin/edit-post-rows.php:137 ++#: wp-admin/includes/template.php:433 ++#, php-format ++msgid "View \"%s\"" ++msgstr "Ver \"%s\"" ++ ++#: wp-admin/edit-post-rows.php:162 ++msgid "View" ++msgstr "Ver" ++ ++#: wp-admin/edit-tag-form.php:3 ++#: wp-admin/edit-tag-form.php:4 ++msgid "Edit Tag" ++msgstr "Editar Etiqueta" ++ ++#: wp-admin/edit-tag-form.php:10 ++#: wp-admin/edit-tag-form.php:11 ++msgid "Add Tag" ++msgstr "Adicionar Etiqueta" ++ ++#: wp-admin/edit-tag-form.php:28 ++msgid "Tag name" ++msgstr "Nome da Etiqueta" ++ ++#: wp-admin/edit-tag-form.php:30 ++msgid "The name is how the tag appears on your site." ++msgstr "O nome é o que aparece no seu site." ++ ++#: wp-admin/edit-tag-form.php:33 ++msgid "Tag slug" ++msgstr "Nome para URL" ++ ++#: wp-admin/edit-tags.php:113 ++msgid "Tag added." ++msgstr "Etiqueta adicionada" ++ ++#: wp-admin/edit-tags.php:114 ++msgid "Tag deleted." ++msgstr "Etiqueta eliminada" ++ ++#: wp-admin/edit-tags.php:115 ++msgid "Tag updated." ++msgstr "Etiqueta actualizada" ++ ++#: wp-admin/edit-tags.php:116 ++msgid "Tag not added." ++msgstr "Etiqueta não foi adicionada" ++ ++#: wp-admin/edit-tags.php:117 ++msgid "Tag not updated." ++msgstr "Etiqueta não foi actualizada" ++ ++#: wp-admin/edit-tags.php:118 ++msgid "Tags deleted." ++msgstr "Etiquetas eliminadas" ++ ++#: wp-admin/edit-tags.php:130 ++#, php-format ++msgid "Manage Tags (add new)" ++msgstr "Gerir Etiquetas (nova etiqueta)" ++ ++#: wp-admin/edit-tags.php:132 ++msgid "Manage Tags" ++msgstr "Gerir Etiquetas" ++ ++#: wp-admin/edit-tags.php:137 ++msgid "Search Tags" ++msgstr "Pesquisar Etiquetas" ++ ++#: wp-admin/export.php:4 ++#: wp-admin/export.php:16 ++#: wp-admin/menu.php:48 ++msgid "Export" ++msgstr "Exportar" ++ ++#: wp-admin/export.php:17 ++msgid "When you click the button below WordPress will create an XML file for you to save to your computer." ++msgstr "Quando clicar no botão abaixo, o WordPress irá criar um ficheiro XML que poderá guardar no computador." ++ ++#: wp-admin/export.php:18 ++msgid "This format, which we call WordPress eXtended RSS or WXR, will contain your posts, pages, comments, custom fields, categories, and tags." ++msgstr "Este formato, ao qual chamamos WordPress eXtended RSS ou WXR, irá conter os seus artigos, páginas, comentários, campos personalizados, categorias e etiquetas." ++ ++#: wp-admin/export.php:19 ++msgid "Once you’ve saved the download file, you can use the Import function on another WordPress blog to import this blog." ++msgstr "Depois de guardar o ficheiro, poderá utilizar a função de importação noutro blog WordPress para importar este blog." ++ ++#: wp-admin/export.php:21 ++msgid "Options" ++msgstr "Opções" ++ ++#: wp-admin/export.php:25 ++msgid "Restrict Author" ++msgstr "Restringir ao Autor" ++ ++#: wp-admin/export.php:28 ++msgid "All Authors" ++msgstr "Todos os Autores" ++ ++#: wp-admin/export.php:40 ++msgid "Download Export File" ++msgstr "Transferir Ficheiro de Exportação" ++ ++#: wp-admin/import/blogger.php:13 ++msgid "Import Blogger" ++msgstr "Importar do Blogger" ++ ++#: wp-admin/import/blogger.php:14 ++msgid "Howdy! This importer allows you to import posts and comments from your Blogger account into your WordPress blog." ++msgstr "Olá! Este importador permite-lhe importar artigos e comentários a partir de uma conta do Blogger para o seu blog do WordPress." ++ ++#: wp-admin/import/blogger.php:15 ++msgid "To use this importer, you must have a Google account and an upgraded (New, was Beta) blog hosted on blogspot.com or a custom domain (not FTP)." ++msgstr "Para usar este importador tem que ter conta no Google e um blog actualizado (Novo, era Beta) alojado em blogspot.com ou num domínio personalizado (não FTP)" ++ ++#: wp-admin/import/blogger.php:16 ++msgid "The first thing you need to do is tell Blogger to let WordPress access your account. You will be sent back here after providing authorization." ++msgstr "A primeira coisa a fazer é permitir acesso por parte do WordPress à sua conta no Blogger. Será reencaminhado novamente para esta página depois de fornecer a autorização." ++ ++#: wp-admin/import/blogger.php:17 ++msgid "Authorize" ++msgstr "Autorização" ++ ++#: wp-admin/import/blogger.php:51 ++msgid "Authorization failed" ++msgstr "Falha de autorização" ++ ++#: wp-admin/import/blogger.php:52 ++msgid "Something went wrong. If the problem persists, send this info to support:" ++msgstr "Algo correu mal. Se o problema persistir, envie estas informações para o suporte técnico:" ++ ++#: wp-admin/import/blogger.php:109 ++msgid "Trouble signing in" ++msgstr "Dificuldades em iniciar sessão" ++ ++#: wp-admin/import/blogger.php:110 ++msgid "We were not able to gain access to your account. Try starting over." ++msgstr "Não foi possível obter acesso à sua conta. Tente reiniciar o processo." ++ ++#: wp-admin/import/blogger.php:143 ++msgid "No blogs found" ++msgstr "Nenhum blog encontrado" ++ ++#: wp-admin/import/blogger.php:144 ++msgid "We were able to log in but there were no blogs. Try a different account next time." ++msgstr "Foi possível iniciar sessão, mas não havia nenhum blog. Tente uma conta diferente." ++ ++#: wp-admin/import/blogger.php:152 ++#: wp-admin/upgrade.php:30 ++#: wp-admin/upgrade.php:57 ++msgid "Continue" ++msgstr "Continuar" ++ ++#: wp-admin/import/blogger.php:153 ++#: wp-admin/link-import.php:73 ++msgid "Importing..." ++msgstr "A importar...." ++ ++#: wp-admin/import/blogger.php:154 ++msgid "Set Authors" ++msgstr "Definir Autores" ++ ++#: wp-admin/import/blogger.php:155 ++msgid "Preparing author mapping form..." ++msgstr "A preparar mapeamento de autor a partir de..." ++ ++#: wp-admin/import/blogger.php:156 ++msgid "Final Step: Author Mapping" ++msgstr "Último Passo: Mapeamento de Autor" ++ ++#: wp-admin/import/blogger.php:157 ++msgid "Nothing was imported. Had you already imported this blog?" ++msgstr "Nenhum conteúdo foi importado. Já tinha importado este blog?" ++ ++#: wp-admin/import/blogger.php:158 ++msgid "Blogger Blogs" ++msgstr "blogs do Blogger" ++ ++#: wp-admin/import/blogger.php:159 ++msgid "Blog Name" ++msgstr "Nome do Blog" ++ ++#: wp-admin/import/blogger.php:160 ++msgid "Blog URL" ++msgstr "URL do Blog" ++ ++#: wp-admin/import/blogger.php:161 ++msgid "The Magic Button" ++msgstr "O Botão Mágico" ++ ++#: wp-admin/import/blogger.php:163 ++#: wp-admin/includes/file.php:3 ++#: wp-admin/menu.php:38 ++#: wp-content/plugins/akismet/akismet.php:488 ++#: wp-content/themes/classic/comments-popup.php:22 ++msgid "Comments" ++msgstr "Comentários" ++ ++#: wp-admin/import/blogger.php:164 ++msgid "This feature requires Javascript but it seems to be disabled. Please enable Javascript and then reload this page. Don't worry, you can turn it back off when you're done." ++msgstr "Esta funcionalidade requer JavaScript, mas JavaScript parece estar desactivado. Active o suporte para JavaScript e actualize esta página. Não se preocupe, poderá voltar a desactivar JavaScript assim que tiver concluído o processo." ++ ++#: wp-admin/import/blogger.php:611 ++msgid "All posts were imported with the current user as author. Use this form to move each Blogger user's posts to a different WordPress user. You may add users and then return to this page and complete the user mapping. This form may be used as many times as you like until you activate the \"Restart\" function below." ++msgstr "Todos os artigos foram importados com o utilizador actual como autor. Utilize este formulário para mover cada artigo de utilizador do Blogger para um utilizador diferente do WordPress. Poderá adicionar utilizadores e regressar a esta página para concluir o mapeamento de utilizadores. Este formulário poderá ser utilizado tantas vezes quantas pretendido, até que active a função \"Reiniciar\" abaixo." ++ ++#: wp-admin/import/blogger.php:612 ++msgid "Author mapping" ++msgstr "Mapeamento de Autores" ++ ++#: wp-admin/import/blogger.php:614 ++msgid "Blogger username" ++msgstr "Nome de utilizador do Blogger" ++ ++#: wp-admin/import/blogger.php:615 ++msgid "WordPress login" ++msgstr "Dados de Início de Sessão do WordPress" ++ ++#: wp-admin/import/blogger.php:673 ++msgid "Could not connect to https://www.google.com" ++msgstr "Não foi possível ligar a https://www.google.com" ++ ++#: wp-admin/import/blogger.php:674 ++msgid "There was a problem opening a secure connection to Google. This is what went wrong:" ++msgstr "Ocorreu um problema ao tentar abrir uma ligação segura para o Google. O erro foi o seguinte:" ++ ++#: wp-admin/import/blogger.php:685 ++#, php-format ++msgid "Could not connect to %s" ++msgstr "Não foi possível ligar a %s" ++ ++#: wp-admin/import/blogger.php:686 ++msgid "There was a problem opening a connection to Blogger. This is what went wrong:" ++msgstr "Ocorreu um erro ao tentar abrir uma ligação para o Blogger. O erro foi o seguinte:" ++ ++#: wp-admin/import/blogger.php:752 ++msgid "Congratulations!" ++msgstr "Parabéns!" ++ ++#: wp-admin/import/blogger.php:752 ++msgid "Now that you have imported your Blogger blog into WordPress, what are you going to do? Here are some suggestions:" ++msgstr "Agora que importou o seu blog do Blogger para o Wordpress, o que fazer? Eis algumas sugestões:" ++ ++#: wp-admin/import/blogger.php:752 ++msgid "That was hard work! Take a break." ++msgstr "Foi um trabalho árduo! Faça uma pausa." ++ ++#: wp-admin/import/blogger.php:754 ++msgid "In case you haven't done it already, you can import the posts from your other blogs:" ++msgstr "Caso ainda não o tenha feito, poderá importar os artigos dos outros blogs:" ++ ++#: wp-admin/import/blogger.php:756 ++#, php-format ++msgid "Go to Authors & Users, where you can modify the new user(s) or delete them. If you want to make all of the imported posts yours, you will be given that option when you delete the new authors." ++msgstr "Vá para Authors & Users, onde poderá modificar os novos utilizadores ou eliminá-los. Se pretender tornar-se o autor de todos os artigos importados, terá essa opção ao eliminar os novos autores." ++ ++#: wp-admin/import/blogger.php:757 ++msgid "For security, click the link below to reset this importer." ++msgstr "Por motivos de segurança, clique no link abaixo para repor este importador." ++ ++#: wp-admin/import/blogger.php:788 ++msgid "Restart" ++msgstr "Reiniciar" ++ ++#: wp-admin/import/blogger.php:789 ++msgid "We have saved some information about your Blogger account in your WordPress database. Clearing this information will allow you to start over. Restarting will not affect any posts you have already imported. If you attempt to re-import a blog, duplicate posts and comments will be skipped." ++msgstr "Guardamos algumas informações sobre a sua conta do Blogger na nossa base de dados do WordPress. Se limpar estas informações, poderá reiniciar o processo. Reiniciar não irá afectar os artigos que já tenham sido importados. Se tentar voltar a importar um blog, os artigos e comentários duplicados serão ignorados." ++ ++#: wp-admin/import/blogger.php:790 ++msgid "Clear account information" ++msgstr "Limpar informações de conta" ++ ++#: wp-admin/import/blogger.php:840 ++msgid "Blogger" ++msgstr "Blogger" ++ ++#: wp-admin/import/blogger.php:840 ++msgid "Import posts, comments, and users from a Blogger blog." ++msgstr "Importar artigos, comentários e utilizadores de um blog Blogger" ++ ++#: wp-admin/import/blogware.php:11 ++msgid "Import Blogware" ++msgstr "Importar de Blogware" ++ ++#: wp-admin/import/blogware.php:26 ++msgid "Howdy! This importer allows you to extract posts from Blogware XML export file into your blog. Pick a Blogware file to upload and click Import." ++msgstr "Olá! Este importador permite-lhe extrair artigos de um ficheiro de exportação XML do Blogware para o seu blog. Seleccione um ficheiro Blogware para enviar e clique em Enviar Ficheiro e Importar." ++ ++#: wp-admin/import/blogware.php:89 ++#: wp-admin/import/livejournal.php:69 ++#: wp-admin/import/mt.php:210 ++#: wp-admin/import/wordpress.php:387 ++#, php-format ++msgid "Post %s already exists." ++msgstr "O artigo %s já exise." ++ ++#: wp-admin/import/blogware.php:91 ++#: wp-admin/import/livejournal.php:71 ++#: wp-admin/import/mt.php:213 ++#: wp-admin/import/wordpress.php:418 ++#, php-format ++msgid "Importing post %s..." ++msgstr "A importar o artigo %s..." ++ ++#: wp-admin/import/blogware.php:98 ++#: wp-admin/import/livejournal.php:77 ++#: wp-admin/import/rss.php:116 ++msgid "Couldn't get post ID" ++msgstr "Não foi possível obter ID de artigo" ++ ++#: wp-admin/import/blogware.php:144 ++#: wp-includes/pluggable.php:892 ++#, php-format ++msgid "%s comment" ++msgid_plural "%s comments" ++msgstr[0] "%s comentário" ++msgstr[1] "%s comentários" ++ ++#: wp-admin/import/blogware.php:167 ++#: wp-admin/import/livejournal.php:144 ++#: wp-admin/import/mt.php:423 ++#: wp-admin/import/rss.php:147 ++#, php-format ++msgid "All done. Have fun!" ++msgstr "Tudo concluído. Divirta-se!" ++ ++#: wp-admin/import/blogware.php:200 ++msgid "Blogware" ++msgstr "Blogware" ++ ++#: wp-admin/import/blogware.php:200 ++msgid "Import posts from Blogware." ++msgstr "Importar artigos de um blog Blogware" ++ ++#: wp-admin/import/btt.php:7 ++msgid "Import Bunny’s Technorati Tags" ++msgstr "Importar etiquetas Bunny’s Technorati Tags" ++ ++#: wp-admin/import/btt.php:8 ++#: wp-admin/import/dotclear.php:116 ++#: wp-admin/import/jkw.php:8 ++#: wp-admin/import/stp.php:6 ++#: wp-admin/import/textpattern.php:33 ++#: wp-admin/import/utw.php:8 ++msgid "Steps may take a few minutes depending on the size of your database. Please be patient." ++msgstr "Os passos poderão demorar alguns minutos, dependendo do tamanho da sua base de dados." ++ ++#: wp-admin/import/btt.php:17 ++msgid "Howdy! This imports tags from Bunny’s Technorati Tags into WordPress tags." ++msgstr "Olá! Este processo importa etiquetas de Bunny’s Technorati Tags para etiquetas de WordPress." ++ ++#: wp-admin/import/btt.php:18 ++msgid "This is suitable for Bunny’s Technorati Tags version 0.6." ++msgstr "Isto é apropriado para a versão 0.6 de Bunny’s Technorati Tags." ++ ++#: wp-admin/import/btt.php:19 ++msgid "All existing Bunny’s Technorati Tags will be removed after import." ++msgstr "Todas as etiquetas Bunny’s Technorati vão ser apagadas depois da importação." ++ ++#: wp-admin/import/btt.php:20 ++#: wp-admin/import/jkw.php:20 ++#: wp-admin/import/stp.php:18 ++#: wp-admin/import/utw.php:20 ++msgid "Don’t be stupid - backup your database before proceeding!" ++msgstr "Não seja parvo - faça uma cópia de segurança da base de dados antes de avançar." ++ ++#: wp-admin/import/btt.php:23 ++msgid "Import Tags" ++msgstr "Importar Etiquetas" ++ ++#: wp-admin/import/btt.php:62 ++msgid "Reading Bunny’s Technorati Tags…" ++msgstr "A ler etiquetas Bunny’s Technorati;" ++ ++#: wp-admin/import/btt.php:67 ++#: wp-admin/import/jkw.php:83 ++#: wp-admin/import/jkw.php:124 ++#: wp-admin/import/utw.php:72 ++msgid "No Tags Found!" ++msgstr "Não foi encontrado nenhum comentário." ++ ++#: wp-admin/import/btt.php:71 ++#: wp-admin/import/jkw.php:87 ++#, php-format ++msgid "Done! %s post with tags were read." ++msgid_plural "Done! %s posts with tags were read." ++msgstr[0] "Feito! Foram lidos %s postscom etiquetas." ++msgstr[1] "Feito! %s entradas com etiquetas foram lidas." ++ ++#: wp-admin/import/btt.php:93 ++#: wp-admin/import/jkw.php:109 ++#: wp-admin/import/jkw.php:142 ++msgid "Next" ++msgstr "Avançar" ++ ++#: wp-admin/import/btt.php:100 ++#: wp-admin/import/jkw.php:163 ++#: wp-admin/import/stp.php:139 ++#: wp-admin/import/utw.php:250 ++msgid "Import Complete!" ++msgstr "Cabeçalho concluído!" ++ ++#: wp-admin/import/btt.php:113 ++msgid "Import Bunny’s Technorati Tags into WordPress tags." ++msgstr "Importar etiquetas Bunny’s Technorati Tags para etiquetas WordPress" ++ ++#: wp-admin/import/dotclear.php:115 ++msgid "Import DotClear" ++msgstr "Importar de Dotclear" ++ ++#: wp-admin/import/dotclear.php:126 ++msgid "Howdy! This importer allows you to extract posts from a DotClear database into your blog. Mileage may vary." ++msgstr "Olá! Este importador permite-lhe extrair artigos de uma base de dados Dotclear para o seu blog." ++ ++#: wp-admin/import/dotclear.php:127 ++msgid "Your DotClear Configuration settings are as follows:" ++msgstr "As definições de configuração do Dotclear são as seguintes:" ++ ++#: wp-admin/import/dotclear.php:131 ++msgid "Import Categories" ++msgstr "Importar Categorias" ++ ++#: wp-admin/import/dotclear.php:204 ++#: wp-admin/import/textpattern.php:156 ++msgid "Importing Categories..." ++msgstr "A Importar Categorias...." ++ ++#: wp-admin/import/dotclear.php:228 ++#: wp-admin/import/textpattern.php:180 ++#, php-format ++msgid "Done! %1$s category imported." ++msgid_plural "Done! %1$s categories imported." ++msgstr[0] "Concluído! %1$s categoria importada." ++msgstr[1] "Concluído! %1$s categorias importadas." ++ ++#: wp-admin/import/dotclear.php:231 ++#: wp-admin/import/textpattern.php:183 ++msgid "No Categories to Import!" ++msgstr "Nenhuma Categoria Para Importar!" ++ ++#: wp-admin/import/dotclear.php:245 ++#: wp-admin/import/textpattern.php:197 ++msgid "Importing Users..." ++msgstr "A Importar Utilizadores...." ++ ++#: wp-admin/import/dotclear.php:302 ++#: wp-admin/import/textpattern.php:252 ++#, php-format ++msgid "Done! %1$s users imported." ++msgstr "Concluído! %1$s utilizadores importados." ++ ++#: wp-admin/import/dotclear.php:306 ++#: wp-admin/import/textpattern.php:256 ++msgid "No Users to Import!" ++msgstr "Nenhum Utilizador Para Importar!" ++ ++#: wp-admin/import/dotclear.php:322 ++#: wp-admin/import/textpattern.php:272 ++msgid "Importing Posts..." ++msgstr "A Importar Artigos...." ++ ++#: wp-admin/import/dotclear.php:405 ++#: wp-admin/import/textpattern.php:346 ++#, php-format ++msgid "Done! %1$s posts imported." ++msgstr "Concluído! %1$s artigos importados." ++ ++#: wp-admin/import/dotclear.php:420 ++#: wp-admin/import/textpattern.php:361 ++msgid "Importing Comments..." ++msgstr "A Importar Comentários...." ++ ++#: wp-admin/import/dotclear.php:475 ++#: wp-admin/import/textpattern.php:413 ++#, php-format ++msgid "Done! %1$s comments imported." ++msgstr "Concluído! %1$s comentários importados." ++ ++#: wp-admin/import/dotclear.php:478 ++#: wp-admin/import/textpattern.php:416 ++msgid "No Comments to Import!" ++msgstr "Nenhum Comentário Para Importar!" ++ ++#: wp-admin/import/dotclear.php:491 ++#: wp-admin/import/textpattern.php:429 ++msgid "Importing Links..." ++msgstr "A Importar Links...." ++ ++#: wp-admin/import/dotclear.php:529 ++#, php-format ++msgid "Done! %s link or link category imported." ++msgid_plural "Done! %s links or link categories imported." ++msgstr[0] "Feito! Link ou categoria de link %s importada." ++msgstr[1] "Feito! Links ou categoria de links %s importadas." ++ ++#: wp-admin/import/dotclear.php:533 ++#: wp-admin/import/textpattern.php:469 ++msgid "No Links to Import!" ++msgstr "Nenhum Link Para Importar!" ++ ++#: wp-admin/import/dotclear.php:548 ++#: wp-admin/import/textpattern.php:484 ++msgid "Import Users" ++msgstr "Importar Utilizadores" ++ ++#: wp-admin/import/dotclear.php:561 ++#: wp-admin/import/textpattern.php:497 ++msgid "Import Posts" ++msgstr "Importar Artigos" ++ ++#: wp-admin/import/dotclear.php:575 ++#: wp-admin/import/textpattern.php:511 ++msgid "Import Comments" ++msgstr "Importar Comentários" ++ ++#: wp-admin/import/dotclear.php:600 ++#: wp-admin/import/textpattern.php:536 ++msgid "Finish" ++msgstr "Concluir" ++ ++#: wp-admin/import/dotclear.php:624 ++msgid "Welcome to WordPress. We hope (and expect!) that you will find this platform incredibly rewarding! As a new WordPress user coming from DotClear, there are some things that we would like to point out. Hopefully, they will help your transition go as smoothly as possible." ++msgstr "Seja bem-vindo ao WordPress! Esperamos que considere esta plataforma extremamente recompensadora! Como novo utilizador vindo do Dotclear, existem algumas coisas que gostaríamos de realçar. Esperamos que tal ajude a uma transição o mais suave possível." ++ ++#: wp-admin/import/dotclear.php:625 ++#: wp-admin/import/textpattern.php:560 ++#: wp-admin/menu.php:29 ++#: wp-admin/users.php:8 ++msgid "Users" ++msgstr "Utilizadores" ++ ++#: wp-admin/import/dotclear.php:626 ++#, php-format ++msgid "You have already setup WordPress and have been assigned an administrative login and password. Forget it. You didn't have that login in DotClear, why should you have it here? Instead we have taken care to import all of your users into our system. Unfortunately there is one downside. Because both WordPress and DotClear uses a strong encryption hash with passwords, it is impossible to decrypt it and we are forced to assign temporary passwords to all your users. Every user has the same username, but their passwords are reset to password123. So Login and change it." ++msgstr "Já configurou o WordPress e, como tal, já tem um nome de utilizador e uma senha administrativos. Esqueça-os. Não tinha esses dados de início de sessão no Dotclear, por que motivo os haveria de ter aqui? Em vez disso, todos os utilizadores do Dotclear foram importados para este sistema. Infelizmente, há um aspecto negativo. Dado que tanto o WordPress como o Dotclear utilizam encriptação forte de senhas, é impossível saber quais são as senhas e, como tal, é necessário atribuir senhas temporárias a todos os utilizadores. Todos os utilizadores têm o mesmo nome de utilizador, mas as senhas foram repostas para password123. Inicie sessão e altere-as." ++ ++#: wp-admin/import/dotclear.php:627 ++#: wp-admin/import/textpattern.php:562 ++msgid "Preserving Authors" ++msgstr "Preservar Autores" ++ ++#: wp-admin/import/dotclear.php:628 ++#: wp-admin/import/textpattern.php:563 ++msgid "Secondly, we have attempted to preserve post authors. If you are the only author or contributor to your blog, then you are safe. In most cases, we are successful in this preservation endeavor. However, if we cannot ascertain the name of the writer due to discrepancies between database tables, we assign it to you, the administrative user." ++msgstr "Em segundo lugar, tentámos preservar os autores dos artigos. Se for o único autor do blog, não há problema. Na maioria dos casos, este esforço para preservar os autores tem êxito. No entanto, se não for possível determinar o nome do autor devido a discrepâncias entre tabelas da base de dados, os artigos são atribuídos ao administrador. " ++ ++#: wp-admin/import/dotclear.php:629 ++#: wp-admin/import/textpattern.php:564 ++msgid "Textile" ++msgstr "Textile" ++ ++#: wp-admin/import/dotclear.php:630 ++msgid "Also, since you're coming from DotClear, you probably have been using Textile to format your comments and posts. If this is the case, we recommend downloading and installing Textile for WordPress. Trust me... You'll want it." ++msgstr "Dado que vem do Dotclear, provavelmente estará habituado a utilizar Textile para formatar os comentários e artigos. Neste caso, recomendamos que transfira e instale o Textile para o WordPress. Acredite... irá querer esta extensão." ++ ++#: wp-admin/import/dotclear.php:631 ++#: wp-admin/import/textpattern.php:566 ++msgid "WordPress Resources" ++msgstr "Recursos do WordPress" ++ ++#: wp-admin/import/dotclear.php:632 ++#: wp-admin/import/textpattern.php:567 ++msgid "Finally, there are numerous WordPress resources around the internet. Some of them are:" ++msgstr "Por fim, existem vários recursos sobre o WordPress na Internet. Eis alguns:" ++ ++#: wp-admin/import/dotclear.php:634 ++#: wp-admin/import/textpattern.php:569 ++msgid "The official WordPress site" ++msgstr "Website oficial do WordPress" ++ ++#: wp-admin/import/dotclear.php:635 ++#: wp-admin/import/textpattern.php:570 ++msgid "The WordPress support forums" ++msgstr "Fóruns de suporte do WordPress" ++ ++#: wp-admin/import/dotclear.php:636 ++#: wp-admin/import/textpattern.php:571 ++msgid "The Codex (In other words, the WordPress Bible)" ++msgstr "O Codex (Por outras palavras, a Bíblia do WordPress)" ++ ++#: wp-admin/import/dotclear.php:638 ++#, php-format ++msgid "That's it! What are you waiting for? Go login!" ++msgstr "é tudo! De que é que está à espera? Inicie Sessão!" ++ ++#: wp-admin/import/dotclear.php:644 ++msgid "DotClear Database User:" ++msgstr "Nome de Utilizador da Base de Dados do DotClear:" ++ ++#: wp-admin/import/dotclear.php:645 ++msgid "DotClear Database Password:" ++msgstr "Senha da Base de Dados do DotClear:" ++ ++#: wp-admin/import/dotclear.php:646 ++msgid "DotClear Database Name:" ++msgstr "Nome da Base de Dados do DotClear:" ++ ++#: wp-admin/import/dotclear.php:647 ++msgid "DotClear Database Host:" ++msgstr "Sistema Anfitrião da Base de Dados do DotClear:" ++ ++#: wp-admin/import/dotclear.php:648 ++msgid "DotClear Table prefix:" ++msgstr "Prefixo da tabela do DotClear:" ++ ++#: wp-admin/import/dotclear.php:649 ++msgid "Originating character set:" ++msgstr "Conjunto de caracteres de origem:" ++ ++#: wp-admin/import/dotclear.php:745 ++msgid "DotClear" ++msgstr "DotClear" ++ ++#: wp-admin/import/dotclear.php:745 ++msgid "Import categories, users, posts, comments, and links from a DotClear blog." ++msgstr "Importar artigos, categorias, comentários, links e utilizadores de um blog DotClear" ++ ++#: wp-admin/import/greymatter.php:9 ++msgid "Import GreyMatter" ++msgstr "Importar de GreyMatter" ++ ++#: wp-admin/import/greymatter.php:19 ++msgid "This is a basic GreyMatter to WordPress import script." ++msgstr "Este é um script básico para importação do GreyMatter para o WordPress." ++ ++#: wp-admin/import/greymatter.php:20 ++msgid "What it does:" ++msgstr "O que faz:" ++ ++#: wp-admin/import/greymatter.php:22 ++msgid "Parses gm-authors.cgi to import (new) authors. Everyone is imported at level 1." ++msgstr "Processa gm-authors.cgi para importar (novos) autores. No nível 1, são todos importados." ++ ++#: wp-admin/import/greymatter.php:23 ++msgid "Parses the entries cgi files to import posts, comments, and karma on posts (although karma is not used on WordPress yet).
    If authors are found not to be in gm-authors.cgi, imports them at level 0." ++msgstr "Processa os ficheiros cgi de entradas para importar artigos, comentários e karma de artigos (embora o karma ainda não seja utilizado no WordPress).
    Se os autores não estiverem em gm-authors.cgi, serão importados com o nível 0." ++ ++#: wp-admin/import/greymatter.php:24 ++msgid "Detects duplicate entries or comments. If you don't import everything the first time, or this import should fail in the middle, duplicate entries will not be made when you try again." ++msgstr "Detecta entradas ou comentários duplicados. Se não importar tudo da primeira vez, ou se esta importação falhar, não serão geradas entradas duplicadas quando tentar novamente." ++ ++#: wp-admin/import/greymatter.php:26 ++msgid "What it does not:" ++msgstr "O que não faz:" ++ ++#: wp-admin/import/greymatter.php:28 ++msgid "Parse gm-counter.cgi, gm-banlist.cgi, gm-cplog.cgi (you can make a CP log hack if you really feel like it, but I question the need of a CP log)." ++msgstr "Não processa gm-counter.cgi, gm-banlist.cgi, gm-cplog.cgi (poderá ser feito um \"hack\" ao registo do CP, mas a utilidade de tal é questionável)." ++ ++#: wp-admin/import/greymatter.php:29 ++msgid "Import gm-templates." ++msgstr "Importar gm-templates" ++ ++#: wp-admin/import/greymatter.php:30 ++msgid "Doesn't keep entries on top." ++msgstr "Não mantém entradas no topo." ++ ++#: wp-admin/import/greymatter.php:38 ++msgid "Second step: GreyMatter details:" ++msgstr "Segundo passo: detalhes do GreyMatter:" ++ ++#: wp-admin/import/greymatter.php:41 ++msgid "Path to GM files:" ++msgstr "Caminho para ficheiros GM:" ++ ++#: wp-admin/import/greymatter.php:45 ++msgid "Path to GM entries:" ++msgstr "Caminho para entradas GM:" ++ ++#: wp-admin/import/greymatter.php:49 ++msgid "Last entry's number:" ++msgstr "Número da última entrada:" ++ ++#: wp-admin/import/greymatter.php:51 ++msgid "This importer will search for files 00000001.cgi to 000-whatever.cgi,
    so you need to enter the number of the last GM post here.
    (if you don't know that number, just log into your FTP and look it out
    in the entries' folder)" ++msgstr "Este importador irá procurar ficheiros de 00000001.cgi a 000-qualquer_coisa.cgi;
    assim, é necessário introduzir aqui o número do último artigo do GM.
    (Se não souber qual é o número, aceda à sua conta através de FTP e consulte a pasta de entradas para saber o número.)" ++ ++#: wp-admin/import/greymatter.php:55 ++msgid "Start Importing" ++msgstr "Iniciar a Importação" ++ ++#: wp-admin/import/greymatter.php:88 ++msgid "Wrong path, the path to the GM entries does not exist on the server" ++msgstr "Caminho errado: o caminho para as entradas do GM não existe no servidor" ++ ++#: wp-admin/import/greymatter.php:91 ++msgid "Wrong path, the path to the GM files does not exist on the server" ++msgstr "Caminho errado: o caminho para os ficheiros do GM não existe no servidor" ++ ++#: wp-admin/import/greymatter.php:97 ++msgid "The importer is running..." ++msgstr "Importador em execução..." ++ ++#: wp-admin/import/greymatter.php:99 ++msgid "importing users..." ++msgstr "a importar utilizadores..." ++ ++#: wp-admin/import/greymatter.php:123 ++#, php-format ++msgid "user %s" ++msgstr "utilizador %s" ++ ++#: wp-admin/import/greymatter.php:123 ++msgid "Already exists" ++msgstr "Já existe" ++ ++#: wp-admin/import/greymatter.php:132 ++#, php-format ++msgid "user %s..." ++msgstr "utilizador %s..." ++ ++#: wp-admin/import/greymatter.php:132 ++#: wp-admin/import/greymatter.php:135 ++#: wp-admin/import/greymatter.php:280 ++#: wp-admin/import/greymatter.php:285 ++msgid "Done" ++msgstr "Concluído" ++ ++#: wp-admin/import/greymatter.php:136 ++msgid "importing posts, comments, and karma..." ++msgstr "a importar artigos, comentários e karma..." ++ ++#: wp-admin/import/greymatter.php:172 ++#, php-format ++msgid "entry # %s : %s : by %s" ++msgstr "entrada # %s : %s : por %s" ++ ++#: wp-admin/import/greymatter.php:200 ++msgid "(already exists)" ++msgstr "(já existe)" ++ ++#: wp-admin/import/greymatter.php:222 ++#, php-format ++msgid "registered deleted user %s at level 0 " ++msgstr "utilizador eliminado %s registado no nível 0 " ++ ++#: wp-admin/import/greymatter.php:272 ++#, php-format ++msgid "imported %s comment" ++msgid_plural "imported %s comments" ++msgstr[0] "importado %s comentário" ++msgstr[1] "importados %s comentários" ++ ++#: wp-admin/import/greymatter.php:277 ++#, php-format ++msgid "ignored %s pre-existing comment" ++msgid_plural "ignored %s pre-existing comments" ++msgstr[0] "ignorado %s comentário préexistente" ++msgstr[1] "ignorado %s comentários préexistentes" ++ ++#: wp-admin/import/greymatter.php:287 ++msgid "Completed GreyMatter import!" ++msgstr "Importação GreyMatter concluída!" ++ ++#: wp-admin/import/greymatter.php:319 ++msgid "GreyMatter" ++msgstr "GreyMatter" ++ ++#: wp-admin/import/greymatter.php:319 ++msgid "Import users, posts, and comments from a Greymatter blog." ++msgstr "Importar artigos, comentários e utilizadores de um blog Greymatter" ++ ++#: wp-admin/import/jkw.php:7 ++msgid "Import Jerome’s Keywords" ++msgstr "Importar de Jerome’s Keywords" ++ ++#: wp-admin/import/jkw.php:17 ++msgid "Howdy! This imports tags from Jerome’s Keywords into WordPress tags." ++msgstr "Olá! Este processo importa etiquetas de Jerome’s Keywords para etiquetas de WordPress." ++ ++#: wp-admin/import/jkw.php:18 ++msgid "This is suitable for Jerome’s Keywords version 1.x and 2.0a." ++msgstr "Importa das versões 1.x e 2.0a de Jerome’s Keywords." ++ ++#: wp-admin/import/jkw.php:19 ++msgid "All existing Jerome’s Keywords will be removed after import." ++msgstr "Todas as Keywords do Jerome serão apagadas depois da importação." ++ ++#: wp-admin/import/jkw.php:23 ++msgid "Import Version 1.x" ++msgstr "Importar da Versão 1.x" ++ ++#: wp-admin/import/jkw.php:27 ++msgid "Import Version 2.0a" ++msgstr "Importar da Versão 2.0a" ++ ++#: wp-admin/import/jkw.php:78 ++#: wp-admin/import/jkw.php:118 ++msgid "Reading Jerome’s Keywords Tags…" ++msgstr "A ler etiquetas Jerome’s Keywords …" ++ ++#: wp-admin/import/jkw.php:128 ++#: wp-admin/import/utw.php:87 ++#, php-format ++msgid "Done! %s tag were read." ++msgid_plural "Done! %s tags were read." ++msgstr[0] "Feito! Foram lidas %s etiquetas." ++msgstr[1] "Já está! Foram lidas %s etiquetas." ++ ++#: wp-admin/import/jkw.php:176 ++msgid "Import Jerome’s Keywords into WordPress tags." ++msgstr "Importar etiquetas Jerome’s Keywords para etiquetas WordPress" ++ ++#: wp-admin/import/livejournal.php:9 ++msgid "Import LiveJournal" ++msgstr "Importar do LiveJournal" ++ ++#: wp-admin/import/livejournal.php:24 ++msgid "Howdy! Upload your LiveJournal XML export file and we’ll import the posts into this blog." ++msgstr "Olá! Envie o seu ficheiro de exportação XML do LiveJournal, e os artigos serão importados para este blog." ++ ++#: wp-admin/import/livejournal.php:25 ++msgid "Choose a LiveJournal XML file to upload, then click Upload file and import." ++msgstr "Escolha um ficheiro XML do LiveJournal para enviar e clique em Enviar Ficheiro e Importar." ++ ++#: wp-admin/import/livejournal.php:122 ++#: wp-admin/import/mt.php:250 ++#: wp-admin/import/wordpress.php:493 ++#, php-format ++msgid "(%s comment)" ++msgid_plural "(%s comments)" ++msgstr[0] "(%s comentário)" ++msgstr[1] "(%s comentários)" ++ ++#: wp-admin/import/livejournal.php:178 ++msgid "LiveJournal" ++msgstr "LiveJournal" ++ ++#: wp-admin/import/livejournal.php:178 ++msgid "Import posts from a LiveJournal XML export file." ++msgstr "Importar artigos de um ficheiro de exportação XML LiveJournal" ++ ++#: wp-admin/import/mt.php:14 ++msgid "Import Movable Type or TypePad" ++msgstr "Importar de Movable Type ou TypePad" ++ ++#: wp-admin/import/mt.php:25 ++msgid "Howdy! We’re about to begin importing all of your Movable Type or Typepad entries into WordPress. To begin, either choose a file to upload and click \"Upload file and import,\" or use FTP to upload your MT export file as mt-export.txt in your /wp-content/ directory and then click \"Import mt-export.txt\"" ++msgstr "Olá! Estamos prontos para começar a importar os seus posts do Movable Type ou Typepad para o WordPress. Para começar, pode fazer upload do ficheiro e clicar em \"Enviar o ficheiro e Importar\" ou através de FTP colocar o ficheiros exportado pelo MT mt-export.txt na pasta /wp-content/ e clicar em \"Importar mt-export.txt.\"" ++ ++#: wp-admin/import/mt.php:33 ++msgid "Or use mt-export.txt in your /wp-content/ directory" ++msgstr "Ou use o ficheiro mt-export.txt que se encontra na pasta /wp-content/" ++ ++#: wp-admin/import/mt.php:35 ++msgid "Import mt-export.txt" ++msgstr "Importar mt-export.txt" ++ ++#: wp-admin/import/mt.php:38 ++msgid "The importer is smart enough not to import duplicates, so you can run this multiple times without worry if—for whatever reason—it doesn't finish. If you get an out of memory error try splitting up the import file into pieces." ++msgstr "O importador é suficientemente inteligente para não importar itens duplicados, pelo que poderá executá-lo várias vezes se, por qualquer motivo, o mesmo não for concluído. Se obtiver um erro de memória esgotada, tente dividir o ficheiro a importar em partes mais pequenas." ++ ++#: wp-admin/import/mt.php:48 ++#: wp-admin/import/wordpress.php:232 ++#: wp-admin/includes/template.php:807 ++#: wp-admin/options-reading.php:30 ++#: wp-admin/options-reading.php:31 ++msgid "- Select -" ++msgstr "- Seleccionar -" ++ ++#: wp-admin/import/mt.php:155 ++#: wp-admin/import/wordpress.php:181 ++msgid "Assign Authors" ++msgstr "Atribuir Autores" ++ ++#: wp-admin/import/mt.php:156 ++msgid "To make it easier for you to edit and save the imported posts and drafts, you may want to change the name of the author of the posts. For example, you may want to import all the entries as admin's entries." ++msgstr "Para facilitar a tarefa de editar e guardar os artigos e rascunhos importados, é aconselhável alterar o nome do autor dos artigos. Por exemplo, poderá pretender importar todas as entradas como sendo propriedade de admin." ++ ++#: wp-admin/import/mt.php:157 ++msgid "Below, you can see the names of the authors of the MovableType posts in italics. For each of these names, you can either pick an author in your WordPress installation from the menu, or enter a name for the author in the textbox." ++msgstr "Pode ver abaixo os nomes dos autores dos artigos de MovableType em itálico. Para cada um desses autores, pode fazer corresponder um autor desta instalação de WordPress ou indicar um nome na caixa de texto." ++ ++#: wp-admin/import/mt.php:158 ++#: wp-admin/import/wordpress.php:185 ++msgid "If a new user is created by WordPress, a password will be randomly generated. Manually change the user's details if necessary." ++msgstr "Se um novo utilizador é criado pelo WordPress, será gerada uma password aleatória. Modifique os detalhes do utilizador manualmente. se necessário." ++ ++#: wp-admin/import/mt.php:169 ++msgid "Current author:" ++msgstr "Autor actual:" ++ ++#: wp-admin/import/mt.php:169 ++#: wp-admin/import/wordpress.php:221 ++#, php-format ++msgid "Create user %1$s or map to existing" ++msgstr "Criar utilizador %1$s ou mapear para existente" ++ ++#: wp-admin/import/mt.php:174 ++#: wp-admin/import/wordpress.php:213 ++#: wp-includes/post-template.php:527 ++msgid "Submit" ++msgstr "Submeter" ++ ++#: wp-admin/import/mt.php:184 ++msgid "mt-export.txt does not exist" ++msgstr "mt-export.txt não existe" ++ ++#: wp-admin/import/mt.php:190 ++msgid "Sorry, there has been an error" ++msgstr "Ocorreu um erro" ++ ++#: wp-admin/import/mt.php:231 ++#, php-format ++msgid "
    Adding tags %s..." ++msgstr "
    Adicionado as etiquetas %s..." ++ ++#: wp-admin/import/mt.php:267 ++#, php-format ++msgid "(%s ping)" ++msgid_plural "(%s pings)" ++msgstr[0] "(%s ping)" ++msgstr[1] "(%s pings)" ++ ++#: wp-admin/import/mt.php:468 ++msgid "Movable Type and TypePad" ++msgstr "Movable Type e TypePad" ++ ++#: wp-admin/import/mt.php:468 ++msgid "Import posts and comments from a Movable Type or Typepad blog." ++msgstr "Importar artigos e comentários de um blog Movable Type ou Typepad" ++ ++#: wp-admin/import.php:10 ++msgid "If you have posts or comments in another system, WordPress can import those into this blog. To get started, choose a system to import from below:" ++msgstr "Se tiver artigos ou comentários noutro sistema, o WordPress poderá importá-los para este blog. Para começar, escolha abaixo um sistema a partir do qual pretende importar:" ++ ++#: wp-admin/import.php:32 ++msgid "No importers are available." ++msgstr "Nenhum importador disponível." ++ ++#: wp-admin/import/rss.php:10 ++msgid "Import RSS" ++msgstr "Importar RSS" ++ ++#: wp-admin/import/rss.php:25 ++msgid "Howdy! This importer allows you to extract posts from an RSS 2.0 file into your blog. This is useful if you want to import your posts from a system that is not handled by a custom import tool. Pick an RSS file to upload and click Import." ++msgstr "Olá! Este importador permite-lhe extrair artigos de um ficheiro RSS 2.0 para o seu blog. Tal é útil se pretender importar artigos a partir de um sistema que não seja suportado por uma ferramenta de importação personalizada. Escolha um ficheiro RSS para enviar e clique em Enviar Ficheiro e Importar." ++ ++#: wp-admin/import/rss.php:105 ++msgid "Importing post..." ++msgstr "A importar artigo...." ++ ++#: wp-admin/import/rss.php:110 ++msgid "Post already imported" ++msgstr "Artigo já importado" ++ ++#: wp-admin/import/rss.php:122 ++msgid "Done !" ++msgstr "Concluído!" ++ ++#: wp-admin/import/rss.php:181 ++#: wp-admin/includes/dashboard.php:225 ++#: wp-includes/widgets.php:1304 ++msgid "RSS" ++msgstr "RSS" ++ ++#: wp-admin/import/rss.php:181 ++msgid "Import posts from an RSS feed." ++msgstr "Importar artigos de um feed RSS" ++ ++#: wp-admin/import/stp.php:5 ++msgid "Import Simple Tagging" ++msgstr "Importar Categorias »" ++ ++#: wp-admin/import/stp.php:15 ++msgid "Howdy! This imports tags from Simple Tagging 1.6.2 into WordPress tags." ++msgstr "italics." ++ ++#: wp-admin/import/stp.php:16 ++msgid "This has not been tested on any other versions of Simple Tagging. Mileage may vary." ++msgstr "Isto ainda não foi testado em qualquer outra versão do Simple Tagging. A fiabilidade pode variar." ++ ++#: wp-admin/import/stp.php:17 ++msgid "To accommodate larger databases for those tag-crazy authors out there, we have made this into an easy 4-step program to help you kick that nasty Simple Tagging habit. Just keep clicking along and we will let you know when you are in the clear!" ++msgstr "Para acomodar as grandes bases de dados criadas pelos maluquinhos das etiquetas, criámos um processo fácil de 4 passos com o objectivo de o fazer abandonar o hábito do Simple Tagging. Continue a clicar até lhe dizermos que está tudo certo!" ++ ++#: wp-admin/import/stp.php:21 ++#: wp-admin/import/utw.php:22 ++msgid "Step 1" ++msgstr "Passo 1" ++ ++#: wp-admin/import/stp.php:58 ++msgid "Reading STP Post Tags…" ++msgstr "A ler etiquetas STP:" ++ ++#: wp-admin/import/stp.php:65 ++#: wp-admin/import/utw.php:124 ++msgid "No posts were found to have tags!" ++msgstr "Não foram encontrados artigos com etiquetas!" ++ ++#: wp-admin/import/stp.php:76 ++#: wp-admin/import/utw.php:139 ++#, php-format ++msgid "Done! %s tag to post relationships were read." ++msgid_plural "Done! %s tags to post relationships were read." ++msgstr[0] "Pronto! Foi lida %s relação entre etiquetas e artigos." ++msgstr[1] "Feito! Foram lidas %s relações entre etiquetas e artigos." ++ ++#: wp-admin/import/stp.php:81 ++#: wp-admin/import/utw.php:109 ++msgid "Step 2" ++msgstr "Passo 2" ++ ++#: wp-admin/import/stp.php:89 ++#: wp-admin/import/utw.php:155 ++msgid "Adding Tags to Posts…" ++msgstr "A adicionar etiquetas às entradas." ++ ++#: wp-admin/import/stp.php:94 ++#, php-format ++msgid "Done! %s tag was added!" ++msgid_plural "Done! %s tags were added!" ++msgstr[0] "" ++msgstr[1] "Feito! Foram adicionadas %s etiquetas!" ++ ++#: wp-admin/import/stp.php:97 ++#: wp-admin/import/utw.php:145 ++msgid "Step 3" ++msgstr "Passo 3" ++ ++#: wp-admin/import/stp.php:140 ++msgid "OK, so we lied about this being a 4-step program! You’re done!" ++msgstr "Pronto, nós mentimos acerca de ser um programa de 4 passos! Está tudo pronto!" ++ ++#: wp-admin/import/stp.php:141 ++#: wp-admin/import/utw.php:254 ++msgid "Now wasn’t that easy?" ++msgstr "Fácil, não foi?" ++ ++#: wp-admin/import/stp.php:154 ++msgid "Import Simple Tagging tags into WordPress tags." ++msgstr "Importar etiquetas Simple Tagging para etiquetas de WordPress" ++ ++#: wp-admin/import/textpattern.php:32 ++msgid "Import Textpattern" ++msgstr "Importar de Textpattern" ++ ++#: wp-admin/import/textpattern.php:43 ++msgid "Howdy! This imports categories, users, posts, comments, and links from any Textpattern 4.0.2+ into this blog." ++msgstr "Olá! Esta ferramenta importa categorias, utilizadores, artigos, comentários e links a partir do Textpattern versão 4.0.2 ou superior, para este blog." ++ ++#: wp-admin/import/textpattern.php:44 ++msgid "This has not been tested on previous versions of Textpattern. Mileage may vary." ++msgstr "Não foi testado em versões anteriores do Textpattern." ++ ++#: wp-admin/import/textpattern.php:45 ++msgid "Your Textpattern Configuration settings are as follows:" ++msgstr "As definições de Configuração do Textpattern são as seguintes:" ++ ++#: wp-admin/import/textpattern.php:465 ++#, php-format ++msgid "Done! %s link imported" ++msgid_plural "Done! %s links imported" ++msgstr[0] "Feito! %s link importado" ++msgstr[1] "Feito! %s links importados" ++ ++#: wp-admin/import/textpattern.php:559 ++msgid "Welcome to WordPress. We hope (and expect!) that you will find this platform incredibly rewarding! As a new WordPress user coming from Textpattern, there are some things that we would like to point out. Hopefully, they will help your transition go as smoothly as possible." ++msgstr "Seja bem-vindo ao WordPress! Esperamos que considere esta plataforma extremamente recompensadora! Como novo utilizador vindo do Textpattern, existem algumas coisas que gostaríamos de realçar. Esperamos que lhe possibilitem uma transição sem problemas." ++ ++#: wp-admin/import/textpattern.php:561 ++#, php-format ++msgid "You have already setup WordPress and have been assigned an administrative login and password. Forget it. You didn’t have that login in Textpattern, why should you have it here? Instead we have taken care to import all of your users into our system. Unfortunately there is one downside. Because both WordPress and Textpattern uses a strong encryption hash with passwords, it is impossible to decrypt it and we are forced to assign temporary passwords to all your users. Every user has the same username, but their passwords are reset to password123. So Login and change it." ++msgstr "Você já instalou o WordPress e foi-lhe fornecido um login e palavra-passe de administração. Agora esqueça-os. Não tinha esse login no Textpattern, porque é que o haveria de ter aqui? Em vez disso, nós importamos todos os utilizadores para o nosso sistema. Infelizmente há um problema. Uma vez que tanto o WordPress como o Textpattern usam uma encriptação forte com palavras-passe, é impossível desencriptá-las e assim somos forçados a atribuir palavras-passe temporárias a todos os seus utilizadores. Todos os utilizadores mantêm o mesmo nome de utilizador, mas as suas palavras-passe foram modificadas para 'password123'. Terão de fazer o login e muda-las." ++ ++#: wp-admin/import/textpattern.php:565 ++msgid "Also, since you’re coming from Textpattern, you probably have been using Textile to format your comments and posts. If this is the case, we recommend downloading and installing Textile for WordPress. Trust me... You’ll want it." ++msgstr "Para além disso, dado que vem do Textpattern, provavelmente tem usado o Textile para formatar os seus artigos e comentários. Neste caso recomendamos que faça o download e instale o Textile para o WordPress. Confie em nós... você irá precisar dele." ++ ++#: wp-admin/import/textpattern.php:573 ++#, php-format ++msgid "That’s it! What are you waiting for? Go login!" ++msgstr "Já está! De que é que está à espera? Inicie a sessão, vá!" ++ ++#: wp-admin/import/textpattern.php:579 ++msgid "Textpattern Database User:" ++msgstr "Utilizador da Base de Dados do Textpattern:" ++ ++#: wp-admin/import/textpattern.php:580 ++msgid "Textpattern Database Password:" ++msgstr "Senha da Base de Dados do Textpattern:" ++ ++#: wp-admin/import/textpattern.php:581 ++msgid "Textpattern Database Name:" ++msgstr "Nome da Base de Dados do Textpattern:" ++ ++#: wp-admin/import/textpattern.php:582 ++msgid "Textpattern Database Host:" ++msgstr "Sistema Anfitrião da Base de Dados do Textpattern:" ++ ++#: wp-admin/import/textpattern.php:583 ++msgid "Textpattern Table prefix (if any):" ++msgstr "Prefixo da tabela do Textpattern (se aplicável):" ++ ++#: wp-admin/import/textpattern.php:673 ++msgid "Textpattern" ++msgstr "Textpattern" ++ ++#: wp-admin/import/textpattern.php:673 ++msgid "Import categories, users, posts, comments, and links from a Textpattern blog." ++msgstr "Importar artigos, categorias, comentários, links e utilizadores de um blog Textpattern" ++ ++#: wp-admin/import/utw.php:7 ++msgid "Import Ultimate Tag Warrior" ++msgstr "Importar o Ultimate Tag Warrior" ++ ++#: wp-admin/import/utw.php:17 ++msgid "Howdy! This imports tags from Ultimate Tag Warrior 3 into WordPress tags." ++msgstr "Olá! Este processo importa etiquetas de Ultimate Tag Warrior 3 para etiquetas de WordPress." ++ ++#: wp-admin/import/utw.php:18 ++msgid "This has not been tested on any other versions of Ultimate Tag Warrior. Mileage may vary." ++msgstr "Esta funcionalidade não foi correctamente testada em qualquer outra versão do Ultimate Tag Warrior. Os resultados podem não ser os mais correctos." ++ ++#: wp-admin/import/utw.php:19 ++msgid "To accommodate larger databases for those tag-crazy authors out there, we have made this into an easy 5-step program to help you kick that nasty UTW habit. Just keep clicking along and we will let you know when you are in the clear!" ++msgstr "Para acomodar bases de dados maiores para os autores com a mania das tags, torná-mos isto num processo de 5 simples passos para ajudá-lo a perder esse hábito feio de UTW (Ultimate Tag Warrior). Continue a clicar e nós avisamo-lo quando tiver terminado." ++ ++#: wp-admin/import/utw.php:66 ++msgid "Reading UTW Tags…" ++msgstr "A ler as etiquetas do UTW…" ++ ++#: wp-admin/import/utw.php:88 ++msgid "The following tags were found:" ++msgstr "Não foi encontrado nenhum utilizador correspondente!" ++ ++#: wp-admin/import/utw.php:102 ++msgid "If you don’t want to import any of these tags, you should delete them from the UTW tag management page and then re-run this import." ++msgstr "Se não quise’r importar estas etiquetas, deve elimina-las da pagina de gestão de etiquetas do UTW e correr novamente esta importação." ++ ++#: wp-admin/import/utw.php:117 ++msgid "Reading UTW Post Tags…" ++msgstr "A ler etiquetas dos artigos UTW…" ++ ++#: wp-admin/import/utw.php:160 ++#, php-format ++msgid "Done! %s tag were added!" ++msgid_plural "Done! %s tags were added!" ++msgstr[0] "Feito! %s etiquetas adicionadas!" ++msgstr[1] "Feito! Foram adicionadas %s etiquetas!" ++ ++#: wp-admin/import/utw.php:164 ++msgid "Step 4" ++msgstr "Passo 4" ++ ++#: wp-admin/import/utw.php:252 ++msgid "OK, so we lied about this being a 5-step program! You’re done!" ++msgstr "OK, mentimos em relação a ser um programa de 5 passos! Já está concluído!" ++ ++#: wp-admin/import/utw.php:274 ++msgid "Import Ultimate Tag Warrior tags into WordPress tags." ++msgstr "Importar etiquetas Ultimate Tag Warrior para etiquetas WordPress" ++ ++#: wp-admin/import/wordpress.php:23 ++msgid "Import WordPress" ++msgstr "Importar de WordPress" ++ ++#: wp-admin/import/wordpress.php:38 ++msgid "Howdy! Upload your WordPress eXtended RSS (WXR) file and we’ll import the posts, comments, custom fields, and categories into this blog." ++msgstr "Olá! Envie o seu ficheiro WordPress eXtended RSS (WXR), e os seus artigos, comentários, campos personalizados e categorias serão importados para este blog." ++ ++#: wp-admin/import/wordpress.php:39 ++msgid "Choose a WordPress WXR file to upload, then click Upload file and import." ++msgstr "Escolha um ficheiro WXR do WordPress para enviar e clique em Enviar Ficheiro e Importar." ++ ++#: wp-admin/import/wordpress.php:182 ++msgid "To make it easier for you to edit and save the imported posts and drafts, you may want to change the name of the author of the posts. For example, you may want to import all the entries as admins entries." ++msgstr "Para facilitar a tarefa de editar e guardar os artigos e rascunhos importados, é aconselhável alterar o nome do autor dos artigos. Por exemplo, poderá pretender importar todas as entradas como sendo propriedade de admin." ++ ++#: wp-admin/import/wordpress.php:196 ++msgid "Import author:" ++msgstr "Importar autor:" ++ ++#: wp-admin/import/wordpress.php:204 ++msgid "Import Attachments" ++msgstr "Importar Anexos" ++ ++#: wp-admin/import/wordpress.php:207 ++msgid "Download and import file attachments" ++msgstr "Fazer download e importar ficheiros anexos" ++ ++#: wp-admin/import/wordpress.php:224 ++msgid "Map to existing" ++msgstr "Mapear existente" ++ ++#: wp-admin/import/wordpress.php:248 ++msgid "Invalid file" ++msgstr "Ficheiro inválido" ++ ++#: wp-admin/import/wordpress.php:249 ++msgid "Please upload a valid WXR (WordPress eXtended RSS) export file." ++msgstr "Por favor faça upload de um ficheiro de exportação WXR (WordPress eXtended RSS) válido." ++ ++#: wp-admin/import/wordpress.php:333 ++msgid "All done." ++msgstr "Concluído." ++ ++#: wp-admin/import/wordpress.php:333 ++msgid "Have fun!" ++msgstr "Divirta-se!" ++ ++#: wp-admin/import/wordpress.php:522 ++#, php-format ++msgid "Importing attachment %s... " ++msgstr "Importando o anexo %s..." ++ ++#: wp-admin/import/wordpress.php:525 ++#, php-format ++msgid "Remote file error: %s" ++msgstr "Erro de ficheiro remoto: %s" ++ ++#: wp-admin/import/wordpress.php:536 ++#: wp-includes/functions.php:1164 ++msgid "Invalid file type" ++msgstr "Tipo de ficheiro inválido" ++ ++#: wp-admin/import/wordpress.php:557 ++#, php-format ++msgid "Skipping attachment %s" ++msgstr "Ignorando o anexo %s" ++ ++#: wp-admin/import/wordpress.php:580 ++#, php-format ++msgid "Remote file returned error response %d" ++msgstr "O ficheiro remoto devolveu uma resposta de erro %d" ++ ++#: wp-admin/import/wordpress.php:584 ++msgid "Remote file is incorrect size" ++msgstr "Tamanho incorrecto do ficheiro remoto" ++ ++#: wp-admin/import/wordpress.php:590 ++#, php-format ++msgid "Remote file is too large, limit is %s" ++msgstr "Ficheiro remoto é demasiado grande, o limite é %s" ++ ++#: wp-admin/import/wordpress.php:704 ++msgid "Sorry, there has been an error." ++msgstr "Ocorreu um erro." ++ ++#: wp-admin/import/wordpress.php:746 ++msgid "Import posts, comments, custom fields, pages, and categories from a WordPress export file." ++msgstr "Importar artigos, comentários, campos personalizados, páginas e categorias de um ficheiro de exportação WordPress " ++ ++#: wp-admin/import/wp-cat2tag.php:9 ++msgid "Convert Categories to Tags" ++msgstr "Converter Categorias em Etqiuetas" ++ ++#: wp-admin/import/wp-cat2tag.php:32 ++msgid "Hey there. Here you can selectively converts existing categories to tags. To get started, check the categories you wish to be converted, then click the Convert button." ++msgstr "Olá. Aqui pode converter selectivamente categorias em etiquetas. Para começar, indique as categorias que quer converter e clique em Converter Categorias." ++ ++#: wp-admin/import/wp-cat2tag.php:33 ++msgid "Keep in mind that if you convert a category with child categories, the children become top-level orphans." ++msgstr "Não se esqueça que, se converter uma categoria com subcategorias, essas subcategorias serão transformadas em categorias órfãs do nível mais alto." ++ ++#: wp-admin/import/wp-cat2tag.php:37 ++msgid "You have no categories to convert!" ++msgstr "Não tem categorias a converter!" ++ ++#: wp-admin/import/wp-cat2tag.php:56 ++msgid "Uncheck All" ++msgstr "Deseleccionar Todas" ++ ++#: wp-admin/import/wp-cat2tag.php:63 ++#: wp-admin/import/wp-cat2tag.php:71 ++msgid "Check All" ++msgstr "Seleccionar Todas" ++ ++#: wp-admin/import/wp-cat2tag.php:93 ++msgid "Convert Tags" ++msgstr "Converter Categorias" ++ ++#: wp-admin/import/wp-cat2tag.php:133 ++#, php-format ++msgid "Uh, oh. Something didn’t work. Please try again." ++msgstr "Uh, oh... Alguma coisa não funcionou. Por favor tente de novo." ++ ++#: wp-admin/import/wp-cat2tag.php:148 ++#, php-format ++msgid "Converting category #%s ... " ++msgstr "A converter a categoria #%s ..." ++ ++#: wp-admin/import/wp-cat2tag.php:151 ++msgid "Category doesn't exist!" ++msgstr "A Categoria não existe!" ++ ++#: wp-admin/import/wp-cat2tag.php:156 ++msgid "Category is already a tag." ++msgstr "Essa categoria já é uma etiqueta." ++ ++#: wp-admin/import/wp-cat2tag.php:192 ++msgid "Converted successfully." ++msgstr "Conversão executada com sucesso." ++ ++#: wp-admin/import/wp-cat2tag.php:199 ++#, php-format ++msgid "We’re all done here, but you can always convert more." ++msgstr "Está tudo terminado aqui, mas pode sempre converter mais." ++ ++#: wp-admin/import/wp-cat2tag.php:237 ++msgid "Categories to Tags Converter" ++msgstr " Categorias para Etiquetas" ++ ++#: wp-admin/import/wp-cat2tag.php:237 ++msgid "Convert existing categories to tags, selectively." ++msgstr "Converter selectivamente as categorias existentes para etiquetas" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:31 ++msgid "The ftp PHP extension is not available" ++msgstr "A extensão de FTP PHP não está disponível." ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:42 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:41 ++msgid "FTP hostname is required" ++msgstr "Nome do servidor do FTP é necessário" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:51 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:50 ++msgid "FTP username is required" ++msgstr "Username do FTP é necessário" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:56 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:55 ++msgid "FTP password is required" ++msgstr "Password do FTP é necessária" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:71 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:67 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:71 ++#, php-format ++msgid "Failed to connect to FTP Server %1$s:%2$s" ++msgstr "Falhou a conexão ao Servidor FTP %1$s:%2$s" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:76 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:76 ++#, php-format ++msgid "Username/Password incorrect for %s" ++msgstr "Username/Password incorrecto(s) para %s" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:105 ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:128 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:107 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:130 ++#, php-format ++msgid "Changing to %s" ++msgstr "Mudando para %s" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:108 ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:136 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:110 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:138 ++#, php-format ++msgid "Found %s" ++msgstr "Encontrado %s" ++ ++#: wp-admin/includes/comment.php:15 ++msgid "You are not allowed to edit comments on this post, so you cannot edit this comment." ++msgstr "Não tem permissão para editar comentários neste artigo, pelo que não pode editar este comentário." ++ ++#: wp-admin/includes/dashboard.php:26 ++#, php-format ++msgid "%d comment awaiting moderation" ++msgid_plural "%d comments awaiting moderation" ++msgstr[0] "O comentário %d está à espera de moderação" ++msgstr[1] "%d comentários estão à espera de moderação" ++ ++#: wp-admin/includes/dashboard.php:31 ++#: wp-includes/widgets.php:930 ++#: wp-includes/widgets.php:993 ++#: wp-includes/widgets.php:994 ++msgid "Recent Comments" ++msgstr "Comentários Recentes" ++ ++#: wp-admin/includes/dashboard.php:45 ++#: wp-admin/includes/dashboard.php:49 ++msgid "Incoming Links" ++msgstr "Links de Entrada" ++ ++#: wp-admin/includes/dashboard.php:55 ++#: wp-admin/menu.php:27 ++#: wp-admin/menu.php:66 ++#: wp-admin/plugin-editor.php:119 ++#: wp-includes/js/tinymce/langs/wp-langs.php:241 ++msgid "Plugins" ++msgstr "Extensões" ++ ++#: wp-admin/includes/dashboard.php:65 ++msgid "http://wordpress.org/development/" ++msgstr "http://wordpress.org/development/" ++ ++#: wp-admin/includes/dashboard.php:66 ++msgid "http://wordpress.org/development/feed/" ++msgstr "http://wordpress.org/development/feed/" ++ ++#: wp-admin/includes/dashboard.php:67 ++msgid "WordPress Development Blog" ++msgstr "Blog de Desenvolvimento do WordPress" ++ ++#: wp-admin/includes/dashboard.php:78 ++msgid "Primary Feed" ++msgstr "Feed Principal" ++ ++#: wp-admin/includes/dashboard.php:87 ++msgid "http://planet.wordpress.org/" ++msgstr "http://planet.wordpress.org/" ++ ++#: wp-admin/includes/dashboard.php:88 ++msgid "http://planet.wordpress.org/feed/" ++msgstr "http://planet.wordpress.org/feed/" ++ ++#: wp-admin/includes/dashboard.php:89 ++msgid "Other WordPress News" ++msgstr "Outras Notícias WordPress" ++ ++#: wp-admin/includes/dashboard.php:97 ++msgid "Secondary Feed" ++msgstr "Feed Secundária" ++ ++#: wp-admin/includes/dashboard.php:206 ++msgid "See All" ++msgstr "Ver Tudo" ++ ++#: wp-admin/includes/dashboard.php:218 ++#: wp-admin/includes/media.php:834 ++#: wp-admin/includes/widgets.php:227 ++#: wp-includes/js/tinymce/langs/wp-langs.php:17 ++#: wp-includes/script-loader.php:145 ++#: wp-includes/script-loader.php:153 ++#: wp-includes/script-loader.php:158 ++#: wp-includes/script-loader.php:164 ++#: wp-includes/script-loader.php:194 ++msgid "Cancel" ++msgstr "Cancelar" ++ ++#: wp-admin/includes/dashboard.php:225 ++msgid "rss icon" ++msgstr "ícone rss" ++ ++#: wp-admin/includes/dashboard.php:281 ++#, php-format ++msgid "From %1$s on %2$s %3$s" ++msgstr "Por %1$s em %2$s %3$s" ++ ++#: wp-admin/includes/dashboard.php:332 ++#: wp-admin/page.php:85 ++#: wp-admin/post.php:92 ++msgid "Somebody" ++msgstr "Alguém" ++ ++#: wp-admin/includes/dashboard.php:345 ++msgid "something" ++msgstr "algo" ++ ++#: wp-admin/includes/dashboard.php:348 ++#, php-format ++msgid "%1$s linked here saying, \"%3$s\"|feed_display" ++msgstr "%1$s ligou-se aqui dizendo, \"%3$s\"|feed_display" ++ ++#: wp-admin/includes/dashboard.php:350 ++#, php-format ++msgid "%1$s linked here saying, \"%3$s\"|feed_display" ++msgstr "%1$s ligou-se aqui, dizendo \"%3$s\"|feed_display" ++ ++#: wp-admin/includes/dashboard.php:354 ++#, php-format ++msgid " on %4$s|feed_display" ++msgstr " em %4$s|feed_display" ++ ++#: wp-admin/includes/dashboard.php:366 ++msgid "This dashboard widget queries Google Blog Search so that when another blog links to your site it will show up here. It has found no incoming links… yet. It’s okay — there is no rush." ++msgstr "Este widget do painel pesquisa regularmente o Google Blog Search para detectar que outros sites linkam para o seu e mostra-os aqui. Ainda não foram encontrados links. Não faz mal. Não há pressa." ++ ++#: wp-admin/includes/dashboard.php:405 ++msgid "Most Popular" ++msgstr "Mais Populares" ++ ++#: wp-admin/includes/dashboard.php:405 ++msgid "Newest Plugins" ++msgstr "Extensões Recentes" ++ ++#: wp-admin/includes/dashboard.php:405 ++msgid "Recently Updated" ++msgstr "Actualizadas Recentemente" ++ ++#: wp-admin/includes/dashboard.php:436 ++msgid "Download" ++msgstr "Download" ++ ++#: wp-admin/includes/dashboard.php:446 ++msgid "Loading…" ++msgstr "Carregando…" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Main Index Template" ++msgstr "Template Principal" ++ ++#: wp-admin/includes/file.php:3 ++#: wp-admin/includes/file.php:5 ++msgid "Stylesheet" ++msgstr "Folha de Estilos" ++ ++#: wp-admin/includes/file.php:3 ++msgid "RTL Stylesheet" ++msgstr "Folha de estilos RTL" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Popup Comments" ++msgstr "Popup de Comentários" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Footer" ++msgstr "Rodapé" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Header" ++msgstr "Cabeçalho" ++ ++#: wp-admin/includes/file.php:3 ++#: wp-includes/widgets.php:26 ++msgid "Sidebar" ++msgstr "Barra Lateral" ++ ++#: wp-admin/includes/file.php:3 ++#: wp-includes/widgets.php:457 ++#: wp-includes/widgets.php:1368 ++#: wp-includes/widgets.php:1369 ++msgid "Archives" ++msgstr "Arquivos" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Category Template" ++msgstr "Template de Categorias" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Search Results" ++msgstr "Resultados da Pesquisa" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Search Form" ++msgstr "Formulário de Pesquisa" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Single Post" ++msgstr "Artigo Único" ++ ++#: wp-admin/includes/file.php:3 ++msgid "404 Template" ++msgstr "Página 404" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Links Template" ++msgstr "Template de Links" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Theme Functions" ++msgstr "Funções do Tema" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Attachment Template" ++msgstr "Anexos" ++ ++#: wp-admin/includes/file.php:3 ++msgid "my-hacks.php (legacy hacks support)" ++msgstr "my-hacks.php (suporte de modificações legacy)" ++ ++#: wp-admin/includes/file.php:3 ++msgid ".htaccess (for rewrite rules )" ++msgstr ".htaccess (para regras de reescrita)" ++ ++#: wp-admin/includes/file.php:5 ++msgid "Comments Template" ++msgstr "Comentários" ++ ++#: wp-admin/includes/file.php:5 ++msgid "Popup Comments Template" ++msgstr "Template de Comentários em Pop-up" ++ ++#: wp-admin/includes/file.php:85 ++msgid "Sorry, can’t edit files with \"..\" in the name. If you are trying to edit a file in your WordPress home directory, you can just type the name of the file in." ++msgstr "Não é possível editar ficheiros com \"..\" no nome. Se estiver a tentar editar um ficheiro no directório do WordPress, basta escrever o nome do ficheiro." ++ ++#: wp-admin/includes/file.php:88 ++msgid "Sorry, can’t call files with their real path." ++msgstr "Não é possível chamar ficheiros pelo caminho real." ++ ++#: wp-admin/includes/file.php:91 ++msgid "Sorry, that file cannot be edited." ++msgstr "Esse ficheiro não pode ser editado." ++ ++#: wp-admin/includes/file.php:116 ++msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." ++msgstr "O ficheiro enviado excede o definido pela directiva upload_max_filesize em php.ini." ++ ++#: wp-admin/includes/file.php:117 ++msgid "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form." ++msgstr "O ficheiro enviado excede o definido pela directiva MAX_FILE_SIZE especificada no formulário HTML." ++ ++#: wp-admin/includes/file.php:118 ++msgid "The uploaded file was only partially uploaded." ++msgstr "O ficheiro enviado foi apenas parcialmente transferido." ++ ++#: wp-admin/includes/file.php:119 ++msgid "No file was uploaded." ++msgstr "Não foi enviado nenhum ficheiro." ++ ++#: wp-admin/includes/file.php:120 ++msgid "Missing a temporary folder." ++msgstr "Falta uma pasta temporária." ++ ++#: wp-admin/includes/file.php:121 ++msgid "Failed to write file to disk." ++msgstr "Falha ao escrever no disco." ++ ++#: wp-admin/includes/file.php:137 ++msgid "Invalid form submission." ++msgstr "Submissão de formulário inválida." ++ ++#: wp-admin/includes/file.php:145 ++msgid "File is empty. Please upload something more substantial. This error could also be caused by uploads being disabled in your php.ini." ++msgstr "Ficheiro vazio. Por favor faça upload de algo mais substancial. Este erro pode também ser causado pelo facto de os uploads estarem desactivados no seu php.ini." ++ ++#: wp-admin/includes/file.php:149 ++msgid "Specified file failed upload test." ++msgstr "O ficheiro especificado falhou o teste de envio." ++ ++#: wp-admin/includes/file.php:158 ++msgid "File type does not meet security guidelines. Try another." ++msgstr "O tipo de ficheiro não cumpre as directrizes de segurança. Tente outro tipo." ++ ++#: wp-admin/includes/file.php:176 ++#, php-format ++msgid "The uploaded file could not be moved to %s." ++msgstr "O ficheiro enviado não pôde ser movido para %s." ++ ++#: wp-admin/includes/file.php:200 ++msgid "Invalid URL Provided" ++msgstr "Indicado URL inválido" ++ ++#: wp-admin/includes/file.php:204 ++#: wp-admin/includes/file.php:208 ++msgid "Could not create Temporary file" ++msgstr "Impossível criar ficheiro Temporário" ++ ++#: wp-admin/includes/file.php:229 ++#: wp-admin/includes/update.php:157 ++msgid "Could not access filesystem." ++msgstr "Foi impossível aceder ao sistema de ficheiros." ++ ++#: wp-admin/includes/file.php:239 ++msgid "Incompatible archive" ++msgstr "Arquivo incompatível" ++ ++#: wp-admin/includes/file.php:242 ++msgid "Empty archive" ++msgstr "Arquivo vazio" ++ ++#: wp-admin/includes/file.php:262 ++msgid "Could not create directory" ++msgstr "Impossível copiar directoria" ++ ++#: wp-admin/includes/file.php:268 ++msgid "Could not copy file" ++msgstr "Impossível copiar ficheiro" ++ ++#: wp-admin/includes/image.php:131 ++#, php-format ++msgid "File '%s' doesn't exist?" ++msgstr "Ficheiro '%s' inexistente?" ++ ++#: wp-admin/includes/image.php:134 ++msgid "The GD image library is not installed." ++msgstr "A biblioteca de imagens GD não está instalada." ++ ++#: wp-admin/includes/image.php:141 ++#, php-format ++msgid "File '%s' is not an image." ++msgstr "O ficheiro '%s' não é uma imagem." ++ ++#: wp-admin/includes/media.php:5 ++msgid "Choose File" ++msgstr "Escolha o Ficheiro" ++ ++#: wp-admin/includes/media.php:6 ++msgid "Gallery" ++msgstr "Galeria" ++ ++#: wp-admin/includes/media.php:7 ++#: wp-admin/menu.php:46 ++#: wp-admin/upload.php:36 ++msgid "Media Library" ++msgstr "Biblioteca de Mídia" ++ ++#: wp-admin/includes/media.php:22 ++#, php-format ++msgid "Gallery (%s)" ++msgstr "Galeria (%s)" ++ ++#: wp-admin/includes/media.php:127 ++msgid "Uploads" ++msgstr "Envios" ++ ++#: wp-admin/includes/media.php:127 ++#: wp-admin/update.php:152 ++msgid "WordPress" ++msgstr "WordPress" ++ ++#: wp-admin/includes/media.php:159 ++#, php-format ++msgid "Add media: %s" ++msgstr "Adicionar mídia: %s" ++ ++#: wp-admin/includes/media.php:161 ++msgid "Add Media" ++msgstr "Adicionar Outros" ++ ++#: wp-admin/includes/media.php:163 ++msgid "Add an Image" ++msgstr "Adicionar uma Imagem" ++ ++#: wp-admin/includes/media.php:165 ++msgid "Add Video" ++msgstr "Adicionar Vídeo" ++ ++#: wp-admin/includes/media.php:167 ++msgid "Add Audio" ++msgstr "Adicionar áudio" ++ ++#: wp-admin/includes/media.php:296 ++#: wp-admin/includes/media.php:334 ++#: wp-admin/includes/media.php:372 ++#: wp-admin/includes/media.php:410 ++msgid "Saved." ++msgstr "Guardado" ++ ++#: wp-admin/includes/media.php:444 ++#: wp-admin/includes/media.php:540 ++msgid "Caption" ++msgstr "Legenda:" ++ ++#: wp-admin/includes/media.php:445 ++#: wp-admin/includes/media.php:1094 ++msgid "Alternate text, e.g. \"The Mona Lisa\"" ++msgstr "Texto alternativo, p.ex. \"A Mona Lisa\"" ++ ++#: wp-admin/includes/media.php:452 ++#: wp-admin/includes/media.php:1096 ++#: wp-includes/js/tinymce/langs/wp-langs.php:29 ++#: wp-includes/js/tinymce/langs/wp-langs.php:268 ++msgid "Alignment" ++msgstr "Alinhamento" ++ ++#: wp-admin/includes/media.php:458 ++#: wp-admin/includes/media.php:1101 ++#: wp-includes/js/tinymce/langs/wp-langs.php:30 ++#: wp-includes/js/tinymce/langs/wp-langs.php:275 ++#: wp-includes/js/tinymce/langs/wp-langs.php:372 ++msgid "Left" ++msgstr "Esquerda" ++ ++#: wp-admin/includes/media.php:460 ++#: wp-admin/includes/media.php:1103 ++#: wp-includes/js/tinymce/langs/wp-langs.php:31 ++#: wp-includes/js/tinymce/langs/wp-langs.php:352 ++#: wp-includes/js/tinymce/langs/wp-langs.php:373 ++msgid "Center" ++msgstr "Centro" ++ ++#: wp-admin/includes/media.php:462 ++#: wp-admin/includes/media.php:1105 ++#: wp-includes/js/tinymce/langs/wp-langs.php:32 ++#: wp-includes/js/tinymce/langs/wp-langs.php:276 ++#: wp-includes/js/tinymce/langs/wp-langs.php:370 ++msgid "Right" ++msgstr "Direita" ++ ++#: wp-admin/includes/media.php:465 ++msgid "Size" ++msgstr "Tamanho" ++ ++#: wp-admin/includes/media.php:469 ++#: wp-includes/script-loader.php:173 ++msgid "Thumbnail" ++msgstr "Miniatura" ++ ++#: wp-admin/includes/media.php:471 ++msgid "Medium" ++msgstr "Médio" ++ ++#: wp-admin/includes/media.php:473 ++#: wp-includes/script-loader.php:174 ++msgid "Full size" ++msgstr "Tamanho original" ++ ++#: wp-admin/includes/media.php:490 ++msgid "Empty Title filled from filename." ++msgstr "Título vazio preenchido a partir do nome de ficheiro" ++ ++#: wp-admin/includes/media.php:549 ++#: wp-includes/js/tinymce/langs/wp-langs.php:278 ++msgid "Link URL" ++msgstr "URL do Link" ++ ++#: wp-admin/includes/media.php:554 ++msgid "File URL" ++msgstr "URL do ficheiro" ++ ++#: wp-admin/includes/media.php:555 ++msgid "Post URL" ++msgstr "URL do Artigo" ++ ++#: wp-admin/includes/media.php:559 ++msgid "Enter a link URL or click above for presets." ++msgstr "Indique o URL do link ou clique acima para as pédefinições" ++ ++#: wp-admin/includes/media.php:629 ++#: wp-admin/widgets.php:248 ++#: wp-admin/widgets.php:265 ++msgid "Show" ++msgstr "Mostrar" ++ ++#: wp-admin/includes/media.php:630 ++msgid "Hide" ++msgstr "Esconder" ++ ++#: wp-admin/includes/media.php:688 ++#: wp-admin/includes/media.php:1111 ++#: wp-admin/includes/media.php:1139 ++#: wp-admin/includes/media.php:1167 ++#: wp-admin/includes/media.php:1195 ++msgid "Insert into Post" ++msgstr "Inserir no Artigo" ++ ++#: wp-admin/includes/media.php:826 ++msgid "Choose files to upload" ++msgstr "Escolha ficheiros a enviar" ++ ++#: wp-admin/includes/media.php:827 ++msgid "After a file has been uploaded, you can add titles and descriptions." ++msgstr "Depois de ter enviado um ficheiro, poderá especificar títulos e descrições." ++ ++#: wp-admin/includes/media.php:839 ++msgid "If you want to use all capabilities of the uploader, like uploading multiple files at once, please upgrade to lighttpd 1.5." ++msgstr "Se quer aproveitar todas as capacidades, tais como de uploads múltiplos, por favor actualize para lighttpd 1.5." ++ ++#: wp-admin/includes/media.php:858 ++msgid "From Computer" ++msgstr "Do Computador" ++ ++#: wp-admin/includes/media.php:876 ++#: wp-admin/includes/media.php:890 ++#: wp-admin/includes/media.php:923 ++#: wp-admin/includes/media.php:1071 ++msgid "Save all changes" ++msgstr "Guardar todas as modificações" ++ ++#: wp-admin/includes/media.php:881 ++msgid "— OR —" ++msgstr "— OU —" ++ ++#: wp-admin/includes/media.php:882 ++msgid "From URL" ++msgstr "de URL" ++ ++#: wp-admin/includes/media.php:924 ++msgid "Insert gallery into post" ++msgstr "Inserir galeria no artigo" ++ ++#: wp-admin/includes/media.php:961 ++#: wp-admin/upload.php:129 ++msgid "Search Media" ++msgstr "Procurar Mídia" ++ ++#: wp-admin/includes/media.php:980 ++#: wp-admin/upload.php:94 ++msgid "All Types" ++msgstr "Todos os Tipos" ++ ++#: wp-admin/includes/media.php:1043 ++msgid "Filter »" ++msgstr "Filtro »" ++ ++#: wp-admin/includes/media.php:1082 ++#: wp-includes/js/tinymce/langs/wp-langs.php:261 ++msgid "Image URL" ++msgstr "URL da imagem" ++ ++#: wp-admin/includes/media.php:1123 ++msgid "Audio File URL" ++msgstr "URL do Ficheiro de áudio" ++ ++#: wp-admin/includes/media.php:1135 ++msgid "Link text, e.g. \"Still Alive by Jonathan Coulton\"" ++msgstr "Texto do Link, p.ex. \"Still Alive, por Jonathan Coulton\"" ++ ++#: wp-admin/includes/media.php:1151 ++msgid "Video URL" ++msgstr "URL do Vídeo" ++ ++#: wp-admin/includes/media.php:1163 ++msgid "Link text, e.g. \"Lucy on YouTube\"" ++msgstr "Texto do link, p.ex. \"Gato Fedorento no YouTube\"" ++ ++#: wp-admin/includes/media.php:1191 ++msgid "Link text, e.g. \"Ransom Demands (PDF)\"" ++msgstr "Texto do link, p.ex. \"Pensamentos (PDF)\"" ++ ++#: wp-admin/includes/plugin.php:22 ++msgid "Visit plugin homepage" ++msgstr "Visitar home page de extensões" ++ ++#: wp-admin/includes/plugin.php:28 ++#: wp-includes/theme.php:113 ++msgid "Visit author homepage" ++msgstr "Visitar home page de autores" ++ ++#: wp-admin/includes/plugin.php:164 ++msgid "One of the plugins is invalid." ++msgstr "Uma das extensões é inválida." ++ ++#: wp-admin/includes/plugin.php:195 ++msgid "Invalid plugin." ++msgstr "Extensão inválida." ++ ++#: wp-admin/includes/plugin.php:197 ++msgid "Plugin file does not exist." ++msgstr "Ficheiro de extensão inexistente." ++ ++#: wp-admin/includes/post.php:45 ++msgid "You are not allowed to edit pages as this user." ++msgstr "Não tem permissão para editar páginas com este utilizador." ++ ++#: wp-admin/includes/post.php:48 ++msgid "You are not allowed to edit posts as this user." ++msgstr "Não tem permissão para editar artigos com este utilizador." ++ ++#: wp-admin/includes/post.php:214 ++msgid "You are not allowed to create pages on this blog." ++msgstr "Não tem permissão para criar páginas neste blog." ++ ++#: wp-admin/includes/post.php:217 ++msgid "You are not allowed to create posts or drafts on this blog." ++msgstr "Não tem permissão para criar artigos ou rascunhos neste blog." ++ ++#: wp-admin/includes/post.php:259 ++msgid "You are not allowed to create pages as this user." ++msgstr "Não tem permissão para criar páginas com este utilizador." ++ ++#: wp-admin/includes/post.php:262 ++msgid "You are not allowed to post as this user." ++msgstr "Não tem permissão para publicar artigos com este utilizador." ++ ++#: wp-admin/includes/post.php:522 ++msgid "Published posts" ++msgstr "Artigos publicados" ++ ++#: wp-admin/includes/post.php:523 ++msgid "Scheduled posts" ++msgstr "Artigos Anteriores" ++ ++#: wp-admin/includes/post.php:524 ++msgid "Pending posts" ++msgstr "Artigos Anteriores" ++ ++#: wp-admin/includes/post.php:526 ++msgid "Private posts" ++msgstr "Artigos Anteriores" ++ ++#: wp-admin/includes/post.php:572 ++msgid "Images" ++msgstr "Imagens" ++ ++#: wp-admin/includes/post.php:572 ++msgid "Manage Images" ++msgstr "Gerir Imagens" ++ ++#: wp-admin/includes/post.php:572 ++#, php-format ++msgid "Image (%s)" ++msgid_plural "Images (%s)" ++msgstr[0] "Imagen (%s)" ++msgstr[1] "Imagens (%s)" ++ ++#: wp-admin/includes/post.php:573 ++msgid "Audio" ++msgstr "áudio" ++ ++#: wp-admin/includes/post.php:573 ++msgid "Manage Audio" ++msgstr "Gerir áudio" ++ ++#: wp-admin/includes/post.php:573 ++#, php-format ++msgid "Audio (%s)" ++msgid_plural "Audio (%s)" ++msgstr[0] "Áudio (%s)" ++msgstr[1] "Áudio (%s)" ++ ++#: wp-admin/includes/post.php:574 ++msgid "Video" ++msgstr "Vídeo" ++ ++#: wp-admin/includes/post.php:574 ++msgid "Manage Video" ++msgstr "Gerir Vídeo" ++ ++#: wp-admin/includes/post.php:574 ++#, php-format ++msgid "Video (%s)" ++msgid_plural "Video (%s)" ++msgstr[0] "Vídeo (%s)" ++msgstr[1] "Vídeos (%s)" ++ ++#: wp-admin/includes/post.php:649 ++msgid "Click to edit this part of the permalink" ++msgstr "Clique para editar esta parte da hipoerligação permanente" ++ ++#: wp-admin/includes/post.php:657 ++msgid "Permalink:" ++msgstr "Link Permanente" ++ ++#: wp-admin/includes/schema.php:160 ++msgid "My Blog" ++msgstr "Nome do blog" ++ ++#: wp-admin/includes/schema.php:161 ++msgid "Just another WordPress weblog" ++msgstr "Apenas mais um blog WordPress" ++ ++#: wp-admin/includes/schema.php:183 ++msgid "F j, Y" ++msgstr "j \\d\\e F \\d\\e Y" ++ ++#: wp-admin/includes/schema.php:184 ++msgid "g:i a" ++msgstr "G:i" ++ ++#: wp-admin/includes/schema.php:185 ++msgid "F j, Y g:i a" ++msgstr "j \\d\\e F \\d\\e Y G:i" ++ ++#: wp-admin/includes/schema.php:277 ++msgid "Administrator|User role" ++msgstr "Administrador|Função do Utilizador" ++ ++#: wp-admin/includes/schema.php:278 ++msgid "Editor|User role" ++msgstr "Editor|Função do Utilizador" ++ ++#: wp-admin/includes/schema.php:279 ++msgid "Author|User role" ++msgstr "Autor|Função do Utilizador" ++ ++#: wp-admin/includes/schema.php:280 ++msgid "Contributor|User role" ++msgstr "Colaborador|Função do Utilizador" ++ ++#: wp-admin/includes/schema.php:281 ++msgid "Subscriber|User role" ++msgstr "Subscritor|Função do Utilizador" ++ ++#: wp-admin/includes/template.php:288 ++#: wp-admin/includes/template.php:325 ++msgid "Modified" ++msgstr "Modificado" ++ ++#: wp-admin/includes/template.php:290 ++#: wp-admin/includes/template.php:327 ++msgid "Submitted" ++msgstr "Nenhuma senha fornecida" ++ ++#: wp-admin/includes/template.php:299 ++#: wp-admin/includes/template.php:334 ++#: wp-admin/plugins.php:109 ++msgid "Status" ++msgstr "Estado" ++ ++#: wp-admin/includes/template.php:310 ++msgid "Media|media column header" ++msgstr "Mídia|media column header" ++ ++#: wp-admin/includes/template.php:311 ++msgid "Description|media column header" ++msgstr "Descrição|media column header" ++ ++#: wp-admin/includes/template.php:312 ++msgid "Date Added|media column header" ++msgstr "Data de Inserção|media column header" ++ ++#: wp-admin/includes/template.php:313 ++msgid "Appears with|media column header" ++msgstr "Aparece em|media column header" ++ ++#: wp-admin/includes/template.php:315 ++msgid "Location|media column header" ++msgstr "Localização|media column header" ++ ++#: wp-admin/includes/template.php:561 ++#, php-format ++msgid "e-mail: %s" ++msgstr "endereço de correio electrónico: %s" ++ ++#: wp-admin/includes/template.php:565 ++msgid "View posts by this author" ++msgstr "Ver artigos deste autor" ++ ++#: wp-admin/includes/template.php:624 ++#: wp-includes/link-template.php:516 ++msgid "Edit comment" ++msgstr "Editar Comentário" ++ ++#: wp-admin/includes/template.php:642 ++msgid "Y/m/d \\a\\t g:i A" ++msgstr "Y/m/d, G:i" ++ ++#: wp-admin/includes/template.php:667 ++#, php-format ++msgid "From %1$s, %2$s" ++msgstr "Em %1$s, %2$s" ++ ++#: wp-admin/includes/template.php:675 ++#: wp-admin/includes/template.php:680 ++msgid "Approve this comment" ++msgstr "Aprovar este Comentário" ++ ++#: wp-admin/includes/template.php:676 ++#: wp-admin/includes/template.php:683 ++msgid "Unapprove this comment" ++msgstr "Rejeitar este comentário" ++ ++#: wp-admin/includes/template.php:688 ++msgid "Mark this comment as spam" ++msgstr "Marcar este Comentário como SPAM" ++ ++#: wp-admin/includes/template.php:730 ++#: wp-admin/includes/template.php:800 ++msgid "Key" ++msgstr "Chave" ++ ++#: wp-admin/includes/template.php:731 ++#: wp-admin/includes/template.php:801 ++msgid "Value" ++msgstr "Valor" ++ ++#: wp-admin/includes/template.php:732 ++#: wp-admin/plugins.php:110 ++#: wp-includes/js/tinymce/wp-mce-help.php:194 ++#: wp-includes/js/tinymce/wp-mce-help.php:210 ++msgid "Action" ++msgstr "Acção" ++ ++#: wp-admin/includes/template.php:776 ++#: wp-includes/js/tinymce/langs/wp-langs.php:16 ++msgid "Update" ++msgstr "Actualizar" ++ ++#: wp-admin/includes/template.php:797 ++msgid "Add a new custom field:" ++msgstr "Adicionar um novo campo personalizado:" ++ ++#: wp-admin/includes/template.php:815 ++msgid "or" ++msgstr "ou" ++ ++#: wp-admin/includes/template.php:823 ++msgid "Add Custom Field" ++msgstr "Adicionar Campo" ++ ++#: wp-admin/includes/template.php:864 ++#, php-format ++msgid "%1$s%2$s, %3$s
    @ %4$s : %5$s|1: month input, 2: day input, 3: year input, 4: hour input, 5: minute input" ++msgstr "%1$s%2$s, %3$s
    @ %4$s : %5$s|1: month input, 2: day input, 3: year input, 4: hour input, 5: minute input" ++ ++#: wp-admin/includes/template.php:913 ++msgid "WordPress recommends a better browser" ++msgstr "O WordPress recomenda um browser melhor" ++ ++#: wp-admin/includes/template.php:943 ++msgid "Thumbnail linked to file" ++msgstr "Miniatura com link para ficheiro" ++ ++#: wp-admin/includes/template.php:943 ++msgid "Image linked to file" ++msgstr "Imagem com link para ficheiro" ++ ++#: wp-admin/includes/template.php:947 ++msgid "Thumbnail linked to page" ++msgstr "Miniatura com link para página" ++ ++#: wp-admin/includes/template.php:947 ++msgid "Image linked to page" ++msgstr "Imagem com link para página" ++ ++#: wp-admin/includes/template.php:952 ++msgid "Link to file" ++msgstr "Link para ficheiro" ++ ++#: wp-admin/includes/template.php:956 ++msgid "Link to page" ++msgstr "Link para página" ++ ++#: wp-admin/includes/template.php:1012 ++msgid "Choose a file from your computer:" ++msgstr "Escolha um ficheiro a partir do computador:" ++ ++#: wp-admin/includes/template.php:1012 ++#, php-format ++msgid "Maximum size: %s" ++msgstr "Tamanho máximo: %s" ++ ++#: wp-admin/includes/template.php:1018 ++msgid "Upload file and import" ++msgstr "Enviar Ficheiro e Importar" ++ ++#: wp-admin/includes/update.php:7 ++#: wp-admin/includes/update.php:24 ++#, php-format ++msgid "Version %s" ++msgstr "Versão %s" ++ ++#: wp-admin/includes/update.php:13 ++#, php-format ++msgid "You are using a development version (%s). Cool! Please stay updated." ++msgstr "Está a utilizar uma versão de desenvolvimento (%s). Muito cool! Por favor permaneça actualizado." ++ ++#: wp-admin/includes/update.php:18 ++#, php-format ++msgid "Get Version %3$s" ++msgstr "Descarregue a Versão %3$s" ++ ++#: wp-admin/includes/update.php:37 ++#, php-format ++msgid "WordPress %2$s is available! Please update now." ++msgstr "WordPress %2$s está disponível! Por favor actualize agora." ++ ++#: wp-admin/includes/update.php:39 ++#, php-format ++msgid "WordPress %2$s is available! Please notify the site administrator." ++msgstr "WordPress %2$s está disponível! Por favor notifique o administrador deste site." ++ ++#: wp-admin/includes/update.php:49 ++#, php-format ++msgid "This is WordPress version %s." ++msgstr "Está a usar o WordPress versão %s (pt_PT)" ++ ++#: wp-admin/includes/update.php:51 ++#, php-format ++msgid "Update to %s" ++msgstr "Actualizar para %s" ++ ++#: wp-admin/includes/update.php:51 ++msgid "Latest" ++msgstr "Últimas" ++ ++#: wp-admin/includes/update.php:131 ++#, php-format ++msgid "There is a new version of %1$s available. Download version %3$s here." ++msgstr "Está disponível uma nova versão de %1$s. faça download da versão %3$s aqui." ++ ++#: wp-admin/includes/update.php:133 ++#, php-format ++msgid "There is a new version of %1$s available. Download version %3$s here automatic upgrade unavailable for this plugin." ++msgstr "Está disponível uma nova versão de %1$s. faça download da versão %3$s aqui esta extensão não tem actualização automática." ++ ++#: wp-admin/includes/update.php:135 ++#, php-format ++msgid "There is a new version of %1$s available. Download version %3$s here or upgrade automatically." ++msgstr "Há uma nova versão de %1$s disponível. Download da versão %3$s aqui ou actualize automaticamente." ++ ++#: wp-admin/includes/update.php:150 ++msgid "The plugin is at the latest version." ++msgstr "O plugin está na sua versão mais recente." ++ ++#: wp-admin/includes/update.php:160 ++msgid "Filesystem error" ++msgstr "Erro do sistema de ficheiros" ++ ++#: wp-admin/includes/update.php:166 ++msgid "Unable to locate WordPress directory." ++msgstr "Impossível localizar a directoria de WordPress" ++ ++#: wp-admin/includes/update.php:172 ++msgid "Upgrade package not available." ++msgstr "Pacote de actualização não disponível." ++ ++#: wp-admin/includes/update.php:176 ++#, php-format ++msgid "Downloading update from %s" ++msgstr "A descarregar actualização de %s" ++ ++#: wp-admin/includes/update.php:180 ++msgid "Download failed." ++msgstr "Falhou o download." ++ ++#: wp-admin/includes/update.php:188 ++msgid "Unpacking the update" ++msgstr "A descompactar a actualização." ++ ++#: wp-admin/includes/update.php:202 ++msgid "Deactivating the plugin" ++msgstr "A desactivar a extensão" ++ ++#: wp-admin/includes/update.php:207 ++msgid "Removing the old version of the plugin" ++msgstr "Removendo a antiga versão da extensão" ++ ++#: wp-admin/includes/update.php:219 ++msgid "Could not remove the old plugin" ++msgstr "Impossível remover a extensão antiga" ++ ++#: wp-admin/includes/update.php:222 ++msgid "Installing the latest version" ++msgstr "A instalar a última versão" ++ ++#: wp-admin/includes/update.php:226 ++msgid "Installation failed" ++msgstr "A instalação falhou" ++ ++#: wp-admin/includes/upgrade.php:41 ++msgid "User already exists. Password inherited." ++msgstr "Utilizador já existente. Senha herdada." ++ ++#: wp-admin/includes/upgrade.php:70 ++#: wp-admin/includes/upgrade.php:71 ++msgid "Blogroll" ++msgstr "Blogroll" ++ ++#: wp-admin/includes/upgrade.php:101 ++msgid "Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!" ++msgstr "Bem-vindo ao WordPress. Este é o seu primeiro artigo. Edite-o ou elimine-o e dê vida ao seu blog!" ++ ++#: wp-admin/includes/upgrade.php:101 ++msgid "Hello world!" ++msgstr "Olá, mundo!" ++ ++#: wp-admin/includes/upgrade.php:101 ++msgid "hello-world" ++msgstr "ola-mundo" ++ ++#: wp-admin/includes/upgrade.php:105 ++msgid "Mr WordPress" ++msgstr "Sr. WordPress" ++ ++#: wp-admin/includes/upgrade.php:105 ++msgid "Hi, this is a comment.
    To delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them." ++msgstr "Olá, isto é um comentário.
    Para eliminar um comentário, basta iniciar sessão e ver os comentários do artigo. Poderá então editar ou eliminar os comentários." ++ ++#: wp-admin/includes/upgrade.php:109 ++msgid "This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress." ++msgstr "Este é um exemplo de uma página do WordPress. Poderia editá-la para colocar informações sobre si ou sobre o seu site. é possível criar tantas páginas deste tipo quantas pretender e gerir todo o conteúdo a partir do WordPress." ++ ++#: wp-admin/includes/upgrade.php:109 ++#: wp-includes/js/tinymce/langs/wp-langs.php:238 ++#: wp-includes/js/tinymce/wp-mce-help.php:165 ++msgid "About" ++msgstr "Acerca" ++ ++#: wp-admin/includes/upgrade.php:109 ++msgid "about" ++msgstr "acerca" ++ ++#: wp-admin/includes/upgrade.php:119 ++#, php-format ++msgid "" ++"Your new WordPress blog has been successfully set up at:\n" ++"\n" ++"%1$s\n" ++"\n" ++"You can log in to the administrator account with the following information:\n" ++"\n" ++"Username: %2$s\n" ++"Password: %3$s\n" ++"\n" ++"We hope you enjoy your new blog. Thanks!\n" ++"\n" ++"--The WordPress Team\n" ++"http://wordpress.org/\n" ++msgstr "" ++"O seu novo blog WordPress foi configurado com êxito em:\n" ++"\n" ++"%1$s\n" ++"\n" ++"Poderá iniciar sessão como administrador com os seguintes dados:\n" ++"\n" ++"Nome de Utilizador: %2$s\n" ++"Senha: %3$s\n" ++"\n" ++"Esperamos que desfrute do seu novo blog. Obrigado!\n" ++"\n" ++"--A Equipa do WordPress\n" ++"http://wordpress.org/\n" ++ ++#: wp-admin/includes/upgrade.php:134 ++msgid "New WordPress Blog" ++msgstr "Novo blog WordPress" ++ ++#: wp-admin/includes/user.php:87 ++#: wp-login.php:155 ++msgid "ERROR: Please enter a username." ++msgstr "ERRO: introduza um nome de utilizador." ++ ++#: wp-admin/includes/user.php:94 ++#: wp-admin/includes/user.php:96 ++msgid "ERROR: You entered your new password only once." ++msgstr "ERROERROR: Please enter your password." ++msgstr "ERROERROR: Please enter your password twice." ++msgstr "ERRO: introduza a palavra-chave duas vezes." ++ ++#: wp-admin/includes/user.php:106 ++msgid "ERROR: Passwords may not contain the character \"\\\"." ++msgstr "ERRO: as palavras-chave não podem conter o carácter \"\\\"." ++ ++#: wp-admin/includes/user.php:110 ++msgid "ERROR: Please enter the same password in the two password fields." ++msgstr "ERROERROR: This username is invalid. Please enter a valid username." ++msgstr "ERROERROR: This username is already registered. Please choose another one." ++msgstr "ERROERROR: Please enter an e-mail address." ++msgstr "ERROERROR: The e-mail address isn't correct." ++msgstr "ERRO%2$s post pending your review." ++msgid_plural "There are %2$s posts pending your review." ++msgstr[0] "Há %2$s artigo pendente de revisão." ++msgstr[1] "Há %2$s artigos pendentes de revisão." ++ ++#: wp-admin/index.php:83 ++#, php-format ++msgid "%s category" ++msgid_plural "%s categories" ++msgstr[0] "%s categoria" ++msgstr[1] "%s categorias" ++ ++#: wp-admin/index.php:84 ++#, php-format ++msgid "%s tag" ++msgid_plural "%s tags" ++msgstr[0] "%s etiqueta" ++msgstr[1] "%s etiquetas" ++ ++#: wp-admin/index.php:93 ++#, php-format ++msgid "You have %1$s, contained within %2$s and %3$s. %4$s" ++msgstr "Tem %1$s, dentro de %2$s e %3$s. %4$s" ++ ++#: wp-admin/index.php:102 ++#, php-format ++msgid "%d widget" ++msgid_plural "%d widgets" ++msgstr[0] "%d widget" ++msgstr[1] "%d widgets" ++ ++#: wp-admin/index.php:107 ++#, php-format ++msgid "You are using %1$s theme with %2$s." ++msgstr "Está a usar o tema %1$s com %2$s." ++ ++#: wp-admin/index.php:109 ++msgid "Change Theme" ++msgstr "Mudar Tema" ++ ++#: wp-admin/install.php:23 ++msgid "WordPress › Installation" ++msgstr "WordPress › Instalação" ++ ++#: wp-admin/install.php:33 ++msgid "Already Installed" ++msgstr "Já Instalado" ++ ++#: wp-admin/install.php:33 ++msgid "You appear to have already installed WordPress. To reinstall please clear your old database tables first." ++msgstr "Aparentemente, já instalou o WordPress. Para o reinstalar, elimine primeiro as tabelas da base de dados antiga." ++ ++#: wp-admin/install.php:40 ++msgid "Welcome" ++msgstr "Bem-vindo ao WordPress" ++ ++#: wp-admin/install.php:41 ++#, php-format ++msgid "Welcome to the famous five minute WordPress installation process! You may want to browse the ReadMe documentation at your leisure. Otherwise, just fill in the information below and you'll be on your way to using the most extendable and powerful personal publishing platform in the world." ++msgstr "Bem vindo ao famoso processo de instalação em cinco minutos do WordPress! Pode querer consultar antes a documentação ReadMe. Caso contrário, preencha apenas a informação contida abaixo e dará o primeiro passo na utilização da mais poderosa e adaptável plataforma de publicação pessoal no mundo." ++ ++#: wp-admin/install.php:42 ++msgid "First Step" ++msgstr "Primeiro Passo" ++ ++#: wp-admin/install.php:44 ++msgid "Information needed" ++msgstr "Limpar informações de conta" ++ ++#: wp-admin/install.php:45 ++msgid "Please provide the following information. Don't worry, you can always change these settings later." ++msgstr "Por favor insira a seguinte informação. Não se preocupe pois poderá alterar estas definições mais tarde." ++ ++#: wp-admin/install.php:50 ++#: wp-admin/options-general.php:16 ++msgid "Blog Title" ++msgstr "Título do Blog" ++ ++#: wp-admin/install.php:54 ++msgid "Your E-mail" ++msgstr "O seu endereço de E-mail" ++ ++#: wp-admin/install.php:56 ++msgid "Double-check your email address before continuing." ++msgstr "Certifique-se de que o endereço de correio electrónico está correcto antes de prosseguir." ++ ++#: wp-admin/install.php:59 ++msgid "Allow my blog to appear in search engines like Google and Technorati." ++msgstr "Gostaria que o meu blog fosse visível em motores de procura como o Google e o Technorati." ++ ++#: wp-admin/install.php:62 ++msgid "Install WordPress" ++msgstr "Instalar WordPress" ++ ++#: wp-admin/install.php:79 ++msgid "ERROR: you must provide an e-mail address." ++msgstr "ERRO: é obrigatório indicar um endereço de E-mail." ++ ++#: wp-admin/install.php:82 ++msgid "ERROR: that isn’t a valid e-mail address. E-mail addresses look like: username@example.com" ++msgstr "ERRO: Não introduziu um e-mail válido. Os e-mails têm o formato utilizador@dominio.com" ++ ++#: wp-admin/install.php:90 ++msgid "Success!" ++msgstr "Sucesso!" ++ ++#: wp-admin/install.php:92 ++msgid "WordPress has been installed. Were you expecting more steps? Sorry to disappoint." ++msgstr "O WordPress está instalado. Estava à espera de mais passos? Temos pena mas não há mais." ++ ++#: wp-admin/install.php:96 ++#: wp-admin/user-edit.php:198 ++#: wp-admin/users.php:334 ++#: wp-login.php:316 ++#: wp-login.php:381 ++msgid "Username" ++msgstr "Nome de Utilizador" ++ ++#: wp-admin/install.php:100 ++#: wp-admin/options-writing.php:76 ++#: wp-login.php:385 ++msgid "Password" ++msgstr "Senha" ++ ++#: wp-admin/install.php:102 ++msgid "Note that password carefully! It is a random password that was generated just for you." ++msgstr "Tome note desta senha! é uma senha aleatória que foi gerada só para si." ++ ++#: wp-admin/install.php:106 ++#: wp-login.php:391 ++msgid "Log In" ++msgstr "Iniciar Sessão" ++ ++#: wp-admin/link-add.php:22 ++msgid "Link added." ++msgstr "Link adicionada." ++ ++#: wp-admin/link-import.php:7 ++msgid "Import Blogroll" ++msgstr "Importar Blogroll" ++ ++#: wp-admin/link-import.php:24 ++msgid "Import your blogroll from another system" ++msgstr "Importe os seus links a partir de outro sistema" ++ ++#: wp-admin/link-import.php:28 ++msgid "If a program or website you use allows you to export your links or subscriptions as OPML you may import them here." ++msgstr "Se utilizar um programa ou Website que permita exportar os links ou subscrições em formato OPML, poderá importá-las aqui." ++ ++#: wp-admin/link-import.php:33 ++msgid "Specify an OPML URL:" ++msgstr "Especifique um URL OPML:" ++ ++#: wp-admin/link-import.php:38 ++msgid "Or choose from your local disk:" ++msgstr "Ou escolha a partir do disco:" ++ ++#: wp-admin/link-import.php:44 ++msgid "Now select a category you want to put these links in." ++msgstr "Agora, seleccione uma categoria na qual pretende colocar estes links." ++ ++#: wp-admin/link-import.php:45 ++msgid "Category:" ++msgstr "Categoria:" ++ ++#: wp-admin/link-import.php:56 ++msgid "Import OPML File" ++msgstr "Importar Ficheiro OPML" ++ ++#: wp-admin/link-import.php:111 ++#, php-format ++msgid "Inserted %s" ++msgstr "Inseridas %s" ++ ++#: wp-admin/link-import.php:115 ++#, php-format ++msgid "Inserted %1$d links into category %2$s. All done! Go manage those links." ++msgstr "Foram inseridos %1$d links na categoria %2$s. Tudo concluído! Agora, há que gerir esses links." ++ ++#: wp-admin/link-import.php:121 ++msgid "You need to supply your OPML url. Press back on your browser and try again" ++msgstr "é necessário fornecer o URL OPML. Prima a tecla de retrocesso do seu browser e tente de novo." ++ ++#: wp-admin/link-manager.php:10 ++#: wp-admin/link-manager.php:42 ++#: wp-admin/link.php:7 ++msgid "You do not have sufficient permissions to edit the links for this blog." ++msgstr "Não tem permissões suficientes para editar os links deste blog." ++ ++#: wp-admin/link-manager.php:37 ++msgid "Manage Links" ++msgstr "Gerir Links" ++ ++#: wp-admin/link-manager.php:69 ++#, php-format ++msgid "%s link deleted." ++msgid_plural "%s links deleted" ++msgstr[0] "%s link eliminada." ++msgstr[1] "%s links eliminadas." ++ ++#: wp-admin/link-manager.php:78 ++#, php-format ++msgid "Manage Links (add new)" ++msgstr "Gerir Links (novo link)" ++ ++#: wp-admin/link-manager.php:82 ++msgid "Search Links" ++msgstr "Procurar Links" ++ ++#: wp-admin/link-manager.php:94 ++msgid "View all Categories" ++msgstr "Ver todas as Categorias" ++ ++#: wp-admin/link-manager.php:100 ++msgid "Order by Link ID" ++msgstr "Ordernar por ID de Link" ++ ++#: wp-admin/link-manager.php:101 ++msgid "Order by Name" ++msgstr "Ordenar por Nome" ++ ++#: wp-admin/link-manager.php:102 ++msgid "Order by Address" ++msgstr "Ordenar por Morada" ++ ++#: wp-admin/link-manager.php:103 ++msgid "Order by Rating" ++msgstr "Ordenar por Classificação" ++ ++#: wp-admin/link-manager.php:124 ++msgid "rel" ++msgstr "Relação" ++ ++#: wp-admin/link-manager.php:125 ++msgid "Visible" ++msgstr "Visível" ++ ++#: wp-admin/link-manager.php:163 ++#: wp-admin/update.php:64 ++msgid "Yes" ++msgstr "Sim" ++ ++#: wp-admin/link-manager.php:176 ++#, php-format ++msgid "Visit %s" ++msgstr "Visitar %s" ++ ++#: wp-admin/link-manager.php:214 ++msgid "No links found." ++msgstr "Nenhum link encontrado." ++ ++#: wp-admin/link-parse-opml.php:58 ++#, php-format ++msgid "XML error: %1$s at line %2$s" ++msgstr "Erro XML: %1$s na linha %2$s" ++ ++#: wp-admin/link.php:97 ++msgid "Link not found." ++msgstr "Link não encontrada." ++ ++#: wp-admin/media.php:32 ++#: wp-admin/media.php:68 ++msgid "Edit Media" ++msgstr "Editar Mídia" ++ ++#: wp-admin/media.php:56 ++msgid "Media attachment updated." ++msgstr "Anexo de mídia actualizado." ++ ++#: wp-admin/media-upload.php:19 ++msgid "You are not allowed to be here" ++msgstr "Não tem permissão para estar aqui" ++ ++#: wp-admin/menu.php:10 ++#: wp-admin/menu.php:12 ++#: wp-admin/menu.php:14 ++msgid "Write" ++msgstr "Escrever" ++ ++#: wp-admin/menu.php:17 ++#: wp-admin/menu.php:19 ++#: wp-admin/menu.php:21 ++msgid "Manage" ++msgstr "Gerir" ++ ++#: wp-admin/menu.php:24 ++msgid "Design" ++msgstr "Apresentação" ++ ++#: wp-admin/menu.php:25 ++#, php-format ++msgid "Comments %s" ++msgstr "Comentários %s" ++ ++#: wp-admin/menu.php:26 ++#: wp-admin/options.php:4 ++msgid "Settings" ++msgstr "Opções" ++ ++#: wp-admin/menu.php:31 ++#: wp-admin/user-edit.php:63 ++msgid "Profile" ++msgstr "Perfil" ++ ++#: wp-admin/menu.php:36 ++msgid "Link" ++msgstr "Link" ++ ++#: wp-admin/menu.php:52 ++msgid "Authors & Users" ++msgstr "Autores & Utilizadores" ++ ++#: wp-admin/menu.php:53 ++#: wp-admin/menu.php:55 ++msgid "Your Profile" ++msgstr "O Seu Perfil" ++ ++#: wp-admin/menu.php:58 ++#: wp-includes/js/tinymce/langs/wp-langs.php:290 ++msgid "General" ++msgstr "Geral" ++ ++#: wp-admin/menu.php:59 ++msgid "Writing" ++msgstr "Escrita" ++ ++#: wp-admin/menu.php:60 ++msgid "Reading" ++msgstr "Leitura" ++ ++#: wp-admin/menu.php:61 ++msgid "Discussion" ++msgstr "Discussão" ++ ++#: wp-admin/menu.php:62 ++msgid "Privacy" ++msgstr "Privacidade" ++ ++#: wp-admin/menu.php:63 ++msgid "Permalinks" ++msgstr "Links Permanentes" ++ ++#: wp-admin/menu.php:64 ++msgid "Miscellaneous" ++msgstr "Vários" ++ ++#: wp-admin/menu.php:67 ++#: wp-admin/plugin-editor.php:95 ++msgid "Plugin Editor" ++msgstr "Editor de Extensões" ++ ++#: wp-admin/menu.php:69 ++msgid "Themes" ++msgstr "Temas" ++ ++#: wp-admin/menu.php:70 ++#: wp-admin/theme-editor.php:93 ++msgid "Theme Editor" ++msgstr "Editor de Temas" ++ ++#: wp-admin/menu.php:140 ++msgid "You do not have sufficient permissions to access this page." ++msgstr "Não permissões suficientes para aceder a esta página." ++ ++#: wp-admin/options-discussion.php:4 ++#: wp-admin/options-discussion.php:11 ++msgid "Discussion Settings" ++msgstr "Definições de Discussão" ++ ++#: wp-admin/options-discussion.php:16 ++msgid "Default article settings" ++msgstr "Definições gerais de artigos" ++ ++#: wp-admin/options-discussion.php:20 ++msgid "Attempt to notify any blogs linked to from the article (slows down posting.)" ++msgstr "Tentar notificar todos os blogs com links a partir do artigo (atrasa a publicação de artigos)." ++ ++#: wp-admin/options-discussion.php:24 ++msgid "Allow link notifications from other blogs (pingbacks and trackbacks.)" ++msgstr "Permitir notificações de link a partir de outros blogs (pingbacks e trackbacks)." ++ ++#: wp-admin/options-discussion.php:28 ++msgid "Allow people to post comments on the article" ++msgstr "Permitir que sejam publicados comentários ao artigo" ++ ++#: wp-admin/options-discussion.php:30 ++msgid "These settings may be overridden for individual articles." ++msgstr "Estas definições poderão ser substituídas para cada artigo, individualmente" ++ ++#: wp-admin/options-discussion.php:34 ++msgid "E-mail me whenever" ++msgstr "Enviar-me um email quando" ++ ++#: wp-admin/options-discussion.php:38 ++msgid "Anyone posts a comment" ++msgstr "Alguém publicar um comentário" ++ ++#: wp-admin/options-discussion.php:42 ++msgid "A comment is held for moderation" ++msgstr "Um comentário ficar retido para moderação" ++ ++#: wp-admin/options-discussion.php:46 ++msgid "Before a comment appears" ++msgstr "Antes de aparecer um comentário" ++ ++#: wp-admin/options-discussion.php:50 ++msgid "An administrator must always approve the comment" ++msgstr "Um administrador tem sempre de aprovar o comentário" ++ ++#: wp-admin/options-discussion.php:52 ++msgid "Comment author must fill out name and e-mail" ++msgstr "O autor do comentário tem de preencher o nome e endereço de correio electrónico" ++ ++#: wp-admin/options-discussion.php:54 ++msgid "Comment author must have a previously approved comment" ++msgstr "O autor do comentário tem de ter um comentário anteriormente aprovado" ++ ++#: wp-admin/options-discussion.php:58 ++msgid "Comment Moderation" ++msgstr "Moderação de Comentários" ++ ++#: wp-admin/options-discussion.php:60 ++#, php-format ++msgid "Hold a comment in the queue if it contains %s or more links. (A common characteristic of comment spam is a large number of hyperlinks.)" ++msgstr "Reter um comentário na fila se este contiver %s ou mais links. (Uma característica comum de comentários de SPAM é o elevado número de links.)" ++ ++#: wp-admin/options-discussion.php:62 ++msgid "When a comment contains any of these words in its content, name, URL, e-mail, or IP, it will be held in the moderation queue. One word or IP per line. It will match inside words, so \"press\" will match \"WordPress\"." ++msgstr "Quando um comentário contiver qualquer uma destas palavras no respectivo conteúdo, nome, URL, endereço de correio electrónico ou IP, o mesmo será retido na fila de moderação. Uma palavra ou IP por linha. Haverá correspondência parcial de palavras, pelo que \"press\" irá coincidir com \"WordPress\"." ++ ++#: wp-admin/options-discussion.php:69 ++msgid "Comment Blacklist" ++msgstr "Lista Negra de Comentários" ++ ++#: wp-admin/options-discussion.php:71 ++msgid "When a comment contains any of these words in its content, name, URL, e-mail, or IP, it will be marked as spam. One word or IP per line. It will match inside words, so \"press\" will match \"WordPress\"." ++msgstr "Quando um comentário contiver qualquer uma destas palavras no respectivo conteúdo, nome, URL, endereço de correio electrónico ou IP, o mesmo será assinalado como SPAM. Uma palavra ou IP por linha. Haverá correspondência parcial de palavras, pelo que \"press\" irá coincidir com \"WordPress\"." ++ ++#: wp-admin/options-discussion.php:79 ++msgid "Avatars" ++msgstr "Avatars" ++ ++#: wp-admin/options-discussion.php:81 ++msgid "By default WordPress uses Gravatars — short for Globally Recognized Avatars — for the pictures that show up next to comments. Plugins may override this." ++msgstr "O WordPress usa Gravatars — sigla de Globally Recognized Avatars — por omissão para as imagens que aparecem junto dos comentários. Algumas extensões podem modificar este comportamento." ++ ++#: wp-admin/options-discussion.php:87 ++msgid "Avatar display" ++msgstr "Mostrar avatar" ++ ++#: wp-admin/options-discussion.php:90 ++msgid "Don’t show Avatars" ++msgstr "Não Mostrar Avatars" ++ ++#: wp-admin/options-discussion.php:90 ++msgid "Show Avatars" ++msgstr "Mostrar Avatars" ++ ++#: wp-admin/options-discussion.php:99 ++msgid "Maximum Rating" ++msgstr "Cotação Máxima" ++ ++#: wp-admin/options-discussion.php:103 ++msgid "G — Suitable for all audiences" ++msgstr "G — Para todas as audiências" ++ ++#: wp-admin/options-discussion.php:103 ++msgid "PG — Possibly offensive, usually for audiences 13 and above" ++msgstr "PG — Potencialmente ofensiva, normalmente para maiores de 13 anos" ++ ++#: wp-admin/options-discussion.php:103 ++msgid "R — Intended for adult audiences above 17" ++msgstr "R — Para maiores de 17 anos" ++ ++#: wp-admin/options-discussion.php:103 ++msgid "X — Even more mature than above" ++msgstr "X — Ainda mais adulto do que acima" ++ ++#: wp-admin/options-general.php:4 ++#: wp-admin/options-general.php:11 ++msgid "General Settings" ++msgstr "Definições Gerais" ++ ++#: wp-admin/options-general.php:20 ++msgid "Tagline" ++msgstr "Subtítulo" ++ ++#: wp-admin/options-general.php:23 ++msgid "In a few words, explain what this blog is about." ++msgstr "Em poucas palavras, explique do que trata o seu blog." ++ ++#: wp-admin/options-general.php:26 ++msgid "WordPress address (URL)" ++msgstr "Endereço WordPress (URL)" ++ ++#: wp-admin/options-general.php:30 ++msgid "Blog address (URL)" ++msgstr "Endereço do Blog (URL)" ++ ++#: wp-admin/options-general.php:31 ++msgid "Enter the address here if you want your blog homepage to be different from the directory you installed WordPress." ++msgstr "Se pretender que a home page do seu blog esteja noutro directório que não o directório de instalação do WordPress, introduza aqui o endereço." ++ ++#: wp-admin/options-general.php:34 ++msgid "E-mail address" ++msgstr "Email" ++ ++#: wp-admin/options-general.php:37 ++msgid "This address is used for admin purposes, like new user notification." ++msgstr "Este endereço apenas é utilizado para fins administrativos, tais como a notificação de novos utilizadores." ++ ++#: wp-admin/options-general.php:40 ++msgid "Membership" ++msgstr "Membros" ++ ++#: wp-admin/options-general.php:43 ++msgid "Anyone can register" ++msgstr "Qualquer pessoa se pode registar" ++ ++#: wp-admin/options-general.php:46 ++msgid "Users must be registered and logged in to comment" ++msgstr "Os utilizadores têm de estar registados e ter sessão iniciada para poderem publicar comentários" ++ ++#: wp-admin/options-general.php:51 ++msgid "New User Default Role" ++msgstr "Função por omissão para Novos Utilizadores" ++ ++#: wp-admin/options-general.php:57 ++msgid "Timezone" ++msgstr "Zona horária" ++ ++#: wp-admin/options-general.php:79 ++#, php-format ++msgid "UTC %s" ++msgstr "UTC %s" ++ ++#: wp-admin/options-general.php:83 ++msgid "hours" ++msgstr "horas" ++ ++#: wp-admin/options-general.php:84 ++#, php-format ++msgid "UTC time is %s" ++msgstr "A hora UTC é %s" ++ ++#: wp-admin/options-general.php:84 ++#: wp-admin/options-general.php:85 ++msgid "Y-m-d G:i:s" ++msgstr "Y-m-d G:i:s" ++ ++#: wp-admin/options-general.php:85 ++#, php-format ++msgid "UTC %1$s is %2$s" ++msgstr "UTC %1$s é %2$s" ++ ++#: wp-admin/options-general.php:86 ++msgid "Unfortunately, you have to manually update this for Daylight Savings Time. Lame, we know, but will be fixed in the future." ++msgstr "Infelizmente tem que actualizar este valor manualmente para o Horário de Inverno. Sabemos que é chato, mas será corrigido no futuro." ++ ++#: wp-admin/options-general.php:90 ++msgid "Date Format" ++msgstr "Formato de Data" ++ ++#: wp-admin/options-general.php:92 ++#: wp-admin/options-general.php:97 ++msgid "Output:" ++msgstr "Resultado:" ++ ++#: wp-admin/options-general.php:95 ++msgid "Time Format" ++msgstr "Formato de Hora" ++ ++#: wp-admin/options-general.php:98 ++msgid "Documentation on date formatting. Click \"Save Changes\" to update sample output." ++msgstr "Documentação sobre formatos de datas. Clique em \"Guardar Alterações\" para actualizar o exemplo." ++ ++#: wp-admin/options-general.php:101 ++msgid "Week Starts On" ++msgstr "Semana Começa Em" ++ ++#: wp-admin/options-head.php:4 ++msgid "Settings saved." ++msgstr "Definições guardadas" ++ ++#: wp-admin/options-misc.php:4 ++#: wp-admin/options-misc.php:12 ++msgid "Miscellaneous Settings" ++msgstr "Definições Várias" ++ ++#: wp-admin/options-misc.php:15 ++msgid "Uploading" ++msgstr "Envio" ++ ++#: wp-admin/options-misc.php:18 ++msgid "Store uploads in this folder" ++msgstr "Armazenar ficheiros enviados nesta pasta" ++ ++#: wp-admin/options-misc.php:21 ++msgid "Default is wp-content/uploads" ++msgstr "A predefinição é wp-content/uploads" ++ ++#: wp-admin/options-misc.php:26 ++msgid "Full URL path to files (optional)" ++msgstr "Caminho Completo (URL) para os ficheiros (opcional)" ++ ++#: wp-admin/options-misc.php:35 ++msgid "Organize my uploads into month- and year-based folders" ++msgstr "Organizar ficheiros enviados em pastas baseadas no mês e ano" ++ ++#: wp-admin/options-misc.php:41 ++msgid "Image sizes" ++msgstr "Tamanhos das imagens" ++ ++#: wp-admin/options-misc.php:42 ++msgid "The sizes listed below determine the maximum dimensions to use when inserting an image into the body of a post." ++msgstr "Os tamanhos abaixo determinam as dimensões máximas a usar quando é inserida uma imagem no corpo de um artigo." ++ ++#: wp-admin/options-misc.php:46 ++msgid "Thumbnail size" ++msgstr "Tamanho da Miniatura" ++ ++#: wp-admin/options-misc.php:48 ++msgid "Width" ++msgstr "Largura" ++ ++#: wp-admin/options-misc.php:50 ++msgid "Height" ++msgstr "Altura" ++ ++#: wp-admin/options-misc.php:53 ++msgid "Crop thumbnail to exact dimensions (normally thumbnails are proportional)" ++msgstr "Recortar a miniatura às dimensões esxactas (normalmente as miniaturas são proporcionais)" ++ ++#: wp-admin/options-misc.php:57 ++msgid "Medium size" ++msgstr "Tamanho médio" ++ ++#: wp-admin/options-misc.php:59 ++msgid "Max Width" ++msgstr "Largura Máxima" ++ ++#: wp-admin/options-misc.php:61 ++msgid "Max Height" ++msgstr "Altura Máxima" ++ ++#: wp-admin/options-misc.php:75 ++msgid "Track Links’ Update Times" ++msgstr "Registar Datas de Actualização dos Links" ++ ++#: wp-admin/options-misc.php:84 ++msgid "Use legacy my-hacks.php file support" ++msgstr "Utilizar suporte de legacy para ficheiros my-hacks.php " ++ ++#: wp-admin/options-permalink.php:4 ++msgid "Permalink Settings" ++msgstr "Definições de Links Permanentes" ++ ++#: wp-admin/options-permalink.php:105 ++msgid "You should update your .htaccess now." ++msgstr "Deverá actualizar agora o seu ficheiro .htaccess." ++ ++#: wp-admin/options-permalink.php:107 ++msgid "Permalink structure updated." ++msgstr "Estrutura de links permanentes actualizada." ++ ++#: wp-admin/options-permalink.php:112 ++msgid "Customize Permalink Structure" ++msgstr "Personalizar Estrutura de Links Permanentes" ++ ++#: wp-admin/options-permalink.php:115 ++msgid "By default WordPress uses web URLs which have question marks and lots of numbers in them, however WordPress offers you the ability to create a custom URL structure for your permalinks and archives. This can improve the aesthetics, usability, and forward-compatibility of your links. A number of tags are available, and here are some examples to get you started." ++msgstr "Por predefinição, o WordPress utiliza URLs Web que contêm pontos de interrogação e vários números. Contudo, o WordPress oferece a capacidade de criar uma estrutura de URL personalizada para os links permanentes e arquivos. Tal poderá melhorar o aspecto, utilização e compatibilidade futura dos links. Estão disponíveis várias variáveis, e aqui ficam alguns exemplos para o ajudar a começar." ++ ++#: wp-admin/options-permalink.php:130 ++msgid "Common settings" ++msgstr "Opções comuns" ++ ++#: wp-admin/options-permalink.php:133 ++msgid "Default" ++msgstr "Predefinição" ++ ++#: wp-admin/options-permalink.php:137 ++msgid "Day and name" ++msgstr "Dia e nome" ++ ++#: wp-admin/options-permalink.php:141 ++msgid "Month and name" ++msgstr "Mês e nome" ++ ++#: wp-admin/options-permalink.php:145 ++msgid "Numeric" ++msgstr "Numérica" ++ ++#: wp-admin/options-permalink.php:155 ++msgid "Custom Structure" ++msgstr "Estrutura Personalizada" ++ ++#: wp-admin/options-permalink.php:164 ++msgid "Optional" ++msgstr "Opcional" ++ ++#: wp-admin/options-permalink.php:166 ++msgid "If you like, you may enter custom structures for your category and tag URLs here. For example, using /topics/ as your category base would make your category links like http://example.org/topics/uncategorized/. If you leave these blank the defaults will be used." ++msgstr "Se quiser, pode introduzir aqui estruturas personalizadas para os URLs das suas categorias e etiquetas. Por exemplo, ao usar /topicos/ como base das suas categorias, fará com que todos os links para categorias tenham o formato http://example.org/topicos/a-minha-categoria/. Se não indicar nada serão usados os valores por omissão." ++ ++#: wp-admin/options-permalink.php:168 ++msgid "If you like, you may enter custom structures for your category and tag URLs here. For example, using /topics/ as your category base would make your category links like http://example.org/index.php/topics/uncategorized/. If you leave these blank the defaults will be used." ++msgstr "Se quiser pode criar hierarquias personalizadas de URLs de categorias e etiquetas aqui. Por exemplo, ao usar /temas/ como base das categorias fará com que os links para categorias tenham o formato http://exemplo.org/index.php/temas/geral/. Se não indicar nada, serão usados os valores por omissão." ++ ++#: wp-admin/options-permalink.php:173 ++msgid "Category base" ++msgstr "Base das categorias" ++ ++#: wp-admin/options-permalink.php:177 ++msgid "Tag base" ++msgstr "Base das etiquetas" ++ ++#: wp-admin/options-permalink.php:184 ++msgid "If your .htaccess file were writable, we could do this automatically, but it isn’t so these are the mod_rewrite rules you should have in your .htaccess file. Click in the field and press CTRL + a to select all." ++msgstr "Se o seu ficheiro .htaccess fosse escrevível, poderiamos fazer isto automáticamente. Como não é, aqui estão as regras de mod_rewrite que devem estar presentes no ficheiro .htaccess. Clique no texto e prima CTRL + a para seleccionar tudo." ++ ++#: wp-admin/options.php:47 ++msgid "All Settings" ++msgstr "Todas as Definições" ++ ++#: wp-admin/options-privacy.php:4 ++#: wp-admin/options-privacy.php:11 ++msgid "Privacy Settings" ++msgstr "Definições de Privacidade" ++ ++#: wp-admin/options-privacy.php:16 ++msgid "Blog Visibility" ++msgstr "Visibilidade do Blog" ++ ++#: wp-admin/options-privacy.php:19 ++msgid "I would like my blog to be visible to everyone, including search engines (like Google, Sphere, Technorati) and archivers" ++msgstr "Pretendo que o meu blog seja visível para todos, incluindo motores de procura (por exemplo, Google, Sphere, Technorati) e arquivadores." ++ ++#: wp-admin/options-privacy.php:21 ++msgid "I would like to block search engines, but allow normal visitors" ++msgstr "Pretendo bloquear motores de procura, mas permitir visitantes normais" ++ ++#: wp-admin/options-reading.php:4 ++#: wp-admin/options-reading.php:11 ++msgid "Reading Settings" ++msgstr "Definições de Leitura" ++ ++#: wp-admin/options-reading.php:17 ++msgid "Front page displays" ++msgstr "A página inicial mostra" ++ ++#: wp-admin/options-reading.php:21 ++msgid "Your latest posts" ++msgstr "Os últimos artigos (blog)" ++ ++#: wp-admin/options-reading.php:26 ++#, php-format ++msgid "A static page (select below)" ++msgstr "Uma página estática (seleccionar abaixo)" ++ ++#: wp-admin/options-reading.php:30 ++#, php-format ++msgid "Front page: %s" ++msgstr "Página inicial: %s" ++ ++#: wp-admin/options-reading.php:31 ++#, php-format ++msgid "Posts page: %s" ++msgstr "Página de artigos: %s" ++ ++#: wp-admin/options-reading.php:36 ++msgid "Warning: these pages should not be the same!" ++msgstr "Atenção: estas páginas não deverão ser a mesma!" ++ ++#: wp-admin/options-reading.php:44 ++msgid "Blog pages show at most" ++msgstr "As páginas de blog mostram no máximo" ++ ++#: wp-admin/options-reading.php:46 ++#: wp-admin/options-reading.php:51 ++msgid "posts" ++msgstr "artigos" ++ ++#: wp-admin/options-reading.php:50 ++msgid "Syndication feeds show the most recent" ++msgstr "Os feeds RSS mostram os mais recentes" ++ ++#: wp-admin/options-reading.php:54 ++msgid "For each article in a feed, show" ++msgstr "Para cada artigo num feed, mostrar" ++ ++#: wp-admin/options-reading.php:56 ++msgid "Full text" ++msgstr "Texto completo" ++ ++#: wp-admin/options-reading.php:57 ++msgid "Summary" ++msgstr "Resumo" ++ ++#: wp-admin/options-reading.php:62 ++msgid "Encoding for pages and feeds" ++msgstr "Codificação para páginas e feeds" ++ ++#: wp-admin/options-reading.php:64 ++msgid "The character encoding you write your blog in (UTF-8 is recommended)" ++msgstr "Codificação de caracteres na qual escreve o seu blog (é recomendado UTF-8)" ++ ++#: wp-admin/options-writing.php:4 ++#: wp-admin/options-writing.php:11 ++msgid "Writing Settings" ++msgstr "Definições de Escrita" ++ ++#: wp-admin/options-writing.php:17 ++msgid "Size of the post box" ++msgstr "Tamanho da caixa do artigo" ++ ++#: wp-admin/options-writing.php:19 ++msgid "lines" ++msgstr "linhas" ++ ++#: wp-admin/options-writing.php:22 ++msgid "Formatting" ++msgstr "Formatação" ++ ++#: wp-admin/options-writing.php:26 ++msgid "Convert emoticons like :-) and :-P to graphics on display" ++msgstr "Converter ícones expressivos como :-) e :-P em imagens" ++ ++#: wp-admin/options-writing.php:27 ++msgid "WordPress should correct invalidly nested XHTML automatically" ++msgstr "O WordPress deverá corrigir automaticamente XHTML incorrecto" ++ ++#: wp-admin/options-writing.php:31 ++msgid "Default Post Category" ++msgstr "Categoria do Artigo por Omissão" ++ ++#: wp-admin/options-writing.php:45 ++msgid "Default Link Category" ++msgstr "Categoria do Link por Omissão" ++ ++#: wp-admin/options-writing.php:60 ++msgid "Post via e-mail" ++msgstr "Publicar através de correio electrónico" ++ ++#: wp-admin/options-writing.php:61 ++#, php-format ++msgid "To post to WordPress by e-mail you must set up a secret e-mail account with POP3 access. Any mail received at this address will be posted, so it’s a good idea to keep this address very secret. Here are three random strings you could use: %s, %s, %s." ++msgstr "Para publicar no WordPress através de correio electrónico, terá de configurar uma conta de POP3 secreta. Todas as mensagens recebidas neste endereço serão publicadas, pelo que é aconselhável manter este endereço muito secreto. Eis algumas cadeias de caracteres aleatórias que poderá utilizar: %s, %s, %s." ++ ++#: wp-admin/options-writing.php:65 ++msgid "Mail Server" ++msgstr "Servidor de Mail" ++ ++#: wp-admin/options-writing.php:67 ++msgid "Port" ++msgstr "Porta" ++ ++#: wp-admin/options-writing.php:72 ++msgid "Login Name" ++msgstr "Nome de Utilizador" ++ ++#: wp-admin/options-writing.php:82 ++msgid "Default Mail Category" ++msgstr "Categoria da Mensagem por Omissão" ++ ++#: wp-admin/options-writing.php:97 ++msgid "Update Services" ++msgstr "Serviços de Actualização" ++ ++#: wp-admin/options-writing.php:101 ++msgid "When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see Update Services on the Codex. Separate multiple service URLs with line breaks." ++msgstr "Quando publica um novo artigo, o WordPress notifica automaticamente os seguintes serviços de actualização de site. Para mais informações, consulte Update Services no Codex. Separe vários URLs de serviços com mudanças de linha." ++ ++#: wp-admin/options-writing.php:107 ++#, php-format ++msgid "WordPress is not notifying any Update Services because of your blog's privacy settings." ++msgstr "WordPress não irá notificar nenhum Serviço de Actualizações, em virtude das definições de privacidade do seu blog." ++ ++#: wp-admin/page-new.php:3 ++msgid "New Page" ++msgstr "Nova Página" ++ ++#: wp-admin/page-new.php:17 ++msgid "Page saved." ++msgstr "Página guardada." ++ ++#: wp-admin/page-new.php:17 ++msgid "Manage pages" ++msgstr "Gerir páginas" ++ ++#: wp-admin/page.php:71 ++msgid "You attempted to edit a page that doesn't exist. Perhaps it was deleted?" ++msgstr "Tentou editar uma página que não existe. Talvez tenha sido apagada?" ++ ++#: wp-admin/page.php:86 ++#, php-format ++msgid "Warning: %s is currently editing this page" ++msgstr "Aviso: %s está neste momento a editar esta página" ++ ++#: wp-admin/plugin-editor.php:4 ++msgid "Edit Plugins" ++msgstr "Editar Extensões" ++ ++#: wp-admin/plugin-editor.php:30 ++#: wp-admin/theme-editor.php:44 ++msgid "You do not have sufficient permissions to edit templates for this blog." ++msgstr "Não tem permissões suficientes para editar os templates deste blog." ++ ++#: wp-admin/plugin-editor.php:56 ++msgid "You do not have sufficient permissions to edit plugins for this blog." ++msgstr "Não tem permissões suficientes para editar extensões deste blog." ++ ++#: wp-admin/plugin-editor.php:84 ++#: wp-admin/theme-editor.php:85 ++msgid "File edited successfully." ++msgstr "Ficheiro editado com êxito." ++ ++#: wp-admin/plugin-editor.php:86 ++msgid "This plugin has been deactivated because your changes resulted in a fatal error." ++msgstr "Esta extensão foi desactivada porque as alterações resultaram num erro fatal." ++ ++#: wp-admin/plugin-editor.php:102 ++#, php-format ++msgid "Editing %s (active)" ++msgstr "A editar %s (activo)" ++ ++#: wp-admin/plugin-editor.php:104 ++#, php-format ++msgid "Browsing %s (active)" ++msgstr "A visualizar %s (activo)" ++ ++#: wp-admin/plugin-editor.php:107 ++#, php-format ++msgid "Editing %s (inactive)" ++msgstr "A editar %s (inactivo)" ++ ++#: wp-admin/plugin-editor.php:109 ++#, php-format ++msgid "Browsing %s (inactive)" ++msgstr "A visualizar %s (inactivo)" ++ ++#: wp-admin/plugin-editor.php:117 ++msgid "Plugin Files" ++msgstr "Ficheiros de Extensões" ++ ++#: wp-admin/plugin-editor.php:135 ++msgid "Warning: Making changes to active plugins is not recommended. If your changes cause a fatal error, the plugin will be automatically deactivated." ++msgstr "Atenção: Não é aconselhável efectuar alterações em extensões activas. Se as alterações causaram um erro fatal, a extensão será automaticamente desactivada." ++ ++#: wp-admin/plugin-editor.php:140 ++msgid "Update File and Attempt to Reactivate" ++msgstr "Actualize o Ficheiro e Tente Reactivar" ++ ++#: wp-admin/plugin-editor.php:142 ++#: wp-admin/theme-editor.php:162 ++msgid "Update File" ++msgstr "Actualizar Ficheiro" ++ ++#: wp-admin/plugin-editor.php:146 ++#: wp-admin/theme-editor.php:166 ++msgid "You need to make this file writable before you can save your changes. See the Codex for more information." ++msgstr "Tem que autorizar este ficheiro para escrita antes de guardar as alterações. Consulte o Codex para mais informação." ++ ++#: wp-admin/plugin-editor.php:151 ++#: wp-admin/theme-editor.php:172 ++msgid "Oops, no such file exists! Double check the name and try again, merci." ++msgstr "Oops, não existe tal ficheiro! Verifique o nome e tente de novo." ++ ++#: wp-admin/plugins.php:39 ++msgid "Manage Plugins" ++msgstr "Gerir Extensões" ++ ++#: wp-admin/plugins.php:47 ++msgid "Plugin could not be activated because it triggered a fatal error." ++msgstr "Não foi possível activar a extensão porque esta gerou um erro fatal." ++ ++#: wp-admin/plugins.php:57 ++msgid "Some plugins could not be reactivated because they triggered a fatal error." ++msgstr "Algumas extensões não poderam ser activadas porque causaram erros fatais." ++ ++#: wp-admin/plugins.php:59 ++msgid "Plugin activated." ++msgstr "Extensão activada." ++ ++#: wp-admin/plugins.php:61 ++msgid "Plugin deactivated." ++msgstr "Extensão desactivada." ++ ++#: wp-admin/plugins.php:63 ++msgid "All plugins deactivated." ++msgstr "Todas as extensões desactivadas." ++ ++#: wp-admin/plugins.php:65 ++msgid "Plugins reactivated." ++msgstr "Extensão reactivada." ++ ++#: wp-admin/plugins.php:69 ++msgid "Plugin Management" ++msgstr "Gestão de Extensões" ++ ++#: wp-admin/plugins.php:70 ++msgid "Plugins extend and expand the functionality of WordPress. Once a plugin is installed, you may activate it or deactivate it here." ++msgstr "As extensões aumentam ou melhoram a funcionalidade do WordPress. Após ter instalado uma extensão, poderá activá-la ou desactivá-la aqui." ++ ++#: wp-admin/plugins.php:77 ++msgid "Couldn’t open plugins directory or there are no plugins available." ++msgstr "Não foi possível abrir o directório de extensões, ou não existem extensões disponíveis." ++ ++#: wp-admin/plugins.php:89 ++msgid "Deactivate All Plugins" ++msgstr "Desactivar Todas as Extensões" ++ ++#: wp-admin/plugins.php:93 ++msgid "Reactivate Plugins" ++msgstr "Reactivar Extensões" ++ ++#: wp-admin/plugins.php:106 ++#: wp-includes/js/tinymce/langs/wp-langs.php:242 ++msgid "Plugin" ++msgstr "Extensão" ++ ++#: wp-admin/plugins.php:107 ++#: wp-includes/js/tinymce/langs/wp-langs.php:244 ++msgid "Version" ++msgstr "Versão" ++ ++#: wp-admin/plugins.php:121 ++msgid "Deactivate this plugin" ++msgstr "Desactivar esta extensão" ++ ++#: wp-admin/plugins.php:121 ++msgid "Deactivate" ++msgstr "Desactivar" ++ ++#: wp-admin/plugins.php:124 ++msgid "Activate this plugin" ++msgstr "Activar esta extensão" ++ ++#: wp-admin/plugins.php:124 ++msgid "Activate" ++msgstr "Activar" ++ ++#: wp-admin/plugins.php:127 ++msgid "Open this file in the Plugin Editor" ++msgstr "Abrir este ficheiro no Editor de Extensões" ++ ++#: wp-admin/plugins.php:136 ++#, php-format ++msgid "By %s" ++msgstr "Por %s" ++ ++#: wp-admin/plugins.php:150 ++msgid "Active" ++msgstr "Activo" ++ ++#: wp-admin/plugins.php:152 ++msgid "Inactive" ++msgstr "Inactivo" ++ ++#: wp-admin/plugins.php:169 ++#, php-format ++msgid "If something goes wrong with a plugin and you can’t use WordPress, delete or rename that file in the %s directory and it will be automatically deactivated." ++msgstr "Se algo correr mal com uma extensão e não conseguir utilizar o WordPress, elimine ou mude o nome ao respectivo ficheiro no directório %s e a extensão será automaticamente desactivada." ++ ++#: wp-admin/plugins.php:171 ++msgid "Get More Plugins" ++msgstr "Obter Mais Extensões" ++ ++#: wp-admin/plugins.php:172 ++msgid "You can find additional plugins for your site in the WordPress plugin directory." ++msgstr "Poderá encontrar mais extensões para o site no directório de extensões do WordPress." ++ ++#: wp-admin/plugins.php:173 ++#, php-format ++msgid "To install a plugin you generally just need to upload the plugin file into your %s directory. Once a plugin is uploaded, you may activate it here." ++msgstr "Normalmente, para instalar uma extensão, basta enviar o ficheiro de extensão para o directório %s. Após o envio da extensão, poderá activá-la aqui." ++ ++#: wp-admin/post-new.php:3 ++msgid "Create New Post" ++msgstr "Criar Novo Artigo" ++ ++#: wp-admin/post-new.php:17 ++#, php-format ++msgid "" ++"Since you’re a newcomer, you’ll have to wait for an admin to add the edit_posts capability to your user, in order to be authorized to post.
    \n" ++"You can also e-mail the admin to ask for a promotion.
    \n" ++"When you’re promoted, just reload this page and you’ll be able to blog. :)" ++msgstr "" ++"Porque é recém-chegado vai ter de esperar que um administrador adicione a capacidade edit_posts ao seu nome de utilizador para poder publicar.
    \n" ++"Também pode enviar um email ao administrador para lhe pedir uma promoção.
    \n" ++"Quando for promovido, basta voltar a esta página e já vai poder publicar. :)" ++ ++#: wp-admin/post.php:78 ++msgid "You attempted to edit a post that doesn't exist. Perhaps it was deleted?" ++msgstr "Tentou editar um artigo que não existe. Talvez tenha sido apagada?" ++ ++#: wp-admin/post.php:93 ++#, php-format ++msgid "Warning: %s is currently editing this post" ++msgstr "Aviso: %s está a editar estea artigo" ++ ++#: wp-admin/sidebar.php:15 ++msgid "WordPress › Posted" ++msgstr "WordPress › Publicado" ++ ++#: wp-admin/sidebar.php:22 ++msgid "Posted !" ++msgstr "Publicado!" ++ ++#: wp-admin/sidebar.php:23 ++#, php-format ++msgid "Click here to post again." ++msgstr "Clique aqui para criar outro artigo." ++ ++#: wp-admin/sidebar.php:33 ++msgid "WordPress › Sidebar" ++msgstr "WordPress › Barra Lateral" ++ ++#: wp-admin/sidebar.php:63 ++#: wp-content/plugins/akismet/akismet.php:807 ++#: wp-includes/widgets.php:410 ++#: wp-includes/widgets.php:492 ++#: wp-includes/widgets.php:531 ++#: wp-includes/widgets.php:559 ++#: wp-includes/widgets.php:779 ++#: wp-includes/widgets.php:916 ++#: wp-includes/widgets.php:975 ++#: wp-includes/widgets.php:1349 ++msgid "Title:" ++msgstr "Título:" ++ ++#: wp-admin/sidebar.php:66 ++#: wp-content/themes/classic/sidebar.php:10 ++msgid "Categories:" ++msgstr "Categorias:" ++ ++#: wp-admin/theme-editor.php:4 ++msgid "Edit Themes" ++msgstr "Editar Temas" ++ ++#: wp-admin/theme-editor.php:24 ++msgid "The requested theme does not exist." ++msgstr "O tema solicitado não existe." ++ ++#: wp-admin/theme-editor.php:68 ++msgid "You do not have sufficient permissions to edit themes for this blog." ++msgstr "Não tem permissões suficientes para editar temas deste blog." ++ ++#: wp-admin/theme-editor.php:95 ++msgid "Select theme to edit:" ++msgstr "Seleccione tema a editar:" ++ ++#: wp-admin/theme-editor.php:107 ++msgid "Select" ++msgstr "Seleccione" ++ ++#: wp-admin/theme-editor.php:118 ++msgid "Theme Files" ++msgstr "Ficheiros do Tema" ++ ++#: wp-admin/theme-editor.php:123 ++msgid "Templates" ++msgstr "Templates" ++ ++#: wp-admin/theme-editor.php:134 ++msgid "Styles|Theme stylesheets in theme editor" ++msgstr "Estilos|Theme stylesheets in theme editor" ++ ++#: wp-admin/themes.php:14 ++msgid "Manage Themes" ++msgstr "Gerir Temas" ++ ++#: wp-admin/themes.php:20 ++msgid "The active theme is broken. Reverting to the default theme." ++msgstr "O tema activo não está funcional. A reverter para o tema predefinido." ++ ++#: wp-admin/themes.php:22 ++#, php-format ++msgid "New theme activated. Visit site" ++msgstr "Novo tema activado. Ver o site" ++ ++#: wp-admin/themes.php:31 ++msgid "Current Theme" ++msgstr "Tema Actual" ++ ++#: wp-admin/themes.php:34 ++msgid "Current theme preview" ++msgstr "Pré-visualização do tema actual" ++ ++#: wp-admin/themes.php:36 ++#, php-format ++msgid "%1$s %2$s by %3$s|1: theme title, 2: theme version, 3: theme author" ++msgstr "%1$s %2$s por %3$s|1: título do tema, 2: versão do tema, 3: autor do tema" ++ ++#: wp-admin/themes.php:39 ++#, php-format ++msgid "The template files are located in %2$s. The stylesheet files are located in %3$s. %4$s uses templates from %5$s. Changes made to the templates will affect both themes." ++msgstr "Os templates (ficheiros de modelo) estão situados em %2$s. Os ficheiros de folha de estilos estão localizados em %3$s. %4$s utiliza templates de %5$s. Alterações efectuadas aos templates irão afectar ambos os temas." ++ ++#: wp-admin/themes.php:41 ++#, php-format ++msgid "All of this theme’s files are located in %2$s." ++msgstr "Todos os ficheiros deste tema estão situados em %2$s." ++ ++#: wp-admin/themes.php:44 ++#: wp-admin/themes.php:82 ++msgid "Tags:" ++msgstr "Etiquetas:" ++ ++#: wp-admin/themes.php:48 ++msgid "Available Themes" ++msgstr "Temas Disponíveis" ++ ++#: wp-admin/themes.php:95 ++msgid "Broken Themes" ++msgstr "Temas Indisponíveis" ++ ++#: wp-admin/themes.php:96 ++msgid "The following themes are installed but incomplete. Themes must have a stylesheet and a template." ++msgstr "Os seguintes temas estão instalados, mas incompletos. Os temas têm de conter uma folha de estilos e um template." ++ ++#: wp-admin/themes.php:126 ++msgid "Get More Themes" ++msgstr "Obter Mais Temas" ++ ++#: wp-admin/themes.php:127 ++msgid "You can find additional themes for your site in the WordPress theme directory. To install a theme you generally just need to upload the theme folder into your wp-content/themes directory. Once a theme is uploaded, you should see it on this page." ++msgstr "Poderá encontrar temas adicionais para o seu site no directório de temas do WordPress. Normalmente, para instalar um tema, basta enviar a pasta de tema para o directório wp-content/themes. Assim que o tema tenha sido enviado, deverá conseguir vê-lo nesta página." ++ ++#: wp-admin/update-links.php:6 ++msgid "Feature disabled." ++msgstr "Funcionalidade desactivada." ++ ++#: wp-admin/update-links.php:11 ++msgid "No links" ++msgstr "Sem links" ++ ++#: wp-admin/update.php:6 ++msgid "You do not have sufficient permissions to update plugins for this blog." ++msgstr "Não tem permissões suficientes neste blog para actualizar extensões." ++ ++#: wp-admin/update.php:40 ++msgid "Error: There was an error connecting to the server, Please verify the settings are correct." ++msgstr "Erro: Ocorreu um erro ao conectar ao servidor. Por favor verifique que as definições estão correctas." ++ ++#: wp-admin/update.php:44 ++msgid "FTP Connection Information" ++msgstr "Informação de Ligação por FTP" ++ ++#: wp-admin/update.php:45 ++msgid "To perform the requested update, FTP connection information is required." ++msgstr "Para proceder à actualização pedida é necessária a informação de ligação por FTP." ++ ++#: wp-admin/update.php:48 ++msgid "Hostname:" ++msgstr "Nome do Host:" ++ ++#: wp-admin/update.php:52 ++msgid "Username:" ++msgstr "Nome de Utilizador:" ++ ++#: wp-admin/update.php:56 ++#: wp-includes/post-template.php:527 ++msgid "Password:" ++msgstr "Senha:" ++ ++#: wp-admin/update.php:57 ++msgid "(Password not shown)" ++msgstr "(Password escondida)" ++ ++#: wp-admin/update.php:60 ++msgid "Use SSL:" ++msgstr "Usar SSL:" ++ ++#: wp-admin/update.php:74 ++msgid "Proceed" ++msgstr "Continuar" ++ ++#: wp-admin/update.php:105 ++#: wp-admin/update.php:135 ++msgid "Upgrade Plugin" ++msgstr "Actualizar Extensão" ++ ++#: wp-admin/update.php:121 ++msgid "Plugin upgraded successfully" ++msgstr "Extensão actualizada com sucesso" ++ ++#: wp-admin/update.php:123 ++msgid "Attempting reactivation of the plugin" ++msgstr "Tentando reactivar a extensão" ++ ++#: wp-admin/update.php:152 ++msgid "Plugin Reactivation" ++msgstr "Reactivação de Extensões" ++ ++#: wp-admin/update.php:161 ++msgid "Plugin reactivated successfully." ++msgstr "Extensão reactivada com sucesso" ++ ++#: wp-admin/update.php:164 ++msgid "Plugin failed to reactivate due to a fatal error." ++msgstr "Não foi possível reactivar a extensão porque esta gerou um erro fatal." ++ ++#: wp-admin/upgrade.php:20 ++msgid "WordPress › Upgrade" ++msgstr "WordPress › Actualização" ++ ++#: wp-admin/upgrade.php:28 ++msgid "No Upgrade Required" ++msgstr "Actualização Não Necessária" ++ ++#: wp-admin/upgrade.php:29 ++msgid "Your WordPress database is already up-to-date!" ++msgstr "A sua base de dados do WordPress já está actualizada!" ++ ++#: wp-admin/upgrade.php:39 ++msgid "Database Upgrade Required" ++msgstr "Actualização de Base de Dados Necessária" ++ ++#: wp-admin/upgrade.php:40 ++msgid "Your WordPress database is out-of-date, and must be upgraded before you can continue." ++msgstr "A sua base de dados do WordPress está desactualizada e tem de ser actualizada antes que possa continuar." ++ ++#: wp-admin/upgrade.php:41 ++msgid "The upgrade process may take a while, so please be patient." ++msgstr "O processo de actualização poderá demorar algum tempo." ++ ++#: wp-admin/upgrade.php:42 ++msgid "Upgrade WordPress" ++msgstr "Actualizar WordPress" ++ ++#: wp-admin/upgrade.php:55 ++msgid "Upgrade Complete" ++msgstr "Actualização Concluída!" ++ ++#: wp-admin/upgrade.php:56 ++msgid "Your WordPress database has been successfully upgraded!" ++msgstr "A sua base de dados do WordPress foi actualizada com êxito!" ++ ++#: wp-admin/upgrade.php:61 ++#, php-format ++msgid "%s queries" ++msgstr "%s consultas" ++ ++#: wp-admin/upgrade.php:63 ++#, php-format ++msgid "%s seconds" ++msgstr "%s segundos" ++ ++#: wp-admin/upload.php:59 ++msgid "Manage Media|manage media header" ++msgstr "Gerir Mídia|manage media header" ++ ++#: wp-admin/upload.php:114 ++msgid "Your media has been saved." ++msgstr "O seu mídia foi guardado." ++ ++#: wp-admin/upload.php:114 ++msgid "View media" ++msgstr "Ver mídia" ++ ++#: wp-admin/upload.php:114 ++msgid "Edit media" ++msgstr "Editar Mídia" ++ ++#: wp-admin/upload.php:118 ++msgid "Media updated." ++msgstr "Mídia actualizado" ++ ++#: wp-admin/upload.php:119 ++msgid "Media deleted." ++msgstr "Mídia eliminado" ++ ++#: wp-admin/user-edit.php:63 ++#: wp-admin/user-edit.php:142 ++msgid "Edit User" ++msgstr "Editar Utilizador" ++ ++#: wp-admin/user-edit.php:81 ++msgid "Invalid user ID." ++msgstr "ID de utilizador inválido." ++ ++#: wp-admin/user-edit.php:98 ++#: wp-admin/user-edit.php:117 ++msgid "You do not have permission to edit this user." ++msgstr "Não tem permissão para editar este utilizador." ++ ++#: wp-admin/user-edit.php:124 ++msgid "User updated." ++msgstr "Utilizador actualizado." ++ ++#: wp-admin/user-edit.php:126 ++msgid "« Back to Authors and Users" ++msgstr "« Voltar a Autores e Utilizadores" ++ ++#: wp-admin/user-edit.php:142 ++msgid "Your Profile and Personal Options" ++msgstr "O Seu Perfil e Opções Pessoais" ++ ++#: wp-admin/user-edit.php:154 ++msgid "Personal Options" ++msgstr "Opções Pessoais" ++ ++#: wp-admin/user-edit.php:159 ++msgid "Visual Editor" ++msgstr "Editor Visual" ++ ++#: wp-admin/user-edit.php:160 ++msgid "Use the visual editor when writing" ++msgstr "Utilizar o editor visual ao escrever" ++ ++#: wp-admin/user-edit.php:164 ++msgid "Admin Color Scheme" ++msgstr "Palette de Cores do Painel" ++ ++#: wp-admin/user-edit.php:199 ++msgid "Your username cannot be changed" ++msgstr "O seu nome de utilizador não é modificável" ++ ++#: wp-admin/user-edit.php:203 ++msgid "Role:" ++msgstr "Função:" ++ ++#: wp-admin/user-edit.php:220 ++#: wp-admin/user-edit.php:222 ++msgid "— No role for this blog —" ++msgstr "— Nenhuma função para este blog —" ++ ++#: wp-admin/user-edit.php:228 ++msgid "First name" ++msgstr "Nome" ++ ++#: wp-admin/user-edit.php:233 ++msgid "Last name" ++msgstr "Apelido" ++ ++#: wp-admin/user-edit.php:238 ++msgid "Nickname" ++msgstr "Alcunha" ++ ++#: wp-admin/user-edit.php:243 ++msgid "Display name publicly as" ++msgstr "Mostrar como" ++ ++#: wp-admin/user-edit.php:266 ++msgid "Contact Info" ++msgstr "Informações de Contacto" ++ ++#: wp-admin/user-edit.php:271 ++msgid "Required" ++msgstr "Obrigatório" ++ ++#: wp-admin/user-edit.php:275 ++#: wp-admin/users.php:421 ++#: wp-content/themes/classic/comments.php:57 ++msgid "Website" ++msgstr "Website" ++ ++#: wp-admin/user-edit.php:280 ++msgid "AIM" ++msgstr "AIM" ++ ++#: wp-admin/user-edit.php:285 ++msgid "Yahoo IM" ++msgstr "Yahoo IM" ++ ++#: wp-admin/user-edit.php:290 ++msgid "Jabber / Google Talk" ++msgstr "Jabber/Google Talk" ++ ++#: wp-admin/user-edit.php:295 ++msgid "About Yourself" ++msgstr "Sobre Si" ++ ++#: wp-admin/user-edit.php:295 ++msgid "About the user" ++msgstr "Sobre o utilizador" ++ ++#: wp-admin/user-edit.php:299 ++msgid "Biographical Info" ++msgstr "Informação Biográfica" ++ ++#: wp-admin/user-edit.php:300 ++msgid "Share a little biographical information to fill out your profile. This may be shown publicly." ++msgstr "Partilhe algumas informações biográficas para preencher o seu perfil. Estas informações poderão ser tornadas públicas." ++ ++#: wp-admin/user-edit.php:308 ++msgid "New Password:" ++msgstr "Nova Senha:" ++ ++#: wp-admin/user-edit.php:309 ++msgid "If you would like to change the password type a new one. Otherwise leave this blank." ++msgstr "Se quer mudar a sua password, introduza-a aqui. Senão deixe isto em branco." ++ ++#: wp-admin/user-edit.php:310 ++msgid "Type your new password again." ++msgstr "Introduza a password outra vez" ++ ++#: wp-admin/user-edit.php:312 ++msgid "Password Strength:" ++msgstr "Força da Senha:" ++ ++#: wp-admin/user-edit.php:313 ++#: wp-includes/script-loader.php:124 ++msgid "Too short" ++msgstr "Demasiado curta" ++ ++#: wp-admin/user-edit.php:313 ++msgid "Hint: Use upper and lower case characters, numbers and symbols like !\"?$%^&( in your password." ++msgstr "Dica: Use maiúsculas, minúsculas, números e símbolos como !\"?$%^&( na sua senha." ++ ++#: wp-admin/user-edit.php:332 ++msgid "Additional Capabilities:" ++msgstr "Funcionalidades Adicionais:" ++ ++#: wp-admin/user-edit.php:350 ++msgid "Update Profile" ++msgstr "Actualizar Perfil" ++ ++#: wp-admin/user-edit.php:350 ++msgid "Update User" ++msgstr "Actualizar Utilizador" ++ ++#: wp-admin/users.php:41 ++msgid "You can’t edit users." ++msgstr "Não pode editar utilizadores." ++ ++#: wp-admin/users.php:47 ++msgid "You can’t edit that user." ++msgstr "Não pode editar esse utilizador." ++ ++#: wp-admin/users.php:73 ++#: wp-admin/users.php:114 ++msgid "You can’t delete users." ++msgstr "Não pode eliminar utilizadores." ++ ++#: wp-admin/users.php:81 ++msgid "You can’t delete that user." ++msgstr "Não pode eliminar esse utilizador." ++ ++#: wp-admin/users.php:125 ++msgid "Delete Users" ++msgstr "Eliminar Utilizadores" ++ ++#: wp-admin/users.php:126 ++msgid "You have specified these users for deletion:" ++msgstr "Especificou estes utilizadores para eliminação:" ++ ++#: wp-admin/users.php:133 ++#, php-format ++msgid "ID #%1s: %2s The current user will not be deleted." ++msgstr "ID #%1s: %2s O utilizador actual não será eliminado." ++ ++#: wp-admin/users.php:135 ++#, php-format ++msgid "ID #%1s: %2s" ++msgstr "ID #%1s: %2s" ++ ++#: wp-admin/users.php:148 ++msgid "What should be done with posts and links owned by this user?" ++msgstr "O que deverá ser feito com os artigos e links deste utilizador?" ++ ++#: wp-admin/users.php:151 ++msgid "Delete all posts and links." ++msgstr "Eliminar todos os artigos e links." ++ ++#: wp-admin/users.php:153 ++msgid "Attribute all posts and links to:" ++msgstr "Atribuir todos os artigos e links a:" ++ ++#: wp-admin/users.php:156 ++msgid "Confirm Deletion" ++msgstr "Confirmar Eliminação" ++ ++#: wp-admin/users.php:158 ++msgid "There are no valid users selected for deletion." ++msgstr "Não está seleccionado nenhum utilizador válido para eliminação." ++ ++#: wp-admin/users.php:170 ++msgid "You can’t create users." ++msgstr "Não pode criar utilizadores." ++ ++#: wp-admin/users.php:204 ++#, php-format ++msgid "%s user deleted" ++msgid_plural "%s users deleted" ++msgstr[0] "%s utilizador eliminado" ++msgstr[1] "%s utilizadores eliminados" ++ ++#: wp-admin/users.php:209 ++msgid "New user created." ++msgstr "Novo utilizador criado." ++ ++#: wp-admin/users.php:214 ++msgid "Changed roles." ++msgstr "Funções alteradas." ++ ++#: wp-admin/users.php:219 ++msgid "The current user's role must have user editing capabilities." ++msgstr "A função do utilizador actual tem de ter capacidades de edição de utilizadores." ++ ++#: wp-admin/users.php:220 ++msgid "Other user roles have been changed." ++msgstr "Foram alteradas outras funções de utilizador." ++ ++#: wp-admin/users.php:225 ++msgid "You can't delete the current user." ++msgstr "Não é possível eliminar o utilizador actual." ++ ++#: wp-admin/users.php:226 ++msgid "Other users have been deleted." ++msgstr "Foram eliminados outros utilizadores." ++ ++#: wp-admin/users.php:246 ++#, php-format ++msgid "Users Matching \"%s\"" ++msgstr "Utilizadores Correspondendo a \"%s\"" ++ ++#: wp-admin/users.php:248 ++msgid "Manage Users" ++msgstr "Gerir Utilizadores" ++ ++#: wp-admin/users.php:269 ++msgid "All Users" ++msgstr "Todos os Utilizadores" ++ ++#: wp-admin/users.php:282 ++#, php-format ++msgid "%1$s (%2$s)|user role with count" ++msgstr "%1$s (%2$s)|Função de utilizador com total" ++ ++#: wp-admin/users.php:291 ++msgid "Search Users" ++msgstr "Procurar Utilizadores" ++ ++#: wp-admin/users.php:302 ++msgid "Change role to…" ++msgstr "Mudar função…" ++ ++#: wp-admin/users.php:327 ++msgid "« Back to All Users" ++msgstr "« Voltar a Todos os Utilizadores" ++ ++#: wp-admin/users.php:337 ++#: wp-admin/users.php:435 ++msgid "Role" ++msgstr "Função" ++ ++#: wp-admin/users.php:383 ++msgid "Add New User" ++msgstr "Adicionar Novo Utilizador" ++ ++#: wp-admin/users.php:397 ++#, php-format ++msgid "Users can register themselves or you can manually create users here." ++msgstr "Os utilizadores poderão registar-se por si próprios, ou poderá criá-los manualmente aqui.

    " ++ ++#: wp-admin/users.php:399 ++#, php-format ++msgid "Users cannot currently register themselves, but you can manually create users here." ++msgstr "De momento, não é possível que os utilizadores se registem automaticamente, mas poderá criá-los manualmente aqui.

    " ++ ++#: wp-admin/users.php:405 ++msgid "Username (required)" ++msgstr "Nome de utilizador (obrigatório)" ++ ++#: wp-admin/users.php:409 ++msgid "First Name" ++msgstr "Nome" ++ ++#: wp-admin/users.php:413 ++msgid "Last Name" ++msgstr "Apelido" ++ ++#: wp-admin/users.php:417 ++msgid "E-mail (required)" ++msgstr "Correio Electrónico (obrigatório)" ++ ++#: wp-admin/users.php:427 ++msgid "Password (twice)" ++msgstr "Senha (duas vezes)" ++ ++#: wp-admin/users.php:448 ++msgid "Add User" ++msgstr "Adicionar Utilizador" ++ ++#: wp-admin/widgets.php:13 ++#: wp-admin/widgets.php:233 ++#: wp-includes/functions.php:1538 ++msgid "Widgets" ++msgstr "Widgets" ++ ++#: wp-admin/widgets.php:28 ++msgid "No Sidebars Defined" ++msgstr "Nenhuma barra lateral definida" ++ ++#: wp-admin/widgets.php:32 ++msgid "You are seeing this message because the theme you are currently using isn’t widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please follow these instructions." ++msgstr "Está a ver esta mensagem, porque o tema que está actualmente a utilizar não suporta detecção de widgets, o que significa que não há nenhuma barra lateral que possa alterar. Para obter informações sobre como fazer com que o tema suporte widgets, siga estas instruções." ++ ++#: wp-admin/widgets.php:131 ++#: wp-admin/widgets.php:143 ++msgid "Add Widget" ++msgstr "Adicionar Widget" ++ ++#: wp-admin/widgets.php:185 ++#, php-format ++msgid "You are using %1$s widget in the \"%2$s\" sidebar." ++msgid_plural "You are using %1$s widgets in the \"%2$s\" sidebar." ++msgstr[0] "Está a usar %1$s widget na barra lateral \"%2$s\"." ++msgstr[1] "Está a usar %1$s widgets na barra lateral \"%2$s\"." ++ ++#: wp-admin/widgets.php:187 ++#, php-format ++msgid "You are using %1$s widget in the sidebar." ++msgid_plural "You are using %1$s widgets in the sidebar." ++msgstr[0] "Está a usar %1$s widget na barra lateral." ++msgstr[1] "Está a usar %1$s widgets na barra lateral." ++ ++#: wp-admin/widgets.php:209 ++msgid "Show any widgets" ++msgstr "Mostrar quaisquer widgets" ++ ++#: wp-admin/widgets.php:209 ++msgid "Show all widgets" ++msgstr "Mostrar todos os Widgets" ++ ++#: wp-admin/widgets.php:210 ++msgid "Show unused widgets" ++msgstr "Mostrar Widgets não usados" ++ ++#: wp-admin/widgets.php:211 ++msgid "Show used widgets" ++msgstr "Mostrar Widgets usados" ++ ++#: wp-admin/widgets.php:218 ++msgid "Changes saved." ++msgstr "Modificações guardadas" ++ ++#: wp-admin/widgets.php:236 ++msgid "Search Widgets" ++msgstr "Procurar Widgets" ++ ++#: wp-admin/widgets.php:241 ++msgid "Available Widgets" ++msgstr "Widgets Disponíveis" ++ ++#: wp-admin/widgets.php:257 ++msgid "Current Widgets" ++msgstr "Widgets Actuais" ++ ++#: wp-admin/widgets.php:292 ++msgid "Add more from the Available Widgets section." ++msgstr "Adicione mais a partir da secção Widgets Disponíveis." ++ ++#: wp-app.php:168 ++#: wp-app.php:203 ++msgid "Sorry, you do not have the right to access this blog." ++msgstr "Lamentamos, mas não tem direitos de acesso a este blog." ++ ++#: wp-app.php:256 ++msgid "Sorry, you do not have the right to edit/publish new posts." ++msgstr "Lamentamos, mas não lhe é permitido editar/publicar novas entradas." ++ ++#: wp-app.php:281 ++#: wp-app.php:448 ++#: wp-app.php:599 ++#: xmlrpc.php:1018 ++#: xmlrpc.php:1338 ++msgid "Sorry, your entry could not be posted. Something wrong happened." ++msgstr "Não foi possível publicar a entrada. Ocorreu um erro." ++ ++#: wp-app.php:299 ++msgid "Sorry, you do not have the right to access this post." ++msgstr "Lamentamos, mas não tem direitos de acesso a este artigo." ++ ++#: wp-app.php:327 ++#: wp-app.php:473 ++#: wp-app.php:535 ++#: wp-app.php:570 ++#: xmlrpc.php:1054 ++msgid "Sorry, you do not have the right to edit this post." ++msgstr "Não tem permissão para editar este artigo." ++ ++#: wp-app.php:356 ++#: wp-app.php:489 ++#: xmlrpc.php:1070 ++msgid "For some strange yet very annoying reason, this post could not be edited." ++msgstr "Por algum motivo estranho e muito incomodativo, não foi possível editar este artigo." ++ ++#: wp-app.php:370 ++#: wp-app.php:504 ++#: xmlrpc.php:1101 ++msgid "Sorry, you do not have the right to delete this post." ++msgstr "Não tem permissão para eliminar este artigo." ++ ++#: wp-app.php:379 ++#: wp-app.php:520 ++#: xmlrpc.php:1106 ++msgid "For some strange yet very annoying reason, this post could not be deleted." ++msgstr "Por algum motivo estranho e muito incomodativo, não foi possível eliminar este artigo." ++ ++#: wp-app.php:390 ++msgid "Sorry, you do not have permission to upload files." ++msgstr "Não tem permissão para enviar ficheiros." ++ ++#: wp-app.php:511 ++#: wp-app.php:542 ++#: wp-app.php:577 ++msgid "Error ocurred while accessing post metadata for file location." ++msgstr "Erro ao aceder a metadados de artigo para obter localização de ficheiro." ++ ++#: wp-comments-post.php:21 ++msgid "Sorry, comments are closed for this item." ++msgstr "Os comentários a este item estãos fechados." ++ ++#: wp-comments-post.php:46 ++msgid "Sorry, you must be logged in to post a comment." ++msgstr "Tem de ter sessão iniciada para publicar um comentário." ++ ++#: wp-comments-post.php:53 ++msgid "Error: please fill the required fields (name, email)." ++msgstr "Erro: preencha os campos obrigatórios (nome, endereço de correio electrónico)." ++ ++#: wp-comments-post.php:55 ++msgid "Error: please enter a valid email address." ++msgstr "Erro: introduza um endereço de correio electrónico válido." ++ ++#: wp-comments-post.php:59 ++msgid "Error: please type a comment." ++msgstr "Erro: escreva um comentário." ++ ++#: wp-content/plugins/akismet/akismet.php:41 ++#: wp-content/plugins/akismet/akismet.php:115 ++msgid "Akismet Configuration" ++msgstr "Configuração do Akismet" ++ ++#: wp-content/plugins/akismet/akismet.php:102 ++msgid "Your key has been cleared." ++msgstr "A chave foi limpa." ++ ++#: wp-content/plugins/akismet/akismet.php:103 ++msgid "Your key has been verified. Happy blogging!" ++msgstr "A chave foi verificada. Divirta-se com o blog!" ++ ++#: wp-content/plugins/akismet/akismet.php:104 ++msgid "The key you entered is invalid. Please double-check it." ++msgstr "A chave introduzida é inválida. Verifique-a novamente." ++ ++#: wp-content/plugins/akismet/akismet.php:105 ++msgid "The key you entered could not be verified because a connection to akismet.com could not be established. Please check your server configuration." ++msgstr "A chave introduzida não pôde ser verificada, pois não foi possível estabelecer ligação a akismet.com. Verifique a configuração do servidor." ++ ++#: wp-content/plugins/akismet/akismet.php:106 ++msgid "There was a problem connecting to the Akismet server. Please check your server configuration." ++msgstr "Ocorreu um erro ao tentar estabelecer ligação com o servidor Akismet. Verifique a configuração do servidor." ++ ++#: wp-content/plugins/akismet/akismet.php:107 ++#, php-format ++msgid "Please enter an API key. (Get your key.)" ++msgstr "Introduza uma chave API. (Obter chave.)" ++ ++#: wp-content/plugins/akismet/akismet.php:108 ++msgid "This key is valid." ++msgstr "Esta chave é válida." ++ ++#: wp-content/plugins/akismet/akismet.php:109 ++msgid "The key below was previously validated but a connection to akismet.com can not be established at this time. Please check your server configuration." ++msgstr "A chave abaixo foi anteriormente validada. Contudo, de momento, não é possível estabelecer ligação a akismet.com. Verifique a configuração do servidor." ++ ++#: wp-content/plugins/akismet/akismet.php:112 ++#: wp-content/themes/default/functions.php:357 ++msgid "Options saved." ++msgstr "Opções guardadas." ++ ++#: wp-content/plugins/akismet/akismet.php:119 ++#, php-format ++msgid "For many people, Akismet will greatly reduce or even completely eliminate the comment and trackback spam you get on your site. If one does happen to get through, simply mark it as \"spam\" on the moderation screen and Akismet will learn from the mistakes. If you don't have a WordPress.com account yet, you can get one at WordPress.com." ++msgstr "Para muitas pessoas, o Akismet irá reduzir significativamente ou eliminar por completo os comentários e trackbacks de SPAM. Se algum SPAM conseguir passar, marque-o como SPAM na fila de moderação, e o Akismet irá aprender com o erro. Se ainda não tiver uma conta no WordPress.com, poderá criar uma em WordPress.com." ++ ++#: wp-content/plugins/akismet/akismet.php:122 ++msgid "WordPress.com API Key" ++msgstr "Chave API WordPress.com" ++ ++#: wp-content/plugins/akismet/akismet.php:126 ++msgid "What is this?" ++msgstr "O que é isto?" ++ ++#: wp-content/plugins/akismet/akismet.php:128 ++msgid "Why might my key be invalid?" ++msgstr "Por que motivo poderá a minha chave ser inválida?" ++ ++#: wp-content/plugins/akismet/akismet.php:129 ++msgid "This can mean one of two things, either you copied the key wrong or that the plugin is unable to reach the Akismet servers, which is most often caused by an issue with your web host around firewalls or similar." ++msgstr "Tal poderá significar uma de duas coisas: copiou a chave errada, ou a extensão não consegue comunicar com os servidores Akismet (o que se deve, na maioria dos casos, a problemas no servidor do utilizador, relacionados com firewalls ou similares)." ++ ++#: wp-content/plugins/akismet/akismet.php:132 ++msgid "Automatically discard spam comments on posts older than a month." ++msgstr "Eliminar automaticamente comentários de SPAM em artigos com mais de um mês." ++ ++#: wp-content/plugins/akismet/akismet.php:133 ++msgid "Update options »" ++msgstr "Actualizar opções »" ++ ++#: wp-content/plugins/akismet/akismet.php:154 ++msgid "Akismet is almost ready." ++msgstr "O Akismet está quase pronto." ++ ++#: wp-content/plugins/akismet/akismet.php:154 ++#, php-format ++msgid "You must enter your WordPress.com API key for it to work." ++msgstr "Tem de introduzir a sua chave API WordPress.com para que funcione." ++ ++#: wp-content/plugins/akismet/akismet.php:326 ++#, php-format ++msgid "Akismet Spam (%s)" ++msgstr "SPAM Akismet (%s)" ++ ++#: wp-content/plugins/akismet/akismet.php:328 ++#: wp-content/plugins/akismet/akismet.php:330 ++msgid "Akismet Spam" ++msgstr "SPAM Akismet" ++ ++#: wp-content/plugins/akismet/akismet.php:339 ++#: wp-content/plugins/akismet/akismet.php:358 ++msgid "You do not have sufficient permission to moderate comments." ++msgstr "Não tem permissões suficientes para moderar comentários." ++ ++#: wp-content/plugins/akismet/akismet.php:370 ++#, php-format ++msgid "%1$s comments recovered." ++msgstr "%1$s comentários recuperados." ++ ++#: wp-content/plugins/akismet/akismet.php:374 ++msgid "All spam deleted." ++msgstr "Todo o SPAM eliminado." ++ ++#: wp-content/plugins/akismet/akismet.php:422 ++msgid "Caught Spam" ++msgstr "SPAM Detido" ++ ++#: wp-content/plugins/akismet/akismet.php:427 ++#, php-format ++msgid "Akismet has caught %1$s spam for you since you first installed it." ++msgstr "O Akismet deteve %1$s SPAM desde que foi instalado pela primeira vez." ++ ++#: wp-content/plugins/akismet/akismet.php:434 ++msgid "You have no spam currently in the queue. Must be your lucky day. :)" ++msgstr "De momento, não tem SPAM na fila. Deve ser o seu dia de sorte. :)" ++ ++#: wp-content/plugins/akismet/akismet.php:437 ++msgid "You can delete all of the spam from your database with a single click. This operation cannot be undone, so you may wish to check to ensure that no legitimate comments got through first. Spam is automatically deleted after 15 days, so don’t sweat it." ++msgstr "Poderá eliminar todo o SPAM da base de dados com um único clique. Esta operação não poderá ser anulada, pelo que é aconselhável confirmar que não existe nenhum comentário legítimo. O SPAM é automaticamente eliminado ao fim de 15 dias, pelo que não precisa de se preocupar." ++ ++#: wp-content/plugins/akismet/akismet.php:443 ++#: wp-content/plugins/akismet/akismet.php:621 ++#, php-format ++msgid "There are currently %1$s comments identified as spam." ++msgstr "De momento, existem %1$s comentários assinalados como SPAM." ++ ++#: wp-content/plugins/akismet/akismet.php:443 ++#: wp-content/plugins/akismet/akismet.php:621 ++msgid "Delete all" ++msgstr "Eliminar tudo" ++ ++#: wp-content/plugins/akismet/akismet.php:450 ++#: wp-content/themes/classic/sidebar.php:16 ++#: wp-includes/widgets.php:445 ++#: wp-includes/widgets.php:1379 ++msgid "Search" ++msgstr "Procurar" ++ ++#: wp-content/plugins/akismet/akismet.php:452 ++msgid "These are the latest comments identified as spam by Akismet. If you see any mistakes, simply mark the comment as \"not spam\" and Akismet will learn from the submission. If you wish to recover a comment from spam, simply select the comment, and click Not Spam. After 15 days we clean out the junk for you." ++msgstr "Estes são os mais recentes comentários identificados como SPAM pelo Akismet. Se detectar algum erro, assinale o comentário como \"não é SPAM\", e o Akismet irá aprender com essa submissão. Se pretender recuperar um comentário assinalado como SPAM, seleccione o comentário e clique em Não é SPAM. Após 15 dias, o lixo (SPAM) é limpo." ++ ++#: wp-content/plugins/akismet/akismet.php:483 ++msgid "All" ++msgstr "Todos" ++ ++#: wp-content/plugins/akismet/akismet.php:506 ++msgid "Search Spam »" ++msgstr "Pesquisar Spam »" ++ ++#: wp-content/plugins/akismet/akismet.php:513 ++#: wp-content/plugins/akismet/akismet.php:580 ++msgid "« Previous Page" ++msgstr "« Página Anterior" ++ ++#: wp-content/plugins/akismet/akismet.php:534 ++#: wp-content/plugins/akismet/akismet.php:601 ++msgid "Next Page »" ++msgstr "Página Seguinte »" ++ ++#: wp-content/plugins/akismet/akismet.php:556 ++msgid "IP:" ++msgstr "IP:" ++ ++#: wp-content/plugins/akismet/akismet.php:562 ++msgid "Not Spam" ++msgstr "Não é SPAM" ++ ++#: wp-content/plugins/akismet/akismet.php:568 ++msgid "View Post" ++msgstr "Ver Artigo" ++ ++#: wp-content/plugins/akismet/akismet.php:607 ++msgid "De-spam marked comments »" ++msgstr "Anular classificação de SPAM nos comentários seleccionados »" ++ ++#: wp-content/plugins/akismet/akismet.php:609 ++msgid "Comments you de-spam will be submitted to Akismet as mistakes so it can learn and get better." ++msgstr "Comentários aos quais seja removida a classificação de SPAM serão enviados para o Akismet para melhoramento do serviço." ++ ++#: wp-content/plugins/akismet/akismet.php:645 ++#, php-format ++msgid "Akismet has protected your site from %3$s spam comments." ++msgstr "O Akismet protegeu o seu site contra %3$s comentários de SPAM." ++ ++#: wp-content/plugins/akismet/akismet.php:660 ++#, php-format ++msgid "Akismet has protected your site from %2$s spam comment already," ++msgid_plural "Akismet has protected your site from %2$s spam comments already," ++msgstr[0] "Akismet já protegeu o seu site contra %2$s Comentário de SPAM," ++msgstr[1] "Akismet já protegeu o seu site contra %2$s Comentários de SPAM," ++ ++#: wp-content/plugins/akismet/akismet.php:665 ++#, php-format ++msgid "Akismet blocks spam from getting to your blog," ++msgstr "Akismet impede o SPAM de chegar ao seu blog," ++ ++#: wp-content/plugins/akismet/akismet.php:670 ++#, php-format ++msgid "and there's %1$s comment in your spam queue right now." ++msgid_plural "and there are %1$s comments in your spam queue right now." ++msgstr[0] "e estão %1$s comentário de SPAM na fila neste momento." ++msgstr[1] "e estão %1$s comentários de SPAM na fila neste momento." ++ ++#: wp-content/plugins/akismet/akismet.php:675 ++#, php-format ++msgid "but there's nothing in your spam queue at the moment." ++msgstr "mas não está nada na sua fila de SPAM neste momento." ++ ++#: wp-content/plugins/akismet/akismet.php:678 ++#, php-format ++msgid "%1$s %2$s|akismet_rightnow" ++msgstr "%1$s %2$s|akismet_rightnow" ++ ++#: wp-content/plugins/akismet/akismet.php:693 ++msgid "Recheck Queue for Spam" ++msgstr "Voltar a Verificar Existência de SPAM na Fila" ++ ++#: wp-content/plugins/akismet/akismet.php:708 ++msgid "Check for Spam" ++msgstr "Verificar SPAM" ++ ++#: wp-content/plugins/akismet/akismet.php:775 ++#, php-format ++msgid "%1$s %2$sspam comments%3$s %4$sblocked by%5$s
    %6$sAkismet%7$s" ++msgstr "%1$s %2$scomentários de SPAM%3$s %4$sbloqueados pelo%5$s
    %6$sAkismet%7$s" ++ ++#: wp-content/plugins/akismet/akismet.php:837 ++msgid "spam comments" ++msgstr "comentários de SPAM" ++ ++#: wp-content/plugins/akismet/akismet.php:837 ++msgid "blocked by" ++msgstr "bloqueado por" ++ ++#: wp-content/themes/classic/comments.php:2 ++msgid "Enter your password to view comments." ++msgstr "Introduza a sua senha para ver os comentários." ++ ++#: wp-content/themes/classic/comments.php:5 ++#: wp-includes/comment-template.php:394 ++msgid "No Comments" ++msgstr "Nenhum Comentário" ++ ++#: wp-content/themes/classic/comments.php:5 ++#: wp-includes/comment-template.php:396 ++msgid "1 Comment" ++msgstr "1 Comentário" ++ ++#: wp-content/themes/classic/comments.php:5 ++#: wp-includes/comment-template.php:392 ++msgid "% Comments" ++msgstr "% Comentários" ++ ++#: wp-content/themes/classic/comments.php:7 ++#: wp-content/themes/classic/comments.php:36 ++#: wp-content/themes/classic/comments-popup.php:55 ++msgid "Leave a comment" ++msgstr "Publicar um comentário" ++ ++#: wp-content/themes/classic/comments.php:18 ++#: wp-content/themes/classic/comments-popup.php:45 ++msgid "Trackback" ++msgstr "Trackback" ++ ++#: wp-content/themes/classic/comments.php:18 ++#: wp-content/themes/classic/comments-popup.php:45 ++msgid "Pingback" ++msgstr "Pingback" ++ ++#: wp-content/themes/classic/comments.php:18 ++#: wp-content/themes/classic/comments-popup.php:45 ++msgid "by" ++msgstr "por" ++ ++#: wp-content/themes/classic/comments.php:18 ++#: wp-content/themes/classic/index.php:11 ++msgid "Edit This" ++msgstr "Editar" ++ ++#: wp-content/themes/classic/comments.php:26 ++#: wp-content/themes/classic/comments-popup.php:51 ++msgid "No comments yet." ++msgstr "Ainda sem comentários." ++ ++#: wp-content/themes/classic/comments.php:29 ++#: wp-content/themes/classic/comments-popup.php:24 ++msgid "RSS feed for comments on this post." ++msgstr "Alimentação RSS para comentários a este artigo." ++ ++#: wp-content/themes/classic/comments.php:31 ++msgid "TrackBack URL" ++msgstr "URL de TrackBack" ++ ++#: wp-content/themes/classic/comments.php:39 ++#, php-format ++msgid "You must be logged in to post a comment." ++msgstr "Tem de ter a sessão iniciada para publicar um comentário." ++ ++#: wp-content/themes/classic/comments.php:46 ++#: wp-content/themes/classic/comments-popup.php:60 ++#, php-format ++msgid "Logged in as %s." ++msgstr "Sessão iniciada como %s." ++ ++#: wp-content/themes/classic/comments.php:46 ++#: wp-content/themes/classic/comments-popup.php:60 ++msgid "Log out of this account" ++msgstr "Terminar sessão nesta conta" ++ ++#: wp-content/themes/classic/comments.php:46 ++#: wp-content/themes/classic/comments-popup.php:60 ++msgid "Log out »" ++msgstr "Log out »" ++ ++#: wp-content/themes/classic/comments.php:51 ++#: wp-content/themes/classic/comments.php:54 ++msgid "(required)" ++msgstr "(obrigatório)" ++ ++#: wp-content/themes/classic/comments.php:54 ++msgid "Mail (will not be published)" ++msgstr "E-mail (não será publicado)" ++ ++#: wp-content/themes/classic/comments.php:61 ++#, php-format ++msgid "You can use these tags: %s" ++msgstr "Pode usar estas etiquetas: %s" ++ ++#: wp-content/themes/classic/comments.php:65 ++msgid "Submit Comment" ++msgstr "Submeter Comentário" ++ ++#: wp-content/themes/classic/comments.php:75 ++#: wp-content/themes/classic/comments-popup.php:92 ++msgid "Sorry, the comment form is closed at this time." ++msgstr "O formulário de comentários está fechado." ++ ++#: wp-content/themes/classic/comments-popup.php:27 ++msgid "The URL to TrackBack this entry is:" ++msgstr "O URL de TrackBack desta entrada é:" ++ ++#: wp-content/themes/classic/comments-popup.php:56 ++msgid "Line and paragraph breaks automatic, e-mail address never displayed, HTML allowed:" ++msgstr "Quebras de linha e parágrafo automáticas; endereços de correio electrónico nunca apresentados; HTML permitido:" ++ ++#: wp-content/themes/classic/comments-popup.php:76 ++msgid "URL" ++msgstr "URL" ++ ++#: wp-content/themes/classic/comments-popup.php:81 ++msgid "Your Comment" ++msgstr "O Seu Comentário" ++ ++#: wp-content/themes/classic/comments-popup.php:87 ++msgid "Say It!" ++msgstr "Diga-o!" ++ ++#: wp-content/themes/classic/comments-popup.php:97 ++msgid "Close this window." ++msgstr "Fechar esta janela." ++ ++#: wp-content/themes/classic/comments-popup.php:105 ++#, php-format ++msgid "Powered by WordPress" ++msgstr "Criado com Wordpress" ++ ++#: wp-content/themes/classic/comments-popup.php:105 ++#: wp-content/themes/classic/footer.php:6 ++#: wp-content/themes/classic/sidebar.php:33 ++#: wp-includes/widgets.php:514 ++msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform." ++msgstr "Criado com WordPress, plataforma de publicação pessoal semântica de vanguarda." ++ ++#: wp-content/themes/classic/footer.php:6 ++#, php-format ++msgid "Powered by WordPress" ++msgstr "Criado com WordPress" ++ ++#: wp-content/themes/classic/index.php:11 ++msgid "Filed under:" ++msgstr "Arquivar em:" ++ ++#: wp-content/themes/classic/index.php:11 ++msgid "Tags: " ++msgstr "Etiquetas:" ++ ++#: wp-content/themes/classic/index.php:14 ++msgid "(more...)" ++msgstr "(mais...)" ++ ++#: wp-content/themes/classic/index.php:19 ++msgid "Comments (0)" ++msgstr "Comentários (0)" ++ ++#: wp-content/themes/classic/index.php:19 ++msgid "Comments (1)" ++msgstr "Comentários (1)" ++ ++#: wp-content/themes/classic/index.php:19 ++msgid "Comments (%)" ++msgstr "Comentários (%)" ++ ++#: wp-content/themes/classic/index.php:27 ++msgid "Sorry, no posts matched your criteria." ++msgstr "Nenhum artigo correspondeu aos critérios de procura." ++ ++#: wp-content/themes/classic/index.php:30 ++msgid "« Older Posts" ++msgstr "Últimos 15 Artigos" ++ ++#: wp-content/themes/classic/index.php:30 ++msgid "Newer Posts »" ++msgstr "Novos Artigos »" ++ ++#: wp-content/themes/classic/sidebar.php:8 ++#: wp-includes/post-template.php:162 ++msgid "Pages:" ++msgstr "Páginas:" ++ ++#: wp-content/themes/classic/sidebar.php:12 ++msgid "Search:" ++msgstr "Procurar:" ++ ++#: wp-content/themes/classic/sidebar.php:20 ++msgid "Archives:" ++msgstr "Arquivos:" ++ ++#: wp-content/themes/classic/sidebar.php:25 ++msgid "Meta:" ++msgstr "Meta:" ++ ++#: wp-content/themes/classic/sidebar.php:29 ++msgid "Syndicate this site using RSS" ++msgstr "Sindicar este site através de RSS" ++ ++#: wp-content/themes/classic/sidebar.php:29 ++msgid "RSS" ++msgstr "RSS" ++ ++#: wp-content/themes/classic/sidebar.php:30 ++#: wp-includes/widgets.php:513 ++msgid "The latest comments to all posts in RSS" ++msgstr "Os mais recentes comentários a todos os artigos em RSS" ++ ++#: wp-content/themes/classic/sidebar.php:30 ++#: wp-includes/widgets.php:513 ++msgid "Comments RSS" ++msgstr "Comentários RSS" ++ ++#: wp-content/themes/classic/sidebar.php:31 ++msgid "This page validates as XHTML 1.0 Transitional" ++msgstr "Esta página é validada como XHTML 1.0 Transitional" ++ ++#: wp-content/themes/classic/sidebar.php:31 ++msgid "Valid XHTML" ++msgstr "XHTML Válido" ++ ++#: wp-content/themes/default/functions.php:147 ++msgid "Customize Header" ++msgstr "Personalizar Cabeçalho" ++ ++#: wp-content/themes/default/functions.php:147 ++#: wp-content/themes/default/functions.php:361 ++msgid "Header Image and Color" ++msgstr "Imagem e Cor do Cabeçalho" ++ ++#: wp-content/themes/default/functions.php:160 ++msgid "Close Color Picker" ++msgstr "Fechar Selector de Cor" ++ ++#: wp-content/themes/default/functions.php:375 ++msgid "Font Color:" ++msgstr "Cor do Tipo de Letra:" ++ ++#: wp-content/themes/default/functions.php:375 ++#, php-format ++msgid "Any CSS color (%s or %s or %s)" ++msgstr "Qualquer cor CSS (%s ou %s ou %s)" ++ ++#: wp-content/themes/default/functions.php:376 ++msgid "Upper Color:" ++msgstr "Cor Superior:" ++ ++#: wp-content/themes/default/functions.php:376 ++#: wp-content/themes/default/functions.php:377 ++#, php-format ++msgid "HEX only (%s or %s)" ++msgstr "Apenas HEX (%s ou %s)" ++ ++#: wp-content/themes/default/functions.php:377 ++msgid "Lower Color:" ++msgstr "Cor Inferior:" ++ ++#: wp-content/themes/default/functions.php:379 ++msgid "Toggle Text" ++msgstr "Alternar Texto" ++ ++#: wp-content/themes/default/functions.php:380 ++msgid "Use Defaults" ++msgstr "Utilizar Predefinições" ++ ++#: wp-content/themes/default/functions.php:389 ++msgid "Font Color" ++msgstr "Cor do Tipo de Letra" ++ ++#: wp-content/themes/default/functions.php:390 ++msgid "Upper Color" ++msgstr "Cor Superior" ++ ++#: wp-content/themes/default/functions.php:391 ++msgid "Lower Color" ++msgstr "Cor Inferior" ++ ++#: wp-content/themes/default/functions.php:392 ++msgid "Revert" ++msgstr "Reverter" ++ ++#: wp-content/themes/default/functions.php:400 ++msgid "Update Header" ++msgstr "Update Header" ++ ++#: wp-content/themes/default/functions.php:406 ++msgid "Font Color (CSS):" ++msgstr "Cor do Tipo de Letra (CSS):" ++ ++#: wp-content/themes/default/functions.php:407 ++msgid "Upper Color (HEX):" ++msgstr "Cor Superior (HEX):" ++ ++#: wp-content/themes/default/functions.php:408 ++msgid "Lower Color (HEX):" ++msgstr "Cor Inferior (HEX):" ++ ++#: wp-content/themes/default/functions.php:409 ++msgid "Select Default Colors" ++msgstr "Seleccionar Cores Predefinidas" ++ ++#: wp-content/themes/default/functions.php:410 ++msgid "Toggle Text Display" ++msgstr "Alternar Visualização de Texto" ++ ++#: wp-includes/atomlib.php:133 ++#, php-format ++msgid "XML error: %s at line %d" ++msgstr "Erro XML: %s na linha %d" ++ ++#: wp-includes/author-template.php:237 ++#, php-format ++msgid "Visit %s's website" ++msgstr "Visitar Website de %s" ++ ++#: wp-includes/author-template.php:371 ++#: wp-includes/author-template.php:469 ++#, php-format ++msgid "Posts by %s" ++msgstr "Artigos de %s" ++ ++#: wp-includes/bookmark-template.php:73 ++#, php-format ++msgid "Last updated: %s" ++msgstr "Última actualização: %s" ++ ++#: wp-includes/bookmark-template.php:161 ++msgid "Bookmarks" ++msgstr "Favoritos" ++ ++#: wp-includes/category-template.php:62 ++#: wp-includes/category-template.php:129 ++#: wp-includes/category-template.php:132 ++#: wp-includes/category-template.php:139 ++#: wp-includes/category-template.php:152 ++#: wp-includes/category-template.php:155 ++#: wp-includes/category-template.php:162 ++#, php-format ++msgid "View all posts in %s" ++msgstr "Ver todos os artigos em %s" ++ ++#: wp-includes/category-template.php:300 ++#: wp-includes/category-template.php:302 ++msgid "No categories" ++msgstr "Sem categorias" ++ ++#: wp-includes/category-template.php:416 ++#, php-format ++msgid "%d topic" ++msgid_plural "%d topics" ++msgstr[0] "tópico %d" ++msgstr[1] "%d topicos" ++ ++#: wp-includes/classes.php:634 ++#, php-format ++msgid "View all posts filed under %s" ++msgstr "Ver todos os artigos arquivados em %s" ++ ++#: wp-includes/classes.php:649 ++#, php-format ++msgid "Feed for all posts filed under %s" ++msgstr "Alimentação para todos os artigos arquivados em %s" ++ ++#: wp-includes/class-pop3.php:83 ++msgid "No server specified" ++msgstr "Nenhum servidor especificado" ++ ++#: wp-includes/class-pop3.php:91 ++#: wp-includes/class-pop3.php:103 ++#: wp-includes/class-pop3.php:124 ++#: wp-includes/class-pop3.php:247 ++#: wp-includes/class-pop3.php:301 ++#: wp-includes/class-pop3.php:312 ++#: wp-includes/class-pop3.php:360 ++#: wp-includes/class-pop3.php:394 ++#: wp-includes/class-pop3.php:427 ++#: wp-includes/class-pop3.php:526 ++#: wp-includes/class-pop3.php:549 ++msgid "Error " ++msgstr "Erro" ++ ++#: wp-includes/class-pop3.php:116 ++msgid "no login ID submitted" ++msgstr "nenhum ID de início de sessão fornecido" ++ ++#: wp-includes/class-pop3.php:119 ++#: wp-includes/class-pop3.php:139 ++msgid "connection not established" ++msgstr "ligação não-estabelecida" ++ ++#: wp-includes/class-pop3.php:136 ++#: wp-includes/class-pop3.php:172 ++msgid "No password submitted" ++msgstr "Nenhuma senha fornecida" ++ ++#: wp-includes/class-pop3.php:144 ++msgid "Authentication failed" ++msgstr "Falha de autenticação" ++ ++#: wp-includes/class-pop3.php:163 ++#: wp-includes/class-pop3.php:206 ++#: wp-includes/class-pop3.php:231 ++#: wp-includes/class-pop3.php:273 ++#: wp-includes/class-pop3.php:347 ++#: wp-includes/class-pop3.php:387 ++#: wp-includes/class-pop3.php:417 ++#: wp-includes/class-pop3.php:451 ++#: wp-includes/class-pop3.php:514 ++#: wp-includes/class-pop3.php:582 ++msgid "No connection to server" ++msgstr "Sem ligação ao servidor" ++ ++#: wp-includes/class-pop3.php:169 ++msgid "No login ID submitted" ++msgstr "Nenhum ID de início de sessão fornecido" ++ ++#: wp-includes/class-pop3.php:177 ++msgid "No server banner" ++msgstr "Nenhuma faixa de servidor" ++ ++#: wp-includes/class-pop3.php:177 ++#: wp-includes/class-pop3.php:187 ++msgid "abort" ++msgstr "abortar" ++ ++#: wp-includes/class-pop3.php:187 ++msgid "apop authentication failed" ++msgstr "falha na autenticação apop" ++ ++#: wp-includes/class-pop3.php:324 ++msgid "Premature end of list" ++msgstr "Fim prematuro de lista" ++ ++#: wp-includes/class-pop3.php:457 ++msgid "Empty command string" ++msgstr "Cadeia de comando vazia" ++ ++#: wp-includes/class-pop3.php:477 ++msgid "connection does not exist" ++msgstr "ligação não-existente" ++ ++#: wp-includes/class-pop3.php:587 ++msgid "No msg number submitted" ++msgstr "Nenhum número de mensagem fornecido" ++ ++#: wp-includes/class-pop3.php:593 ++msgid "Command failed " ++msgstr "Comando falhou" ++ ++#: wp-includes/comment.php:337 ++msgid "Duplicate comment detected; it looks as though you've already said that!" ++msgstr "Detectado comentário duplicado; parece que já fez um comentário igual!" ++ ++#: wp-includes/comment.php:388 ++msgid "You are posting comments too quickly. Slow down." ++msgstr "Está a publicar comentários com demasiada rapidez. Deixe passar mais tempo." ++ ++#: wp-includes/comment-template.php:25 ++#: wp-includes/theme.php:116 ++msgid "Anonymous" ++msgstr "Anónimo" ++ ++#: wp-includes/comment-template.php:735 ++msgid "Enter your password to view comments" ++msgstr "Introduza a sua senha para ver os comentários" ++ ++#: wp-includes/comment-template.php:763 ++#, php-format ++msgid "Comment on %s" ++msgstr "Comentário em %s" ++ ++#: wp-includes/cron.php:135 ++msgid "Once Hourly" ++msgstr "Uma Vez Por Hora" ++ ++#: wp-includes/cron.php:136 ++msgid "Once Daily" ++msgstr "Uma Vez Por Dia" ++ ++#: wp-includes/deprecated.php:123 ++msgid "new WordPress Loop" ++msgstr "novo Loop de WordPress" ++ ++#: wp-includes/deprecated.php:1016 ++msgid "Last updated" ++msgstr "Última actualização" ++ ++#: wp-includes/feed-atom-comments.php:18 ++#: wp-includes/feed-rss2-comments.php:20 ++#, php-format ++msgid "Comments on: %s" ++msgstr "Comentários em: %s" ++ ++#: wp-includes/feed-atom-comments.php:20 ++#, php-format ++msgid "Comments for %1$s searching on %2$s" ++msgstr "Comentários para %1$s pesquisando em %2$s" ++ ++#: wp-includes/feed-atom-comments.php:22 ++#: wp-includes/feed-rss2-comments.php:24 ++#, php-format ++msgid "Comments for %s" ++msgstr "Comentários para %s" ++ ++#: wp-includes/feed-atom-comments.php:53 ++#: wp-includes/feed-rss2-comments.php:42 ++#, php-format ++msgid "Comment on %1$s by %2$s" ++msgstr "Comentário em %1$s por %2$s" ++ ++#: wp-includes/feed-atom-comments.php:55 ++#: wp-includes/feed-rss2-comments.php:44 ++#, php-format ++msgid "By: %s" ++msgstr "Por: %s" ++ ++#: wp-includes/feed-rss2-comments.php:22 ++#, php-format ++msgid "Comments for %s searching on %s" ++msgstr "Comentários para %s procurando em %s" ++ ++#: wp-includes/feed-rss2-comments.php:52 ++msgid "Protected Comments: Please enter your password to view comments." ++msgstr "Comentários Protegidos: introduza a sua senha para ver os comentários." ++ ++#: wp-includes/formatting.php:812 ++#, php-format ++msgid "%s min" ++msgid_plural "%s mins" ++msgstr[0] "%s minuto" ++msgstr[1] "%s minutos" ++ ++#: wp-includes/formatting.php:818 ++#, php-format ++msgid "%s hour" ++msgid_plural "%s hours" ++msgstr[0] "%s hora" ++msgstr[1] "%s horas" ++ ++#: wp-includes/formatting.php:824 ++#, php-format ++msgid "%s day" ++msgid_plural "%s days" ++msgstr[0] "%s dia" ++msgstr[1] "%s dias" ++ ++#: wp-includes/formatting.php:1371 ++msgid ", |between list items" ++msgstr ", |between list items" ++ ++#: wp-includes/formatting.php:1372 ++msgid ", and |between last two list items" ++msgstr " e |between last two list items" ++ ++#: wp-includes/formatting.php:1373 ++msgid " and |between only two list items" ++msgstr " e |between only two list items" ++ ++#: wp-includes/functions.php:250 ++#, php-format ++msgid "%s is a protected WP option and may not be modified" ++msgstr "%s é uma opção protegida do WP e não pode ser modificada" ++ ++#: wp-includes/functions.php:907 ++#, php-format ++msgid "ERROR: %s is not a valid feed template" ++msgstr "ERRO: %s is não é um template de feed válido" ++ ++#: wp-includes/functions.php:1113 ++#: wp-includes/functions.php:1175 ++#, php-format ++msgid "Unable to create directory %s. Is its parent directory writable by the server?" ++msgstr "Não foi possível criar o directório %s. O directório do nível acima permite a escrita?" ++ ++#: wp-includes/functions.php:1160 ++msgid "Empty filename" ++msgstr "Nome de ficheiro em falta" ++ ++#: wp-includes/functions.php:1181 ++#, php-format ++msgid "Could not write file %s" ++msgstr "Não foi possível guardar ficheiro %s" ++ ++#: wp-includes/functions.php:1283 ++#, php-format ++msgid "Your attempt to edit this attachment: "%s" has failed." ++msgstr "A tentativa de editar este anexo: "%s" falhou." ++ ++#: wp-includes/functions.php:1285 ++msgid "Your attempt to add this category has failed." ++msgstr "A tentativa de adicionar esta Categoria falhou." ++ ++#: wp-includes/functions.php:1286 ++#, php-format ++msgid "Your attempt to delete this category: "%s" has failed." ++msgstr "A tentativa de eliminar esta Categoria: "%s" falhou." ++ ++#: wp-includes/functions.php:1287 ++#, php-format ++msgid "Your attempt to edit this category: "%s" has failed." ++msgstr "A tentativa de editar esta Categoria: "%s" falhou." ++ ++#: wp-includes/functions.php:1289 ++#, php-format ++msgid "Your attempt to delete this comment: "%s" has failed." ++msgstr "A tentativa de eliminar este comentário: "%s" falhou." ++ ++#: wp-includes/functions.php:1290 ++#, php-format ++msgid "Your attempt to unapprove this comment: "%s" has failed." ++msgstr "A tentativa de rejeitar este Comentário: "%s" falhou." ++ ++#: wp-includes/functions.php:1291 ++#, php-format ++msgid "Your attempt to approve this comment: "%s" has failed." ++msgstr "A tentativa de aprovar este Comentário: "%s" falhou." ++ ++#: wp-includes/functions.php:1292 ++#, php-format ++msgid "Your attempt to edit this comment: "%s" has failed." ++msgstr "A tentativa de editar este Comentário: "%s" falhou." ++ ++#: wp-includes/functions.php:1293 ++msgid "Your attempt to bulk modify comments has failed." ++msgstr "A tentativa de modificar Comentários em massa falhou." ++ ++#: wp-includes/functions.php:1294 ++msgid "Your attempt to moderate comments has failed." ++msgstr "A tentativa de moderar comentários falhou." ++ ++#: wp-includes/functions.php:1296 ++msgid "Your attempt to add this link has failed." ++msgstr "A tentativa de adicionar este Link falhou." ++ ++#: wp-includes/functions.php:1297 ++#, php-format ++msgid "Your attempt to delete this link: "%s" has failed." ++msgstr "A tentativa de eliminar este Link: "%s" falhou." ++ ++#: wp-includes/functions.php:1298 ++#, php-format ++msgid "Your attempt to edit this link: "%s" has failed." ++msgstr "A tentativa de editar este Link: "%s" falhou." ++ ++#: wp-includes/functions.php:1299 ++msgid "Your attempt to bulk modify links has failed." ++msgstr "A tentativa de modificar Links em massa falhou." ++ ++#: wp-includes/functions.php:1301 ++msgid "Your attempt to add this page has failed." ++msgstr "A tentativa de adicionar esta Página falhou." ++ ++#: wp-includes/functions.php:1302 ++#, php-format ++msgid "Your attempt to delete this page: "%s" has failed." ++msgstr "A tentativa de eliminar esta página: "%s" falhou." ++ ++#: wp-includes/functions.php:1303 ++#, php-format ++msgid "Your attempt to edit this page: "%s" has failed." ++msgstr "A tentativa de editar esta página: "%s" falhou." ++ ++#: wp-includes/functions.php:1305 ++#, php-format ++msgid "Your attempt to edit this plugin file: "%s" has failed." ++msgstr "A tentativa de editar o ficheiro desta extensão: "%s" falhou." ++ ++#: wp-includes/functions.php:1306 ++#, php-format ++msgid "Your attempt to activate this plugin: "%s" has failed." ++msgstr "A tentativa de activar esta extensão: "%s" falhou." ++ ++#: wp-includes/functions.php:1307 ++#, php-format ++msgid "Your attempt to deactivate this plugin: "%s" has failed." ++msgstr "A tentativa de desactivar esta extensão: "%s" falhou." ++ ++#: wp-includes/functions.php:1308 ++#, php-format ++msgid "Your attempt to upgrade this plugin: "%s" has failed." ++msgstr "A tentativa de actualizar esta extensão: "%s" falhou." ++ ++#: wp-includes/functions.php:1310 ++msgid "Your attempt to add this post has failed." ++msgstr "A tentativa de adicionar este artigo falhou." ++ ++#: wp-includes/functions.php:1311 ++#, php-format ++msgid "Your attempt to delete this post: "%s" has failed." ++msgstr "A tentativa de eliminar este artigo: "%s" falhou." ++ ++#: wp-includes/functions.php:1312 ++#, php-format ++msgid "Your attempt to edit this post: "%s" has failed." ++msgstr "A tentativa de editar este artigo: "%s" falhou." ++ ++#: wp-includes/functions.php:1314 ++msgid "Your attempt to add this user has failed." ++msgstr "A tentativa de adicionar este utilizador falhou." ++ ++#: wp-includes/functions.php:1315 ++msgid "Your attempt to delete users has failed." ++msgstr "A tentativa de eliminar utilizadores falhou." ++ ++#: wp-includes/functions.php:1316 ++msgid "Your attempt to bulk modify users has failed." ++msgstr "A tentativa de modificar utilizadores em massa falhou." ++ ++#: wp-includes/functions.php:1317 ++#, php-format ++msgid "Your attempt to edit this user: "%s" has failed." ++msgstr "A tentativa de editar o utilizador: "%s" falhou." ++ ++#: wp-includes/functions.php:1318 ++#, php-format ++msgid "Your attempt to modify the profile for: "%s" has failed." ++msgstr "A tentativa de modificar o perfil de "%s" falhou" ++ ++#: wp-includes/functions.php:1320 ++msgid "Your attempt to edit your settings has failed." ++msgstr "A tentativa de editar as suas opções falhou." ++ ++#: wp-includes/functions.php:1321 ++#, php-format ++msgid "Your attempt to change your permalink structure to: %s has failed." ++msgstr "A tentativa de modificar a estrutura de links permanentes para: %s falhou." ++ ++#: wp-includes/functions.php:1322 ++#, php-format ++msgid "Your attempt to edit this file: "%s" has failed." ++msgstr "A tentativa de editar este ficheiro: "%s" falhou." ++ ++#: wp-includes/functions.php:1323 ++#, php-format ++msgid "Your attempt to edit this theme file: "%s" has failed." ++msgstr "A tentativa de editar o ficheiro do tema: "%s" falhou." ++ ++#: wp-includes/functions.php:1324 ++#, php-format ++msgid "Your attempt to switch to this theme: "%s" has failed." ++msgstr "A tentativa de mudar para este tema: "%s" falhou." ++ ++#: wp-includes/functions.php:1339 ++msgid "Are you sure you want to do this?" ++msgstr "Tem a certeza de que pretende efectuar esta acção?" ++ ++#: wp-includes/functions.php:1344 ++msgid "WordPress Failure Notice" ++msgstr "Notificação de Falha do WordPress" ++ ++#: wp-includes/functions.php:1347 ++msgid "Please try again." ++msgstr "Por favor tente de novo." ++ ++#: wp-includes/functions.php:1395 ++msgid "WordPress › Error" ++msgstr "WordPress › Erro" ++ ++#: wp-includes/general-template.php:36 ++#: wp-login.php:261 ++#: wp-login.php:264 ++#: wp-login.php:329 ++msgid "Log in" ++msgstr "Iniciar Sessão" ++ ++#: wp-includes/general-template.php:38 ++msgid "Log out" ++msgstr "Sair" ++ ++#: wp-includes/general-template.php:48 ++#: wp-login.php:262 ++#: wp-login.php:325 ++#: wp-login.php:403 ++msgid "Register" ++msgstr "Registar" ++ ++#: wp-includes/general-template.php:52 ++msgid "Site Admin" ++msgstr "Administração" ++ ++#: wp-includes/general-template.php:414 ++#, php-format ++msgid "%1$s %2$d" ++msgstr "%1$s %2$d" ++ ++#: wp-includes/general-template.php:591 ++#: wp-includes/widgets.php:1364 ++#: wp-includes/widgets.php:1365 ++msgid "Calendar" ++msgstr "Calendário" ++ ++#: wp-includes/general-template.php:592 ++#, php-format ++msgid "%1$s %2$s|Used as a calendar caption" ++msgstr "%1$s %2$s|Usado como título do calendário" ++ ++#: wp-includes/general-template.php:616 ++#: wp-includes/general-template.php:626 ++#, php-format ++msgid "View posts for %1$s %2$s" ++msgstr "Ver artigos para %1$s %2$s" ++ ++#: wp-includes/general-template.php:933 ++#: wp-includes/general-template.php:937 ++msgid "HTML" ++msgstr "HTML" ++ ++#: wp-includes/general-template.php:934 ++#: wp-includes/general-template.php:938 ++msgid "Visual" ++msgstr "Visual" ++ ++#: wp-includes/general-template.php:1032 ++msgid "« Previous" ++msgstr "« Anterior" ++ ++#: wp-includes/general-template.php:1033 ++msgid "Next »" ++msgstr "Seguinte »" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:13 ++msgid "Do you want to use the WYSIWYG mode for this textarea?" ++msgstr "Quer usar o editor visual para esta área de texto?" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:14 ++msgid "Apply" ++msgstr "Aplicar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:15 ++#: wp-includes/script-loader.php:183 ++msgid "Insert" ++msgstr "Inserir" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:18 ++#: wp-includes/js/tinymce/wp-mce-help.php:246 ++msgid "Close" ++msgstr "Fechar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:19 ++msgid "Browse" ++msgstr "Procurar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:20 ++#: wp-includes/js/tinymce/langs/wp-langs.php:300 ++msgid "Class" ++msgstr "Classe" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:21 ++msgid "-- Not set --" ++msgstr "--Não definido--" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:22 ++#: wp-includes/js/tinymce/langs/wp-langs.php:227 ++msgid "Copy/Cut/Paste is not available in Mozilla and Firefox." ++msgstr "Copiar/Cortar/Colar não está disponível em Mozilla ou Firefox." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:23 ++msgid "Currently not supported by your browser, use keyboard shortcuts instead." ++msgstr "Não suportado pelo seu browser neste momento, use os atalhos de teclado." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:24 ++msgid "Sorry, but we have noticed that your popup-blocker has disabled a window that provides application functionality. You will need to disable popup blocking on this site in order to fully utilize this tool." ++msgstr "Lamentamos, mas reparámos que o seu bloqueador de janelas inibiu uma janela que fornece funcionalidade adicional. Terá que desactivar o bloqueador para este site para poder usar esta ferramenta plenamente." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:25 ++msgid "Error: Invalid values entered, these are marked in red." ++msgstr "Erro: valores inválidos, marcados a vermelho." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:26 ++#: wp-includes/js/tinymce/langs/wp-langs.php:231 ++msgid "More colors" ++msgstr "Mais cores" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:33 ++msgid "Full" ++msgstr "Completo" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:36 ++msgid "%Y-%m-%d" ++msgstr "%Y-%m-%d" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:37 ++msgid "%H:%M:%S" ++msgstr "%H:%M:%S" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:38 ++msgid "Insert date" ++msgstr "Inserir data" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:39 ++msgid "Insert time" ++msgstr "Inserir hora" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:142 ++#: wp-includes/locale.php:157 ++msgid "January" ++msgstr "Janeiro" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:143 ++#: wp-includes/locale.php:158 ++msgid "February" ++msgstr "Fevereiro" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:144 ++#: wp-includes/locale.php:159 ++msgid "March" ++msgstr "Março" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:145 ++#: wp-includes/locale.php:160 ++msgid "April" ++msgstr "Abril" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:146 ++#: wp-includes/locale.php:161 ++msgid "May" ++msgstr "Maio" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:147 ++#: wp-includes/locale.php:162 ++msgid "June" ++msgstr "Junho" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:148 ++#: wp-includes/locale.php:163 ++msgid "July" ++msgstr "Julho" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:149 ++#: wp-includes/locale.php:164 ++msgid "August" ++msgstr "Agosto" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:150 ++#: wp-includes/locale.php:165 ++msgid "September" ++msgstr "Setembro" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:151 ++#: wp-includes/locale.php:166 ++msgid "October" ++msgstr "Outubro" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:152 ++#: wp-includes/locale.php:167 ++msgid "November" ++msgstr "Novembro" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:153 ++#: wp-includes/locale.php:168 ++msgid "December" ++msgstr "Dezembro" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:157 ++msgid "Jan_January_abbreviation" ++msgstr "Jan" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:158 ++msgid "Feb_February_abbreviation" ++msgstr "Fev" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:159 ++msgid "Mar_March_abbreviation" ++msgstr "Mar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:160 ++msgid "Apr_April_abbreviation" ++msgstr "Abr" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:161 ++msgid "May_May_abbreviation" ++msgstr "Mai" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:162 ++msgid "Jun_June_abbreviation" ++msgstr "Jun" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:163 ++msgid "Jul_July_abbreviation" ++msgstr "Jul" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:164 ++msgid "Aug_August_abbreviation" ++msgstr "Ago" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:165 ++msgid "Sep_September_abbreviation" ++msgstr "Set" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:166 ++msgid "Oct_October_abbreviation" ++msgstr "Out" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:167 ++msgid "Nov_November_abbreviation" ++msgstr "Nov" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:168 ++msgid "Dec_December_abbreviation" ++msgstr "Dez" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:110 ++#: wp-includes/locale.php:120 ++#: wp-includes/locale.php:133 ++msgid "Sunday" ++msgstr "Domingo" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:111 ++#: wp-includes/locale.php:121 ++#: wp-includes/locale.php:134 ++msgid "Monday" ++msgstr "Segunda-feira" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:112 ++#: wp-includes/locale.php:122 ++#: wp-includes/locale.php:135 ++msgid "Tuesday" ++msgstr "Terça-feira" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:113 ++#: wp-includes/locale.php:123 ++#: wp-includes/locale.php:136 ++msgid "Wednesday" ++msgstr "Quarta-feira" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:114 ++#: wp-includes/locale.php:124 ++#: wp-includes/locale.php:137 ++msgid "Thursday" ++msgstr "Quinta-feira" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:115 ++#: wp-includes/locale.php:125 ++#: wp-includes/locale.php:138 ++msgid "Friday" ++msgstr "Sexta-feira" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:116 ++#: wp-includes/locale.php:126 ++#: wp-includes/locale.php:139 ++msgid "Saturday" ++msgstr "Sábado" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:133 ++msgid "Sun" ++msgstr "Dom" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:134 ++msgid "Mon" ++msgstr "Seg" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:135 ++msgid "Tue" ++msgstr "Ter" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:136 ++msgid "Wed" ++msgstr "Qua" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:137 ++msgid "Thu" ++msgstr "Qui" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:138 ++msgid "Fri" ++msgstr "Sex" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:139 ++msgid "Sat" ++msgstr "Sáb" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:46 ++msgid "Print" ++msgstr "Imprimir" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:49 ++#: wp-includes/js/tinymce/langs/wp-langs.php:295 ++msgid "Preview" ++msgstr "Pré-visualizar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:52 ++msgid "Direction left to right" ++msgstr "Direcção da esquerda para a direita" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:53 ++msgid "Direction right to left" ++msgstr "Direcção da direita para a esquerda" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:56 ++msgid "Insert new layer" ++msgstr "Inserir novo layer" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:57 ++msgid "Move forward" ++msgstr "Para a frente" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:58 ++msgid "Move backward" ++msgstr "Para trás" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:59 ++msgid "Toggle absolute positioning" ++msgstr "Ligar/desligar posicionamento absoluto" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:60 ++msgid "New layer..." ++msgstr "Novo layer..." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:64 ++msgid "Cancel all changes" ++msgstr "Cancelar todas as alterações" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:67 ++msgid "Insert non-breaking space character" ++msgstr "Inserir espaço sem quebra de linha" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:70 ++msgid "Run spell checking" ++msgstr "Verificar ortografia" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:71 ++msgid "ieSpell not detected. Do you want to install it now?" ++msgstr "ieSpell não foi detectado. Quer instalar agora?" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:74 ++msgid "Horizontale rule" ++msgstr "Linha horizontal" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:77 ++msgid "Emotions" ++msgstr "Emoções" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:80 ++msgid "Find" ++msgstr "Procurar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:81 ++msgid "Find/Replace" ++msgstr "Procurar/Substituir" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:84 ++#: wp-includes/js/tinymce/langs/wp-langs.php:206 ++#: wp-includes/js/tinymce/langs/wp-langs.php:260 ++msgid "Insert/edit image" ++msgstr "Inserir/editar imagem" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:87 ++#: wp-includes/js/tinymce/langs/wp-langs.php:202 ++#: wp-includes/js/tinymce/langs/wp-langs.php:277 ++msgid "Insert/edit link" ++msgstr "Inserir/editar link" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:90 ++msgid "Citation" ++msgstr "Citação" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:91 ++msgid "Abbreviation" ++msgstr "Abreviatura" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:92 ++msgid "Acronym" ++msgstr "Acrónimo" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:93 ++msgid "Deletion" ++msgstr "Eliminação" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:94 ++msgid "Insertion" ++msgstr "Inserção" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:95 ++msgid "Insert/Edit Attributes" ++msgstr "Inserir/Editar Atributos" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:98 ++msgid "Edit CSS Style" ++msgstr "Editar Estilo CSS" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:101 ++msgid "Paste as Plain Text" ++msgstr "Colar como Texto" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:102 ++msgid "Paste from Word" ++msgstr "Colar do Word" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:103 ++msgid "Select All" ++msgstr "Seleccionar Tudo" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:106 ++#: wp-includes/js/tinymce/langs/wp-langs.php:108 ++msgid "Use CTRL+V on your keyboard to paste the text into the window." ++msgstr "Use CTRL+V no seu teclado para colar o texto nesta janela." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:107 ++msgid "Keep linebreaks" ++msgstr "Manter quebras de linha" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:111 ++msgid "Inserts a new table" ++msgstr "Insere uma nova tabela" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:112 ++msgid "Insert row before" ++msgstr "Inserir linha antes" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:113 ++msgid "Insert row after" ++msgstr "Inserir linha depois" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:114 ++msgid "Delete row" ++msgstr "Eliminar linha" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:115 ++msgid "Insert column before" ++msgstr "Inserir coluna antes" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:116 ++msgid "Insert column after" ++msgstr "Inserir coluna depois" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:117 ++msgid "Remove column" ++msgstr "Eliminar coluna" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:118 ++msgid "Split merged table cells" ++msgstr "Dividir células fundidas" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:119 ++msgid "Merge table cells" ++msgstr "Fundir células" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:120 ++msgid "Table row properties" ++msgstr "Propriedades da linha da tabela" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:121 ++msgid "Table cell properties" ++msgstr "Propriedades da célula da tabela" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:122 ++msgid "Table properties" ++msgstr "Propriedades da tabela" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:123 ++msgid "Paste table row before" ++msgstr "Colar linha da tabela antes" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:124 ++msgid "Paste table row after" ++msgstr "Colar linha da tabela depois" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:125 ++msgid "Cut table row" ++msgstr "Cortar linha" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:126 ++msgid "Copy table row" ++msgstr "Copiar linha" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:127 ++msgid "Delete table" ++msgstr "Eliminar tabela" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:128 ++msgid "Row" ++msgstr "Linha" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:129 ++msgid "Column" ++msgstr "Coluna" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:130 ++msgid "Cell" ++msgstr "Célula" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:133 ++msgid "The changes you made will be lost if you navigate away from this page." ++msgstr "As modificações que fez serão ignoradas se navegar para fora desta página." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:136 ++msgid "Toggle fullscreen mode" ++msgstr "Ligar/desligar modo de écrã inteiro" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:139 ++#: wp-includes/js/tinymce/langs/wp-langs.php:289 ++msgid "Insert / edit embedded media" ++msgstr "Inserir/editar mídia embebido" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:140 ++msgid "0| Extra width for the media popup in pixels" ++msgstr "0| Largura extra para o popup de mída, em pixels" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:141 ++msgid "0| Extra height for the media popup in pixels" ++msgstr "0| Altura extra para o popup de mídia, em pixels" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:142 ++msgid "Edit embedded media" ++msgstr "Editar mídia embebido" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:145 ++msgid "Document properties" ++msgstr "Propriedades do documento" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:148 ++msgid "Insert predefined template content" ++msgstr "Inserir conteúdo prédefinido de um template" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:151 ++msgid "Visual control characters on/off." ++msgstr "Caracteres de controlo visual ligados/desligados" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:154 ++msgid "Toggle spellchecker" ++msgstr "Ligar/desligar verificação ortográfica" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:155 ++msgid "Spellchecker settings" ++msgstr "Definições da verificação ortográfica" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:156 ++msgid "Ignore word" ++msgstr "Ignorar palavra" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:157 ++msgid "Ignore all" ++msgstr "Ignorar todas" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:158 ++msgid "Languages" ++msgstr "Idiomas" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:159 ++msgid "Please wait..." ++msgstr "Por favor aguarde..." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:160 ++msgid "Suggestions" ++msgstr "Sugestões" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:161 ++msgid "No suggestions" ++msgstr "Nenhuma sugestão" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:162 ++msgid "No misspellings found." ++msgstr "Sem erros de ortografia" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:165 ++msgid "Insert page break." ++msgstr "Inserir quebra de página" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:169 ++msgid "Styles" ++msgstr "Estilos" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:170 ++msgid "Font size" ++msgstr "Tamanho da letra" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:171 ++msgid "Font family" ++msgstr "Tipo de letra" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:172 ++msgid "Format" ++msgstr "Formato" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:173 ++msgid "Paragraph" ++msgstr "Parágrafo" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:174 ++msgid "Div" ++msgstr "Div" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:175 ++#: wp-includes/js/tinymce/wp-mce-help.php:204 ++msgid "Address" ++msgstr "Endereço" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:176 ++msgid "Preformatted" ++msgstr "Préformatado" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:177 ++msgid "Heading 1" ++msgstr "Cabeçalho 1" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:178 ++msgid "Heading 2" ++msgstr "Cabeçalho 2" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:179 ++msgid "Heading 3" ++msgstr "Cabeçalho 3" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:180 ++msgid "Heading 4" ++msgstr "Cabeçalho 4" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:181 ++msgid "Heading 5" ++msgstr "Cabeçalho 5" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:182 ++msgid "Heading 6" ++msgstr "Cabeçalho 6" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:183 ++#: wp-includes/js/tinymce/langs/wp-langs.php:226 ++msgid "Blockquote" ++msgstr "Citação" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:184 ++msgid "Code" ++msgstr "Código" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:185 ++msgid "Code sample" ++msgstr "Código" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:186 ++msgid "Definition term " ++msgstr "Definição" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:187 ++msgid "Definition description" ++msgstr "Descrição da definição" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:188 ++#: wp-includes/js/tinymce/wp-mce-help.php:200 ++#: wp-includes/js/tinymce/wp-mce-help.php:213 ++msgid "Bold" ++msgstr "Negrito" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:189 ++#: wp-includes/js/tinymce/wp-mce-help.php:200 ++#: wp-includes/js/tinymce/wp-mce-help.php:213 ++msgid "Italic" ++msgstr "Itálico" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:190 ++#: wp-includes/js/tinymce/wp-mce-help.php:201 ++msgid "Underline" ++msgstr "Sublinhado" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:191 ++#: wp-includes/js/tinymce/wp-mce-help.php:217 ++msgid "Strikethrough" ++msgstr "Rasurado" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:192 ++msgid "Align left" ++msgstr "Alinhar à esquerda" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:193 ++msgid "Align center" ++msgstr "Alinhar ao centro" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:194 ++msgid "Align right" ++msgstr "Alinhar à direita" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:195 ++msgid "Align full" ++msgstr "Justificar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:196 ++msgid "Unordered list" ++msgstr "Lista não numerada" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:197 ++msgid "Ordered list" ++msgstr "Lista numerada" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:198 ++msgid "Outdent" ++msgstr "Desindentar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:199 ++msgid "Indent" ++msgstr "Indentar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:200 ++#: wp-includes/js/tinymce/wp-mce-help.php:197 ++msgid "Undo" ++msgstr "Anular" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:201 ++#: wp-includes/js/tinymce/wp-mce-help.php:197 ++msgid "Redo" ++msgstr "Refazer" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:203 ++msgid "0| Extra width for the link popup in pixels" ++msgstr "0| 0| Largura extra para o popup do link, em pixels" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:204 ++msgid "0| Extra height for the link popup in pixels" ++msgstr "0| Altura extra para o popup do link, em pixels" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:205 ++msgid "Unlink" ++msgstr "Remover link" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:207 ++msgid "0| Extra width for the image popup in pixels" ++msgstr "0| Largura extra para o popup da imagem, em pixels" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:208 ++msgid "0| Extra height for the image popup in pixels" ++msgstr "0| Altura extra para o popup da imagem, em pixels" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:209 ++msgid "Cleanup messy code" ++msgstr "Limpar código" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:210 ++msgid "Edit HTML Source" ++msgstr "Editar HTML" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:211 ++msgid "Subscript" ++msgstr "Sobescrito" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:212 ++msgid "Superscript" ++msgstr "Sobescrito" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:213 ++msgid "Insert horizontal ruler" ++msgstr "Inserir linha horizontal" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:214 ++msgid "Remove formatting" ++msgstr "Remover formatação" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:215 ++msgid "Select text color" ++msgstr "Seleccione a cor do texto" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:216 ++msgid "Select background color" ++msgstr "Seleccione a cor de fundo" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:217 ++msgid "Insert custom character" ++msgstr "Inserir símbolo" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:218 ++msgid "Toggle guidelines/invisible elements" ++msgstr "Ligar/desligar elementos invisíveis" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:219 ++#: wp-includes/js/tinymce/langs/wp-langs.php:246 ++msgid "Insert/edit anchor" ++msgstr "Inserir/editar âncora" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:220 ++#: wp-includes/js/tinymce/wp-mce-help.php:196 ++msgid "Cut" ++msgstr "Cortar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:221 ++#: wp-includes/js/tinymce/wp-mce-help.php:195 ++msgid "Copy" ++msgstr "Copiar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:222 ++#: wp-includes/js/tinymce/wp-mce-help.php:195 ++msgid "Paste" ++msgstr "Colar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:223 ++msgid "Image properties" ++msgstr "Propriedades da imagem" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:224 ++msgid "New document" ++msgstr "Novo documento" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:225 ++#: wp-includes/js/tinymce/langs/wp-langs.php:239 ++#: wp-includes/js/tinymce/langs/wp-langs.php:396 ++#: wp-includes/js/tinymce/wp-mce-help.php:222 ++msgid "Help" ++msgstr "Ajuda" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:228 ++msgid "Path" ++msgstr "Caminho (path)" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:229 ++msgid "Are you sure you want to clear all contents?" ++msgstr "Tem a certeza que quer eliminar todo o conteúdo?" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:230 ++msgid "Jump to tool buttons - Alt+Q, Jump to editor - Alt-Z, Jump to element path - Alt-X" ++msgstr "Ir directamente para as ferramentas - Alt+Q, ir directamente para o editor - Alt+Z, Ir directamente para o caminho de um elemento - Alt+X" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:232 ++msgid "0| Extra width for the colorpicker popup in pixels" ++msgstr "0| Largura extra para o popup de selecção de cores, em pixels" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:233 ++msgid "0| Extra height for the colorpicker popup in pixels" ++msgstr "0| Altura extra para o popup de selecção de cores, em pixels" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:237 ++#: wp-includes/js/tinymce/wp-mce-help.php:228 ++msgid "About TinyMCE" ++msgstr "Acerca do TinyMCE" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:240 ++msgid "License" ++msgstr "Licença" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:245 ++msgid "Loaded plugins" ++msgstr "Extensões carregadas" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:247 ++msgid "Anchor name" ++msgstr "Nome da âncora" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:248 ++msgid "HTML Source Editor" ++msgstr "Editor de HTML" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:249 ++msgid "Word wrap" ++msgstr "Translinear" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:250 ++msgid "Select a color" ++msgstr "Escolha uma cor" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:251 ++msgid "Picker" ++msgstr "Selecção" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:252 ++msgid "Color picker" ++msgstr "Selecção de cores" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:253 ++msgid "Palette" ++msgstr "Palette" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:254 ++msgid "Palette colors" ++msgstr "Cores da palette" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:255 ++msgid "Named" ++msgstr "por Nome" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:256 ++msgid "Named colors" ++msgstr "Cores por nome" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:257 ++msgid "Color:" ++msgstr "Cor:" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:258 ++msgid "Name:" ++msgstr "Nome:" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:259 ++msgid "Select custom character" ++msgstr "Selecionar caractere especial" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:262 ++msgid "Image description" ++msgstr "Descrição da imagem" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:263 ++msgid "Image list" ++msgstr "Lista" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:264 ++msgid "Border" ++msgstr "Limite" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:265 ++#: wp-includes/js/tinymce/langs/wp-langs.php:294 ++msgid "Dimensions" ++msgstr "Dimensões" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:266 ++msgid "Vertical space" ++msgstr "Espaço vertical" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:267 ++msgid "Horizontal space" ++msgstr "Espaço horizontal" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:269 ++msgid "Baseline" ++msgstr "Base" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:270 ++#: wp-includes/js/tinymce/langs/wp-langs.php:369 ++msgid "Top" ++msgstr "Topo" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:271 ++msgid "Middle" ++msgstr "Meio" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:272 ++#: wp-includes/js/tinymce/langs/wp-langs.php:371 ++msgid "Bottom" ++msgstr "Fundo" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:273 ++msgid "Text top" ++msgstr "Topo do texto" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:274 ++msgid "Text bottom" ++msgstr "Fundo do texto" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:280 ++msgid "Open link in the same window" ++msgstr "Abrir link na mesma janela" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:281 ++msgid "Open link in a new window" ++msgstr "Abrir link numa nova janela" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:283 ++msgid "The URL you entered seems to be an email address, do you want to add the required mailto: prefix?" ++msgstr "O URL que indicou parace ser um endereço de correio electrónico. Quer adicionar o prefixo mailto:?" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:284 ++msgid "The URL you entered seems to external link, do you want to add the required http:// prefix?" ++msgstr "O URL que indicou parace ser um link externo. Quer adicionar o prefixo http://?" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:285 ++msgid "Link list" ++msgstr "Lista de links" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:292 ++msgid "File/URL" ++msgstr "Ficheiro/URL" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:293 ++#: wp-includes/js/tinymce/wp-mce-help.php:218 ++#: wp-includes/js/tinymce/wp-mce-help.php:219 ++msgid "List" ++msgstr "Lista" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:296 ++msgid "Constrain proportions" ++msgstr "Constrangir proporções" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:297 ++msgid "Type" ++msgstr "Tipo" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:298 ++msgid "Id" ++msgstr "Id" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:301 ++msgid "V-Space" ++msgstr "Espaço vertical" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:302 ++msgid "H-Space" ++msgstr "Espaço horizontal" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:303 ++msgid "Auto play" ++msgstr "Auto iniciar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:304 ++#: wp-includes/js/tinymce/langs/wp-langs.php:386 ++msgid "Loop" ++msgstr "Loop" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:305 ++msgid "Show menu" ++msgstr "Mostrar menu" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:306 ++msgid "Quality" ++msgstr "Qualidade" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:307 ++msgid "Scale" ++msgstr "Escala" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:308 ++msgid "Align" ++msgstr "Alinhar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:309 ++msgid "SAlign" ++msgstr "SAlign" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:310 ++msgid "WMode" ++msgstr "WMode" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:311 ++msgid "Background" ++msgstr "Fundo" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:312 ++msgid "Base" ++msgstr "Base" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:313 ++msgid "Flashvars" ++msgstr "Variáveis Flash (Flashvars)" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:314 ++msgid "SWLiveConnect" ++msgstr "SWLiveConnect" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:315 ++msgid "AutoHREF" ++msgstr "AutoHREF" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:316 ++msgid "Cache" ++msgstr "Cache" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:317 ++msgid "Hidden" ++msgstr "Invisível" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:318 ++msgid "Controller" ++msgstr "Controlador" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:319 ++msgid "Kiosk mode" ++msgstr "Modo quiosque" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:320 ++msgid "Play every frame" ++msgstr "Tocar cada frame" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:321 ++msgid "Target cache" ++msgstr "Cache alvo" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:322 ++msgid "No correction" ++msgstr "Sem correcção" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:323 ++msgid "Enable JavaScript" ++msgstr "Habilitar JavaScript" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:324 ++#: wp-includes/js/tinymce/langs/wp-langs.php:382 ++msgid "Start time" ++msgstr "Tempo de início" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:325 ++msgid "End time" ++msgstr "Fim" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:326 ++msgid "Href" ++msgstr "Href" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:327 ++msgid "Choke speed" ++msgstr "Velocidade de asfixiamento" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:329 ++msgid "Volume" ++msgstr "Volume" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:330 ++#: wp-includes/js/tinymce/langs/wp-langs.php:385 ++msgid "Auto start" ++msgstr "Auto start" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:331 ++msgid "Enabled" ++msgstr "Activado" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:332 ++msgid "Fullscreen" ++msgstr "Écrã inteiro" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:333 ++msgid "Invoke URLs" ++msgstr "Invocar URLs" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:334 ++msgid "Mute" ++msgstr "Mudo" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:335 ++msgid "Stretch to fit" ++msgstr "Alargar ao tamanho" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:336 ++msgid "Windowless video" ++msgstr "Video sem janela" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:337 ++msgid "Balance" ++msgstr "Balanço" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:338 ++msgid "Base URL" ++msgstr "URL Base" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:339 ++msgid "Captioning id" ++msgstr "Id titulagem" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:340 ++msgid "Current marker" ++msgstr "Marcador actual" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:341 ++msgid "Current position" ++msgstr "Posição actual" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:342 ++msgid "Default frame" ++msgstr "Frame por omissão" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:343 ++msgid "Play count" ++msgstr "Total de visualizações" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:344 ++msgid "Rate" ++msgstr "Velocidade" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:345 ++msgid "UI Mode" ++msgstr "Modo UI" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:346 ++msgid "Flash options" ++msgstr "Opções de Flash" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:347 ++msgid "Quicktime options" ++msgstr "Opções Quicktime" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:348 ++msgid "Windows media player options" ++msgstr "Opções Windows Media Player" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:349 ++msgid "Real media player options" ++msgstr "Opções Real Media Player" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:350 ++msgid "Shockwave options" ++msgstr "Opções Shockwave" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:351 ++msgid "Auto goto URL" ++msgstr "Ir para URL automáticamente" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:353 ++msgid "Image status" ++msgstr "Estado da imagem" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:354 ++msgid "Maintain aspect" ++msgstr "Manter aspecto" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:355 ++msgid "No java" ++msgstr "Sem java" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:356 ++msgid "Prefetch" ++msgstr "Précarregar" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:357 ++msgid "Shuffle" ++msgstr "Shuffle" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:358 ++msgid "Console" ++msgstr "Consola" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:359 ++msgid "Num loops" ++msgstr "Nr. loops" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:360 ++msgid "Controls" ++msgstr "Controlos" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:361 ++msgid "Script callbacks" ++msgstr "Callbacks de script" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:362 ++msgid "Stretch style" ++msgstr "Estilo do alargamento" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:363 ++msgid "Stretch H-Align" ++msgstr "Alargar H-Align" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:364 ++msgid "Stretch V-Align" ++msgstr "Alargar V-Align" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:365 ++msgid "Sound" ++msgstr "Som" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:366 ++msgid "Progress" ++msgstr "Progresso" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:367 ++msgid "QT Src" ++msgstr "Fonte QT" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:368 ++msgid "Streamed rtsp resources should be added to the QT Src field under the advanced tab." ++msgstr "Recursos de rtsp em streaming devem ser adicionados ao campo Fonte QT, no separador Avançadas." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:374 ++msgid "Top left" ++msgstr "Em cima à esquerda" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:375 ++msgid "Top right" ++msgstr "Em cima à direita" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:376 ++msgid "Bottom left" ++msgstr "Em baixo à esquerda" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:377 ++msgid "Bottom right" ++msgstr "Em baixo à direita" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:378 ++msgid "Flash video options" ++msgstr "Opções de Flash Video" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:379 ++msgid "Scale mode" ++msgstr "Modo de escalonamento" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:380 ++msgid "Buffer" ++msgstr "Buffer" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:381 ++msgid "Start image" ++msgstr "Imagem inicial" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:383 ++msgid "Default volume" ++msgstr "Volume por omissão" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:384 ++msgid "Hidden GUI" ++msgstr "GUI Invisível" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:387 ++msgid "Show scale modes" ++msgstr "Mostrar modos de escalonamento" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:388 ++msgid "Smooth video" ++msgstr "Suavizar video" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:389 ++msgid "JS Callback" ++msgstr "Callback JS" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:393 ++msgid "Show/Hide Kitchen Sink" ++msgstr "Mostrar/Esconder Opções Avançadas" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:394 ++msgid "Insert More tag" ++msgstr "Inserir o tag Mais (more)" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:395 ++msgid "Insert Page break" ++msgstr "Inserir Quebra de Página" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:397 ++msgid "More..." ++msgstr "Mais..." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:398 ++msgid "Next page..." ++msgstr "Página seguinte..." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:8 ++msgid "Rich Editor Help" ++msgstr "Ajuda do Editor de Texto Formatado" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:162 ++msgid "Basics of Rich Editing" ++msgstr "Noções Básicas de Edição de Texto Formatado" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:162 ++msgid "Basics" ++msgstr "Noções Básicas" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:163 ++msgid "Advanced use of the Rich Editor" ++msgstr "Utilização avançada do Editor de Texto Formatado" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:164 ++msgid "Hotkeys" ++msgstr "Teclas de Acesso" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:165 ++msgid "About the software" ++msgstr "Acerca do software" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:171 ++msgid "Rich Editing Basics" ++msgstr "Noções Básicas de Edição de Texto Formatado" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:172 ++msgid "Rich editing, also called WYSIWYG for What You See Is What You Get, means your text is formatted as you type. The rich editor creates HTML code behind the scenes while you concentrate on writing. Font styles, links and images all appear approximately as they will on the internet." ++msgstr "A edição de texto formatado, também denominada WYSIWYG (What You See Is What You Get, Aquilo Que Vê é Aquilo Que Obtém), significa que o texto é formatado à medida que o utilizador o escreve. O editor cria o código HTML em segundo plano enquanto o utilizador se concentra na escrita. Estilos de tipos de letra, links e imagens aparecem aproximadamente como irão aparecer na Internet." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:173 ++msgid "WordPress includes a rich HTML editor that works well in all major web browsers used today. However editing HTML is not the same as typing text. Each web page has two major components: the structure, which is the actual HTML code and is produced by the editor as you type, and the display, that is applied to it by the currently selected WordPress theme and is defined in style.css. WordPress is producing valid XHTML 1.0 which means that inserting multiple line breaks (BR tags) after a paragraph would not produce white space on the web page. The BR tags will be removed as invalid by the internal HTML correcting functions." ++msgstr "O WordPress inclui um Editor Visual que funciona bem nos principais browsers actuais. No entanto, editar HTML não é o mesmo do que bater texto. Cada página web tem dois componentes principais: a estrutura, que corresponde ao código HTML e que é criada pelo editor à medida que vai escrevendo e a apresentação que é determinada pelo tema de WordPress que está activo neste momento e pelo respectivo ficheiro style.css. O WordPress cria XHTML 1.0 válido o que quer dizer que inserir múltiplas quebras de linha (tags BR) a seguir a um parágrafo não vai produzir espaço em branco adicional na página. As tags BR são removidas, porque inválidas, pelas funções internas de correcção de HTML." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:174 ++msgid "While using the editor, most basic keyboard shortcuts work like in any other text editor. For example: Shift+Enter inserts line break, Ctrl+C = copy, Ctrl+X = cut, Ctrl+Z = undo, Ctrl+Y = redo, Ctrl+A = select all, etc. (on Mac use the Command key instead of Ctrl). See the Hotkeys tab for all available keyboard shortcuts." ++msgstr "Neste editor a maior parte das teclas de atalho funcionam como em qualquer outro editor. Por exemplo: Shift+Enter insere uma quebra de linha, Ctrl+C = copiar, Ctrl+X = cortar, Ctrl+Z = desfazer, Ctrl+Y = refazer, Ctrl+A = seleccionar tudo, etc. (no Mac use a tecla Command em vez de Ctrl). Veja no separador Teclas de Atalho todos os atalhos disponíveis." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:175 ++msgid "If you do not like the way the rich editor works, you may turn it off from Your Profile submenu, under Users in the admin menu." ++msgstr "Se não gosta do modo de funcionamento do editor visual, pode desligá-lo no seu Perfil, na opção Utlizadores do seu menu de administração." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:179 ++msgid "Advanced Rich Editing" ++msgstr "Edição Avançada de Texto Formatado" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:180 ++msgid "Images and Attachments" ++msgstr "Imagens e Anexos" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:181 ++msgid "There is a button in the editor toolbar for inserting images that are already hosted somewhere on the internet. If you have a URL for an image, click this button and enter the URL in the box which appears." ++msgstr "Existe um botão na barra de ferramentas do editor para inserir imagens que já estão alojadas algures na Internet. Se tiver o URL de uma imagem, clique neste botão para introduzir esse URL na caixa apresentada." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:182 ++msgid "If you need to upload an image or another media file from your computer, you can use the Media Library buttons above the editor. The media library will attempt to create a thumbnail-sized copy from each uploaded image. To insert your image into the post, first click on the thumbnail to reveal a menu of options. When you have selected the options you like, click \"Send to Editor\" and your image or file will appear in the post you are editing. If you are inserting a movie, there are additional options in the \"Media\" dialog that can be opened from the second toolbar row." ++msgstr "Se necessitar de enviar um ficheiro de imagem ou som a partir do computador, poderá utilizar a Biblioteca de Mídia, acima do editor. A ferramenta irá tentará criar uma imagem miniatura para cada imagem enviada. Para inserir a imagem enviada no artigo, clique primeiro na miniatura para que seja apresentado um menu de opções. Quando tiver seleccionado as opções pretendidas, clique em \"Enviar Para Editor\" e a imagem ou ficheiro irá aparecer no artigo em edição. Se está a inserir um vídeo, existem opções adicionais na caixa de diálogo \"Mídia\" que pode ser aberta a partir da segunda linha da barra de ferramentas." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:183 ++msgid "HTML in the Rich Editor" ++msgstr "HTML no Editor de Texto Formatado" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:184 ++msgid "Any HTML entered directly into the rich editor will show up as text when the post is viewed. What you see is what you get. When you want to include HTML elements that cannot be generated with the toolbar buttons, you must enter it by hand in the HTML editor. Examples are tables and <code>. To do this, click the HTML tab and edit the code, then switch back to Visual mode. If the code is valid and understood by the editor, you should see it rendered immediately." ++msgstr "Todo o código HTML introduzido directamente no editor de texto formatado será apresentado como texto quando o artigo for visualizado. Aquilo que vê, é aquilo que obtém. Quando pretender incluir elementos HTML que não possam ser gerados com os botões da barra de ferramentas, deverá introduzi-los manualmente no editor HTML. Exemplos são tabelas e . Para o fazer, clique no botão HTML e edite o código, selecionando de seguida o modo Visual. Se o código for válido e compreendido pelo editor, será automaticamente apresentado." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:185 ++msgid "Pasting in the Rich Editor" ++msgstr "A colar no Editor de Texto Formatado" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:186 ++msgid "When pasting content from another web page the results can be inconsistent and depend on your browser and on the web page you are pasting from. The editor tries to correct any invalid HTML code that was pasted, but for best results try using the HTML tab or one of the paste buttons that are on the second row. Alternatively try pasting paragraph by paragraph. In most browsers to select one paragraph at a time, triple-click on it." ++msgstr "Quando cola conteúdo copiado de outra página web, os resultados podem ser inconsistentes e muito dependentes do seu browser e da página de origem. O editor tenta corrigir HTML inválido que tenha sido colado, mas para garantir os melhores resultados, tente usar o editor de HTML ou um dos dois botões de colar que se encontram na segunda fila da barra de ferramentas. Em alternativa tente colar um parágrafo de cada vez. Na maioria dos browsers, para seleccionar um parágrafo, basta clicá-lo 3 vezes (triple-click)." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:187 ++msgid "Pasting content from another application, like Word or Excel, is best done with the Paste from Word button on the second row, or in HTML mode." ++msgstr "Para colar conteúdo de outras aplicações, tais como Word ou Excel, o melhor é utillizar o botão Colar do Word na segunda fila da barra de ferramentas ou então em modo HTML." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:191 ++msgid "Writing at Full Speed" ++msgstr "Escrevendo à Velocidade Máxima" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:192 ++msgid "Rather than reaching for your mouse to click on the toolbar, use these access keys. Windows and Linux use Ctrl + letter. Macintosh uses Command + letter." ++msgstr "Em vez de usar o rato para clicar na barra de ferramentas, use as teclas de acesso rápido. Em Windows e Linux use Ctrl+letra. Em Macintosh use Command+letra." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:194 ++#: wp-includes/js/tinymce/wp-mce-help.php:210 ++msgid "Letter" ++msgstr "Letra" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:196 ++msgid "Select all" ++msgstr "Seleccionar Tudo" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:201 ++msgid "Header 1" ++msgstr "Cabeçalho 1" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:202 ++msgid "Header 2" ++msgstr "Cabeçalho 2" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:202 ++msgid "Header 3" ++msgstr "Cabeçalho 3" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:203 ++msgid "Header 4" ++msgstr "Cabeçalho 4" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:203 ++msgid "Header 5" ++msgstr "Cabeçalho 5" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:204 ++msgid "Header 6" ++msgstr "Cabeçalho 6" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:208 ++msgid "The following shortcuts use different access keys: Alt + Shift + letter." ++msgstr "Os seguintes atalhos usam teclas de acesso diferentes: Alt + Shift + letra." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:215 ++msgid "Check Spelling" ++msgstr "Verificação Ortográfica" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:215 ++msgid "Align Left" ++msgstr "Alinhar à Esquerda" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:216 ++msgid "Justify Text" ++msgstr "Justificar Texto" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:216 ++msgid "Align Center" ++msgstr "Alinhar ao Centro" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:217 ++msgid "Align Right" ++msgstr "Alinhar à Direita" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:218 ++msgid "Insert link" ++msgstr "Inserir link" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:219 ++msgid "Remove link" ++msgstr "Remover link" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:220 ++msgid "Quote" ++msgstr "Citação" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:220 ++msgid "Insert Image" ++msgstr "Inserir Imagem" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:221 ++msgid "Full Screen" ++msgstr "Écran Completo" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:221 ++msgid "Insert More Tag" ++msgstr "Inserir o tag Mais" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:222 ++msgid "Insert Page Break tag" ++msgstr "Inserir tag de Quebra de Página" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:223 ++msgid "Switch to HTML mode" ++msgstr "Mudar para o modo HTML" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:230 ++msgid "Version:" ++msgstr "Versão:" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:231 ++#, php-format ++msgid "TinyMCE is a platform independent web based Javascript HTML WYSIWYG editor control released as Open Source under %sLGPL\tby Moxiecode Systems AB. It has the ability to convert HTML TEXTAREA fields or other HTML elements to editor instances." ++msgstr "O TinyMCE é um editor HTML WYSIWYG em Javascript, independente de plataforma, publicado como Open Source sob uma licença %sLGPL\tpela Moxiecode Systems AB. Tem a capacidade de converter campos TEXTAREA ou outros elementos HTML em instâncias do editor." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:231 ++msgid "GNU Library General Public Licence" ++msgstr "Licença Pública Geral de Biblioteca GNU" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:232 ++msgid "Copyright © 2003-2007, Moxiecode Systems AB, All rights reserved." ++msgstr "Copyright © 2003-2007, Moxiecode Systems AB, Todos os direitos reservados." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:233 ++msgid "For more information about this software visit the TinyMCE website." ++msgstr "Para mais informações sobre este software, visite o Website do TinyMCE." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:236 ++msgid "Got Moxie?" ++msgstr "Tem Moxie?" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:237 ++msgid "Hosted By Sourceforge" ++msgstr "Alojado por Sourceforge" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:238 ++msgid "Also on freshmeat" ++msgstr "Também no freshmeat" ++ ++#: wp-includes/link-template.php:317 ++msgid "Comments Feed" ++msgstr "Feed de Comentários" ++ ++#: wp-includes/link-template.php:593 ++msgid "Previous Post" ++msgstr "Artigo Anterior" ++ ++#: wp-includes/link-template.php:593 ++msgid "Next Post" ++msgstr "Artigo Seguinte" ++ ++#: wp-includes/locale.php:120 ++msgid "S_Sunday_initial" ++msgstr "D" ++ ++#: wp-includes/locale.php:121 ++msgid "M_Monday_initial" ++msgstr "S" ++ ++#: wp-includes/locale.php:122 ++msgid "T_Tuesday_initial" ++msgstr "T" ++ ++#: wp-includes/locale.php:123 ++msgid "W_Wednesday_initial" ++msgstr "Q" ++ ++#: wp-includes/locale.php:124 ++msgid "T_Thursday_initial" ++msgstr "Q" ++ ++#: wp-includes/locale.php:125 ++msgid "F_Friday_initial" ++msgstr "S" ++ ++#: wp-includes/locale.php:126 ++msgid "S_Saturday_initial" ++msgstr "S" ++ ++#: wp-includes/locale.php:175 ++msgid "am" ++msgstr "am" ++ ++#: wp-includes/locale.php:176 ++msgid "pm" ++msgstr "pm" ++ ++#: wp-includes/locale.php:177 ++msgid "AM" ++msgstr "AM" ++ ++#: wp-includes/locale.php:178 ++msgid "PM" ++msgstr "PM" ++ ++#: wp-includes/locale.php:183 ++msgid "number_format_decimals|$decimals argument for http://php.net/number_format, default is 0" ++msgstr "0|$decimals para http://php.net/number_format, por defeito 0" ++ ++#: wp-includes/locale.php:186 ++msgid "number_format_decimal_point|$dec_point argument for http://php.net/number_format, default is ." ++msgstr ",|$dec_point para http://php.net/number_format, por defeito ." ++ ++#: wp-includes/locale.php:189 ++msgid "number_format_thousands_sep|$thousands_sep argument for http://php.net/number_format, default is ," ++msgstr ".|$thousands_sep para http://php.net/number_format, por defeito ," ++ ++#: wp-includes/media.php:217 ++#: wp-includes/media.php:221 ++#: wp-includes/media.php:227 ++msgid "Resize path invalid" ++msgstr "Caminho de redimensionamento inválido" ++ ++#: wp-includes/pluggable.php:416 ++#: wp-includes/user.php:39 ++msgid "ERROR: The username field is empty." ++msgstr "ERROR: O campo do nome de utilizador está vazio." ++ ++#: wp-includes/pluggable.php:419 ++#: wp-includes/user.php:41 ++msgid "ERROR: The password field is empty." ++msgstr "ERRO: O campo da senha está vazio." ++ ++#: wp-includes/pluggable.php:425 ++msgid "ERROR: Invalid username." ++msgstr "ERRO: Nome de utilizador inválido." ++ ++#: wp-includes/pluggable.php:436 ++msgid "ERROR: Incorrect password." ++msgstr "ERRO: Senha incorrecta." ++ ++#: wp-includes/pluggable.php:784 ++#, php-format ++msgid "New comment on your post #%1$s \"%2$s\"" ++msgstr "Novo comentário ao seu artigo #%1$s \"%2$s\"" ++ ++#: wp-includes/pluggable.php:785 ++#: wp-includes/pluggable.php:880 ++#, php-format ++msgid "Author : %1$s (IP: %2$s , %3$s)" ++msgstr "Autor: %1$s (IP: %2$s , %3$s)" ++ ++#: wp-includes/pluggable.php:786 ++#: wp-includes/pluggable.php:881 ++#, php-format ++msgid "E-mail : %s" ++msgstr "Correio Electrónico: %s" ++ ++#: wp-includes/pluggable.php:787 ++#: wp-includes/pluggable.php:795 ++#: wp-includes/pluggable.php:802 ++#: wp-includes/pluggable.php:867 ++#: wp-includes/pluggable.php:874 ++#: wp-includes/pluggable.php:882 ++#, php-format ++msgid "URL : %s" ++msgstr "URL : %s" ++ ++#: wp-includes/pluggable.php:788 ++#: wp-includes/pluggable.php:883 ++#, php-format ++msgid "Whois : http://ws.arin.net/cgi-bin/whois.pl?queryinput=%s" ++msgstr "Whois : http://ws.arin.net/cgi-bin/whois.pl?queryinput=%s" ++ ++#: wp-includes/pluggable.php:789 ++#: wp-includes/pluggable.php:884 ++msgid "Comment: " ++msgstr "Comentário:" ++ ++#: wp-includes/pluggable.php:790 ++msgid "You can see all comments on this post here: " ++msgstr "Pode visualizar todos os comentários a este artigo aqui:" ++ ++#: wp-includes/pluggable.php:791 ++#, php-format ++msgid "[%1$s] Comment: \"%2$s\"" ++msgstr "[%1$s] Comentário: \"%2$s\"" ++ ++#: wp-includes/pluggable.php:793 ++#, php-format ++msgid "New trackback on your post #%1$s \"%2$s\"" ++msgstr "Novo trackback para o seu artigo #%1$s \"%2$s\"" ++ ++#: wp-includes/pluggable.php:794 ++#: wp-includes/pluggable.php:801 ++#, php-format ++msgid "Website: %1$s (IP: %2$s , %3$s)" ++msgstr "Website: %1$s (IP: %2$s , %3$s)" ++ ++#: wp-includes/pluggable.php:796 ++#: wp-includes/pluggable.php:803 ++msgid "Excerpt: " ++msgstr "Excerto:" ++ ++#: wp-includes/pluggable.php:797 ++msgid "You can see all trackbacks on this post here: " ++msgstr "Pode visualizar todos os trackbacks para este artigo aqui:" ++ ++#: wp-includes/pluggable.php:798 ++#, php-format ++msgid "[%1$s] Trackback: \"%2$s\"" ++msgstr "[%1$s] Trackback: \"%2$s\"" ++ ++#: wp-includes/pluggable.php:800 ++#, php-format ++msgid "New pingback on your post #%1$s \"%2$s\"" ++msgstr "Novo pingback para o seu artigo #%1$s \"%2$s\"" ++ ++#: wp-includes/pluggable.php:804 ++msgid "You can see all pingbacks on this post here: " ++msgstr "Pode visualizar todos os pingbacks para o seu artigo aqui:" ++ ++#: wp-includes/pluggable.php:805 ++#, php-format ++msgid "[%1$s] Pingback: \"%2$s\"" ++msgstr "[%1$s] Pingback: \"%2$s\"" ++ ++#: wp-includes/pluggable.php:808 ++#: wp-includes/pluggable.php:889 ++#, php-format ++msgid "Delete it: %s" ++msgstr "Eliminar: %s" ++ ++#: wp-includes/pluggable.php:809 ++#: wp-includes/pluggable.php:890 ++#, php-format ++msgid "Spam it: %s" ++msgstr "Assinalar como SPAM: %s" ++ ++#: wp-includes/pluggable.php:864 ++#, php-format ++msgid "A new trackback on the post #%1$s \"%2$s\" is waiting for your approval" ++msgstr "Um trackback novo no artigo #%1$s \"%2$s\" está à espera da sua aprovação" ++ ++#: wp-includes/pluggable.php:866 ++#: wp-includes/pluggable.php:873 ++#, php-format ++msgid "Website : %1$s (IP: %2$s , %3$s)" ++msgstr "Website : %1$s (IP: %2$s , %3$s)" ++ ++#: wp-includes/pluggable.php:868 ++msgid "Trackback excerpt: " ++msgstr "Excerto do trackback:" ++ ++#: wp-includes/pluggable.php:871 ++#, php-format ++msgid "A new pingback on the post #%1$s \"%2$s\" is waiting for your approval" ++msgstr "Um novo pingback ao artigo #%1$s \"%2$s\" está à espera da sua aprovação" ++ ++#: wp-includes/pluggable.php:875 ++msgid "Pingback excerpt: " ++msgstr "Excerto do pingback:" ++ ++#: wp-includes/pluggable.php:878 ++#, php-format ++msgid "A new comment on the post #%1$s \"%2$s\" is waiting for your approval" ++msgstr "Um novo comentário ao seu artigo #%1$s \"%2$s\" aguarda aprovação" ++ ++#: wp-includes/pluggable.php:888 ++#, php-format ++msgid "Approve it: %s" ++msgstr "Aprovar: %s" ++ ++#: wp-includes/pluggable.php:893 ++#, php-format ++msgid "Currently %s are waiting for approval. Please visit the moderation panel:" ++msgstr "Há neste momento %s à espera de aprovação. Por favor visite o painel de moderação:" ++ ++#: wp-includes/pluggable.php:896 ++#, php-format ++msgid "[%1$s] Please moderate: \"%2$s\"" ++msgstr "[%1$s] Modere: \"%2$s\"" ++ ++#: wp-includes/pluggable.php:923 ++#, php-format ++msgid "New user registration on your blog %s:" ++msgstr "Registo de novo utilizador no seu blog %s:" ++ ++#: wp-includes/pluggable.php:924 ++#: wp-includes/pluggable.php:932 ++#: wp-login.php:103 ++#: wp-login.php:130 ++#, php-format ++msgid "Username: %s" ++msgstr "Nome de Utilizador: %s" ++ ++#: wp-includes/pluggable.php:925 ++#, php-format ++msgid "E-mail: %s" ++msgstr "Endereço de Correio Electrónico: %s" ++ ++#: wp-includes/pluggable.php:927 ++#, php-format ++msgid "[%s] New User Registration" ++msgstr "[%s] Registo de Novo Utilizador" ++ ++#: wp-includes/pluggable.php:933 ++#: wp-login.php:131 ++#, php-format ++msgid "Password: %s" ++msgstr "Senha: %s" ++ ++#: wp-includes/pluggable.php:936 ++#, php-format ++msgid "[%s] Your username and password" ++msgstr "[%s] O seu nome de utilizador e a sua senha" ++ ++#: wp-includes/post-template.php:60 ++#, php-format ++msgid "Protected: %s" ++msgstr "Protegido: %s" ++ ++#: wp-includes/post-template.php:62 ++#, php-format ++msgid "Private: %s" ++msgstr "Privado: %s" ++ ++#: wp-includes/post-template.php:147 ++msgid "There is no excerpt because this is a protected post." ++msgstr "Não existe excerto porque se trata de um artigo protegido." ++ ++#: wp-includes/post-template.php:163 ++msgid "Next page" ++msgstr "Página seguinte" ++ ++#: wp-includes/post-template.php:164 ++msgid "Previous page" ++msgstr "Página anterior" ++ ++#: wp-includes/post-template.php:379 ++#: wp-includes/post-template.php:400 ++msgid "Missing Attachment" ++msgstr "Anexo em Falta" ++ ++#: wp-includes/post-template.php:526 ++msgid "This post is password protected. To view it please enter your password below:" ++msgstr "Este artigo está protegido por senha. Para o consultar, introduza a sua senha abaixo:" ++ ++#: wp-includes/rss.php:856 ++msgid "An error has occurred, which probably means the feed is down. Try again later." ++msgstr "Ocorreu um erro. A causa provável é o feed estar offline. Tente mais tarde. " ++ ++#: wp-includes/script-loader.php:19 ++msgid "(Quick Links)" ++msgstr "(Links Rápidos)" ++ ++#: wp-includes/script-loader.php:20 ++msgid "Enter a word to look up:" ++msgstr "Introduza uma palavra a procurar:" ++ ++#: wp-includes/script-loader.php:21 ++msgid "Dictionary lookup" ++msgstr "Procura no dicionário" ++ ++#: wp-includes/script-loader.php:22 ++msgid "lookup" ++msgstr "procurar" ++ ++#: wp-includes/script-loader.php:23 ++msgid "Close all open tags" ++msgstr "Fechar todas as tags abertas" ++ ++#: wp-includes/script-loader.php:24 ++msgid "close tags" ++msgstr "fechar tags" ++ ++#: wp-includes/script-loader.php:25 ++msgid "Enter the URL" ++msgstr "Introduza o URL" ++ ++#: wp-includes/script-loader.php:26 ++msgid "Enter the URL of the image" ++msgstr "Introduza o URL da imagem" ++ ++#: wp-includes/script-loader.php:27 ++msgid "Enter a description of the image" ++msgstr "Introduza uma descrição para a imagem" ++ ++#: wp-includes/script-loader.php:46 ++#: wp-includes/script-loader.php:55 ++msgid "You do not have permission to do that." ++msgstr "Não tem permissões para fazer isso." ++ ++#: wp-includes/script-loader.php:47 ++msgid "An unidentified error has occurred." ++msgstr "Ocorreu um erro não identificado." ++ ++#: wp-includes/script-loader.php:56 ++msgid "Something strange happened. Try refreshing the page." ++msgstr "Aconteceu algo estranho. Experimente actualizar a página." ++ ++#: wp-includes/script-loader.php:57 ++msgid "Slow down, I'm still sending your data!" ++msgstr "Mais devagar, os dados ainda estão a ser enviados!" ++ ++#: wp-includes/script-loader.php:93 ++msgid "You have attempted to queue too many files." ++msgstr "Tentou transferir demasiados ficheiros" ++ ++#: wp-includes/script-loader.php:94 ++#, php-format ++msgid "This file is too big. Your php.ini upload_max_filesize is %s." ++msgstr "O ficheiro é demasiado grande. O máximo permitido pela directiva upload_max_filesize em php.ini é de %s." ++ ++#: wp-includes/script-loader.php:95 ++msgid "This file is empty. Please try another." ++msgstr "O ficheiro está vazio. Por favor tente com outro." ++ ++#: wp-includes/script-loader.php:96 ++msgid "This file type is not allowed. Please try another." ++msgstr "Este tipo de ficheiro não é permitido. Por favor tente com outro." ++ ++#: wp-includes/script-loader.php:97 ++msgid "An error occurred in the upload. Please try again later." ++msgstr "Erro ao fazer o upload. Por favor tente mais tarde." ++ ++#: wp-includes/script-loader.php:98 ++msgid "There was a configuration error. Please contact the server administrator." ++msgstr "Erro de configuração. Por favor contacte o administrador do servidor." ++ ++#: wp-includes/script-loader.php:99 ++msgid "You may only upload 1 file." ++msgstr "Só pode fazer upload de 1 ficheiro." ++ ++#: wp-includes/script-loader.php:100 ++msgid "HTTP error." ++msgstr "Erro HTTP." ++ ++#: wp-includes/script-loader.php:101 ++msgid "Upload failed." ++msgstr "O upload falhou." ++ ++#: wp-includes/script-loader.php:102 ++msgid "IO error." ++msgstr "Erro IO." ++ ++#: wp-includes/script-loader.php:103 ++msgid "Security error." ++msgstr "Erro de segurança." ++ ++#: wp-includes/script-loader.php:104 ++msgid "File cancelled." ++msgstr "Ficheiro cancelado." ++ ++#: wp-includes/script-loader.php:105 ++msgid "Upload stopped." ++msgstr "Upload interrompido." ++ ++#: wp-includes/script-loader.php:106 ++msgid "Dismiss" ++msgstr "Ignorar" ++ ++#: wp-includes/script-loader.php:107 ++msgid "Crunching…" ++msgstr "A processar…" ++ ++#: wp-includes/script-loader.php:108 ++msgid "Deleted" ++msgstr "Eliminado" ++ ++#: wp-includes/script-loader.php:117 ++msgid "Separate multiple categories with commas." ++msgstr "Separe várias categorias por vírgulas." ++ ++#: wp-includes/script-loader.php:125 ++msgid "Bad" ++msgstr "Má" ++ ++#: wp-includes/script-loader.php:126 ++msgid "Good" ++msgstr "Boa" ++ ++#: wp-includes/script-loader.php:127 ++msgid "Strong" ++msgstr "Forte" ++ ++#: wp-includes/script-loader.php:131 ++msgid "%i% pending" ++msgstr "%i% pendentes" ++ ++#: wp-includes/script-loader.php:149 ++msgid "Tags used on this post:" ++msgstr "Etiquetas usadas neste artigo:" ++ ++#: wp-includes/script-loader.php:151 ++msgid "Add new tag" ++msgstr "Adicionar nova etiqueta" ++ ++#: wp-includes/script-loader.php:152 ++msgid "Separate tags with commas" ++msgstr "Separe as etiquetas com vírgulas" ++ ++#: wp-includes/script-loader.php:169 ++msgid "Browse your files" ++msgstr "Procurar ficheiros" ++ ++#: wp-includes/script-loader.php:170 ++msgid "« Back" ++msgstr "« Voltar" ++ ++#: wp-includes/script-loader.php:171 ++msgid "Direct link to file" ++msgstr "Link directo para ficheiro" ++ ++#: wp-includes/script-loader.php:175 ++msgid "Icon" ++msgstr "Ícone" ++ ++#: wp-includes/script-loader.php:177 ++msgid "Show:" ++msgstr "Mostrar:" ++ ++#: wp-includes/script-loader.php:178 ++msgid "Link to:" ++msgstr "Link para:" ++ ++#: wp-includes/script-loader.php:179 ++msgid "File" ++msgstr "Ficheiro" ++ ++#: wp-includes/script-loader.php:182 ++msgid "Send to editor »" ++msgstr "Enviar para editor »" ++ ++#: wp-includes/script-loader.php:186 ++msgid "Delete File" ++msgstr "Eliminar Ficheiro" ++ ++#: wp-includes/script-loader.php:187 ++msgid "Save »" ++msgstr "Guardar »" ++ ++#: wp-includes/script-loader.php:188 ++msgid "" ++"Are you sure you want to delete the file '%title%'?\n" ++"Click ok to delete or cancel to go back." ++msgstr "" ++"Tem a certeza de que pretende eliminar o ficheiro '%title%'?\n" ++"Clique em OK para eliminar ou em Cancelar para regressar." ++ ++#: wp-includes/script-loader.php:501 ++msgid "Saving Draft…" ++msgstr "Guardando Rascunho…" ++ ++#: wp-includes/taxonomy.php:224 ++#: wp-includes/taxonomy.php:290 ++#: wp-includes/taxonomy.php:404 ++#: wp-includes/taxonomy.php:543 ++#: wp-includes/taxonomy.php:1045 ++#: wp-includes/taxonomy.php:1262 ++msgid "Invalid Taxonomy" ++msgstr "Taxonomia Inválida" ++ ++#: wp-includes/taxonomy.php:1165 ++#: wp-includes/taxonomy.php:1416 ++msgid "Invalid taxonomy" ++msgstr "Taxonomia inválida" ++ ++#: wp-includes/taxonomy.php:1168 ++msgid "Invalid term ID" ++msgstr "ID de termo inválido" ++ ++#: wp-includes/taxonomy.php:1199 ++#: wp-includes/taxonomy.php:1206 ++msgid "Could not insert term into the database" ++msgstr "Não foi possível inserir o termo na base de dados" ++ ++#: wp-includes/taxonomy.php:1464 ++#, php-format ++msgid "The slug \"%s\" is already in use by another term" ++msgstr "O nome para URL \"%s\" já está a ser usado por outro termo" ++ ++#: wp-includes/theme.php:174 ++msgid "Stylesheet is missing." ++msgstr "Folha de estilos em falta." ++ ++#: wp-includes/theme.php:188 ++msgid "File not readable." ++msgstr "Não é possível ler o ficheiro." ++ ++#: wp-includes/theme.php:229 ++msgid "Template is missing." ++msgstr "Template em falta." ++ ++#: wp-includes/user.php:29 ++msgid "Please log in again." ++msgstr "Por favor reinicie a sessão." ++ ++#: wp-includes/widgets.php:24 ++#: wp-includes/widgets.php:52 ++#, php-format ++msgid "Sidebar %d" ++msgstr "Barra Lateral %d" ++ ++#: wp-includes/widgets.php:412 ++msgid "Sort by:" ++msgstr "Ordenar Por:" ++ ++#: wp-includes/widgets.php:414 ++msgid "Page title" ++msgstr "Título da página" ++ ++#: wp-includes/widgets.php:415 ++msgid "Page order" ++msgstr "Ordem da página" ++ ++#: wp-includes/widgets.php:416 ++msgid "Page ID" ++msgstr "ID da Página" ++ ++#: wp-includes/widgets.php:421 ++msgid "Exclude:" ++msgstr "Excluir:" ++ ++#: wp-includes/widgets.php:423 ++msgid "Page IDs, separated by commas." ++msgstr "IDs de página, separados por vírgulas." ++ ++#: wp-includes/widgets.php:464 ++msgid "Select Month" ++msgstr "Seleccionar Mês" ++ ++#: wp-includes/widgets.php:494 ++#: wp-includes/widgets.php:792 ++msgid "Show post counts" ++msgstr "Mostrar número de artigos" ++ ++#: wp-includes/widgets.php:496 ++msgid "Display as a drop down" ++msgstr "Apresentar como dropdown" ++ ++#: wp-includes/widgets.php:505 ++#: wp-includes/widgets.php:1375 ++#: wp-includes/widgets.php:1376 ++msgid "Meta" ++msgstr "Meta" ++ ++#: wp-includes/widgets.php:512 ++msgid "Syndicate this site using RSS 2.0" ++msgstr "Sindicar este site utilizando RSS 2.0" ++ ++#: wp-includes/widgets.php:512 ++msgid "Entries RSS" ++msgstr "Entradas RSS" ++ ++#: wp-includes/widgets.php:649 ++msgid "Arbitrary text or HTML" ++msgstr "Texto arbitrário ou HTML" ++ ++#: wp-includes/widgets.php:651 ++msgid "Text" ++msgstr "Texto" ++ ++#: wp-includes/widgets.php:694 ++msgid "Select Category" ++msgstr "Seleccionar Categoria" ++ ++#: wp-includes/widgets.php:787 ++msgid "Show as dropdown" ++msgstr "Mostrar como dropdown" ++ ++#: wp-includes/widgets.php:797 ++msgid "Show hierarchy" ++msgstr "Mostrar Hierarquia" ++ ++#: wp-includes/widgets.php:812 ++msgid "A list or dropdown of categories" ++msgstr "Uma lista ou dropdown de categorias" ++ ++#: wp-includes/widgets.php:867 ++#: wp-includes/widgets.php:1382 ++#: wp-includes/widgets.php:1383 ++msgid "Recent Posts" ++msgstr "Artigos Recentes" ++ ++#: wp-includes/widgets.php:918 ++msgid "Number of posts to show:" ++msgstr "Número de artigos a apresentar:" ++ ++#: wp-includes/widgets.php:920 ++#: wp-includes/widgets.php:979 ++msgid "(at most 15)" ++msgstr "(15 no máximo)" ++ ++#: wp-includes/widgets.php:948 ++#, php-format ++msgid "%1$s on %2$s" ++msgstr "%1$s em %2$s" ++ ++#: wp-includes/widgets.php:977 ++msgid "Number of comments to show:" ++msgstr "Número de comentários a apresentar:" ++ ++#: wp-includes/widgets.php:992 ++msgid "The most recent comments" ++msgstr "Os comentários mais recentes" ++ ++#: wp-includes/widgets.php:1035 ++msgid "Unknown Feed" ++msgstr "Feed desconhecido" ++ ++#: wp-includes/widgets.php:1041 ++msgid "Syndicate this content" ++msgstr "Sindicar este conteúdo" ++ ++#: wp-includes/widgets.php:1083 ++msgid "Untitled" ++msgstr "Sem Título" ++ ++#: wp-includes/widgets.php:1133 ++msgid "An error has occurred; the feed is probably down. Try again later." ++msgstr "Ocorreu um erro. é provável que o feed esteja indisponível. Tente mais tarde." ++ ++#: wp-includes/widgets.php:1215 ++msgid "Enter the RSS feed URL here:" ++msgstr "Introduza o URL do feed RSS aqui:" ++ ++#: wp-includes/widgets.php:1221 ++msgid "Give the feed a title (optional):" ++msgstr "Atribua um título ao feed (opcional):" ++ ++#: wp-includes/widgets.php:1227 ++msgid "How many items would you like to display?" ++msgstr "Quantos itens pretende apresentar?" ++ ++#: wp-includes/widgets.php:1240 ++msgid "Display item content?" ++msgstr "Mostrar conteúdo do item?" ++ ++#: wp-includes/widgets.php:1247 ++msgid "Display item author if available?" ++msgstr "Mostrar autor do item, se disponível?" ++ ++#: wp-includes/widgets.php:1254 ++msgid "Display item date?" ++msgstr "Mostrar data do item?" ++ ++#: wp-includes/widgets.php:1287 ++msgid "Error: could not find an RSS or ATOM feed at that URL." ++msgstr "Erro: não foi possível encontrar feeds RSS ou ATOM no URL indicado." ++ ++#: wp-includes/widgets.php:1288 ++#, php-format ++msgid "Error in RSS %1$d" ++msgstr "Erro no RSS %1$d" ++ ++#: wp-includes/widgets.php:1302 ++msgid "Entries from any RSS or Atom feed" ++msgstr "Entradas de qualquer feed RSS ou Atom" ++ ++#: wp-includes/widgets.php:1359 ++msgid "Your blog's WordPress Pages" ++msgstr "As páginas do seu blog WordPress" ++ ++#: wp-includes/widgets.php:1363 ++msgid "A calendar of your blog's posts" ++msgstr "Um calendário dos artigos do seu blog" ++ ++#: wp-includes/widgets.php:1367 ++msgid "A monthly archive of your blog's posts" ++msgstr "Um arquivo mensal dos artigos do seu blog" ++ ++#: wp-includes/widgets.php:1371 ++msgid "Your blogroll" ++msgstr "A sua lista de links" ++ ++#: wp-includes/widgets.php:1374 ++msgid "Log in/out, admin, feed and WordPress links" ++msgstr "Terminar/iniciar sessão, feed e links WordPress" ++ ++#: wp-includes/widgets.php:1378 ++msgid "A search form for your blog" ++msgstr "Um formulário de pesquisa para o seu blog" ++ ++#: wp-includes/widgets.php:1381 ++msgid "The most recent posts on your blog" ++msgstr "Os artigos mais recentes do seu blog" ++ ++#: wp-includes/widgets.php:1385 ++msgid "Your most used tags in cloud format" ++msgstr "As etiquetas mais usadas em formato de nuvem" ++ ++#: wp-includes/widgets.php:1386 ++#: wp-includes/widgets.php:1387 ++msgid "Tag Cloud" ++msgstr "Etiquetas" ++ ++#: wp-includes/wp-db.php:532 ++#, php-format ++msgid "ERROR: WordPress %s requires MySQL 4.0.0 or higher" ++msgstr "ERRO: o WordPress %s requer MySQL 4.0.0 ou superior" ++ ++#: wp-login.php:30 ++msgid "Powered by WordPress" ++msgstr "Criado com WordPress" ++ ++#: wp-login.php:65 ++msgid "ERROR: Enter a username or e-mail address." ++msgstr "ERRO: Indique um nome de utilizador ou endereço de e-mail." ++ ++#: wp-login.php:70 ++msgid "ERROR: There is no user registered with that email address." ++msgstr "ERRO: nenhum utilizador registado com esse endereço de e-mail." ++ ++#: wp-login.php:82 ++msgid "ERROR: Invalid username or e-mail." ++msgstr "ERRO: Nome de utilizador ou e-mail inválidos." ++ ++#: wp-login.php:101 ++msgid "Someone has asked to reset the password for the following site and username." ++msgstr "Foi feito um pedido de reposição de senha para o site e nome de utilizador indicados." ++ ++#: wp-login.php:104 ++msgid "To reset your password visit the following address, otherwise just ignore this email and nothing will happen." ++msgstr "Para repor a senha, visite o endereço abaixo indicado. Se não pretender repor a senha, pode simplesmente ignorar esta mensagem." ++ ++#: wp-login.php:107 ++#, php-format ++msgid "[%s] Password Reset" ++msgstr "[%s] Reposição de Senha" ++ ++#: wp-login.php:108 ++#: wp-login.php:135 ++msgid "The e-mail could not be sent." ++msgstr "Não foi possível enviar a mensagem." ++ ++#: wp-login.php:108 ++#: wp-login.php:135 ++msgid "Possible reason: your host may have disabled the mail() function..." ++msgstr "Motivo possível: o fornecedor de alojamento poderá ter desactivado a função mail()..." ++ ++#: wp-login.php:119 ++#: wp-login.php:123 ++msgid "Invalid key" ++msgstr "Chave inválida" ++ ++#: wp-login.php:134 ++#, php-format ++msgid "[%s] Your new password" ++msgstr "[%s] A sua nova senha" ++ ++#: wp-login.php:140 ++#, php-format ++msgid "Password Lost and Changed for user: %s" ++msgstr "Senha Perdida e Alterada para o utilizador: %s" ++ ++#: wp-login.php:141 ++#, php-format ++msgid "[%s] Password Lost/Changed" ++msgstr "[%s] Senha Perdida/Alterada" ++ ++#: wp-login.php:157 ++msgid "ERROR: This username is invalid. Please enter a valid username." ++msgstr "ERRO: este nome de utilizador é inválido. Introduza um nome de utilizador válido." ++ ++#: wp-login.php:160 ++msgid "ERROR: This username is already registered, please choose another one." ++msgstr "ERRO: este nome de utilizador já está registado, escolha outro." ++ ++#: wp-login.php:164 ++msgid "ERROR: Please type your e-mail address." ++msgstr "ERRO: escreva o seu endereço de correio electrónico." ++ ++#: wp-login.php:166 ++msgid "ERROR: The email address isn’t correct." ++msgstr "ERRO: o endereço de correio electrónico não está correcto." ++ ++#: wp-login.php:169 ++msgid "ERROR: This email is already registered, please choose another one." ++msgstr "ERROR: este endereço de correio electrónico já está registado, escolha outro." ++ ++#: wp-login.php:181 ++#, php-format ++msgid "ERROR: Couldn’t register you... please contact the webmaster !" ++msgstr "ERRO: não foi possível proceder ao registo... contacte o webmaster !" ++ ++#: wp-login.php:244 ++msgid "Sorry, that key does not appear to be valid." ++msgstr "A chave fornecida não parece ser válida." ++ ++#: wp-login.php:247 ++msgid "Lost Password" ++msgstr "Senha Perdida" ++ ++#: wp-login.php:247 ++msgid "Please enter your username or e-mail address. You will receive a new password via e-mail." ++msgstr "Indique o seu nome de utilizador ou endereço de e-mail. Receberá a sua password por e-mail." ++ ++#: wp-login.php:252 ++msgid "Username or E-mail:" ++msgstr "Nome de utilizador ou endereço de e-mail." ++ ++#: wp-login.php:256 ++msgid "Get New Password" ++msgstr "Obter Nova Password" ++ ++#: wp-login.php:270 ++#: wp-login.php:335 ++#: wp-login.php:412 ++msgid "Are you lost?" ++msgstr "Não sabe onde está?" ++ ++#: wp-login.php:270 ++#: wp-login.php:335 ++#: wp-login.php:412 ++#, php-format ++msgid "« Back to %s" ++msgstr "« Voltar a %s" ++ ++#: wp-login.php:311 ++msgid "Registration Form" ++msgstr "Formulário de Registo" ++ ++#: wp-login.php:311 ++msgid "Register For This Site" ++msgstr "Criar Registo Neste Site" ++ ++#: wp-login.php:324 ++msgid "A password will be e-mailed to you." ++msgstr "Irá ser-lhe enviada uma senha por correio electrónico." ++ ++#: wp-login.php:330 ++#: wp-login.php:404 ++#: wp-login.php:406 ++msgid "Password Lost and Found" ++msgstr "Senha Perdida e Encontrada" ++ ++#: wp-login.php:330 ++#: wp-login.php:404 ++#: wp-login.php:406 ++msgid "Lost your password?" ++msgstr "Esqueceu-se da senha?" ++ ++#: wp-login.php:366 ++msgid "ERROR: Cookies are blocked or not supported by your browser. You must enable cookies to use WordPress." ++msgstr "ERRO: Os cookies estão bloqueados ou não são suportados pelo seu browser. Deve permitir cookies para usar o WordPress." ++ ++#: wp-login.php:369 ++msgid "You are now logged out." ++msgstr "A sua sessão terminou" ++ ++#: wp-login.php:370 ++msgid "User registration is currently not allowed." ++msgstr "De momento não é permitido o registo de novos utilizadores." ++ ++#: wp-login.php:371 ++msgid "Check your e-mail for the confirmation link." ++msgstr "Consulte a mensagem com o link de confirmação na sua caixa de correio." ++ ++#: wp-login.php:372 ++msgid "Check your e-mail for your new password." ++msgstr "Consulte a mensagem com a nova senha na sua caixa de correio." ++ ++#: wp-login.php:373 ++msgid "Registration complete. Please check your e-mail." ++msgstr "Registo concluído. Por favor consulte a sua caixa de correio." ++ ++#: wp-login.php:375 ++msgid "Login" ++msgstr "Iniciar Sessão" ++ ++#: wp-login.php:389 ++msgid "Remember Me" ++msgstr "Lembrar-me" ++ ++#: xmlrpc.php:152 ++#: xmlrpc.php:690 ++#: xmlrpc.php:712 ++#: xmlrpc.php:734 ++msgid "Bad login/pass combination." ++msgstr "Combinação nome de utilizador/senha incorrecta." ++ ++#: xmlrpc.php:238 ++msgid "Sorry, you can not edit this page." ++msgstr "Lamentamos, mas não pode editar esta página." ++ ++#: xmlrpc.php:305 ++#: xmlrpc.php:409 ++#: xmlrpc.php:452 ++msgid "Sorry, no such page." ++msgstr "Página não encontrada." ++ ++#: xmlrpc.php:326 ++#: xmlrpc.php:496 ++msgid "Sorry, you can not edit pages." ++msgstr "Lamentamos, mas não pode editar páginas." ++ ++#: xmlrpc.php:374 ++msgid "Sorry, you can not add new pages." ++msgstr "Não pode adicionar novas páginas." ++ ++#: xmlrpc.php:415 ++msgid "Sorry, you do not have the right to delete this page." ++msgstr "Não tem permissão para eliminar esta página." ++ ++#: xmlrpc.php:421 ++msgid "Failed to delete the page." ++msgstr "Não foi possível eliminar a página." ++ ++#: xmlrpc.php:458 ++msgid "Sorry, you do not have the right to edit this page." ++msgstr "Não tem permissão para editar esta página." ++ ++#: xmlrpc.php:546 ++msgid "Sorry, you can not edit posts on this blog." ++msgstr "Lamentamos, mas não pode editar artigos neste blog." ++ ++#: xmlrpc.php:585 ++msgid "Sorry, you do not have the right to add a category." ++msgstr "Não tem permissão para adicionar uma categoria." ++ ++#: xmlrpc.php:613 ++msgid "Sorry, the new category failed." ++msgstr "A nova categoria falhou." ++ ++#: xmlrpc.php:639 ++msgid "Sorry, you do not have the right to delete a category." ++msgstr "Lamento, mas não tem permissões para eliminar categorias." ++ ++#: xmlrpc.php:665 ++msgid "Sorry, you must be able to edit posts to this blog in order to view categories." ++msgstr "Lamentamos, mas tem que ter permissão para editar artigos neste blog para poder ver as categorias." ++ ++#: xmlrpc.php:695 ++msgid "You are not allowed access to details about comments." ++msgstr "Não tem permissões de acesso aos detalhes dos comentários." ++ ++#: xmlrpc.php:717 ++#: xmlrpc.php:739 ++msgid "You are not allowed access to details about this blog." ++msgstr "Não tem permissões para ver aceder aos detalhes deste blog." ++ ++#: xmlrpc.php:795 ++msgid "Sorry, you do not have access to user data on this blog." ++msgstr "Lamentamos, mas não tem acesso aos dados de utilizadores deste blog." ++ ++#: xmlrpc.php:828 ++#: xmlrpc.php:1624 ++#: xmlrpc.php:2013 ++#: xmlrpc.php:2052 ++#: xmlrpc.php:2141 ++msgid "Sorry, you can not edit this post." ++msgstr "Não tem permissão para editar este artigo." ++ ++#: xmlrpc.php:872 ++#: xmlrpc.php:1714 ++#: xmlrpc.php:1932 ++msgid "Either there are no posts, or something went wrong." ++msgstr "Não há nenhum artigo ou ocorreu algum erro." ++ ++#: xmlrpc.php:923 ++#: xmlrpc.php:960 ++msgid "Sorry, this user can not edit the template." ++msgstr "Este utilizador não pode editar o template." ++ ++#: xmlrpc.php:971 ++msgid "Either the file is not writable, or something wrong happened. The file has not been updated." ++msgstr "O ficheiro não permite acesso de escrita ou ocorreu algum erro. O ficheiro não foi actualizado." ++ ++#: xmlrpc.php:998 ++msgid "Sorry, you are not allowed to post on this blog." ++msgstr "Não tem permissão para criar artigos neste blog." ++ ++#: xmlrpc.php:1047 ++#: xmlrpc.php:1096 ++#: xmlrpc.php:1690 ++#: xmlrpc.php:2098 ++msgid "Sorry, no such post." ++msgstr "Artigo não encontrado." ++ ++#: xmlrpc.php:1059 ++#: xmlrpc.php:1564 ++msgid "Sorry, you do not have the right to publish this post." ++msgstr "Não tem permissão para publicar este artigo." ++ ++#: xmlrpc.php:1136 ++#: xmlrpc.php:1385 ++msgid "Sorry, you are not allowed to publish posts on this blog." ++msgstr "Lamentamos, mas não pode publicar artigos neste blog." ++ ++#: xmlrpc.php:1141 ++#: xmlrpc.php:1390 ++msgid "Sorry, you are not allowed to publish pages on this blog." ++msgstr "Lamentamos, mas não pode publicar páginas neste blog." ++ ++#: xmlrpc.php:1149 ++#: xmlrpc.php:1198 ++#: xmlrpc.php:1398 ++#: xmlrpc.php:1458 ++msgid "Invalid post type." ++msgstr "Tipo de artigo inválido." ++ ++#: xmlrpc.php:1189 ++msgid "You are not allowed to post as this user" ++msgstr "Não tem permissão para publicar artigos com este utilizador." ++ ++#: xmlrpc.php:1194 ++msgid "You are not allowed to create pages as this user" ++msgstr "Não tem permissão para criar páginas com este utilizador." ++ ++#: xmlrpc.php:1412 ++msgid "Invalid post id." ++msgstr "ID de artigo inválido." ++ ++#: xmlrpc.php:1449 ++msgid "You are not allowed to change the post author as this user." ++msgstr "Você não tem permissões para mudar o autor da mensagem." ++ ++#: xmlrpc.php:1454 ++msgid "You are not allowed to change the page author as this user." ++msgstr "Você não possui permissões para mudar o autor da página." ++ ++#: xmlrpc.php:1562 ++msgid "Sorry, you do not have the right to publish this page." ++msgstr "Não tem permissão para publicar esta página." ++ ++#: xmlrpc.php:1594 ++msgid "Sorry, your entry could not be edited. Something wrong happened." ++msgstr "Não foi possível editar a entrada. Ocorreu um erro." ++ ++#: xmlrpc.php:1809 ++#: xmlrpc.php:1979 ++msgid "Sorry, you must be able to edit posts on this blog in order to view categories." ++msgstr "Lamentamos, mas tem que poder editar artigos neste blog para poder ver as categorias." ++ ++#: xmlrpc.php:1858 ++msgid "You are not allowed to upload files to this site." ++msgstr "Não tem permissão para enviar ficheiros para este site." ++ ++#: xmlrpc.php:1885 ++#, php-format ++msgid "Could not write file %1$s (%2$s)" ++msgstr "Não foi possível escrever no ficheiro %1$s (%2$s)" ++ ++#: xmlrpc.php:2183 ++msgid "Is there no link to us?" ++msgstr "Não há nenhum link para nós?" ++ ++#: xmlrpc.php:2223 ++#: xmlrpc.php:2233 ++#: xmlrpc.php:2240 ++#: xmlrpc.php:2342 ++msgid "The specified target URL cannot be used as a target. It either doesn't exist, or it is not a pingback-enabled resource." ++msgstr "A URL especificada não pode ser usada. Ou não existe ou então não é um recurso que permita pingbacks." ++ ++#: xmlrpc.php:2236 ++msgid "The source URL and the target URL cannot both point to the same resource." ++msgstr "O URL de origem e o URL de destino não podem apontar ambos para o mesmo recurso." ++ ++#: xmlrpc.php:2246 ++msgid "The pingback has already been registered." ++msgstr "O pingback já tinha sido registado." ++ ++#: xmlrpc.php:2254 ++msgid "The source URL does not exist." ++msgstr "O URL de origem não existe." ++ ++#: xmlrpc.php:2266 ++msgid "We cannot find a title on that page." ++msgstr "Não é possível encontrar nenhum título nessa página." ++ ++#: xmlrpc.php:2302 ++msgid "The source URL does not contain a link to the target URL, and so cannot be used as a source." ++msgstr "O URL de origem não contém um link para o URL de destino, pelo que não é possível utilizá-lo como origem." ++ ++#: xmlrpc.php:2322 ++#, php-format ++msgid "Pingback from %1$s to %2$s registered. Keep the web talking! :-)" ++msgstr "Pingback de %1$s a %2$s registado. Mantenha a net a falar! :-)" ++ ++#: xmlrpc.php:2349 ++msgid "The specified target URL does not exist." ++msgstr "O URL de destino especificado não existe." ++ +diff -Nru wordpress/wp-content/languages/ru_RU.po wordpress-2.5.0/wp-content/languages/ru_RU.po +--- wordpress/wp-content/languages/ru_RU.po 1970-01-01 01:00:00.000000000 +0100 ++++ wordpress-2.5.0/wp-content/languages/ru_RU.po 2008-04-18 14:21:14.000000000 +0200 +@@ -0,0 +1,10111 @@ ++msgid "" ++msgstr "" ++"Project-Id-Version: WordPress 2.5\n" ++"Report-Msgid-Bugs-To: wp-polyglots@lists.automattic.com\n" ++"POT-Creation-Date: 2007-12-22 12:41+0200\n" ++"PO-Revision-Date: 2008-04-01 05:19+0300\n" ++"Last-Translator: Sergey Biryukov \n" ++"Language-Team: ru.wordpress.org \n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=utf-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11) ? 0 : ((n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20)) ? 1 : 2);\n" ++"X-Poedit-Language: Russian\n" ++"X-Poedit-Country: RUSSIAN FEDERATION\n" ++"X-Poedit-SourceCharset: utf-8\n" ++"X-Poedit-KeywordsList: __;_e;_c;__ngettext:1,2\n" ++"X-Poedit-Basepath: H:\\home\\wordpress\\trunk\n" ++"X-Poedit-SearchPath-0: H:\\home\\wordpress\\trunk\n" ++ ++#: wp-admin/admin-ajax.php:69 ++#: wp-admin/categories.php:40 ++#: wp-admin/categories.php:60 ++#: wp-admin/edit-link-categories.php:16 ++#: wp-admin/link-category.php:34 ++#, php-format ++msgid "Can’t delete the %s category: this is the default one" ++msgstr "НевПзЌПжМП уЎалОть рубрОку %s, т.к. этП ПсМПвМая рубрОка" ++ ++#: wp-admin/admin-ajax.php:227 ++#: wp-admin/admin-ajax.php:279 ++#: wp-admin/includes/taxonomy.php:62 ++msgid "You did not enter a category name." ++msgstr "Вы Ме ввелО МазваМОе рубрОкО." ++ ++#: wp-admin/admin-ajax.php:235 ++msgid "The category you are trying to create already exists." ++msgstr "РубрОка, кПтПрую вы пытаетесь сПзЎать, уже существует." ++ ++#: wp-admin/admin-ajax.php:267 ++#, php-format ++msgid "Category %s added" ++msgstr "ДПбавлеМа рубрОка %s" ++ ++#: wp-admin/admin-ajax.php:313 ++msgid "You did not enter a tag name." ++msgstr "Вы Ме ввелО МазваМОе ЌеткО." ++ ++#: wp-admin/admin-ajax.php:338 ++#, php-format ++msgid "Tag %s added" ++msgstr "ДПбавлеМа Ќетка %s" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/admin-ajax.php:219 ++#: wp-admin/admin-ajax.php:456 ++#, php-format ++msgid "User %s added" ++msgstr "ДПбавлеМ пПльзПватель %s" ++ ++#: wp-admin/admin-ajax.php:476 ++#, php-format ++msgid "Draft Saved at %s." ++msgstr "ЧерМПвОк сПхраМёМ в %s." ++ ++#: wp-admin/admin-ajax.php:476 ++msgid "g:i:s a" ++msgstr "H:i:s" ++ ++#: wp-admin/admin-ajax.php:496 ++msgid "Someone" ++msgstr "КтП-тП" ++ ++#: wp-admin/admin-ajax.php:498 ++#, php-format ++msgid "Autosave disabled: %s is currently editing this page." ++msgstr "АвтПсПхраМеМОе ПтключеМП: %s сейчас реЎактОрует эту страМОцу." ++ ++#: wp-admin/admin-ajax.php:498 ++#, php-format ++msgid "Autosave disabled: %s is currently editing this post." ++msgstr "АвтПсПхраМеМОе ПтключеМП: %s сейчас реЎактОрует эту запОсь." ++ ++#: wp-admin/admin-ajax.php:507 ++#: wp-admin/includes/post.php:10 ++#: wp-admin/page.php:97 ++msgid "You are not allowed to edit this page." ++msgstr "ВаЌ Ме разрешеМП реЎактОрПвать эту страМОцу." ++ ++#: wp-admin/admin-ajax.php:510 ++#: wp-admin/includes/post.php:13 ++#: wp-admin/post.php:104 ++msgid "You are not allowed to edit this post." ++msgstr "ВаЌ Ме разрешеМП реЎактОрПвать эту запОсь." ++ ++#: wp-admin/admin-footer.php:8 ++msgid "Thank you for creating with WordPress" ++msgstr "СпасОбП ваЌ за твПрчествП с WordPress" ++ ++#: wp-admin/admin-footer.php:8 ++msgid "Documentation" ++msgstr "ДПкуЌеМтацОя" ++ ++#: wp-admin/admin-footer.php:8 ++msgid "Feedback" ++msgstr "ОбратМая связь" ++ ++#: wp-admin/admin-header.php:64 ++msgid "Visit Site" ++msgstr "ППсЌПтреть сайт" ++ ++#: wp-admin/admin-header.php:66 ++#, php-format ++msgid "Howdy, %2$s!" ++msgstr "ПрОвет, %2$s!" ++ ++#: wp-admin/admin-header.php:66 ++msgid "Log Out" ++msgstr "ВыйтО" ++ ++#: wp-admin/admin-header.php:66 ++msgid "Help" ++msgstr "ППЌПщь" ++ ++#: wp-admin/admin-header.php:66 ++msgid "Forums" ++msgstr "ЀПруЌы" ++ ++#: wp-admin/admin.php:29 ++msgid "Classic" ++msgstr "КлассОческая" ++ ++#: wp-admin/admin.php:30 ++msgid "Fresh" ++msgstr "Свежая" ++ ++#: wp-admin/admin.php:58 ++msgid "Invalid plugin page" ++msgstr "НеправОльМПе ОЌя плагОМа" ++ ++#: wp-admin/admin.php:62 ++#, php-format ++msgid "Cannot load %s." ++msgstr "НевПзЌПжМП загрузОть %s." ++ ++#: wp-admin/admin.php:80 ++msgid "You are not allowed to import." ++msgstr "ВаЌ Ме разрешеМП ОЌпПртОрПвать ЎаММые." ++ ++#: wp-admin/admin.php:83 ++msgid "Invalid importer." ++msgstr "НекПрректМый скрОпт ОЌпПрта." ++ ++#: wp-admin/admin.php:91 ++msgid "Cannot load importer." ++msgstr "Не ЌПгу загрузОть скрОпт ОЌпПрта." ++ ++#: wp-admin/admin.php:98 ++#: wp-admin/import/blogger.php:151 ++#: wp-admin/import.php:3 ++#: wp-admin/import.php:9 ++#: wp-admin/import/textpattern.php:49 ++#: wp-admin/menu.php:47 ++msgid "Import" ++msgstr "ИЌпПрт" ++ ++#: wp-admin/async-upload.php:21 ++#: wp-admin/media-upload.php:11 ++#: wp-admin/upload.php:5 ++#: wp-app.php:407 ++#: wp-app.php:562 ++msgid "You do not have permission to upload files." ++msgstr "Вы Ме ОЌеете ЎПстатПчМП прав Ўля загрузкО файлПв." ++ ++#: wp-admin/bookmarklet.php:6 ++#: wp-admin/categories.php:19 ++#: wp-admin/categories.php:34 ++#: wp-admin/categories.php:86 ++#: wp-admin/edit-link-categories.php:9 ++#: wp-admin/edit-tags.php:19 ++#: wp-admin/edit-tags.php:35 ++#: wp-admin/edit-tags.php:48 ++#: wp-admin/edit-tags.php:82 ++#: wp-admin/import/wp-cat2tag.php:210 ++#: wp-admin/includes/bookmark.php:9 ++#: wp-admin/link-category.php:13 ++#: wp-admin/link-category.php:28 ++#: wp-admin/link-category.php:68 ++#: wp-admin/link-import.php:17 ++#: wp-admin/link-import.php:69 ++#: wp-admin/options.php:11 ++#: wp-admin/sidebar.php:7 ++#: wp-admin/users.php:6 ++#: wp-admin/widgets.php:7 ++#: wp-content/plugins/akismet/akismet.php:50 ++msgid "Cheatin’ uh?" ++msgstr "Играешься, чтП лО?" ++ ++#: wp-admin/categories.php:4 ++#: wp-admin/edit-form-advanced.php:217 ++#: wp-admin/edit-form.php:19 ++#: wp-admin/edit-link-form.php:101 ++#: wp-admin/includes/template.php:295 ++#: wp-admin/link-category.php:52 ++#: wp-admin/link-manager.php:123 ++#: wp-admin/menu.php:43 ++#: wp-includes/category-template.php:276 ++#: wp-includes/widgets.php:686 ++#: wp-includes/widgets.php:814 ++msgid "Categories" ++msgstr "РубрОкО" ++ ++#: wp-admin/categories.php:53 ++msgid "You are not allowed to delete categories." ++msgstr "ВаЌ Ме разрешеМП уЎалять рубрОкО." ++ ++#: wp-admin/categories.php:108 ++#: wp-admin/edit-link-categories.php:43 ++msgid "Category added." ++msgstr "РубрОка ЎПбавлеМа" ++ ++#: wp-admin/categories.php:109 ++#: wp-admin/edit-link-categories.php:44 ++msgid "Category deleted." ++msgstr "РубрОка уЎалеМа." ++ ++#: wp-admin/categories.php:110 ++#: wp-admin/edit-link-categories.php:45 ++msgid "Category updated." ++msgstr "РубрОка ОзЌеМеМа." ++ ++#: wp-admin/categories.php:111 ++#: wp-admin/edit-link-categories.php:46 ++msgid "Category not added." ++msgstr "РубрОка Ме ЎПбавлеМа." ++ ++#: wp-admin/categories.php:112 ++#: wp-admin/edit-link-categories.php:47 ++msgid "Category not updated." ++msgstr "РубрОка Ме ПбМПвлеМа" ++ ++#: wp-admin/categories.php:123 ++#, php-format ++msgid "Manage Categories (add new)" ++msgstr "УправлеМОе рубрОкаЌО (ЎПбавОть МПвую)" ++ ++#: wp-admin/categories.php:125 ++msgid "Manage Categories" ++msgstr "УправлеМОе рубрОкаЌО" ++ ++#: wp-admin/categories.php:130 ++#: wp-admin/edit-link-categories.php:66 ++msgid "Search Categories" ++msgstr "ППОск рубрОк" ++ ++#: wp-admin/categories.php:138 ++#: wp-admin/edit-comments.php:173 ++#: wp-admin/edit-link-categories.php:92 ++#: wp-admin/edit-pages.php:121 ++#: wp-admin/edit.php:138 ++#: wp-admin/edit-post-rows.php:174 ++#: wp-admin/edit-tags.php:163 ++#: wp-admin/includes/media.php:690 ++#: wp-admin/includes/template.php:689 ++#: wp-admin/includes/template.php:778 ++#: wp-admin/link-manager.php:90 ++#: wp-admin/upload.php:149 ++#: wp-admin/users.php:301 ++msgid "Delete" ++msgstr "УЎалОть" ++ ++#: wp-admin/categories.php:151 ++#: wp-admin/edit-form-comment.php:67 ++#: wp-admin/edit-link-categories.php:105 ++#: wp-admin/edit-link-form.php:77 ++#: wp-admin/edit-tags.php:176 ++#: wp-admin/link-manager.php:121 ++#: wp-admin/themes.php:100 ++#: wp-admin/user-edit.php:194 ++#: wp-admin/users.php:335 ++#: wp-content/themes/classic/comments.php:51 ++#: wp-content/themes/classic/comments-popup.php:64 ++#: wp-includes/js/tinymce/langs/wp-langs.php:299 ++msgid "Name" ++msgstr "ИЌя" ++ ++#: wp-admin/categories.php:152 ++#: wp-admin/edit-category-form.php:45 ++#: wp-admin/edit-link-categories.php:106 ++#: wp-admin/edit-link-form.php:93 ++#: wp-admin/includes/media.php:447 ++#: wp-admin/includes/media.php:544 ++#: wp-admin/includes/media.php:626 ++#: wp-admin/includes/media.php:1089 ++#: wp-admin/plugins.php:108 ++#: wp-admin/themes.php:101 ++#: wp-includes/script-loader.php:185 ++msgid "Description" ++msgstr "ОпОсаМОе" ++ ++#: wp-admin/categories.php:153 ++#: wp-admin/edit.php:34 ++#: wp-admin/edit-tags.php:177 ++#: wp-admin/import/blogger.php:162 ++#: wp-admin/menu.php:40 ++#: wp-admin/users.php:338 ++msgid "Posts" ++msgstr "ЗапОсО" ++ ++#: wp-admin/categories.php:173 ++#, php-format ++msgid "Note:
    Deleting a category does not delete the posts in that category. Instead, posts that were only assigned to the deleted category are set to the category %s." ++msgstr "ПрОЌечаМОе:
    УЎалеМОе рубрОкО Ме прОвПЎОт к уЎалеМОю запОсей Оз этПй рубрОкО. ВЌестП этПгП запОсО Оз уЎалёММПй рубрОкО буЎут переЌещеМы в рубрОку %s." ++ ++#: wp-admin/categories.php:174 ++#, php-format ++msgid "Categories can be selectively converted to tags using the category to tag converter." ++msgstr "РубрОкО ЌПжМП выбПрПчМП преПбразПвать в ЌеткО с пПЌПщью кПМвертера рубрОк в ЌеткО." ++ ++#: wp-admin/comment.php:21 ++#: wp-admin/edit-form-comment.php:2 ++msgid "Edit Comment" ++msgstr "ИзЌеМОть кПЌЌеМтарОй" ++ ++#: wp-admin/comment.php:30 ++#: wp-admin/comment.php:52 ++#: wp-admin/comment.php:134 ++#: wp-admin/comment.php:162 ++#: wp-admin/comment.php:187 ++msgid "Oops, no comment with this ID." ++msgstr "Оп-па, кПЌЌеМтарОя с такОЌ ID Ме МайЎеМП." ++ ++#: wp-admin/comment.php:30 ++#: wp-admin/comment.php:52 ++#: wp-admin/comment.php:134 ++#: wp-admin/comment.php:162 ++#: wp-admin/comment.php:187 ++msgid "Go back" ++msgstr "НазаЎ" ++ ++#: wp-admin/comment.php:33 ++#: wp-admin/comment.php:137 ++msgid "You are not allowed to edit comments on this post." ++msgstr "ВаЌ Ме разрешеМП ОзЌеМять кПЌЌеМтарОО к этПй запОсО." ++ ++#: wp-admin/comment.php:55 ++msgid "You are not allowed to delete comments on this post." ++msgstr "ВаЌ Ме разрешеМП уЎалять кПЌЌеМтарОО к этПй запОсО." ++ ++#: wp-admin/comment.php:55 ++#: wp-admin/comment.php:190 ++msgid "You are not allowed to edit comments on this post, so you cannot approve this comment." ++msgstr "ВаЌ Ме разрешеМП ОзЌеМять кПЌЌеМтарОО к этПй запОсО, пПэтПЌу вы Ме ЌПжете ПЎПбрОть ЎаММый кПЌЌеМтарОй." ++ ++#: wp-admin/comment.php:62 ++msgid "You are about to mark the following comment as spam:" ++msgstr "Вы сПбОраетесь пПЌетОть этПт кПЌЌеМтарОй как спаЌ:" ++ ++#: wp-admin/comment.php:63 ++msgid "Spam Comment" ++msgstr "ППЌетОть кПЌЌеМтарОй как спаЌ" ++ ++#: wp-admin/comment.php:65 ++msgid "You are about to delete the following comment:" ++msgstr "Вы сПбОраетесь уЎалОть этПт кПЌЌеМтарОй:" ++ ++#: wp-admin/comment.php:66 ++msgid "Delete Comment" ++msgstr "УЎалОть кПЌЌеМтарОй" ++ ++#: wp-admin/comment.php:68 ++msgid "You are about to approve the following comment:" ++msgstr "Вы сПбОраетесь ПЎПбрОть этПт кПЌЌеМтарОй:" ++ ++#: wp-admin/comment.php:69 ++msgid "Approve Comment" ++msgstr "ОЎПбрОть кПЌЌеМтарОй" ++ ++#: wp-admin/comment.php:73 ++msgid "Caution:" ++msgstr "ВМОЌаМОе:" ++ ++#: wp-admin/comment.php:75 ++msgid "Are you sure you want to do that?" ++msgstr "Вы увереМы, чтП хПтОте сЎелать этП?" ++ ++#: wp-admin/comment.php:81 ++#: wp-admin/link-manager.php:163 ++#: wp-admin/update.php:64 ++msgid "No" ++msgstr "Нет" ++ ++#: wp-admin/comment.php:98 ++#: wp-admin/includes/template.php:294 ++#: wp-admin/includes/template.php:331 ++#: wp-includes/js/tinymce/langs/wp-langs.php:243 ++msgid "Author" ++msgstr "АвтПр" ++ ++#: wp-admin/comment.php:103 ++#: wp-admin/edit-form-comment.php:74 ++#: wp-admin/user-edit.php:270 ++#: wp-admin/users.php:336 ++#: wp-content/themes/classic/comments-popup.php:71 ++#: wp-login.php:320 ++msgid "E-mail" ++msgstr "E-mail" ++ ++#: wp-admin/comment.php:109 ++#: wp-admin/edit-form-comment.php:81 ++#: wp-admin/includes/media.php:1179 ++#: wp-admin/includes/template.php:938 ++#: wp-admin/link-manager.php:122 ++#: wp-includes/script-loader.php:184 ++msgid "URL" ++msgstr "URL" ++ ++#: wp-admin/comment.php:114 ++#: wp-admin/edit-comments.php:190 ++#: wp-admin/edit-form-comment.php:88 ++#: wp-admin/edit-pages.php:191 ++#: wp-admin/edit.php:217 ++#: wp-admin/upload.php:227 ++#: wp-content/themes/classic/comments.php:18 ++#: wp-content/themes/classic/comments-popup.php:45 ++msgid "Comment" ++msgstr "КПЌЌеМтарОй" ++ ++#: wp-admin/comment.php:165 ++msgid "You are not allowed to edit comments on this post, so you cannot disapprove this comment." ++msgstr "ВаЌ Ме разрешеМП ОзЌеМять кПЌЌеМтарОО к этПй запОсО, пПэтПЌу вы Ме ЌПжете ПтклПМОть ЎаММый кПЌЌеМтарОй." ++ ++#: wp-admin/comment.php:223 ++msgid "Unknown action." ++msgstr "НеОзвестМПе ЎействОе." ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/custom-header.php:11 ++#: wp-admin/custom-header.php:11 ++msgid "Custom Image Header" ++msgstr "КартОМка Ўля шапкО" ++ ++#: wp-admin/custom-header.php:128 ++msgid "Show Text" ++msgstr "ППказать текст" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/custom-header.php:136 ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/custom-header.php:166 ++#: wp-admin/custom-header.php:139 ++#: wp-admin/custom-header.php:169 ++msgid "Hide Text" ++msgstr "Скрыть текст" ++ ++#: wp-admin/custom-header.php:155 ++msgid "Header updated." ++msgstr "Капка ПбМПвлеМа." ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/custom-header.php:157 ++#: wp-admin/custom-header.php:160 ++msgid "Your Header Image" ++msgstr "КартОМка Ўля шапкО" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/custom-header.php:158 ++#: wp-admin/custom-header.php:161 ++msgid "This is your header image. You can change the text color or upload and crop a new image." ++msgstr "ЭтП картОМка шапкО сайта. Вы ЌПжете ОзЌеМОть цвет текста ОлО загрузОть О Пбрезать МПвую картОМку." ++ ++#: wp-admin/custom-header.php:170 ++msgid "Select a Text Color" ++msgstr "ВыберОте цвет текста" ++ ++#: wp-admin/custom-header.php:170 ++msgid "Use Original Color" ++msgstr "ИспПльзПвать ПрОгОМальМые цвета" ++ ++#: wp-admin/custom-header.php:172 ++#: wp-admin/edit-link-form.php:4 ++#: wp-admin/import/blogger.php:616 ++#: wp-admin/media.php:78 ++#: wp-admin/options-discussion.php:119 ++#: wp-admin/options-general.php:113 ++#: wp-admin/options-misc.php:94 ++#: wp-admin/options-permalink.php:181 ++#: wp-admin/options.php:88 ++#: wp-admin/options-privacy.php:27 ++#: wp-admin/options-reading.php:70 ++#: wp-admin/options-writing.php:114 ++#: wp-admin/widgets.php:307 ++msgid "Save Changes" ++msgstr "СПхраМОть ОзЌеМеМОя" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/custom-header.php:174 ++#: wp-admin/custom-header.php:178 ++msgid "Upload New Header Image" ++msgstr "ЗагрузОть МПвую картОМку Ўля шапкО" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/custom-header.php:174 ++#: wp-admin/custom-header.php:178 ++msgid "Here you can upload a custom header image to be shown at the top of your blog instead of the default one. On the next screen you will be able to crop the image." ++msgstr "ЗЎесь вы ЌПжете загрузОть прПОзвПльМую картОМку, кПтПрая буЎет пПказаМа в верхМей частО вашегП блПга вЌестП текущей. На слеЎующей страМОчке вы сЌПжете Пбрезать ОзПбражеМОе." ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/custom-header.php:175 ++#: wp-admin/custom-header.php:179 ++#, php-format ++msgid "Images of exactly %1$d x %2$d pixels will be used as-is." ++msgstr "КартОМкО разЌера %1$d x %2$d пОкселей буЎут ОспПльзПваМы без ОзЌеМеМОя." ++ ++#: wp-admin/custom-header.php:182 ++msgid "Choose an image from your computer:" ++msgstr "ВыберОте файл Ма свПеЌ кПЌпьютере:" ++ ++#: wp-admin/custom-header.php:186 ++#: wp-admin/includes/media.php:834 ++msgid "Upload" ++msgstr "Загрузка" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/custom-header.php:189 ++#: wp-admin/custom-header.php:194 ++msgid "Reset Header Image and Color" ++msgstr "СбрПсОть ОзПбражеМОе О цвет загПлПвка" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/custom-header.php:190 ++#: wp-admin/custom-header.php:195 ++msgid "This will restore the original header image and color. You will not be able to retrieve any customizations." ++msgstr "Эта фуМкцОя вПсстаМПвОт ПрОгОМальМые картОМку О цвет текста. Вы Ме сЌПжете вПсстаМПвОть сЎелаММые ОзЌеМеМОя." ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/custom-header.php:192 ++#: wp-admin/custom-header.php:198 ++msgid "Restore Original Header" ++msgstr "ВПсстаМПвОть ОсхПЎМый загПлПвПк" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/custom-header.php:245 ++#: wp-admin/custom-header.php:254 ++msgid "Choose the part of the image you want to use as your header." ++msgstr "ВыберОте часть ОзПбражеМОя, кПтПрую хПтОте ОспПльзПвать в шапке сайта." ++ ++#: wp-admin/custom-header.php:269 ++msgid "Crop Header" ++msgstr "Обрезать загПлПвПк" ++ ++#: wp-admin/custom-header.php:321 ++msgid "Header complete!" ++msgstr "СПзЎаМОе шапкО завершеМП!" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/custom-header.php:301 ++#: wp-admin/custom-header.php:323 ++msgid "Visit your site and you should see the new header now." ++msgstr "ПерейЎОте Ма свПй сайт О пПсЌПтрОте, как выгляЎОт МПвая шапка." ++ ++#: wp-admin/edit-attachment-rows.php:53 ++#: wp-admin/edit-post-rows.php:75 ++#: wp-admin/includes/template.php:46 ++#: wp-admin/includes/template.php:79 ++#: wp-admin/includes/template.php:245 ++#: wp-admin/includes/template.php:403 ++#: wp-admin/link-manager.php:172 ++#, php-format ++msgid "Edit \"%s\"" ++msgstr "РеЎактОрПвать «%s»" ++ ++#: wp-admin/edit-attachment-rows.php:68 ++#: wp-admin/edit-form-advanced.php:96 ++#: wp-admin/edit-page-form.php:84 ++#: wp-admin/edit-post-rows.php:49 ++#: wp-admin/edit-post-rows.php:151 ++#: wp-admin/includes/template.php:377 ++#: wp-admin/includes/template.php:447 ++msgid "Unpublished" ++msgstr "Не ПпублОкПваМП" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/options-general.php:63 ++#: wp-admin/edit-attachment-rows.php:70 ++#: wp-admin/edit-post-rows.php:52 ++#: wp-admin/edit-post-rows.php:56 ++#: wp-admin/includes/template.php:380 ++#: wp-admin/includes/template.php:384 ++msgid "Y/m/d g:i:s A" ++msgstr "d.m.Y H:i:s" ++ ++#: wp-admin/edit-attachment-rows.php:75 ++#: wp-admin/edit-post-rows.php:62 ++#: wp-admin/includes/template.php:390 ++#, php-format ++msgid "%s from now" ++msgstr "%s ЎП публОкацОО" ++ ++#: wp-admin/edit-attachment-rows.php:77 ++#: wp-admin/edit-post-rows.php:64 ++#: wp-admin/includes/template.php:392 ++#: wp-admin/includes/template.php:640 ++#, php-format ++msgid "%s ago" ++msgstr "%s МазаЎ" ++ ++#: wp-admin/edit-attachment-rows.php:79 ++#: wp-admin/edit-post-rows.php:66 ++#: wp-admin/includes/template.php:394 ++#: wp-admin/includes/template.php:669 ++msgid "Y/m/d" ++msgstr "d.m.Y" ++ ++#: wp-admin/edit-attachment-rows.php:88 ++#: wp-admin/edit-post-rows.php:31 ++#: wp-admin/includes/template.php:358 ++msgid "(no title)" ++msgstr "(без МазваМОя)" ++ ++#: wp-admin/edit-attachment-rows.php:111 ++#: wp-admin/edit-post-rows.php:117 ++#: wp-admin/includes/template.php:413 ++#, php-format ++msgid "%s pending" ++msgstr "%s ПжОЎающОх" ++ ++#: wp-admin/edit-attachment-rows.php:114 ++#: wp-admin/edit-post-rows.php:120 ++#: wp-admin/includes/template.php:416 ++msgid "0" ++msgstr "0" ++ ++#: wp-admin/edit-attachment-rows.php:114 ++#: wp-admin/edit-post-rows.php:120 ++#: wp-admin/includes/template.php:416 ++msgid "1" ++msgstr "1" ++ ++#: wp-admin/edit-attachment-rows.php:114 ++#: wp-admin/edit-post-rows.php:120 ++#: wp-admin/includes/template.php:416 ++msgid "%" ++msgstr "%" ++ ++#: wp-admin/edit-attachment-rows.php:124 ++msgid "Permalink" ++msgstr "ППстПяММая ссылка" ++ ++#: wp-admin/edit-attachment-rows.php:142 ++#: wp-admin/edit-post-rows.php:192 ++msgid "No posts found." ++msgstr "НО ПЎМПй запОсО Ме МайЎеМП." ++ ++#: wp-admin/edit-category-form.php:3 ++#: wp-admin/edit-category-form.php:4 ++#: wp-admin/edit-link-category-form.php:3 ++#: wp-admin/edit-link-category-form.php:4 ++msgid "Edit Category" ++msgstr "ИзЌеМОть рубрОку" ++ ++#: wp-admin/edit-category-form.php:10 ++#: wp-admin/edit-category-form.php:11 ++#: wp-admin/edit-link-category-form.php:10 ++#: wp-admin/edit-link-category-form.php:11 ++msgid "Add Category" ++msgstr "ДПбавОть рубрОку" ++ ++#: wp-admin/edit-category-form.php:28 ++msgid "Category Name" ++msgstr "НазваМОе рубрОкО" ++ ++#: wp-admin/edit-category-form.php:30 ++msgid "The name is used to identify the category almost everywhere, for example under the post or in the category widget." ++msgstr "НазваМОе ОспПльзуется Ўля ПпреЎелеМОя рубрОкО практОческО везЎе, МапрОЌер, пПЎ запОсью ОлО в вОЎжете рубрОк." ++ ++#: wp-admin/edit-category-form.php:33 ++msgid "Category Slug" ++msgstr "Ярлык рубрОкО" ++ ++#: wp-admin/edit-category-form.php:35 ++#: wp-admin/edit-link-category-form.php:34 ++#: wp-admin/edit-tag-form.php:35 ++msgid "The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens." ++msgstr "«Ð¯Ñ€Ð»Ñ‹Ðº» — этП варОаМт МазваМОя, пПЎхПЎящОй Ўля URL. ОбычМП сПЎержОт тПлькП латОМскОе буквы в МОжМеЌ регОстре, цОфры О ЎефОсы." ++ ++#: wp-admin/edit-category-form.php:38 ++msgid "Category Parent" ++msgstr "РПЎОтельская рубрОка" ++ ++#: wp-admin/edit-category-form.php:40 ++#: wp-admin/includes/media.php:456 ++#: wp-admin/includes/media.php:553 ++#: wp-admin/includes/media.php:1099 ++#: wp-includes/deprecated.php:741 ++#: wp-includes/script-loader.php:181 ++msgid "None" ++msgstr "Нет" ++ ++#: wp-admin/edit-category-form.php:41 ++msgid "Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional." ++msgstr "РубрОкО, в ПтлОчОе Пт ЌетПк, ЌПгут ОЌеть ОерархОю. НапрОЌер, вы ЌПжете завестО рубрОку «Ð”жаз», вМутрО кПтПрПй буЎут ЎПчерМОе рубрОкО «Ð‘ОбПп» О «Ð‘Ог-бэМЎы». ППлМПстью прПОзвПльМП." ++ ++#: wp-admin/edit-category-form.php:47 ++msgid "The description is not prominent by default, however some themes may show it." ++msgstr "ОпОсаМОе пП уЌПлчаМОю Ме ПтПбражается, ПЎМакП МекПтПрые теЌы ЌПгут егП пПказывать." ++ ++#: wp-admin/edit-comments.php:4 ++msgid "Edit Comments" ++msgstr "РеЎактОрПвать кПЌЌеМтарОО" ++ ++#: wp-admin/edit-comments.php:74 ++#, php-format ++msgid "%s comment approved" ++msgid_plural "%s comments approved" ++msgstr[0] "%s кПЌЌеМтарОй ПЎПбреМ" ++msgstr[1] "%s кПЌЌеМтарОя ПЎПбреМы" ++msgstr[2] "%s кПЌЌеМтарОев ПЎПбреМП" ++ ++#: wp-admin/edit-comments.php:79 ++#, php-format ++msgid "%s comment deleted" ++msgid_plural "%s comments deleted" ++msgstr[0] "%s кПЌЌеМтарОй уЎалеМ" ++msgstr[1] "%s кПЌЌеМтарОя уЎалеМП" ++msgstr[2] "%s кПЌЌеМтарОев уЎалеМП" ++ ++#: wp-admin/edit-comments.php:84 ++#, php-format ++msgid "%s comment marked as spam" ++msgid_plural "%s comments marked as spam" ++msgstr[0] "%s кПЌЌеМтарОй пПЌечеМ как спаЌ" ++msgstr[1] "%s кПЌЌеМтарОя пПЌечеМП как спаЌ" ++msgstr[2] "%s кПЌЌеМтарОев пПЌечеМП как спаЌ" ++ ++#: wp-admin/edit-comments.php:94 ++msgid "Manage Comments" ++msgstr "УправлеМОе кПЌЌеМтарОяЌО" ++ ++#: wp-admin/edit-comments.php:100 ++#, php-format ++msgid "Awaiting Moderation (%s)" ++msgid_plural "Awaiting Moderation (%s)" ++msgstr[0] "ОжОЎающОй прПверкО (%s)" ++msgstr[1] "ОжОЎающОе прПверкО (%s)" ++msgstr[2] "ОжОЎающОе прПверкО (%s)" ++ ++#: wp-admin/edit-comments.php:100 ++msgid "Approved|plural" ++msgstr "ОЎПбреММые|ЌМПжествеММПе чОслП" ++ ++#: wp-admin/edit-comments.php:102 ++msgid "Show All Comments" ++msgstr "ППказать все кПЌЌеМтарОО" ++ ++#: wp-admin/edit-comments.php:121 ++msgid "Search Comments" ++msgstr "ППОск кПЌЌеМтарОев" ++ ++#: wp-admin/edit-comments.php:129 ++msgid "Detail View" ++msgstr "РазвёрМутый вОЎ" ++ ++#: wp-admin/edit-comments.php:130 ++msgid "List View" ++msgstr "В вОЎе спОска" ++ ++#: wp-admin/edit-comments.php:167 ++#: wp-admin/includes/template.php:675 ++#: wp-admin/includes/template.php:680 ++msgid "Approve" ++msgstr "ОЎПбрОть" ++ ++#: wp-admin/edit-comments.php:169 ++msgid "Mark as Spam" ++msgstr "ППЌетОть как спаЌ" ++ ++#: wp-admin/edit-comments.php:171 ++#: wp-admin/includes/template.php:676 ++#: wp-admin/includes/template.php:683 ++msgid "Unapprove" ++msgstr "ОтклПМОть" ++ ++#: wp-admin/edit-comments.php:191 ++#: wp-admin/edit-pages.php:192 ++#: wp-admin/edit.php:218 ++#: wp-admin/includes/template.php:292 ++#: wp-admin/includes/template.php:329 ++#: wp-admin/upload.php:228 ++msgid "Date" ++msgstr "Дата" ++ ++#: wp-admin/edit-comments.php:192 ++#: wp-admin/edit-pages.php:193 ++#: wp-admin/edit.php:219 ++#: wp-admin/upload.php:229 ++msgid "Actions" ++msgstr "ДействОя" ++ ++#: wp-admin/edit-comments.php:224 ++msgid "No comments awaiting moderation… yet." ++msgstr "КПЌЌеМтарОев, ПжОЎающОх прПверкО, Мет… пПка." ++ ++#: wp-admin/edit-comments.php:230 ++#: wp-content/plugins/akismet/akismet.php:614 ++msgid "No results found." ++msgstr "НОчегП Ме МайЎеМП." ++ ++#: wp-admin/edit-form-advanced.php:5 ++#, php-format ++msgid "Post updated. Continue editing below or go back." ++msgstr "ЗапОсь ПбМПвлеМа. МПжМП прПЎПлжОть реЎактОрПваМОе ОлО верМуться МазаЎ." ++ ++#: wp-admin/edit-form-advanced.php:6 ++#: wp-admin/edit-page-form.php:5 ++msgid "Custom field updated." ++msgstr "ППле ОзЌеМеМП." ++ ++#: wp-admin/edit-form-advanced.php:7 ++#: wp-admin/edit-page-form.php:6 ++msgid "Custom field deleted." ++msgstr "ППле уЎалеМП." ++ ++#: wp-admin/edit-form-advanced.php:8 ++msgid "Post updated." ++msgstr "ЗапОсь ПбМПвлеМа." ++ ++#: wp-admin/edit-form-advanced.php:20 ++#: wp-admin/edit-form.php:3 ++msgid "Write Post" ++msgstr "СПзЎаМОе запОсО" ++ ++#: wp-admin/edit-form-advanced.php:42 ++msgid "Already pinged:" ++msgstr "ОтправлеМы увеЎПЌлеМОя:" ++ ++#: wp-admin/edit-form-advanced.php:50 ++msgid "Save and Continue Editing" ++msgstr "СПхраМОть О прПЎПлжОть" ++ ++#: wp-admin/edit-form-advanced.php:78 ++msgid "View this Post" ++msgstr "ППсЌПтреть запОсь" ++ ++#: wp-admin/edit-form-advanced.php:80 ++#: wp-includes/script-loader.php:499 ++msgid "Preview this Post" ++msgstr "ПрПсЌПтреть запОсь" ++ ++#: wp-admin/edit-form-advanced.php:86 ++#: wp-admin/edit-page-form.php:72 ++msgid "Publish Status" ++msgstr "Статус" ++ ++#: wp-admin/edit-form-advanced.php:90 ++#: wp-admin/edit-page-form.php:76 ++#: wp-admin/edit-page-form.php:78 ++#: wp-admin/edit-pages.php:39 ++#: wp-admin/edit-post-rows.php:142 ++#: wp-admin/includes/post.php:522 ++#: wp-admin/includes/template.php:438 ++#: wp-includes/post.php:306 ++#: wp-includes/post.php:328 ++msgid "Published" ++msgstr "ОпублОкПваМП" ++ ++#: wp-admin/edit-form-advanced.php:92 ++#: wp-admin/edit-pages.php:40 ++#: wp-admin/edit-post-rows.php:145 ++#: wp-admin/includes/post.php:523 ++#: wp-admin/includes/template.php:441 ++msgid "Scheduled" ++msgstr "ЗаплаМОрПваМП" ++ ++#: wp-admin/edit-form-advanced.php:95 ++#: wp-admin/edit-page-form.php:83 ++#: wp-admin/edit-pages.php:41 ++#: wp-admin/edit-post-rows.php:148 ++#: wp-admin/includes/post.php:524 ++#: wp-admin/includes/template.php:444 ++#: wp-includes/post.php:304 ++msgid "Pending Review" ++msgstr "ОжОЎает утвержЎеМОя" ++ ++#: wp-admin/edit-form-advanced.php:101 ++msgid "Keep this post private" ++msgstr "ОставОть запОсь лОчМПй" ++ ++#: wp-admin/edit-form-advanced.php:106 ++#: wp-admin/edit-page-form.php:92 ++#, php-format ++msgid "Scheduled for:
    %1$s at %2$s" ++msgstr "ПлаМОруеЌая публОкацОя:
    %1$s в %2$s" ++ ++#: wp-admin/edit-form-advanced.php:108 ++#: wp-admin/edit-page-form.php:94 ++#, php-format ++msgid "Published on:
    %1$s at %2$s" ++msgstr "ОпублОкПваМП:
    %1$s в %2$s" ++ ++#: wp-admin/edit-form-advanced.php:110 ++#: wp-admin/edit-form-advanced.php:117 ++#: wp-admin/edit-page-form.php:96 ++#: wp-admin/edit-page-form.php:103 ++msgid "Publish immediately" ++msgstr "ОпублОкПвать МеЌеЎлеММП" ++ ++#: wp-admin/edit-form-advanced.php:112 ++#: wp-admin/edit-page-form.php:98 ++#, php-format ++msgid "Publish on:
    %1$s at %2$s" ++msgstr "ОпублОкПвать:
    %1$s в %2$s" ++ ++#: wp-admin/edit-form-advanced.php:124 ++#: wp-admin/edit-form-comment.php:40 ++#: wp-admin/edit-page-form.php:109 ++#: wp-admin/edit-post-rows.php:168 ++#: wp-admin/includes/dashboard.php:220 ++#: wp-admin/includes/post.php:658 ++#: wp-admin/includes/widgets.php:110 ++#: wp-admin/includes/widgets.php:231 ++#: wp-admin/page.php:66 ++#: wp-admin/plugins.php:127 ++#: wp-admin/post.php:68 ++#: wp-includes/script-loader.php:154 ++#: wp-includes/script-loader.php:159 ++#: wp-includes/script-loader.php:165 ++#: wp-includes/script-loader.php:172 ++#: wp-includes/script-loader.php:193 ++msgid "Edit" ++msgstr "ИзЌеМОть" ++ ++#: wp-admin/edit-form-advanced.php:132 ++#: wp-admin/edit-form-comment.php:47 ++#: wp-admin/edit-link-form.php:55 ++#: wp-admin/edit-page-form.php:116 ++#: wp-admin/includes/dashboard.php:217 ++#: wp-content/themes/default/functions.php:374 ++#: wp-content/themes/default/functions.php:381 ++#: wp-includes/js/tinymce/langs/wp-langs.php:63 ++#: wp-includes/script-loader.php:144 ++msgid "Save" ++msgstr "СПхраМОть" ++ ++#: wp-admin/edit-form-advanced.php:137 ++#: wp-admin/edit-form.php:52 ++#: wp-admin/edit-page-form.php:121 ++#: wp-admin/sidebar.php:78 ++msgid "Publish" ++msgstr "ОпублОкПвать" ++ ++#: wp-admin/edit-form-advanced.php:139 ++#: wp-admin/edit-page-form.php:123 ++msgid "Submit for Review" ++msgstr "ОтправОть Ма утвержЎеМОе" ++ ++#: wp-admin/edit-form-advanced.php:145 ++#: wp-admin/edit-page-form.php:129 ++#, php-format ++msgid "" ++"You are about to delete this draft '%s'\n" ++" 'Cancel' to stop, 'OK' to delete." ++msgstr "" ++"Вы сПбОраетесь уЎалОть черМПвОк «%s»\n" ++" «ÐžÑ‚ЌеМа» — ПставОть, «OK» — уЎалОть." ++ ++#: wp-admin/edit-form-advanced.php:145 ++#, php-format ++msgid "" ++"You are about to delete this post '%s'\n" ++" 'Cancel' to stop, 'OK' to delete." ++msgstr "" ++"Вы сПбОраетесь уЎалОть запОсь «%s»\n" ++" «ÐžÑ‚ЌеМа» — ПставОть, «OK» — уЎалОть." ++ ++#: wp-admin/edit-form-advanced.php:145 ++msgid "Delete post" ++msgstr "УЎалОть Ð·Ð°Ð¿ÐžÑÑŒ" ++ ++#: wp-admin/edit-form-advanced.php:151 ++#: wp-admin/edit-page-form.php:135 ++#, php-format ++msgid "Last edited by %1$s on %2$s at %3$s" ++msgstr "ППслеЎМее ОзЌеМеМОе: %1$s; %2$s в %3$s" ++ ++#: wp-admin/edit-form-advanced.php:153 ++#: wp-admin/edit-page-form.php:137 ++#, php-format ++msgid "Last edited on %1$s at %2$s" ++msgstr "ППслеЎМее ОзЌеМеМОе: %1$s в %2$s" ++ ++#: wp-admin/edit-form-advanced.php:162 ++#: wp-admin/edit-form-comment.php:54 ++#: wp-admin/edit-link-form.php:63 ++#: wp-admin/edit-page-form.php:146 ++msgid "Related" ++msgstr "ППлезМые ссылкО" ++ ++#: wp-admin/edit-form-advanced.php:166 ++msgid "See Comments on this Post" ++msgstr "КПЌЌеМтарОО к этПй запОсО" ++ ++#: wp-admin/edit-form-advanced.php:168 ++#: wp-admin/edit-form-comment.php:57 ++#: wp-admin/edit-page-form.php:152 ++msgid "Manage All Comments" ++msgstr "УправлеМОе всеЌО кПЌЌеМтарОяЌО" ++ ++#: wp-admin/edit-form-advanced.php:169 ++msgid "Manage All Posts" ++msgstr "УправлеМОе всеЌО запОсяЌО" ++ ++#: wp-admin/edit-form-advanced.php:170 ++msgid "Manage All Categories" ++msgstr "УправлеМОе всеЌО рубрОкаЌО" ++ ++#: wp-admin/edit-form-advanced.php:171 ++msgid "Manage All Tags" ++msgstr "УправлеМОе всеЌО ЌеткаЌО" ++ ++#: wp-admin/edit-form-advanced.php:172 ++msgid "View Drafts" ++msgstr "ПрПсЌПтреть черМПвОкО" ++ ++#: wp-admin/edit-form-advanced.php:182 ++#: wp-admin/edit-form.php:14 ++#: wp-admin/edit-page-form.php:162 ++#: wp-admin/includes/media.php:536 ++#: wp-admin/includes/media.php:625 ++#: wp-admin/includes/media.php:1130 ++#: wp-admin/includes/media.php:1158 ++#: wp-admin/includes/media.php:1186 ++#: wp-admin/includes/template.php:293 ++#: wp-admin/includes/template.php:330 ++#: wp-includes/js/tinymce/langs/wp-langs.php:282 ++#: wp-includes/script-loader.php:176 ++msgid "Title" ++msgstr "ЗагПлПвПк" ++ ++#: wp-admin/edit-form-advanced.php:197 ++#: wp-admin/edit-form.php:25 ++#: wp-admin/menu.php:34 ++msgid "Post" ++msgstr "ЗапОсь" ++ ++#: wp-admin/edit-form-advanced.php:209 ++#: wp-admin/edit-tags.php:4 ++#: wp-admin/includes/media.php:627 ++#: wp-admin/includes/template.php:296 ++#: wp-admin/menu.php:44 ++#: wp-includes/widgets.php:1326 ++msgid "Tags" ++msgstr "МеткО" ++ ++#: wp-admin/edit-form-advanced.php:221 ++#: wp-admin/edit-link-form.php:105 ++msgid "+ Add New Category" ++msgstr "+ ДПбавОть рубрОку" ++ ++#: wp-admin/edit-form-advanced.php:223 ++#: wp-admin/edit-link-form.php:107 ++msgid "New category name" ++msgstr "НазваМОе рубрОкО" ++ ++#: wp-admin/edit-form-advanced.php:224 ++msgid "Parent category" ++msgstr "РПЎОтельская рубрОка" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/cat-js.php:25 ++#: wp-admin/edit-form-advanced.php:225 ++#: wp-admin/edit-link-form.php:108 ++#: wp-admin/includes/widgets.php:104 ++#: wp-includes/script-loader.php:116 ++#: wp-includes/script-loader.php:150 ++#: wp-includes/script-loader.php:192 ++msgid "Add" ++msgstr "ДПбавОть" ++ ++#: wp-admin/edit-form-advanced.php:232 ++#: wp-admin/edit-link-form.php:115 ++msgid "All Categories" ++msgstr "Все рубрОкО" ++ ++#: wp-admin/edit-form-advanced.php:233 ++#: wp-admin/edit-link-form.php:116 ++msgid "Most Used" ++msgstr "ЧастП ОспПльзуеЌые" ++ ++#: wp-admin/edit-form-advanced.php:255 ++#: wp-admin/edit-link-form.php:136 ++#: wp-admin/edit-page-form.php:189 ++msgid "Advanced Options" ++msgstr "ДПпПлМОтельМП" ++ ++#: wp-admin/edit-form-advanced.php:258 ++msgid "Excerpt" ++msgstr "ЊОтата" ++ ++#: wp-admin/edit-form-advanced.php:260 ++msgid "Excerpts are optional hand-crafted summaries of your content. You can use them in your template" ++msgstr "ЊОтата — МеПбязательМПе краткПе сПЎержаМОе вашегП текста, кПтПрПе ЌПжМП ОспПльзПвать в вашеЌ шаблПМе." ++ ++#: wp-admin/edit-form-advanced.php:265 ++msgid "Trackbacks" ++msgstr "ОбратМые ссылкО" ++ ++#: wp-admin/edit-form-advanced.php:267 ++msgid "Send trackbacks to:" ++msgstr "ОтправОть ПбратМые ссылкО:" ++ ++#: wp-admin/edit-form-advanced.php:267 ++msgid "Separate multiple URLs with spaces" ++msgstr "АЎреса разЎеляются прПбелаЌО" ++ ++#: wp-admin/edit-form-advanced.php:268 ++msgid "Trackbacks are a way to notify legacy blog systems that you’ve linked to them. If you link other WordPress blogs they’ll be notified automatically using pingbacks, no other action necessary." ++msgstr "ОбратМые ссылкО — этП спПсПб увеЎПЌОть ЎругОе блПгО, чтП вы сПслалОсь Ма МОх. ЕслО вы ссылаетесь Ма блПг пПЎ управлеМОеЌ WordPress, увеЎПЌлеМОе буЎет ПтправлеМП еЌу автПЌатОческО, ЎПпПлМОтельМых ЎействОй Ме требуется." ++ ++#: wp-admin/edit-form-advanced.php:277 ++#: wp-admin/edit-page-form.php:192 ++msgid "Custom Fields" ++msgstr "ПрПОзвПльМые пПля" ++ ++#: wp-admin/edit-form-advanced.php:292 ++#: wp-admin/edit-page-form.php:207 ++msgid "Custom fields can be used to add extra metadata to a post that you can use in your theme." ++msgstr "ПрПОзвПльМые пПля пПзвПляют ЎПбавлять к запОсяЌ ЌетаЎаММые, кПтПрые вы ЌПжете ОспПльзПвать в свПей теЌе." ++ ++#: wp-admin/edit-form-advanced.php:299 ++#: wp-admin/edit-page-form.php:212 ++msgid "Comments & Pings" ++msgstr "КПЌЌеМтарОО О ПтклОкО" ++ ++#: wp-admin/edit-form-advanced.php:304 ++#: wp-admin/edit-page-form.php:217 ++msgid "Allow Comments" ++msgstr "РазрешОть кПЌЌеМтарОО" ++ ++#: wp-admin/edit-form-advanced.php:305 ++#: wp-admin/edit-page-form.php:218 ++msgid "Allow Pings" ++msgstr "РазрешОть ПтклОкО" ++ ++#: wp-admin/edit-form-advanced.php:306 ++msgid "These settings apply to this post only. “Pings” are trackbacks and pingbacks." ++msgstr "ЭтО параЌетры влОяют тПлькП Ма ЎаММую запОсь. «ÐžÑ‚клОкО» — этП ПбратМые ссылкО О увеЎПЌлеМОя." ++ ++#: wp-admin/edit-form-advanced.php:311 ++msgid "Password Protect This Post" ++msgstr "ЗащОтОть эту запОсь парПлеЌ" ++ ++#: wp-admin/edit-form-advanced.php:314 ++msgid "Setting a password will require people who visit your blog to enter the above password to view this post and its comments." ++msgstr "УстаМПвка парПля пПтребует Пт пПсетОтелей вашегП блПга ввестО указаММый выше парПль Ўля прПсЌПтра запОсО О кПЌЌеМтарОев к Мей." ++ ++#: wp-admin/edit-form-advanced.php:319 ++msgid "Post Slug" ++msgstr "Ярлык запОсО" ++ ++#: wp-admin/edit-form-advanced.php:332 ++msgid "Post Author" ++msgstr "АвтПр запОсО" ++ ++#: wp-admin/edit-form-comment.php:3 ++#, php-format ++msgid "Editing Comment # %s" ++msgstr "ИзЌеМеМОе кПЌЌеМтарОя #%s" ++ ++#: wp-admin/edit-form-comment.php:20 ++msgid "View this Comment" ++msgstr "ПрПсЌПтр кПЌЌеМтарОя" ++ ++#: wp-admin/edit-form-comment.php:25 ++msgid "Approval Status" ++msgstr "Статус" ++ ++#: wp-admin/edit-form-comment.php:28 ++msgid "Approved" ++msgstr "ОЎПбреМ" ++ ++#: wp-admin/edit-form-comment.php:29 ++msgid "Moderated" ++msgstr "ОжОЎает ЌПЎерОрПваМОя" ++ ++#: wp-admin/edit-form-comment.php:30 ++#: wp-admin/includes/template.php:688 ++#: wp-content/plugins/akismet/akismet.php:639 ++msgid "Spam" ++msgstr "СпаЌ" ++ ++#: wp-admin/edit-form-comment.php:35 ++#, php-format ++msgid "%1$s at %2$s" ++msgstr "%1$s в %2$s" ++ ++#: wp-admin/edit-form-comment.php:49 ++msgid "" ++"You are about to delete this comment. \n" ++" 'Cancel' to stop, 'OK' to delete." ++msgstr "" ++"Вы сПбОраетесь уЎалОть этПт кПЌЌеМтарОй.\n" ++" «ÐžÑ‚ЌеМа» — ПставОть, «OK» — уЎалОть." ++ ++#: wp-admin/edit-form-comment.php:49 ++msgid "Delete comment" ++msgstr "УЎалОть кПЌЌеМтарОй" ++ ++#: wp-admin/edit-form-comment.php:58 ++msgid "Moderate Comments" ++msgstr "МПЎерОрПваМОе кПЌЌеМтарОев" ++ ++#: wp-admin/edit-form.php:14 ++msgid "Help on titles" ++msgstr "ППЌПщь пП загПлПвкаЌ" ++ ++#: wp-admin/edit-form.php:19 ++msgid "Help on categories" ++msgstr "ППЌПщь пП рубрОкаЌ" ++ ++#: wp-admin/edit-form.php:25 ++msgid "Help with post field" ++msgstr "ППЌПщь пП пПляЌ запОсО" ++ ++#: wp-admin/edit-form.php:45 ++#, php-format ++msgid "TrackBack a URL: (Separate multiple URLs with spaces.)" ++msgstr "URL Ўля ПбратМПй ссылкО: (ЕслО URL МескПлькП, разЎелОте Ох прПбелаЌО.)
    " ++ ++#: wp-admin/edit-form.php:48 ++#: wp-admin/sidebar.php:76 ++msgid "Save as Draft" ++msgstr "СПхраМОть как черМПвОк" ++ ++#: wp-admin/edit-form.php:49 ++msgid "Save as Private" ++msgstr "СПхраМОть как лОчМПе" ++ ++#: wp-admin/edit-form.php:56 ++msgid "Advanced Editing" ++msgstr "РасшОреММП реЎактОрПваМОе" ++ ++#: wp-admin/edit-link-categories.php:35 ++#: wp-admin/menu.php:45 ++msgid "Link Categories" ++msgstr "РубрОкО ссылПк" ++ ++#: wp-admin/edit-link-categories.php:48 ++msgid "Categories deleted." ++msgstr "РубрОкО уЎалеМы." ++ ++#: wp-admin/edit-link-categories.php:59 ++#, php-format ++msgid "Manage Link Categories (add new)" ++msgstr "УправлеМОе рубрОкаЌО ссылПк (ЎПбавОть МПвую)" ++ ++#: wp-admin/edit-link-categories.php:61 ++msgid "Manage Link Categories" ++msgstr "УправлеМОе рубрОкаЌО ссылПк" ++ ++#: wp-admin/edit-link-categories.php:107 ++#: wp-admin/menu.php:42 ++#: wp-includes/widgets.php:1372 ++msgid "Links" ++msgstr "СсылкО" ++ ++#: wp-admin/edit-link-categories.php:148 ++#, php-format ++msgid "Note:
    Deleting a category does not delete the links in that category. Instead, links that were only assigned to the deleted category are set to the category %s." ++msgstr "ПрОЌечаМОе:
    УЎалеМОе рубрОкО Ме прОвПЎОт к уЎалеМОю ссылПк Оз этПй рубрОкО. СсылкО Оз уЎалеММПй рубрОкО буЎут переЌещеМы в рубрОку %s." ++ ++#: wp-admin/edit-link-category-form.php:28 ++msgid "Category name" ++msgstr "НазваМОе рубрОкО" ++ ++#: wp-admin/edit-link-category-form.php:32 ++msgid "Category slug" ++msgstr "Ярлык рубрОкО" ++ ++#: wp-admin/edit-link-category-form.php:37 ++msgid "Description (optional)" ++msgstr "ОпОсаМОе (Ме ПбязательМП)" ++ ++#: wp-admin/edit-link-form.php:3 ++#: wp-admin/link.php:92 ++msgid "Edit Link" ++msgstr "ИзЌеМОть ссылку" ++ ++#: wp-admin/edit-link-form.php:8 ++#: wp-admin/edit-link-form.php:9 ++#: wp-admin/link-add.php:4 ++msgid "Add Link" ++msgstr "ДПбавОть ссылку" ++ ++#: wp-admin/edit-link-form.php:46 ++msgid "Visit Link" ++msgstr "ПерейтО пП ссылке" ++ ++#: wp-admin/edit-link-form.php:51 ++msgid "Keep this link private" ++msgstr "ОставОть ссылку лОчМПй" ++ ++#: wp-admin/edit-link-form.php:58 ++#, php-format ++msgid "" ++"You are about to delete this link '%s'\n" ++"'Cancel' to stop, 'OK' to delete." ++msgstr "" ++"Вы сПбОраетесь уЎалОть ссылку «%s»\n" ++"«ÐžÑ‚ЌеМа» — ПставОть, «OK» — уЎалОть." ++ ++#: wp-admin/edit-link-form.php:58 ++msgid "Delete link" ++msgstr "УЎалОть ÑÑÑ‹Ð»ÐºÑƒ" ++ ++#: wp-admin/edit-link-form.php:66 ++msgid "Manage All Links" ++msgstr "УправлеМОе всеЌО ссылкаЌО" ++ ++#: wp-admin/edit-link-form.php:67 ++msgid "Manage All Link Categories" ++msgstr "УправлеМОе всеЌО рубрОкаЌО ссылПк" ++ ++#: wp-admin/edit-link-form.php:68 ++#: wp-admin/import/dotclear.php:587 ++#: wp-admin/import/textpattern.php:523 ++msgid "Import Links" ++msgstr "ИЌпПрт ссылПк" ++ ++#: wp-admin/edit-link-form.php:80 ++msgid "Example: Nifty blogging software" ++msgstr "ПрОЌер: ОтлОчМая платфПрЌа Ўля блПга" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/link-manager.php:89 ++#: wp-admin/edit-link-form.php:85 ++msgid "Web Address" ++msgstr "АЎрес" ++ ++#: wp-admin/edit-link-form.php:88 ++msgid "Example: http://wordpress.org/ — don’t forget the http://" ++msgstr "ПрОЌер: http://wordpress.org/ — Ме забуЎьте http://" ++ ++#: wp-admin/edit-link-form.php:96 ++msgid "This will be shown when someone hovers over the link in the blogroll, or optionally below the link." ++msgstr "БуЎет пПказаМП, кПгЎа ктП-тП МавПЎОт курсПр Ма ссылку Оз спОска, ОлО (вПзЌПжМП) пПЎ ссылкПй." ++ ++#: wp-admin/edit-link-form.php:139 ++#: wp-includes/js/tinymce/langs/wp-langs.php:279 ++#: wp-includes/js/tinymce/langs/wp-langs.php:328 ++msgid "Target" ++msgstr "Њель" ++ ++#: wp-admin/edit-link-form.php:149 ++#: wp-admin/edit-link-form.php:183 ++#: wp-admin/edit-link-form.php:216 ++#: wp-admin/edit-link-form.php:239 ++msgid "none" ++msgstr "Птсутствует" ++ ++#: wp-admin/edit-link-form.php:150 ++msgid "Choose the frame your link targets. Essentially this means if you choose _blank your link will open in a new window." ++msgstr "УкажОте целевПе ПкМП Ўля вашей ссылкО. В частМПстО, еслО выбрать _blank, ссылка буЎет Пткрываться в МПвПЌ ПкМе." ++ ++#: wp-admin/edit-link-form.php:155 ++msgid "Link Relationship (XFN)" ++msgstr "ОтМПшеМОе к ссылке (XFN)" ++ ++#: wp-admin/edit-link-form.php:159 ++msgid "rel:" ++msgstr "rel:" ++ ++#: wp-admin/edit-link-form.php:166 ++msgid "identity" ++msgstr "лОчМПсть" ++ ++#: wp-admin/edit-link-form.php:170 ++msgid "another web address of mine" ++msgstr "ещё ПЎОМ ЌПй веб-аЎрес" ++ ++#: wp-admin/edit-link-form.php:174 ++msgid "friendship" ++msgstr "Ўружба" ++ ++#: wp-admin/edit-link-form.php:177 ++msgid "contact" ++msgstr "зМакПЌый" ++ ++#: wp-admin/edit-link-form.php:179 ++msgid "acquaintance" ++msgstr "прОятель" ++ ++#: wp-admin/edit-link-form.php:181 ++msgid "friend" ++msgstr "Ўруг" ++ ++#: wp-admin/edit-link-form.php:187 ++msgid "physical" ++msgstr "фОзОческО" ++ ++#: wp-admin/edit-link-form.php:191 ++msgid "met" ++msgstr "встречалОсь" ++ ++#: wp-admin/edit-link-form.php:195 ++msgid "professional" ++msgstr "прПфессОПМальМП" ++ ++#: wp-admin/edit-link-form.php:199 ++msgid "co-worker" ++msgstr "вЌесте рабПтаеЌ" ++ ++#: wp-admin/edit-link-form.php:202 ++msgid "colleague" ++msgstr "кПллега" ++ ++#: wp-admin/edit-link-form.php:206 ++msgid "geographical" ++msgstr "геПграфОческО" ++ ++#: wp-admin/edit-link-form.php:210 ++msgid "co-resident" ++msgstr "зеЌляк" ++ ++#: wp-admin/edit-link-form.php:213 ++msgid "neighbor" ++msgstr "сПсеЎ" ++ ++#: wp-admin/edit-link-form.php:220 ++msgid "family" ++msgstr "сеЌья" ++ ++#: wp-admin/edit-link-form.php:224 ++msgid "child" ++msgstr "ребеМПк" ++ ++#: wp-admin/edit-link-form.php:227 ++msgid "kin" ++msgstr "рПЎствеММОк" ++ ++#: wp-admin/edit-link-form.php:230 ++msgid "parent" ++msgstr "рПЎОтель" ++ ++#: wp-admin/edit-link-form.php:233 ++msgid "sibling" ++msgstr "брат, сестра" ++ ++#: wp-admin/edit-link-form.php:236 ++msgid "spouse" ++msgstr "супруг(а)" ++ ++#: wp-admin/edit-link-form.php:243 ++msgid "romantic" ++msgstr "рПЌаМтОка" ++ ++#: wp-admin/edit-link-form.php:247 ++msgid "muse" ++msgstr "Ќуза" ++ ++#: wp-admin/edit-link-form.php:250 ++msgid "crush" ++msgstr "страсть" ++ ++#: wp-admin/edit-link-form.php:253 ++msgid "date" ++msgstr "свОЎаМОя" ++ ++#: wp-admin/edit-link-form.php:256 ++msgid "sweetheart" ++msgstr "любПвь" ++ ++#: wp-admin/edit-link-form.php:263 ++msgid "If the link is to a person, you can specify your relationship with them using the above form. If you would like to learn more about the idea check out XFN." ++msgstr "ЕслО ссылка веЎёт Ма челПвека, с пПЌПщью этПй фПрЌы вы ЌПжете указать вашО ПтМПшеМОя. За ЎПпПлМОтельМПй ОМфПрЌацОей Пбращайтесь к XFN." ++ ++#: wp-admin/edit-link-form.php:268 ++#: wp-content/themes/default/functions.php:393 ++#: wp-includes/js/tinymce/langs/wp-langs.php:291 ++#: wp-includes/js/tinymce/wp-mce-help.php:163 ++msgid "Advanced" ++msgstr "ДПпПлМОтельМП" ++ ++#: wp-admin/edit-link-form.php:272 ++msgid "Image Address" ++msgstr "АЎрес картОМкО" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/edit-link-form.php:223 ++#: wp-admin/edit-link-form.php:276 ++msgid "RSS Address" ++msgstr "АЎрес RSS" ++ ++#: wp-admin/edit-link-form.php:280 ++msgid "Notes" ++msgstr "ЗаЌеткО" ++ ++#: wp-admin/edit-link-form.php:284 ++msgid "Rating" ++msgstr "РейтОМг" ++ ++#: wp-admin/edit-link-form.php:293 ++msgid "(Leave at 0 for no rating.)" ++msgstr "(Оставьте 0, еслО без рейтОМга)" ++ ++#: wp-admin/edit-page-form.php:4 ++#, php-format ++msgid "Page updated. Continue editing below or go back." ++msgstr "СтраМОца ПбМПвлеМа. МПжМП прПЎПлжОть реЎактОрПваМОе ОлО верМуться МазаЎ." ++ ++#: wp-admin/edit-page-form.php:7 ++msgid "Page updated." ++msgstr "СтраМОца ПбМПвлеМа." ++ ++#: wp-admin/edit-page-form.php:36 ++msgid "Write Page" ++msgstr "СПзЎать страМОцу" ++ ++#: wp-admin/edit-page-form.php:64 ++msgid "View this Page" ++msgstr "ППсЌПтреть страМОцу" ++ ++#: wp-admin/edit-page-form.php:66 ++#: wp-includes/script-loader.php:498 ++msgid "Preview this Page" ++msgstr "ПрПсЌПтреть страМОцу" ++ ++#: wp-admin/edit-page-form.php:81 ++msgid "Pending" ++msgstr "ОжОЎаМОе" ++ ++#: wp-admin/edit-page-form.php:88 ++msgid "Keep this page private" ++msgstr "ОставОть страМОцу лОчМПй" ++ ++#: wp-admin/edit-page-form.php:129 ++#, php-format ++msgid "" ++"You are about to delete this page '%s'\n" ++" 'Cancel' to stop, 'OK' to delete." ++msgstr "" ++"Вы сПбОраетесь уЎалОть страМОцу «%s»\n" ++" «ÐžÑ‚ЌеМа» — ПставОть, «OK» — уЎалОть." ++ ++#: wp-admin/edit-page-form.php:129 ++msgid "Delete page" ++msgstr "УЎалОть ÑÑ‚раМОцу" ++ ++#: wp-admin/edit-page-form.php:150 ++msgid "See Comments on this Page" ++msgstr "ППсЌПтреть кПЌЌеМтарОО к этПй страМОце" ++ ++#: wp-admin/edit-page-form.php:153 ++msgid "Manage All Pages" ++msgstr "УправлеМОе всеЌО страМОцаЌО" ++ ++#: wp-admin/edit-page-form.php:177 ++#: wp-admin/menu.php:35 ++#: wp-includes/script-loader.php:180 ++msgid "Page" ++msgstr "СтраМОца" ++ ++#: wp-admin/edit-page-form.php:219 ++msgid "These settings apply to this page only. “Pings” are trackbacks and pingbacks." ++msgstr "ЭтО параЌетры влОяют тПлькП Ма ЎаММую страМОцу. «ÐžÑ‚клОкО» — этП ПбратМые ссылкО О увеЎПЌлеМОя." ++ ++#: wp-admin/edit-page-form.php:224 ++msgid "Password Protect This Page" ++msgstr "ЗащОтОть страМОцу парПлеЌ" ++ ++#: wp-admin/edit-page-form.php:227 ++msgid "Setting a password will require people who visit your blog to enter the above password to view this page and its comments." ++msgstr "УстаМПвка парПля пПтребует Пт пПсетОтелей вашегП блПга ввестО указаММый выше парПль Ўля прПсЌПтра страМОцы О кПЌЌеМтарОев к Мей." ++ ++#: wp-admin/edit-page-form.php:232 ++msgid "Page Slug" ++msgstr "Ярлык страМОцы" ++ ++#: wp-admin/edit-page-form.php:239 ++msgid "Page Parent" ++msgstr "РПЎОтельская страМОца" ++ ++#: wp-admin/edit-page-form.php:242 ++msgid "Main Page (no parent)" ++msgstr "ГлавМая страМОца" ++ ++#: wp-admin/edit-page-form.php:245 ++msgid "You can arrange your pages in hierarchies, for example you could have an “About” page that has “Life Story” and “My Dog” pages under it. There are no limits to how deeply nested you can make pages." ++msgstr "Вы ЌПжете ПргаМОзПвать ОерархОю страМОц. НапрОЌер, ЌПжМП сПзЎать страМОцу «ÐžÐ±ÐŸ ЌМе», вМутрО кПтПрПй буЎут страМОцы «Ð‘ОПграфОя» О «ÐœÐŸÑ сПбака». Для страМОц Мет МОкакОх ПграМОчеМОй пП глубОМе влПжеММПстО." ++ ++#: wp-admin/edit-page-form.php:251 ++#: wp-admin/includes/file.php:3 ++msgid "Page Template" ++msgstr "КаблПМ страМОцы" ++ ++#: wp-admin/edit-page-form.php:254 ++msgid "Default Template" ++msgstr "БазПвый шаблПМ" ++ ++#: wp-admin/edit-page-form.php:257 ++msgid "Some themes have custom templates you can use for certain pages that might have additional features or custom layouts. If so, you’ll see them above." ++msgstr "В МекПтПрых теЌах Ўля ПпреЎелёММых страМОц ЌПгут быть спецОальМые шаблПМы с ЎПпПлМОтельМыЌО фуМкцОяЌО ОлО ЎругОЌ ЎОзайМПЌ. Вы сЌПжете увОЎеть Ох в этПЌ спОске." ++ ++#: wp-admin/edit-page-form.php:263 ++msgid "Page Order" ++msgstr "ППряЎПк страМОцы" ++ ++#: wp-admin/edit-page-form.php:266 ++msgid "Pages are usually ordered alphabetically, but you can put a number above to change the order pages appear in. (We know this is a little janky, it’ll be better in future releases.)" ++msgstr "СтраМОцы ПбычМП сПртОруются пП алфавОту, МП вы ЌПжете указать в этПЌ пПле чОслП, чтПбы ОзЌеМОть пПряЎПк сПртОрПвкО. (Мы зМаеЌ, чтП этП Ме сПвсеЌ уЎПбМП. В слеЎующОх версОях буЎет лучше.)" ++ ++#: wp-admin/edit-page-form.php:277 ++msgid "Page Author" ++msgstr "АвтПр страМОцы" ++ ++#: wp-admin/edit-pages.php:11 ++#: wp-admin/page.php:134 ++msgid "You are not allowed to delete this page." ++msgstr "ВаЌ Ме разрешеМП уЎалять эту страМОцу." ++ ++#: wp-admin/edit-pages.php:15 ++#: wp-admin/edit-pages.php:18 ++#: wp-admin/edit.php:15 ++#: wp-admin/edit.php:18 ++#: wp-admin/page.php:138 ++#: wp-admin/page.php:141 ++#: wp-admin/post.php:149 ++#: wp-admin/post.php:152 ++#: wp-admin/upload.php:18 ++msgid "Error in deleting..." ++msgstr "ОшОбка прО уЎалеМОО…" ++ ++#: wp-admin/edit-pages.php:34 ++#: wp-admin/menu.php:41 ++#: wp-includes/post-template.php:306 ++#: wp-includes/widgets.php:366 ++#: wp-includes/widgets.php:1360 ++#: wp-includes/widgets.php:1361 ++msgid "Pages" ++msgstr "СтраМОцы" ++ ++#: wp-admin/edit-pages.php:39 ++msgid "Published pages" ++msgstr "ОпублОкПваММые страМОцы" ++ ++#: wp-admin/edit-pages.php:39 ++#: wp-admin/includes/post.php:522 ++#, php-format ++msgid "Published (%s)" ++msgid_plural "Published (%s)" ++msgstr[0] "ОпублОкПваММая (%s)" ++msgstr[1] "ОпублОкПваММые (%s)" ++msgstr[2] "ОпублОкПваММые (%s)" ++ ++#: wp-admin/edit-pages.php:40 ++msgid "Scheduled pages" ++msgstr "ЗаплаМОрПваММые страМОцы" ++ ++#: wp-admin/edit-pages.php:40 ++#: wp-admin/includes/post.php:523 ++#, php-format ++msgid "Scheduled (%s)" ++msgid_plural "Scheduled (%s)" ++msgstr[0] "ЗаплаМОрПваММая (%s)" ++msgstr[1] "ЗаплаМОрПваММые (%s)" ++msgstr[2] "ЗаплаМОрПваММые (%s)" ++ ++#: wp-admin/edit-pages.php:41 ++msgid "Pending pages" ++msgstr "НепрПвереММые страМОцы" ++ ++#: wp-admin/edit-pages.php:41 ++#: wp-admin/includes/post.php:524 ++#, php-format ++msgid "Pending Review (%s)" ++msgid_plural "Pending Review (%s)" ++msgstr[0] "ОжОЎающая утвержЎеМОя (%s)" ++msgstr[1] "ОжОЎающОе утвержЎеМОя (%s)" ++msgstr[2] "ОжОЎающОе утвержЎеМОя (%s)" ++ ++#: wp-admin/edit-pages.php:42 ++#: wp-admin/includes/post.php:525 ++#: wp-includes/post.php:303 ++#: wp-includes/post.php:326 ++msgid "Draft" ++msgstr "ЧерМПвОк" ++ ++#: wp-admin/edit-pages.php:42 ++#: wp-admin/includes/post.php:525 ++msgid "Drafts|manage posts header" ++msgstr "ЧерМПвОкО|загПлПвПк управлеМОя запОсяЌО" ++ ++#: wp-admin/edit-pages.php:42 ++#: wp-admin/includes/post.php:525 ++#, php-format ++msgid "Draft (%s)" ++msgid_plural "Drafts (%s)" ++msgstr[0] "ЧерМПвОк (%s)" ++msgstr[1] "ЧерМПвОкО (%s)" ++msgstr[2] "ЧерМПвОкО (%s)" ++ ++#: wp-admin/edit-pages.php:43 ++#: wp-admin/includes/post.php:526 ++#: wp-includes/post.php:305 ++#: wp-includes/post.php:327 ++msgid "Private" ++msgstr "ЛОчМПе" ++ ++#: wp-admin/edit-pages.php:43 ++msgid "Private pages" ++msgstr "ЛОчМые страМОцы" ++ ++#: wp-admin/edit-pages.php:43 ++#: wp-admin/includes/post.php:526 ++#, php-format ++msgid "Private (%s)" ++msgid_plural "Private (%s)" ++msgstr[0] "ЛОчМая (%s)" ++msgstr[1] "ЛОчМые (%s)" ++msgstr[2] "ЛОчМые (%s)" ++ ++#: wp-admin/edit-pages.php:46 ++msgid "Manage Pages" ++msgstr "УправлеМОе страМОцаЌО" ++ ++#: wp-admin/edit-pages.php:68 ++#: wp-admin/edit.php:74 ++#: wp-admin/upload.php:77 ++#, php-format ++msgid "matching “%s”" ++msgstr "пП запрПсу «%s»" ++ ++#: wp-admin/edit-pages.php:72 ++#: wp-admin/edit.php:71 ++#: wp-admin/upload.php:74 ++#, php-format ++msgid "by %s" ++msgstr "Пт %s" ++ ++#: wp-admin/edit-pages.php:74 ++#, php-format ++msgid "%1$s%2$s%3$s|You can reorder these: 1: Pages, 2: by {s}, 3: matching {s}" ++msgstr "%1$s%2$s%3$s|АргуЌеМты ЌПжМП ЌеМять ЌестаЌО: 1: СтраМОцы, 2: Пт {s}, 3: пП запрПсу {s}" ++ ++#: wp-admin/edit-pages.php:85 ++msgid "All Pages" ++msgstr "Все страМОцы" ++ ++#: wp-admin/edit-pages.php:108 ++msgid "Your page has been saved." ++msgstr "Ваша страМОца успешМП сПхраМеМа." ++ ++#: wp-admin/edit-pages.php:108 ++#: wp-admin/page-new.php:17 ++msgid "View page" ++msgstr "ПрПсЌПтреть страМОцу" ++ ++#: wp-admin/edit-pages.php:108 ++msgid "Edit page" ++msgstr "РеЎактОрПвать страМОцу" ++ ++#: wp-admin/edit-pages.php:115 ++msgid "Search Pages" ++msgstr "ППОск страМОц" ++ ++#: wp-admin/edit-pages.php:165 ++msgid "No pages found." ++msgstr "НО ПЎМПй страМОцы Ме МайЎеМП." ++ ++#: wp-admin/edit.php:11 ++#: wp-admin/post.php:145 ++#: wp-admin/upload.php:14 ++msgid "You are not allowed to delete this post." ++msgstr "ВаЌ Ме разрешеМП уЎалять эту запОсь." ++ ++#: wp-admin/edit.php:54 ++#: wp-admin/upload.php:57 ++#: wp-content/themes/classic/comments-popup.php:9 ++#, php-format ++msgid "Comments on %s" ++msgstr "КПЌЌеМтарОО: %s" ++ ++#: wp-admin/edit.php:56 ++msgid "Manage Posts|manage posts header" ++msgstr "УправлеМОе запОсяЌО|загПлПвПк управлеМОя запОсяЌО" ++ ++#: wp-admin/edit.php:60 ++#: wp-admin/upload.php:63 ++#, php-format ++msgid "Previous %s" ++msgstr "ПреЎыЎущОе %s" ++ ++#: wp-admin/edit.php:60 ++#: wp-admin/upload.php:63 ++#, php-format ++msgid "Latest %s" ++msgstr "СвежОе %s" ++ ++#: wp-admin/edit.php:68 ++#: wp-admin/upload.php:71 ++msgid "by other authors" ++msgstr "Пт ЎругОх автПрПв" ++ ++#: wp-admin/edit.php:75 ++#: wp-admin/upload.php:78 ++#, php-format ++msgid "in “%s”" ++msgstr "в рубрОке «%s»" ++ ++#: wp-admin/edit.php:76 ++#: wp-admin/upload.php:79 ++#, php-format ++msgid "tagged with “%s”" ++msgstr "с ЌеткПй «%s»" ++ ++#: wp-admin/edit.php:77 ++#: wp-admin/upload.php:80 ++#, php-format ++msgid "during %s" ++msgstr "за %s" ++ ++#: wp-admin/edit.php:78 ++#: wp-admin/upload.php:81 ++#, php-format ++msgid "%1$s%2$s%3$s%4$s%5$s%6$s|You can reorder these: 1: Posts, 2: by {s}, 3: matching {s}, 4: in {s}, 5: tagged with {s}, 6: during {s}" ++msgstr "%1$s%2$s%3$s%4$s%5$s%6$s|АргуЌеМты ЌПжМП ЌеМять ЌестаЌО: 1: ЗапОсО, 2: Пт {s}, 3: пП запрПсу {s}, 4: в рубрОке {s}, 5: с ЌеткПй {s}, 6: за {s}" ++ ++#: wp-admin/edit.php:87 ++msgid "All Posts" ++msgstr "Все запОсО" ++ ++#: wp-admin/edit.php:113 ++#: wp-admin/post-new.php:28 ++msgid "Your post has been saved." ++msgstr "Ваша запОсь успешМП сПхраМеМа." ++ ++#: wp-admin/edit.php:113 ++#: wp-admin/post-new.php:28 ++msgid "View post" ++msgstr "ПрПсЌПтреть запОсь" ++ ++#: wp-admin/edit.php:113 ++#: wp-admin/post-new.php:28 ++#: wp-includes/link-template.php:484 ++msgid "Edit post" ++msgstr "РеЎактОрПвать запОсь" ++ ++#: wp-admin/edit.php:120 ++msgid "Search Posts" ++msgstr "ППОск запОсей" ++ ++#: wp-admin/edit.php:150 ++#: wp-admin/includes/media.php:1023 ++#: wp-admin/upload.php:162 ++msgid "Show all dates" ++msgstr "ППказать все Ўаты" ++ ++#: wp-admin/edit.php:170 ++msgid "View all categories" ++msgstr "ППсЌПтреть все рубрОкО" ++ ++#: wp-admin/edit.php:172 ++#: wp-admin/link-manager.php:110 ++#: wp-admin/upload.php:182 ++msgid "Filter" ++msgstr "ЀОльтр" ++ ++#: wp-admin/edit-post-rows.php:76 ++msgid " — Protected" ++msgstr " — ЗащОщеМП" ++ ++#: wp-admin/edit-post-rows.php:76 ++#: wp-admin/includes/template.php:404 ++msgid " — Private" ++msgstr " — ЛОчМПе" ++ ++#: wp-admin/edit-post-rows.php:90 ++#: wp-admin/includes/upgrade.php:64 ++#: wp-admin/includes/upgrade.php:65 ++#: wp-includes/category-template.php:116 ++msgid "Uncategorized" ++msgstr "Без рубрОкО" ++ ++#: wp-admin/edit-post-rows.php:106 ++msgid "No Tags" ++msgstr "МетПк Мет" ++ ++#: wp-admin/edit-post-rows.php:137 ++#: wp-admin/includes/template.php:433 ++#, php-format ++msgid "View \"%s\"" ++msgstr "ПрПсЌПтреть «%s»" ++ ++#: wp-admin/edit-post-rows.php:162 ++msgid "View" ++msgstr "ПрПсЌПтр" ++ ++#: wp-admin/edit-tag-form.php:3 ++#: wp-admin/edit-tag-form.php:4 ++msgid "Edit Tag" ++msgstr "ИзЌеМОть Ќетку" ++ ++#: wp-admin/edit-tag-form.php:10 ++#: wp-admin/edit-tag-form.php:11 ++msgid "Add Tag" ++msgstr "ДПбавОть Ќетку" ++ ++#: wp-admin/edit-tag-form.php:28 ++msgid "Tag name" ++msgstr "НазваМОе ЌеткО" ++ ++#: wp-admin/edit-tag-form.php:30 ++msgid "The name is how the tag appears on your site." ++msgstr "НазваМОе ПпреЎеляет, как Ќетка буЎет ПтПбражаться Ма вашеЌ сайте." ++ ++#: wp-admin/edit-tag-form.php:33 ++msgid "Tag slug" ++msgstr "Ярлык ЌеткО" ++ ++#: wp-admin/edit-tags.php:113 ++msgid "Tag added." ++msgstr "Метка ЎПбавлеМа." ++ ++#: wp-admin/edit-tags.php:114 ++msgid "Tag deleted." ++msgstr "Метка уЎалеМа." ++ ++#: wp-admin/edit-tags.php:115 ++msgid "Tag updated." ++msgstr "Метка ОзЌеМеМа." ++ ++#: wp-admin/edit-tags.php:116 ++msgid "Tag not added." ++msgstr "Метка Ме ЎПбавлеМа." ++ ++#: wp-admin/edit-tags.php:117 ++msgid "Tag not updated." ++msgstr "Метка Ме ПбМПвлеМа" ++ ++#: wp-admin/edit-tags.php:118 ++msgid "Tags deleted." ++msgstr "МеткО уЎалеМы." ++ ++#: wp-admin/edit-tags.php:130 ++#, php-format ++msgid "Manage Tags (add new)" ++msgstr "УправлеМОе ЌеткаЌО (ЎПбавОть МПвую)" ++ ++#: wp-admin/edit-tags.php:132 ++msgid "Manage Tags" ++msgstr "УправлеМОе ЌеткаЌО" ++ ++#: wp-admin/edit-tags.php:137 ++msgid "Search Tags" ++msgstr "ППОск ЌетПк" ++ ++#: wp-admin/export.php:4 ++#: wp-admin/export.php:16 ++#: wp-admin/menu.php:48 ++msgid "Export" ++msgstr "ЭкспПрт" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/export.php:15 ++#: wp-admin/export.php:17 ++msgid "When you click the button below WordPress will create an XML file for you to save to your computer." ++msgstr "КПгЎа вы МажЌете кМПпку, WordPress сПзЎаст XML-файл, кПтПрый ЌПжМП буЎет сПхраМОть Ма кПЌпьютере." ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/export.php:16 ++#: wp-admin/export.php:18 ++msgid "This format, which we call WordPress eXtended RSS or WXR, will contain your posts, pages, comments, custom fields, categories, and tags." ++msgstr "ЭтПт фПрЌат, кПтПрый Ќы МазвалО расшОреММыЌ RSS Ўля WordPress (WXR), буЎет сПЎержать все вашО запОсО, прПОзвПльМые пПля, рубрОкО О ЌеткО." ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/export.php:17 ++#: wp-admin/export.php:19 ++msgid "Once you’ve saved the download file, you can use the Import function on another WordPress blog to import this blog." ++msgstr "КПгЎа вы сПхраМОте файл, ЌПжМП ОспПльзПвать фуМкцОю ОЌпПрта в ЎругПЌ блПге Ма WordPress, чтПбы ОЌпПртОрПвать этПт блПг." ++ ++#: wp-admin/export.php:21 ++msgid "Options" ++msgstr "ПараЌетры" ++ ++#: wp-admin/export.php:25 ++msgid "Restrict Author" ++msgstr "ОграМОчОть автПрПЌ" ++ ++#: wp-admin/export.php:28 ++msgid "All Authors" ++msgstr "Все автПры" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/export.php:38 ++#: wp-admin/export.php:40 ++msgid "Download Export File" ++msgstr "Скачать файл экспПрта" ++ ++#: wp-admin/import/blogger.php:13 ++msgid "Import Blogger" ++msgstr "ИЌпПрт Оз Blogger" ++ ++#: wp-admin/import/blogger.php:14 ++msgid "Howdy! This importer allows you to import posts and comments from your Blogger account into your WordPress blog." ++msgstr "ПрОвет! ЭтПт скрОпт пПзвПляет ОЌпПртОрПвать запОсО О кПЌЌеМтарОО Оз аккауМта Ма Blogger в ваш блПг Ма WordPress." ++ ++#: wp-admin/import/blogger.php:15 ++msgid "To use this importer, you must have a Google account and an upgraded (New, was Beta) blog hosted on blogspot.com or a custom domain (not FTP)." ++msgstr "ЧтПбы ОспПльзПвать этПт скрОпт ОЌпПрта, вы ЎПлжМы ОЌеть учётМую запОсь Google О ПбМПвлеММый блПг Ма blogspot.com ОлО Ма свПёЌ ЎПЌеМе (Ме FTP)." ++ ++#: wp-admin/import/blogger.php:16 ++msgid "The first thing you need to do is tell Blogger to let WordPress access your account. You will be sent back here after providing authorization." ++msgstr "ПервыЌ ЎелПЌ ваЌ МужМП разрешОть ЎПступ WordPress к вашеЌу аккауМту в Blogger. ППсле автПрОзацОО вы Пкажетесь Ма этПй страМОце сМПва." ++ ++#: wp-admin/import/blogger.php:17 ++msgid "Authorize" ++msgstr "АвтПрОзПваться" ++ ++#: wp-admin/import/blogger.php:51 ++msgid "Authorization failed" ++msgstr "АвтПрОзацОя Ме уЎалась" ++ ++#: wp-admin/import/blogger.php:52 ++msgid "Something went wrong. If the problem persists, send this info to support:" ++msgstr "ПрПОзПшла какая-тП ПшОбка. ЕслО прПблеЌа пПвтПрОтся, Пправьте эту ОМфПрЌацОю в службу пПЎЎержкО:" ++ ++#: wp-admin/import/blogger.php:109 ++msgid "Trouble signing in" ++msgstr "ПрПблеЌа прО вхПЎе" ++ ++#: wp-admin/import/blogger.php:110 ++msgid "We were not able to gain access to your account. Try starting over." ++msgstr "Мы Ме ЌПжеЌ пПлучОть ЎПступ к вашей учётМПй запОсО. ППпрПбуйте ещё раз." ++ ++#: wp-admin/import/blogger.php:143 ++msgid "No blogs found" ++msgstr "НО ПЎМПгП блПга Ме МайЎеМП" ++ ++#: wp-admin/import/blogger.php:144 ++msgid "We were able to log in but there were no blogs. Try a different account next time." ++msgstr "Мы ЌПжеЌ вПйтО, МП пПхПже, чтП блПгПв Мет. ППпрПбуйте Ўругую учётМую запОсь." ++ ++#: wp-admin/import/blogger.php:152 ++#: wp-admin/upgrade.php:30 ++#: wp-admin/upgrade.php:57 ++msgid "Continue" ++msgstr "ПрПЎПлжОть" ++ ++#: wp-admin/import/blogger.php:153 ++#: wp-admin/link-import.php:73 ++msgid "Importing..." ++msgstr "ИЌпПртОруеЌ…" ++ ++#: wp-admin/import/blogger.php:154 ++msgid "Set Authors" ++msgstr "Указать автПрПв" ++ ++#: wp-admin/import/blogger.php:155 ++msgid "Preparing author mapping form..." ++msgstr "ППЎгПтПвка фПрЌы устаМПвкО автПрства…" ++ ++#: wp-admin/import/blogger.php:156 ++msgid "Final Step: Author Mapping" ++msgstr "ЗаключОтельМый шаг: УстаМПвка автПрства" ++ ++#: wp-admin/import/blogger.php:157 ++msgid "Nothing was imported. Had you already imported this blog?" ++msgstr "НОчегП Ме ОЌпПртОрПваМП. ВПзЌПжМП, вы уже ОЌпПртОрПвалО этПт блПг?" ++ ++#: wp-admin/import/blogger.php:158 ++msgid "Blogger Blogs" ++msgstr "БлПгО в Blogger" ++ ++#: wp-admin/import/blogger.php:159 ++msgid "Blog Name" ++msgstr "НазваМОе блПга" ++ ++#: wp-admin/import/blogger.php:160 ++msgid "Blog URL" ++msgstr "АЎрес блПга (URL)" ++ ++#: wp-admin/import/blogger.php:161 ++msgid "The Magic Button" ++msgstr "ВПлшебМая кМПпка" ++ ++#: wp-admin/import/blogger.php:163 ++#: wp-admin/includes/file.php:3 ++#: wp-admin/menu.php:38 ++#: wp-content/plugins/akismet/akismet.php:488 ++#: wp-content/themes/classic/comments-popup.php:22 ++msgid "Comments" ++msgstr "КПЌЌеМтарОО" ++ ++#: wp-admin/import/blogger.php:164 ++msgid "This feature requires Javascript but it seems to be disabled. Please enable Javascript and then reload this page. Don't worry, you can turn it back off when you're done." ++msgstr "Эта фуМкцОя требует Javascript, а ПМ, пПхПже, выключеМ. ППжалуйста, включОте Javascript О перезагрузОте эту страМОцу. Не беспПкПйтесь, вы сЌПжете сМПва ПтключОть егП, кПгЎа всё буЎет гПтПвП." ++ ++#: wp-admin/import/blogger.php:611 ++msgid "All posts were imported with the current user as author. Use this form to move each Blogger user's posts to a different WordPress user. You may add users and then return to this page and complete the user mapping. This form may be used as many times as you like until you activate the \"Restart\" function below." ++msgstr "Все запОсО ОЌпПртОрПваМы с текущОЌ пПльзПвателеЌ в качестве автПра. ИспПльзуйте эту фПрЌу, чтПбы запОсО кажЎПгП пПльзПвателя Blogger пПставОть в сППтветствОе пПльзПвателю WordPress. МПжМП ЎПбавОть пПльзПвателей О затеЌ верМуться Ма эту страМОцу. Эта фПрЌа ЌПжет быть ОспПльзПваМа стПлькП раз, скПлькП МеПбхПЎОЌП, ЎП тех пПр, пПка вы Ме актОвОруете фуМкцОю «ÐŸÐµÑ€ÐµÐ·Ð°Ð¿ÑƒÑÐº&raguo;." ++ ++#: wp-admin/import/blogger.php:612 ++msgid "Author mapping" ++msgstr "УстаМПвка автПрства" ++ ++#: wp-admin/import/blogger.php:614 ++msgid "Blogger username" ++msgstr "ИЌя пПльзПвателя в Blogger" ++ ++#: wp-admin/import/blogger.php:615 ++msgid "WordPress login" ++msgstr "ЛПгОМ WordPress" ++ ++#: wp-admin/import/blogger.php:673 ++msgid "Could not connect to https://www.google.com" ++msgstr "Нет связО с https://www.google.com" ++ ++#: wp-admin/import/blogger.php:674 ++msgid "There was a problem opening a secure connection to Google. This is what went wrong:" ++msgstr "ВПзМОкла прПблеЌа прО устаМПвке защОщеММПгП сПеЎОМеМОя с Google. СлучОлПсь вПт чтП:" ++ ++#: wp-admin/import/blogger.php:685 ++#, php-format ++msgid "Could not connect to %s" ++msgstr "Не уЎалПсь пПЎключОться к %s" ++ ++#: wp-admin/import/blogger.php:686 ++msgid "There was a problem opening a connection to Blogger. This is what went wrong:" ++msgstr "ВПзМОкла прПблеЌа прО устаМПвке сПеЎОМеМОя с Blogger. СлучОлПсь вПт чтП:" ++ ++#: wp-admin/import/blogger.php:752 ++msgid "Congratulations!" ++msgstr "ППзЎравляеЌ!" ++ ++#: wp-admin/import/blogger.php:752 ++msgid "Now that you have imported your Blogger blog into WordPress, what are you going to do? Here are some suggestions:" ++msgstr "ППсле ОЌпПрта сПЎержОЌПгП Blogger в ваш WordPress — чтП Ўелать Ўальше? ВПт МескПлькП преЎлПжеМОй:" ++ ++#: wp-admin/import/blogger.php:752 ++msgid "That was hard work! Take a break." ++msgstr "ЭтП была тяжелая рабПтеМка! СЎелайте перерыв." ++ ++#: wp-admin/import/blogger.php:754 ++msgid "In case you haven't done it already, you can import the posts from your other blogs:" ++msgstr "ЕслО вы Ме сЎелалО этПгП раМьше, сЎелайте сейчас. ИЌпПртОруйте сПЎержОЌПе Оз ЎругОх блПгПв:" ++ ++#: wp-admin/import/blogger.php:756 ++#, php-format ++msgid "Go to Authors & Users, where you can modify the new user(s) or delete them. If you want to make all of the imported posts yours, you will be given that option when you delete the new authors." ++msgstr "ПрПйЎОте пП ссылке АвтПры & пПльзПвателО, гЎе вы сЌПжете ПтреЎактОрПвать ЎаММые пПльзПвателей ОлО уЎалОть Ох.ЕслО вы хПтОте сЎелать все запОсО Пт свПегП ОЌеМО, вы сЌПжете этП сЎелать, кПгЎа уЎалОте всех МПвых автПрПв." ++ ++#: wp-admin/import/blogger.php:757 ++msgid "For security, click the link below to reset this importer." ++msgstr "В целях ПбеспечеМОя безПпасМПстО, МажЌОте Ма ссылку, чтПбы ПчОстОть параЌетры." ++ ++#: wp-admin/import/blogger.php:788 ++msgid "Restart" ++msgstr "Перезапуск" ++ ++#: wp-admin/import/blogger.php:789 ++msgid "We have saved some information about your Blogger account in your WordPress database. Clearing this information will allow you to start over. Restarting will not affect any posts you have already imported. If you attempt to re-import a blog, duplicate posts and comments will be skipped." ++msgstr "Мы сПхраМОлО МекПтПрую ОМфПрЌацОю Пб учётМПй запОсО Blogger в базе ЎаММых WordPress. УЎалеМОе этПй ОМфПрЌацОО пПзвПлОт ваЌ Мачать всё заМПвП. ПрО этПЌ запОсО, кПтПрые вы уже ОЌпПртОрПвалО, Ме буЎут затрПМуты. ЕслО вы захПтОте ОЌпПртОрПвать блПг заМПвП, Ќы прПпустОЌ пПвтПряющОеся запОсО О кПЌЌеМтарОО." ++ ++#: wp-admin/import/blogger.php:790 ++msgid "Clear account information" ++msgstr "УЎалОть ОМфПрЌацОю Пб аккауМте" ++ ++#: wp-admin/import/blogger.php:840 ++msgid "Blogger" ++msgstr "Blogger" ++ ++#: wp-admin/import/blogger.php:840 ++msgid "Import posts, comments, and users from a Blogger blog." ++msgstr "ИЌпПрт запОсей, кПЌЌеМтарОев О пПльзПвателей Оз Blogger." ++ ++#: wp-admin/import/blogware.php:11 ++msgid "Import Blogware" ++msgstr "ИЌпПрт Оз Blogware" ++ ++#: wp-admin/import/blogware.php:26 ++msgid "Howdy! This importer allows you to extract posts from Blogware XML export file into your blog. Pick a Blogware file to upload and click Import." ++msgstr "ПрОвет! ЭтПт скрОпт пПзвПлОт Озвлечь запОсО Оз XML-файла Blogware в ваш блПг. ВыберОте файл Blogware Ўля загрузкО О МажЌОте «Ð˜ÐŒÐ¿ÐŸÑ€Ñ‚»." ++ ++#: wp-admin/import/blogware.php:89 ++#: wp-admin/import/livejournal.php:69 ++#: wp-admin/import/mt.php:210 ++#: wp-admin/import/wordpress.php:387 ++#, php-format ++msgid "Post %s already exists." ++msgstr "ЗапОсь %s уже существует." ++ ++#: wp-admin/import/blogware.php:91 ++#: wp-admin/import/livejournal.php:71 ++#: wp-admin/import/mt.php:213 ++#: wp-admin/import/wordpress.php:418 ++#, php-format ++msgid "Importing post %s..." ++msgstr "ИЌпПрт запОсО %s…" ++ ++#: wp-admin/import/blogware.php:98 ++#: wp-admin/import/livejournal.php:77 ++#: wp-admin/import/rss.php:116 ++msgid "Couldn't get post ID" ++msgstr "Не ЌПгу пПлучОть ID запОсО" ++ ++#: wp-admin/import/blogware.php:144 ++#: wp-includes/pluggable.php:892 ++#, php-format ++msgid "%s comment" ++msgid_plural "%s comments" ++msgstr[0] "%s кПЌЌеМтарОй" ++msgstr[1] "%s кПЌЌеМтарОя" ++msgstr[2] "%s кПЌЌеМтарОев" ++ ++#: wp-admin/import/blogware.php:167 ++#: wp-admin/import/livejournal.php:144 ++#: wp-admin/import/mt.php:423 ++#: wp-admin/import/rss.php:147 ++#, php-format ++msgid "All done. Have fun!" ++msgstr "ГПтПвП. НаслажЎайтесь!" ++ ++#: wp-admin/import/blogware.php:200 ++msgid "Blogware" ++msgstr "Blogware" ++ ++#: wp-admin/import/blogware.php:200 ++msgid "Import posts from Blogware." ++msgstr "ИЌпПрт запОсей Оз Blogware." ++ ++#: wp-admin/import/btt.php:7 ++msgid "Import Bunny’s Technorati Tags" ++msgstr "ИЌпПрт ЌетПк плагОМа Bunny’s Technorati Tags" ++ ++#: wp-admin/import/btt.php:8 ++#: wp-admin/import/dotclear.php:116 ++#: wp-admin/import/jkw.php:8 ++#: wp-admin/import/stp.php:6 ++#: wp-admin/import/textpattern.php:33 ++#: wp-admin/import/utw.php:8 ++msgid "Steps may take a few minutes depending on the size of your database. Please be patient." ++msgstr "ЭтП ЌПжет заМять МекПтПрПе вреЌя в завОсОЌПстО Пт разЌера базы. НаберОтесь терпеМОя." ++ ++#: wp-admin/import/btt.php:17 ++msgid "Howdy! This imports tags from Bunny’s Technorati Tags into WordPress tags." ++msgstr "ПрОвет! ЭтПт скрОпт ОЌпПртОрует ЌеткО плагОМа Bunny’s Technorati Tags в сОстеЌу ЌетПк WordPress." ++ ++#: wp-admin/import/btt.php:18 ++msgid "This is suitable for Bunny’s Technorati Tags version 0.6." ++msgstr "ППЎЎержОвается Bunny’s Technorati Tags версОО 0.6." ++ ++#: wp-admin/import/btt.php:19 ++msgid "All existing Bunny’s Technorati Tags will be removed after import." ++msgstr "Все существующОе ЌеткО плагОМа Bunny’s Technorati Tags пПсле ОЌпПрта буЎут уЎалеМы." ++ ++#: wp-admin/import/btt.php:20 ++#: wp-admin/import/jkw.php:20 ++#: wp-admin/import/stp.php:18 ++#: wp-admin/import/utw.php:20 ++msgid "Don’t be stupid - backup your database before proceeding!" ++msgstr "ВП ОзбежаМОе — переЎ прПЎПлжеМОеЌ сЎелайте резервМую кПпОю базы ЎаММых!" ++ ++#: wp-admin/import/btt.php:23 ++msgid "Import Tags" ++msgstr "ИЌпПртОрПвать ЌеткО" ++ ++#: wp-admin/import/btt.php:62 ++msgid "Reading Bunny’s Technorati Tags…" ++msgstr "ЧтеМОе ЌетПк плагОМа Bunny’s Technorati Tags…" ++ ++#: wp-admin/import/btt.php:67 ++#: wp-admin/import/jkw.php:83 ++#: wp-admin/import/jkw.php:124 ++#: wp-admin/import/utw.php:72 ++msgid "No Tags Found!" ++msgstr "НО ПЎМПй ЌеткО Ме МайЎеМП!" ++ ++#: wp-admin/import/btt.php:71 ++#: wp-admin/import/jkw.php:87 ++#, php-format ++msgid "Done! %s post with tags were read." ++msgid_plural "Done! %s posts with tags were read." ++msgstr[0] "ГПтПвП! %1$s запОсь с ЌеткаЌО ОЌпПртОрПваМа." ++msgstr[1] "ГПтПвП! %1$s запОсО с ЌеткаЌО ОЌпПртОрПваМы." ++msgstr[2] "ГПтПвП! %1$s запОсей с ЌеткаЌО ОЌпПртОрПваМП." ++ ++#: wp-admin/import/btt.php:93 ++#: wp-admin/import/jkw.php:109 ++#: wp-admin/import/jkw.php:142 ++msgid "Next" ++msgstr "Далее" ++ ++#: wp-admin/import/btt.php:100 ++#: wp-admin/import/jkw.php:163 ++#: wp-admin/import/stp.php:139 ++#: wp-admin/import/utw.php:250 ++msgid "Import Complete!" ++msgstr "ИЌпПртОрПваМОе завершеМП!" ++ ++#: wp-admin/import/btt.php:113 ++msgid "Import Bunny’s Technorati Tags into WordPress tags." ++msgstr "ИЌпПрт ЌетПк плагОМа Bunny’s Technorati Tags в сОстеЌу ЌетПк WordPress." ++ ++#: wp-admin/import/dotclear.php:115 ++msgid "Import DotClear" ++msgstr "ИЌпПрт Оз DotClear" ++ ++#: wp-admin/import/dotclear.php:126 ++msgid "Howdy! This importer allows you to extract posts from a DotClear database into your blog. Mileage may vary." ++msgstr "ПрОвет! ЭтПт скрОпт пПзвПляет Озвлечь запОсО Оз DotClear в ваш блПг. ВсякПе случается." ++ ++#: wp-admin/import/dotclear.php:127 ++msgid "Your DotClear Configuration settings are as follows:" ++msgstr "ВашО МастрПйкО DotСlear:" ++ ++#: wp-admin/import/dotclear.php:131 ++msgid "Import Categories" ++msgstr "ИЌпПртОрПвать рубрОкО" ++ ++#: wp-admin/import/dotclear.php:204 ++#: wp-admin/import/textpattern.php:156 ++msgid "Importing Categories..." ++msgstr "ИЌпПрт рубрОк…" ++ ++#: wp-admin/import/dotclear.php:228 ++#: wp-admin/import/textpattern.php:180 ++#, php-format ++msgid "Done! %1$s category imported." ++msgid_plural "Done! %1$s categories imported." ++msgstr[0] "ГПтПвП! %1$s рубрОка ОЌпПртОрПваМа." ++msgstr[1] "ГПтПвП! %1$s рубрОкО ОЌпПртОрПваМа." ++msgstr[2] "ГПтПвП! %1$s рубрОк ОЌпПртОрПваМП." ++ ++#: wp-admin/import/dotclear.php:231 ++#: wp-admin/import/textpattern.php:183 ++msgid "No Categories to Import!" ++msgstr "Нет рубрОк Ўля ОЌпПрта!" ++ ++#: wp-admin/import/dotclear.php:245 ++#: wp-admin/import/textpattern.php:197 ++msgid "Importing Users..." ++msgstr "ИЌпПрт пПльзПвателей…" ++ ++#: wp-admin/import/dotclear.php:302 ++#: wp-admin/import/textpattern.php:252 ++#, php-format ++msgid "Done! %1$s users imported." ++msgstr "ГПтПвП! ППльзПвателО (%1$s) ОЌпПртОрПваМы." ++ ++#: wp-admin/import/dotclear.php:306 ++#: wp-admin/import/textpattern.php:256 ++msgid "No Users to Import!" ++msgstr "Нет пПльзПвателей Ўля ОЌпПрта!" ++ ++#: wp-admin/import/dotclear.php:322 ++#: wp-admin/import/textpattern.php:272 ++msgid "Importing Posts..." ++msgstr "ИЌпПрт запОсей…" ++ ++#: wp-admin/import/dotclear.php:405 ++#: wp-admin/import/textpattern.php:346 ++#, php-format ++msgid "Done! %1$s posts imported." ++msgstr "ГПтПвП! ЗапОсО (%1$s) ОЌпПртОрПваМы." ++ ++#: wp-admin/import/dotclear.php:420 ++#: wp-admin/import/textpattern.php:361 ++msgid "Importing Comments..." ++msgstr "ИЌпПрт кПЌЌеМтарОев…" ++ ++#: wp-admin/import/dotclear.php:475 ++#: wp-admin/import/textpattern.php:413 ++#, php-format ++msgid "Done! %1$s comments imported." ++msgstr "ГПтПвП! КПЌЌеМтарОО (%1$s) ОЌпПртОрПваМы." ++ ++#: wp-admin/import/dotclear.php:478 ++#: wp-admin/import/textpattern.php:416 ++msgid "No Comments to Import!" ++msgstr "Нет кПЌЌеМтарОев Ўля ОЌпПрта!" ++ ++#: wp-admin/import/dotclear.php:491 ++#: wp-admin/import/textpattern.php:429 ++msgid "Importing Links..." ++msgstr "ИЌпПрт ссылПк…" ++ ++#: wp-admin/import/dotclear.php:529 ++#, php-format ++msgid "Done! %s link or link category imported." ++msgid_plural "Done! %s links or link categories imported." ++msgstr[0] "ГПтПвП! %1$s ссылка ОлО рубрОка ссылПк ОЌпПртОрПваМа." ++msgstr[1] "ГПтПвП! %1$s ссылкО ОлО рубрОкО ссылПк ОЌпПртОрПваМы." ++msgstr[2] "ГПтПвП! %1$s ссылПк ОлО рубрОк ссылПк ОЌпПртОрПваМП.." ++ ++#: wp-admin/import/dotclear.php:533 ++#: wp-admin/import/textpattern.php:469 ++msgid "No Links to Import!" ++msgstr "Нет ссылПк Ўля ОЌпПрта!" ++ ++#: wp-admin/import/dotclear.php:548 ++#: wp-admin/import/textpattern.php:484 ++msgid "Import Users" ++msgstr "ИЌпПрт пПльзПвателей" ++ ++#: wp-admin/import/dotclear.php:561 ++#: wp-admin/import/textpattern.php:497 ++msgid "Import Posts" ++msgstr "ИЌпПрт запОсей" ++ ++#: wp-admin/import/dotclear.php:575 ++#: wp-admin/import/textpattern.php:511 ++msgid "Import Comments" ++msgstr "ИЌпПрт кПЌЌеМтарОев" ++ ++#: wp-admin/import/dotclear.php:600 ++#: wp-admin/import/textpattern.php:536 ++msgid "Finish" ++msgstr "ЗавершеМП!" ++ ++#: wp-admin/import/dotclear.php:624 ++msgid "Welcome to WordPress. We hope (and expect!) that you will find this platform incredibly rewarding! As a new WordPress user coming from DotClear, there are some things that we would like to point out. Hopefully, they will help your transition go as smoothly as possible." ++msgstr "ДПбрП пПжалПвать в WordPress. Мы МаЎееЌся (О Ме зря!), чтП вы пПлюбОте эту сОстеЌу! Так как вы решОлО перейтО с DotClear Ма WordPress, Ќы бы хПтелО указать ваЌ Ма МекПтПрые вещО. НаЎееЌся, этП пПЌПжет ваЌ переключОться как ЌПжМП быстрее." ++ ++#: wp-admin/import/dotclear.php:625 ++#: wp-admin/import/textpattern.php:560 ++#: wp-admin/menu.php:29 ++#: wp-admin/users.php:8 ++msgid "Users" ++msgstr "ППльзПвателО" ++ ++#: wp-admin/import/dotclear.php:626 ++#, php-format ++msgid "You have already setup WordPress and have been assigned an administrative login and password. Forget it. You didn't have that login in DotClear, why should you have it here? Instead we have taken care to import all of your users into our system. Unfortunately there is one downside. Because both WordPress and DotClear uses a strong encryption hash with passwords, it is impossible to decrypt it and we are forced to assign temporary passwords to all your users. Every user has the same username, but their passwords are reset to password123. So Login and change it." ++msgstr "Вы уже устаМПвОлО WordPress О пПлучОлО лПгОМ О парПль Ўля управлеМОя. ЗабуЎьте Ох! В DotСlear у вас былО ЎругОе лПгОМ О парПль, так пПчеЌу бы Ме ОспПльзПвать Ох в WordPress? Мы ОЌпПртОруеЌ все запОсО О всех пПльзПвателей в WordPress. ОЎМакП есть заЌОМПчка. Так как WordPress О DotСlear ОспПльзуют шОфрПваМОе парПлей, Ох МевПзЌПжМП расшОфрПвать О Ќы МазМачОЌ всеЌ пПльзПвателяЌ вреЌеММые парПлО. КажЎый пПльзПватель сПхраМОт свПй лПгОМ, МП парПлО буЎут МПвые: password123. ПрПстП вПйЎОте О ОзЌеМОте егП." ++ ++#: wp-admin/import/dotclear.php:627 ++#: wp-admin/import/textpattern.php:562 ++msgid "Preserving Authors" ++msgstr "СПхраМОть автПрПв" ++ ++#: wp-admin/import/dotclear.php:628 ++#: wp-admin/import/textpattern.php:563 ++msgid "Secondly, we have attempted to preserve post authors. If you are the only author or contributor to your blog, then you are safe. In most cases, we are successful in this preservation endeavor. However, if we cannot ascertain the name of the writer due to discrepancies between database tables, we assign it to you, the administrative user." ++msgstr "ВП-втПрых, Ќы пПпытаеЌся сПхраМОть автПрствП запОсей. ЕслО вы еЎОМствеММый автПр блПга, тПгЎа все в пПряЎке. В бПльшОМстве случаев все прПхПЎОт уЎачМП. ОЎМакП, еслО сОстеЌа Ме сЌПжет распПзМать ОЌя автПра Оз-за МесППтветствОй в таблОцах базы ЎаММых, Ќы МазМачОЌ автПрПЌ аЎЌОМОстратПра, тП есть вас." ++ ++#: wp-admin/import/dotclear.php:629 ++#: wp-admin/import/textpattern.php:564 ++msgid "Textile" ++msgstr "Textile" ++ ++#: wp-admin/import/dotclear.php:630 ++msgid "Also, since you're coming from DotClear, you probably have been using Textile to format your comments and posts. If this is the case, we recommend downloading and installing Textile for WordPress. Trust me... You'll want it." ++msgstr "И так как вы переключаетесь с DotСlear, вПзЌПжМП вы ОспПльзПвалО Textile Ўля фПрЌатОрПваМОя запОсей О кПЌЌеМтарОев. В этПЌ случае, Ќы рекПЌеМЎуеЌ скачать О устаМПвОть плагОМ Textile Ўля WordPress. ППверьте… ВаЌ пПМравОтся." ++ ++#: wp-admin/import/dotclear.php:631 ++#: wp-admin/import/textpattern.php:566 ++msgid "WordPress Resources" ++msgstr "Ресурсы WordPress" ++ ++#: wp-admin/import/dotclear.php:632 ++#: wp-admin/import/textpattern.php:567 ++msgid "Finally, there are numerous WordPress resources around the internet. Some of them are:" ++msgstr "НакПМец, есть ЌМПжествП ресурсПв, пПсвяшеММых WordPress. ВПт МекПтПрые Оз МОх:" ++ ++#: wp-admin/import/dotclear.php:634 ++#: wp-admin/import/textpattern.php:569 ++msgid "The official WordPress site" ++msgstr "ОфОцОальМый сайт WordPress" ++ ++#: wp-admin/import/dotclear.php:635 ++#: wp-admin/import/textpattern.php:570 ++msgid "The WordPress support forums" ++msgstr "ЀПруЌы пПЎЎержкО WordPress" ++ ++#: wp-admin/import/dotclear.php:636 ++#: wp-admin/import/textpattern.php:571 ++msgid "The Codex (In other words, the WordPress Bible)" ++msgstr "КПЎекс (ОМыЌО слПваЌО, БОблОя WordPress)" ++ ++#: wp-admin/import/dotclear.php:638 ++#, php-format ++msgid "That's it! What are you waiting for? Go login!" ++msgstr "ВПт О всё! ЧегП же вы жЎёте? ЗахПЎОте!" ++ ++#: wp-admin/import/dotclear.php:644 ++msgid "DotClear Database User:" ++msgstr "ППльзПватель базы ЎаММых DotClear:" ++ ++#: wp-admin/import/dotclear.php:645 ++msgid "DotClear Database Password:" ++msgstr "ПарПль к базе ЎаММых DotClear:" ++ ++#: wp-admin/import/dotclear.php:646 ++msgid "DotClear Database Name:" ++msgstr "ИЌя базы ЎаММых DotClear:" ++ ++#: wp-admin/import/dotclear.php:647 ++msgid "DotClear Database Host:" ++msgstr "ХПст базы ЎаММых DotClear:" ++ ++#: wp-admin/import/dotclear.php:648 ++msgid "DotClear Table prefix:" ++msgstr "ПрефОкс таблОц DotClear:" ++ ++#: wp-admin/import/dotclear.php:649 ++msgid "Originating character set:" ++msgstr "ОрОгОМальМая кПЎОрПвка:" ++ ++#: wp-admin/import/dotclear.php:745 ++msgid "DotClear" ++msgstr "DotClear" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/import/dotclear.php:747 ++#: wp-admin/import/dotclear.php:745 ++msgid "Import categories, users, posts, comments, and links from a DotClear blog." ++msgstr "ИЌпПрт рубрОк, пПльзПвателей, запОсей, кПЌЌеМтарОев О ссылПк Оз DotClear." ++ ++#: wp-admin/import/greymatter.php:9 ++msgid "Import GreyMatter" ++msgstr "ИЌпПрт Оз GreyMatter" ++ ++# C:\www\xampp\htdocs\wordpress\wp-trunk/wp-admin/import/greymatter.php:19 ++#: wp-admin/import/greymatter.php:19 ++msgid "This is a basic GreyMatter to WordPress import script." ++msgstr "ЭтП прПстПй скрОпт ОЌпПрта Оз GreyMatter в WordPress." ++ ++# C:\www\xampp\htdocs\wordpress\wp-trunk/wp-admin/import/greymatter.php:20 ++#: wp-admin/import/greymatter.php:20 ++msgid "What it does:" ++msgstr "ЧтП ПМ Ўелает:" ++ ++# C:\www\xampp\htdocs\wordpress\wp-trunk/wp-admin/import/greymatter.php:22 ++#: wp-admin/import/greymatter.php:22 ++msgid "Parses gm-authors.cgi to import (new) authors. Everyone is imported at level 1." ++msgstr "РазбОрает gm-authors.cgi Ўля ОЌпПрта МПвых автПрПв. Все ОЌпПртОрПваММые ОЌеют урПвеМь ЎПступа 1." ++ ++# C:\www\xampp\htdocs\wordpress\wp-trunk/wp-admin/import/greymatter.php:23 ++#: wp-admin/import/greymatter.php:23 ++msgid "Parses the entries cgi files to import posts, comments, and karma on posts (although karma is not used on WordPress yet).
    If authors are found not to be in gm-authors.cgi, imports them at level 0." ++msgstr "РазбОрает запОсО в cgi-файле Ўля ОЌпПрта запОсей, кПЌЌеМтарОев, карЌы (правЎа, в WordPress карЌы пПка Мет).
    ЕслО автПры Ме МайЎеМы в файле gm-authors.cgi, тП ПМО ОЌпПртОруются с урПвМеЌ ЎПступа 0." ++ ++# C:\www\xampp\htdocs\wordpress\wp-trunk/wp-admin/import/greymatter.php:24 ++#: wp-admin/import/greymatter.php:24 ++msgid "Detects duplicate entries or comments. If you don't import everything the first time, or this import should fail in the middle, duplicate entries will not be made when you try again." ++msgstr "ОпреЎеляет ЎублОкаты запОсей О кПЌЌеМтарОев. ЕслО вы Ме всё ОЌпПртОрПвалО в первый раз, ОлО ОЌпПрт застрял Ма сереЎОМе, запОсО Ме буЎут прПЎублОрПваМы, еслО вы пПпрПбуете ещё раз." ++ ++# C:\www\xampp\htdocs\wordpress\wp-trunk/wp-admin/import/greymatter.php:26 ++#: wp-admin/import/greymatter.php:26 ++msgid "What it does not:" ++msgstr "ЧтП ПМ Ме Ўелает:" ++ ++# C:\www\xampp\htdocs\wordpress\wp-trunk/wp-admin/import/greymatter.php:28 ++#: wp-admin/import/greymatter.php:28 ++msgid "Parse gm-counter.cgi, gm-banlist.cgi, gm-cplog.cgi (you can make a CP log hack if you really feel like it, but I question the need of a CP log)." ++msgstr "Не разбОрает файлы gm-counter.cgi, gm-banlist.cgi, gm-cplog.cgi" ++ ++#: wp-admin/import/greymatter.php:29 ++msgid "Import gm-templates." ++msgstr "Не ОЌпПртОрует gm-templates." ++ ++# C:\www\xampp\htdocs\wordpress\wp-trunk/wp-admin/import/greymatter.php:30 ++#: wp-admin/import/greymatter.php:30 ++msgid "Doesn't keep entries on top." ++msgstr "Не сПхраМяет верхМОе запОсО." ++ ++# C:\www\xampp\htdocs\wordpress\wp-trunk/wp-admin/import/greymatter.php:37 ++#: wp-admin/import/greymatter.php:38 ++msgid "Second step: GreyMatter details:" ++msgstr "ВтПрПй шаг: МастрПйкО GreyMatter:" ++ ++# C:\www\xampp\htdocs\wordpress\wp-trunk/wp-admin/import/greymatter.php:40 ++#: wp-admin/import/greymatter.php:41 ++msgid "Path to GM files:" ++msgstr "Путь к файлаЌ GM:" ++ ++# C:\www\xampp\htdocs\wordpress\wp-trunk/wp-admin/import/greymatter.php:44 ++#: wp-admin/import/greymatter.php:45 ++msgid "Path to GM entries:" ++msgstr "Путь к запОсяЌ GM:" ++ ++# C:\www\xampp\htdocs\wordpress\wp-trunk/wp-admin/import/greymatter.php:51 ++#: wp-admin/import/greymatter.php:49 ++msgid "Last entry's number:" ++msgstr "НПЌер пПслеЎМей запОсО:" ++ ++# C:\www\xampp\htdocs\wordpress\wp-trunk/wp-admin/import/greymatter.php:48 ++#: wp-admin/import/greymatter.php:51 ++msgid "This importer will search for files 00000001.cgi to 000-whatever.cgi,
    so you need to enter the number of the last GM post here.
    (if you don't know that number, just log into your FTP and look it out
    in the entries' folder)" ++msgstr "ЭтПт скрОпт прПсЌПтрОт все файлы Пт 000000001.cgi ЎП 000-whatever.cgi,
    а этП зМачОт, чтП ваЌ МужМП ввестО МПЌер пПслеЎМей запОсО в GM.
    (еслО вы Ме зМаете этП чОслП, прПстП вПйЎОте пП FTP О пПсЌПтрОте в ЎОректПрОО с запОсяЌО)" ++ ++#: wp-admin/import/greymatter.php:55 ++msgid "Start Importing" ++msgstr "Начать ОЌпПртОрПваМОе" ++ ++# C:\www\xampp\htdocs\wordpress\wp-trunk/wp-admin/import/greymatter.php:90 ++# C:\www\xampp\htdocs\wordpress\wp-trunk/wp-admin/import/greymatter.php:93 ++#: wp-admin/import/greymatter.php:88 ++msgid "Wrong path, the path to the GM entries does not exist on the server" ++msgstr "НеправОльМый путь, путь к запОсяЌ GM Ме существует Ма сервере" ++ ++# C:\www\xampp\htdocs\wordpress\wp-trunk/wp-admin/import/greymatter.php:90 ++# C:\www\xampp\htdocs\wordpress\wp-trunk/wp-admin/import/greymatter.php:93 ++#: wp-admin/import/greymatter.php:91 ++msgid "Wrong path, the path to the GM files does not exist on the server" ++msgstr "НеправОльМый путь, путь к файлаЌ GM Ме существует Ма сервере" ++ ++#: wp-admin/import/greymatter.php:97 ++msgid "The importer is running..." ++msgstr "ИЌпПрт запущеМ…" ++ ++#: wp-admin/import/greymatter.php:99 ++msgid "importing users..." ++msgstr "ОЌпПрт пПльзПвателей…" ++ ++#: wp-admin/import/greymatter.php:123 ++#, php-format ++msgid "user %s" ++msgstr "пПльзПватель %s" ++ ++#: wp-admin/import/greymatter.php:123 ++msgid "Already exists" ++msgstr "Уже существует" ++ ++# C:\www\xampp\htdocs\wordpress\wp-trunk/wp-admin/import/greymatter.php:132 ++#: wp-admin/import/greymatter.php:132 ++#, php-format ++msgid "user %s..." ++msgstr "пПльзПватель %s…" ++ ++#: wp-admin/import/greymatter.php:132 ++#: wp-admin/import/greymatter.php:135 ++#: wp-admin/import/greymatter.php:280 ++#: wp-admin/import/greymatter.php:285 ++msgid "Done" ++msgstr "ГПтПвП" ++ ++#: wp-admin/import/greymatter.php:136 ++msgid "importing posts, comments, and karma..." ++msgstr "ОЌпПртОруеЌ запОсО, кПЌЌеМтарОО, О карЌу…" ++ ++# C:\www\xampp\htdocs\wordpress\wp-trunk/wp-admin/import/greymatter.php:172 ++#: wp-admin/import/greymatter.php:172 ++#, php-format ++msgid "entry # %s : %s : by %s" ++msgstr "запОсь # %s : %s : Пт %s" ++ ++#: wp-admin/import/greymatter.php:200 ++msgid "(already exists)" ++msgstr "(уже существует)" ++ ++# C:\www\xampp\htdocs\wordpress\wp-trunk/wp-admin/import/greymatter.php:222 ++#: wp-admin/import/greymatter.php:222 ++#, php-format ++msgid "registered deleted user %s at level 0 " ++msgstr "зарегОстрОрПваМ уЎалеММый пПльзПватель %s с урПвМеЌ 0" ++ ++#: wp-admin/import/greymatter.php:272 ++#, php-format ++msgid "imported %s comment" ++msgid_plural "imported %s comments" ++msgstr[0] "ОЌпПртОрПваМ %s кПЌЌеМтарОй" ++msgstr[1] "ОЌпПртОрПваМП %s кПЌЌеМтарОя" ++msgstr[2] "ОЌпПртОрПваМП %s кПЌЌеМтарОев" ++ ++# C:\www\xampp\htdocs\wordpress\wp-trunk/wp-admin/import/greymatter.php:275 ++#: wp-admin/import/greymatter.php:277 ++#, php-format ++msgid "ignored %s pre-existing comment" ++msgid_plural "ignored %s pre-existing comments" ++msgstr[0] "прПОгМПрОрПваМ %s уже существующОй кПЌЌеМтарОй" ++msgstr[1] "прПОгМПрОрПваМП %s уже существующОх кПЌЌеМтарОя" ++msgstr[2] "прПОгМПрОрПваМП %s уже существующОх кПЌЌеМтарОев" ++ ++# C:\www\xampp\htdocs\wordpress\wp-trunk/wp-admin/import/greymatter.php:284 ++#: wp-admin/import/greymatter.php:287 ++msgid "Completed GreyMatter import!" ++msgstr "ИЌпПрт Оз GreyMatter завершеМ!" ++ ++# C:\www\xampp\htdocs\wordpress\wp-trunk/wp-admin/import/greymatter.php:312 ++#: wp-admin/import/greymatter.php:319 ++msgid "GreyMatter" ++msgstr "GreyMatter" ++ ++#: wp-admin/import/greymatter.php:319 ++msgid "Import users, posts, and comments from a Greymatter blog." ++msgstr "ИЌпПрт пПльзПвателей, запОсей О кПЌЌеМтарОев Оз GreyMatter." ++ ++#: wp-admin/import/jkw.php:7 ++msgid "Import Jerome’s Keywords" ++msgstr "ИЌпПрт ЌетПк плагОМа Jerome’s Keywords" ++ ++#: wp-admin/import/jkw.php:17 ++msgid "Howdy! This imports tags from Jerome’s Keywords into WordPress tags." ++msgstr "ПрОвет! ЭтПт скрОпт ОЌпПртОрует ЌеткО плагОМа Jerome’s Keywords в сОстеЌу ЌетПк WordPress." ++ ++#: wp-admin/import/jkw.php:18 ++msgid "This is suitable for Jerome’s Keywords version 1.x and 2.0a." ++msgstr "ППЎЎержОвается Jerome’s Keywords версОО 1.x О 2.0a." ++ ++#: wp-admin/import/jkw.php:19 ++msgid "All existing Jerome’s Keywords will be removed after import." ++msgstr "Все существующОе ЌеткО плагОМа Jerome’s Keywords пПсле ОЌпПрта буЎут уЎалеМы." ++ ++#: wp-admin/import/jkw.php:23 ++msgid "Import Version 1.x" ++msgstr "ИЌпПрт версОО 1.x" ++ ++#: wp-admin/import/jkw.php:27 ++msgid "Import Version 2.0a" ++msgstr "ИЌпПрт версОО 2.0a" ++ ++#: wp-admin/import/jkw.php:78 ++#: wp-admin/import/jkw.php:118 ++msgid "Reading Jerome’s Keywords Tags…" ++msgstr "ЧтеМОе ЌетПк плагОМа Jerome’s Keywords Tags…" ++ ++#: wp-admin/import/jkw.php:128 ++#: wp-admin/import/utw.php:87 ++#, php-format ++msgid "Done! %s tag were read." ++msgid_plural "Done! %s tags were read." ++msgstr[0] "ГПтПвП! %1$s Ќетка прПчОтаМа." ++msgstr[1] "ГПтПвП! %1$s ЌеткО прПчОтаМы." ++msgstr[2] "ГПтПвП! %1$s ЌетПк прПчОтаМы." ++ ++#: wp-admin/import/jkw.php:176 ++msgid "Import Jerome’s Keywords into WordPress tags." ++msgstr "ИЌпПрт ЌетПк плагОМа Jerome’s Keywords в сОстеЌу ЌетПк WordPress." ++ ++#: wp-admin/import/livejournal.php:9 ++msgid "Import LiveJournal" ++msgstr "ИЌпПрт Оз LiveJournal" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/import/livejournal.php:24 ++#: wp-admin/import/livejournal.php:24 ++msgid "Howdy! Upload your LiveJournal XML export file and we’ll import the posts into this blog." ++msgstr "ПрОвет! ЗагрузОте файл экспПрта XML LiveJournal О Ќы ОЌпПртОруеЌ запОсО в этПт блПг." ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/import/livejournal.php:25 ++#: wp-admin/import/livejournal.php:25 ++msgid "Choose a LiveJournal XML file to upload, then click Upload file and import." ++msgstr "ВыберОте XML-файл экспПрта LiveJournal, затеЌ МажЌОте «Ð—Ð°Ð³Ñ€ÑƒÐ·ÐžÑ‚ÑŒ О ОЌпПртОрПвать»." ++ ++#: wp-admin/import/livejournal.php:122 ++#: wp-admin/import/mt.php:250 ++#: wp-admin/import/wordpress.php:493 ++#, php-format ++msgid "(%s comment)" ++msgid_plural "(%s comments)" ++msgstr[0] "(%s кПЌЌеМтарОй)" ++msgstr[1] "(%s кПЌЌеМтарОя)" ++msgstr[2] "(%s кПЌЌеМтарОев)" ++ ++#: wp-admin/import/livejournal.php:178 ++msgid "LiveJournal" ++msgstr "LiveJournal" ++ ++#: wp-admin/import/livejournal.php:178 ++msgid "Import posts from a LiveJournal XML export file." ++msgstr "ИЌпПрт запОсей Оз XML-файла LiveJournal." ++ ++#: wp-admin/import/mt.php:14 ++msgid "Import Movable Type or TypePad" ++msgstr "ИЌпПрт Оз Movable Type О Typepad" ++ ++#: wp-admin/import/mt.php:25 ++msgid "Howdy! We’re about to begin importing all of your Movable Type or Typepad entries into WordPress. To begin, either choose a file to upload and click \"Upload file and import,\" or use FTP to upload your MT export file as mt-export.txt in your /wp-content/ directory and then click \"Import mt-export.txt\"" ++msgstr "ПрОвет! Мы гПтПвы Мачать прПцесс ОЌпПрта всех запОсей Оз Movable Type в WordPress. ЧтПбы Мачать, выберОте файл Ўля загрузкО О МажЌОте «Ð—Ð°Ð³Ñ€ÑƒÐ·ÐžÑ‚ÑŒ О ОЌпПртОрПвать» ОлО загрузОте пП FTP Ўля ваш файл экспПрта MT пПЎ МазваМОеЌ mt-export.txt в ЎОректПрОю /wp-content/, а затеЌ МажЌОте «Ð˜ÐŒÐ¿ÐŸÑ€Ñ‚ mt-export.txt»" ++ ++#: wp-admin/import/mt.php:33 ++msgid "Or use mt-export.txt in your /wp-content/ directory" ++msgstr "ИлО ОспПльзуйте файл mt-export.txt в вашей ЎОректПрОО /wp-content/" ++ ++#: wp-admin/import/mt.php:35 ++msgid "Import mt-export.txt" ++msgstr "ИЌпПртОрПвать mt-export.txt" ++ ++#: wp-admin/import/mt.php:38 ++msgid "The importer is smart enough not to import duplicates, so you can run this multiple times without worry if—for whatever reason—it doesn't finish. If you get an out of memory error try splitting up the import file into pieces." ++msgstr "СкрОпт ОЌпПрта Ме ОЌпПртОрует ЎублОкаты запОсей, пПэтПЌу ЌПжете Ме беспПкПОться, еслО запустОте егП МескПлькП раз. ЕслО вышла ПшОбка out of memory пПпрПбуйте разбОть прПцесс ОЌпПрта Ма МескПлькП шагПв." ++ ++#: wp-admin/import/mt.php:48 ++#: wp-admin/import/wordpress.php:232 ++#: wp-admin/includes/template.php:807 ++#: wp-admin/options-reading.php:30 ++#: wp-admin/options-reading.php:31 ++msgid "- Select -" ++msgstr "- Выбрать -" ++ ++#: wp-admin/import/mt.php:155 ++#: wp-admin/import/wordpress.php:181 ++msgid "Assign Authors" ++msgstr "ПрОвязать автПрПв" ++ ++#: wp-admin/import/mt.php:156 ++msgid "To make it easier for you to edit and save the imported posts and drafts, you may want to change the name of the author of the posts. For example, you may want to import all the entries as admin's entries." ++msgstr "Для ПблегчеМОя реЎактОрПваМОя О сПхраМеМОя ОЌпПртОрПваММых запОсей О черМПвОкПв, вы ЌПжете, еслО захПтОте, ОзЌеМОть ОЌя автПра запОсей. НапрОЌер, вы ЌПжете ОЌпПртОрПвать все запОсО пПЎ автПрствПЌ лПгОМа admin." ++ ++#: wp-admin/import/mt.php:157 ++msgid "Below, you can see the names of the authors of the MovableType posts in italics. For each of these names, you can either pick an author in your WordPress installation from the menu, or enter a name for the author in the textbox." ++msgstr "НОже вы ЌПжете вОЎеть ОЌеМа автПрПв запОсей MovableType курсОвПЌ. Для кажЎПгП Оз этОх ОЌеМ вы ЌПжете выбрать автПра Оз прОсутствующОх в ЌеМю ОлО ввестО ОЌя автПра в сППтветствующеЌ пПле." ++ ++#: wp-admin/import/mt.php:158 ++#: wp-admin/import/wordpress.php:185 ++msgid "If a new user is created by WordPress, a password will be randomly generated. Manually change the user's details if necessary." ++msgstr "ПрО сПзЎаМОО МПвПгП пПльзПвателя WordPress сгеМерОрует парПль случайМыЌ ПбразПЌ. ЕслО МеПбхПЎОЌП, сЌеМОте егП вручМую." ++ ++#: wp-admin/import/mt.php:169 ++msgid "Current author:" ++msgstr "ТекущОй автПр:" ++ ++# C:\www\xampp\htdocs\wordpress\wp-trunk/wp-admin/import/mt.php:151 ++# C:\www\xampp\htdocs\wordpress\wp-trunk/wp-admin/import/wordpress.php:151 ++#: wp-admin/import/mt.php:169 ++#: wp-admin/import/wordpress.php:221 ++#, php-format ++msgid "Create user %1$s or map to existing" ++msgstr "СПзЎать пПльзПвателя %1$s ОлО связать с существующОЌ" ++ ++#: wp-admin/import/mt.php:174 ++#: wp-admin/import/wordpress.php:213 ++#: wp-includes/post-template.php:527 ++msgid "Submit" ++msgstr "ОтправОть" ++ ++#: wp-admin/import/mt.php:184 ++msgid "mt-export.txt does not exist" ++msgstr "mt-export.txt Ме существует" ++ ++# C:\www\xampp\htdocs\wordpress\wp-trunk/wp-admin/import/mt.php:166 ++#: wp-admin/import/mt.php:190 ++msgid "Sorry, there has been an error" ++msgstr "ИзвОМОте, вПзМОкла ПшОбка." ++ ++#: wp-admin/import/mt.php:231 ++#, php-format ++msgid "
    Adding tags %s..." ++msgstr "
    ДПбавлеМОе ЌетПк %s…" ++ ++#: wp-admin/import/mt.php:267 ++#, php-format ++msgid "(%s ping)" ++msgid_plural "(%s pings)" ++msgstr[0] "(%s увеЎПЌлеМОе)" ++msgstr[1] "(%s увеЎПЌлеМОя)" ++msgstr[2] "(%s увеЎПЌлеМОй)" ++ ++# C:\www\xampp\htdocs\wordpress\wp-trunk/wp-admin/import/mt.php:433 ++#: wp-admin/import/mt.php:468 ++msgid "Movable Type and TypePad" ++msgstr "Movable Type О Typepad" ++ ++#: wp-admin/import/mt.php:468 ++msgid "Import posts and comments from a Movable Type or Typepad blog." ++msgstr "ИЌпПрт запОсей О кПЌЌеМтарОев Оз Movable Type ОлО Typepad." ++ ++#: wp-admin/import.php:10 ++msgid "If you have posts or comments in another system, WordPress can import those into this blog. To get started, choose a system to import from below:" ++msgstr "ЕслО вы пПльзПвалОсь ЎругПй сОстеЌПй, WordPress ЌПжет ОЌпПртОрПвать запОсО О кПЌЌеМтарОО в текущОй блПг. Для Мачала, выберОте сОстеЌу Оз спОска:" ++ ++#: wp-admin/import.php:32 ++msgid "No importers are available." ++msgstr "Нет скрОптПв Ўля ОЌпПрта." ++ ++#: wp-admin/import/rss.php:10 ++msgid "Import RSS" ++msgstr "ИЌпПрт RSS" ++ ++#: wp-admin/import/rss.php:25 ++msgid "Howdy! This importer allows you to extract posts from an RSS 2.0 file into your blog. This is useful if you want to import your posts from a system that is not handled by a custom import tool. Pick an RSS file to upload and click Import." ++msgstr "ПрОвет! ЭтПт скрОпт пПзвПлОт Озвлечь запОсО Оз любПй леМты RSS 2.0 в ваш блПг. ЭтП пПлезМП, еслО вы хПтОте ОЌпПртОрПвать запОсО Оз сОстеЌы, Ўля кПтПрПй Мет спецОальМПгП скрОпта. ВыберОте файл RSS Ўля загрузкО О МажЌОте «Ð˜ÐŒÐ¿ÐŸÑ€Ñ‚»." ++ ++#: wp-admin/import/rss.php:105 ++msgid "Importing post..." ++msgstr "ИЌпПрт запОсО…" ++ ++#: wp-admin/import/rss.php:110 ++msgid "Post already imported" ++msgstr "ЗапОсь уже ОЌпПртОрПваМа" ++ ++#: wp-admin/import/rss.php:122 ++msgid "Done !" ++msgstr "ГПтПвП!" ++ ++# C:\www\xampp\htdocs\wordpress\wp-trunk/wp-admin/import/rss.php:171 ++#: wp-admin/import/rss.php:181 ++#: wp-admin/includes/dashboard.php:225 ++#: wp-includes/widgets.php:1304 ++msgid "RSS" ++msgstr "RSS" ++ ++#: wp-admin/import/rss.php:181 ++msgid "Import posts from an RSS feed." ++msgstr "ИЌпПрт запОсей Оз RSS-леМты." ++ ++#: wp-admin/import/stp.php:5 ++msgid "Import Simple Tagging" ++msgstr "ИЌпПрт ЌетПк плагОМа Simple Tagging" ++ ++#: wp-admin/import/stp.php:15 ++msgid "Howdy! This imports tags from Simple Tagging 1.6.2 into WordPress tags." ++msgstr "ПрОвет! ЭтПт скрОпт ОЌпПртОрует ЌеткО плагОМа Simple Tagging 1.6.2 в сОстеЌу ЌетПк WordPress." ++ ++#: wp-admin/import/stp.php:16 ++msgid "This has not been tested on any other versions of Simple Tagging. Mileage may vary." ++msgstr "ЭтПт скрОпт Ме был прПтестОрПваМ с ЎругОЌО версОяЌО Simple Tagging. ВсякПе случается." ++ ++#: wp-admin/import/stp.php:17 ++msgid "To accommodate larger databases for those tag-crazy authors out there, we have made this into an easy 4-step program to help you kick that nasty Simple Tagging habit. Just keep clicking along and we will let you know when you are in the clear!" ++msgstr "Как ОзвестМП, МеуЌереММПе ОспПльзПваМОе ЌетПк прОвПЎОт к ПгрПЌМыЌ разЌераЌ базы ЎаММых. Мы сПзЎалО прПстую прПграЌЌу Оз 4 шагПв, пПзвПляющую ваЌ преПЎПлеть эту вреЎМую прОвычку Simple Tagging. ПрПстП прПЎПлжайте клОкать, О Ќы ЎаЎОЌ ваЌ зМать, кПгЎа всё закПМчОтся." ++ ++#: wp-admin/import/stp.php:21 ++#: wp-admin/import/utw.php:22 ++msgid "Step 1" ++msgstr "Каг 1" ++ ++#: wp-admin/import/stp.php:58 ++msgid "Reading STP Post Tags…" ++msgstr "ЧтеМОе ЌетПк плагОМа STP Ўля запОсей…" ++ ++#: wp-admin/import/stp.php:65 ++#: wp-admin/import/utw.php:124 ++msgid "No posts were found to have tags!" ++msgstr "ЗапОсей с ЌеткаЌО Ме МайЎеМП!" ++ ++#: wp-admin/import/stp.php:76 ++#: wp-admin/import/utw.php:139 ++#, php-format ++msgid "Done! %s tag to post relationships were read." ++msgid_plural "Done! %s tags to post relationships were read." ++msgstr[0] "ГПтПвП! %1$s связь ЌетПк О запОсей ОЌпПртОрПваМа." ++msgstr[1] "ГПтПвП! %1$s связО ЌетПк О запОсей ОЌпПртОрПваМы." ++msgstr[2] "ГПтПвП! %1$s связей ЌетПк О запОсей ОЌпПртОрПваМП." ++ ++#: wp-admin/import/stp.php:81 ++#: wp-admin/import/utw.php:109 ++msgid "Step 2" ++msgstr "Каг 2" ++ ++#: wp-admin/import/stp.php:89 ++#: wp-admin/import/utw.php:155 ++msgid "Adding Tags to Posts…" ++msgstr "ДПбавлеМОе ЌетПк к запОсяЌ…" ++ ++#: wp-admin/import/stp.php:94 ++#, php-format ++msgid "Done! %s tag was added!" ++msgid_plural "Done! %s tags were added!" ++msgstr[0] "ГПтПвП! %s Ќетка ЎПбавлеМа!" ++msgstr[1] "ГПтПвП! %s ЌеткО ЎПбавлеМы!" ++msgstr[2] "ГПтПвП! %s ЌетПк ЎПбавлеМП!" ++ ++#: wp-admin/import/stp.php:97 ++#: wp-admin/import/utw.php:145 ++msgid "Step 3" ++msgstr "Каг 3" ++ ++#: wp-admin/import/stp.php:140 ++msgid "OK, so we lied about this being a 4-step program! You’re done!" ++msgstr "ОК, Масчёт четырёх шагПв Ќы пПшутОлО! Всё гПтПвП!" ++ ++#: wp-admin/import/stp.php:141 ++#: wp-admin/import/utw.php:254 ++msgid "Now wasn’t that easy?" ++msgstr "Всё прПшлП легкП О быстрП, правЎа веЎь?" ++ ++#: wp-admin/import/stp.php:154 ++msgid "Import Simple Tagging tags into WordPress tags." ++msgstr "ИЌпПрт ЌетПк плагОМа Simple Tagging в сОстеЌу ЌетПк WordPress." ++ ++#: wp-admin/import/textpattern.php:32 ++msgid "Import Textpattern" ++msgstr "ИЌпПрт Оз Textpattern" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/import/textpattern.php:55 ++#: wp-admin/import/textpattern.php:43 ++msgid "Howdy! This imports categories, users, posts, comments, and links from any Textpattern 4.0.2+ into this blog." ++msgstr "ПрОвет! Вы ЌПжете ОЌпПртОрПвать рубрОкО, пПльзПвателей, запОсО, кПЌЌеМтарОО О ссылкО Оз сОстеЌы Textpattern версОО 4.0.2 О выше." ++ ++#: wp-admin/import/textpattern.php:44 ++msgid "This has not been tested on previous versions of Textpattern. Mileage may vary." ++msgstr "ЭтПт скрОпт Ме был прПтестОрПваМ Ўля преЎыЎущОх версОй Textpattern. ВсякПе случается." ++ ++#: wp-admin/import/textpattern.php:45 ++msgid "Your Textpattern Configuration settings are as follows:" ++msgstr "ВашО МастрПйкО Textpatten:" ++ ++#: wp-admin/import/textpattern.php:465 ++#, php-format ++msgid "Done! %s link imported" ++msgid_plural "Done! %s links imported" ++msgstr[0] "ГПтПвП! %1$s ссылка ОЌпПртОрПваМа" ++msgstr[1] "ГПтПвП! %1$s ссылкО ОЌпПртОрПваМы" ++msgstr[2] "ГПтПвП! %1$s ссылПк ОЌпПртОрПваМП" ++ ++#: wp-admin/import/textpattern.php:559 ++msgid "Welcome to WordPress. We hope (and expect!) that you will find this platform incredibly rewarding! As a new WordPress user coming from Textpattern, there are some things that we would like to point out. Hopefully, they will help your transition go as smoothly as possible." ++msgstr "ДПбрП пПжалПвать в WordPress. Мы ОскреММе МаЎееЌся, чтП вы пПлюбОте эту сОстеЌу! Так как вы решОлО перейтО с Textpattern Ма WordPress, Ќы бы хПтелО указать ваЌ Ма МекПтПрые вещО. НаЎееЌся, этП буЎет пПЌПжет ваЌ переключОться как ЌПжМП быстрее." ++ ++#: wp-admin/import/textpattern.php:561 ++#, php-format ++msgid "You have already setup WordPress and have been assigned an administrative login and password. Forget it. You didn’t have that login in Textpattern, why should you have it here? Instead we have taken care to import all of your users into our system. Unfortunately there is one downside. Because both WordPress and Textpattern uses a strong encryption hash with passwords, it is impossible to decrypt it and we are forced to assign temporary passwords to all your users. Every user has the same username, but their passwords are reset to password123. So Login and change it." ++msgstr "You have already setup WordPress and have been assigned an administrative login and password. Forget it. You didn't have that login in Textpattern, why should you have it here? Instead we have taken care to import all of your users into our system. Unfortunately there is one downside. Because both WordPress and Textpattern uses a strong encryption hash with passwords, it is impossible to decrypt it and we are forced to assign temporary passwords to all your users. Every user has the same username, but their passwords are reset to password123. ПрПстП вПйЎОте О ОзЌеМОте егП." ++ ++#: wp-admin/import/textpattern.php:565 ++msgid "Also, since you’re coming from Textpattern, you probably have been using Textile to format your comments and posts. If this is the case, we recommend downloading and installing Textile for WordPress. Trust me... You’ll want it." ++msgstr "И так как вы переключаетесь с Textpattern, вПзЌПжМП вы ОспПльзПвалО Textile Ўля фПрЌатОрПваМОя запОсей О кПЌЌеМтарОев. В этПЌ случае, Ќы рекПЌеМЎуеЌ скачать О устаМПвОть плагОМ Textile Ўля WordPress. ППверьте… ВаЌ пПМравОтся." ++ ++#: wp-admin/import/textpattern.php:573 ++#, php-format ++msgid "That’s it! What are you waiting for? Go login!" ++msgstr "ВПт О все! ЧегП же вы жЎёте? ЗахПЎОте!" ++ ++#: wp-admin/import/textpattern.php:579 ++msgid "Textpattern Database User:" ++msgstr "ППльзПватель базы ЎаММых Textpattern:" ++ ++#: wp-admin/import/textpattern.php:580 ++msgid "Textpattern Database Password:" ++msgstr "ПарПль к базе ЎаММых Textpattern:" ++ ++#: wp-admin/import/textpattern.php:581 ++msgid "Textpattern Database Name:" ++msgstr "ИЌя базы ЎаММых Textpattern:" ++ ++#: wp-admin/import/textpattern.php:582 ++msgid "Textpattern Database Host:" ++msgstr "ХПст базы ЎаММых Textpattern:" ++ ++#: wp-admin/import/textpattern.php:583 ++msgid "Textpattern Table prefix (if any):" ++msgstr "ПрефОкс таблОц Textpattern (еслО есть):" ++ ++#: wp-admin/import/textpattern.php:673 ++msgid "Textpattern" ++msgstr "Textpattern" ++ ++#: wp-admin/import/textpattern.php:673 ++msgid "Import categories, users, posts, comments, and links from a Textpattern blog." ++msgstr "ИЌпПрт рубрОк, пПльзПвателей, запОсей, кПЌЌеМтарОев О ссылПк Оз Textpattern." ++ ++#: wp-admin/import/utw.php:7 ++msgid "Import Ultimate Tag Warrior" ++msgstr "ИЌпПрт ЌетПк плагОМа Ultimate Tag Warrior" ++ ++#: wp-admin/import/utw.php:17 ++msgid "Howdy! This imports tags from Ultimate Tag Warrior 3 into WordPress tags." ++msgstr "ПрОвет! ЭтПт скрОпт ОЌпПртОрует ЌеткО плагОМа Ultimate Tag Warrior 3 в сОстеЌу ЌетПк WordPress." ++ ++#: wp-admin/import/utw.php:18 ++msgid "This has not been tested on any other versions of Ultimate Tag Warrior. Mileage may vary." ++msgstr "ЭтПт скрОпт Ме был прПтестОрПваМ c ЎругОЌО версОяЌО Ultimate Tag Warrior. ВсякПе случается." ++ ++#: wp-admin/import/utw.php:19 ++msgid "To accommodate larger databases for those tag-crazy authors out there, we have made this into an easy 5-step program to help you kick that nasty UTW habit. Just keep clicking along and we will let you know when you are in the clear!" ++msgstr "Как ОзвестМП, МеуЌереММПе ОспПльзПваМОе ЌетПк прОвПЎОт к ПгрПЌМыЌ разЌераЌ базы ЎаММых. Мы сПзЎалО прПстую прПграЌЌу Оз 4 шагПв, пПзвПляющую ваЌ преПЎПлеть эту вреЎМую прОвычку UTW. ПрПстП прПЎПлжайте клОкать, О Ќы ЎаЎОЌ ваЌ зМать, кПгЎа всё закПМчОтся." ++ ++#: wp-admin/import/utw.php:66 ++msgid "Reading UTW Tags…" ++msgstr "ЧтеМОе ЌетПк плагОМа UTW…" ++ ++#: wp-admin/import/utw.php:88 ++msgid "The following tags were found:" ++msgstr "БылО МайЎеМы слеЎующОе ЌеткО:" ++ ++#: wp-admin/import/utw.php:102 ++msgid "If you don’t want to import any of these tags, you should delete them from the UTW tag management page and then re-run this import." ++msgstr "ЕслО вы Ме хПтОте ОЌпПртОрПвать какую-лОбП Оз этОх ЌетПк, ваЌ слеЎует уЎалОть её Ма страМОце управлеМОя UTW, а затеЌ перезапустОть скрОпт ОЌпПрта." ++ ++#: wp-admin/import/utw.php:117 ++msgid "Reading UTW Post Tags…" ++msgstr "ЧтеМОе ЌетПк плагОМа UTW Ўля запОсей…" ++ ++#: wp-admin/import/utw.php:160 ++#, php-format ++msgid "Done! %s tag were added!" ++msgid_plural "Done! %s tags were added!" ++msgstr[0] "ГПтПвП! %1$s Ќетка ЎПбавлеМа!" ++msgstr[1] "ГПтПвП! %1$s ЌеткО ЎПбавлеМы!" ++msgstr[2] "ГПтПвП! %1$s ЌетПк ЎПбавлеМП!" ++ ++#: wp-admin/import/utw.php:164 ++msgid "Step 4" ++msgstr "Каг 4" ++ ++#: wp-admin/import/utw.php:252 ++msgid "OK, so we lied about this being a 5-step program! You’re done!" ++msgstr "OK, Масчёт пятО шагПв Ќы пПшутОлО! Всё гПтПвП!" ++ ++#: wp-admin/import/utw.php:274 ++msgid "Import Ultimate Tag Warrior tags into WordPress tags." ++msgstr "ИЌпПрт ЌетПк плагОМа Ultimate Tag Warrior в сОстеЌу ЌетПк WordPress." ++ ++#: wp-admin/import/wordpress.php:23 ++msgid "Import WordPress" ++msgstr "ИЌпПрт Оз WordPress" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/import/wordpress.php:29 ++#: wp-admin/import/wordpress.php:38 ++msgid "Howdy! Upload your WordPress eXtended RSS (WXR) file and we’ll import the posts, comments, custom fields, and categories into this blog." ++msgstr "ПрОвет! ЗагрузОте файл расшОреММПгП RSS WordPress (WXR), О Ќы ОЌпПртОруеЌ запОсО, кПЌЌеМтарОО, прПОзвПльМые пПля О рубрОкО в этПт блПг." ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/import/wordpress.php:30 ++#: wp-admin/import/wordpress.php:39 ++msgid "Choose a WordPress WXR file to upload, then click Upload file and import." ++msgstr "ВыберОте файл расшОреММПгП RSS WordPress, затеЌ МажЌОте ЗагрузОть О ОЌпПртОрПвать." ++ ++#: wp-admin/import/wordpress.php:182 ++msgid "To make it easier for you to edit and save the imported posts and drafts, you may want to change the name of the author of the posts. For example, you may want to import all the entries as admins entries." ++msgstr "Для ПблегчеМОя реЎактОрПваМОя О сПхраМеМОя ОЌпПртОрПваММых запОсей О черМПвОкПв, вы ЌПжете, еслО захПтОте, ОзЌеМОть ОЌя автПра запОсей. НапрОЌер, вы ЌПжете ОЌпПртОрПвать все запОсО пПЎ автПрствПЌ лПгОМа admin." ++ ++#: wp-admin/import/wordpress.php:196 ++msgid "Import author:" ++msgstr "ИЌпПрт автПра:" ++ ++#: wp-admin/import/wordpress.php:204 ++msgid "Import Attachments" ++msgstr "ИЌпПрт файлПв" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/export.php:38 ++#: wp-admin/import/wordpress.php:207 ++msgid "Download and import file attachments" ++msgstr "Скачать О ОЌпПртОрПвать файлы прОлПжеМОй" ++ ++#: wp-admin/import/wordpress.php:224 ++msgid "Map to existing" ++msgstr "Связать с существующОЌ" ++ ++#: wp-admin/import/wordpress.php:248 ++msgid "Invalid file" ++msgstr "НеверМый файл" ++ ++#: wp-admin/import/wordpress.php:249 ++msgid "Please upload a valid WXR (WordPress eXtended RSS) export file." ++msgstr "ППжалуйста, загрузОте кПрректМый файл экспПрта WXR (расшОреММый RSS Ўля WordPress)." ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/import/wordpress.php:303 ++#: wp-admin/import/wordpress.php:333 ++msgid "All done." ++msgstr "Всё гПтПвП." ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/import/wordpress.php:303 ++#: wp-admin/import/wordpress.php:333 ++msgid "Have fun!" ++msgstr "НаслажЎайтесь!" ++ ++#: wp-admin/import/wordpress.php:522 ++#, php-format ++msgid "Importing attachment %s... " ++msgstr "ИЌпПрт влПжеМОя %s…" ++ ++#: wp-admin/import/wordpress.php:525 ++#, php-format ++msgid "Remote file error: %s" ++msgstr "ОшОбка загрузкО файла: %s" ++ ++#: wp-admin/import/wordpress.php:536 ++#: wp-includes/functions.php:1164 ++msgid "Invalid file type" ++msgstr "НеверМый тОп файла" ++ ++#: wp-admin/import/wordpress.php:557 ++#, php-format ++msgid "Skipping attachment %s" ++msgstr "ПрПпуск влПжеМОя %s" ++ ++#: wp-admin/import/wordpress.php:580 ++#, php-format ++msgid "Remote file returned error response %d" ++msgstr "Ѐайл верМул кПЎ ПшОбкО %d" ++ ++#: wp-admin/import/wordpress.php:584 ++msgid "Remote file is incorrect size" ++msgstr "Ѐайл ОЌеет МекПрректМый разЌер" ++ ++#: wp-admin/import/wordpress.php:590 ++#, php-format ++msgid "Remote file is too large, limit is %s" ++msgstr "Ѐайл слОшкПЌ велОк, лОЌОт сПставляет %s" ++ ++# C:\www\xampp\htdocs\wordpress\wp-trunk/wp-admin/import/mt.php:166 ++#: wp-admin/import/wordpress.php:704 ++msgid "Sorry, there has been an error." ++msgstr "ИзвОМОте, вПзМОкла ПшОбка." ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/import/wordpress.php:344 ++#: wp-admin/import/wordpress.php:746 ++msgid "Import posts, comments, custom fields, pages, and categories from a WordPress export file." ++msgstr "ИЌпПрт запОсей, кПЌЌеМтарОев, ЎПпПлМОтельМых пПлей, страМОц О рубрОк Оз файла экспПрта WordPress." ++ ++#: wp-admin/import/wp-cat2tag.php:9 ++msgid "Convert Categories to Tags" ++msgstr "ПреПбразПваМОе рубрОк в ЌеткО" ++ ++#: wp-admin/import/wp-cat2tag.php:32 ++msgid "Hey there. Here you can selectively converts existing categories to tags. To get started, check the categories you wish to be converted, then click the Convert button." ++msgstr "ПрОвет! ЭтПт скрОпт пПзвПляет выбПрПчМП преПбразПвать существующОе рубрОкО в ЌеткО. ВыберОте рубрОкО Ўля кПМвертОрПваМОя О МажЌОте кМПпку «ÐŸÑ€ÐµÐŸÐ±Ñ€Ð°Ð·ÐŸÐ²Ð°Ñ‚ÑŒ»." ++ ++#: wp-admin/import/wp-cat2tag.php:33 ++msgid "Keep in mind that if you convert a category with child categories, the children become top-level orphans." ++msgstr "УчтОте, чтП еслО вы кПМвертОруете рубрОку с ЎПчерМОЌО рубрОкаЌО, ПМО все стаМут кПрМевыЌО." ++ ++#: wp-admin/import/wp-cat2tag.php:37 ++msgid "You have no categories to convert!" ++msgstr "Нет рубрОк Ўля кПМвертОрПваМОя!" ++ ++#: wp-admin/import/wp-cat2tag.php:56 ++msgid "Uncheck All" ++msgstr "СМять выЎелеМОе" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-includes/js/tinymce/wp-mce-help.php:153 ++#: wp-admin/import/wp-cat2tag.php:63 ++#: wp-admin/import/wp-cat2tag.php:71 ++msgid "Check All" ++msgstr "ВыЎелОть все" ++ ++#: wp-admin/import/wp-cat2tag.php:93 ++msgid "Convert Tags" ++msgstr "ПреПбразПвать в ЌеткО" ++ ++#: wp-admin/import/wp-cat2tag.php:133 ++#, php-format ++msgid "Uh, oh. Something didn’t work. Please try again." ++msgstr "Ой-Пй-Пй. ЧтП-тП Ме срабПталП. ППжалуйста, пПпрПбуйте ещё раз." ++ ++#: wp-admin/import/wp-cat2tag.php:148 ++#, php-format ++msgid "Converting category #%s ... " ++msgstr "КПМвертОруеЌ рубрОку #%s…" ++ ++#: wp-admin/import/wp-cat2tag.php:151 ++msgid "Category doesn't exist!" ++msgstr "РубрОка Ме существует!" ++ ++#: wp-admin/import/wp-cat2tag.php:156 ++msgid "Category is already a tag." ++msgstr "РубрОка уже является ЌеткПй." ++ ++#: wp-admin/import/wp-cat2tag.php:192 ++msgid "Converted successfully." ++msgstr "КПМвертОрПваМОе успешМП завершеМП." ++ ++#: wp-admin/import/wp-cat2tag.php:199 ++#, php-format ++msgid "We’re all done here, but you can always convert more." ++msgstr "На этПЌ Ќы О закПМчОЌ, МП вы всегЎа ЌПжете запустОть преПбразПваМОе сМПва." ++ ++#: wp-admin/import/wp-cat2tag.php:237 ++msgid "Categories to Tags Converter" ++msgstr "КПМвертер рубрОк в ЌеткО" ++ ++#: wp-admin/import/wp-cat2tag.php:237 ++msgid "Convert existing categories to tags, selectively." ++msgstr "ВыбПрПчМПе преПбразПваМОе рубрОк в ЌеткО." ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:31 ++msgid "The ftp PHP extension is not available" ++msgstr "РасшОреМОе ftp Ўля PHP МеЎПступМП" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:42 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:41 ++msgid "FTP hostname is required" ++msgstr "Требуется аЎрес FTP-сервера" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:51 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:50 ++msgid "FTP username is required" ++msgstr "Требуется лПгОМ Ўля FTP" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:56 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:55 ++msgid "FTP password is required" ++msgstr "Требуется парПль Ўля FTP" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:71 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:67 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:71 ++#, php-format ++msgid "Failed to connect to FTP Server %1$s:%2$s" ++msgstr "НевПзЌПжМП пПЎключОться к FTP-серверу %1$s:%2$s" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:76 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:76 ++#, php-format ++msgid "Username/Password incorrect for %s" ++msgstr "ЛПгОМ/парПль Ўля %s МеверМы" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:105 ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:128 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:107 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:130 ++#, php-format ++msgid "Changing to %s" ++msgstr "ПерехПЎ к %s" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:108 ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:136 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:110 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:138 ++#, php-format ++msgid "Found %s" ++msgstr "ОбМаружеМ %s" ++ ++#: wp-admin/includes/comment.php:15 ++msgid "You are not allowed to edit comments on this post, so you cannot edit this comment." ++msgstr "ВаЌ Ме разрешеМП ОзЌеМять кПЌЌеМтарОО к этПй запОсО, пПэтПЌу вы Ме ЌПжете ПтреЎактОрПвать ЎаММый кПЌЌеМтарОй." ++ ++#: wp-admin/includes/dashboard.php:26 ++#, php-format ++msgid "%d comment awaiting moderation" ++msgid_plural "%d comments awaiting moderation" ++msgstr[0] "%d кПЌЌеМтарОй ПжОЎает прПверкО" ++msgstr[1] "%d кПЌЌеМтарОя ПжОЎают прПверкО" ++msgstr[2] "%d кПЌЌеМтарОев ПжОЎают прПверкО" ++ ++#: wp-admin/includes/dashboard.php:31 ++#: wp-includes/widgets.php:930 ++#: wp-includes/widgets.php:993 ++#: wp-includes/widgets.php:994 ++msgid "Recent Comments" ++msgstr "СвежОе кПЌЌеМтарОО" ++ ++#: wp-admin/includes/dashboard.php:45 ++#: wp-admin/includes/dashboard.php:49 ++msgid "Incoming Links" ++msgstr "ВхПЎящОе ссылкО" ++ ++#: wp-admin/includes/dashboard.php:55 ++#: wp-admin/menu.php:27 ++#: wp-admin/menu.php:66 ++#: wp-admin/plugin-editor.php:119 ++#: wp-includes/js/tinymce/langs/wp-langs.php:241 ++msgid "Plugins" ++msgstr "ПлагОМы" ++ ++#: wp-admin/includes/dashboard.php:65 ++msgid "http://wordpress.org/development/" ++msgstr "http://wordpress.org/development/" ++ ++#: wp-admin/includes/dashboard.php:66 ++msgid "http://wordpress.org/development/feed/" ++msgstr "http://wordpress.org/development/feed/" ++ ++#: wp-admin/includes/dashboard.php:67 ++msgid "WordPress Development Blog" ++msgstr "РазрабПтка WordPress" ++ ++#: wp-admin/includes/dashboard.php:78 ++msgid "Primary Feed" ++msgstr "ОсМПвМая леМта" ++ ++#: wp-admin/includes/dashboard.php:87 ++msgid "http://planet.wordpress.org/" ++msgstr "http://planet.wordpress.org/" ++ ++#: wp-admin/includes/dashboard.php:88 ++msgid "http://planet.wordpress.org/feed/" ++msgstr "http://planet.wordpress.org/feed/" ++ ++#: wp-admin/includes/dashboard.php:89 ++msgid "Other WordPress News" ++msgstr "ДругОе МПвПстО WordPress" ++ ++#: wp-admin/includes/dashboard.php:97 ++msgid "Secondary Feed" ++msgstr "ДПпПлМОтельМая леМта" ++ ++#: wp-admin/includes/dashboard.php:206 ++msgid "See All" ++msgstr "ППсЌПтреть Ð²ÑÐµ" ++ ++#: wp-admin/includes/dashboard.php:218 ++#: wp-admin/includes/media.php:834 ++#: wp-admin/includes/widgets.php:227 ++#: wp-includes/js/tinymce/langs/wp-langs.php:17 ++#: wp-includes/script-loader.php:145 ++#: wp-includes/script-loader.php:153 ++#: wp-includes/script-loader.php:158 ++#: wp-includes/script-loader.php:164 ++#: wp-includes/script-loader.php:194 ++msgid "Cancel" ++msgstr "ОтЌеМа" ++ ++#: wp-admin/includes/dashboard.php:225 ++msgid "rss icon" ++msgstr "ОкПМка rss" ++ ++#: wp-admin/includes/dashboard.php:281 ++#, php-format ++msgid "From %1$s on %2$s %3$s" ++msgstr "%1$s к запОсО %2$s %3$s" ++ ++#: wp-admin/includes/dashboard.php:332 ++#: wp-admin/page.php:85 ++#: wp-admin/post.php:92 ++msgid "Somebody" ++msgstr "КтП-тП" ++ ++#: wp-admin/includes/dashboard.php:345 ++msgid "something" ++msgstr "чтП-тП" ++ ++#: wp-admin/includes/dashboard.php:348 ++#, php-format ++msgid "%1$s linked here saying, \"%3$s\"|feed_display" ++msgstr "%1$s ссылается сюЎа сП слПваЌО: «%3$s»|ПтПбражеМОе_леМты" ++ ++#: wp-admin/includes/dashboard.php:350 ++#, php-format ++msgid "%1$s linked here saying, \"%3$s\"|feed_display" ++msgstr "%1$s ссылается сюЎа сП слПваЌО: «%3$s»|ПтПбражеМОе_леМты" ++ ++#: wp-admin/includes/dashboard.php:354 ++#, php-format ++msgid " on %4$s|feed_display" ++msgstr " %4$s|ПтПбражеМОе_леМты" ++ ++#: wp-admin/includes/dashboard.php:366 ++msgid "This dashboard widget queries Google Blog Search so that when another blog links to your site it will show up here. It has found no incoming links… yet. It’s okay — there is no rush." ++msgstr "ЭтПт вОЎжет ПпрашОвает пПОск Google пП блПгаЌ, О кПгЎа ссылка Ма ваш сайт пПявОтся в ЎругПЌ блПге, ПМ буЎет пПказаМ в этПЌ спОске. ВхПЎящОх ссылПк Ме МайЎеМП… пПка. Всё в пПряЎке — тПрПпОться МекуЎа." ++ ++#: wp-admin/includes/dashboard.php:405 ++msgid "Most Popular" ++msgstr "СаЌые пПпулярМые" ++ ++#: wp-admin/includes/dashboard.php:405 ++msgid "Newest Plugins" ++msgstr "СаЌые свежОе" ++ ++#: wp-admin/includes/dashboard.php:405 ++msgid "Recently Updated" ++msgstr "НеЎавМП ПбМПвОлОсь" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/export.php:38 ++#: wp-admin/includes/dashboard.php:436 ++msgid "Download" ++msgstr "Скачать" ++ ++#: wp-admin/includes/dashboard.php:446 ++msgid "Loading…" ++msgstr "Загрузка…" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Main Index Template" ++msgstr "ОсМПвМПй шаблПМ" ++ ++#: wp-admin/includes/file.php:3 ++#: wp-admin/includes/file.php:5 ++msgid "Stylesheet" ++msgstr "СпОсПк стОлей" ++ ++#: wp-admin/includes/file.php:3 ++msgid "RTL Stylesheet" ++msgstr "СпОсПк стОлей RTL" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Popup Comments" ++msgstr "ВсплывающОе кПЌЌеМтарОО" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Footer" ++msgstr "ППЎвал" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Header" ++msgstr "ЗагПлПвПк" ++ ++#: wp-admin/includes/file.php:3 ++#: wp-includes/widgets.php:26 ++msgid "Sidebar" ++msgstr "БПкПвая кПлПМка" ++ ++#: wp-admin/includes/file.php:3 ++#: wp-includes/widgets.php:457 ++#: wp-includes/widgets.php:1368 ++#: wp-includes/widgets.php:1369 ++msgid "Archives" ++msgstr "АрхОвы" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Category Template" ++msgstr "КаблПМ рубрОк" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Search Results" ++msgstr "Результаты пПОска" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Search Form" ++msgstr "ЀПрЌа пПОска" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Single Post" ++msgstr "ОЎМа запОсь" ++ ++#: wp-admin/includes/file.php:3 ++msgid "404 Template" ++msgstr "КаблПМ ПшОбкО 404" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Links Template" ++msgstr "КаблПМ ссылПк" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Theme Functions" ++msgstr "ЀуМкцОО теЌы" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Attachment Template" ++msgstr "КаблПМ прОлПжеМОй" ++ ++#: wp-admin/includes/file.php:3 ++msgid "my-hacks.php (legacy hacks support)" ++msgstr "my-hacks.php (пПЎЎержка устаревшОх заплатПк)" ++ ++#: wp-admin/includes/file.php:3 ++msgid ".htaccess (for rewrite rules )" ++msgstr ".htaccess (Ўля правОл переМаправлеМОя)" ++ ++#: wp-admin/includes/file.php:5 ++msgid "Comments Template" ++msgstr "КаблПМ кПЌЌеМтарОев" ++ ++#: wp-admin/includes/file.php:5 ++msgid "Popup Comments Template" ++msgstr "КаблПМ всплывающОх кПЌЌеМтарОев" ++ ++#: wp-admin/includes/file.php:85 ++msgid "Sorry, can’t edit files with \"..\" in the name. If you are trying to edit a file in your WordPress home directory, you can just type the name of the file in." ++msgstr "ИзвОМОте, файлы с «..» в ОЌеМО Ме ЌПгут быть ОзЌеМеМы. ЕслО вы пытаетесь ОзЌеМОть файл в вашей ЎПЌашМей ЎОректПрОО WordPress, тП ЌПжМП прПстП ввестО ОЌя файла." ++ ++#: wp-admin/includes/file.php:88 ++msgid "Sorry, can’t call files with their real path." ++msgstr "ИзвОМОте, вы Ме ЌПжете вызывать файлы с Ох пПлМыЌ путеЌ." ++ ++#: wp-admin/includes/file.php:91 ++msgid "Sorry, that file cannot be edited." ++msgstr "ИзвОМОте, этПт файл Ме ЌПжет быть ОзЌеМеМ." ++ ++#: wp-admin/includes/file.php:116 ++msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." ++msgstr "РазЌер загружеММПгП файла превышает зМачеМОе upload_max_filesize, устаМПвлеММПе в файле php.ini." ++ ++#: wp-admin/includes/file.php:117 ++msgid "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form." ++msgstr "РазЌер загружеММПгП файла превышает зМачеМОе MAX_FILE_SIZE, указаММПе в HTML-фПрЌе." ++ ++#: wp-admin/includes/file.php:118 ++msgid "The uploaded file was only partially uploaded." ++msgstr "Ѐайл был загружеМ МепПлМПстью." ++ ++#: wp-admin/includes/file.php:119 ++msgid "No file was uploaded." ++msgstr "Ѐайл Ме загружеМ." ++ ++#: wp-admin/includes/file.php:120 ++msgid "Missing a temporary folder." ++msgstr "ВреЌеММая папка Ме МайЎеМа." ++ ++#: wp-admin/includes/file.php:121 ++msgid "Failed to write file to disk." ++msgstr "НевПзЌПжМП запОсать Ма ЎОск." ++ ++#: wp-admin/includes/file.php:137 ++msgid "Invalid form submission." ++msgstr "НекПрректМая Птправка фПрЌы." ++ ++#: wp-admin/includes/file.php:145 ++msgid "File is empty. Please upload something more substantial. This error could also be caused by uploads being disabled in your php.ini." ++msgstr "Ѐайл пуст. ППжалуйста, загрузОте чтП-тП бПлее существеММПе. ЭтП ПшОбка также ЌПжет ПзМачать, чтП загрузка запрещеМа в php.ini." ++ ++#: wp-admin/includes/file.php:149 ++msgid "Specified file failed upload test." ++msgstr "ОшОбка прО загрузке указаММПгП файла." ++ ++#: wp-admin/includes/file.php:158 ++msgid "File type does not meet security guidelines. Try another." ++msgstr "ТОп файла Ме пПЎхПЎОт пП сППбражеМОяЌ безПпасМПстО. ППпрПбуйте ЎругПй." ++ ++#: wp-admin/includes/file.php:176 ++#, php-format ++msgid "The uploaded file could not be moved to %s." ++msgstr "ЗагружеММый файл Ме ЌПжет быть переЌещеМ в %s." ++ ++#: wp-admin/includes/file.php:200 ++msgid "Invalid URL Provided" ++msgstr "ПреЎПставлеМ МеверМый URL" ++ ++#: wp-admin/includes/file.php:204 ++#: wp-admin/includes/file.php:208 ++msgid "Could not create Temporary file" ++msgstr "Не уЎалПсь сПзЎать вреЌеММый файл" ++ ++#: wp-admin/includes/file.php:229 ++#: wp-admin/includes/update.php:157 ++msgid "Could not access filesystem." ++msgstr "Нет ЎПступа к файлПвПй сОстеЌе." ++ ++#: wp-admin/includes/file.php:239 ++msgid "Incompatible archive" ++msgstr "АрхОв МесПвЌестОЌ" ++ ++#: wp-admin/includes/file.php:242 ++msgid "Empty archive" ++msgstr "АрхОв пуст" ++ ++#: wp-admin/includes/file.php:262 ++msgid "Could not create directory" ++msgstr "Не пПлучОлПсь сПзЎать ЎОректПрОю" ++ ++#: wp-admin/includes/file.php:268 ++msgid "Could not copy file" ++msgstr "Не пПлучОлПсь скПпОрПвать файл" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/admin-functions.php:2088 ++#: wp-admin/includes/image.php:131 ++#, php-format ++msgid "File '%s' doesn't exist?" ++msgstr "Ѐайл «%s» Ме существует?" ++ ++#: wp-admin/includes/image.php:134 ++msgid "The GD image library is not installed." ++msgstr "БОблОПтека GD Ме устаМПвлеМа." ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/admin-functions.php:2098 ++#: wp-admin/includes/image.php:141 ++#, php-format ++msgid "File '%s' is not an image." ++msgstr "Ѐайл «%s» Ме является картОМкПй." ++ ++#: wp-admin/includes/media.php:5 ++msgid "Choose File" ++msgstr "ВыберОте файл" ++ ++#: wp-admin/includes/media.php:6 ++msgid "Gallery" ++msgstr "Галерея" ++ ++#: wp-admin/includes/media.php:7 ++#: wp-admin/menu.php:46 ++#: wp-admin/upload.php:36 ++msgid "Media Library" ++msgstr "БОблОПтека ЌеЎОафайлПв" ++ ++#: wp-admin/includes/media.php:22 ++#, php-format ++msgid "Gallery (%s)" ++msgstr "Галерея (%s)" ++ ++#: wp-admin/includes/media.php:127 ++msgid "Uploads" ++msgstr "ЗагрузкО" ++ ++#: wp-admin/includes/media.php:127 ++#: wp-admin/update.php:152 ++msgid "WordPress" ++msgstr "WordPress" ++ ++#: wp-admin/includes/media.php:159 ++#, php-format ++msgid "Add media: %s" ++msgstr "ДПбавОть ЌеЎОафайл: %s" ++ ++#: wp-admin/includes/media.php:161 ++msgid "Add Media" ++msgstr "ДПбавОть ЌеЎОафайл" ++ ++#: wp-admin/includes/media.php:163 ++msgid "Add an Image" ++msgstr "ДПбавОть ОзПбражеМОе" ++ ++#: wp-admin/includes/media.php:165 ++msgid "Add Video" ++msgstr "ДПбавОть вОЎеПфайл" ++ ++#: wp-admin/includes/media.php:167 ++msgid "Add Audio" ++msgstr "ДПбавОть ауЎОПфайл" ++ ++#: wp-admin/includes/media.php:296 ++#: wp-admin/includes/media.php:334 ++#: wp-admin/includes/media.php:372 ++#: wp-admin/includes/media.php:410 ++msgid "Saved." ++msgstr "СПхраМеМП." ++ ++#: wp-admin/includes/media.php:444 ++#: wp-admin/includes/media.php:540 ++msgid "Caption" ++msgstr "ППЎпОсь" ++ ++#: wp-admin/includes/media.php:445 ++#: wp-admin/includes/media.php:1094 ++msgid "Alternate text, e.g. \"The Mona Lisa\"" ++msgstr "АльтерМатОвМый текст, МапрОЌер, «ÐœÐŸÐœÐ° ЛОза»" ++ ++#: wp-admin/includes/media.php:452 ++#: wp-admin/includes/media.php:1096 ++#: wp-includes/js/tinymce/langs/wp-langs.php:29 ++#: wp-includes/js/tinymce/langs/wp-langs.php:268 ++msgid "Alignment" ++msgstr "ВыравМОваМОе" ++ ++# C:\www\xampp\htdocs\wordpress\wp-trunk/wp-admin/import/greymatter.php:312 ++#: wp-admin/includes/media.php:458 ++#: wp-admin/includes/media.php:1101 ++#: wp-includes/js/tinymce/langs/wp-langs.php:30 ++#: wp-includes/js/tinymce/langs/wp-langs.php:275 ++#: wp-includes/js/tinymce/langs/wp-langs.php:372 ++msgid "Left" ++msgstr "Слева" ++ ++# C:\www\xampp\htdocs\wordpress\wp-trunk/wp-admin/import/greymatter.php:312 ++#: wp-admin/includes/media.php:460 ++#: wp-admin/includes/media.php:1103 ++#: wp-includes/js/tinymce/langs/wp-langs.php:31 ++#: wp-includes/js/tinymce/langs/wp-langs.php:352 ++#: wp-includes/js/tinymce/langs/wp-langs.php:373 ++msgid "Center" ++msgstr "ПП цеМтру" ++ ++#: wp-admin/includes/media.php:462 ++#: wp-admin/includes/media.php:1105 ++#: wp-includes/js/tinymce/langs/wp-langs.php:32 ++#: wp-includes/js/tinymce/langs/wp-langs.php:276 ++#: wp-includes/js/tinymce/langs/wp-langs.php:370 ++msgid "Right" ++msgstr "Справа" ++ ++#: wp-admin/includes/media.php:465 ++msgid "Size" ++msgstr "РазЌер" ++ ++#: wp-admin/includes/media.php:469 ++#: wp-includes/script-loader.php:173 ++msgid "Thumbnail" ++msgstr "МОМОатюра" ++ ++#: wp-admin/includes/media.php:471 ++msgid "Medium" ++msgstr "СреЎМОй" ++ ++#: wp-admin/includes/media.php:473 ++#: wp-includes/script-loader.php:174 ++msgid "Full size" ++msgstr "ППлМый разЌер" ++ ++#: wp-admin/includes/media.php:490 ++msgid "Empty Title filled from filename." ++msgstr "ПустПй загПлПвПк запПлМеМ ОЌеМеЌ файла." ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/link-manager.php:307 ++#: wp-admin/includes/media.php:549 ++#: wp-includes/js/tinymce/langs/wp-langs.php:278 ++msgid "Link URL" ++msgstr "URL" ++ ++#: wp-admin/includes/media.php:554 ++msgid "File URL" ++msgstr "URL файла" ++ ++#: wp-admin/includes/media.php:555 ++msgid "Post URL" ++msgstr "URL запОсО" ++ ++#: wp-admin/includes/media.php:559 ++msgid "Enter a link URL or click above for presets." ++msgstr "ВвеЎОте ссылку ОлО МажЌОте ПЎМу Оз кМПпПк." ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/link-categories.php:130 ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/link-categories.php:390 ++#: wp-admin/includes/media.php:629 ++#: wp-admin/widgets.php:248 ++#: wp-admin/widgets.php:265 ++msgid "Show" ++msgstr "ППказать" ++ ++#: wp-admin/includes/media.php:630 ++msgid "Hide" ++msgstr "Скрыть" ++ ++#: wp-admin/includes/media.php:688 ++#: wp-admin/includes/media.php:1111 ++#: wp-admin/includes/media.php:1139 ++#: wp-admin/includes/media.php:1167 ++#: wp-admin/includes/media.php:1195 ++msgid "Insert into Post" ++msgstr "ВставОть в запОсь" ++ ++#: wp-admin/includes/media.php:826 ++msgid "Choose files to upload" ++msgstr "ВыберОте файл Ўля загрузкО" ++ ++#: wp-admin/includes/media.php:827 ++msgid "After a file has been uploaded, you can add titles and descriptions." ++msgstr "КПгЎа файл буЎет загружеМ, вы сЌПжете ЎПбавОть загПлПвкО О ПпОсаМОя." ++ ++#: wp-admin/includes/media.php:839 ++msgid "If you want to use all capabilities of the uploader, like uploading multiple files at once, please upgrade to lighttpd 1.5." ++msgstr "ЕслО вы хПтОте ОспПльзПвать все вПзЌПжМПстО скрОпта загрузкО, МапрОЌер, загружать МескПлькП файлПв за ПЎОМ раз, пПжалуйста, ПбМПвОте lighttpd ЎП версОО 1.5." ++ ++#: wp-admin/includes/media.php:858 ++msgid "From Computer" ++msgstr "С кПЌпьютера" ++ ++#: wp-admin/includes/media.php:876 ++#: wp-admin/includes/media.php:890 ++#: wp-admin/includes/media.php:923 ++#: wp-admin/includes/media.php:1071 ++msgid "Save all changes" ++msgstr "СПхраМОть все ОзЌеМеМОя" ++ ++#: wp-admin/includes/media.php:881 ++msgid "— OR —" ++msgstr "— ИЛИ —" ++ ++#: wp-admin/includes/media.php:882 ++msgid "From URL" ++msgstr "С сайта" ++ ++#: wp-admin/includes/media.php:924 ++msgid "Insert gallery into post" ++msgstr "ДПбавОть галерею в запОсь" ++ ++#: wp-admin/includes/media.php:961 ++#: wp-admin/upload.php:129 ++msgid "Search Media" ++msgstr "ППОск ЌеЎОафайлПв" ++ ++#: wp-admin/includes/media.php:980 ++#: wp-admin/upload.php:94 ++msgid "All Types" ++msgstr "Все тОпы" ++ ++#: wp-admin/includes/media.php:1043 ++msgid "Filter »" ++msgstr "НайтО »" ++ ++#: wp-admin/includes/media.php:1082 ++#: wp-includes/js/tinymce/langs/wp-langs.php:261 ++msgid "Image URL" ++msgstr "АЎрес (URL)" ++ ++#: wp-admin/includes/media.php:1123 ++msgid "Audio File URL" ++msgstr "URL ауЎОПфайла" ++ ++#: wp-admin/includes/media.php:1135 ++msgid "Link text, e.g. \"Still Alive by Jonathan Coulton\"" ++msgstr "Текст ссылкО, МапрОЌер «Still Alive ДжПМатаМа КПултПМа»" ++ ++#: wp-admin/includes/media.php:1151 ++msgid "Video URL" ++msgstr "URL вОЎеПфайла" ++ ++#: wp-admin/includes/media.php:1163 ++msgid "Link text, e.g. \"Lucy on YouTube\"" ++msgstr "Текст ссылкО, МапрОЌер «Ð›ÑŽÐŽÐ° Ма YouTube»" ++ ++#: wp-admin/includes/media.php:1191 ++msgid "Link text, e.g. \"Ransom Demands (PDF)\"" ++msgstr "Текст ссылкО, МапрОЌер «Ð¢Ñ€ÐµÐ±ÐŸÐ²Ð°ÐœÐžÑ выкупа (PDF)»" ++ ++#: wp-admin/includes/plugin.php:22 ++msgid "Visit plugin homepage" ++msgstr "ППсетОть страМОцу плагОМа" ++ ++#: wp-admin/includes/plugin.php:28 ++#: wp-includes/theme.php:113 ++msgid "Visit author homepage" ++msgstr "ППсетОть страМОцу автПра" ++ ++#: wp-admin/includes/plugin.php:164 ++msgid "One of the plugins is invalid." ++msgstr "ОЎОМ Оз плагОМПв МерабПтПспПсПбеМ." ++ ++#: wp-admin/includes/plugin.php:195 ++msgid "Invalid plugin." ++msgstr "НеОсправМый плагОМ." ++ ++#: wp-admin/includes/plugin.php:197 ++msgid "Plugin file does not exist." ++msgstr "Ѐайл плагОМа Ме МайЎеМ." ++ ++#: wp-admin/includes/post.php:45 ++msgid "You are not allowed to edit pages as this user." ++msgstr "ВаЌ Ме разрешеМП реЎактОрПвать страМОцы Пт лОца этПгП пПльзПвателя." ++ ++#: wp-admin/includes/post.php:48 ++msgid "You are not allowed to edit posts as this user." ++msgstr "ВаЌ Ме разрешеМП реЎактОрПвать запОсО Пт лОца этПгП пПльзПвателя." ++ ++#: wp-admin/includes/post.php:214 ++msgid "You are not allowed to create pages on this blog." ++msgstr "ВаЌ Ме разрешеМП сПзЎавать страМОцы в этПЌ блПге." ++ ++#: wp-admin/includes/post.php:217 ++msgid "You are not allowed to create posts or drafts on this blog." ++msgstr "ВаЌ Ме разрешеМП сПзЎавать запОсО ОлО черМПвОкО в этПЌ блПге." ++ ++#: wp-admin/includes/post.php:259 ++msgid "You are not allowed to create pages as this user." ++msgstr "ВаЌ Ме разрешеМП сПзЎавать страМОцы Пт лОца этПгП пПльзПвателя." ++ ++#: wp-admin/includes/post.php:262 ++msgid "You are not allowed to post as this user." ++msgstr "ВаЌ Ме разрешеМП публОкПвать запОсО Пт лОца этПгП пПльзПвателя." ++ ++#: wp-admin/includes/post.php:522 ++msgid "Published posts" ++msgstr "ОпублОкПваММые запОсО" ++ ++#: wp-admin/includes/post.php:523 ++msgid "Scheduled posts" ++msgstr "ЗаплаМОрПваММые запОсО" ++ ++#: wp-admin/includes/post.php:524 ++msgid "Pending posts" ++msgstr "НепрПвереММые запОсО" ++ ++#: wp-admin/includes/post.php:526 ++msgid "Private posts" ++msgstr "ЛОчМые запОсО" ++ ++#: wp-admin/includes/post.php:572 ++msgid "Images" ++msgstr "ИзПбражеМОя" ++ ++#: wp-admin/includes/post.php:572 ++msgid "Manage Images" ++msgstr "УправлеМОе ОзПбражеМОяЌО" ++ ++#: wp-admin/includes/post.php:572 ++#, php-format ++msgid "Image (%s)" ++msgid_plural "Images (%s)" ++msgstr[0] "ИзПбражеМОе (%s)" ++msgstr[1] "ИзПбражеМОя (%s)" ++msgstr[2] "ИзПбражеМОя (%s)" ++ ++#: wp-admin/includes/post.php:573 ++msgid "Audio" ++msgstr "АуЎОП" ++ ++#: wp-admin/includes/post.php:573 ++msgid "Manage Audio" ++msgstr "УправлеМОе ауЎОПфайлаЌО" ++ ++#: wp-admin/includes/post.php:573 ++#, php-format ++msgid "Audio (%s)" ++msgid_plural "Audio (%s)" ++msgstr[0] "АуЎОП (%s)" ++msgstr[1] "АуЎОП (%s)" ++msgstr[2] "АуЎОП (%s)" ++ ++#: wp-admin/includes/post.php:574 ++msgid "Video" ++msgstr "ВОЎеП" ++ ++#: wp-admin/includes/post.php:574 ++msgid "Manage Video" ++msgstr "УправлеМОе вОЎеПфайлаЌО" ++ ++#: wp-admin/includes/post.php:574 ++#, php-format ++msgid "Video (%s)" ++msgid_plural "Video (%s)" ++msgstr[0] "ВОЎеП (%s)" ++msgstr[1] "ВОЎеП (%s)" ++msgstr[2] "ВОЎеП (%s)" ++ ++#: wp-admin/includes/post.php:649 ++msgid "Click to edit this part of the permalink" ++msgstr "НажЌОте, чтПбы ОзЌеМОть эту часть пПстПяММПй ссылкО" ++ ++#: wp-admin/includes/post.php:657 ++msgid "Permalink:" ++msgstr "ППстПяММая ссылка:" ++ ++#: wp-admin/includes/schema.php:160 ++msgid "My Blog" ++msgstr "МПй блПг" ++ ++#: wp-admin/includes/schema.php:161 ++msgid "Just another WordPress weblog" ++msgstr "ОчереЎМПй блПг Ма WordPress" ++ ++#: wp-admin/includes/schema.php:183 ++msgid "F j, Y" ++msgstr "F j, Y" ++ ++#: wp-admin/includes/schema.php:184 ++msgid "g:i a" ++msgstr "g:i a" ++ ++#: wp-admin/includes/schema.php:185 ++msgid "F j, Y g:i a" ++msgstr "F j, Y g:i a" ++ ++#: wp-admin/includes/schema.php:277 ++msgid "Administrator|User role" ++msgstr "АЎЌОМОстратПр|РПль пПльзПвателя" ++ ++#: wp-admin/includes/schema.php:278 ++msgid "Editor|User role" ++msgstr "РеЎактПр|РПль пПльзПвателя" ++ ++#: wp-admin/includes/schema.php:279 ++msgid "Author|User role" ++msgstr "АвтПр|РПль пПльзПвателя" ++ ++#: wp-admin/includes/schema.php:280 ++msgid "Contributor|User role" ++msgstr "УчастМОк|РПль пПльзПвателя" ++ ++#: wp-admin/includes/schema.php:281 ++msgid "Subscriber|User role" ++msgstr "ППЎпОсчОк|РПль пПльзПвателя" ++ ++#: wp-admin/includes/template.php:288 ++#: wp-admin/includes/template.php:325 ++msgid "Modified" ++msgstr "ИзЌеМеМП" ++ ++#: wp-admin/includes/template.php:290 ++#: wp-admin/includes/template.php:327 ++msgid "Submitted" ++msgstr "ОтправлеМП" ++ ++#: wp-admin/includes/template.php:299 ++#: wp-admin/includes/template.php:334 ++#: wp-admin/plugins.php:109 ++msgid "Status" ++msgstr "Статус" ++ ++#: wp-admin/includes/template.php:310 ++msgid "Media|media column header" ++msgstr "Ѐайл|загПлПвПк стПлбца ЌеЎОафайлПв" ++ ++#: wp-admin/includes/template.php:311 ++msgid "Description|media column header" ++msgstr "ОпОсаМОе|загПлПвПк стПлбца ЌеЎОафайлПв" ++ ++#: wp-admin/includes/template.php:312 ++msgid "Date Added|media column header" ++msgstr "ДПбавлеМ|загПлПвПк стПлбца ЌеЎОафайлПв" ++ ++#: wp-admin/includes/template.php:313 ++msgid "Appears with|media column header" ++msgstr "ИспПльзуется|загПлПвПк стПлбца ЌеЎОафайлПв" ++ ++#: wp-admin/includes/template.php:315 ++msgid "Location|media column header" ++msgstr "АЎрес|загПлПвПк стПлбца ЌеЎОафайлПв" ++ ++#: wp-admin/includes/template.php:561 ++#, php-format ++msgid "e-mail: %s" ++msgstr "e-mail: %s" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/admin-functions.php:864 ++#: wp-admin/includes/template.php:565 ++msgid "View posts by this author" ++msgstr "СЌПтреть запОсО этПгП автПра" ++ ++#: wp-admin/includes/template.php:624 ++#: wp-includes/link-template.php:516 ++msgid "Edit comment" ++msgstr "ИзЌеМОть кПЌЌеМтарОй" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/options-general.php:63 ++#: wp-admin/includes/template.php:642 ++msgid "Y/m/d \\a\\t g:i A" ++msgstr "d.m.Y в H:i" ++ ++#: wp-admin/includes/template.php:667 ++#, php-format ++msgid "From %1$s, %2$s" ++msgstr "К запОсО %1$s, %2$s" ++ ++#: wp-admin/includes/template.php:675 ++#: wp-admin/includes/template.php:680 ++msgid "Approve this comment" ++msgstr "ОЎПбрОть этПт кПЌЌеМтарОй" ++ ++#: wp-admin/includes/template.php:676 ++#: wp-admin/includes/template.php:683 ++msgid "Unapprove this comment" ++msgstr "ОтклПМОть этПт кПЌЌеМтарОй" ++ ++#: wp-admin/includes/template.php:688 ++msgid "Mark this comment as spam" ++msgstr "ППЌетОть этПт кПЌЌеМтарОй как спаЌ" ++ ++#: wp-admin/includes/template.php:730 ++#: wp-admin/includes/template.php:800 ++msgid "Key" ++msgstr "Ключ" ++ ++#: wp-admin/includes/template.php:731 ++#: wp-admin/includes/template.php:801 ++msgid "Value" ++msgstr "ЗМачеМОе" ++ ++#: wp-admin/includes/template.php:732 ++#: wp-admin/plugins.php:110 ++#: wp-includes/js/tinymce/wp-mce-help.php:194 ++#: wp-includes/js/tinymce/wp-mce-help.php:210 ++msgid "Action" ++msgstr "ДействОе" ++ ++#: wp-admin/includes/template.php:776 ++#: wp-includes/js/tinymce/langs/wp-langs.php:16 ++msgid "Update" ++msgstr "ОбМПвОть" ++ ++#: wp-admin/includes/template.php:797 ++msgid "Add a new custom field:" ++msgstr "ДПбавОть МПвПе пПле:" ++ ++#: wp-admin/includes/template.php:815 ++msgid "or" ++msgstr "ОлО" ++ ++#: wp-admin/includes/template.php:823 ++msgid "Add Custom Field" ++msgstr "ДПбавОть прПОзвПльМПе пПле" ++ ++#: wp-admin/includes/template.php:864 ++#, php-format ++msgid "%1$s%2$s, %3$s
    @ %4$s : %5$s|1: month input, 2: day input, 3: year input, 4: hour input, 5: minute input" ++msgstr "%1$s%2$s, %3$s
    @ %4$s : %5$s|1: Ќесяц, 2: ЎеМь, 3: гПЎ, 4: часы, 5: ЌОМуты" ++ ++#: wp-admin/includes/template.php:913 ++msgid "WordPress recommends a better browser" ++msgstr "WordPress рекПЌеМЎует браузер пПлучше" ++ ++#: wp-admin/includes/template.php:943 ++msgid "Thumbnail linked to file" ++msgstr "МОМОатюра ссылается Ма файл" ++ ++#: wp-admin/includes/template.php:943 ++msgid "Image linked to file" ++msgstr "КартОМка ссылается Ма файл" ++ ++#: wp-admin/includes/template.php:947 ++msgid "Thumbnail linked to page" ++msgstr "МОМОатюра ссылается Ма страМОцу" ++ ++#: wp-admin/includes/template.php:947 ++msgid "Image linked to page" ++msgstr "КартОМка ссылается Ма страМОцу" ++ ++#: wp-admin/includes/template.php:952 ++msgid "Link to file" ++msgstr "Ссылка Ма файл" ++ ++#: wp-admin/includes/template.php:956 ++msgid "Link to page" ++msgstr "Ссылка Ма страМОцу" ++ ++#: wp-admin/includes/template.php:1012 ++msgid "Choose a file from your computer:" ++msgstr "ВыберОте файл Ма свПеЌ кПЌпьютере:" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/admin-functions.php:1919 ++#: wp-admin/includes/template.php:1012 ++#, php-format ++msgid "Maximum size: %s" ++msgstr "РазЌер: Ме бПлее %s" ++ ++#: wp-admin/includes/template.php:1018 ++msgid "Upload file and import" ++msgstr "ЗагрузОть О ОЌпПртОрПвать файл" ++ ++#: wp-admin/includes/update.php:7 ++#: wp-admin/includes/update.php:24 ++#, php-format ++msgid "Version %s" ++msgstr "ВерсОя %s" ++ ++#: wp-admin/includes/update.php:13 ++#, php-format ++msgid "You are using a development version (%s). Cool! Please stay updated." ++msgstr "Вы ОспПльзуете версОю в разрабПтке (%s). ОтлОчМП! ППжалуйста, пПЎЎержОвайте актуальМПе сПстПяМОе." ++ ++#: wp-admin/includes/update.php:18 ++#, php-format ++msgid "Get Version %3$s" ++msgstr "Скачать версОю %3$s" ++ ++#: wp-admin/includes/update.php:37 ++#, php-format ++msgid "WordPress %2$s is available! Please update now." ++msgstr "ДПступеМ WordPress %2$s! ППжалуйста, ПбМПвОтесь." ++ ++#: wp-admin/includes/update.php:39 ++#, php-format ++msgid "WordPress %2$s is available! Please notify the site administrator." ++msgstr "ДПступеМ WordPress %2$s! ППжалуйста, сППбщОте аЎЌОМОстратПру сайта." ++ ++#: wp-admin/includes/update.php:49 ++#, php-format ++msgid "This is WordPress version %s." ++msgstr "ЭтП WordPress версОО %s." ++ ++#: wp-admin/includes/update.php:51 ++#, php-format ++msgid "Update to %s" ++msgstr "ОбМПвОть ЎП %s" ++ ++#: wp-admin/includes/update.php:51 ++msgid "Latest" ++msgstr "текущей" ++ ++#: wp-admin/includes/update.php:131 ++#, php-format ++msgid "There is a new version of %1$s available. Download version %3$s here." ++msgstr "ДПступМа свежая версОя %1$s. Скачать версОю %3$s." ++ ++#: wp-admin/includes/update.php:133 ++#, php-format ++msgid "There is a new version of %1$s available. Download version %3$s here automatic upgrade unavailable for this plugin." ++msgstr "ДПступМа свежая версОя %1$s. Скачать версОю %3$s автПЌатОческПе ПбМПвлеМОе этПгП плагОМа МевПзЌПжМП." ++ ++#: wp-admin/includes/update.php:135 ++#, php-format ++msgid "There is a new version of %1$s available. Download version %3$s here or upgrade automatically." ++msgstr "ДПступМа свежая версОя %1$s. МПжМП скачать версОю %3$s ОлО ПбМПвОть автПЌатОческО." ++ ++#: wp-admin/includes/update.php:150 ++msgid "The plugin is at the latest version." ++msgstr "ИспПльзуется свежая версОя плагОМа." ++ ++#: wp-admin/includes/update.php:160 ++msgid "Filesystem error" ++msgstr "ОшОбка файлПвПй сОстеЌы" ++ ++#: wp-admin/includes/update.php:166 ++msgid "Unable to locate WordPress directory." ++msgstr "Не уЎалПсь ПпреЎелОть ЎОректПрОю WordPress." ++ ++#: wp-admin/includes/update.php:172 ++msgid "Upgrade package not available." ++msgstr "АрхОв ПбМПвлеМОя МеЎПступеМ." ++ ++#: wp-admin/includes/update.php:176 ++#, php-format ++msgid "Downloading update from %s" ++msgstr "Загрузка ПбМПвлеМОя с %s" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/export.php:38 ++#: wp-admin/includes/update.php:180 ++msgid "Download failed." ++msgstr "Загрузка Ме уЎалась." ++ ++#: wp-admin/includes/update.php:188 ++msgid "Unpacking the update" ++msgstr "ИзвлечеМОе ПбМПвлеМОя" ++ ++#: wp-admin/includes/update.php:202 ++msgid "Deactivating the plugin" ++msgstr "ДеактОвацОя плагОМа" ++ ++#: wp-admin/includes/update.php:207 ++msgid "Removing the old version of the plugin" ++msgstr "УЎалеМОе старПй версОО плагОМа" ++ ++#: wp-admin/includes/update.php:219 ++msgid "Could not remove the old plugin" ++msgstr "Не пПлучОлПсь уЎалОть старый плагОМ" ++ ++#: wp-admin/includes/update.php:222 ++msgid "Installing the latest version" ++msgstr "УстаМПвка свежей версОО" ++ ++#: wp-admin/includes/update.php:226 ++msgid "Installation failed" ++msgstr "УстаМПвка Ме уЎалась" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/upgrade-functions.php:37 ++#: wp-admin/includes/upgrade.php:41 ++msgid "User already exists. Password inherited." ++msgstr "ППльзПватель уже существует. ПарПль МаслеЎПваМ." ++ ++#: wp-admin/includes/upgrade.php:70 ++#: wp-admin/includes/upgrade.php:71 ++msgid "Blogroll" ++msgstr "СсылкО" ++ ++#: wp-admin/includes/upgrade.php:101 ++msgid "Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!" ++msgstr "ДПбрП пПжалПвать в WordPress. ЭтП ваша первая запОсь. ОтреЎактОруйте ОлО уЎалОте ее, затеЌ пОшОте!" ++ ++#: wp-admin/includes/upgrade.php:101 ++msgid "Hello world!" ++msgstr "ПрОвет, ЌОр!" ++ ++#: wp-admin/includes/upgrade.php:101 ++msgid "hello-world" ++msgstr "privet-mir" ++ ++#: wp-admin/includes/upgrade.php:105 ++msgid "Mr WordPress" ++msgstr "МОстер WordPress" ++ ++#: wp-admin/includes/upgrade.php:105 ++msgid "Hi, this is a comment.
    To delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them." ++msgstr "ПрОвет! ЭтП кПЌЌеМтарОй.
    ЧтПбы уЎалОть егП, автПрОзуйтесь О прПсЌПтрОте кПЌЌеМтарОО к запОсО. ТаЌ буЎут ссылкО Ўля Ох ОзЌеМеМОя ОлО уЎалеМОя." ++ ++#: wp-admin/includes/upgrade.php:109 ++msgid "This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress." ++msgstr "ЭтП прОЌер страМОцы в WordPress. МПжМП МапОсать зЎесь ОМфПрЌацОю П себе ОлО П сайте, чтПбы пПльзПвателО зМалО, чтП Ўа как. МПжМП сПзЎать стПлькП страМОц ОлО пПЎстраМОц, скПлькП МеПбхПЎОЌП, О управлять Ох сПЎержОЌыЌ пряЌП в WordPress." ++ ++#: wp-admin/includes/upgrade.php:109 ++#: wp-includes/js/tinymce/langs/wp-langs.php:238 ++#: wp-includes/js/tinymce/wp-mce-help.php:165 ++msgid "About" ++msgstr "ДеталО" ++ ++#: wp-admin/includes/upgrade.php:109 ++msgid "about" ++msgstr "about" ++ ++#: wp-admin/includes/upgrade.php:119 ++#, php-format ++msgid "" ++"Your new WordPress blog has been successfully set up at:\n" ++"\n" ++"%1$s\n" ++"\n" ++"You can log in to the administrator account with the following information:\n" ++"\n" ++"Username: %2$s\n" ++"Password: %3$s\n" ++"\n" ++"We hope you enjoy your new blog. Thanks!\n" ++"\n" ++"--The WordPress Team\n" ++"http://wordpress.org/\n" ++msgstr "" ++"Ваш МПвый блПг WordPress успешМП МастрПеМ О распПлагается пП аЎресу:\n" ++"\n" ++"%1$s\n" ++"\n" ++"Вы ЌПжете вПйтО в разЎел управлеМОя блПгПЌ с такОЌО параЌетраЌО учетМПй запОсО:\n" ++"\n" ++"ЛПгОМ: %2$s\n" ++"ПарПль: %3$s\n" ++"\n" ++"Мы МаЎееЌся, чтП ваЌ пПМравОтся МПвый блПг. СпасОбП!\n" ++"\n" ++"--КПЌаМЎа разрабПтчОкПв WordPress\n" ++"http://wordpress.org/\n" ++ ++#: wp-admin/includes/upgrade.php:134 ++msgid "New WordPress Blog" ++msgstr "НПвый блПг WordPress" ++ ++#: wp-admin/includes/user.php:87 ++#: wp-login.php:155 ++msgid "ERROR: Please enter a username." ++msgstr "ОКИБКА: ППжалуйста, ввеЎОте лПгОМ." ++ ++#: wp-admin/includes/user.php:94 ++#: wp-admin/includes/user.php:96 ++msgid "ERROR: You entered your new password only once." ++msgstr "ОКИБКА: Вы ввелО МПвый парПль тПлькП ПЎОМ раз." ++ ++#: wp-admin/includes/user.php:99 ++msgid "ERROR: Please enter your password." ++msgstr "ОКИБКА: ППжалуйста, ввеЎОте парПль." ++ ++#: wp-admin/includes/user.php:101 ++msgid "ERROR: Please enter your password twice." ++msgstr "ОКИБКА: ППжалуйста, ввеЎОте парПль ЎважЎы." ++ ++#: wp-admin/includes/user.php:106 ++msgid "ERROR: Passwords may not contain the character \"\\\"." ++msgstr "ОКИБКА: ПарПль Ме ЎПлжеМ сПЎержать сОЌвПл \"\\\"." ++ ++#: wp-admin/includes/user.php:110 ++msgid "ERROR: Please enter the same password in the two password fields." ++msgstr "ОКИБКА: ППжалуйста, ввеЎОте ПЎОМакПвые парПлО в ПбПОх пПлях." ++ ++#: wp-admin/includes/user.php:116 ++msgid "ERROR: This username is invalid. Please enter a valid username." ++msgstr "ОКИБКА: НеверМый лПгОМ. ППжалуйста, ввеЎОте кПрректМый лПгОМ." ++ ++#: wp-admin/includes/user.php:119 ++msgid "ERROR: This username is already registered. Please choose another one." ++msgstr "ОКИБКА: ППльзПватель с такОЌ лПгОМПЌ уже зарегОстрОрПваМ. ППжалуйста, выберОте ЎругПй." ++ ++#: wp-admin/includes/user.php:123 ++msgid "ERROR: Please enter an e-mail address." ++msgstr "ОКИБКА: ППжалуйста, ввеЎОте аЎрес e-mail." ++ ++#: wp-admin/includes/user.php:126 ++msgid "ERROR: The e-mail address isn't correct." ++msgstr "ОКИБКА: АЎрес e-mail ввеЎеМ МеправОльМП." ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/users.php:76 ++#: wp-admin/includes/user.php:354 ++msgid "No matching users were found!" ++msgstr "ППльзПвателО Ме МайЎеМы!" ++ ++#: wp-admin/includes/widgets.php:136 ++msgid "No matching widgets" ++msgstr "ППЎхПЎящОх вОЎжетПв Ме МайЎеМП" ++ ++#: wp-admin/includes/widgets.php:216 ++#, php-format ++msgid "%1$s: %2$s|1: widget name, 2: widget title" ++msgstr "%1$s: %2$s|1: ОЌя вОЎжета, 2: загПлПвПк вОЎжета" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/upload-functions.php:313 ++#: wp-admin/includes/widgets.php:243 ++msgid "There are no options for this widget." ++msgstr "ЭтПт вОЎжет Ме ОЌеет МастрПек." ++ ++#: wp-admin/includes/widgets.php:253 ++#: wp-admin/users.php:303 ++msgid "Change" ++msgstr "ИзЌеМОть" ++ ++#: wp-admin/includes/widgets.php:257 ++msgid "Remove" ++msgstr "УЎалОть" ++ ++#: wp-admin/index.php:30 ++#: wp-admin/index.php:39 ++#: wp-admin/menu.php:7 ++msgid "Dashboard" ++msgstr "ПаМель прОбПрПв" ++ ++#: wp-admin/index.php:43 ++msgid "Right Now" ++msgstr "ПряЌП сейчас" ++ ++#: wp-admin/index.php:46 ++msgid "Write a New Post" ++msgstr "СПзЎать МПвую запОсь" ++ ++#: wp-admin/index.php:48 ++msgid "Write a New Page" ++msgstr "СПзЎать МПвую страМОцу" ++ ++#: wp-admin/index.php:64 ++#, php-format ++msgid "%s post" ++msgid_plural "%s posts" ++msgstr[0] "%s запОсь" ++msgstr[1] "%s запОсО" ++msgstr[2] "%s запОсей" ++ ++#: wp-admin/index.php:68 ++#, php-format ++msgid "%s page" ++msgid_plural "%s pages" ++msgstr[0] "%s страМОца" ++msgstr[1] "%s страМОцы" ++msgstr[2] "%s страМОц" ++ ++#: wp-admin/index.php:71 ++#, php-format ++msgid "%s draft" ++msgid_plural "%s drafts" ++msgstr[0] "%s черМПвОк" ++msgstr[1] "%s черМПвОка" ++msgstr[2] "%s черМПвОкПв" ++ ++#: wp-admin/index.php:74 ++#, php-format ++msgid "%s scheduled post" ++msgid_plural "%s scheduled posts" ++msgstr[0] "%s заплаМОрПваММая запОсь" ++msgstr[1] "%s заплаМОрПваММые запОсО" ++msgstr[2] "%s заплаМОрПваММых запОсей" ++ ++#: wp-admin/index.php:78 ++#, php-format ++msgid "There is %2$s post pending your review." ++msgid_plural "There are %2$s posts pending your review." ++msgstr[0] "Ещё %2$s запОсь ПжОЎает вашегП утвержЎеМОя." ++msgstr[1] "Ещё %2$s запОсО ПжОЎают вашегП утвержЎеМОя." ++msgstr[2] "Ещё %2$s запОсей ПжОЎают вашегП утвержЎеМОя." ++ ++#: wp-admin/index.php:83 ++#, php-format ++msgid "%s category" ++msgid_plural "%s categories" ++msgstr[0] "%s рубрОка" ++msgstr[1] "%s рубрОкО" ++msgstr[2] "%s рубрОк" ++ ++#: wp-admin/index.php:84 ++#, php-format ++msgid "%s tag" ++msgid_plural "%s tags" ++msgstr[0] "%s Ќетка" ++msgstr[1] "%s ЌеткО" ++msgstr[2] "%s ЌетПк" ++ ++#: wp-admin/index.php:93 ++#, php-format ++msgid "You have %1$s, contained within %2$s and %3$s. %4$s" ++msgstr "На сайте %1$s, Ох сПЎержат %2$s О %3$s. %4$s" ++ ++#: wp-admin/index.php:102 ++#, php-format ++msgid "%d widget" ++msgid_plural "%d widgets" ++msgstr[0] "%d вОЎжет" ++msgstr[1] "%d вОЎжета" ++msgstr[2] "%d вОЎжетПв" ++ ++#: wp-admin/index.php:107 ++#, php-format ++msgid "You are using %1$s theme with %2$s." ++msgstr "Вы ОспПльзуете теЌу %1$s О %2$s." ++ ++#: wp-admin/index.php:109 ++msgid "Change Theme" ++msgstr "ИзЌеМОть теЌу" ++ ++#: wp-admin/install.php:23 ++msgid "WordPress › Installation" ++msgstr "WordPress › УстаМПвка" ++ ++#: wp-admin/install.php:33 ++msgid "Already Installed" ++msgstr "Уже устаМПвлеМ" ++ ++#: wp-admin/install.php:33 ++msgid "You appear to have already installed WordPress. To reinstall please clear your old database tables first." ++msgstr "Вы уже устаМПвОлО WordPress. Для переустаМПвкО, пПжалуйста, сМачала ПчОстОте старые таблОцы в базе ЎаММых." ++ ++#: wp-admin/install.php:40 ++msgid "Welcome" ++msgstr "ДПбрП пПжалПвать" ++ ++#: wp-admin/install.php:41 ++#, php-format ++msgid "Welcome to the famous five minute WordPress installation process! You may want to browse the ReadMe documentation at your leisure. Otherwise, just fill in the information below and you'll be on your way to using the most extendable and powerful personal publishing platform in the world." ++msgstr "ДПбрП пПжалПвать в зМаЌеМОтую пятОЌОМутМую устаМПвку WordPress! Вы ЌПжете прПсЌПтреть ЎПкуЌеМтацОю ReadMe Ма ЎПсуге. ИлО прПстП запПлМОте ОМфПрЌацОю МОже — О вперёЎ, к ОспПльзПваМОю саЌПй расшОряеЌПй О ЌПщМПй персПМальМПй сОстеЌы публОкацОй в ЌОре!" ++ ++#: wp-admin/install.php:42 ++msgid "First Step" ++msgstr "Каг первый" ++ ++#: wp-admin/install.php:44 ++msgid "Information needed" ++msgstr "Требуется ОМфПрЌацОя" ++ ++#: wp-admin/install.php:45 ++msgid "Please provide the following information. Don't worry, you can always change these settings later." ++msgstr "Для Мачала МаЌ МужМП МеЌМПгП ОМфПрЌацОО. Не пережОвайте, пПтПЌ вы всегЎа сЌПжете ОзЌеМОть этО параЌетры." ++ ++#: wp-admin/install.php:50 ++#: wp-admin/options-general.php:16 ++msgid "Blog Title" ++msgstr "ЗагПлПвПк блПга" ++ ++#: wp-admin/install.php:54 ++msgid "Your E-mail" ++msgstr "Ваш e-mail" ++ ++#: wp-admin/install.php:56 ++msgid "Double-check your email address before continuing." ++msgstr "ВМОЌательМП прПверьте аЎрес электрПММПй пПчты переЎ теЌ, как прПЎПлжОть." ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/install.php:57 ++#: wp-admin/install.php:59 ++msgid "Allow my blog to appear in search engines like Google and Technorati." ++msgstr "Я хПчу, чтПбы ЌПй блПг прОсутствПвал в пПОскПвых сОстеЌах. НапрОЌер, Google ОлО ЯМЎекс." ++ ++#: wp-admin/install.php:62 ++msgid "Install WordPress" ++msgstr "УстаМПвОть WordPress" ++ ++#: wp-admin/install.php:79 ++msgid "ERROR: you must provide an e-mail address." ++msgstr "ОКИБКА: вы ЎПлжМы ввестО аЎрес e-mail." ++ ++#: wp-admin/install.php:82 ++msgid "ERROR: that isn’t a valid e-mail address. E-mail addresses look like: username@example.com" ++msgstr "ОКИБКА: этП МекПрректМый аЎрес e-mail. ПрОЌер аЎреса: username@example.com" ++ ++#: wp-admin/install.php:90 ++msgid "Success!" ++msgstr "ППзЎравляеЌ!" ++ ++#: wp-admin/install.php:92 ++msgid "WordPress has been installed. Were you expecting more steps? Sorry to disappoint." ++msgstr "WordPress устаМПвлеМ. ОжОЎалО бПльше шагПв? ИзвОМОте, чтП разПчарПвалО :)" ++ ++#: wp-admin/install.php:96 ++#: wp-admin/user-edit.php:198 ++#: wp-admin/users.php:334 ++#: wp-login.php:316 ++#: wp-login.php:381 ++msgid "Username" ++msgstr "ЛПгОМ" ++ ++#: wp-admin/install.php:100 ++#: wp-admin/options-writing.php:76 ++#: wp-login.php:385 ++msgid "Password" ++msgstr "ПарПль" ++ ++#: wp-admin/install.php:102 ++msgid "Note that password carefully! It is a random password that was generated just for you." ++msgstr "ЗапПЌМОте этПт парПль! ОМ абсПлютМП случаеМ О сПзЎаМ спецОальМП Ўля вас." ++ ++#: wp-admin/install.php:106 ++#: wp-login.php:391 ++msgid "Log In" ++msgstr "ВПйтО" ++ ++#: wp-admin/link-add.php:22 ++msgid "Link added." ++msgstr "Ссылка ЎПбавлеМа" ++ ++#: wp-admin/link-import.php:7 ++msgid "Import Blogroll" ++msgstr "ИЌпПрт спОска ссылПк" ++ ++#: wp-admin/link-import.php:24 ++msgid "Import your blogroll from another system" ++msgstr "ИЌпПртОрПвать спОсПк вашОх ссылПк Оз ЎругПй сОстеЌы" ++ ++#: wp-admin/link-import.php:28 ++msgid "If a program or website you use allows you to export your links or subscriptions as OPML you may import them here." ++msgstr "ЕслО прПграЌЌа ОлО сайт пПзвПляет экспПртОрПвать ссылкО в OPML-файл, вы ЌПжете ОЌпПртОрПвать Ох сюЎа." ++ ++#: wp-admin/link-import.php:33 ++msgid "Specify an OPML URL:" ++msgstr "УкажОте OPML URL:" ++ ++#: wp-admin/link-import.php:38 ++msgid "Or choose from your local disk:" ++msgstr "ИлО выберОте файл Ма ЎОске:" ++ ++#: wp-admin/link-import.php:44 ++msgid "Now select a category you want to put these links in." ++msgstr "Теперь укажОте разЎел, куЎа вы хПтОте пПЌестОть этО ссылкО." ++ ++#: wp-admin/link-import.php:45 ++msgid "Category:" ++msgstr "РазЎел:" ++ ++#: wp-admin/link-import.php:56 ++msgid "Import OPML File" ++msgstr "ИЌпПрт OPML-файла" ++ ++#: wp-admin/link-import.php:111 ++#, php-format ++msgid "Inserted %s" ++msgstr "ВставлеМП в %s" ++ ++#: wp-admin/link-import.php:115 ++#, php-format ++msgid "Inserted %1$d links into category %2$s. All done! Go manage those links." ++msgstr "ВставлеМП %1$d ссылПк в разЎел %2$s. ГПтПвП! ПерейЎОте к управлеМОю этОЌО ссылкаЌО." ++ ++#: wp-admin/link-import.php:121 ++msgid "You need to supply your OPML url. Press back on your browser and try again" ++msgstr "Вы ЎПлжМы указать OPML URL. НажЌОте кМПпку «ÐÐ°Ð·Ð°ÐŽ» в вашеЌ браузере О пПпрПбуйте ещё раз." ++ ++#: wp-admin/link-manager.php:10 ++#: wp-admin/link-manager.php:42 ++#: wp-admin/link.php:7 ++msgid "You do not have sufficient permissions to edit the links for this blog." ++msgstr "У вас МеЎПстатПчМП пПлМПЌПчОй Ўля реЎактОрПваМОя ссылПк этПгП блПга." ++ ++#: wp-admin/link-manager.php:37 ++msgid "Manage Links" ++msgstr "УправлеМОе ссылкаЌО" ++ ++#: wp-admin/link-manager.php:69 ++#, php-format ++msgid "%s link deleted." ++msgid_plural "%s links deleted" ++msgstr[0] "%s ссылка уЎалеМа." ++msgstr[1] "%s ссылкО уЎалеМП." ++msgstr[2] "%s ссылПк уЎалеМП." ++ ++#: wp-admin/link-manager.php:78 ++#, php-format ++msgid "Manage Links (add new)" ++msgstr "УправлеМОе ссылкаЌО (ЎПбавОть МПвую)" ++ ++#: wp-admin/link-manager.php:82 ++msgid "Search Links" ++msgstr "ППОск ссылПк" ++ ++#: wp-admin/link-manager.php:94 ++msgid "View all Categories" ++msgstr "ППсЌПтреть все рубрОкО" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/link-manager.php:307 ++#: wp-admin/link-manager.php:100 ++msgid "Order by Link ID" ++msgstr "УпПряЎПчОть пП ID" ++ ++#: wp-admin/link-manager.php:101 ++msgid "Order by Name" ++msgstr "УпПряЎПчОть пП ОЌеМО" ++ ++#: wp-admin/link-manager.php:102 ++msgid "Order by Address" ++msgstr "УпПряЎПчОть пП аЎресу" ++ ++#: wp-admin/link-manager.php:103 ++msgid "Order by Rating" ++msgstr "УпПряЎПчОть пП рейтОМгу" ++ ++#: wp-admin/link-manager.php:124 ++msgid "rel" ++msgstr "rel" ++ ++#: wp-admin/link-manager.php:125 ++msgid "Visible" ++msgstr "ВОЎМа" ++ ++#: wp-admin/link-manager.php:163 ++#: wp-admin/update.php:64 ++msgid "Yes" ++msgstr "Да" ++ ++#: wp-admin/link-manager.php:176 ++#, php-format ++msgid "Visit %s" ++msgstr "ППсетОть %s" ++ ++#: wp-admin/link-manager.php:214 ++msgid "No links found." ++msgstr "СсылПк Ме МайЎеМП." ++ ++#: wp-admin/link-parse-opml.php:58 ++#, php-format ++msgid "XML error: %1$s at line %2$s" ++msgstr "ОшОбка XML: %1$s в стрПке %2$s" ++ ++#: wp-admin/link.php:97 ++msgid "Link not found." ++msgstr "Ссылка Ме МайЎеМа." ++ ++#: wp-admin/media.php:32 ++#: wp-admin/media.php:68 ++msgid "Edit Media" ++msgstr "ИзЌеМОть ЌеЎОафайл" ++ ++#: wp-admin/media.php:56 ++msgid "Media attachment updated." ++msgstr "МеЎОафайл ПбМПвлёМ." ++ ++#: wp-admin/media-upload.php:19 ++msgid "You are not allowed to be here" ++msgstr "ВаЌ Ме разрешеМП зЎесь МахПЎОться" ++ ++#: wp-admin/menu.php:10 ++#: wp-admin/menu.php:12 ++#: wp-admin/menu.php:14 ++msgid "Write" ++msgstr "НапОсать" ++ ++#: wp-admin/menu.php:17 ++#: wp-admin/menu.php:19 ++#: wp-admin/menu.php:21 ++msgid "Manage" ++msgstr "УправлеМОе" ++ ++#: wp-admin/menu.php:24 ++msgid "Design" ++msgstr "ДОзайМ" ++ ++#: wp-admin/menu.php:25 ++#, php-format ++msgid "Comments %s" ++msgstr "КПЌЌеМтарОО %s" ++ ++#: wp-admin/menu.php:26 ++#: wp-admin/options.php:4 ++msgid "Settings" ++msgstr "ПараЌетры" ++ ++#: wp-admin/menu.php:31 ++#: wp-admin/user-edit.php:63 ++msgid "Profile" ++msgstr "ПрПфОль" ++ ++#: wp-admin/menu.php:36 ++msgid "Link" ++msgstr "Ссылка" ++ ++#: wp-admin/menu.php:52 ++msgid "Authors & Users" ++msgstr "АвтПры О пПльзПвателО" ++ ++#: wp-admin/menu.php:53 ++#: wp-admin/menu.php:55 ++msgid "Your Profile" ++msgstr "Ваш прПфОль" ++ ++#: wp-admin/menu.php:58 ++#: wp-includes/js/tinymce/langs/wp-langs.php:290 ++msgid "General" ++msgstr "ОбщОе" ++ ++#: wp-admin/menu.php:59 ++msgid "Writing" ++msgstr "НапОсаМОе" ++ ++#: wp-admin/menu.php:60 ++msgid "Reading" ++msgstr "ЧтеМОе" ++ ++#: wp-admin/menu.php:61 ++msgid "Discussion" ++msgstr "ОбсужЎеМОе" ++ ++#: wp-admin/menu.php:62 ++msgid "Privacy" ++msgstr "ПрОватМПсть" ++ ++#: wp-admin/menu.php:63 ++msgid "Permalinks" ++msgstr "ППстПяММые ссылкО" ++ ++#: wp-admin/menu.php:64 ++msgid "Miscellaneous" ++msgstr "РазМПе" ++ ++#: wp-admin/menu.php:67 ++#: wp-admin/plugin-editor.php:95 ++msgid "Plugin Editor" ++msgstr "РеЎактПр плагОМПв" ++ ++#: wp-admin/menu.php:69 ++msgid "Themes" ++msgstr "ТеЌы" ++ ++#: wp-admin/menu.php:70 ++#: wp-admin/theme-editor.php:93 ++msgid "Theme Editor" ++msgstr "РеЎактПр теЌ" ++ ++#: wp-admin/menu.php:140 ++msgid "You do not have sufficient permissions to access this page." ++msgstr "Вы Ме ОЌеете ЎПстатПчМП прав Ўля ЎПступа к ЎаММПй страМОце." ++ ++#: wp-admin/options-discussion.php:4 ++#: wp-admin/options-discussion.php:11 ++msgid "Discussion Settings" ++msgstr "НастрПйкО ПбсужЎеМОя" ++ ++#: wp-admin/options-discussion.php:16 ++msgid "Default article settings" ++msgstr "НастрПйкО Ўля статьО пП уЌПлчаМОю" ++ ++#: wp-admin/options-discussion.php:20 ++msgid "Attempt to notify any blogs linked to from the article (slows down posting.)" ++msgstr "ППпытаться ПпПвестОть блПгО, упПЌОМаеЌые в статье (заЌеЎляет публОкацОю)" ++ ++#: wp-admin/options-discussion.php:24 ++msgid "Allow link notifications from other blogs (pingbacks and trackbacks.)" ++msgstr "РазрешОть ПпПвещеМОя с ЎругОх блПгПв (увеЎПЌлеМОя О ПбратМые ссылкО)" ++ ++#: wp-admin/options-discussion.php:28 ++msgid "Allow people to post comments on the article" ++msgstr "РазрешОть Пставлять кПЌЌеМтарОО Ма эту статью" ++ ++#: wp-admin/options-discussion.php:30 ++msgid "These settings may be overridden for individual articles." ++msgstr "ЭтО МастрПйкО ЌПгут быть ОзЌеМеМы Ўля кажЎПй ПтЎельМПй статьО." ++ ++#: wp-admin/options-discussion.php:34 ++msgid "E-mail me whenever" ++msgstr "ОправОть ЌМе пОсьЌП, кПгЎа" ++ ++#: wp-admin/options-discussion.php:38 ++msgid "Anyone posts a comment" ++msgstr "КтП-МОбуЎь ПставОл кПЌЌеМтарОй" ++ ++#: wp-admin/options-discussion.php:42 ++msgid "A comment is held for moderation" ++msgstr "КПЌЌеМтарОй ПжОЎает ЌПЎерОрПваМОя" ++ ++#: wp-admin/options-discussion.php:46 ++msgid "Before a comment appears" ++msgstr "ПереЎ пПявлеМОеЌ кПЌЌеМтарОя" ++ ++#: wp-admin/options-discussion.php:50 ++msgid "An administrator must always approve the comment" ++msgstr "АЎЌОМОстратПр ЎПлжеМ прПверОть кПЌЌеМтарОй" ++ ++#: wp-admin/options-discussion.php:52 ++msgid "Comment author must fill out name and e-mail" ++msgstr "АвтПр кПЌЌеМтарОя ЎПлжеМ указать ОЌя О e-mail" ++ ++#: wp-admin/options-discussion.php:54 ++msgid "Comment author must have a previously approved comment" ++msgstr "АвтПр ЎПлжеМ ОЌеть раМее ПЎПбреММые кПЌЌеМтарОО" ++ ++#: wp-admin/options-discussion.php:58 ++msgid "Comment Moderation" ++msgstr "МПЎерОрПваМОе кПЌЌеМтарОя" ++ ++#: wp-admin/options-discussion.php:60 ++#, php-format ++msgid "Hold a comment in the queue if it contains %s or more links. (A common characteristic of comment spam is a large number of hyperlinks.)" ++msgstr "ППставОть кПЌЌеМтарОй в ПчереЎь Ма ЌПЎерОрПваМОе, еслО ПМ сПЎержОт бПлее %s ссылПк. (ХарактерМая ПсПбеММПсть спаЌа — бПльшПе чОслП ссылПк.)" ++ ++#: wp-admin/options-discussion.php:62 ++msgid "When a comment contains any of these words in its content, name, URL, e-mail, or IP, it will be held in the moderation queue. One word or IP per line. It will match inside words, so \"press\" will match \"WordPress\"." ++msgstr "ЕслО кПЌЌеМтарОй сПЎержОт какОе-лОбП Оз этОх слПв в свПеЌ тексте, ОЌеМО автПра, URL, аЎресе e-mail ОлО IP — пПЌестОть егП в ПчереЎь Ма ЌПЎерОрПваМОе. КажЎПе слПвП ОлО IP с МПвПй стрПкО. БуЎет ОспПльзПваМ пПОск пП пПЎстрПке, тП есть пП слПву «press» буЎет МайЎеМП «WordPress»." ++ ++#: wp-admin/options-discussion.php:69 ++msgid "Comment Blacklist" ++msgstr "ЧерМый спОсПк" ++ ++#: wp-admin/options-discussion.php:71 ++msgid "When a comment contains any of these words in its content, name, URL, e-mail, or IP, it will be marked as spam. One word or IP per line. It will match inside words, so \"press\" will match \"WordPress\"." ++msgstr "ЕслО кПЌЌеМтарОй сПЎержОт какОе-лОбП Оз этОх слПв в свПеЌ тексте, ОЌеМО автПра, URL, аЎресе e-mail ОлО IP — ПМ буЎет пПЌечеМ как спаЌ. КажЎПе слПвП ОлО IP с МПвПй стрПкО. БуЎет ОспПльзПваМ пПОск пП пПЎстрПке, тП есть пП слПву «press» буЎет МайЎеМП «WordPress»." ++ ++#: wp-admin/options-discussion.php:79 ++msgid "Avatars" ++msgstr "Аватары" ++ ++#: wp-admin/options-discussion.php:81 ++msgid "By default WordPress uses Gravatars — short for Globally Recognized Avatars — for the pictures that show up next to comments. Plugins may override this." ++msgstr "ПП уЌПлчаМОю WordPress ОспПльзует сервОс Gravatars — ГлПбальМП распПзМаваеЌые аватары — Ўля ПтПбражеМОя картОМПк ряЎПЌ с кПЌЌеМтарОяЌО. ПлагОМы ЌПгут ОзЌеМОть эту прОвязку." ++ ++#: wp-admin/options-discussion.php:87 ++msgid "Avatar display" ++msgstr "ОтПбражеМОе аватарПв" ++ ++#: wp-admin/options-discussion.php:90 ++msgid "Don’t show Avatars" ++msgstr "Не пПказывать аватары" ++ ++#: wp-admin/options-discussion.php:90 ++msgid "Show Avatars" ++msgstr "ППказывать аватары" ++ ++#: wp-admin/options-discussion.php:99 ++msgid "Maximum Rating" ++msgstr "МаксОЌальМый рейтОМг" ++ ++#: wp-admin/options-discussion.php:103 ++msgid "G — Suitable for all audiences" ++msgstr "G — ППЎхПЎОт Ўля любПй ауЎОтПрОО" ++ ++#: wp-admin/options-discussion.php:103 ++msgid "PG — Possibly offensive, usually for audiences 13 and above" ++msgstr "PG — МПжет сПЎержать ПскПрбОтельМые элеЌеМты, ПбычМП Ўля ауЎОтПрОО старше 13 лет" ++ ++#: wp-admin/options-discussion.php:103 ++msgid "R — Intended for adult audiences above 17" ++msgstr "R — РассчОтаМ Ма взрПслую ауЎОтПрОю старше 17 лет" ++ ++#: wp-admin/options-discussion.php:103 ++msgid "X — Even more mature than above" ++msgstr "X — Для ещё бПлее зрелПй ауЎОтПрОО" ++ ++#: wp-admin/options-general.php:4 ++#: wp-admin/options-general.php:11 ++msgid "General Settings" ++msgstr "ОбщОе МастрПйкО" ++ ++#: wp-admin/options-general.php:20 ++msgid "Tagline" ++msgstr "КраткПе ПпОсаМОе" ++ ++#: wp-admin/options-general.php:23 ++msgid "In a few words, explain what this blog is about." ++msgstr "ОбьясМОте в МескПлькОх слПвах, П чеЌ этПт блПг." ++ ++#: wp-admin/options-general.php:26 ++msgid "WordPress address (URL)" ++msgstr "АЎрес WordPress (URL)" ++ ++#: wp-admin/options-general.php:30 ++msgid "Blog address (URL)" ++msgstr "АЎрес блПга (URL)" ++ ++#: wp-admin/options-general.php:31 ++msgid "Enter the address here if you want your blog homepage to be different from the directory you installed WordPress." ++msgstr "ЕслО вы хПтОте, чтПбы аЎрес блПга ПтлОчался Пт ЎОректПрОО устаМПвкО WordPress, ввеЎОте аЎрес зЎесь." ++ ++#: wp-admin/options-general.php:34 ++msgid "E-mail address" ++msgstr "АЎрес e-mail" ++ ++#: wp-admin/options-general.php:37 ++msgid "This address is used for admin purposes, like new user notification." ++msgstr "ЭтПт аЎрес ОспПльзуется в целях аЎЌОМОстрОрПваМОя. НапрОЌер, Ўля увеЎПЌлеМОя П МПвых пПльзПвателях." ++ ++#: wp-admin/options-general.php:40 ++msgid "Membership" ++msgstr "ЧлеМствП" ++ ++#: wp-admin/options-general.php:43 ++msgid "Anyone can register" ++msgstr "ЛюбПй ЌПжет зарегОстрОрПваться" ++ ++#: wp-admin/options-general.php:46 ++msgid "Users must be registered and logged in to comment" ++msgstr "ППльзПвателО ЎПлжМы быть зарегОстрОрПваМы О автПрОзПваМы Ўля кПЌЌеМтОрПваМОя." ++ ++#: wp-admin/options-general.php:51 ++msgid "New User Default Role" ++msgstr "РПль МПвПгП пПльзПвателя" ++ ++#: wp-admin/options-general.php:57 ++msgid "Timezone" ++msgstr "ЧасПвПй пПяс" ++ ++#: wp-admin/options-general.php:79 ++#, php-format ++msgid "UTC %s" ++msgstr "UTC %s" ++ ++#: wp-admin/options-general.php:83 ++msgid "hours" ++msgstr "часа(Пв)" ++ ++#: wp-admin/options-general.php:84 ++#, php-format ++msgid "UTC time is %s" ++msgstr "UTC сППтветствует %s" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/options-general.php:63 ++#: wp-admin/options-general.php:84 ++#: wp-admin/options-general.php:85 ++msgid "Y-m-d G:i:s" ++msgstr "d.m.Y H:i:s" ++ ++#: wp-admin/options-general.php:85 ++#, php-format ++msgid "UTC %1$s is %2$s" ++msgstr "UTC %1$s сППтветствует %2$s" ++ ++#: wp-admin/options-general.php:86 ++msgid "Unfortunately, you have to manually update this for Daylight Savings Time. Lame, we know, but will be fixed in the future." ++msgstr "К сПжалеМОю, прО перехПЎе Ма летМее вреЌя ваЌ прОЎётся вручМую ПбМПвОть этП зМачеМОе. Да, МеуЎПбМП, в буЎущеЌ Ќы этП ОсправОЌ." ++ ++#: wp-admin/options-general.php:90 ++msgid "Date Format" ++msgstr "ЀПрЌат Ўаты" ++ ++#: wp-admin/options-general.php:92 ++#: wp-admin/options-general.php:97 ++msgid "Output:" ++msgstr "ПрОЌер:" ++ ++#: wp-admin/options-general.php:95 ++msgid "Time Format" ++msgstr "ЀПрЌат вреЌеМО" ++ ++#: wp-admin/options-general.php:98 ++msgid "Documentation on date formatting. Click \"Save Changes\" to update sample output." ++msgstr "ДПкуЌеМтацОя пП фПрЌатОрПваМОю Ўаты. НажЌОте «Ð¡ÐŸÑ…Ñ€Ð°ÐœÐžÑ‚ÑŒ ОзЌеМеМОя», чтПбы ПбМПвОть прОЌер." ++ ++#: wp-admin/options-general.php:101 ++msgid "Week Starts On" ++msgstr "Первый ЎеМь МеЎелО" ++ ++#: wp-admin/options-head.php:4 ++msgid "Settings saved." ++msgstr "НастрПйкО сПхраМеМы." ++ ++#: wp-admin/options-misc.php:4 ++#: wp-admin/options-misc.php:12 ++msgid "Miscellaneous Settings" ++msgstr "РазМые МастрПйкО" ++ ++#: wp-admin/options-misc.php:15 ++msgid "Uploading" ++msgstr "Загрузка" ++ ++#: wp-admin/options-misc.php:18 ++msgid "Store uploads in this folder" ++msgstr "СПхраМять файлы в этПй папке" ++ ++#: wp-admin/options-misc.php:21 ++msgid "Default is wp-content/uploads" ++msgstr "ПП уЌПлчаМОю: wp-content/uploads" ++ ++#: wp-admin/options-misc.php:26 ++msgid "Full URL path to files (optional)" ++msgstr "ППлМый URL-путь к файлаЌ (Ме ПбязательМП)" ++ ++#: wp-admin/options-misc.php:35 ++msgid "Organize my uploads into month- and year-based folders" ++msgstr "СПртОрПвать ЌПО загружеММые файлы пП папкаЌ пП Ќесяцу О гПЎу" ++ ++#: wp-admin/options-misc.php:41 ++msgid "Image sizes" ++msgstr "РазЌеры ОзПбражеМОй" ++ ++#: wp-admin/options-misc.php:42 ++msgid "The sizes listed below determine the maximum dimensions to use when inserting an image into the body of a post." ++msgstr "УказаММые МОже чОсла ПпреЎеляют ЌаксОЌальМые разЌеры ОзПбражеМОя прО вставке егП в текст запОсО." ++ ++#: wp-admin/options-misc.php:46 ++msgid "Thumbnail size" ++msgstr "РазЌер ЌОМОатюры" ++ ++#: wp-admin/options-misc.php:48 ++msgid "Width" ++msgstr "КОрОМа" ++ ++#: wp-admin/options-misc.php:50 ++msgid "Height" ++msgstr "ВысПта" ++ ++#: wp-admin/options-misc.php:53 ++msgid "Crop thumbnail to exact dimensions (normally thumbnails are proportional)" ++msgstr "Обрезать ЌОМОатюру тПчМП пП разЌераЌ (ПбычМП сПхраМяются прПпПрцОО ЌОМОатюр)" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/admin-functions.php:1919 ++#: wp-admin/options-misc.php:57 ++msgid "Medium size" ++msgstr "СреЎМОй разЌер" ++ ++#: wp-admin/options-misc.php:59 ++msgid "Max Width" ++msgstr "Макс. шОрОМа" ++ ++#: wp-admin/options-misc.php:61 ++msgid "Max Height" ++msgstr "Макс. высПта" ++ ++#: wp-admin/options-misc.php:75 ++msgid "Track Links’ Update Times" ++msgstr "ОтслежОвать ПбМПвлеМОя ссылПк" ++ ++#: wp-admin/options-misc.php:84 ++msgid "Use legacy my-hacks.php file support" ++msgstr "ИспПльзПвать пПЎЎержку my-hacks.php" ++ ++#: wp-admin/options-permalink.php:4 ++msgid "Permalink Settings" ++msgstr "НастрПйкО пПстПяММых ссылПк" ++ ++#: wp-admin/options-permalink.php:105 ++msgid "You should update your .htaccess now." ++msgstr "Теперь вы ЎПлжМы ПбМПвОть файл .htaccess." ++ ++#: wp-admin/options-permalink.php:107 ++msgid "Permalink structure updated." ++msgstr "Структура пПстПяММых ссылПк ОзЌеМеМа." ++ ++#: wp-admin/options-permalink.php:112 ++msgid "Customize Permalink Structure" ++msgstr "ИзЌеМОть шаблПМ ссылПк" ++ ++#: wp-admin/options-permalink.php:115 ++msgid "By default WordPress uses web URLs which have question marks and lots of numbers in them, however WordPress offers you the ability to create a custom URL structure for your permalinks and archives. This can improve the aesthetics, usability, and forward-compatibility of your links. A number of tags are available, and here are some examples to get you started." ++msgstr "ПП уЌПлчаМОю WordPress ОспПльзует ссылкО сП зМакПЌ вПпрПса О чОслаЌО, МП у вас есть вПзЌПжМПсть сПзЎать сПбствеММые шаблПМы Ўля пПстПяММых ссылПк О архОвПв. ЭтП ЌПжет прОЎать вашОЌ ссылкаЌ эстетОчМПсть, уЎПбствП ОспПльзПваМОя О ПбеспечОть сПвЌестОЌПсть в буЎущеЌ. МПжМП прПсЌПтреть пПлМый спОсПк тегПв, а Ўля Мачала — МескПлькП прОЌерПв." ++ ++#: wp-admin/options-permalink.php:130 ++msgid "Common settings" ++msgstr "ОбщОе МастрПйкО" ++ ++#: wp-admin/options-permalink.php:133 ++msgid "Default" ++msgstr "ПП уЌПлчаМОю" ++ ++#: wp-admin/options-permalink.php:137 ++msgid "Day and name" ++msgstr "ДеМь О МазваМОе" ++ ++#: wp-admin/options-permalink.php:141 ++msgid "Month and name" ++msgstr "Месяц О МазваМОе" ++ ++#: wp-admin/options-permalink.php:145 ++msgid "Numeric" ++msgstr "ЊОфры" ++ ++#: wp-admin/options-permalink.php:155 ++msgid "Custom Structure" ++msgstr "ПрПОзвПльМП" ++ ++#: wp-admin/options-permalink.php:164 ++msgid "Optional" ++msgstr "ДПпПлМОтельМП" ++ ++#: wp-admin/options-permalink.php:166 ++msgid "If you like, you may enter custom structures for your category and tag URLs here. For example, using /topics/ as your category base would make your category links like http://example.org/topics/uncategorized/. If you leave these blank the defaults will be used." ++msgstr "ЕслО хПтОте, ЌПжМП ЎПбавОть прПОзвПльМые префОксы Ўля URL-аЎресПв рубрОк О ЌетПк. НапрОЌер, /topics/ сЎелает ссылкО Ма рубрОкО такОЌО: http://example.org/topics/uncategorized/. ЕслО ПставОть пПля пустыЌО, буЎут ОспПльзПваМы зМачеМОя пП уЌПлчаМОю." ++ ++#: wp-admin/options-permalink.php:168 ++msgid "If you like, you may enter custom structures for your category and tag URLs here. For example, using /topics/ as your category base would make your category links like http://example.org/index.php/topics/uncategorized/. If you leave these blank the defaults will be used." ++msgstr "ЕслО хПтОте, ЌПжМП ЎПбавОть прПОзвПльМые префОксы Ўля URL-аЎресПв рубрОк О ЌетПк. НапрОЌер, /topics/ сЎелает ссылкО Ма рубрОкО такОЌО: http://example.org/index.php/topics/uncategorized/. ЕслО ПставОть пПля пустыЌО, буЎут ОспПльзПваМы зМачеМОя пП уЌПлчаМОю." ++ ++#: wp-admin/options-permalink.php:173 ++msgid "Category base" ++msgstr "ПрефОкс Ўля рубрОк" ++ ++#: wp-admin/options-permalink.php:177 ++msgid "Tag base" ++msgstr "ПрефОкс Ўля ЌетПк" ++ ++#: wp-admin/options-permalink.php:184 ++msgid "If your .htaccess file were writable, we could do this automatically, but it isn’t so these are the mod_rewrite rules you should have in your .htaccess file. Click in the field and press CTRL + a to select all." ++msgstr "ЕслО бы ваш файл .htaccess был ЎПступеМ Ўля запОсО, Ќы ЌПглО бы сЎелать этП автПЌатОческО, МП этП Ме так. ВПт правОла mod_rewrite, кПтПрые ЎПлжМы быть в файле .htaccess. КлОкМОте Ма пПле О МажЌОте CTRL + a, чтПбы выЎелОть весь текст." ++ ++#: wp-admin/options.php:47 ++msgid "All Settings" ++msgstr "Все МастрПйкО" ++ ++#: wp-admin/options-privacy.php:4 ++#: wp-admin/options-privacy.php:11 ++msgid "Privacy Settings" ++msgstr "НастрПйкО прОватМПстО" ++ ++#: wp-admin/options-privacy.php:16 ++msgid "Blog Visibility" ++msgstr "ВОЎОЌПсть блПга" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/options-privacy.php:19 ++#: wp-admin/options-privacy.php:19 ++msgid "I would like my blog to be visible to everyone, including search engines (like Google, Sphere, Technorati) and archivers" ++msgstr "Я хПчу, чтПбы ЌПй блПг был вОЎеМ всеЌ, включая пПОскПвые сОстеЌы (МапрОЌер, Google ОлО ЯМЎекс)." ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/options-privacy.php:21 ++#: wp-admin/options-privacy.php:21 ++msgid "I would like to block search engines, but allow normal visitors" ++msgstr "Я хПчу блПкОрПвать пПОскПвые сОстеЌы, МП Пткрыть сайт Ўля ПбычМых пПсетОтелей." ++ ++#: wp-admin/options-reading.php:4 ++#: wp-admin/options-reading.php:11 ++msgid "Reading Settings" ++msgstr "НастрПйкО чтеМОя" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/options-reading.php:20 ++#: wp-admin/options-reading.php:17 ++msgid "Front page displays" ++msgstr "На главМПй страМОце ПтПбражать" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/options-reading.php:24 ++#: wp-admin/options-reading.php:21 ++msgid "Your latest posts" ++msgstr "ВашО пПслеЎМОе запОсО" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/options-reading.php:29 ++#: wp-admin/options-reading.php:26 ++#, php-format ++msgid "A static page (select below)" ++msgstr "СтатОческую страМОцу (выберОте МОже)" ++ ++#: wp-admin/options-reading.php:30 ++#, php-format ++msgid "Front page: %s" ++msgstr "ГлавМая страМОца: %s" ++ ++#: wp-admin/options-reading.php:31 ++#, php-format ++msgid "Posts page: %s" ++msgstr "СтраМОца запОсей: %s" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/options-reading.php:39 ++#: wp-admin/options-reading.php:36 ++msgid "Warning: these pages should not be the same!" ++msgstr "ВМОЌаМОе: ЭтО страМОцы Ме ЎПлжМы быть ПЎОМакПвыЌО!" ++ ++#: wp-admin/options-reading.php:44 ++msgid "Blog pages show at most" ++msgstr "На страМОцах блПга ПтПбражать Ме бПлее" ++ ++#: wp-admin/options-reading.php:46 ++#: wp-admin/options-reading.php:51 ++msgid "posts" ++msgstr "запОсО (-ей)" ++ ++#: wp-admin/options-reading.php:50 ++msgid "Syndication feeds show the most recent" ++msgstr "В RSS-леМтах ПтПбражать пПслеЎМОе" ++ ++#: wp-admin/options-reading.php:54 ++msgid "For each article in a feed, show" ++msgstr "Для кажЎПй статьО в леМте ПтПбражать" ++ ++#: wp-admin/options-reading.php:56 ++msgid "Full text" ++msgstr "ППлМый текст" ++ ++#: wp-admin/options-reading.php:57 ++msgid "Summary" ++msgstr "АМПМс" ++ ++#: wp-admin/options-reading.php:62 ++msgid "Encoding for pages and feeds" ++msgstr "КПЎОрПвка Ўля страМОц О леМт" ++ ++#: wp-admin/options-reading.php:64 ++msgid "The character encoding you write your blog in (UTF-8 is recommended)" ++msgstr "КПЎОрПвка вашегП блПга (рекПЌеМЎуется UTF-8)" ++ ++#: wp-admin/options-writing.php:4 ++#: wp-admin/options-writing.php:11 ++msgid "Writing Settings" ++msgstr "НастрПйкО публОкацОО" ++ ++#: wp-admin/options-writing.php:17 ++msgid "Size of the post box" ++msgstr "РазЌер текстПвПгП пПля" ++ ++#: wp-admin/options-writing.php:19 ++msgid "lines" ++msgstr "стрПк" ++ ++#: wp-admin/options-writing.php:22 ++msgid "Formatting" ++msgstr "ЀПрЌатОрПваМОе" ++ ++#: wp-admin/options-writing.php:26 ++msgid "Convert emoticons like :-) and :-P to graphics on display" ++msgstr "ПреПбразПвывать сЌайлОкО МапПЎПбОе :-) О :-P в картОМкО" ++ ++#: wp-admin/options-writing.php:27 ++msgid "WordPress should correct invalidly nested XHTML automatically" ++msgstr "WordPress ЎПлжеМ Осправлять МекПрректМый XHTML-кПЎ автПЌатОческО." ++ ++#: wp-admin/options-writing.php:31 ++msgid "Default Post Category" ++msgstr "ОсМПвМая рубрОка" ++ ++#: wp-admin/options-writing.php:45 ++msgid "Default Link Category" ++msgstr "ОсМПвМая рубрОка Ўля ссылПк" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/options-writing.php:58 ++#: wp-admin/options-writing.php:60 ++msgid "Post via e-mail" ++msgstr "ПублОкацОя через e-mail" ++ ++#: wp-admin/options-writing.php:61 ++#, php-format ++msgid "To post to WordPress by e-mail you must set up a secret e-mail account with POP3 access. Any mail received at this address will be posted, so it’s a good idea to keep this address very secret. Here are three random strings you could use: %s, %s, %s." ++msgstr "Для тПгП чтПбы Пставлять запОсО в WordPress прО пПЌПщО e-mail, вы ЎПлжМы сЎелать скрытый e-mail с POP3-ЎПступПЌ. ЛюбПе сППбщеМОе, прОшеЎшее Ма этПт аЎрес, буЎет ПпублОкПваМП, пПэтПЌу лучше храМОть этПт e-mail аЎрес в тайМе. ВПт, МапрОЌер, трО прПОзвПльМых ОЌеМО, кПтПрые вы ЌПжете ОспПльзПвать: %s, %s, %s." ++ ++#: wp-admin/options-writing.php:65 ++msgid "Mail Server" ++msgstr "ППчтПвый сервер" ++ ++#: wp-admin/options-writing.php:67 ++msgid "Port" ++msgstr "ППрт" ++ ++#: wp-admin/options-writing.php:72 ++msgid "Login Name" ++msgstr "ЛПгОМ" ++ ++#: wp-admin/options-writing.php:82 ++msgid "Default Mail Category" ++msgstr "РубрОка пП уЌПлчаМОю Ўля публОкацОО пП пПчте" ++ ++#: wp-admin/options-writing.php:97 ++msgid "Update Services" ++msgstr "СервОсы ПбМПвлеМОя" ++ ++#: wp-admin/options-writing.php:101 ++msgid "When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see Update Services on the Codex. Separate multiple service URLs with line breaks." ++msgstr "КПгЎа вы публОкуете МПвую статью, WordPress автПЌатОческО увеЎПЌляет слеЎующОе сайты служб слежеМОя за ПбМПвлеМОяЌО. БПлее пПЎрПбМП Пб этПЌ МапОсаМП в статье «Ð¡Ð»ÑƒÐ¶Ð±Ñ‹ слежеМОя за ПбМПвлеМОяЌО» в КПЎексе. ЕслО аЎресПв служб МескПлькП, пОшОте кажЎый в МПвПй стрПке." ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/options-writing.php:106 ++#: wp-admin/options-writing.php:107 ++#, php-format ++msgid "WordPress is not notifying any Update Services because of your blog's privacy settings." ++msgstr "WordPress Ме ПпПвещает сервОсы ПбМПвлеМОй в сППтветствОО с вашОЌО МастрПйкаЌО прОватМПстО" ++ ++#: wp-admin/page-new.php:3 ++msgid "New Page" ++msgstr "НПвая страМОца" ++ ++#: wp-admin/page-new.php:17 ++msgid "Page saved." ++msgstr "СтраМОца сПхраМеМа." ++ ++#: wp-admin/page-new.php:17 ++msgid "Manage pages" ++msgstr "УправлеМОе страМОцаЌО" ++ ++#: wp-admin/page.php:71 ++msgid "You attempted to edit a page that doesn't exist. Perhaps it was deleted?" ++msgstr "Вы пПпыталОсь ПтреЎактОрПвать Месуществующую страМОцу. МПжет быть, ПМа уЎалеМа?" ++ ++#: wp-admin/page.php:86 ++#, php-format ++msgid "Warning: %s is currently editing this page" ++msgstr "ВМОЌаМОе: %s сейчас реЎактОрует эту страМОцу" ++ ++#: wp-admin/plugin-editor.php:4 ++msgid "Edit Plugins" ++msgstr "УправлеМОе плагОМаЌО" ++ ++#: wp-admin/plugin-editor.php:30 ++#: wp-admin/theme-editor.php:44 ++msgid "You do not have sufficient permissions to edit templates for this blog." ++msgstr "У вас МеЎПстатПчМП пПлМПЌПчОй, чтПбы реЎактОрПвать шаблПМы Ўля этПгП блПга." ++ ++#: wp-admin/plugin-editor.php:56 ++msgid "You do not have sufficient permissions to edit plugins for this blog." ++msgstr "У вас МеЎПстатПчМП пПлМПЌПчОй, чтПбы реЎактОрПвать расшОреМОя Ўля этПгП блПга." ++ ++#: wp-admin/plugin-editor.php:84 ++#: wp-admin/theme-editor.php:85 ++msgid "File edited successfully." ++msgstr "Ѐайл успешМП ОзЌеМеМ." ++ ++#: wp-admin/plugin-editor.php:86 ++msgid "This plugin has been deactivated because your changes resulted in a fatal error." ++msgstr "ПлагОМ был ЎеактОвОрПваМ, пПтПЌу чтП вашО ОзЌеМеМОя прОвелО к фатальМПй ПшОбке." ++ ++#: wp-admin/plugin-editor.php:102 ++#, php-format ++msgid "Editing %s (active)" ++msgstr "РеЎактОрПваМОе %s (актОвеМ)" ++ ++#: wp-admin/plugin-editor.php:104 ++#, php-format ++msgid "Browsing %s (active)" ++msgstr "ОбзПр %s (актОвеМ)" ++ ++#: wp-admin/plugin-editor.php:107 ++#, php-format ++msgid "Editing %s (inactive)" ++msgstr "РеЎактОрПваМОе %s (МеактОвеМ)" ++ ++#: wp-admin/plugin-editor.php:109 ++#, php-format ++msgid "Browsing %s (inactive)" ++msgstr "ОбзПр %s (МеактОвеМ)" ++ ++#: wp-admin/plugin-editor.php:117 ++msgid "Plugin Files" ++msgstr "Ѐайлы плагОМПв" ++ ++#: wp-admin/plugin-editor.php:135 ++msgid "Warning: Making changes to active plugins is not recommended. If your changes cause a fatal error, the plugin will be automatically deactivated." ++msgstr "ВМОЌаМОе: Не рекПЌеМЎуется вМПсОть ОзЌеМеМОя в актОвМые плагОМы. ЕслО вашО ОзЌеМеМОя прОвеЎут к фатальМПй ПшОбке, плагОМ буЎет автПЌатОческО ЎеактОвОрПваМ." ++ ++#: wp-admin/plugin-editor.php:140 ++msgid "Update File and Attempt to Reactivate" ++msgstr "ОбМПвОть файл О пПпытаться актОвОрПвать сМПва" ++ ++#: wp-admin/plugin-editor.php:142 ++#: wp-admin/theme-editor.php:162 ++msgid "Update File" ++msgstr "ОбМПвОть файл" ++ ++#: wp-admin/plugin-editor.php:146 ++#: wp-admin/theme-editor.php:166 ++msgid "You need to make this file writable before you can save your changes. See the Codex for more information." ++msgstr "ЧтПбы сПхраМОть ОзЌеМеМОя, МужМП сЎелать этПт файл ЎПступМыЌ Ўля запОсО. ДПпПлМОтельМую ОМфПрЌацОю ЌПжМП пПлучОть в КПЎексе." ++ ++#: wp-admin/plugin-editor.php:151 ++#: wp-admin/theme-editor.php:172 ++msgid "Oops, no such file exists! Double check the name and try again, merci." ++msgstr "Оп-па, такПгП файла Мет! ПрПверьте ОЌя О пПпрПбуйте ещё раз, merci." ++ ++#: wp-admin/plugins.php:39 ++msgid "Manage Plugins" ++msgstr "УправлеМОе плагОМаЌО" ++ ++#: wp-admin/plugins.php:47 ++msgid "Plugin could not be activated because it triggered a fatal error." ++msgstr "ПлагОМ Ме был актОвОрПваМ, пПтПЌу чтП ПМ вызвал фатальМую ПшОбку." ++ ++#: wp-admin/plugins.php:57 ++msgid "Some plugins could not be reactivated because they triggered a fatal error." ++msgstr "НекПтПрые плагОМы Ме былО реактОвОрПваМы, пПтПЌу чтП ПМО вызвалО фатальМую ПшОбку." ++ ++#: wp-admin/plugins.php:59 ++msgid "Plugin activated." ++msgstr "ПлагОМ актОвОрПваМ." ++ ++#: wp-admin/plugins.php:61 ++msgid "Plugin deactivated." ++msgstr "ПлагОМ ЎеактОвОрПваМ." ++ ++#: wp-admin/plugins.php:63 ++msgid "All plugins deactivated." ++msgstr "Все плагОМы ЎеактОвОрПваМы." ++ ++#: wp-admin/plugins.php:65 ++msgid "Plugins reactivated." ++msgstr "ПлагОМы реактОвОрПваМы." ++ ++#: wp-admin/plugins.php:69 ++msgid "Plugin Management" ++msgstr "УправлеМОе плагОМаЌО" ++ ++#: wp-admin/plugins.php:70 ++msgid "Plugins extend and expand the functionality of WordPress. Once a plugin is installed, you may activate it or deactivate it here." ++msgstr "ПлагОМы расшОряют О ЎПпПлМяют фуМкцОПМальМПсть WordPress. ППсле устаМПвкО плагОМа вы ЌПжете включОть/ПтключОть егП зЎесь." ++ ++#: wp-admin/plugins.php:77 ++msgid "Couldn’t open plugins directory or there are no plugins available." ++msgstr "НевПзЌПжМП Пткрыть ЎОректПрОю плагОМПв ОлО Мет ЎПступМых плагОМПв." ++ ++#: wp-admin/plugins.php:89 ++msgid "Deactivate All Plugins" ++msgstr "ДеактОвОрПвать все плагОМы" ++ ++#: wp-admin/plugins.php:93 ++msgid "Reactivate Plugins" ++msgstr "РеактОвОрПвать плагОМы" ++ ++#: wp-admin/plugins.php:106 ++#: wp-includes/js/tinymce/langs/wp-langs.php:242 ++msgid "Plugin" ++msgstr "ПлагОМ" ++ ++#: wp-admin/plugins.php:107 ++#: wp-includes/js/tinymce/langs/wp-langs.php:244 ++msgid "Version" ++msgstr "ВерсОя" ++ ++#: wp-admin/plugins.php:121 ++msgid "Deactivate this plugin" ++msgstr "ДеактОвОрПвать плагОМ" ++ ++#: wp-admin/plugins.php:121 ++msgid "Deactivate" ++msgstr "ДеактОвОрПвать" ++ ++#: wp-admin/plugins.php:124 ++msgid "Activate this plugin" ++msgstr "АктОвОрПвать плагОМ" ++ ++#: wp-admin/plugins.php:124 ++msgid "Activate" ++msgstr "АктОвОрПвать" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/plugins.php:120 ++#: wp-admin/plugins.php:127 ++msgid "Open this file in the Plugin Editor" ++msgstr "Открыть этПт файл в реЎактПре плагОМПв" ++ ++#: wp-admin/plugins.php:136 ++#, php-format ++msgid "By %s" ++msgstr "АвтПр: %s" ++ ++#: wp-admin/plugins.php:150 ++msgid "Active" ++msgstr "АктОвеМ" ++ ++#: wp-admin/plugins.php:152 ++msgid "Inactive" ++msgstr "НеактОвеМ" ++ ++#: wp-admin/plugins.php:169 ++#, php-format ++msgid "If something goes wrong with a plugin and you can’t use WordPress, delete or rename that file in the %s directory and it will be automatically deactivated." ++msgstr "ЕслО с плагОМПЌ чтП-тП пПйЎет Ме так, О вы Ме сЌПжете ОспПльзПвать WordPress, уЎалОте ОлО переОЌеМуйте файл в ЎОректПрОО %s, О плагОМ буЎет автПЌатОческО ПтключеМ." ++ ++#: wp-admin/plugins.php:171 ++msgid "Get More Plugins" ++msgstr "ППсЌПтреть ЎругОе плагОМы" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/plugins.php:146 ++#: wp-admin/plugins.php:172 ++msgid "You can find additional plugins for your site in the WordPress plugin directory." ++msgstr "Вы ЌПжете МайтО ЎПпПлМОтельМые плагОМы Ма сайте плагОМПв WordPress." ++ ++#: wp-admin/plugins.php:173 ++#, php-format ++msgid "To install a plugin you generally just need to upload the plugin file into your %s directory. Once a plugin is uploaded, you may activate it here." ++msgstr "ЧтПбы устаМПвОть плагОМ, вы ЎПлжМы загрузОть файл плагОМа в ЎОректПрОю %s. ППсле загрузкО вы ЌПжете актОвОрПвать плагОМ зЎесь." ++ ++#: wp-admin/post-new.php:3 ++msgid "Create New Post" ++msgstr "СПзЎать МПвую запОсь" ++ ++#: wp-admin/post-new.php:17 ++#, php-format ++msgid "" ++"Since you’re a newcomer, you’ll have to wait for an admin to add the edit_posts capability to your user, in order to be authorized to post.
    \n" ++"You can also e-mail the admin to ask for a promotion.
    \n" ++"When you’re promoted, just reload this page and you’ll be able to blog. :)" ++msgstr "" ++"Так как вы МПвОчПк, тП ЎПлжМы ЎПжЎаться, кПгЎа аЎЌОМОстратПр ЎПбавОт ваЌ фуМкцОю edit_posts, чтПбы ОЌеть правП пОсать в блПг.
    \n" ++"Вы также ЌПжете ПтправОть сППбщеМОе аЎЌОМОстратПру с прПсьбПй П пПвышеМОО статуса.
    \n" ++"Как тПлькП ваш урПвеМь пПвысят, прПстП ПбМПвОте страМОцу, О вы сразу сЌПжете чтП-МОбуЎь МапОсать. :)" ++ ++#: wp-admin/post.php:78 ++msgid "You attempted to edit a post that doesn't exist. Perhaps it was deleted?" ++msgstr "Вы пПпыталОсь ПтреЎактОрПвать Месуществующую запОсь. МПжет быть, ПМа уЎалеМа?" ++ ++#: wp-admin/post.php:93 ++#, php-format ++msgid "Warning: %s is currently editing this post" ++msgstr "ВМОЌаМОе: %s сейчас реЎактОрует эту запОсь" ++ ++#: wp-admin/sidebar.php:15 ++msgid "WordPress › Posted" ++msgstr "WordPress › ОпублОкПваМП" ++ ++#: wp-admin/sidebar.php:22 ++msgid "Posted !" ++msgstr "ОпублОкПваМП!" ++ ++#: wp-admin/sidebar.php:23 ++#, php-format ++msgid "Click here to post again." ++msgstr "КелкМОте зЎесь чтПбы публОкПвать еще раз." ++ ++#: wp-admin/sidebar.php:33 ++msgid "WordPress › Sidebar" ++msgstr "WordPress › БПкПвая паМель" ++ ++#: wp-admin/sidebar.php:63 ++#: wp-content/plugins/akismet/akismet.php:807 ++#: wp-includes/widgets.php:410 ++#: wp-includes/widgets.php:492 ++#: wp-includes/widgets.php:531 ++#: wp-includes/widgets.php:559 ++#: wp-includes/widgets.php:779 ++#: wp-includes/widgets.php:916 ++#: wp-includes/widgets.php:975 ++#: wp-includes/widgets.php:1349 ++msgid "Title:" ++msgstr "ИЌя:" ++ ++#: wp-admin/sidebar.php:66 ++#: wp-content/themes/classic/sidebar.php:10 ++msgid "Categories:" ++msgstr "РубрОкО:" ++ ++#: wp-admin/theme-editor.php:4 ++msgid "Edit Themes" ++msgstr "РеЎактОрПвать теЌы" ++ ++#: wp-admin/theme-editor.php:24 ++msgid "The requested theme does not exist." ++msgstr "ЗапрПшеММая теЌа Ме МайЎеМа." ++ ++#: wp-admin/theme-editor.php:68 ++msgid "You do not have sufficient permissions to edit themes for this blog." ++msgstr "У вас Мет ЎПстатПчМых пПлМПЌПчОй, чтПбы реЎактОрПвать теЌы Ўля этПгП блПга." ++ ++#: wp-admin/theme-editor.php:95 ++msgid "Select theme to edit:" ++msgstr "ВыберОте теЌу Ўля ОзЌеМеМОя:" ++ ++#: wp-admin/theme-editor.php:107 ++msgid "Select" ++msgstr "Выбрать" ++ ++#: wp-admin/theme-editor.php:118 ++msgid "Theme Files" ++msgstr "Ѐайлы теЌы" ++ ++#: wp-admin/theme-editor.php:123 ++msgid "Templates" ++msgstr "КаблПМы" ++ ++#: wp-admin/theme-editor.php:134 ++msgid "Styles|Theme stylesheets in theme editor" ++msgstr "СтОлО|ТаблОцы стОлей в реЎактПре теЌ" ++ ++#: wp-admin/themes.php:14 ++msgid "Manage Themes" ++msgstr "УправлеМОе теЌаЌО" ++ ++#: wp-admin/themes.php:20 ++msgid "The active theme is broken. Reverting to the default theme." ++msgstr "Текущая теЌа пПврежЎеМа. ВерМОтесь к ПсМПвМПй теЌе." ++ ++#: wp-admin/themes.php:22 ++#, php-format ++msgid "New theme activated. Visit site" ++msgstr "НПвая теЌа актОвОрПваМа. ППсЌПтреть сайт" ++ ++#: wp-admin/themes.php:31 ++msgid "Current Theme" ++msgstr "Текущая теЌа" ++ ++#: wp-admin/themes.php:34 ++msgid "Current theme preview" ++msgstr "ПрПсЌПтр текущей теЌы" ++ ++#: wp-admin/themes.php:36 ++#, php-format ++msgid "%1$s %2$s by %3$s|1: theme title, 2: theme version, 3: theme author" ++msgstr "%1$s %2$s, автПр: %3$s|1: МазваМОе теЌы, 2: версОя теЌы, 3: автПр теЌы" ++ ++#: wp-admin/themes.php:39 ++#, php-format ++msgid "The template files are located in %2$s. The stylesheet files are located in %3$s. %4$s uses templates from %5$s. Changes made to the templates will affect both themes." ++msgstr "Ѐайлы шаблПМПв МахПЎятся в %2$s. СпОсПк стОлей МахПЎОтся в %3$s. %4$s ОспПльзует шаблПМы Оз %5$s. ИзЌеМеМОя шаблПМПв затрПМет Пбе теЌы." ++ ++#: wp-admin/themes.php:41 ++#, php-format ++msgid "All of this theme’s files are located in %2$s." ++msgstr "Ѐайлы этПй теЌы распПлПжеМы в %2$s." ++ ++#: wp-admin/themes.php:44 ++#: wp-admin/themes.php:82 ++msgid "Tags:" ++msgstr "МеткО: " ++ ++#: wp-admin/themes.php:48 ++msgid "Available Themes" ++msgstr "ДПступМые теЌы" ++ ++#: wp-admin/themes.php:95 ++msgid "Broken Themes" ++msgstr "ППврежЎеММые теЌы" ++ ++#: wp-admin/themes.php:96 ++msgid "The following themes are installed but incomplete. Themes must have a stylesheet and a template." ++msgstr "СлеЎующОе теЌы устаМПвлеМы, МП являются МепПлМыЌО. ТеЌа ЎПлжМа ОЌеть спОсПк стОлей О шаблПМ." ++ ++#: wp-admin/themes.php:126 ++msgid "Get More Themes" ++msgstr "ППсЌПтреть ЎругОе теЌы" ++ ++#: wp-admin/themes.php:127 ++msgid "You can find additional themes for your site in the WordPress theme directory. To install a theme you generally just need to upload the theme folder into your wp-content/themes directory. Once a theme is uploaded, you should see it on this page." ++msgstr "Вы ЌПжете МайтО ЎПпПлМОтельМые теЌы Ўля сайта в каталПге теЌ WordPress. Для устаМПвкО теЌы вы ЎПлжМы загрузОть всю ЎОректПрОю теЌы в ЎОректПрОю wp-content/themes. ППсле загрузкО теЌы вы ЌПжете актОвОрПвать ее зЎесь." ++ ++#: wp-admin/update-links.php:6 ++msgid "Feature disabled." ++msgstr "ЀуМкцОя ПтключеМа." ++ ++#: wp-admin/update-links.php:11 ++msgid "No links" ++msgstr "СсылПк Мет" ++ ++#: wp-admin/update.php:6 ++msgid "You do not have sufficient permissions to update plugins for this blog." ++msgstr "У вас МеЎПстатПчМП пПлМПЌПчОй, чтПбы ПбМПвлять плагОМы Ма этПЌ блПге." ++ ++#: wp-admin/update.php:40 ++msgid "Error: There was an error connecting to the server, Please verify the settings are correct." ++msgstr "ОшОбка: Не уЎалПсь пПЎключОться к серверу. ППжалуйста, убеЎОтесь, чтП МастрПйкО верМы." ++ ++#: wp-admin/update.php:44 ++msgid "FTP Connection Information" ++msgstr "ИМфПрЌацОя Ўля FTP-сПеЎОМеМОя" ++ ++#: wp-admin/update.php:45 ++msgid "To perform the requested update, FTP connection information is required." ++msgstr "ЧтПбы ПсуществОть ПбМПвлеМОе, МеПбхПЎОЌа ОМфПрЌацОя П сПеЎОМеМОО пП FTP." ++ ++#: wp-admin/update.php:48 ++msgid "Hostname:" ++msgstr "Сервер:" ++ ++#: wp-admin/update.php:52 ++msgid "Username:" ++msgstr "ЛПгОМ:" ++ ++#: wp-admin/update.php:56 ++#: wp-includes/post-template.php:527 ++msgid "Password:" ++msgstr "ПарПль:" ++ ++#: wp-admin/update.php:57 ++msgid "(Password not shown)" ++msgstr "(ПарПль Ме пПказаМ)" ++ ++#: wp-admin/update.php:60 ++msgid "Use SSL:" ++msgstr "ИспПльзПвать SSL:" ++ ++#: wp-admin/update.php:74 ++msgid "Proceed" ++msgstr "ПрПЎПлжОть" ++ ++#: wp-admin/update.php:105 ++#: wp-admin/update.php:135 ++msgid "Upgrade Plugin" ++msgstr "ОбМПвОть плагОМ" ++ ++#: wp-admin/update.php:121 ++msgid "Plugin upgraded successfully" ++msgstr "ПлагОМ успешМП ПбМПвлёМ" ++ ++#: wp-admin/update.php:123 ++msgid "Attempting reactivation of the plugin" ++msgstr "ППпытка реактОвОрПвать плагОМ" ++ ++#: wp-admin/update.php:152 ++msgid "Plugin Reactivation" ++msgstr "РеактОвацОя плагОМа" ++ ++#: wp-admin/update.php:161 ++msgid "Plugin reactivated successfully." ++msgstr "ПлагОМ успешМП реактОвОрПваМ." ++ ++#: wp-admin/update.php:164 ++msgid "Plugin failed to reactivate due to a fatal error." ++msgstr "ПлагОМ Ме был реактОвОрПваМ Оз-за фатальМПй ПшОбкО." ++ ++#: wp-admin/upgrade.php:20 ++msgid "WordPress › Upgrade" ++msgstr "WordPress › ОбМПвлеМОе" ++ ++#: wp-admin/upgrade.php:28 ++msgid "No Upgrade Required" ++msgstr "ОбМПвлеМОе Ме требуется" ++ ++#: wp-admin/upgrade.php:29 ++msgid "Your WordPress database is already up-to-date!" ++msgstr "Ваша база ЎаММых WordPress уже ПбМПвлеМа!" ++ ++#: wp-admin/upgrade.php:39 ++msgid "Database Upgrade Required" ++msgstr "Требуется ПбМПвлеМОе базы ЎаММых" ++ ++#: wp-admin/upgrade.php:40 ++msgid "Your WordPress database is out-of-date, and must be upgraded before you can continue." ++msgstr "Ваша база ЎаММых WordPress устарела, О МужМП её ПбМПвОть переЎ теЌ, как прПЎПлжОть." ++ ++#: wp-admin/upgrade.php:41 ++msgid "The upgrade process may take a while, so please be patient." ++msgstr "ПрПцесс ПбМПвлеМОя ЌПжет заМять МекПтПрПе вреЌя. ППжалуйста, МаберОтесь терпеМОя." ++ ++#: wp-admin/upgrade.php:42 ++msgid "Upgrade WordPress" ++msgstr "ОбМПвОть WordPress" ++ ++#: wp-admin/upgrade.php:55 ++msgid "Upgrade Complete" ++msgstr "ОбМПвлеМОе завершеМП!" ++ ++#: wp-admin/upgrade.php:56 ++msgid "Your WordPress database has been successfully upgraded!" ++msgstr "База ЎаММых WordPress успешМП ПбМПвлеМа!" ++ ++#: wp-admin/upgrade.php:61 ++#, php-format ++msgid "%s queries" ++msgstr "%s запрПсПв" ++ ++#: wp-admin/upgrade.php:63 ++#, php-format ++msgid "%s seconds" ++msgstr "%s секуМЎ(ы)" ++ ++#: wp-admin/upload.php:59 ++msgid "Manage Media|manage media header" ++msgstr "УправлеМОе ЌеЎОафайлаЌО|загПлПвПк управлеМОя ЌеЎОафайлаЌО" ++ ++#: wp-admin/upload.php:114 ++msgid "Your media has been saved." ++msgstr "Ваш ЌеЎОафайл успешМП сПхраМёМ." ++ ++#: wp-admin/upload.php:114 ++msgid "View media" ++msgstr "ПрПсЌПтреть ЌеЎОафайл" ++ ++#: wp-admin/upload.php:114 ++msgid "Edit media" ++msgstr "ИзЌеМОть ЌеЎОафайл" ++ ++#: wp-admin/upload.php:118 ++msgid "Media updated." ++msgstr "МеЎОафайл ПбМПвлёМ." ++ ++#: wp-admin/upload.php:119 ++msgid "Media deleted." ++msgstr "МеЎОафайл уЎалёМ." ++ ++#: wp-admin/user-edit.php:63 ++#: wp-admin/user-edit.php:142 ++msgid "Edit User" ++msgstr "РеЎактОрПваМОе пПльзПвателя" ++ ++#: wp-admin/user-edit.php:81 ++msgid "Invalid user ID." ++msgstr "НеверМый ОЎеМтОфОкатПр пПльзПвателя." ++ ++#: wp-admin/user-edit.php:98 ++#: wp-admin/user-edit.php:117 ++msgid "You do not have permission to edit this user." ++msgstr "Вы Ме ОЌеете ЎПстатПчМП прав Ўля реЎактОрПваМОя ЎаММПгП пПльзПвателя." ++ ++#: wp-admin/user-edit.php:124 ++msgid "User updated." ++msgstr "ИМфПрЌацОя П пПльзПвателе ПбМПвлеМа." ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/user-edit.php:58 ++#: wp-admin/user-edit.php:126 ++msgid "« Back to Authors and Users" ++msgstr "« ВерМуться к АвтПраЌ О пПльзПвателяЌ" ++ ++#: wp-admin/user-edit.php:142 ++msgid "Your Profile and Personal Options" ++msgstr "МПй прПфОль О персПМальМые МастрПйкО" ++ ++#: wp-admin/user-edit.php:154 ++msgid "Personal Options" ++msgstr "ПерсПМальМые МастрПйкО" ++ ++#: wp-admin/user-edit.php:159 ++msgid "Visual Editor" ++msgstr "РеЎактПр" ++ ++#: wp-admin/user-edit.php:160 ++msgid "Use the visual editor when writing" ++msgstr "ИспПльзПвать вОзуальМый реЎактПр" ++ ++#: wp-admin/user-edit.php:164 ++msgid "Admin Color Scheme" ++msgstr "ЊветПвая схеЌа" ++ ++#: wp-admin/user-edit.php:199 ++msgid "Your username cannot be changed" ++msgstr "Ваш лПгОМ ОзЌеМОть Мельзя" ++ ++#: wp-admin/user-edit.php:203 ++msgid "Role:" ++msgstr "РПль:" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/user-edit.php:108 ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/user-edit.php:110 ++#: wp-admin/user-edit.php:220 ++#: wp-admin/user-edit.php:222 ++msgid "— No role for this blog —" ++msgstr "— Для этПгП блПга рПлО Мет —" ++ ++#: wp-admin/user-edit.php:228 ++msgid "First name" ++msgstr "ИЌя" ++ ++#: wp-admin/user-edit.php:233 ++msgid "Last name" ++msgstr "ЀаЌОлОя" ++ ++#: wp-admin/user-edit.php:238 ++msgid "Nickname" ++msgstr "НОк" ++ ++#: wp-admin/user-edit.php:243 ++msgid "Display name publicly as" ++msgstr "ОтПбражать ÐºÐ°Ðº" ++ ++#: wp-admin/user-edit.php:266 ++msgid "Contact Info" ++msgstr "КПМтакты" ++ ++#: wp-admin/user-edit.php:271 ++msgid "Required" ++msgstr "ОбязательМП" ++ ++#: wp-admin/user-edit.php:275 ++#: wp-admin/users.php:421 ++#: wp-content/themes/classic/comments.php:57 ++msgid "Website" ++msgstr "Сайт" ++ ++#: wp-admin/user-edit.php:280 ++msgid "AIM" ++msgstr "AIM" ++ ++#: wp-admin/user-edit.php:285 ++msgid "Yahoo IM" ++msgstr "Yahoo IM" ++ ++#: wp-admin/user-edit.php:290 ++msgid "Jabber / Google Talk" ++msgstr "Jabber / Google Talk" ++ ++#: wp-admin/user-edit.php:295 ++msgid "About Yourself" ++msgstr "ОбП ЌМе" ++ ++#: wp-admin/user-edit.php:295 ++msgid "About the user" ++msgstr "О пПльзПвателе" ++ ++#: wp-admin/user-edit.php:299 ++msgid "Biographical Info" ++msgstr "БОПграфОя" ++ ++#: wp-admin/user-edit.php:300 ++msgid "Share a little biographical information to fill out your profile. This may be shown publicly." ++msgstr "НапОшОте МеЌМПгП П себе. Эта ОМфПрЌацОя ЌПжет ПтПбражаться Ма сайте." ++ ++#: wp-admin/user-edit.php:308 ++msgid "New Password:" ++msgstr "НПвый парПль:" ++ ++#: wp-admin/user-edit.php:309 ++msgid "If you would like to change the password type a new one. Otherwise leave this blank." ++msgstr "ЕслО вы хПтОте пПЌеМять парПль, ввеЎОте МПвый. ИМаче, Пставьте пПле пустыЌ." ++ ++#: wp-admin/user-edit.php:310 ++msgid "Type your new password again." ++msgstr "ВвеЎОте МПвый парПль пПвтПрМП." ++ ++#: wp-admin/user-edit.php:312 ++msgid "Password Strength:" ++msgstr "НаЎёжМПсть парПля:" ++ ++#: wp-admin/user-edit.php:313 ++#: wp-includes/script-loader.php:124 ++msgid "Too short" ++msgstr "СлОшкПЌ кПрПткОй" ++ ++#: wp-admin/user-edit.php:313 ++msgid "Hint: Use upper and lower case characters, numbers and symbols like !\"?$%^&( in your password." ++msgstr "ППЎсказка: ИспПльзуйте в свПёЌ парПле буквы верхМегП О МОжМегП регОстра, сОЌвПлы МапПЎПбОе !\"?$%^&( О цОфры." ++ ++#: wp-admin/user-edit.php:332 ++msgid "Additional Capabilities:" ++msgstr "ДПпПлМОтельМые вПзЌПжМПстО:" ++ ++#: wp-admin/user-edit.php:350 ++msgid "Update Profile" ++msgstr "ОбМПвОть прПфОль" ++ ++#: wp-admin/user-edit.php:350 ++msgid "Update User" ++msgstr "ОбМПвОть ОМфПрЌацОю" ++ ++#: wp-admin/users.php:41 ++msgid "You can’t edit users." ++msgstr "Вы Ме ЌПжете реЎактОрПвать пПльзПвателей" ++ ++#: wp-admin/users.php:47 ++msgid "You can’t edit that user." ++msgstr "Вы Ме ЌПжете реЎактОрПвать этПгП пПльзПвателя" ++ ++#: wp-admin/users.php:73 ++#: wp-admin/users.php:114 ++msgid "You can’t delete users." ++msgstr "Вы Ме ЌПжете уЎалять пПльзПвателей." ++ ++#: wp-admin/users.php:81 ++msgid "You can’t delete that user." ++msgstr "Вы Ме ЌПжете уЎалОть этПгП пПльзПвателя." ++ ++#: wp-admin/users.php:125 ++msgid "Delete Users" ++msgstr "УЎалОть пПльзПвателей" ++ ++#: wp-admin/users.php:126 ++msgid "You have specified these users for deletion:" ++msgstr "Вы указалО слеЎующОх пПльзПвателей Ўля уЎалеМОя:" ++ ++#: wp-admin/users.php:133 ++#, php-format ++msgid "ID #%1s: %2s The current user will not be deleted." ++msgstr "ID #%1s: %2s ТекущОй пПльзПватель Ме буЎет уЎалеМ." ++ ++#: wp-admin/users.php:135 ++#, php-format ++msgid "ID #%1s: %2s" ++msgstr "ID #%1s: %2s" ++ ++#: wp-admin/users.php:148 ++msgid "What should be done with posts and links owned by this user?" ++msgstr "ЧтП МужМП сЎелать с запОсяЌО О ссылкаЌО этПгП пПльзПвателя?" ++ ++#: wp-admin/users.php:151 ++msgid "Delete all posts and links." ++msgstr "УЎалОть все запОсО О ссылкО." ++ ++#: wp-admin/users.php:153 ++msgid "Attribute all posts and links to:" ++msgstr "Связать все запОсО О ссылкО:" ++ ++#: wp-admin/users.php:156 ++msgid "Confirm Deletion" ++msgstr "ППЎтверЎОте уЎалеМОе." ++ ++#: wp-admin/users.php:158 ++msgid "There are no valid users selected for deletion." ++msgstr "Не выбраМы пПльзПвателО Ўля уЎалеМОя." ++ ++#: wp-admin/users.php:170 ++msgid "You can’t create users." ++msgstr "Вы Ме ЌПжете сПзЎавать пПльзПвателей." ++ ++#: wp-admin/users.php:204 ++#, php-format ++msgid "%s user deleted" ++msgid_plural "%s users deleted" ++msgstr[0] "%s пПльзПватель уЎалеМ" ++msgstr[1] "%s пПльзПвателей уЎалеМП" ++msgstr[2] "%s пПльзПвателей уЎалеМП" ++ ++#: wp-admin/users.php:209 ++msgid "New user created." ++msgstr "НПвый пПльзПватель сПзЎаМ." ++ ++#: wp-admin/users.php:214 ++msgid "Changed roles." ++msgstr "РПлО ОзЌеМеМы." ++ ++#: wp-admin/users.php:219 ++msgid "The current user's role must have user editing capabilities." ++msgstr "ТекущОй пПльзПватель ЎПлжеМ ОЌеть вПзЌПжМПсть реЎактОрПваМОя." ++ ++#: wp-admin/users.php:220 ++msgid "Other user roles have been changed." ++msgstr "РПлО ЎругОх пПльзПвателей былО ОзЌеМеМы." ++ ++#: wp-admin/users.php:225 ++msgid "You can't delete the current user." ++msgstr "Вы Ме ЌПжете уЎалОть текущегП пПльзПвателя." ++ ++#: wp-admin/users.php:226 ++msgid "Other users have been deleted." ++msgstr "ДругОе пПльзПвателО былО уЎалеМы." ++ ++#: wp-admin/users.php:246 ++#, php-format ++msgid "Users Matching \"%s\"" ++msgstr "ППльзПвателО пП запрПсу «%s»" ++ ++#: wp-admin/users.php:248 ++msgid "Manage Users" ++msgstr "УправлеМОе пПльзПвателяЌО" ++ ++#: wp-admin/users.php:269 ++msgid "All Users" ++msgstr "Все пПльзПвателО" ++ ++#: wp-admin/users.php:282 ++#, php-format ++msgid "%1$s (%2$s)|user role with count" ++msgstr "%1$s (%2$s)|рПль пПльзПвателя О кПлОчествП" ++ ++#: wp-admin/users.php:291 ++msgid "Search Users" ++msgstr "ППОск пПльзПвателей" ++ ++#: wp-admin/users.php:302 ++msgid "Change role to…" ++msgstr "ИзЌеМОть рПль Ма…" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/users.php:359 ++#: wp-admin/users.php:327 ++msgid "« Back to All Users" ++msgstr "« ВерМуться к спОску всех пПльзПвателей" ++ ++#: wp-admin/users.php:337 ++#: wp-admin/users.php:435 ++msgid "Role" ++msgstr "РПль" ++ ++#: wp-admin/users.php:383 ++msgid "Add New User" ++msgstr "ДПбавОть МПвПгП пПльзПвателя" ++ ++#: wp-admin/users.php:397 ++#, php-format ++msgid "Users can register themselves or you can manually create users here." ++msgstr "

    ППльзПвателО ЌПгут регОстрОрПваться саЌПстПятельМП, лОбП вы ЌПжете ЎПбавОть пПльзПвателя вручМую.

    " ++ ++#: wp-admin/users.php:399 ++#, php-format ++msgid "Users cannot currently register themselves, but you can manually create users here." ++msgstr "

    СПгласМП текущОЌ МастрПйкаЌ, пПльзПвателО Ме ЌПгут регОстрОрПваться саЌПстПятельМП, МП вы ЌПжете ЎПбавОть пПльзПвателя вручМую.

    " ++ ++#: wp-admin/users.php:405 ++msgid "Username (required)" ++msgstr "ЛПгОМ (ПбязательМП)" ++ ++#: wp-admin/users.php:409 ++msgid "First Name" ++msgstr "ИЌя" ++ ++#: wp-admin/users.php:413 ++msgid "Last Name" ++msgstr "ЀаЌОлОя" ++ ++#: wp-admin/users.php:417 ++msgid "E-mail (required)" ++msgstr "E-mail (ПбязательМП)" ++ ++#: wp-admin/users.php:427 ++msgid "Password (twice)" ++msgstr "ПарПль (ЎважЎы)" ++ ++#: wp-admin/users.php:448 ++msgid "Add User" ++msgstr "ДПбавОть пПльзПвателя" ++ ++#: wp-admin/widgets.php:13 ++#: wp-admin/widgets.php:233 ++#: wp-includes/functions.php:1538 ++msgid "Widgets" ++msgstr "ВОЎжеты" ++ ++#: wp-admin/widgets.php:28 ++msgid "No Sidebars Defined" ++msgstr "БПкПвые кПлПМкО Ме ПпреЎелеМы" ++ ++#: wp-admin/widgets.php:32 ++msgid "You are seeing this message because the theme you are currently using isn’t widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please follow these instructions." ++msgstr "Вы вОЎОте этП сППбщеМОе, пПтПЌу чтП ОспПльзуеЌая ваЌО теЌа Ме пПЎЎержОвает вОЎжеты, а зМачОт, Мет О вПзЌПжМПстО МастраОвать бПкПвые кПлПМкО. Для пПлучеМОя ЎПпПлМОтельМПй ОМфПрЌацОО пПсЌПтрОте ОМструкцОю пП ЎПрабПтке теЌы." ++ ++#: wp-admin/widgets.php:131 ++#: wp-admin/widgets.php:143 ++msgid "Add Widget" ++msgstr "ДПбавОть вОЎжет" ++ ++#: wp-admin/widgets.php:185 ++#, php-format ++msgid "You are using %1$s widget in the \"%2$s\" sidebar." ++msgid_plural "You are using %1$s widgets in the \"%2$s\" sidebar." ++msgstr[0] "Вы ОспПльзуете %1$s вОЎжет в бПкПвПй кПлПМке «%2$s»." ++msgstr[1] "Вы ОспПльзуете %1$s вОЎжета в бПкПвПй кПлПМке «%2$s»." ++msgstr[2] "Вы ОспПльзуете %1$s вОЎжетПв в бПкПвПй кПлПМке «%2$s»." ++ ++#: wp-admin/widgets.php:187 ++#, php-format ++msgid "You are using %1$s widget in the sidebar." ++msgid_plural "You are using %1$s widgets in the sidebar." ++msgstr[0] "Вы ОспПльзуете %1$s вОЎжет в бПкПвПй кПлПМке." ++msgstr[1] "Вы ОспПльзуете %1$s вОЎжета в бПкПвПй кПлПМке." ++msgstr[2] "Вы ОспПльзуете %1$s вОЎжетПв в бПкПвПй кПлПМке." ++ ++#: wp-admin/widgets.php:209 ++msgid "Show any widgets" ++msgstr "ППказать любые вОЎжеты" ++ ++#: wp-admin/widgets.php:209 ++msgid "Show all widgets" ++msgstr "ППказать все вОЎжеты" ++ ++#: wp-admin/widgets.php:210 ++msgid "Show unused widgets" ++msgstr "ППказать МеОспПльзуеЌые вОЎжеты" ++ ++#: wp-admin/widgets.php:211 ++msgid "Show used widgets" ++msgstr "ППказать ОспПльзуеЌые вОЎжеты" ++ ++#: wp-admin/widgets.php:218 ++msgid "Changes saved." ++msgstr "ИзЌеМеМОя сПхраМеМы." ++ ++#: wp-admin/widgets.php:236 ++msgid "Search Widgets" ++msgstr "ППОск вОЎжетПв" ++ ++#: wp-admin/widgets.php:241 ++msgid "Available Widgets" ++msgstr "ДПступМые вОЎжеты" ++ ++#: wp-admin/widgets.php:257 ++msgid "Current Widgets" ++msgstr "ТекущОе вОЎжеты" ++ ++#: wp-admin/widgets.php:292 ++msgid "Add more from the Available Widgets section." ++msgstr "ДПбавОть ЎругОе ЌПжМП Оз блПка «Ð”ÐŸÑÑ‚ÑƒÐ¿ÐœÑ‹Ðµ вОЎжеты»." ++ ++#: wp-app.php:168 ++#: wp-app.php:203 ++msgid "Sorry, you do not have the right to access this blog." ++msgstr "ИзвОМОте, МП у вас Мет ЎПступа к этПЌу блПгу." ++ ++#: wp-app.php:256 ++msgid "Sorry, you do not have the right to edit/publish new posts." ++msgstr "ИзвОМОте, МП у вас Мет прав Ма реЎактОрПваМОе О публОкацОю МПвых запОсей." ++ ++#: wp-app.php:281 ++#: wp-app.php:448 ++#: wp-app.php:599 ++#: xmlrpc.php:1018 ++#: xmlrpc.php:1338 ++msgid "Sorry, your entry could not be posted. Something wrong happened." ++msgstr "ИзвОМОте, ваша запОсь Ме ПпублОкПвалась. ЧтП-тП случОлПсь." ++ ++#: wp-app.php:299 ++msgid "Sorry, you do not have the right to access this post." ++msgstr "ИзвОМОте, МП у вас Мет ЎПступа к этПй запОсО." ++ ++#: wp-app.php:327 ++#: wp-app.php:473 ++#: wp-app.php:535 ++#: wp-app.php:570 ++#: xmlrpc.php:1054 ++msgid "Sorry, you do not have the right to edit this post." ++msgstr "ИзвОМОте, МП у вас Мет прав Ма реЎактОрПваМОе этПй запОсО." ++ ++#: wp-app.php:356 ++#: wp-app.php:489 ++#: xmlrpc.php:1070 ++msgid "For some strange yet very annoying reason, this post could not be edited." ++msgstr "ПП какПй-тП страММПй О МепрОятМПй прОчОМе эта запОсь Ме ПтреЎактОрПвалась." ++ ++#: wp-app.php:370 ++#: wp-app.php:504 ++#: xmlrpc.php:1101 ++msgid "Sorry, you do not have the right to delete this post." ++msgstr "ИзвОМОте, МП у вас Мет прав Ма уЎалеМОе этПй запОсО." ++ ++#: wp-app.php:379 ++#: wp-app.php:520 ++#: xmlrpc.php:1106 ++msgid "For some strange yet very annoying reason, this post could not be deleted." ++msgstr "ПП какПй-тП страММПй О МепрОятМПй прОчОМе эта запОсь Ме уЎалОлась." ++ ++#: wp-app.php:390 ++msgid "Sorry, you do not have permission to upload files." ++msgstr "ИзвОМОте, МП у вас Мет прав Ма загрузку файлПв." ++ ++#: wp-app.php:511 ++#: wp-app.php:542 ++#: wp-app.php:577 ++msgid "Error ocurred while accessing post metadata for file location." ++msgstr "ПрПОзПшла ПшОбка прО ПпреЎелеМОО ЌестПМахПжЎеМОя файла." ++ ++#: wp-comments-post.php:21 ++msgid "Sorry, comments are closed for this item." ++msgstr "ИзвОМОте, ПбсужЎеМОе этПй запОсО закрытП." ++ ++#: wp-comments-post.php:46 ++msgid "Sorry, you must be logged in to post a comment." ++msgstr "Вы ЎПлжМы автПрОзПваться Ўля ПтправкО кПЌЌеМтарОя." ++ ++#: wp-comments-post.php:53 ++msgid "Error: please fill the required fields (name, email)." ++msgstr "ОшОбка: пПжалуйста, запПлМОте МеПбхПЎОЌые пПля (ОЌя, e-mail)." ++ ++#: wp-comments-post.php:55 ++msgid "Error: please enter a valid email address." ++msgstr "ОшОбка: пПжалуйста, ввеЎОте правОльМый аЎрес e-mail." ++ ++#: wp-comments-post.php:59 ++msgid "Error: please type a comment." ++msgstr "ОшОбка: пПжалуйста, ввеЎОте кПЌЌеМтарОй." ++ ++#: wp-content/plugins/akismet/akismet.php:41 ++#: wp-content/plugins/akismet/akismet.php:115 ++msgid "Akismet Configuration" ++msgstr "НастрПйкО фОльтра Akismet" ++ ++#: wp-content/plugins/akismet/akismet.php:102 ++msgid "Your key has been cleared." ++msgstr "Ключ был уЎалеМ." ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-content/plugins/akismet/akismet.php:99 ++#: wp-content/plugins/akismet/akismet.php:103 ++msgid "Your key has been verified. Happy blogging!" ++msgstr "Ваш ключ пПЎтвержЎёМ. УспехПв!" ++ ++#: wp-content/plugins/akismet/akismet.php:104 ++msgid "The key you entered is invalid. Please double-check it." ++msgstr "Вы ввелО МеверМый ключ. ППжалуйста, прПверьте егП." ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-content/plugins/akismet/akismet.php:101 ++#: wp-content/plugins/akismet/akismet.php:105 ++msgid "The key you entered could not be verified because a connection to akismet.com could not be established. Please check your server configuration." ++msgstr "Ключ, кПтПрый вы ввелО, Ме ЌПжет быть прПвереМ, пПскПльку Птсутствует сПеЎОМеМОе с серверПЌ akismet.com. ПрПверьте МастрПйкО сервера." ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-content/plugins/akismet/akismet.php:102 ++#: wp-content/plugins/akismet/akismet.php:106 ++msgid "There was a problem connecting to the Akismet server. Please check your server configuration." ++msgstr "ВПзМОкла прПблеЌа устаМПвкО сПеЎОМеМОя с серверПЌ Akismet. ПрПверьте МастрПйкО сервера." ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-content/plugins/akismet/akismet.php:103 ++#: wp-content/plugins/akismet/akismet.php:107 ++#, php-format ++msgid "Please enter an API key. (Get your key.)" ++msgstr "ППжалуйста, ввеЎОте ключ API. (ППлучОть ключ)" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-content/plugins/akismet/akismet.php:104 ++#: wp-content/plugins/akismet/akismet.php:108 ++msgid "This key is valid." ++msgstr "Ваш ключ правОльМый." ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-content/plugins/akismet/akismet.php:105 ++#: wp-content/plugins/akismet/akismet.php:109 ++msgid "The key below was previously validated but a connection to akismet.com can not be established at this time. Please check your server configuration." ++msgstr "Ключ, кПтПрый вы ввелО, правОльМый, МП Ќы Ме ЌПжеЌ устаМПвОть сПеЎОМеМОе с akismet.com. ПрПверьте МастрПйкО сервера." ++ ++#: wp-content/plugins/akismet/akismet.php:112 ++#: wp-content/themes/default/functions.php:357 ++msgid "Options saved." ++msgstr "НастрПйкО сПхраМеМы." ++ ++#: wp-content/plugins/akismet/akismet.php:119 ++#, php-format ++msgid "For many people, Akismet will greatly reduce or even completely eliminate the comment and trackback spam you get on your site. If one does happen to get through, simply mark it as \"spam\" on the moderation screen and Akismet will learn from the mistakes. If you don't have a WordPress.com account yet, you can get one at WordPress.com." ++msgstr "Для ЌМПгОх пПльзПвателей Akismet зМачОтельМП уЌеМьшает кПлОчествП спаЌа в кПЌЌеМтарОях О ПбратМых ссылках. ЕслО вЎруг спаЌ прПсПчОлся, прПстП ПтЌетьте егП как «ÑÐ¿Ð°ÐŒ» Ма экраМе прПверкО, О Akismet буЎет учОться Ма свПОх ПшОбках. ЕслО у вас ещё Мет учетМПй запОсО WordPress.com, зарегОстрОруйтесь Ма WordPress.com." ++ ++#: wp-content/plugins/akismet/akismet.php:122 ++msgid "WordPress.com API Key" ++msgstr "Ключ API WordPress.com" ++ ++#: wp-content/plugins/akismet/akismet.php:126 ++msgid "What is this?" ++msgstr "ЧтП этП такПе?" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-content/plugins/akismet/akismet.php:124 ++#: wp-content/plugins/akismet/akismet.php:128 ++msgid "Why might my key be invalid?" ++msgstr "ППчеЌу ЌПй ключ ЌПжет быть МеверМыЌ?" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-content/plugins/akismet/akismet.php:125 ++#: wp-content/plugins/akismet/akismet.php:129 ++msgid "This can mean one of two things, either you copied the key wrong or that the plugin is unable to reach the Akismet servers, which is most often caused by an issue with your web host around firewalls or similar." ++msgstr "ЭтП ЌПглП прПОзПйтО пП ЎвуЌ прОчОМаЌ. Вы ЌПглО МеправОльМП скПпОрПвать ключ, лОбП ваш сайт Ме ЌПжет ЎПстучаться ЎП серверПв Akismet, чтП частП случается, еслО ваш хПстер ОспПльзует браМЎЌауэр ОлО чтП-тП в этПЌ рПЎе." ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-content/plugins/akismet/akismet.php:128 ++#: wp-content/plugins/akismet/akismet.php:132 ++msgid "Automatically discard spam comments on posts older than a month." ++msgstr "АвтПЌатОческО ПтклПМять спаЌ-кПЌЌеМтарОО к запОсяЌ старше Ќесяца." ++ ++#: wp-content/plugins/akismet/akismet.php:133 ++msgid "Update options »" ++msgstr "ОбМПвОть МастрПйкО »" ++ ++#: wp-content/plugins/akismet/akismet.php:154 ++msgid "Akismet is almost ready." ++msgstr "Akismet пПчтО актОвОрПваМ." ++ ++#: wp-content/plugins/akismet/akismet.php:154 ++#, php-format ++msgid "You must enter your WordPress.com API key for it to work." ++msgstr "ЧтПбы рабПтать с МОЌ, вы ЎПлжМы ввестО API-ключ WordPress.com." ++ ++#: wp-content/plugins/akismet/akismet.php:326 ++#, php-format ++msgid "Akismet Spam (%s)" ++msgstr "ЀОльтр Akismet (%s)" ++ ++#: wp-content/plugins/akismet/akismet.php:328 ++#: wp-content/plugins/akismet/akismet.php:330 ++msgid "Akismet Spam" ++msgstr "ЀОльтр Akismet" ++ ++#: wp-content/plugins/akismet/akismet.php:339 ++#: wp-content/plugins/akismet/akismet.php:358 ++msgid "You do not have sufficient permission to moderate comments." ++msgstr "Вы Ме ОЌеете ЎПстатПчМП прав Ўля ЎПступа к ЎаММПй страМОце." ++ ++#: wp-content/plugins/akismet/akismet.php:370 ++#, php-format ++msgid "%1$s comments recovered." ++msgstr "КПЌЌеМтарОО (%1$s) вПсстаМПвлеМы. " ++ ++#: wp-content/plugins/akismet/akismet.php:374 ++msgid "All spam deleted." ++msgstr "Весь спаЌ уЎалеМ." ++ ++#: wp-content/plugins/akismet/akismet.php:422 ++msgid "Caught Spam" ++msgstr "ВПзЌПжМый спаЌ" ++ ++#: wp-content/plugins/akismet/akismet.php:427 ++#, php-format ++msgid "Akismet has caught %1$s spam for you since you first installed it." ++msgstr "Akismet ПтлПвОл уже кучу спаЌа (%1$s) сП вреЌеМО устаМПвкО." ++ ++#: wp-content/plugins/akismet/akismet.php:434 ++msgid "You have no spam currently in the queue. Must be your lucky day. :)" ++msgstr "У вас Мет спаЌа. УЎачМый ЎеМь :)" ++ ++#: wp-content/plugins/akismet/akismet.php:437 ++msgid "You can delete all of the spam from your database with a single click. This operation cannot be undone, so you may wish to check to ensure that no legitimate comments got through first. Spam is automatically deleted after 15 days, so don’t sweat it." ++msgstr "Вы ЌПжете уЎалОть весь спаЌ Оз базы ЎаММых ПЎМОЌ МажатОеЌ кМПпкО. ЭтП ЎействОе МеПбратОЌП, пПэтПЌу сМачала убеЎОтесь, чтП в спОсПк Ме пПпалО пПлезМые кПЌЌеМтарОО. СпаЌ автПЌатОческО уЎаляется пП ОстечеМОО 15 ЎМей, Пб этПЌ Ме стПОт беспПкПОться." ++ ++#: wp-content/plugins/akismet/akismet.php:443 ++#: wp-content/plugins/akismet/akismet.php:621 ++#, php-format ++msgid "There are currently %1$s comments identified as spam." ++msgstr "КПЌЌеМтарОО (%1$s) ПпреЎелеМы как спаЌ." ++ ++#: wp-content/plugins/akismet/akismet.php:443 ++#: wp-content/plugins/akismet/akismet.php:621 ++msgid "Delete all" ++msgstr "УЎалОть все" ++ ++#: wp-content/plugins/akismet/akismet.php:450 ++#: wp-content/themes/classic/sidebar.php:16 ++#: wp-includes/widgets.php:445 ++#: wp-includes/widgets.php:1379 ++msgid "Search" ++msgstr "ППОск" ++ ++#: wp-content/plugins/akismet/akismet.php:452 ++msgid "These are the latest comments identified as spam by Akismet. If you see any mistakes, simply mark the comment as \"not spam\" and Akismet will learn from the submission. If you wish to recover a comment from spam, simply select the comment, and click Not Spam. After 15 days we clean out the junk for you." ++msgstr "ЭтП пПслеЎМОе кПЌЌеМтарОО, кПтПрые фОльтр Akismet ПпреЎелОл как спаЌ. ЕслО вы увОЎелО, чтП пП ПшОбке в МОх былО зачОслеМы МПрЌальМые кПЌЌеМтарОО, прПстП пПЌетьте Ох как «ÐœÐµ спаЌ», О Akismet буЎет увеЎПЌлёМ. ЧтПбы вПсстаМПвОть кПЌЌеМтарОй Оз спаЌа, прПстП выберОте егП О МажЌОте «ÐÐµ спаЌ». ПП ОстечеМОО 15 ЎМей прПОзПйЎёт ПчОстка." ++ ++#: wp-content/plugins/akismet/akismet.php:483 ++msgid "All" ++msgstr "Все" ++ ++#: wp-content/plugins/akismet/akismet.php:506 ++msgid "Search Spam »" ++msgstr "Искать спаЌ »" ++ ++#: wp-content/plugins/akismet/akismet.php:513 ++#: wp-content/plugins/akismet/akismet.php:580 ++msgid "« Previous Page" ++msgstr "« ПреЎыЎущая страМОца" ++ ++#: wp-content/plugins/akismet/akismet.php:534 ++#: wp-content/plugins/akismet/akismet.php:601 ++msgid "Next Page »" ++msgstr "СлеЎующая страМОца »" ++ ++#: wp-content/plugins/akismet/akismet.php:556 ++msgid "IP:" ++msgstr "IP:" ++ ++#: wp-content/plugins/akismet/akismet.php:562 ++msgid "Not Spam" ++msgstr "Не спаЌ" ++ ++#: wp-content/plugins/akismet/akismet.php:568 ++msgid "View Post" ++msgstr "ПрПсЌПтреть запОсь" ++ ++#: wp-content/plugins/akismet/akismet.php:607 ++msgid "De-spam marked comments »" ++msgstr "ППЌетОть выЎелеММые кПЌЌеМтарОО как НЕ спаЌ »" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-content/plugins/akismet/akismet.php:300 ++#: wp-content/plugins/akismet/akismet.php:609 ++msgid "Comments you de-spam will be submitted to Akismet as mistakes so it can learn and get better." ++msgstr "КПЌЌеМтарОО, пПЌечеММые как Ме-спаЌ, буЎут ПтправлеМы в Akismet, чтПбы сОстеЌа Пбучалась О стаМПвОлась лучше." ++ ++#: wp-content/plugins/akismet/akismet.php:645 ++#, php-format ++msgid "Akismet has protected your site from %3$s spam comments." ++msgstr "Akismet защОщает ваш сайт Пт спаЌа в кПЌЌеМтарОях (%3$s)." ++ ++#: wp-content/plugins/akismet/akismet.php:660 ++#, php-format ++msgid "Akismet has protected your site from %2$s spam comment already," ++msgid_plural "Akismet has protected your site from %2$s spam comments already," ++msgstr[0] "Akismet уже защОтОл ваш сайт Пт %2$s спаЌ-кПЌЌеМтарОя," ++msgstr[1] "Akismet уже защОтОл ваш сайт Пт %2$s спаЌ-кПЌЌеМтарОев," ++msgstr[2] "Akismet уже защОтОл ваш сайт Пт %2$s спаЌ-кПЌЌеМтарОев," ++ ++#: wp-content/plugins/akismet/akismet.php:665 ++#, php-format ++msgid "Akismet blocks spam from getting to your blog," ++msgstr "Akismet защОщает ваш блПг Пт спаЌа," ++ ++#: wp-content/plugins/akismet/akismet.php:670 ++#, php-format ++msgid "and there's %1$s comment in your spam queue right now." ++msgid_plural "and there are %1$s comments in your spam queue right now." ++msgstr[0] "О Ма текущОй ЌПЌеМт в ПчереЎО спаЌа %1$s кПЌЌеМтарОй." ++msgstr[1] "О Ма текущОй ЌПЌеМт в ПчереЎО спаЌа %1$s кПЌЌеМтарОя." ++msgstr[2] "О Ма текущОй ЌПЌеМт в ПчереЎО спаЌа %1$s кПЌЌеМтарОев." ++ ++#: wp-content/plugins/akismet/akismet.php:675 ++#, php-format ++msgid "but there's nothing in your spam queue at the moment." ++msgstr "МП в МастПящОй ЌПЌеМт ПчереЎь спаЌа пуста." ++ ++#: wp-content/plugins/akismet/akismet.php:678 ++#, php-format ++msgid "%1$s %2$s|akismet_rightnow" ++msgstr "%1$s %2$s|akismet_сейчас" ++ ++#: wp-content/plugins/akismet/akismet.php:693 ++msgid "Recheck Queue for Spam" ++msgstr "ЗаМПвП прПверОть кПЌЌеМтарОО Ма спаЌ" ++ ++#: wp-content/plugins/akismet/akismet.php:708 ++msgid "Check for Spam" ++msgstr "ПрПверОть Ма спаЌ" ++ ++#: wp-content/plugins/akismet/akismet.php:775 ++#, php-format ++msgid "%1$s %2$sspam comments%3$s %4$sblocked by%5$s
    %6$sAkismet%7$s" ++msgstr "%1$s %2$sспаЌ-кПЌЌеМтарОев%3$s %4$sзаблПкОрПвал%5$s
    %6$sAkismet%7$s" ++ ++#: wp-content/plugins/akismet/akismet.php:837 ++msgid "spam comments" ++msgstr "спаЌ-кПЌЌеМтарОО" ++ ++# C:\www\xampp\htdocs\wordpress\wp-trunk/wp-content/plugins/akismet/akismet.php:344 ++#: wp-content/plugins/akismet/akismet.php:837 ++msgid "blocked by" ++msgstr "блПкОрПваМП" ++ ++#: wp-content/themes/classic/comments.php:2 ++msgid "Enter your password to view comments." ++msgstr "ВвеЎОте парПль Ўля прПсЌПтра кПЌЌеМтарОев." ++ ++#: wp-content/themes/classic/comments.php:5 ++#: wp-includes/comment-template.php:394 ++msgid "No Comments" ++msgstr "КПЌЌеМтарОев Мет" ++ ++#: wp-content/themes/classic/comments.php:5 ++#: wp-includes/comment-template.php:396 ++msgid "1 Comment" ++msgstr "1 кПЌЌеМтарОй" ++ ++#: wp-content/themes/classic/comments.php:5 ++#: wp-includes/comment-template.php:392 ++msgid "% Comments" ++msgstr "% КПЌЌеМтарОев" ++ ++#: wp-content/themes/classic/comments.php:7 ++#: wp-content/themes/classic/comments.php:36 ++#: wp-content/themes/classic/comments-popup.php:55 ++msgid "Leave a comment" ++msgstr "ОставОть кПЌЌеМтарОй" ++ ++#: wp-content/themes/classic/comments.php:18 ++#: wp-content/themes/classic/comments-popup.php:45 ++msgid "Trackback" ++msgstr "ОбратМая ссылка" ++ ++#: wp-content/themes/classic/comments.php:18 ++#: wp-content/themes/classic/comments-popup.php:45 ++msgid "Pingback" ++msgstr "УвеЎПЌлеМОе" ++ ++#: wp-content/themes/classic/comments.php:18 ++#: wp-content/themes/classic/comments-popup.php:45 ++msgid "by" ++msgstr "Пт" ++ ++#: wp-content/themes/classic/comments.php:18 ++#: wp-content/themes/classic/index.php:11 ++msgid "Edit This" ++msgstr "РеЎактОрПвать" ++ ++#: wp-content/themes/classic/comments.php:26 ++#: wp-content/themes/classic/comments-popup.php:51 ++msgid "No comments yet." ++msgstr "КПЌЌеМтарОев Мет." ++ ++#: wp-content/themes/classic/comments.php:29 ++#: wp-content/themes/classic/comments-popup.php:24 ++msgid "RSS feed for comments on this post." ++msgstr "RSS кПЌЌеМтарОев к этПй запОсО." ++ ++#: wp-content/themes/classic/comments.php:31 ++msgid "TrackBack URL" ++msgstr "URL ПбратМПй ссылкО" ++ ++#: wp-content/themes/classic/comments.php:39 ++#, php-format ++msgid "You must be logged in to post a comment." ++msgstr "Вы ЎПлжМы автПрОзПваться Ўля ПтправкО кПЌЌеМтарОя." ++ ++#: wp-content/themes/classic/comments.php:46 ++#: wp-content/themes/classic/comments-popup.php:60 ++#, php-format ++msgid "Logged in as %s." ++msgstr "Вы автПрОзПваМы как %s." ++ ++#: wp-content/themes/classic/comments.php:46 ++#: wp-content/themes/classic/comments-popup.php:60 ++msgid "Log out of this account" ++msgstr "ВыйтО Оз ЎаММПгП аккауМта" ++ ++#: wp-content/themes/classic/comments.php:46 ++#: wp-content/themes/classic/comments-popup.php:60 ++msgid "Log out »" ++msgstr "ВыйтО »" ++ ++#: wp-content/themes/classic/comments.php:51 ++#: wp-content/themes/classic/comments.php:54 ++msgid "(required)" ++msgstr "(ПбязательМП)" ++ ++#: wp-content/themes/classic/comments.php:54 ++msgid "Mail (will not be published)" ++msgstr "E-mail (Ме публОкуется)" ++ ++#: wp-content/themes/classic/comments.php:61 ++#, php-format ++msgid "You can use these tags: %s" ++msgstr "МПжМП ОспПльзПвать этО тегО: %s" ++ ++#: wp-content/themes/classic/comments.php:65 ++msgid "Submit Comment" ++msgstr "ОтправОть" ++ ++#: wp-content/themes/classic/comments.php:75 ++#: wp-content/themes/classic/comments-popup.php:92 ++msgid "Sorry, the comment form is closed at this time." ++msgstr "ИзвОМОте, ПбсужЎеМОе Ма ЎаММый ЌПЌеМт закрытП." ++ ++#: wp-content/themes/classic/comments-popup.php:27 ++msgid "The URL to TrackBack this entry is:" ++msgstr "URL Ўля ПбратМПй ссылкО Ма эту запОсь:" ++ ++#: wp-content/themes/classic/comments-popup.php:56 ++msgid "Line and paragraph breaks automatic, e-mail address never displayed, HTML allowed:" ++msgstr "ПеревПЎ стрПкО автПЌатОческОй, аЎрес e-mail МОкПгЎа Ме пПказывается, ЎПпустОЌые тегО HTML:" ++ ++#: wp-content/themes/classic/comments-popup.php:76 ++msgid "URL" ++msgstr "URL" ++ ++#: wp-content/themes/classic/comments-popup.php:81 ++msgid "Your Comment" ++msgstr "Ваш кПЌЌеМтарОй" ++ ++#: wp-content/themes/classic/comments-popup.php:87 ++msgid "Say It!" ++msgstr "ДПбавОть кПЌЌеМтарОй" ++ ++#: wp-content/themes/classic/comments-popup.php:97 ++msgid "Close this window." ++msgstr "Закрыть ПкМП." ++ ++#: wp-content/themes/classic/comments-popup.php:105 ++#, php-format ++msgid "Powered by WordPress" ++msgstr "Сайт рабПтает Ма WordPress" ++ ++#: wp-content/themes/classic/comments-popup.php:105 ++#: wp-content/themes/classic/footer.php:6 ++#: wp-content/themes/classic/sidebar.php:33 ++#: wp-includes/widgets.php:514 ++msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform." ++msgstr "Сайт рабПтает Ма WordPress — сПвреЌеММПй сОстеЌе персПМальМых публОкацОй." ++ ++#: wp-content/themes/classic/footer.php:6 ++#, php-format ++msgid "Powered by WordPress" ++msgstr "Сайт рабПтает Ма WordPress" ++ ++#: wp-content/themes/classic/index.php:11 ++msgid "Filed under:" ++msgstr "РубрОка:" ++ ++#: wp-content/themes/classic/index.php:11 ++msgid "Tags: " ++msgstr "МеткО: " ++ ++#: wp-content/themes/classic/index.php:14 ++msgid "(more...)" ++msgstr "(Ўалее…)" ++ ++#: wp-content/themes/classic/index.php:19 ++msgid "Comments (0)" ++msgstr "КПЌЌеМтарОО (0)" ++ ++#: wp-content/themes/classic/index.php:19 ++msgid "Comments (1)" ++msgstr "КПЌЌеМтарОО (1)" ++ ++#: wp-content/themes/classic/index.php:19 ++msgid "Comments (%)" ++msgstr "КПЌЌеМтарОО (%)" ++ ++#: wp-content/themes/classic/index.php:27 ++msgid "Sorry, no posts matched your criteria." ++msgstr "ИзвОМОте, Мет запОсей, уЎПвлетвПряющОх вашОЌ услПвОяЌ." ++ ++#: wp-content/themes/classic/index.php:30 ++msgid "« Older Posts" ++msgstr "« ПреЎыЎущОе запОсО" ++ ++#: wp-content/themes/classic/index.php:30 ++msgid "Newer Posts »" ++msgstr "СлеЎующОе запОсО »" ++ ++#: wp-content/themes/classic/sidebar.php:8 ++#: wp-includes/post-template.php:162 ++msgid "Pages:" ++msgstr "СтраМОц:" ++ ++#: wp-content/themes/classic/sidebar.php:12 ++msgid "Search:" ++msgstr "ППОск:" ++ ++#: wp-content/themes/classic/sidebar.php:20 ++msgid "Archives:" ++msgstr "АрхОв:" ++ ++#: wp-content/themes/classic/sidebar.php:25 ++msgid "Meta:" ++msgstr "Мета:" ++ ++#: wp-content/themes/classic/sidebar.php:29 ++msgid "Syndicate this site using RSS" ++msgstr "RSS-леМта блПга" ++ ++#: wp-content/themes/classic/sidebar.php:29 ++msgid "RSS" ++msgstr "RSS" ++ ++#: wp-content/themes/classic/sidebar.php:30 ++#: wp-includes/widgets.php:513 ++msgid "The latest comments to all posts in RSS" ++msgstr "ППслеЎМОе кПЌЌеМтарОО кП всеЌ запОсяЌ в RSS" ++ ++#: wp-content/themes/classic/sidebar.php:30 ++#: wp-includes/widgets.php:513 ++msgid "Comments RSS" ++msgstr "RSS кПЌЌеМтарОев" ++ ++#: wp-content/themes/classic/sidebar.php:31 ++msgid "This page validates as XHTML 1.0 Transitional" ++msgstr "Эта страМОца сППтветствует стаМЎарту XHTML 1.0 Transitional" ++ ++#: wp-content/themes/classic/sidebar.php:31 ++msgid "Valid XHTML" ++msgstr "ПравОльМый XHTML" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/custom-header.php:11 ++#: wp-content/themes/default/functions.php:147 ++msgid "Customize Header" ++msgstr "НастрПйка загПлПвка" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/custom-header.php:189 ++#: wp-content/themes/default/functions.php:147 ++#: wp-content/themes/default/functions.php:361 ++msgid "Header Image and Color" ++msgstr "ИзПбражеМОе О цвет загПлПвка" ++ ++#: wp-content/themes/default/functions.php:160 ++msgid "Close Color Picker" ++msgstr "Закрыть ПкМП выбПра цвета" ++ ++#: wp-content/themes/default/functions.php:375 ++msgid "Font Color:" ++msgstr "Њвет шрОфта:" ++ ++#: wp-content/themes/default/functions.php:375 ++#, php-format ++msgid "Any CSS color (%s or %s or %s)" ++msgstr "ЛюбПй цвет CSS (%s, %s ОлО %s)" ++ ++#: wp-content/themes/default/functions.php:376 ++msgid "Upper Color:" ++msgstr "ВерхМОй цвет:" ++ ++#: wp-content/themes/default/functions.php:376 ++#: wp-content/themes/default/functions.php:377 ++#, php-format ++msgid "HEX only (%s or %s)" ++msgstr "ТПлькП HEX (%s ОлО %s)" ++ ++#: wp-content/themes/default/functions.php:377 ++msgid "Lower Color:" ++msgstr "НОжМОй цвет:" ++ ++#: wp-content/themes/default/functions.php:379 ++msgid "Toggle Text" ++msgstr "Скрыть/пПказать текст" ++ ++#: wp-content/themes/default/functions.php:380 ++msgid "Use Defaults" ++msgstr "ПП уЌПлчаМОю" ++ ++#: wp-content/themes/default/functions.php:389 ++msgid "Font Color" ++msgstr "Њвет шрОфта" ++ ++#: wp-content/themes/default/functions.php:390 ++msgid "Upper Color" ++msgstr "ВерхМОй цвет" ++ ++#: wp-content/themes/default/functions.php:391 ++msgid "Lower Color" ++msgstr "НОжМОй цвет" ++ ++#: wp-content/themes/default/functions.php:392 ++msgid "Revert" ++msgstr "ОтЌеМОть" ++ ++#: wp-content/themes/default/functions.php:400 ++msgid "Update Header" ++msgstr "ОбМПвОть загПлПвПк" ++ ++#: wp-content/themes/default/functions.php:406 ++msgid "Font Color (CSS):" ++msgstr "Њвет шрОфта (CSS):" ++ ++#: wp-content/themes/default/functions.php:407 ++msgid "Upper Color (HEX):" ++msgstr "ВерхМОй цвет (HEX):" ++ ++#: wp-content/themes/default/functions.php:408 ++msgid "Lower Color (HEX):" ++msgstr "НОжМОй цвет (HEX):" ++ ++#: wp-content/themes/default/functions.php:409 ++msgid "Select Default Colors" ++msgstr "Выбрать цвета пП уЌПлчаМОю" ++ ++#: wp-content/themes/default/functions.php:410 ++msgid "Toggle Text Display" ++msgstr "Скрыть/пПказать текст" ++ ++#: wp-includes/atomlib.php:133 ++#, php-format ++msgid "XML error: %s at line %d" ++msgstr "ОшОбка XML: %s в стрПке %d" ++ ++#: wp-includes/author-template.php:237 ++#, php-format ++msgid "Visit %s's website" ++msgstr "ПерейтО Ма сайт %s" ++ ++#: wp-includes/author-template.php:371 ++#: wp-includes/author-template.php:469 ++#, php-format ++msgid "Posts by %s" ++msgstr "ЗапОсО %s" ++ ++#: wp-includes/bookmark-template.php:73 ++#, php-format ++msgid "Last updated: %s" ++msgstr "ППслеЎМее ОзЌеМеМОе: %s" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-includes/bookmark-template.php:321 ++#: wp-includes/bookmark-template.php:161 ++msgid "Bookmarks" ++msgstr "ЗаклаЎкО" ++ ++#: wp-includes/category-template.php:62 ++#: wp-includes/category-template.php:129 ++#: wp-includes/category-template.php:132 ++#: wp-includes/category-template.php:139 ++#: wp-includes/category-template.php:152 ++#: wp-includes/category-template.php:155 ++#: wp-includes/category-template.php:162 ++#, php-format ++msgid "View all posts in %s" ++msgstr "ПрПсЌПтреть все запОсО в рубрОке «%s»" ++ ++#: wp-includes/category-template.php:300 ++#: wp-includes/category-template.php:302 ++msgid "No categories" ++msgstr "РубрОк Мет" ++ ++#: wp-includes/category-template.php:416 ++#, php-format ++msgid "%d topic" ++msgid_plural "%d topics" ++msgstr[0] "%d теЌа" ++msgstr[1] "%d теЌы" ++msgstr[2] "%d теЌ" ++ ++#: wp-includes/classes.php:634 ++#, php-format ++msgid "View all posts filed under %s" ++msgstr "ПрПсЌПтреть все запОсО в рубрОке «%s»" ++ ++#: wp-includes/classes.php:649 ++#, php-format ++msgid "Feed for all posts filed under %s" ++msgstr "RSS-леМта всех запОсей в рубрОке «%s»" ++ ++#: wp-includes/class-pop3.php:83 ++msgid "No server specified" ++msgstr "Не указаМ сервер" ++ ++#: wp-includes/class-pop3.php:91 ++#: wp-includes/class-pop3.php:103 ++#: wp-includes/class-pop3.php:124 ++#: wp-includes/class-pop3.php:247 ++#: wp-includes/class-pop3.php:301 ++#: wp-includes/class-pop3.php:312 ++#: wp-includes/class-pop3.php:360 ++#: wp-includes/class-pop3.php:394 ++#: wp-includes/class-pop3.php:427 ++#: wp-includes/class-pop3.php:526 ++#: wp-includes/class-pop3.php:549 ++msgid "Error " ++msgstr "ОшОбка" ++ ++#: wp-includes/class-pop3.php:116 ++msgid "no login ID submitted" ++msgstr "Ме пПслаМ ID лПгОМа" ++ ++#: wp-includes/class-pop3.php:119 ++#: wp-includes/class-pop3.php:139 ++msgid "connection not established" ++msgstr "сПеЎОМеМОе Ме устаМПвлеМП" ++ ++#: wp-includes/class-pop3.php:136 ++#: wp-includes/class-pop3.php:172 ++msgid "No password submitted" ++msgstr "ПарПль Ме пПслаМ" ++ ++#: wp-includes/class-pop3.php:144 ++msgid "Authentication failed" ++msgstr "АутеМтОфОкацОя Ме уЎалась" ++ ++#: wp-includes/class-pop3.php:163 ++#: wp-includes/class-pop3.php:206 ++#: wp-includes/class-pop3.php:231 ++#: wp-includes/class-pop3.php:273 ++#: wp-includes/class-pop3.php:347 ++#: wp-includes/class-pop3.php:387 ++#: wp-includes/class-pop3.php:417 ++#: wp-includes/class-pop3.php:451 ++#: wp-includes/class-pop3.php:514 ++#: wp-includes/class-pop3.php:582 ++msgid "No connection to server" ++msgstr "Нет сПеЎОМеМОя с серверПЌ" ++ ++#: wp-includes/class-pop3.php:169 ++msgid "No login ID submitted" ++msgstr "Не пПслаМ ID лПгОМа" ++ ++#: wp-includes/class-pop3.php:177 ++msgid "No server banner" ++msgstr "Нет загПлПвка сервера" ++ ++#: wp-includes/class-pop3.php:177 ++#: wp-includes/class-pop3.php:187 ++msgid "abort" ++msgstr "прервать" ++ ++#: wp-includes/class-pop3.php:187 ++msgid "apop authentication failed" ++msgstr "apop-аутеМтОфОкацОя Ме уЎалась" ++ ++#: wp-includes/class-pop3.php:324 ++msgid "Premature end of list" ++msgstr "ПрежЎевреЌеММПе ПкПМчаМОе спОска" ++ ++#: wp-includes/class-pop3.php:457 ++msgid "Empty command string" ++msgstr "КПЌаМЎМая стрПка пуста" ++ ++#: wp-includes/class-pop3.php:477 ++msgid "connection does not exist" ++msgstr "Мет сПеЎОМеМОя" ++ ++#: wp-includes/class-pop3.php:587 ++msgid "No msg number submitted" ++msgstr "Не пПслаМ МПЌер сППбщеМОя" ++ ++#: wp-includes/class-pop3.php:593 ++msgid "Command failed " ++msgstr "КПЌаМЎа Ме выпПлМеМа" ++ ++#: wp-includes/comment.php:337 ++msgid "Duplicate comment detected; it looks as though you've already said that!" ++msgstr "ДублОкат кПЌЌеМтарОя уЎалеМ. Кажется, вы уже сказалО этП!" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-includes/comment.php:197 ++#: wp-includes/comment.php:388 ++msgid "You are posting comments too quickly. Slow down." ++msgstr "Вы кПЌЌеМтОруете слОшкПЌ быстрП. ППпрОЎержОте кПМей." ++ ++#: wp-includes/comment-template.php:25 ++#: wp-includes/theme.php:116 ++msgid "Anonymous" ++msgstr "АМПМОЌМП" ++ ++#: wp-includes/comment-template.php:735 ++msgid "Enter your password to view comments" ++msgstr "ВвеЎОте ваш парПль Ўля прПсЌПтра кПЌЌеМтарОев." ++ ++#: wp-includes/comment-template.php:763 ++#, php-format ++msgid "Comment on %s" ++msgstr "КПЌЌеМтарОй к запОсО %s" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-includes/cron.php:119 ++#: wp-includes/cron.php:135 ++msgid "Once Hourly" ++msgstr "КажЎый час" ++ ++#: wp-includes/cron.php:136 ++msgid "Once Daily" ++msgstr "КажЎый ЎеМь" ++ ++#: wp-includes/deprecated.php:123 ++msgid "new WordPress Loop" ++msgstr "МПвый цОкл WordPress" ++ ++#: wp-includes/deprecated.php:1016 ++msgid "Last updated" ++msgstr "ППслеЎМОе ОзЌеМеМОя" ++ ++#: wp-includes/feed-atom-comments.php:18 ++#: wp-includes/feed-rss2-comments.php:20 ++#, php-format ++msgid "Comments on: %s" ++msgstr "КПЌЌеМтарОО к запОсО: %s" ++ ++#: wp-includes/feed-atom-comments.php:20 ++#, php-format ++msgid "Comments for %1$s searching on %2$s" ++msgstr "КПЌЌеМтарОО Ма сайте %1$s пП запрПсу %2$s" ++ ++#: wp-includes/feed-atom-comments.php:22 ++#: wp-includes/feed-rss2-comments.php:24 ++#, php-format ++msgid "Comments for %s" ++msgstr "КПЌЌеМтарОО: %s" ++ ++#: wp-includes/feed-atom-comments.php:53 ++#: wp-includes/feed-rss2-comments.php:42 ++#, php-format ++msgid "Comment on %1$s by %2$s" ++msgstr "КПЌЌеМтарОй к запОсО «%1$s» Пт %2$s" ++ ++#: wp-includes/feed-atom-comments.php:55 ++#: wp-includes/feed-rss2-comments.php:44 ++#, php-format ++msgid "By: %s" ++msgstr "АвтПр: %s" ++ ++#: wp-includes/feed-rss2-comments.php:22 ++#, php-format ++msgid "Comments for %s searching on %s" ++msgstr "КПЌЌеМтарОО Ма сайте %s пП запрПсу %s" ++ ++#: wp-includes/feed-rss2-comments.php:52 ++msgid "Protected Comments: Please enter your password to view comments." ++msgstr "Скрытые кПЌЌеМтарОО: ввеЎОте парПль Ўля прПсЌПтра кПЌЌеМтарОев." ++ ++#: wp-includes/formatting.php:812 ++#, php-format ++msgid "%s min" ++msgid_plural "%s mins" ++msgstr[0] "%s ЌОМута" ++msgstr[1] "%s ЌОМуты" ++msgstr[2] "%s ЌОМут" ++ ++#: wp-includes/formatting.php:818 ++#, php-format ++msgid "%s hour" ++msgid_plural "%s hours" ++msgstr[0] "%s час" ++msgstr[1] "%s часа" ++msgstr[2] "%s часПв" ++ ++#: wp-includes/formatting.php:824 ++#, php-format ++msgid "%s day" ++msgid_plural "%s days" ++msgstr[0] "%s ЎеМь" ++msgstr[1] "%s ЎМя" ++msgstr[2] "%s ЎМей" ++ ++#: wp-includes/formatting.php:1371 ++msgid ", |between list items" ++msgstr ", |ЌежЎу элеЌеМтаЌО спОска" ++ ++#: wp-includes/formatting.php:1372 ++msgid ", and |between last two list items" ++msgstr ", О |ЌежЎу ЎвуЌя пПслеЎМОЌО элеЌеМтаЌО спОска" ++ ++#: wp-includes/formatting.php:1373 ++msgid " and |between only two list items" ++msgstr " О |ЌежЎу ЎвуЌя еЎОМствеММыЌО элеЌеМтаЌО спОска" ++ ++#: wp-includes/functions.php:250 ++#, php-format ++msgid "%s is a protected WP option and may not be modified" ++msgstr "%s — защОщеММая ПпцОя WP О Ме ЌПжет быть ОзЌеМеМа" ++ ++#: wp-includes/functions.php:907 ++#, php-format ++msgid "ERROR: %s is not a valid feed template" ++msgstr "ОКИБКА: %s Ме является кПрректМыЌ шаблПМПЌ леМты" ++ ++#: wp-includes/functions.php:1113 ++#: wp-includes/functions.php:1175 ++#, php-format ++msgid "Unable to create directory %s. Is its parent directory writable by the server?" ++msgstr "Не ЌПгу сПзЎать ЎОректПрОю %s. ПрПверьте, ЎПступМа лО рПЎОтельская ЎОректПрОя Ўля запОсО." ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-includes/functions-post.php:920 ++#: wp-includes/functions.php:1160 ++msgid "Empty filename" ++msgstr "ПустПе ОЌя файла" ++ ++#: wp-includes/functions.php:1181 ++#, php-format ++msgid "Could not write file %s" ++msgstr "НевПзЌПжМП сПхраМОть файл %s" ++ ++#: wp-includes/functions.php:1283 ++#, php-format ++msgid "Your attempt to edit this attachment: "%s" has failed." ++msgstr "ППпытка ОзЌеМОть этП влПжеМОе: «%s» Ме уЎалась." ++ ++#: wp-includes/functions.php:1285 ++msgid "Your attempt to add this category has failed." ++msgstr "ППпытка ЎПбавОть эту рубрОку Ме уЎалась." ++ ++#: wp-includes/functions.php:1286 ++#, php-format ++msgid "Your attempt to delete this category: "%s" has failed." ++msgstr "ППпытка уЎалОть эту рубрОку: «%s» Ме уЎалась." ++ ++#: wp-includes/functions.php:1287 ++#, php-format ++msgid "Your attempt to edit this category: "%s" has failed." ++msgstr "ППпытка ОзЌеМОть эту рубрОку: «%s» Ме уЎалась." ++ ++#: wp-includes/functions.php:1289 ++#, php-format ++msgid "Your attempt to delete this comment: "%s" has failed." ++msgstr "ППпытка уЎалОть этПт кПЌЌеМтарОй: «%s» Ме уЎалась." ++ ++#: wp-includes/functions.php:1290 ++#, php-format ++msgid "Your attempt to unapprove this comment: "%s" has failed." ++msgstr "ППпытка ПтЌеМОть прПверку этПгП кПЌЌеМтарОя: «%s» Ме уЎалась." ++ ++#: wp-includes/functions.php:1291 ++#, php-format ++msgid "Your attempt to approve this comment: "%s" has failed." ++msgstr "ППпытка ПЎПбрОть этПт кПЌЌеМтарОй: «%s» Ме уЎалась." ++ ++#: wp-includes/functions.php:1292 ++#, php-format ++msgid "Your attempt to edit this comment: "%s" has failed." ++msgstr "ППпытка ОзЌеМОть этПт кПЌЌеМтарОй: «%s» Ме уЎалась." ++ ++#: wp-includes/functions.php:1293 ++msgid "Your attempt to bulk modify comments has failed." ++msgstr "ППпытка ЌассПвП ОзЌеМОть кПЌЌеМтарОО Ме уЎалась." ++ ++#: wp-includes/functions.php:1294 ++msgid "Your attempt to moderate comments has failed." ++msgstr "ППпытка прПверОть этО кПЌЌеМтарОО Ме уЎалась." ++ ++#: wp-includes/functions.php:1296 ++msgid "Your attempt to add this link has failed." ++msgstr "ППпытка ЎПбавОть эту ссылку Ме уЎалась." ++ ++#: wp-includes/functions.php:1297 ++#, php-format ++msgid "Your attempt to delete this link: "%s" has failed." ++msgstr "ППпытка уЎалОть эту ссылку: «%s» Ме уЎалась." ++ ++#: wp-includes/functions.php:1298 ++#, php-format ++msgid "Your attempt to edit this link: "%s" has failed." ++msgstr "ППпытка ОзЌеМОть эту ссылку: «%s» Ме уЎалась." ++ ++#: wp-includes/functions.php:1299 ++msgid "Your attempt to bulk modify links has failed." ++msgstr "ППпытка ЌассПвП ОзЌеМОть ссылкО Ме уЎалась." ++ ++#: wp-includes/functions.php:1301 ++msgid "Your attempt to add this page has failed." ++msgstr "ППпытка ЎПбавОть эту страМОцу Ме уЎалась." ++ ++#: wp-includes/functions.php:1302 ++#, php-format ++msgid "Your attempt to delete this page: "%s" has failed." ++msgstr "ППпытка уЎалОть эту страМОцу: «%s» Ме уЎалась." ++ ++#: wp-includes/functions.php:1303 ++#, php-format ++msgid "Your attempt to edit this page: "%s" has failed." ++msgstr "ППпытка ОзЌеМОть эту страМОцу: «%s» Ме уЎалась." ++ ++#: wp-includes/functions.php:1305 ++#, php-format ++msgid "Your attempt to edit this plugin file: "%s" has failed." ++msgstr "ППпытка ОзЌеМОть файл плагОМа: «%s» Ме уЎалась." ++ ++#: wp-includes/functions.php:1306 ++#, php-format ++msgid "Your attempt to activate this plugin: "%s" has failed." ++msgstr "ППпытка актОвОрПвать этПт плагОМ: «%s» Ме уЎалась." ++ ++#: wp-includes/functions.php:1307 ++#, php-format ++msgid "Your attempt to deactivate this plugin: "%s" has failed." ++msgstr "ППпытка ЎеактОвОрПвать этПт плагОМ: «%s» Ме уЎалась." ++ ++#: wp-includes/functions.php:1308 ++#, php-format ++msgid "Your attempt to upgrade this plugin: "%s" has failed." ++msgstr "ППпытка ПбМПвОть этПт плагОМ: «%s» Ме уЎалась." ++ ++#: wp-includes/functions.php:1310 ++msgid "Your attempt to add this post has failed." ++msgstr "ППпытка ЎПбавОть эту запОсь Ме уЎалась." ++ ++#: wp-includes/functions.php:1311 ++#, php-format ++msgid "Your attempt to delete this post: "%s" has failed." ++msgstr "ППпытка уЎалОть эту запОсь: «%s» Ме уЎалась." ++ ++#: wp-includes/functions.php:1312 ++#, php-format ++msgid "Your attempt to edit this post: "%s" has failed." ++msgstr "ППпытка ОзЌеМОть эту запОсь: «%s» Ме уЎалась." ++ ++#: wp-includes/functions.php:1314 ++msgid "Your attempt to add this user has failed." ++msgstr "ППпытка ЎПбавОть этПгП пПльзПвателя Ме уЎалась." ++ ++#: wp-includes/functions.php:1315 ++msgid "Your attempt to delete users has failed." ++msgstr "ППпытка уЎалОть пПльзПвателей Ме уЎалась." ++ ++#: wp-includes/functions.php:1316 ++msgid "Your attempt to bulk modify users has failed." ++msgstr "ППпытка ОзЌеМОть ЎаММые пПльзПвателей Ме уЎалась." ++ ++#: wp-includes/functions.php:1317 ++#, php-format ++msgid "Your attempt to edit this user: "%s" has failed." ++msgstr "ППпытка ОзЌеМОть ЎаММые этПгП пПльзПвателя: «%s» Ме уЎалась." ++ ++#: wp-includes/functions.php:1318 ++#, php-format ++msgid "Your attempt to modify the profile for: "%s" has failed." ++msgstr "ППпытка ОзЌеМОть прПфОль Ўля «%s» Ме уЎалась." ++ ++#: wp-includes/functions.php:1320 ++msgid "Your attempt to edit your settings has failed." ++msgstr "ППпытка ОзЌеМОть МастрПйкО Ме уЎалась." ++ ++#: wp-includes/functions.php:1321 ++#, php-format ++msgid "Your attempt to change your permalink structure to: %s has failed." ++msgstr "ППпытка ОзЌеМОть структуру пПстПяММых ссылПк Ма %s Ме уЎалась." ++ ++#: wp-includes/functions.php:1322 ++#, php-format ++msgid "Your attempt to edit this file: "%s" has failed." ++msgstr "ППпытка ОзЌеМОть этПт файл: «%s» Ме уЎалась." ++ ++#: wp-includes/functions.php:1323 ++#, php-format ++msgid "Your attempt to edit this theme file: "%s" has failed." ++msgstr "ППпытка ОзЌеМОть этПт файл теЌы: «%s» Ме уЎалась." ++ ++#: wp-includes/functions.php:1324 ++#, php-format ++msgid "Your attempt to switch to this theme: "%s" has failed." ++msgstr "ППпытка переключОться Ма эту теЌу: «%s» Ме уЎалась." ++ ++#: wp-includes/functions.php:1339 ++msgid "Are you sure you want to do this?" ++msgstr "Вы увереМы, чтП хПтОте этП сЎелать?" ++ ++#: wp-includes/functions.php:1344 ++msgid "WordPress Failure Notice" ++msgstr "СППбщеМОе Пб ПшОбке" ++ ++#: wp-includes/functions.php:1347 ++msgid "Please try again." ++msgstr "ППжалуйста, пПпрПбуйте ещё раз." ++ ++#: wp-includes/functions.php:1395 ++msgid "WordPress › Error" ++msgstr "WordPress › ОшОбка" ++ ++#: wp-includes/general-template.php:36 ++#: wp-login.php:261 ++#: wp-login.php:264 ++#: wp-login.php:329 ++msgid "Log in" ++msgstr "ВПйтО" ++ ++#: wp-includes/general-template.php:38 ++msgid "Log out" ++msgstr "ВыйтО" ++ ++#: wp-includes/general-template.php:48 ++#: wp-login.php:262 ++#: wp-login.php:325 ++#: wp-login.php:403 ++msgid "Register" ++msgstr "РегОстрацОя" ++ ++#: wp-includes/general-template.php:52 ++msgid "Site Admin" ++msgstr "ПаМель управлеМОя" ++ ++#: wp-includes/general-template.php:414 ++#, php-format ++msgid "%1$s %2$d" ++msgstr "%1$s %2$d" ++ ++#: wp-includes/general-template.php:591 ++#: wp-includes/widgets.php:1364 ++#: wp-includes/widgets.php:1365 ++msgid "Calendar" ++msgstr "КалеМЎарь" ++ ++#: wp-includes/general-template.php:592 ++#, php-format ++msgid "%1$s %2$s|Used as a calendar caption" ++msgstr "%1$s %2$s|ИспПльзуется как загПлПвПк калеМЎаря" ++ ++#: wp-includes/general-template.php:616 ++#: wp-includes/general-template.php:626 ++#, php-format ++msgid "View posts for %1$s %2$s" ++msgstr "ППсЌПтреть запОсО за %1$s %2$s" ++ ++#: wp-includes/general-template.php:933 ++#: wp-includes/general-template.php:937 ++msgid "HTML" ++msgstr "HTML" ++ ++#: wp-includes/general-template.php:934 ++#: wp-includes/general-template.php:938 ++msgid "Visual" ++msgstr "ВОзуальМП" ++ ++#: wp-includes/general-template.php:1032 ++msgid "« Previous" ++msgstr "« РаМее" ++ ++#: wp-includes/general-template.php:1033 ++msgid "Next »" ++msgstr "Далее »" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:13 ++msgid "Do you want to use the WYSIWYG mode for this textarea?" ++msgstr "Вы хПтОте ОспПльзПвать режОЌ WYSIWYG Ўля этПгП текстПвПгП пПля?" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:14 ++msgid "Apply" ++msgstr "ПрОЌеМОть" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:15 ++#: wp-includes/script-loader.php:183 ++msgid "Insert" ++msgstr "ВставОть" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:18 ++#: wp-includes/js/tinymce/wp-mce-help.php:246 ++msgid "Close" ++msgstr "Закрыть" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:19 ++msgid "Browse" ++msgstr "ОбзПр" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:20 ++#: wp-includes/js/tinymce/langs/wp-langs.php:300 ++msgid "Class" ++msgstr "Класс" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:21 ++msgid "-- Not set --" ++msgstr "-- Не заЎаМП --" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:22 ++#: wp-includes/js/tinymce/langs/wp-langs.php:227 ++msgid "Copy/Cut/Paste is not available in Mozilla and Firefox." ++msgstr "КПпОрПвать/Вырезать/ВставОть МеЎПступМы в Mozilla О Firefox." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:23 ++msgid "Currently not supported by your browser, use keyboard shortcuts instead." ++msgstr "Не пПЎЎержОвается вашОЌ браузерПЌ, ОспПльзуйте клавОатурМые сПчетаМОя." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:24 ++msgid "Sorry, but we have noticed that your popup-blocker has disabled a window that provides application functionality. You will need to disable popup blocking on this site in order to fully utilize this tool." ++msgstr "Мы заЌетОлО, чтП всплывающее ПкМП с фуМкцОПМальМПстью прОлПжеМОя былП заблПкОрПваМП. ВаЌ МужМП разрешОть всплывающОе ПкМа Ўля этПгП сайта, чтПбы вПспПльзПваться этОЌ ОМструЌеМтПЌ в пПлМПй Ќере." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:25 ++msgid "Error: Invalid values entered, these are marked in red." ++msgstr "ОшОбка: ВвеЎеМы МекПрректМые зМачеМОя, ПМО пПЌечеМы красМыЌ." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:26 ++#: wp-includes/js/tinymce/langs/wp-langs.php:231 ++msgid "More colors" ++msgstr "ДругОе цвета" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:33 ++msgid "Full" ++msgstr "ПП шОрОМе" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:36 ++msgid "%Y-%m-%d" ++msgstr "%d.%m.%Y" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:37 ++msgid "%H:%M:%S" ++msgstr "%H:%M:%S" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:38 ++msgid "Insert date" ++msgstr "ВставОть Ўату" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:39 ++msgid "Insert time" ++msgstr "ВставОть вреЌя" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:142 ++#: wp-includes/locale.php:157 ++msgid "January" ++msgstr "ЯМварь" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:143 ++#: wp-includes/locale.php:158 ++msgid "February" ++msgstr "Ѐевраль" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:144 ++#: wp-includes/locale.php:159 ++msgid "March" ++msgstr "Март" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:145 ++#: wp-includes/locale.php:160 ++msgid "April" ++msgstr "Апрель" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:146 ++#: wp-includes/locale.php:161 ++msgid "May" ++msgstr "Май" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:147 ++#: wp-includes/locale.php:162 ++msgid "June" ++msgstr "ИюМь" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:148 ++#: wp-includes/locale.php:163 ++msgid "July" ++msgstr "Июль" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:149 ++#: wp-includes/locale.php:164 ++msgid "August" ++msgstr "Август" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:150 ++#: wp-includes/locale.php:165 ++msgid "September" ++msgstr "СеМтябрь" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:151 ++#: wp-includes/locale.php:166 ++msgid "October" ++msgstr "Октябрь" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:152 ++#: wp-includes/locale.php:167 ++msgid "November" ++msgstr "НПябрь" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:153 ++#: wp-includes/locale.php:168 ++msgid "December" ++msgstr "Декабрь" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:157 ++msgid "Jan_January_abbreviation" ++msgstr "ЯМв" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:158 ++msgid "Feb_February_abbreviation" ++msgstr "Ѐев" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:159 ++msgid "Mar_March_abbreviation" ++msgstr "Мар" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:160 ++msgid "Apr_April_abbreviation" ++msgstr "Апр" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:161 ++msgid "May_May_abbreviation" ++msgstr "Май" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:162 ++msgid "Jun_June_abbreviation" ++msgstr "ИюМ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:163 ++msgid "Jul_July_abbreviation" ++msgstr "Июл" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:164 ++msgid "Aug_August_abbreviation" ++msgstr "Авг" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:165 ++msgid "Sep_September_abbreviation" ++msgstr "СеМ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:166 ++msgid "Oct_October_abbreviation" ++msgstr "Окт" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:167 ++msgid "Nov_November_abbreviation" ++msgstr "НПя" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:168 ++msgid "Dec_December_abbreviation" ++msgstr "Дек" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:110 ++#: wp-includes/locale.php:120 ++#: wp-includes/locale.php:133 ++msgid "Sunday" ++msgstr "ВПскресеМье" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:111 ++#: wp-includes/locale.php:121 ++#: wp-includes/locale.php:134 ++msgid "Monday" ++msgstr "ППМеЎельМОк" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:112 ++#: wp-includes/locale.php:122 ++#: wp-includes/locale.php:135 ++msgid "Tuesday" ++msgstr "ВтПрМОк" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:113 ++#: wp-includes/locale.php:123 ++#: wp-includes/locale.php:136 ++msgid "Wednesday" ++msgstr "СреЎа" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:114 ++#: wp-includes/locale.php:124 ++#: wp-includes/locale.php:137 ++msgid "Thursday" ++msgstr "Четверг" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:115 ++#: wp-includes/locale.php:125 ++#: wp-includes/locale.php:138 ++msgid "Friday" ++msgstr "ПятМОца" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:116 ++#: wp-includes/locale.php:126 ++#: wp-includes/locale.php:139 ++msgid "Saturday" ++msgstr "СуббПта" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:133 ++msgid "Sun" ++msgstr "Вс" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:134 ++msgid "Mon" ++msgstr "ПМ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:135 ++msgid "Tue" ++msgstr "Вт" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:136 ++msgid "Wed" ++msgstr "Ср" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:137 ++msgid "Thu" ++msgstr "Чт" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:138 ++msgid "Fri" ++msgstr "Пт" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:139 ++msgid "Sat" ++msgstr "Сб" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:46 ++msgid "Print" ++msgstr "Печать" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:49 ++#: wp-includes/js/tinymce/langs/wp-langs.php:295 ++msgid "Preview" ++msgstr "ПреЎварОтельМый прПсЌПтр" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:52 ++msgid "Direction left to right" ++msgstr "НаправлеМОе слева МаправП" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:53 ++msgid "Direction right to left" ++msgstr "НаправлеМОе справа МалевП" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:56 ++msgid "Insert new layer" ++msgstr "ВставОть МПвый слПй" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:57 ++msgid "Move forward" ++msgstr "ПереЌестОть вперёЎ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:58 ++msgid "Move backward" ++msgstr "ПереЌестОть МазаЎ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:59 ++msgid "Toggle absolute positioning" ++msgstr "ВключОть/выключОть абсПлютМПе пПзОцОПМОрПваМОе" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:60 ++msgid "New layer..." ++msgstr "НПвый слПй..." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:64 ++msgid "Cancel all changes" ++msgstr "ОтЌеМОть все ОзЌеМеМОя" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:67 ++msgid "Insert non-breaking space character" ++msgstr "ВставОть сОЌвПл МеразрывМПгП прПбела" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:70 ++msgid "Run spell checking" ++msgstr "ЗапустОть прПверку ПрфПграфОО" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:71 ++msgid "ieSpell not detected. Do you want to install it now?" ++msgstr "ieSpell Ме ПбМаружеМ. УстаМПвОть сейчас?" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:74 ++msgid "Horizontale rule" ++msgstr "ГПрОзПМтальМый разЎелОтель" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:77 ++msgid "Emotions" ++msgstr "ЭЌПцОО" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:80 ++msgid "Find" ++msgstr "НайтО" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:81 ++msgid "Find/Replace" ++msgstr "НайтО/ЗаЌеМОть" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:84 ++#: wp-includes/js/tinymce/langs/wp-langs.php:206 ++#: wp-includes/js/tinymce/langs/wp-langs.php:260 ++msgid "Insert/edit image" ++msgstr "ВставОть/реЎактОрПвать картОМку" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:87 ++#: wp-includes/js/tinymce/langs/wp-langs.php:202 ++#: wp-includes/js/tinymce/langs/wp-langs.php:277 ++msgid "Insert/edit link" ++msgstr "ВставОть/реЎактОрПвать ссылку" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:90 ++msgid "Citation" ++msgstr "ЊОтата" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:91 ++msgid "Abbreviation" ++msgstr "АббревОатура" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:92 ++msgid "Acronym" ++msgstr "СПкращеМОе" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:93 ++msgid "Deletion" ++msgstr "УЎалеМОе" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:94 ++msgid "Insertion" ++msgstr "Вставка" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:95 ++msgid "Insert/Edit Attributes" ++msgstr "ВставОть/реЎактОрПвать атрОбуты" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:98 ++msgid "Edit CSS Style" ++msgstr "РеЎактОрПвать CSS" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:101 ++msgid "Paste as Plain Text" ++msgstr "ВставОть как текст" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:102 ++msgid "Paste from Word" ++msgstr "ВставОть Оз Word" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:103 ++msgid "Select All" ++msgstr "ВыЎелОть все" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:106 ++#: wp-includes/js/tinymce/langs/wp-langs.php:108 ++msgid "Use CTRL+V on your keyboard to paste the text into the window." ++msgstr "ИспПльзуйте сПчетаМОе Ctrl+V, чтПбы вставОть в ПкМП текст." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:107 ++msgid "Keep linebreaks" ++msgstr "СПхраМять разрывы стрПк" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:111 ++msgid "Inserts a new table" ++msgstr "Вставляет МПвую таблОцу" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:112 ++msgid "Insert row before" ++msgstr "ВставОть стрПку ЎП" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:113 ++msgid "Insert row after" ++msgstr "ВставОть стрПку пПсле" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:114 ++msgid "Delete row" ++msgstr "УЎалОть стрПку" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:115 ++msgid "Insert column before" ++msgstr "ВставОть стПлбец ЎП" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:116 ++msgid "Insert column after" ++msgstr "ВставОть стПлбец пПсле" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:117 ++msgid "Remove column" ++msgstr "УЎалОть стПлбец" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:118 ++msgid "Split merged table cells" ++msgstr "РазЎелОть ПбъеЎОМёММые ячейкО таблОцы" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:119 ++msgid "Merge table cells" ++msgstr "ОбъеЎОМОть ячейкО таблОцы" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:120 ++msgid "Table row properties" ++msgstr "СвПйства стрПкО таблОцы" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:121 ++msgid "Table cell properties" ++msgstr "СвПйства ячейкО таблОцы" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:122 ++msgid "Table properties" ++msgstr "СвПйства таблОцы" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:123 ++msgid "Paste table row before" ++msgstr "ВставОть стрПку таблОцы ЎП" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:124 ++msgid "Paste table row after" ++msgstr "ВставОть стрПку таблОцы пПсле" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:125 ++msgid "Cut table row" ++msgstr "Вырезать стрПку таблОцы" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:126 ++msgid "Copy table row" ++msgstr "КПпОрПвать стрПку таблОцы" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:127 ++msgid "Delete table" ++msgstr "УЎалОть таблОцу" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:128 ++msgid "Row" ++msgstr "КПпОрПвать стрПку таблОцы" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:129 ++msgid "Column" ++msgstr "СтПлбец" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-includes/js/tinymce/wp-mce-help.php:153 ++#: wp-includes/js/tinymce/langs/wp-langs.php:130 ++msgid "Cell" ++msgstr "Ячейка" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:133 ++msgid "The changes you made will be lost if you navigate away from this page." ++msgstr "СЎелаММые ваЌО ОзЌеМеМОя буЎут ПтЌеМеМы, еслО вы уйЎёте с этПй страМОцы." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:136 ++msgid "Toggle fullscreen mode" ++msgstr "ППлМПэкраММый режОЌ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:139 ++#: wp-includes/js/tinymce/langs/wp-langs.php:289 ++msgid "Insert / edit embedded media" ++msgstr "ВставОть/реЎактОрПвать ЌеЎОафайл" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:140 ++msgid "0| Extra width for the media popup in pixels" ++msgstr "0| ДПпПлМОтельМая шОрОМа всплывающегП ПкМа Ўля ЌеЎОафайла в пОкселях" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:141 ++msgid "0| Extra height for the media popup in pixels" ++msgstr "0| ДПпПлМОтельМая высПта всплывающегП ПкМа Ўля ЌеЎОафайла в пОкселях" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:142 ++msgid "Edit embedded media" ++msgstr "РеЎактОрПвать ЌеЎОафайл" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:145 ++msgid "Document properties" ++msgstr "СвПйства ЎПкуЌеМта" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:148 ++msgid "Insert predefined template content" ++msgstr "ВставОть сПЎержОЌПе гПтПвПгП шаблПМа" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:151 ++msgid "Visual control characters on/off." ++msgstr "ВключОть/выключОть сОЌвПлы вОзуальМПгП кПМтрПля." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:154 ++msgid "Toggle spellchecker" ++msgstr "ВключОть/выключОть прПверку ПрфПграфОО" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:155 ++msgid "Spellchecker settings" ++msgstr "НастрПйкО прПверкО ПрфПграфОО" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:156 ++msgid "Ignore word" ++msgstr "ПрПпустОть слПвП" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:157 ++msgid "Ignore all" ++msgstr "ПрПпустОть все" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:158 ++msgid "Languages" ++msgstr "ЯзыкО" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:159 ++msgid "Please wait..." ++msgstr "ППжалуйста, пПЎПжЎОте..." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:160 ++msgid "Suggestions" ++msgstr "ВарОаМты" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:161 ++msgid "No suggestions" ++msgstr "ВарОаМтПв Мет" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:162 ++msgid "No misspellings found." ++msgstr "ОрфПграфОческОх ПшОбПк Ме МайЎеМП." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:165 ++msgid "Insert page break." ++msgstr "ВставОть разрыв страМОцы." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:169 ++msgid "Styles" ++msgstr "СтОлО" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:170 ++msgid "Font size" ++msgstr "РазЌер шрОфта" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:171 ++msgid "Font family" ++msgstr "СеЌействП шрОфтПв" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:172 ++msgid "Format" ++msgstr "ЀПрЌат" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:173 ++msgid "Paragraph" ++msgstr "Абзац" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:174 ++msgid "Div" ++msgstr "СлПй" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/link-manager.php:89 ++#: wp-includes/js/tinymce/langs/wp-langs.php:175 ++#: wp-includes/js/tinymce/wp-mce-help.php:204 ++msgid "Address" ++msgstr "АЎрес" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:176 ++msgid "Preformatted" ++msgstr "ОтфПрЌатОрПваММый" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:177 ++msgid "Heading 1" ++msgstr "ЗагПлПвПк 1" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:178 ++msgid "Heading 2" ++msgstr "ЗагПлПвПк 2" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:179 ++msgid "Heading 3" ++msgstr "ЗагПлПвПк 3" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:180 ++msgid "Heading 4" ++msgstr "ЗагПлПвПк 4" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:181 ++msgid "Heading 5" ++msgstr "ЗагПлПвПк 5" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:182 ++msgid "Heading 6" ++msgstr "ЗагПлПвПк 6" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:183 ++#: wp-includes/js/tinymce/langs/wp-langs.php:226 ++msgid "Blockquote" ++msgstr "ЊОтата" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:184 ++msgid "Code" ++msgstr "КПЎ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:185 ++msgid "Code sample" ++msgstr "Образец кПЎа" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:186 ++msgid "Definition term " ++msgstr "ТерЌОМ " ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:187 ++msgid "Definition description" ++msgstr "ОпОсаМОе терЌОМа" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:188 ++#: wp-includes/js/tinymce/wp-mce-help.php:200 ++#: wp-includes/js/tinymce/wp-mce-help.php:213 ++msgid "Bold" ++msgstr "ЖОрМый" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:189 ++#: wp-includes/js/tinymce/wp-mce-help.php:200 ++#: wp-includes/js/tinymce/wp-mce-help.php:213 ++msgid "Italic" ++msgstr "КурсОв" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:190 ++#: wp-includes/js/tinymce/wp-mce-help.php:201 ++msgid "Underline" ++msgstr "ППЎчёркМутый" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:191 ++#: wp-includes/js/tinymce/wp-mce-help.php:217 ++msgid "Strikethrough" ++msgstr "ПеречеркМутый" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:192 ++msgid "Align left" ++msgstr "ПП левПЌу краю" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:193 ++msgid "Align center" ++msgstr "ПП цеМтру" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:194 ++msgid "Align right" ++msgstr "ПП правПЌу краю" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:195 ++msgid "Align full" ++msgstr "ПП шОрОМе" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:196 ++msgid "Unordered list" ++msgstr "МаркОрПваММый спОсПк" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:197 ++msgid "Ordered list" ++msgstr "НуЌерПваММый спОсПк" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:198 ++msgid "Outdent" ++msgstr "Убрать Птступ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:199 ++msgid "Indent" ++msgstr "Отступ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:200 ++#: wp-includes/js/tinymce/wp-mce-help.php:197 ++msgid "Undo" ++msgstr "ОтЌеМОть" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:201 ++#: wp-includes/js/tinymce/wp-mce-help.php:197 ++msgid "Redo" ++msgstr "ППвтПрОть" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:203 ++msgid "0| Extra width for the link popup in pixels" ++msgstr "0| ДПпПлМОтельМая шОрОМа всплывающегП ПкМа Ўля ссылкО в пОкселях" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:204 ++msgid "0| Extra height for the link popup in pixels" ++msgstr "0| ДПпПлМОтельМая высПта всплывающегП ПкМа Ўля ссылкО в пОкселях" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:205 ++msgid "Unlink" ++msgstr "Убрать ссылку" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:207 ++msgid "0| Extra width for the image popup in pixels" ++msgstr "0| ДПпПлМОтельМая шОрОМа всплывающегП ПкМа Ўля картОМкО в пОкселях" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:208 ++msgid "0| Extra height for the image popup in pixels" ++msgstr "0| ДПпПлМОтельМая высПта всплывающегП ПкМа Ўля картОМкО в пОкселях" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:209 ++msgid "Cleanup messy code" ++msgstr "ПрОвестО кПЎ в пПряЎПк" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:210 ++msgid "Edit HTML Source" ++msgstr "РеЎактОрПвать HTML" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:211 ++msgid "Subscript" ++msgstr "НОжМОй ОМЎекс" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:212 ++msgid "Superscript" ++msgstr "ВерхМОй ОМЎекс" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:213 ++msgid "Insert horizontal ruler" ++msgstr "ВставОть гПрОзПМтальМый разЎелОтель" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:214 ++msgid "Remove formatting" ++msgstr "Убрать фПрЌатОрПваМОе" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:215 ++msgid "Select text color" ++msgstr "Выбрать цвет текста" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:216 ++msgid "Select background color" ++msgstr "Выбрать цвет фПМа" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:217 ++msgid "Insert custom character" ++msgstr "ВставОть прПОзвПльМый сОЌвПл" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:218 ++msgid "Toggle guidelines/invisible elements" ++msgstr "ОрОеМтОры / МевОЎОЌые сОЌвПлы" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:219 ++#: wp-includes/js/tinymce/langs/wp-langs.php:246 ++msgid "Insert/edit anchor" ++msgstr "ВставОть/реЎактОрПвать якПрь" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:220 ++#: wp-includes/js/tinymce/wp-mce-help.php:196 ++msgid "Cut" ++msgstr "Вырезать" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:221 ++#: wp-includes/js/tinymce/wp-mce-help.php:195 ++msgid "Copy" ++msgstr "КПпОрПвать" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:222 ++#: wp-includes/js/tinymce/wp-mce-help.php:195 ++msgid "Paste" ++msgstr "ВставОть" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:223 ++msgid "Image properties" ++msgstr "СвПйства картОМкО" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:224 ++msgid "New document" ++msgstr "НПвый ЎПкуЌеМт" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:225 ++#: wp-includes/js/tinymce/langs/wp-langs.php:239 ++#: wp-includes/js/tinymce/langs/wp-langs.php:396 ++#: wp-includes/js/tinymce/wp-mce-help.php:222 ++msgid "Help" ++msgstr "ППЌПщь" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:228 ++msgid "Path" ++msgstr "Путь" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:229 ++msgid "Are you sure you want to clear all contents?" ++msgstr "Вы увереМы, чтП хПтОте ПчОстОть всё сПЎержОЌПе?" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:230 ++msgid "Jump to tool buttons - Alt+Q, Jump to editor - Alt-Z, Jump to element path - Alt-X" ++msgstr "ПерейтО к ОМструЌеМтаЌ — Alt+Q, перейтО к реЎактПру — Alt+Z, перейтО к путО элеЌеМта — Alt+X" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:232 ++msgid "0| Extra width for the colorpicker popup in pixels" ++msgstr "0| ДПпПлМОтельМая шОрОМа всплывающегП ПкМа Ўля выбПра цвета в пОкселях" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:233 ++msgid "0| Extra height for the colorpicker popup in pixels" ++msgstr "0| ДПпПлМОтельМая высПта всплывающегП ПкМа Ўля выбПра цвета в пОкселях" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:237 ++#: wp-includes/js/tinymce/wp-mce-help.php:228 ++msgid "About TinyMCE" ++msgstr "О TinyMCE" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:240 ++msgid "License" ++msgstr "ЛОцеМзОя" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:245 ++msgid "Loaded plugins" ++msgstr "ЗагружеММые плагОМы" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:247 ++msgid "Anchor name" ++msgstr "ИЌя якПря" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:248 ++msgid "HTML Source Editor" ++msgstr "РеЎактПр HTML" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:249 ++msgid "Word wrap" ++msgstr "ПереМПс пП слПваЌ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:250 ++msgid "Select a color" ++msgstr "Выбрать цвет" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:251 ++msgid "Picker" ++msgstr "ВыбПр цвета" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:252 ++msgid "Color picker" ++msgstr "ВыбПр цвета" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:253 ++msgid "Palette" ++msgstr "ПалОтра" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:254 ++msgid "Palette colors" ++msgstr "Њвета палОтры" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:255 ++msgid "Named" ++msgstr "ИЌеМПваММые" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:256 ++msgid "Named colors" ++msgstr "ИЌеМПваММые цвета" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:257 ++msgid "Color:" ++msgstr "Њвет:" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:258 ++msgid "Name:" ++msgstr "НазваМОе:" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:259 ++msgid "Select custom character" ++msgstr "ВыберОте прПОзвПльМый сОЌвПл" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:262 ++msgid "Image description" ++msgstr "ОпОсаМОе" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:263 ++msgid "Image list" ++msgstr "СпОсПк ОзПбражеМОй" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:264 ++msgid "Border" ++msgstr "РаЌка" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:265 ++#: wp-includes/js/tinymce/langs/wp-langs.php:294 ++msgid "Dimensions" ++msgstr "РазЌеры" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:266 ++msgid "Vertical space" ++msgstr "Отступ (V)" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:267 ++msgid "Horizontal space" ++msgstr "Отступ (H)" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:269 ++msgid "Baseline" ++msgstr "ПП базПвПй лОМОО" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:270 ++#: wp-includes/js/tinymce/langs/wp-langs.php:369 ++msgid "Top" ++msgstr "Сверху" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:271 ++msgid "Middle" ++msgstr "ППсереЎОМе" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:272 ++#: wp-includes/js/tinymce/langs/wp-langs.php:371 ++msgid "Bottom" ++msgstr "СМОзу" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:273 ++msgid "Text top" ++msgstr "Сверху текста" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:274 ++msgid "Text bottom" ++msgstr "СМОзу текста" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:280 ++msgid "Open link in the same window" ++msgstr "Открывать в текущеЌ ПкМе" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:281 ++msgid "Open link in a new window" ++msgstr "Открывать МПвПЌ ПкМе" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:283 ++msgid "The URL you entered seems to be an email address, do you want to add the required mailto: prefix?" ++msgstr "ВвеЎёММый ваЌО аЎрес пПхПж Ма e-mail, ЎПбавОть mailto: в МачалП?" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:284 ++msgid "The URL you entered seems to external link, do you want to add the required http:// prefix?" ++msgstr "ВвеЎёММый ваЌО аЎрес пПхПж Ма вМешМюю ссылку, ЎПбавОть http:// в МачалП?" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:285 ++msgid "Link list" ++msgstr "СпОсПк ссылПк" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:292 ++msgid "File/URL" ++msgstr "Ѐайл/URL" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:293 ++#: wp-includes/js/tinymce/wp-mce-help.php:218 ++#: wp-includes/js/tinymce/wp-mce-help.php:219 ++msgid "List" ++msgstr "СпОсПк" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:296 ++msgid "Constrain proportions" ++msgstr "СПхраМять прПпПрцОО" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:297 ++msgid "Type" ++msgstr "ТОп" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:298 ++msgid "Id" ++msgstr "Id" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:301 ++msgid "V-Space" ++msgstr "Отступ (V)" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:302 ++msgid "H-Space" ++msgstr "Отступ (H)" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:303 ++msgid "Auto play" ++msgstr "АвтПвПспрПОзвеЎеМОе" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:304 ++#: wp-includes/js/tinymce/langs/wp-langs.php:386 ++msgid "Loop" ++msgstr "ЗацОклОть" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:305 ++msgid "Show menu" ++msgstr "ОтПбражать ЌеМю" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:306 ++msgid "Quality" ++msgstr "КачествП" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:307 ++msgid "Scale" ++msgstr "Масштаб" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:308 ++msgid "Align" ++msgstr "РаспПлПжеМОе" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:309 ++msgid "SAlign" ++msgstr "SAlign" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:310 ++msgid "WMode" ++msgstr "WMode" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:311 ++msgid "Background" ++msgstr "ЀПМ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:312 ++msgid "Base" ++msgstr "БазПвый каталПг" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:313 ++msgid "Flashvars" ++msgstr "ПереЌеММые Flashvars" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:314 ++msgid "SWLiveConnect" ++msgstr "SWLiveConnect" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:315 ++msgid "AutoHREF" ++msgstr "AutoHREF" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:316 ++msgid "Cache" ++msgstr "КэшОрПваМОе" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:317 ++msgid "Hidden" ++msgstr "Скрыт" ++ ++# C:\www\xampp\htdocs\wordpress\wp-trunk/wp-admin/import/greymatter.php:312 ++#: wp-includes/js/tinymce/langs/wp-langs.php:318 ++msgid "Controller" ++msgstr "КПМтрПллер" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:319 ++msgid "Kiosk mode" ++msgstr "РежОЌ кОПска" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:320 ++msgid "Play every frame" ++msgstr "Играть кажЎый каЎр" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:321 ++msgid "Target cache" ++msgstr "КэшОрПваМОе целО" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:322 ++msgid "No correction" ++msgstr "Без кПррекцОО" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:323 ++msgid "Enable JavaScript" ++msgstr "РазрешОть JavaScript" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:324 ++#: wp-includes/js/tinymce/langs/wp-langs.php:382 ++msgid "Start time" ++msgstr "ВреЌя старта" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:325 ++msgid "End time" ++msgstr "ВреЌя завершеМОя" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:326 ++msgid "Href" ++msgstr "Ссылка" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:327 ++msgid "Choke speed" ++msgstr "УЌеМьшОть скПрПсть" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:329 ++msgid "Volume" ++msgstr "ГрПЌкПсть" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:330 ++#: wp-includes/js/tinymce/langs/wp-langs.php:385 ++msgid "Auto start" ++msgstr "АвтПстарт" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:331 ++msgid "Enabled" ++msgstr "ДПступеМ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:332 ++msgid "Fullscreen" ++msgstr "На весь экраМ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:333 ++msgid "Invoke URLs" ++msgstr "Открывать ссылкО (URL)" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:334 ++msgid "Mute" ++msgstr "Без звука" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:335 ++msgid "Stretch to fit" ++msgstr "РастяМуть ЎП разЌерПв ПкМа" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:336 ++msgid "Windowless video" ++msgstr "ВОЎеП без ПкМа" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:337 ++msgid "Balance" ++msgstr "БалаМс" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:338 ++msgid "Base URL" ++msgstr "БазПвый URL" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:339 ++msgid "Captioning id" ++msgstr "Id тОтрПваМОя" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:340 ++msgid "Current marker" ++msgstr "ТекущОй Ќаркер" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:341 ++msgid "Current position" ++msgstr "Текущая пПзОцОя" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:342 ++msgid "Default frame" ++msgstr "КаЎр пП уЌПлчаМОю" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:343 ++msgid "Play count" ++msgstr "ЧОслП пПказПв" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:344 ++msgid "Rate" ++msgstr "ЧастПта" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:345 ++msgid "UI Mode" ++msgstr "РежОЌ ОМтерфейса" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:346 ++msgid "Flash options" ++msgstr "НастрПйкО Flash" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:347 ++msgid "Quicktime options" ++msgstr "НастрПйкО Quicktime" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:348 ++msgid "Windows media player options" ++msgstr "НастрПйкО Windows media player" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:349 ++msgid "Real media player options" ++msgstr "НастрПйкО прПОгрывателя Real media" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:350 ++msgid "Shockwave options" ++msgstr "НастрПйкО Shockwave" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:351 ++msgid "Auto goto URL" ++msgstr "АвтПперехПЎ к URL" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:353 ++msgid "Image status" ++msgstr "Статус ОзПбражеМОя" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:354 ++msgid "Maintain aspect" ++msgstr "СПхраМОть прПпПрцОО" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:355 ++msgid "No java" ++msgstr "Без java" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:356 ++msgid "Prefetch" ++msgstr "УпрежЎающее кэшОрПваМОе" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:357 ++msgid "Shuffle" ++msgstr "ПрПОзвПльМый пПряЎПк" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:358 ++msgid "Console" ++msgstr "КПМсПль" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:359 ++msgid "Num loops" ++msgstr "ЧОслП пПвтПрПв" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:360 ++msgid "Controls" ++msgstr "УправлеМОе" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:361 ++msgid "Script callbacks" ++msgstr "ЀуМкцОО скрОптПв" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:362 ++msgid "Stretch style" ++msgstr "СтОль растяжеМОя" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:363 ++msgid "Stretch H-Align" ++msgstr "ВыравМОваМОе пП гПрОзПМталО" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:364 ++msgid "Stretch V-Align" ++msgstr "ВыравМОваМОе пП вертОкалО" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:365 ++msgid "Sound" ++msgstr "Звук" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:366 ++msgid "Progress" ++msgstr "ИМЎОкатПр" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:367 ++msgid "QT Src" ++msgstr "QT Src" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:368 ++msgid "Streamed rtsp resources should be added to the QT Src field under the advanced tab." ++msgstr "ППтПкПвые ресурсы rtsp слеЎует ЎПбавлять в пПле QT Src пПЎ вклаЎкПй «Ð”ÐŸÐ¿ÐŸÐ»ÐœÐžÑ‚ÐµÐ»ÑŒÐœÐŸ»." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:374 ++msgid "Top left" ++msgstr "Вверху слева" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:375 ++msgid "Top right" ++msgstr "Вверху справа" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:376 ++msgid "Bottom left" ++msgstr "ВМОзу слева" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:377 ++msgid "Bottom right" ++msgstr "ВМОзу справа" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:378 ++msgid "Flash video options" ++msgstr "НастрПйкО Flash-вОЎеП" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:379 ++msgid "Scale mode" ++msgstr "РежОЌ ЌасштабОрПваМОя" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:380 ++msgid "Buffer" ++msgstr "Буфер" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:381 ++msgid "Start image" ++msgstr "НачальМПе ОзПбражеМОе" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:383 ++msgid "Default volume" ++msgstr "ГрПЌкПсть пП уЌПлчаМОю" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:384 ++msgid "Hidden GUI" ++msgstr "Скрытый GUI" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:387 ++msgid "Show scale modes" ++msgstr "ППказать режОЌы ЌасштабОрПваМОя" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:388 ++msgid "Smooth video" ++msgstr "СглажОвать вОЎеП" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:389 ++msgid "JS Callback" ++msgstr "ЀуМкцОя JS" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:393 ++msgid "Show/Hide Kitchen Sink" ++msgstr "ППказать/скрыть ЎПпПлМОтельМую паМель" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:394 ++msgid "Insert More tag" ++msgstr "ВставОть тег 'Далее'" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:395 ++msgid "Insert Page break" ++msgstr "ВставОть разрыв страМОцы" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:397 ++msgid "More..." ++msgstr "Далее…" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:398 ++msgid "Next page..." ++msgstr "СлеЎующая страМОца…" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:8 ++msgid "Rich Editor Help" ++msgstr "ППЌПщь пП вОзуальМПЌу реЎактПру" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:162 ++msgid "Basics of Rich Editing" ++msgstr "ОсМПвы вОзуальМПгП реЎактПра" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:162 ++msgid "Basics" ++msgstr "ОсМПвы" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:163 ++msgid "Advanced use of the Rich Editor" ++msgstr "ИспПльзПваМОе вОзуальМПгП реЎактПра" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:164 ++msgid "Hotkeys" ++msgstr "КлавОшО" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:165 ++msgid "About the software" ++msgstr "О прПграЌЌе" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:171 ++msgid "Rich Editing Basics" ++msgstr "ОсМПвы вОзуальМПгП реЎактПра" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:172 ++msgid "Rich editing, also called WYSIWYG for What You See Is What You Get, means your text is formatted as you type. The rich editor creates HTML code behind the scenes while you concentrate on writing. Font styles, links and images all appear approximately as they will on the internet." ++msgstr "ВОзуальМПе реЎактОрПваМОе, так МазываеЌПе WYSIWYG (What You See Is What You Get: чтП ты вОЎОшь — тП О пПлучаешь), ПзМачает, чтП текст фПрЌатОруется пП Ќере МабПра. ВОзуальМый реЎактПр МезаЌетМП сПзЎает HTML-кПЎ, в тП вреЌя как вы сПсреЎПтПчеМы Ма тексте. СтОлО шрОфта, ссылкО О картОМкО ПтПбражаются сразу пПсле вставкО." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:173 ++msgid "WordPress includes a rich HTML editor that works well in all major web browsers used today. However editing HTML is not the same as typing text. Each web page has two major components: the structure, which is the actual HTML code and is produced by the editor as you type, and the display, that is applied to it by the currently selected WordPress theme and is defined in style.css. WordPress is producing valid XHTML 1.0 which means that inserting multiple line breaks (BR tags) after a paragraph would not produce white space on the web page. The BR tags will be removed as invalid by the internal HTML correcting functions." ++msgstr "WordPress включает в себя вОзуальМый реЎактПр, кПтПрый рабПтает вП всех ПсМПвМых браузерах. ОЎМакП реЎактОрПваМОе HTML — Ме тП же саЌПе, чтП МабПр текста. КажЎая страМОца ОЌеет Ўве ПсМПвМые сПставляющОе: структуру, кПтПрая преЎставляет сПбПй HTML-кПЎ О сПзЎается реЎактПрПЌ пП Ќере ввПЎа, О прОЌеМяеЌПе к этПй структуре ПтПбражеМОе, кПтПрПе ПпреЎеляется текущей выбраММПй теЌПй WordPress О файлПЌ style.css. WordPress сПзЎаёт кПрректМый XHTML 1.0, О этП зМачОт, чтП вставка пПсле абзаца ЌМПжествеММых разЎелОтелей стрПк (BR) Ме сПзЎаёт прПбелПв Ма веб-страМОце. ТегО BR буЎут уЎалеМы встрПеММыЌО фуМкцОяЌО кПрректОрПвкО HTML." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:174 ++msgid "While using the editor, most basic keyboard shortcuts work like in any other text editor. For example: Shift+Enter inserts line break, Ctrl+C = copy, Ctrl+X = cut, Ctrl+Z = undo, Ctrl+Y = redo, Ctrl+A = select all, etc. (on Mac use the Command key instead of Ctrl). See the Hotkeys tab for all available keyboard shortcuts." ++msgstr "В реЎактПре ПсМПвМые сПчетаМОя клавОш рабПтают так же, как О в ЎругОх текстПвых реЎактПрах. НапрОЌер, Shift+Enter вставляет разрыв стрПкО, Ctrl+C = кПпОрПвать, Ctrl+X = вырезать, Ctrl+Z = ПтЌеМОть, Ctrl+Y = пПвтПрОть, Ctrl+A = выЎелОть всё, О т.ÐŽ. (Ма кПЌпьютерах Mac вЌестП Ctrl ОспПльзуйте клавОшу Apple). В разЎеле «ÐšÐ»Ð°Ð²ÐžÑˆÐž» ЌПжМП пПсЌПтреть все ЎПступМые сПчетаМОя." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:175 ++msgid "If you do not like the way the rich editor works, you may turn it off from Your Profile submenu, under Users in the admin menu." ++msgstr "ЕслО рабПта вОзуальМПгП реЎактПра вас Ме устрПОт, егП ЌПжМП ПтключОть в персПМальМых МастрПйках вашегП прПфОля." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:179 ++msgid "Advanced Rich Editing" ++msgstr "ВОзуальМПе реЎактОрПваМОе" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:180 ++msgid "Images and Attachments" ++msgstr "КартОМкО О файлы" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-includes/js/tinymce/wp-mce-help.php:142 ++#: wp-includes/js/tinymce/wp-mce-help.php:181 ++msgid "There is a button in the editor toolbar for inserting images that are already hosted somewhere on the internet. If you have a URL for an image, click this button and enter the URL in the box which appears." ++msgstr "На паМелО реЎактПра есть кМПпка Ўля вставкО картОМкО, кПтПрая уже разЌещеМа гЎе-тП в ОМтерМете. ЕслО вы зМаете аЎрес картОМкО, МажЌОте Ма эту кМПпку О ввеЎОте аЎрес в сППтветствующеЌ пПле." ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-includes/js/tinymce/wp-mce-help.php:143 ++#: wp-includes/js/tinymce/wp-mce-help.php:182 ++msgid "If you need to upload an image or another media file from your computer, you can use the Media Library buttons above the editor. The media library will attempt to create a thumbnail-sized copy from each uploaded image. To insert your image into the post, first click on the thumbnail to reveal a menu of options. When you have selected the options you like, click \"Send to Editor\" and your image or file will appear in the post you are editing. If you are inserting a movie, there are additional options in the \"Media\" dialog that can be opened from the second toolbar row." ++msgstr "ЕслО вы хПтОте загрузОть картОМку ОлО звукПвПй файл с кПЌпьютера, ЌПжМП ОспПльзПвать кМПпкО бОблОПтекО ЌеЎОафайлПв, распПлПжеММые чуть выше реЎактПра. ПрО загрузке ОзПбражеМОя Ќы пПпрПбуеЌ сЎелать егП ЌОМОатюру. ЧтПбы вставОть загружеММую картОМку в запОсь, щелкМОте Ма ЌОМОатюре Ўля прПсЌПтра спПсПбПв преЎставлеМОя. Выбрав пПЎхПЎящОй варОаМт, МажЌОте «Ð’ реЎактПр», О ваша картОМка ОлО файл пПявОтся в текущей запОсО. ЕслО вы вставляете вОЎеПрПлОк, ЎПпПлМОтельМые МастрПйкО ЎОалПга «ÐœÐµÐŽÐžÐ°» ЌПжМП Пткрыть Оз втПрПй стрПкО паМелО ОМструЌеМтПв." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:183 ++msgid "HTML in the Rich Editor" ++msgstr "HTML в вОзуальМПЌ реЎактПре" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-includes/js/tinymce/wp-mce-help.php:145 ++#: wp-includes/js/tinymce/wp-mce-help.php:184 ++msgid "Any HTML entered directly into the rich editor will show up as text when the post is viewed. What you see is what you get. When you want to include HTML elements that cannot be generated with the toolbar buttons, you must enter it by hand in the HTML editor. Examples are tables and <code>. To do this, click the HTML tab and edit the code, then switch back to Visual mode. If the code is valid and understood by the editor, you should see it rendered immediately." ++msgstr "ЛюбПй HTML-кПЎ, ввеЎеММый пряЌП в вОзуальМПЌ реЎактПре, прО прПсЌПтре запОсО буЎет пПказаМ как текст. ЧтП вОЎОшь — тП О пПлучаешь. ЕслО вы хПтОте включОть в запОсь прПОзвПльМый HTML-кПЎ (МапрОЌер, таблОцы ОлО <code>) — ваЌ прОЎётся сЎелать этП вручМую. Для этПгП переключОтесь Ма вклаЎку HTML О вМесОте ОзЌеМеМОя. ЕслО кПЎ кПрректеМ О пПМятеМ вОзуальМПЌу реЎактПру, вы увОЎОте егП сразу же, переключОвшОсь ПбратМП в вОзуальМый режОЌ." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:185 ++msgid "Pasting in the Rich Editor" ++msgstr "Вставка текста в вОзуальМый реЎактПр" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:186 ++msgid "When pasting content from another web page the results can be inconsistent and depend on your browser and on the web page you are pasting from. The editor tries to correct any invalid HTML code that was pasted, but for best results try using the HTML tab or one of the paste buttons that are on the second row. Alternatively try pasting paragraph by paragraph. In most browsers to select one paragraph at a time, triple-click on it." ++msgstr "ПрО кПпОрПваМОО сПЎержОЌПгП с ЎругПй веб-страМОцы результат завОсОт Пт вашегП браузера О кПпОруеЌПй страМОцы О ЌПжет Пказаться МепПЎхПЎящОЌ. РеЎактПр пПпытается ОсправОть весь МекПрректМый HTML-кПЎ, МП Ўля ПбеспечеМОя МаОлучшОх результатПв пПпрПбуйте ОспПльзПвать вклаЎку HTML ОлО кМПпкО спецОальМПй вставкО вП втПрПЌ ряЎу. ЛОбП пПпрПбуйте кПпОрПвать текст пП ПЎМПЌу параграфу. В бПльшОМстве браузерПв, чтПбы выЎелОть весь параграф, МужМП сЎелать пП МеЌу трПйМПй щелчПк." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:187 ++msgid "Pasting content from another application, like Word or Excel, is best done with the Paste from Word button on the second row, or in HTML mode." ++msgstr "Вставлять сПЎержОЌПе Оз ЎругОх прОлПжеМОй, такОх как Word ОлО Excel, лучше всегП с пПЌПщью кМПпкО «Ð’ставОть Оз Word» вП втПрПЌ ряЎу, лОбП в режОЌе HTML." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:191 ++msgid "Writing at Full Speed" ++msgstr "ПОшОте в пПлМую сОлу" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:192 ++msgid "Rather than reaching for your mouse to click on the toolbar, use these access keys. Windows and Linux use Ctrl + letter. Macintosh uses Command + letter." ++msgstr "ВЌестП ЌышкО вы ЌПжете ОспПльзПвать гПрячОе клавОшО. В Windows О Linux ОспПльзуется Ctrl + буква. На Macintosh — Command + буква." ++ ++# C:\www\xampp\htdocs\wordpress\wp-trunk/wp-admin/import/greymatter.php:312 ++#: wp-includes/js/tinymce/wp-mce-help.php:194 ++#: wp-includes/js/tinymce/wp-mce-help.php:210 ++msgid "Letter" ++msgstr "Буква" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:196 ++msgid "Select all" ++msgstr "ВыЎелОть все" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:201 ++msgid "Header 1" ++msgstr "ЗагПлПвПк 1" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:202 ++msgid "Header 2" ++msgstr "ЗагПлПвПк 2" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:202 ++msgid "Header 3" ++msgstr "ЗагПлПвПк 3" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:203 ++msgid "Header 4" ++msgstr "ЗагПлПвПк 4" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:203 ++msgid "Header 5" ++msgstr "ЗагПлПвПк 5" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:204 ++msgid "Header 6" ++msgstr "ЗагПлПвПк 6" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:208 ++msgid "The following shortcuts use different access keys: Alt + Shift + letter." ++msgstr "В слеЎующОх кПЌбОМацОях ОспПльзуются ЎругОе служебМые клавОшО: Alt + Shift + буква." ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-includes/js/tinymce/wp-mce-help.php:153 ++#: wp-includes/js/tinymce/wp-mce-help.php:215 ++msgid "Check Spelling" ++msgstr "ПрПверка ПрфПграфОО" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:215 ++msgid "Align Left" ++msgstr "ПП левПЌу краю" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-includes/js/tinymce/wp-mce-help.php:154 ++#: wp-includes/js/tinymce/wp-mce-help.php:216 ++msgid "Justify Text" ++msgstr "ПП шОрОМе" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:216 ++msgid "Align Center" ++msgstr "ВырПвМять пП цеМтру" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:217 ++msgid "Align Right" ++msgstr "ПП правПЌу краю" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:218 ++msgid "Insert link" ++msgstr "ВставОть ссылку" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:219 ++msgid "Remove link" ++msgstr "УЎалОть ссылку" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:220 ++msgid "Quote" ++msgstr "ЊОтата" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:220 ++msgid "Insert Image" ++msgstr "ВставОть картОМку" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:221 ++msgid "Full Screen" ++msgstr "На весь экраМ" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:221 ++msgid "Insert More Tag" ++msgstr "ВставОть тег «Ð”Ð°Ð»ÐµÐµ»" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:222 ++msgid "Insert Page Break tag" ++msgstr "ВставОть тег разрыва страМОцы" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:223 ++msgid "Switch to HTML mode" ++msgstr "ПерейтО в режОЌ HTML" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:230 ++msgid "Version:" ++msgstr "ВерсОя:" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:231 ++#, php-format ++msgid "TinyMCE is a platform independent web based Javascript HTML WYSIWYG editor control released as Open Source under %sLGPL\tby Moxiecode Systems AB. It has the ability to convert HTML TEXTAREA fields or other HTML elements to editor instances." ++msgstr "TinyMCE — этП крПссплатфПрЌеММый вОзуальМый реЎактПр, МапОсаММый Ма JavaScript О распрПстраМяеЌый пП лОцеМзОО %sLGPL\t кПЌпаМОей Moxiecode Systems AB. ОМ пПзвПляет перевестО все пПля textarea ОлО ЎругОе элеЌеМты HTML в режОЌ вОзуальМПгП реЎактОрПваМОя." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:231 ++msgid "GNU Library General Public Licence" ++msgstr "GNU Library General Public Licence" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:232 ++msgid "Copyright © 2003-2007, Moxiecode Systems AB, All rights reserved." ++msgstr "Copyright © 2003—2007, Moxiecode Systems AB. Все права защОщеМы." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:233 ++msgid "For more information about this software visit the TinyMCE website." ++msgstr "Для пПлучеМОя ЎПпПлМОтельМПй ОМфПрЌацОО пПсетОте сайт TinyMCE." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:236 ++msgid "Got Moxie?" ++msgstr "Got Moxie?" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:237 ++msgid "Hosted By Sourceforge" ++msgstr "ХПстОМг: SourceForge" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:238 ++msgid "Also on freshmeat" ++msgstr "А также freshmeat" ++ ++#: wp-includes/link-template.php:317 ++msgid "Comments Feed" ++msgstr "ЛеМта кПЌЌеМтарОев" ++ ++#: wp-includes/link-template.php:593 ++msgid "Previous Post" ++msgstr "ПреЎыЎущая запОсь" ++ ++#: wp-includes/link-template.php:593 ++msgid "Next Post" ++msgstr "СлеЎующая запОсь" ++ ++#: wp-includes/locale.php:120 ++msgid "S_Sunday_initial" ++msgstr "Вс" ++ ++#: wp-includes/locale.php:121 ++msgid "M_Monday_initial" ++msgstr "ПМ" ++ ++#: wp-includes/locale.php:122 ++msgid "T_Tuesday_initial" ++msgstr "Вт" ++ ++#: wp-includes/locale.php:123 ++msgid "W_Wednesday_initial" ++msgstr "Ср" ++ ++#: wp-includes/locale.php:124 ++msgid "T_Thursday_initial" ++msgstr "Чт" ++ ++#: wp-includes/locale.php:125 ++msgid "F_Friday_initial" ++msgstr "Пт" ++ ++#: wp-includes/locale.php:126 ++msgid "S_Saturday_initial" ++msgstr "Сб" ++ ++#: wp-includes/locale.php:175 ++msgid "am" ++msgstr "Ўп" ++ ++#: wp-includes/locale.php:176 ++msgid "pm" ++msgstr "пп" ++ ++#: wp-includes/locale.php:177 ++msgid "AM" ++msgstr "ДП" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-includes/locale.php:88 ++#: wp-includes/locale.php:178 ++msgid "PM" ++msgstr "ПП" ++ ++#: wp-includes/locale.php:183 ++msgid "number_format_decimals|$decimals argument for http://php.net/number_format, default is 0" ++msgstr "number_format_decimals|аргуЌеМт $decimals фуМкцОО http://php.net/number_format, зМачеМОе пП уЌПлчаМОю: 0" ++ ++#: wp-includes/locale.php:186 ++msgid "number_format_decimal_point|$dec_point argument for http://php.net/number_format, default is ." ++msgstr "number_format_decimal_point|аргуЌеМт $dec_point фуМкцОО http://php.net/number_format, зМачеМОе пП уЌПлчаМОю: ." ++ ++#: wp-includes/locale.php:189 ++msgid "number_format_thousands_sep|$thousands_sep argument for http://php.net/number_format, default is ," ++msgstr "number_format_thousands_sep|аргуЌеМт $thousands_sep фуМкцОО http://php.net/number_format, зМачеМОе пП уЌПлчаМОю: ," ++ ++#: wp-includes/media.php:217 ++#: wp-includes/media.php:221 ++#: wp-includes/media.php:227 ++msgid "Resize path invalid" ++msgstr "НеверМый путь Ўля сПзЎаМОя ЌОМОатюры" ++ ++#: wp-includes/pluggable.php:416 ++#: wp-includes/user.php:39 ++msgid "ERROR: The username field is empty." ++msgstr "ОКИБКА: Вы Ме ввелО лПгОМ." ++ ++#: wp-includes/pluggable.php:419 ++#: wp-includes/user.php:41 ++msgid "ERROR: The password field is empty." ++msgstr "ОшОбка: Вы Ме ввелО парПль." ++ ++#: wp-includes/pluggable.php:425 ++msgid "ERROR: Invalid username." ++msgstr "ОшОбка: НеверМый лПгОМ." ++ ++#: wp-includes/pluggable.php:436 ++msgid "ERROR: Incorrect password." ++msgstr "ОшОбка: НеверМый парПль." ++ ++#: wp-includes/pluggable.php:784 ++#, php-format ++msgid "New comment on your post #%1$s \"%2$s\"" ++msgstr "НПвый кПЌЌеМтарОй к запОсО #%1$s \"%2$s\"" ++ ++#: wp-includes/pluggable.php:785 ++#: wp-includes/pluggable.php:880 ++#, php-format ++msgid "Author : %1$s (IP: %2$s , %3$s)" ++msgstr "АвтПр : %1$s (IP: %2$s , %3$s)" ++ ++#: wp-includes/pluggable.php:786 ++#: wp-includes/pluggable.php:881 ++#, php-format ++msgid "E-mail : %s" ++msgstr "E-mail: %s" ++ ++#: wp-includes/pluggable.php:787 ++#: wp-includes/pluggable.php:795 ++#: wp-includes/pluggable.php:802 ++#: wp-includes/pluggable.php:867 ++#: wp-includes/pluggable.php:874 ++#: wp-includes/pluggable.php:882 ++#, php-format ++msgid "URL : %s" ++msgstr "URL : %s" ++ ++#: wp-includes/pluggable.php:788 ++#: wp-includes/pluggable.php:883 ++#, php-format ++msgid "Whois : http://ws.arin.net/cgi-bin/whois.pl?queryinput=%s" ++msgstr "Whois : http://ws.arin.net/cgi-bin/whois.pl?queryinput=%s" ++ ++#: wp-includes/pluggable.php:789 ++#: wp-includes/pluggable.php:884 ++msgid "Comment: " ++msgstr "КПЌЌеМтарОй:" ++ ++#: wp-includes/pluggable.php:790 ++msgid "You can see all comments on this post here: " ++msgstr "ЗЎесь вы ЌПжете пПсЌПтреть все кПЌЌеМтарОО к ЎаММПй запОсО:" ++ ++#: wp-includes/pluggable.php:791 ++#, php-format ++msgid "[%1$s] Comment: \"%2$s\"" ++msgstr "[%1$s] КПЌЌеМтарОй: \"%2$s\"" ++ ++#: wp-includes/pluggable.php:793 ++#, php-format ++msgid "New trackback on your post #%1$s \"%2$s\"" ++msgstr "НПвая ПбратМая ссылка Ма вашу запОсь #%1$s \"%2$s\"" ++ ++#: wp-includes/pluggable.php:794 ++#: wp-includes/pluggable.php:801 ++#, php-format ++msgid "Website: %1$s (IP: %2$s , %3$s)" ++msgstr "Сайт: %1$s (IP: %2$s , %3$s)" ++ ++#: wp-includes/pluggable.php:796 ++#: wp-includes/pluggable.php:803 ++msgid "Excerpt: " ++msgstr "ЊОтата: " ++ ++#: wp-includes/pluggable.php:797 ++msgid "You can see all trackbacks on this post here: " ++msgstr "ЗЎесь вы ЌПжете пПсЌПтреть все ПбратМые ссылкО Ма запОсь: " ++ ++#: wp-includes/pluggable.php:798 ++#, php-format ++msgid "[%1$s] Trackback: \"%2$s\"" ++msgstr "[%1$s] ОбратМая ссылка: \"%2$s\"" ++ ++#: wp-includes/pluggable.php:800 ++#, php-format ++msgid "New pingback on your post #%1$s \"%2$s\"" ++msgstr "НПвПе увеЎПЌлеМОе к вашей запОсО #%1$s \"%2$s\"" ++ ++#: wp-includes/pluggable.php:804 ++msgid "You can see all pingbacks on this post here: " ++msgstr "ЗЎесь вы ЌПжете пПсЌПтреть все увеЎПЌлеМОя к запОсО: " ++ ++#: wp-includes/pluggable.php:805 ++#, php-format ++msgid "[%1$s] Pingback: \"%2$s\"" ++msgstr "[%1$s] УвеЎПЌлеМОе: \"%2$s\"" ++ ++#: wp-includes/pluggable.php:808 ++#: wp-includes/pluggable.php:889 ++#, php-format ++msgid "Delete it: %s" ++msgstr "УЎалОть: %s" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-includes/pluggable.php:432 ++#: wp-includes/pluggable.php:809 ++#: wp-includes/pluggable.php:890 ++#, php-format ++msgid "Spam it: %s" ++msgstr "СпаЌ: %s" ++ ++#: wp-includes/pluggable.php:864 ++#, php-format ++msgid "A new trackback on the post #%1$s \"%2$s\" is waiting for your approval" ++msgstr "НПвая ПбратМая ссылка к запОсО #%1$s \"%2$s\" ПжОЎает ПЎПбреМОя" ++ ++#: wp-includes/pluggable.php:866 ++#: wp-includes/pluggable.php:873 ++#, php-format ++msgid "Website : %1$s (IP: %2$s , %3$s)" ++msgstr "Сайт: %1$s (IP: %2$s , %3$s)" ++ ++#: wp-includes/pluggable.php:868 ++msgid "Trackback excerpt: " ++msgstr "НачалП ПбратМПй ссылкО: " ++ ++#: wp-includes/pluggable.php:871 ++#, php-format ++msgid "A new pingback on the post #%1$s \"%2$s\" is waiting for your approval" ++msgstr "НПвПе увеЎПЌлеМОе к запОсО #%1$s \"%2$s\" ПжОЎает ПЎПбреМОя" ++ ++#: wp-includes/pluggable.php:875 ++msgid "Pingback excerpt: " ++msgstr "НачалП увеЎПЌлеМОя:" ++ ++#: wp-includes/pluggable.php:878 ++#, php-format ++msgid "A new comment on the post #%1$s \"%2$s\" is waiting for your approval" ++msgstr "НПвый кПЌЌеМтарОй к запОсО #%1$s \"%2$s\" ПжОЎает ПЎПбреМОя" ++ ++#: wp-includes/pluggable.php:888 ++#, php-format ++msgid "Approve it: %s" ++msgstr "ОЎПбрОть: %s" ++ ++#: wp-includes/pluggable.php:893 ++#, php-format ++msgid "Currently %s are waiting for approval. Please visit the moderation panel:" ++msgstr "В МастПящее вреЌя МужМП прПверОть %s. ППжалуйста, пПсетОте паМель ЌПЎерОрПваМОя:" ++ ++#: wp-includes/pluggable.php:896 ++#, php-format ++msgid "[%1$s] Please moderate: \"%2$s\"" ++msgstr "[%1$s] ПрПверьте, пПжалуйста: \"%2$s\"" ++ ++#: wp-includes/pluggable.php:923 ++#, php-format ++msgid "New user registration on your blog %s:" ++msgstr "НПвый пПльзПватель зарегОстрОрПвался Ма вашеЌ блПге %s:" ++ ++#: wp-includes/pluggable.php:924 ++#: wp-includes/pluggable.php:932 ++#: wp-login.php:103 ++#: wp-login.php:130 ++#, php-format ++msgid "Username: %s" ++msgstr "ЛПгОМ: %s" ++ ++#: wp-includes/pluggable.php:925 ++#, php-format ++msgid "E-mail: %s" ++msgstr "E-mail: %s" ++ ++#: wp-includes/pluggable.php:927 ++#, php-format ++msgid "[%s] New User Registration" ++msgstr "[%s] РегОстрацОя МПвПгП пПльзПвателя" ++ ++#: wp-includes/pluggable.php:933 ++#: wp-login.php:131 ++#, php-format ++msgid "Password: %s" ++msgstr "ПарПль: %s" ++ ++#: wp-includes/pluggable.php:936 ++#, php-format ++msgid "[%s] Your username and password" ++msgstr "[%s] Ваш лПгОМ О парПль" ++ ++#: wp-includes/post-template.php:60 ++#, php-format ++msgid "Protected: %s" ++msgstr "ЗащОщеМП: %s" ++ ++#: wp-includes/post-template.php:62 ++#, php-format ++msgid "Private: %s" ++msgstr "ЛОчМПе: %s" ++ ++#: wp-includes/post-template.php:147 ++msgid "There is no excerpt because this is a protected post." ++msgstr "ЊОтаты Мет, т.к. эта запОсь защОщеМа." ++ ++#: wp-includes/post-template.php:163 ++msgid "Next page" ++msgstr "СлеЎующая страМОца" ++ ++#: wp-includes/post-template.php:164 ++msgid "Previous page" ++msgstr "ПреЎыЎущая страМОца" ++ ++#: wp-includes/post-template.php:379 ++#: wp-includes/post-template.php:400 ++msgid "Missing Attachment" ++msgstr "Ѐайл Ме МайЎеМ" ++ ++#: wp-includes/post-template.php:526 ++msgid "This post is password protected. To view it please enter your password below:" ++msgstr "Эта запОсь защОщеМа парПлеЌ. Для ее прПсЌПтра ввеЎОте, пПжалуйста, парПль:" ++ ++#: wp-includes/rss.php:856 ++msgid "An error has occurred, which probably means the feed is down. Try again later." ++msgstr "ПрПОзПшла ПшОбка; вПзЌПжМП, леМта МеЎПступМа. ППвтПрОте пПпытку пПзже." ++ ++#: wp-includes/script-loader.php:19 ++msgid "(Quick Links)" ++msgstr "(Быстрый ЎПступ)" ++ ++#: wp-includes/script-loader.php:20 ++msgid "Enter a word to look up:" ++msgstr "ВвеЎОте слПвП Ўля пПОска:" ++ ++#: wp-includes/script-loader.php:21 ++msgid "Dictionary lookup" ++msgstr "ППОск пП слПварю" ++ ++#: wp-includes/script-loader.php:22 ++msgid "lookup" ++msgstr "пПОск" ++ ++#: wp-includes/script-loader.php:23 ++msgid "Close all open tags" ++msgstr "Закрыть все Пткрытые тегО" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/dbx-admin-key-js.php:36 ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/dbx-admin-key-js.php:61 ++#: wp-includes/script-loader.php:24 ++msgid "close tags" ++msgstr "закрыть тегО" ++ ++#: wp-includes/script-loader.php:25 ++msgid "Enter the URL" ++msgstr "ВвеЎОте аЎрес (URL)" ++ ++#: wp-includes/script-loader.php:26 ++msgid "Enter the URL of the image" ++msgstr "ВвеЎОте аЎрес (URL) картОМкО" ++ ++#: wp-includes/script-loader.php:27 ++msgid "Enter a description of the image" ++msgstr "ВвеЎОте ПпОсаМОе ОзПбражеМОя" ++ ++#: wp-includes/script-loader.php:46 ++#: wp-includes/script-loader.php:55 ++msgid "You do not have permission to do that." ++msgstr "У вас МеЎПстатПчМП прав, чтПбы сЎелать этП." ++ ++#: wp-includes/script-loader.php:47 ++msgid "An unidentified error has occurred." ++msgstr "ПрПОзПшла МеПпреЎелёММая ПшОбка." ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-includes/js/wp-ajax-js.php:60 ++#: wp-includes/script-loader.php:56 ++msgid "Something strange happened. Try refreshing the page." ++msgstr "ПрПОзПшлП чтП-тП страММПе. ППпрПбуйте ПбМПвОть страМОцу." ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-includes/js/wp-ajax-js.php:84 ++#: wp-includes/script-loader.php:57 ++msgid "Slow down, I'm still sending your data!" ++msgstr "ППтОше, я пытаюсь ПтправОть вашО ЎаММые!" ++ ++#: wp-includes/script-loader.php:93 ++msgid "You have attempted to queue too many files." ++msgstr "Вы пПставОлО в ПчереЎь слОшкПЌ ЌМПгП файлПв." ++ ++#: wp-includes/script-loader.php:94 ++#, php-format ++msgid "This file is too big. Your php.ini upload_max_filesize is %s." ++msgstr "Ѐайл слОшкПЌ велОк. ПараЌетр upload_max_filesize в php.ini равеМ %s." ++ ++#: wp-includes/script-loader.php:95 ++msgid "This file is empty. Please try another." ++msgstr "Ѐайл пуст. ППжалуйста, выберОте ЎругПй." ++ ++#: wp-includes/script-loader.php:96 ++msgid "This file type is not allowed. Please try another." ++msgstr "Ѐайл Ме прОМаЎлежОт к разрешёММыЌ тОпаЌ. ППжалуйста, выберОте ЎругПй." ++ ++#: wp-includes/script-loader.php:97 ++msgid "An error occurred in the upload. Please try again later." ++msgstr "ВП вреЌя загрузкО прПОзПшла ПшОбка. ППжалуйста, пПвтПрОте пПпытку пПзже." ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-content/plugins/akismet/akismet.php:102 ++#: wp-includes/script-loader.php:98 ++msgid "There was a configuration error. Please contact the server administrator." ++msgstr "ОшОбка кПМфОгурацОО. ППжалуйста, свяжОтесь с аЎЌОМОстратПрПЌ сервера." ++ ++#: wp-includes/script-loader.php:99 ++msgid "You may only upload 1 file." ++msgstr "Вы ЌПжете загрузОть тПлькП 1 файл." ++ ++#: wp-includes/script-loader.php:100 ++msgid "HTTP error." ++msgstr "ОшОбка HTTP." ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/export.php:38 ++#: wp-includes/script-loader.php:101 ++msgid "Upload failed." ++msgstr "Загрузка Ме уЎалась." ++ ++#: wp-includes/script-loader.php:102 ++msgid "IO error." ++msgstr "ОшОбка ввПЎа/вывПЎа." ++ ++#: wp-includes/script-loader.php:103 ++msgid "Security error." ++msgstr "ОшОбка безПпасМПстО." ++ ++#: wp-includes/script-loader.php:104 ++msgid "File cancelled." ++msgstr "Загрузка ПтЌеМеМа." ++ ++#: wp-includes/script-loader.php:105 ++msgid "Upload stopped." ++msgstr "Загрузка ПстаМПвлеМа." ++ ++#: wp-includes/script-loader.php:106 ++msgid "Dismiss" ++msgstr "ОтЌеМа" ++ ++#: wp-includes/script-loader.php:107 ++msgid "Crunching…" ++msgstr "ОбрабПтка…" ++ ++#: wp-includes/script-loader.php:108 ++msgid "Deleted" ++msgstr "УЎалёМ" ++ ++#: wp-includes/script-loader.php:117 ++msgid "Separate multiple categories with commas." ++msgstr "ЕслО рубрОк МескПлькП, разЎелОте Ох запятыЌО." ++ ++#: wp-includes/script-loader.php:125 ++msgid "Bad" ++msgstr "НОзкая" ++ ++#: wp-includes/script-loader.php:126 ++msgid "Good" ++msgstr "СреЎМяя" ++ ++#: wp-includes/script-loader.php:127 ++msgid "Strong" ++msgstr "ВысПкая" ++ ++#: wp-includes/script-loader.php:131 ++msgid "%i% pending" ++msgstr "%i% ПжОЎающОх" ++ ++#: wp-includes/script-loader.php:149 ++msgid "Tags used on this post:" ++msgstr "МеткО, ОспПльзуеЌые Ўля запОсО:" ++ ++#: wp-includes/script-loader.php:151 ++msgid "Add new tag" ++msgstr "ДПбавОть МПвую Ќетку" ++ ++#: wp-includes/script-loader.php:152 ++msgid "Separate tags with commas" ++msgstr "ЕслО ЌетПк МескПлькП, разЎелОте Ох запятыЌО" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/upload-functions.php:78 ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/upload-functions.php:118 ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/upload-js.php:72 ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/upload-js.php:74 ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/upload-js.php:150 ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/upload-js.php:152 ++#: wp-includes/script-loader.php:169 ++msgid "Browse your files" ++msgstr "ОбзПр файлПв" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/upload-js.php:72 ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/upload-js.php:74 ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/upload-js.php:150 ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/upload-js.php:152 ++#: wp-includes/script-loader.php:170 ++msgid "« Back" ++msgstr "« НазаЎ" ++ ++#: wp-includes/script-loader.php:171 ++msgid "Direct link to file" ++msgstr "ПряЌая ссылка Ма файл" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/upload-js.php:106 ++#: wp-includes/script-loader.php:175 ++msgid "Icon" ++msgstr "ИкПМка" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/link-categories.php:130 ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/link-categories.php:390 ++#: wp-includes/script-loader.php:177 ++msgid "Show:" ++msgstr "ППказать:" ++ ++#: wp-includes/script-loader.php:178 ++msgid "Link to:" ++msgstr "Ссылка Ма:" ++ ++#: wp-includes/script-loader.php:179 ++msgid "File" ++msgstr "Ѐайл" ++ ++#: wp-includes/script-loader.php:182 ++msgid "Send to editor »" ++msgstr "В реЎактПр »" ++ ++#: wp-includes/script-loader.php:186 ++msgid "Delete File" ++msgstr "УЎалОть файл" ++ ++#: wp-includes/script-loader.php:187 ++msgid "Save »" ++msgstr "СПхраМОть »" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/upload-js.php:260 ++#: wp-includes/script-loader.php:188 ++msgid "" ++"Are you sure you want to delete the file '%title%'?\n" ++"Click ok to delete or cancel to go back." ++msgstr "" ++"Вы увереМы, чтП хПтОте уЎалОть файл «%title%»?\n" ++"«ÐžÑ‚ЌеМа» — ПставОть, «ÐžÐš» — уЎалОть." ++ ++#: wp-includes/script-loader.php:501 ++msgid "Saving Draft…" ++msgstr "СПхраМеМОе черМПвОка…" ++ ++#: wp-includes/taxonomy.php:224 ++#: wp-includes/taxonomy.php:290 ++#: wp-includes/taxonomy.php:404 ++#: wp-includes/taxonomy.php:543 ++#: wp-includes/taxonomy.php:1045 ++#: wp-includes/taxonomy.php:1262 ++msgid "Invalid Taxonomy" ++msgstr "НекПрректМая таксПМПЌОя" ++ ++#: wp-includes/taxonomy.php:1165 ++#: wp-includes/taxonomy.php:1416 ++msgid "Invalid taxonomy" ++msgstr "НекПрректМая таксПМПЌОя" ++ ++#: wp-includes/taxonomy.php:1168 ++msgid "Invalid term ID" ++msgstr "НеправОльМый ОЎеМтОфОкатПр Пбъекта" ++ ++#: wp-includes/taxonomy.php:1199 ++#: wp-includes/taxonomy.php:1206 ++msgid "Could not insert term into the database" ++msgstr "Не уЎалПсь вставОть элеЌеМт в базу ЎаММых" ++ ++#: wp-includes/taxonomy.php:1464 ++#, php-format ++msgid "The slug \"%s\" is already in use by another term" ++msgstr "Ярлык \"%s\" уже ОспПльзуется ЎругОЌ ПбъектПЌ" ++ ++#: wp-includes/theme.php:174 ++msgid "Stylesheet is missing." ++msgstr "СпОсПк стОлей Ме МайЎеМ." ++ ++#: wp-includes/theme.php:188 ++msgid "File not readable." ++msgstr "Ѐайл МеЎПступеМ Ўля чтеМОя." ++ ++#: wp-includes/theme.php:229 ++msgid "Template is missing." ++msgstr "КаблПМ Ме МайЎеМ." ++ ++#: wp-includes/user.php:29 ++msgid "Please log in again." ++msgstr "ППжалуйста, вПйЎОте заМПвП." ++ ++#: wp-includes/widgets.php:24 ++#: wp-includes/widgets.php:52 ++#, php-format ++msgid "Sidebar %d" ++msgstr "БПкПвая кПлПМка %d" ++ ++#: wp-includes/widgets.php:412 ++msgid "Sort by:" ++msgstr "ПрОПрОтет сПртОрПвкО:" ++ ++#: wp-includes/widgets.php:414 ++msgid "Page title" ++msgstr "ЗагПлПвПк страМОцы" ++ ++#: wp-includes/widgets.php:415 ++msgid "Page order" ++msgstr "ППряЎПк страМОцы" ++ ++#: wp-includes/widgets.php:416 ++msgid "Page ID" ++msgstr "ИЎеМтОфОкатПр страМОцы" ++ ++#: wp-includes/widgets.php:421 ++msgid "Exclude:" ++msgstr "ИсключОть:" ++ ++#: wp-includes/widgets.php:423 ++msgid "Page IDs, separated by commas." ++msgstr "ID страМОц, разЎелеММые запятыЌО." ++ ++#: wp-includes/widgets.php:464 ++msgid "Select Month" ++msgstr "ВыберОте Ќесяц" ++ ++#: wp-includes/widgets.php:494 ++#: wp-includes/widgets.php:792 ++msgid "Show post counts" ++msgstr "ОтПбражать чОслП запОсей" ++ ++#: wp-includes/widgets.php:496 ++msgid "Display as a drop down" ++msgstr "ППказывать выпаЎающОЌ спОскПЌ" ++ ++#: wp-includes/widgets.php:505 ++#: wp-includes/widgets.php:1375 ++#: wp-includes/widgets.php:1376 ++msgid "Meta" ++msgstr "Мета" ++ ++#: wp-includes/widgets.php:512 ++msgid "Syndicate this site using RSS 2.0" ++msgstr "ППЎпОшОтесь Ма RSS-леМту этПгП сайта" ++ ++#: wp-includes/widgets.php:512 ++msgid "Entries RSS" ++msgstr "RSS запОсей" ++ ++#: wp-includes/widgets.php:649 ++msgid "Arbitrary text or HTML" ++msgstr "ПрПОзвПльМый текст ОлО HTML-кПЎ" ++ ++#: wp-includes/widgets.php:651 ++msgid "Text" ++msgstr "Текст" ++ ++#: wp-includes/widgets.php:694 ++msgid "Select Category" ++msgstr "ВыберОте рубрОку" ++ ++#: wp-includes/widgets.php:787 ++msgid "Show as dropdown" ++msgstr "ОтПбражать как выпаЎающее ЌеМю" ++ ++#: wp-includes/widgets.php:797 ++msgid "Show hierarchy" ++msgstr "ОтПбражать ОерархОю" ++ ++#: wp-includes/widgets.php:812 ++msgid "A list or dropdown of categories" ++msgstr "СпОсПк ОлО выпаЎающее ЌеМю рубрОк" ++ ++#: wp-includes/widgets.php:867 ++#: wp-includes/widgets.php:1382 ++#: wp-includes/widgets.php:1383 ++msgid "Recent Posts" ++msgstr "СвежОе запОсО" ++ ++#: wp-includes/widgets.php:918 ++msgid "Number of posts to show:" ++msgstr "КПлОчествП запОсей:" ++ ++#: wp-includes/widgets.php:920 ++#: wp-includes/widgets.php:979 ++msgid "(at most 15)" ++msgstr "(Ме бПлее 15)" ++ ++#: wp-includes/widgets.php:948 ++#, php-format ++msgid "%1$s on %2$s" ++msgstr "%1$s Ма %2$s" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/upload-functions.php:313 ++#: wp-includes/widgets.php:977 ++msgid "Number of comments to show:" ++msgstr "КПлОчествП кПЌЌеМтарОев:" ++ ++#: wp-includes/widgets.php:992 ++msgid "The most recent comments" ++msgstr "СаЌые свежОе кПЌЌеМтарОО" ++ ++#: wp-includes/widgets.php:1035 ++msgid "Unknown Feed" ++msgstr "НеОзвестМая леМта" ++ ++#: wp-includes/widgets.php:1041 ++msgid "Syndicate this content" ++msgstr "ППЎпОсаться Ма эту леМту" ++ ++#: wp-includes/widgets.php:1083 ++msgid "Untitled" ++msgstr "БезыЌяММый" ++ ++#: wp-includes/widgets.php:1133 ++msgid "An error has occurred; the feed is probably down. Try again later." ++msgstr "ПрПОзПшла ПшОбка; вПзЌПжМП, леМта МеЎПступМа. ППвтПрОте пПпытку пПзже." ++ ++#: wp-includes/widgets.php:1215 ++msgid "Enter the RSS feed URL here:" ++msgstr "ВвеЎОте аЎрес RSS-леМты:" ++ ++#: wp-includes/widgets.php:1221 ++msgid "Give the feed a title (optional):" ++msgstr "Озаглавьте леМту (МеПбязательМП):" ++ ++#: wp-includes/widgets.php:1227 ++msgid "How many items would you like to display?" ++msgstr "СкПлькП элеЌеМтПв ПтПбражать?" ++ ++#: wp-includes/widgets.php:1240 ++msgid "Display item content?" ++msgstr "ОтПбражать сПЎержОЌПе элеЌеМта?" ++ ++#: wp-includes/widgets.php:1247 ++msgid "Display item author if available?" ++msgstr "ОтПбражать автПра элеЌеМта (еслО есть)?" ++ ++#: wp-includes/widgets.php:1254 ++msgid "Display item date?" ++msgstr "ОтПбражать Ўату элеЌеМта?" ++ ++#: wp-includes/widgets.php:1287 ++msgid "Error: could not find an RSS or ATOM feed at that URL." ++msgstr "ОшОбка: МевПзЌПжМП МайтО МО RSS, МО Atom-леМту Ўля этПгП аЎреса." ++ ++#: wp-includes/widgets.php:1288 ++#, php-format ++msgid "Error in RSS %1$d" ++msgstr "ОшОбка в RSS %1$d" ++ ++#: wp-includes/widgets.php:1302 ++msgid "Entries from any RSS or Atom feed" ++msgstr "ЗапОсО Оз любПй леМты RSS ОлО Atom" ++ ++#: wp-includes/widgets.php:1359 ++msgid "Your blog's WordPress Pages" ++msgstr "СтраМОцы вашегП блПга" ++ ++#: wp-includes/widgets.php:1363 ++msgid "A calendar of your blog's posts" ++msgstr "КалеМЎарь запОсей вашегП блПга" ++ ++#: wp-includes/widgets.php:1367 ++msgid "A monthly archive of your blog's posts" ++msgstr "АрхОв запОсей вашегП блПга пП ЌесяцаЌ" ++ ++#: wp-includes/widgets.php:1371 ++msgid "Your blogroll" ++msgstr "ВашО ссылкО" ++ ++#: wp-includes/widgets.php:1374 ++msgid "Log in/out, admin, feed and WordPress links" ++msgstr "СсылкО Ма вхПЎ/выхПЎ, паМель аЎЌОМОстрОрПваМОя, RSS-леМту О WordPress" ++ ++#: wp-includes/widgets.php:1378 ++msgid "A search form for your blog" ++msgstr "ЀПрЌа пПОска Ўля вашегП блПга" ++ ++#: wp-includes/widgets.php:1381 ++msgid "The most recent posts on your blog" ++msgstr "СаЌые свежОе запОсО вашегП блПга" ++ ++#: wp-includes/widgets.php:1385 ++msgid "Your most used tags in cloud format" ++msgstr "СаЌые ОспПльзуеЌые ЌеткО в вОЎе Пблака" ++ ++#: wp-includes/widgets.php:1386 ++#: wp-includes/widgets.php:1387 ++msgid "Tag Cloud" ++msgstr "ОблакП ЌетПк" ++ ++#: wp-includes/wp-db.php:532 ++#, php-format ++msgid "ERROR: WordPress %s requires MySQL 4.0.0 or higher" ++msgstr "ОКИБКА: WordPress %s требует MySQL 4.0.0 ОлО выше" ++ ++#: wp-login.php:30 ++msgid "Powered by WordPress" ++msgstr "Сайт рабПтает Ма WordPress" ++ ++#: wp-login.php:65 ++msgid "ERROR: Enter a username or e-mail address." ++msgstr "ОКИБКА: ППжалуйста, ввеЎОте лПгОМ ОлО e-mail." ++ ++#: wp-login.php:70 ++msgid "ERROR: There is no user registered with that email address." ++msgstr "ОКИБКА: ППльзПвателей с такОЌ аЎресПЌ e-mail Ме зарегОстрОрПваМП." ++ ++#: wp-login.php:82 ++msgid "ERROR: Invalid username or e-mail." ++msgstr "ОшОбка: НеверМый лПгОМ ОлО e-mail." ++ ++#: wp-login.php:101 ++msgid "Someone has asked to reset the password for the following site and username." ++msgstr "КтП-тП пПпрПсОл прОслать МПвый парПль Ўля этПгП сайта О пПльзПвателя." ++ ++#: wp-login.php:104 ++msgid "To reset your password visit the following address, otherwise just ignore this email and nothing will happen." ++msgstr "Для пПлучеМОя МПвПгП парПля прПйЎОте пП слеЎующей ссылке. ЕслО прПОгМПрОрПвать этП пОсьЌП, МОчегП Ме прПОзПйЎет." ++ ++#: wp-login.php:107 ++#, php-format ++msgid "[%s] Password Reset" ++msgstr "[%s] НПвый парПль" ++ ++#: wp-login.php:108 ++#: wp-login.php:135 ++msgid "The e-mail could not be sent." ++msgstr "СППбщеМОе Ме ЌПжет быть ПтправлеМП." ++ ++#: wp-login.php:108 ++#: wp-login.php:135 ++msgid "Possible reason: your host may have disabled the mail() function..." ++msgstr "ВПзЌПжМая прОчОМа: сервер Ме пПЎЎержОвает фуМкцОю mail()…" ++ ++#: wp-login.php:119 ++#: wp-login.php:123 ++msgid "Invalid key" ++msgstr "НеверМый ключ" ++ ++#: wp-login.php:134 ++#, php-format ++msgid "[%s] Your new password" ++msgstr "[%s] Ваш МПвый парПль" ++ ++#: wp-login.php:140 ++#, php-format ++msgid "Password Lost and Changed for user: %s" ++msgstr "ПарПль пПтеряМ О ОзЌеМеМ Ўля пПльзПвателя %s" ++ ++#: wp-login.php:141 ++#, php-format ++msgid "[%s] Password Lost/Changed" ++msgstr "[%s] ПарПль вПсстаМПвлеМ" ++ ++#: wp-login.php:157 ++msgid "ERROR: This username is invalid. Please enter a valid username." ++msgstr "ОКИБКА: НеверМый лПгОМ. ППжалуйста, ввеЎОте кПрректМый лПгОМ." ++ ++#: wp-login.php:160 ++msgid "ERROR: This username is already registered, please choose another one." ++msgstr "ОКИБКА: ППльзПватель с такОЌ лПгОМПЌ уже зарегОстрОрПваМ. ППжалуйста, выберОте ЎругПй." ++ ++#: wp-login.php:164 ++msgid "ERROR: Please type your e-mail address." ++msgstr "ОКИБКА: ППжалуйста, ввеЎОте ваш аЎрес e-mail" ++ ++#: wp-login.php:166 ++msgid "ERROR: The email address isn’t correct." ++msgstr "ОКИБКА: НеправОльМый аЎрес e-mail." ++ ++#: wp-login.php:169 ++msgid "ERROR: This email is already registered, please choose another one." ++msgstr "ОКИБКА: ЭтПт e-mail уже зарегОстрОрПваМ. ППжалуйста, ввеЎОте ЎругПй." ++ ++#: wp-login.php:181 ++#, php-format ++msgid "ERROR: Couldn’t register you... please contact the webmaster !" ++msgstr "ОКИБКА: РегОстрацОя МевПзЌПжМа. ППжалуйста, свяжОтесь с аЎЌОМОстратПрПЌ!" ++ ++#: wp-login.php:244 ++msgid "Sorry, that key does not appear to be valid." ++msgstr "ИзвОМОте, этПт ключ МевереМ." ++ ++#: wp-login.php:247 ++msgid "Lost Password" ++msgstr "ЗабылО парПль?" ++ ++#: wp-login.php:247 ++msgid "Please enter your username or e-mail address. You will receive a new password via e-mail." ++msgstr "ППжалуйста, ввеЎОте ваш лПгОМ ОлО e-mail. Вы пПлучОте МПвый парПль пП пПчте." ++ ++#: wp-login.php:252 ++msgid "Username or E-mail:" ++msgstr "ЛПгОМ ОлО e-mail:" ++ ++#: wp-login.php:256 ++msgid "Get New Password" ++msgstr "ППлучОть МПвый парПль" ++ ++#: wp-login.php:270 ++#: wp-login.php:335 ++#: wp-login.php:412 ++msgid "Are you lost?" ++msgstr "ППтерялОсь?" ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/upload-js.php:72 ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/upload-js.php:74 ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/upload-js.php:150 ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-admin/upload-js.php:152 ++#: wp-login.php:270 ++#: wp-login.php:335 ++#: wp-login.php:412 ++#, php-format ++msgid "« Back to %s" ++msgstr "« НазаЎ к %s" ++ ++#: wp-login.php:311 ++msgid "Registration Form" ++msgstr "РегОстрацОПММая фПрЌа" ++ ++#: wp-login.php:311 ++msgid "Register For This Site" ++msgstr "ЗарегОстрОруйтесь Ма этПЌ сайте" ++ ++#: wp-login.php:324 ++msgid "A password will be e-mailed to you." ++msgstr "ПарПль буЎет ПтправлеМ ваЌ Ма e-mail." ++ ++#: wp-login.php:330 ++#: wp-login.php:404 ++#: wp-login.php:406 ++msgid "Password Lost and Found" ++msgstr "ПарПль пПтеряМ О вПсстаМПвлеМ" ++ ++#: wp-login.php:330 ++#: wp-login.php:404 ++#: wp-login.php:406 ++msgid "Lost your password?" ++msgstr "ЗабылО парПль?" ++ ++#: wp-login.php:366 ++msgid "ERROR: Cookies are blocked or not supported by your browser. You must enable cookies to use WordPress." ++msgstr "ОКИБКА: Cookies лОбП заблПкОрПваМы, лОбП Ме пПЎЎержОваются вашОЌ браузерПЌ. ЧтПбы ОспПльзПвать WordPress, МужМП разрешОть cookies." ++ ++#: wp-login.php:369 ++msgid "You are now logged out." ++msgstr "Вы вышлО Оз сОстеЌы." ++ ++#: wp-login.php:370 ++msgid "User registration is currently not allowed." ++msgstr "В ЎаММый ЌПЌеМт регОстрацОя запрещеМа." ++ ++#: wp-login.php:371 ++msgid "Check your e-mail for the confirmation link." ++msgstr "ВаЌ ПтправлеМП пОсьЌП сП ссылкПй Ўля пПЎтвержЎеМОя." ++ ++#: wp-login.php:372 ++msgid "Check your e-mail for your new password." ++msgstr "ВаЌ ПтправлеМП пОсьЌП с МПвыЌ парПлеЌ." ++ ++# C:\www\xampp\htdocs\wordpress\wordpress_ru\trunk/wp-login.php:339 ++#: wp-login.php:373 ++msgid "Registration complete. Please check your e-mail." ++msgstr "РегОстрацОя завершеМа. ПрПверьте вашу пПчту." ++ ++#: wp-login.php:375 ++msgid "Login" ++msgstr "ВПйтО" ++ ++#: wp-login.php:389 ++msgid "Remember Me" ++msgstr "ЗапПЌМОть ЌеМя" ++ ++#: xmlrpc.php:152 ++#: xmlrpc.php:690 ++#: xmlrpc.php:712 ++#: xmlrpc.php:734 ++msgid "Bad login/pass combination." ++msgstr "НеверМПе сПчетаМОе лПгОМа/парПля." ++ ++#: xmlrpc.php:238 ++msgid "Sorry, you can not edit this page." ++msgstr "ИзвОМОте, МП вы Ме ЌПжете реЎактОрПвать эту страМОцу." ++ ++#: xmlrpc.php:305 ++#: xmlrpc.php:409 ++#: xmlrpc.php:452 ++msgid "Sorry, no such page." ++msgstr "ИзвОМОте, такПй страМОцы Мет." ++ ++#: xmlrpc.php:326 ++#: xmlrpc.php:496 ++msgid "Sorry, you can not edit pages." ++msgstr "ИзвОМОте, МП вы Ме ЌПжете реЎактОрПвать страМОцы." ++ ++#: xmlrpc.php:374 ++msgid "Sorry, you can not add new pages." ++msgstr "ИзвОМОте, МП вы Ме ЌПжете ЎПбавлять страМОцы." ++ ++#: xmlrpc.php:415 ++msgid "Sorry, you do not have the right to delete this page." ++msgstr "ИзвОМОте, МП у вас Мет прав Ма уЎалеМОе этПй страМОцы." ++ ++#: xmlrpc.php:421 ++msgid "Failed to delete the page." ++msgstr "Не пПлучОлПсь уЎалОть страМОцу." ++ ++#: xmlrpc.php:458 ++msgid "Sorry, you do not have the right to edit this page." ++msgstr "ИзвОМОте, МП у вас Мет прав Ма реЎактОрПваМОе этПй страМОцы." ++ ++#: xmlrpc.php:546 ++msgid "Sorry, you can not edit posts on this blog." ++msgstr "ИзвОМОте, МП ваЌ Ме разрешеМП реЎактОрПвать запОсО в этПЌ блПге." ++ ++#: xmlrpc.php:585 ++msgid "Sorry, you do not have the right to add a category." ++msgstr "ИзвОМОте, МП у вас Мет прав Ма ЎПбавлеМОе рубрОкО." ++ ++#: xmlrpc.php:613 ++msgid "Sorry, the new category failed." ++msgstr "ИзвОМОте, прПОзПшла ПшОбка прО сПзЎаМОО рубрОкО." ++ ++#: xmlrpc.php:639 ++msgid "Sorry, you do not have the right to delete a category." ++msgstr "ИзвОМОте, МП у вас Мет прав Ма уЎалеМОе рубрОкО." ++ ++#: xmlrpc.php:665 ++msgid "Sorry, you must be able to edit posts to this blog in order to view categories." ++msgstr "ИзвОМОте, чтПбы прПсЌатрОвать рубрОкО, ваЌ МужМы права Ма реЎактОрПваМОе запОсей в этПЌ блПге." ++ ++#: xmlrpc.php:695 ++msgid "You are not allowed access to details about comments." ++msgstr "ВаЌ Ме разрешеМП пПлучать ОМфПрЌацОю П кПЌЌеМтарОях." ++ ++#: xmlrpc.php:717 ++#: xmlrpc.php:739 ++msgid "You are not allowed access to details about this blog." ++msgstr "ВаЌ Ме разрешеМП пПлучать ЎетальМую ОМфПрЌацОю Пб этПЌ блПге." ++ ++#: xmlrpc.php:795 ++msgid "Sorry, you do not have access to user data on this blog." ++msgstr "ИзвОМОте, МП у вас Мет ЎПступа к ЎаММыЌ пПльзПвателей этПгП блПга." ++ ++#: xmlrpc.php:828 ++#: xmlrpc.php:1624 ++#: xmlrpc.php:2013 ++#: xmlrpc.php:2052 ++#: xmlrpc.php:2141 ++msgid "Sorry, you can not edit this post." ++msgstr "ИзвОМОте, МП вы Ме ЌПжете реЎактОрПвать эту запОсь." ++ ++#: xmlrpc.php:872 ++#: xmlrpc.php:1714 ++#: xmlrpc.php:1932 ++msgid "Either there are no posts, or something went wrong." ++msgstr "ЛОбП запОсей Мет, лОбП чтП-тП случОлПсь." ++ ++#: xmlrpc.php:923 ++#: xmlrpc.php:960 ++msgid "Sorry, this user can not edit the template." ++msgstr "ИзвОМОте, этПт пПльзПватель Ме ЌПжет реЎактОрПвать шаблПМ." ++ ++#: xmlrpc.php:971 ++msgid "Either the file is not writable, or something wrong happened. The file has not been updated." ++msgstr "ЛОбП файл защОщёМ Пт запОсО, лОбП чтП-тП случОлПсь. Ѐайл Ме был ПбМПвлёМ." ++ ++#: xmlrpc.php:998 ++msgid "Sorry, you are not allowed to post on this blog." ++msgstr "ИзвОМОте, МП ваЌ Ме разрешеМП публОкПвать запОсО в этПЌ блПге." ++ ++#: xmlrpc.php:1047 ++#: xmlrpc.php:1096 ++#: xmlrpc.php:1690 ++#: xmlrpc.php:2098 ++msgid "Sorry, no such post." ++msgstr "ИзвОМОте, такПй запОсО Мет." ++ ++#: xmlrpc.php:1059 ++#: xmlrpc.php:1564 ++msgid "Sorry, you do not have the right to publish this post." ++msgstr "ИзвОМОте, МП у вас Мет прав Ма публОкацОю этПй запОсО." ++ ++#: xmlrpc.php:1136 ++#: xmlrpc.php:1385 ++msgid "Sorry, you are not allowed to publish posts on this blog." ++msgstr "ИзвОМОте, МП ваЌ Ме разрешеМП публОкПвать запОсО в этПЌ блПге." ++ ++#: xmlrpc.php:1141 ++#: xmlrpc.php:1390 ++msgid "Sorry, you are not allowed to publish pages on this blog." ++msgstr "ИзвОМОте, МП ваЌ Ме разрешеМП публОкПвать страМОцы в этПЌ блПге." ++ ++#: xmlrpc.php:1149 ++#: xmlrpc.php:1198 ++#: xmlrpc.php:1398 ++#: xmlrpc.php:1458 ++msgid "Invalid post type." ++msgstr "НеверМый тОп запОсО." ++ ++#: xmlrpc.php:1189 ++msgid "You are not allowed to post as this user" ++msgstr "ВаЌ Ме разрешеМП публОкПвать запОсО Пт лОца этПгП пПльзПвателя" ++ ++#: xmlrpc.php:1194 ++msgid "You are not allowed to create pages as this user" ++msgstr "ВаЌ Ме разрешеМП сПзЎавать страМОцы Пт лОца этПгП пПльзПвателя" ++ ++#: xmlrpc.php:1412 ++msgid "Invalid post id." ++msgstr "НеверМый ОЎеМтОфОкатПр запОсО." ++ ++#: xmlrpc.php:1449 ++msgid "You are not allowed to change the post author as this user." ++msgstr "ВаЌ Ме разрешеМП ОзЌеМять автПра запОсО Пт лОца этПгП пПльзПвателя." ++ ++#: xmlrpc.php:1454 ++msgid "You are not allowed to change the page author as this user." ++msgstr "ВаЌ Ме разрешеМП ОзЌеМять автПра страМОцы Пт лОца этПгП пПльзПвателя." ++ ++#: xmlrpc.php:1562 ++msgid "Sorry, you do not have the right to publish this page." ++msgstr "ИзвОМОте, МП у вас Мет прав Ма публОкацОю этПй страМОцы." ++ ++#: xmlrpc.php:1594 ++msgid "Sorry, your entry could not be edited. Something wrong happened." ++msgstr "ИзвОМОте, ваша запОсь Ме ПтреЎактОрПвалась. ЧтП-тП случОлПсь." ++ ++#: xmlrpc.php:1809 ++#: xmlrpc.php:1979 ++msgid "Sorry, you must be able to edit posts on this blog in order to view categories." ++msgstr "ИзвОМОте, чтПбы прПсЌатрОвать рубрОкО, ваЌ МужМы права Ма реЎактОрПваМОе запОсей в этПЌ блПге." ++ ++#: xmlrpc.php:1858 ++msgid "You are not allowed to upload files to this site." ++msgstr "ВаЌ Ме разрешеМП загружать файлы Ма этПт сайт." ++ ++#: xmlrpc.php:1885 ++#, php-format ++msgid "Could not write file %1$s (%2$s)" ++msgstr "НевПзЌПжМП сПхраМОть файл %1$s (%2$s)" ++ ++#: xmlrpc.php:2183 ++msgid "Is there no link to us?" ++msgstr "ППхПже, чтП ссылкО Ма Маш сайт Мет." ++ ++#: xmlrpc.php:2223 ++#: xmlrpc.php:2233 ++#: xmlrpc.php:2240 ++#: xmlrpc.php:2342 ++msgid "The specified target URL cannot be used as a target. It either doesn't exist, or it is not a pingback-enabled resource." ++msgstr "ЗаЎаММый URL Мельзя ОспПльзПвать в качестве аЎресата. ОМ ОлО Ме существует, ОлО указывает Ме Ма ресурс с вПзЌПжМПстью увеЎПЌлеМОй." ++ ++#: xmlrpc.php:2236 ++msgid "The source URL and the target URL cannot both point to the same resource." ++msgstr "АЎрес ОстПчМОка О аЎрес пПлучателя Ме ЌПгут указывать Ма ПЎОМ О тПт же ресурс." ++ ++#: xmlrpc.php:2246 ++msgid "The pingback has already been registered." ++msgstr "УвеЎПЌлеМОе уже былП зарегОстрОрПваМП." ++ ++#: xmlrpc.php:2254 ++msgid "The source URL does not exist." ++msgstr "Ссылка Ма ОстПчМОк Ме МайЎеМа." ++ ++#: xmlrpc.php:2266 ++msgid "We cannot find a title on that page." ++msgstr "НевПзЌПжМП ПпреЎелОть МазваМОе этПй страМОцы." ++ ++#: xmlrpc.php:2302 ++msgid "The source URL does not contain a link to the target URL, and so cannot be used as a source." ++msgstr "АЎрес ОстПчМОка Ме сПЎержОт ссылкО Ма пПлучателя, О пПтПЌу Ме ЌПжет быть ОспПльзПваМ как ОстПчМОк." ++ ++#: xmlrpc.php:2322 ++#, php-format ++msgid "Pingback from %1$s to %2$s registered. Keep the web talking! :-)" ++msgstr "УвеЎПЌлеМОе Пт %1$s к %2$s зарегОстрОрПваМП. ЛюЎО гПвПрят! :-)" ++ ++#: xmlrpc.php:2349 ++msgid "The specified target URL does not exist." ++msgstr "УказаММая ссылка Ме МайЎеМа." ++ +diff -Nru wordpress/wp-content/languages/sr_RS.po wordpress-2.5.0/wp-content/languages/sr_RS.po +--- wordpress/wp-content/languages/sr_RS.po 1970-01-01 01:00:00.000000000 +0100 ++++ wordpress-2.5.0/wp-content/languages/sr_RS.po 2008-04-18 14:21:14.000000000 +0200 +@@ -0,0 +1,10011 @@ ++# Serbian translation for Wordpress 2.5 ++# Copyright (C) 2008 WordPress ++# This file is distributed under the same license as the WordPress package. ++# Mihailo Stefanović 2005, Milan Dinić 2007, 2008 ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: Serbian translation for WordPress v2.5\n" ++"Report-Msgid-Bugs-To: wp-polyglots@lists.automattic.com\n" ++"POT-Creation-Date: 2008-03-29 18:22+0200\n" ++"PO-Revision-Date: 2008-03-30 00:11+0100\n" ++"Last-Translator: Milan Dinić \n" ++"Language-Team: srpski.biz \n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" ++"X-Poedit-Language: Serbian\n" ++"X-Poedit-Country: SERBIA\n" ++"X-Poedit-SourceCharset: utf-8\n" ++ ++#: wp-admin/admin-ajax.php:69 ++#: wp-admin/categories.php:40 ++#: wp-admin/categories.php:60 ++#: wp-admin/edit-link-categories.php:16 ++#: wp-admin/link-category.php:34 ++#, php-format ++msgid "Can’t delete the %s category: this is the default one" ++msgstr "Не ЌПгу Ўа ПбрОшеЌ категПрОју %s: ПвП је пПЎразуЌеваМа категПрОја" ++ ++#: wp-admin/admin-ajax.php:227 ++#: wp-admin/admin-ajax.php:279 ++#: wp-admin/includes/taxonomy.php:62 ++msgid "You did not enter a category name." ++msgstr "НОсте уМелО ОЌе категПрОје." ++ ++#: wp-admin/admin-ajax.php:235 ++msgid "The category you are trying to create already exists." ++msgstr "КатегПрОја кПју пПкушавате Ўа МаправОте већ пПстПјО." ++ ++#: wp-admin/admin-ajax.php:267 ++#, php-format ++msgid "Category %s added" ++msgstr "КатегПрОја %s је ЎПЎата" ++ ++#: wp-admin/admin-ajax.php:313 ++msgid "You did not enter a tag name." ++msgstr "НОсте уМелО ОЌе ПзМаке." ++ ++#: wp-admin/admin-ajax.php:338 ++#, php-format ++msgid "Tag %s added" ++msgstr "ОзМака%s је ЎПЎата" ++ ++#: wp-admin/admin-ajax.php:456 ++#, php-format ++msgid "User %s added" ++msgstr "КПрОсМОк%s је ЎПЎат" ++ ++#: wp-admin/admin-ajax.php:476 ++#, php-format ++msgid "Draft Saved at %s." ++msgstr "Нацрт сачуваМ у %s." ++ ++#: wp-admin/admin-ajax.php:476 ++msgid "g:i:s a" ++msgstr "H:i:s" ++ ++#: wp-admin/admin-ajax.php:496 ++msgid "Someone" ++msgstr "НекП" ++ ++#: wp-admin/admin-ajax.php:498 ++#, php-format ++msgid "Autosave disabled: %s is currently editing this page." ++msgstr "АутПЌатскП сМОЌање ОскључеМП: %s треМутМП уређуке Пву страМу." ++ ++#: wp-admin/admin-ajax.php:498 ++#, php-format ++msgid "Autosave disabled: %s is currently editing this post." ++msgstr "АутПЌатскП сМОЌање ОскључеМП: %s треМутМП уређуке Пвај члаМак." ++ ++#: wp-admin/admin-ajax.php:507 ++#: wp-admin/includes/post.php:10 ++#: wp-admin/page.php:97 ++msgid "You are not allowed to edit this page." ++msgstr "НОје ваЌ ЎПзвПљеМП Ўа уређујете Пву страМу." ++ ++#: wp-admin/admin-ajax.php:510 ++#: wp-admin/includes/post.php:13 ++#: wp-admin/post.php:104 ++msgid "You are not allowed to edit this post." ++msgstr "НОје ваЌ ЎПзвПљеМП Ўа уређујете Пвај члаМак." ++ ++#: wp-admin/admin-footer.php:8 ++msgid "Thank you for creating with WordPress" ++msgstr "Хвала ваЌ за стварање са ВПрЎпресПЌ" ++ ++#: wp-admin/admin-footer.php:8 ++msgid "Documentation" ++msgstr "ДПкуЌеМтацОја" ++ ++#: wp-admin/admin-footer.php:8 ++msgid "Feedback" ++msgstr "ППЎршка" ++ ++#: wp-admin/admin-header.php:64 ++msgid "Visit Site" ++msgstr "ППсетОте блПг" ++ ++#: wp-admin/admin-header.php:66 ++#, php-format ++msgid "Howdy, %2$s!" ++msgstr "ЗЎравП, %2$s!" ++ ++#: wp-admin/admin-header.php:66 ++msgid "Log Out" ++msgstr "ОЎјава" ++ ++#: wp-admin/admin-header.php:66 ++msgid "Help" ++msgstr "ППЌПћ" ++ ++#: wp-admin/admin-header.php:66 ++msgid "Forums" ++msgstr "ЀПруЌО" ++ ++#: wp-admin/admin.php:29 ++msgid "Classic" ++msgstr "КласОчМП" ++ ++#: wp-admin/admin.php:30 ++msgid "Fresh" ++msgstr "Свеже" ++ ++#: wp-admin/admin.php:58 ++msgid "Invalid plugin page" ++msgstr "НеОсправМа страМОца са ЎПЎацОЌа" ++ ++#: wp-admin/admin.php:62 ++#, php-format ++msgid "Cannot load %s." ++msgstr "Не ЌПгу Ўа учОтаЌ %s." ++ ++#: wp-admin/admin.php:80 ++msgid "You are not allowed to import." ++msgstr "НОје ваЌ ЎПзвПљеМ увПз." ++ ++#: wp-admin/admin.php:83 ++msgid "Invalid importer." ++msgstr "УвПзМОк МОје ваљаМ." ++ ++#: wp-admin/admin.php:91 ++msgid "Cannot load importer." ++msgstr "Не ЌПгу Ўа учОтаЌ увПзМОка." ++ ++#: wp-admin/admin.php:98 ++#: wp-admin/import/blogger.php:151 ++#: wp-admin/import.php:3 ++#: wp-admin/import.php:9 ++#: wp-admin/import/textpattern.php:49 ++#: wp-admin/menu.php:47 ++msgid "Import" ++msgstr "УвПз" ++ ++#: wp-admin/async-upload.php:21 ++#: wp-admin/media-upload.php:11 ++#: wp-admin/upload.php:5 ++#: wp-app.php:407 ++#: wp-app.php:562 ++msgid "You do not have permission to upload files." ++msgstr "НеЌате ЎПзвПле Ўа шаљете ЎатПтеке." ++ ++#: wp-admin/bookmarklet.php:6 ++#: wp-admin/categories.php:19 ++#: wp-admin/categories.php:34 ++#: wp-admin/categories.php:86 ++#: wp-admin/edit-link-categories.php:9 ++#: wp-admin/edit-tags.php:19 ++#: wp-admin/edit-tags.php:35 ++#: wp-admin/edit-tags.php:48 ++#: wp-admin/edit-tags.php:82 ++#: wp-admin/import/wp-cat2tag.php:210 ++#: wp-admin/includes/bookmark.php:9 ++#: wp-admin/link-category.php:13 ++#: wp-admin/link-category.php:28 ++#: wp-admin/link-category.php:68 ++#: wp-admin/link-import.php:17 ++#: wp-admin/link-import.php:69 ++#: wp-admin/options.php:11 ++#: wp-admin/sidebar.php:7 ++#: wp-admin/users.php:6 ++#: wp-admin/widgets.php:7 ++#: wp-content/plugins/akismet/akismet.php:50 ++msgid "Cheatin’ uh?" ++msgstr "Вараш, а?" ++ ++#: wp-admin/categories.php:4 ++#: wp-admin/edit-form-advanced.php:217 ++#: wp-admin/edit-form.php:19 ++#: wp-admin/edit-link-form.php:101 ++#: wp-admin/includes/template.php:295 ++#: wp-admin/link-category.php:52 ++#: wp-admin/link-manager.php:123 ++#: wp-admin/menu.php:43 ++#: wp-includes/category-template.php:276 ++#: wp-includes/widgets.php:686 ++#: wp-includes/widgets.php:814 ++msgid "Categories" ++msgstr "КатегПрОје" ++ ++#: wp-admin/categories.php:53 ++msgid "You are not allowed to delete categories." ++msgstr "НОје ваЌ ЎПзвПљеМП Ўа брОшете категПрОје." ++ ++#: wp-admin/categories.php:108 ++#: wp-admin/edit-link-categories.php:43 ++msgid "Category added." ++msgstr "КатегПрОја ЎПЎата." ++ ++#: wp-admin/categories.php:109 ++#: wp-admin/edit-link-categories.php:44 ++msgid "Category deleted." ++msgstr "КатегПрОја ПбрОсаМа." ++ ++#: wp-admin/categories.php:110 ++#: wp-admin/edit-link-categories.php:45 ++msgid "Category updated." ++msgstr "КатегПрОја ажурОраМа." ++ ++#: wp-admin/categories.php:111 ++#: wp-admin/edit-link-categories.php:46 ++msgid "Category not added." ++msgstr "КатегПрОја МОје ЎПЎата." ++ ++#: wp-admin/categories.php:112 ++#: wp-admin/edit-link-categories.php:47 ++msgid "Category not updated." ++msgstr "КатегПрОја МОје ажурОраМа." ++ ++#: wp-admin/categories.php:123 ++#, php-format ++msgid "Manage Categories (add new)" ++msgstr "Управљај категПрОјаЌа (ЎПЎај МПву)" ++ ++#: wp-admin/categories.php:125 ++msgid "Manage Categories" ++msgstr "Управљај категПрОјаЌа" ++ ++#: wp-admin/categories.php:130 ++#: wp-admin/edit-link-categories.php:66 ++msgid "Search Categories" ++msgstr "ПретражО категПрОје" ++ ++#: wp-admin/categories.php:138 ++#: wp-admin/edit-comments.php:173 ++#: wp-admin/edit-link-categories.php:92 ++#: wp-admin/edit-pages.php:121 ++#: wp-admin/edit.php:138 ++#: wp-admin/edit-post-rows.php:174 ++#: wp-admin/edit-tags.php:163 ++#: wp-admin/includes/media.php:690 ++#: wp-admin/includes/template.php:689 ++#: wp-admin/includes/template.php:778 ++#: wp-admin/link-manager.php:90 ++#: wp-admin/upload.php:149 ++#: wp-admin/users.php:301 ++msgid "Delete" ++msgstr "ОбрОшО" ++ ++#: wp-admin/categories.php:151 ++#: wp-admin/edit-form-comment.php:67 ++#: wp-admin/edit-link-categories.php:105 ++#: wp-admin/edit-link-form.php:77 ++#: wp-admin/edit-tags.php:176 ++#: wp-admin/link-manager.php:121 ++#: wp-admin/themes.php:100 ++#: wp-admin/user-edit.php:194 ++#: wp-admin/users.php:335 ++#: wp-content/themes/classic/comments.php:51 ++#: wp-content/themes/classic/comments-popup.php:64 ++#: wp-includes/js/tinymce/langs/wp-langs.php:299 ++msgid "Name" ++msgstr "ИЌе" ++ ++#: wp-admin/categories.php:152 ++#: wp-admin/edit-category-form.php:45 ++#: wp-admin/edit-link-categories.php:106 ++#: wp-admin/edit-link-form.php:93 ++#: wp-admin/includes/media.php:447 ++#: wp-admin/includes/media.php:544 ++#: wp-admin/includes/media.php:626 ++#: wp-admin/includes/media.php:1089 ++#: wp-admin/plugins.php:108 ++#: wp-admin/themes.php:101 ++#: wp-includes/script-loader.php:185 ++msgid "Description" ++msgstr "ОпОс" ++ ++#: wp-admin/categories.php:153 ++#: wp-admin/edit.php:34 ++#: wp-admin/edit-tags.php:177 ++#: wp-admin/import/blogger.php:162 ++#: wp-admin/menu.php:40 ++#: wp-admin/users.php:338 ++msgid "Posts" ++msgstr "ЧлаМцО" ++ ++#: wp-admin/categories.php:173 ++#, php-format ++msgid "Note:
    Deleting a category does not delete the posts in that category. Instead, posts that were only assigned to the deleted category are set to the category %s." ++msgstr "НапПЌеМа:БрОсање категПрОје Меће ПбрОсатО члаМке Оз те категПрОје, саЌП ће Ох преЌестОтО у ПсМПвМу категПрОју %s." ++ ++#: wp-admin/categories.php:174 ++#, php-format ++msgid "Categories can be selectively converted to tags using the category to tag converter." ++msgstr "КатегПрОје ЌПгу бОтО селектОвМП претвПреМе у ПзМаке кПрОстећО претварач категПрОја у ПзМаке." ++ ++#: wp-admin/comment.php:21 ++#: wp-admin/edit-form-comment.php:2 ++msgid "Edit Comment" ++msgstr "УреЎО кПЌеМтар" ++ ++#: wp-admin/comment.php:30 ++#: wp-admin/comment.php:52 ++#: wp-admin/comment.php:134 ++#: wp-admin/comment.php:162 ++#: wp-admin/comment.php:187 ++msgid "Oops, no comment with this ID." ++msgstr "Упс, МеЌа кПЌеМтара са ПвОЌ ID-еЌ." ++ ++#: wp-admin/comment.php:30 ++#: wp-admin/comment.php:52 ++#: wp-admin/comment.php:134 ++#: wp-admin/comment.php:162 ++#: wp-admin/comment.php:187 ++msgid "Go back" ++msgstr "ИЎО МазаЎ" ++ ++#: wp-admin/comment.php:33 ++#: wp-admin/comment.php:137 ++msgid "You are not allowed to edit comments on this post." ++msgstr "НОје ваЌ ЎПзвПљеМП Ўа уређујете кПЌеМтаре Ма Пвај члаМак." ++ ++#: wp-admin/comment.php:55 ++msgid "You are not allowed to delete comments on this post." ++msgstr "НОје ваЌ ЎПзвПљеМП Ўа брОшете кПЌеМтаре Ма Пвај члаМак." ++ ++#: wp-admin/comment.php:55 ++#: wp-admin/comment.php:190 ++msgid "You are not allowed to edit comments on this post, so you cannot approve this comment." ++msgstr "НОје ваЌ ЎПзвПљеМП Ўа уређујете кПЌеМтаре Ма Пвај члаМак, такП Ўа Ме ЌПжете ПЎПбрОтО Пвај кПЌеМтар." ++ ++#: wp-admin/comment.php:62 ++msgid "You are about to mark the following comment as spam:" ++msgstr "Пажња: ОбележОћете слеЎећО кПЌеМтар каП МежељеМО:" ++ ++#: wp-admin/comment.php:63 ++msgid "Spam Comment" ++msgstr "НежељеМО кПЌеМтар" ++ ++#: wp-admin/comment.php:65 ++msgid "You are about to delete the following comment:" ++msgstr "Пажња: ОбрОсаћете слеЎећО кПЌеМтар:" ++ ++#: wp-admin/comment.php:66 ++msgid "Delete Comment" ++msgstr "ОбрОшО кПЌеМтар" ++ ++#: wp-admin/comment.php:68 ++msgid "You are about to approve the following comment:" ++msgstr "Пажња: ДПзвПлОћете слеЎећО кПЌеМтар:" ++ ++#: wp-admin/comment.php:69 ++msgid "Approve Comment" ++msgstr "ОЎПбрО кПЌеМтар" ++ ++#: wp-admin/comment.php:73 ++msgid "Caution:" ++msgstr "НапПЌеМа:" ++ ++#: wp-admin/comment.php:75 ++msgid "Are you sure you want to do that?" ++msgstr "Да лО сте сОгурМО Ўа тП желОте?" ++ ++#: wp-admin/comment.php:81 ++#: wp-admin/link-manager.php:163 ++#: wp-admin/update.php:64 ++msgid "No" ++msgstr "Не" ++ ++#: wp-admin/comment.php:98 ++#: wp-admin/includes/template.php:294 ++#: wp-admin/includes/template.php:331 ++#: wp-includes/js/tinymce/langs/wp-langs.php:243 ++msgid "Author" ++msgstr "АутПр" ++ ++#: wp-admin/comment.php:103 ++#: wp-admin/edit-form-comment.php:74 ++#: wp-admin/user-edit.php:270 ++#: wp-admin/users.php:336 ++#: wp-content/themes/classic/comments-popup.php:71 ++#: wp-login.php:320 ++msgid "E-mail" ++msgstr "Е-пПшта" ++ ++#: wp-admin/comment.php:109 ++#: wp-admin/edit-form-comment.php:81 ++#: wp-admin/includes/media.php:1179 ++#: wp-admin/includes/template.php:938 ++#: wp-admin/link-manager.php:122 ++#: wp-includes/script-loader.php:184 ++msgid "URL" ++msgstr "URL" ++ ++#: wp-admin/comment.php:114 ++#: wp-admin/edit-comments.php:190 ++#: wp-admin/edit-form-comment.php:88 ++#: wp-admin/edit-pages.php:191 ++#: wp-admin/edit.php:217 ++#: wp-admin/upload.php:227 ++#: wp-content/themes/classic/comments.php:18 ++#: wp-content/themes/classic/comments-popup.php:45 ++msgid "Comment" ++msgstr "КПЌеМтар" ++ ++#: wp-admin/comment.php:165 ++msgid "You are not allowed to edit comments on this post, so you cannot disapprove this comment." ++msgstr "НОје ваЌ ЎПзвПљеМП Ўа уређујете кПЌеМтаре Ма Пвај члаМак, такП Ўа Ме ЌПжете ПМеЌПгућОтО Пвај кПЌеМтар." ++ ++#: wp-admin/comment.php:223 ++msgid "Unknown action." ++msgstr "НепПзМата акцОја." ++ ++#: wp-admin/custom-header.php:11 ++msgid "Custom Image Header" ++msgstr "ПрОлагПЎљОва слОка заглавља" ++ ++#: wp-admin/custom-header.php:128 ++msgid "Show Text" ++msgstr "ПрОкажО текст" ++ ++#: wp-admin/custom-header.php:139 ++#: wp-admin/custom-header.php:169 ++msgid "Hide Text" ++msgstr "СакрОј текст" ++ ++#: wp-admin/custom-header.php:155 ++msgid "Header updated." ++msgstr "Заглавље ажурОраМП." ++ ++#: wp-admin/custom-header.php:160 ++msgid "Your Header Image" ++msgstr "Ваша слОка у заглављу" ++ ++#: wp-admin/custom-header.php:161 ++msgid "This is your header image. You can change the text color or upload and crop a new image." ++msgstr "ОвП је ваша слОка у заглављу. МПжете прПЌеМОтО бПју текста ОлО пПслатО О ОсећО МПву слОку." ++ ++#: wp-admin/custom-header.php:170 ++msgid "Select a Text Color" ++msgstr "ИзаберОте бПју тескта" ++ ++#: wp-admin/custom-header.php:170 ++msgid "Use Original Color" ++msgstr "КПрОстО ОзвПрМу бПју" ++ ++#: wp-admin/custom-header.php:172 ++#: wp-admin/edit-link-form.php:4 ++#: wp-admin/import/blogger.php:616 ++#: wp-admin/media.php:78 ++#: wp-admin/options-discussion.php:119 ++#: wp-admin/options-general.php:113 ++#: wp-admin/options-misc.php:94 ++#: wp-admin/options-permalink.php:181 ++#: wp-admin/options.php:88 ++#: wp-admin/options-privacy.php:27 ++#: wp-admin/options-reading.php:70 ++#: wp-admin/options-writing.php:114 ++#: wp-admin/widgets.php:307 ++msgid "Save Changes" ++msgstr "Сачувај ОзЌеМе" ++ ++#: wp-admin/custom-header.php:178 ++msgid "Upload New Header Image" ++msgstr "ППслатО МПву слОку за заглавље" ++ ++#: wp-admin/custom-header.php:178 ++msgid "Here you can upload a custom header image to be shown at the top of your blog instead of the default one. On the next screen you will be able to crop the image." ++msgstr "ОвЎе ЌПжете пПслатО слОку за заглавље кПја ће бОтО прОказаМа Ма врху вашег блПга уЌестП пПЎразуЌеваМе. На слеЎећеЌ екраМу ћете ЌПћО Ўа Осечете слОку." ++ ++#: wp-admin/custom-header.php:179 ++#, php-format ++msgid "Images of exactly %1$d x %2$d pixels will be used as-is." ++msgstr "СлОке са велОчОМПЌ ПЎ тачМП %1$d x %2$d пОксела ће бОтО каП такве кПрОшћеМе." ++ ++#: wp-admin/custom-header.php:182 ++msgid "Choose an image from your computer:" ++msgstr "ИзаберОте слОку са вашег рачуМара:" ++ ++#: wp-admin/custom-header.php:186 ++#: wp-admin/includes/media.php:834 ++msgid "Upload" ++msgstr "Слање" ++ ++#: wp-admin/custom-header.php:194 ++msgid "Reset Header Image and Color" ++msgstr "ВратО ОзвПрМу слОку заглавља О бПју" ++ ++#: wp-admin/custom-header.php:195 ++msgid "This will restore the original header image and color. You will not be able to retrieve any customizations." ++msgstr "ОвП ће вратОтО ПрОгОМалМу слОку у заглавља О бПју. Нећете ЌПћО Ўа ОсправОте бОлП кПја прОлагПђавања." ++ ++#: wp-admin/custom-header.php:198 ++msgid "Restore Original Header" ++msgstr "ППвратО ПрОгОМалМП заглавље" ++ ++#: wp-admin/custom-header.php:254 ++msgid "Choose the part of the image you want to use as your header." ++msgstr "ИзаберОте ЎеП слОке кПјО желОте Ўа кПрОстОте каП ваше заглавље." ++ ++#: wp-admin/custom-header.php:269 ++msgid "Crop Header" ++msgstr "ИсецО заглавље" ++ ++#: wp-admin/custom-header.php:321 ++msgid "Header complete!" ++msgstr "ЗавршеМП пПЎешавање заглавља!" ++ ++#: wp-admin/custom-header.php:323 ++msgid "Visit your site and you should see the new header now." ++msgstr "ППсетОте ваш блПг О вОЎећете МПвП заглавље." ++ ++#: wp-admin/edit-attachment-rows.php:53 ++#: wp-admin/edit-post-rows.php:75 ++#: wp-admin/includes/template.php:46 ++#: wp-admin/includes/template.php:79 ++#: wp-admin/includes/template.php:245 ++#: wp-admin/includes/template.php:403 ++#: wp-admin/link-manager.php:172 ++#, php-format ++msgid "Edit \"%s\"" ++msgstr "УреЎО \"%s\"" ++ ++#: wp-admin/edit-attachment-rows.php:68 ++#: wp-admin/edit-form-advanced.php:96 ++#: wp-admin/edit-page-form.php:84 ++#: wp-admin/edit-post-rows.php:49 ++#: wp-admin/edit-post-rows.php:151 ++#: wp-admin/includes/template.php:377 ++#: wp-admin/includes/template.php:447 ++msgid "Unpublished" ++msgstr "НеПбјављеМП" ++ ++#: wp-admin/edit-attachment-rows.php:70 ++#: wp-admin/edit-post-rows.php:52 ++#: wp-admin/edit-post-rows.php:56 ++#: wp-admin/includes/template.php:380 ++#: wp-admin/includes/template.php:384 ++msgid "Y/m/d g:i:s A" ++msgstr "Y/m/d H:i:s" ++ ++#: wp-admin/edit-attachment-rows.php:75 ++#: wp-admin/edit-post-rows.php:62 ++#: wp-admin/includes/template.php:390 ++#, php-format ++msgid "%s from now" ++msgstr "%s раМОје" ++ ++#: wp-admin/edit-attachment-rows.php:77 ++#: wp-admin/edit-post-rows.php:64 ++#: wp-admin/includes/template.php:392 ++#: wp-admin/includes/template.php:640 ++#, php-format ++msgid "%s ago" ++msgstr "%s раМОје" ++ ++#: wp-admin/edit-attachment-rows.php:79 ++#: wp-admin/edit-post-rows.php:66 ++#: wp-admin/includes/template.php:394 ++#: wp-admin/includes/template.php:669 ++msgid "Y/m/d" ++msgstr "Y/m/d" ++ ++#: wp-admin/edit-attachment-rows.php:88 ++#: wp-admin/edit-post-rows.php:31 ++#: wp-admin/includes/template.php:358 ++msgid "(no title)" ++msgstr "(МеЌа МаслПва)" ++ ++#: wp-admin/edit-attachment-rows.php:111 ++#: wp-admin/edit-post-rows.php:117 ++#: wp-admin/includes/template.php:413 ++#, php-format ++msgid "%s pending" ++msgstr "%s чека" ++ ++#: wp-admin/edit-attachment-rows.php:114 ++#: wp-admin/edit-post-rows.php:120 ++#: wp-admin/includes/template.php:416 ++msgid "0" ++msgstr "0" ++ ++#: wp-admin/edit-attachment-rows.php:114 ++#: wp-admin/edit-post-rows.php:120 ++#: wp-admin/includes/template.php:416 ++msgid "1" ++msgstr "1" ++ ++#: wp-admin/edit-attachment-rows.php:114 ++#: wp-admin/edit-post-rows.php:120 ++#: wp-admin/includes/template.php:416 ++msgid "%" ++msgstr "%" ++ ++#: wp-admin/edit-attachment-rows.php:124 ++msgid "Permalink" ++msgstr "ПерЌалОМкПв" ++ ++#: wp-admin/edit-attachment-rows.php:142 ++#: wp-admin/edit-post-rows.php:192 ++msgid "No posts found." ++msgstr "НеЌа МађеМОх члаМака." ++ ++#: wp-admin/edit-category-form.php:3 ++#: wp-admin/edit-category-form.php:4 ++#: wp-admin/edit-link-category-form.php:3 ++#: wp-admin/edit-link-category-form.php:4 ++msgid "Edit Category" ++msgstr "УреЎО категПрОју" ++ ++#: wp-admin/edit-category-form.php:10 ++#: wp-admin/edit-category-form.php:11 ++#: wp-admin/edit-link-category-form.php:10 ++#: wp-admin/edit-link-category-form.php:11 ++msgid "Add Category" ++msgstr "ДПЎај МПву категПрОју" ++ ++#: wp-admin/edit-category-form.php:28 ++msgid "Category Name" ++msgstr "НазОв категПрОје" ++ ++#: wp-admin/edit-category-form.php:30 ++msgid "The name is used to identify the category almost everywhere, for example under the post or in the category widget." ++msgstr "ИЌе се кПрОстО за препПзМавање категПрОје скПрП свуЎа, Ма прОЌер ОспПЎ члаМка ОлО у вОџету категПрОје." ++ ++#: wp-admin/edit-category-form.php:33 ++msgid "Category Slug" ++msgstr "ППЎлПжак категПрОје" ++ ++#: wp-admin/edit-category-form.php:35 ++#: wp-admin/edit-link-category-form.php:34 ++#: wp-admin/edit-tag-form.php:35 ++msgid "The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens." ++msgstr "„ППЎлПжак“ је прОјатељскП ОзЎање URL-а ОЌеМа. ОбОчМП је МапОсаМП са свОЌ ЌалОЌ слПвОЌа (еМглескПЌ латОМОцПЌ) О саЎржО саЌП слПва, брПјеве О цртОце." ++ ++#: wp-admin/edit-category-form.php:38 ++msgid "Category Parent" ++msgstr "НаЎређеМа категПрОја" ++ ++#: wp-admin/edit-category-form.php:40 ++#: wp-admin/includes/media.php:456 ++#: wp-admin/includes/media.php:553 ++#: wp-admin/includes/media.php:1099 ++#: wp-includes/deprecated.php:741 ++#: wp-includes/script-loader.php:181 ++msgid "None" ++msgstr "НеЌа" ++ ++#: wp-admin/edit-category-form.php:41 ++msgid "Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional." ++msgstr "КатегПрОје, за разлОку ПЎ ПзМака, ЌПгу ОЌатО хОјерархОју. МПжете ОЌатО категПрОју Џез, О ОспПЎ ње пПЎкатегПрОје за БО-Бап О БОг беМЎ. ППтпуМП МеПбавезМП." ++ ++#: wp-admin/edit-category-form.php:47 ++msgid "The description is not prominent by default, however some themes may show it." ++msgstr "ОпОс МОје пПЎразуЌеваМП ОстакМут, алО га Опак Меке теЌе ЌПгу прОказатО." ++ ++#: wp-admin/edit-comments.php:4 ++msgid "Edit Comments" ++msgstr "УреЎО кПЌеМтаре" ++ ++#: wp-admin/edit-comments.php:74 ++#, php-format ++msgid "%s comment approved" ++msgid_plural "%s comments approved" ++msgstr[0] "%s кПЌеМтар ПЎПбреМ" ++msgstr[1] "%s кПЌеМтара ПЎПбреМа" ++msgstr[2] "%s кПЌеМтара ПЎПбреМа" ++ ++#: wp-admin/edit-comments.php:79 ++#, php-format ++msgid "%s comment deleted" ++msgid_plural "%s comments deleted" ++msgstr[0] "ПбрОсаМ %s кПЌеМтар" ++msgstr[1] "ПбрОсаМП %s кПЌеМтара" ++msgstr[2] "ПбрОсаМП %s кПЌеМтара" ++ ++#: wp-admin/edit-comments.php:84 ++#, php-format ++msgid "%s comment marked as spam" ++msgid_plural "%s comments marked as spam" ++msgstr[0] "%s кПЌеМтар ПзМачеМ каП МепПжељаМ" ++msgstr[1] "%s кПЌеМтара ПзМачеМа каП МепПжељМа." ++msgstr[2] "%s кПЌеМтара ПзМачеМа каП МепПжељМа." ++ ++#: wp-admin/edit-comments.php:94 ++msgid "Manage Comments" ++msgstr "Управљање кПЌеМтарОЌа" ++ ++#: wp-admin/edit-comments.php:100 ++#, php-format ++msgid "Awaiting Moderation (%s)" ++msgid_plural "Awaiting Moderation (%s)" ++msgstr[0] "Чека уређОвање (%s)" ++msgstr[1] "Чека уређОвање (%s)" ++msgstr[2] "Чека уређОвање (%s)" ++ ++#: wp-admin/edit-comments.php:100 ++msgid "Approved|plural" ++msgstr "ОЎПбреМО" ++ ++#: wp-admin/edit-comments.php:102 ++msgid "Show All Comments" ++msgstr "ПрОкажО све кПЌеМтаре" ++ ++#: wp-admin/edit-comments.php:121 ++msgid "Search Comments" ++msgstr "ПретражО кПЌеМтаре" ++ ++#: wp-admin/edit-comments.php:129 ++msgid "Detail View" ++msgstr "ДетаљаМ преглеЎ" ++ ++#: wp-admin/edit-comments.php:130 ++msgid "List View" ++msgstr "ПреглеЎ у спОску" ++ ++#: wp-admin/edit-comments.php:167 ++#: wp-admin/includes/template.php:675 ++#: wp-admin/includes/template.php:680 ++msgid "Approve" ++msgstr "ОЎПбрО" ++ ++#: wp-admin/edit-comments.php:169 ++msgid "Mark as Spam" ++msgstr "ОзМачО каП МежељеМП" ++ ++#: wp-admin/edit-comments.php:171 ++#: wp-admin/includes/template.php:676 ++#: wp-admin/includes/template.php:683 ++msgid "Unapprove" ++msgstr "Не ПЎПбрО" ++ ++#: wp-admin/edit-comments.php:191 ++#: wp-admin/edit-pages.php:192 ++#: wp-admin/edit.php:218 ++#: wp-admin/includes/template.php:292 ++#: wp-admin/includes/template.php:329 ++#: wp-admin/upload.php:228 ++msgid "Date" ++msgstr "ДатуЌ" ++ ++#: wp-admin/edit-comments.php:192 ++#: wp-admin/edit-pages.php:193 ++#: wp-admin/edit.php:219 ++#: wp-admin/upload.php:229 ++msgid "Actions" ++msgstr "АкцОје" ++ ++#: wp-admin/edit-comments.php:224 ++msgid "No comments awaiting moderation… yet." ++msgstr "НеЌа кПЌеМтара кПјО чекају преглеЎ… јПш увек." ++ ++#: wp-admin/edit-comments.php:230 ++#: wp-content/plugins/akismet/akismet.php:614 ++msgid "No results found." ++msgstr "НеЌа резултата." ++ ++#: wp-admin/edit-form-advanced.php:5 ++#, php-format ++msgid "Post updated. Continue editing below or go back." ++msgstr "ЧлаМак је ажурОраМ. НаставОте са уређОвањеЌ ОспПЎ ОлО се вратОте МазаЎ." ++ ++#: wp-admin/edit-form-advanced.php:6 ++#: wp-admin/edit-page-form.php:5 ++msgid "Custom field updated." ++msgstr "ПрОлагПђеМП пПље ажурОраМП." ++ ++#: wp-admin/edit-form-advanced.php:7 ++#: wp-admin/edit-page-form.php:6 ++msgid "Custom field deleted." ++msgstr "ПрОлагПђеМП пПље ПбрОсаМП." ++ ++#: wp-admin/edit-form-advanced.php:8 ++msgid "Post updated." ++msgstr "ЧлаМак ажурОраМ." ++ ++#: wp-admin/edit-form-advanced.php:20 ++#: wp-admin/edit-form.php:3 ++msgid "Write Post" ++msgstr "НапОшО члаМак" ++ ++#: wp-admin/edit-form-advanced.php:42 ++msgid "Already pinged:" ++msgstr "Већ пОМгПваМП:" ++ ++#: wp-admin/edit-form-advanced.php:50 ++msgid "Save and Continue Editing" ++msgstr "Сачувај О МаставО уређОвање" ++ ++#: wp-admin/edit-form-advanced.php:78 ++msgid "View this Post" ++msgstr "ВОЎО Пвај члаМак" ++ ++#: wp-admin/edit-form-advanced.php:80 ++#: wp-includes/script-loader.php:499 ++msgid "Preview this Post" ++msgstr "ПреглеЎ ПвПг члаМка" ++ ++#: wp-admin/edit-form-advanced.php:86 ++#: wp-admin/edit-page-form.php:72 ++msgid "Publish Status" ++msgstr "Стање Пбјаве" ++ ++#: wp-admin/edit-form-advanced.php:90 ++#: wp-admin/edit-page-form.php:76 ++#: wp-admin/edit-page-form.php:78 ++#: wp-admin/edit-pages.php:39 ++#: wp-admin/edit-post-rows.php:142 ++#: wp-admin/includes/post.php:522 ++#: wp-admin/includes/template.php:438 ++#: wp-includes/post.php:306 ++#: wp-includes/post.php:328 ++msgid "Published" ++msgstr "ОбјављеМП" ++ ++#: wp-admin/edit-form-advanced.php:92 ++#: wp-admin/edit-pages.php:40 ++#: wp-admin/edit-post-rows.php:145 ++#: wp-admin/includes/post.php:523 ++#: wp-admin/includes/template.php:441 ++msgid "Scheduled" ++msgstr "ЗаказаМП" ++ ++#: wp-admin/edit-form-advanced.php:95 ++#: wp-admin/edit-page-form.php:83 ++#: wp-admin/edit-pages.php:41 ++#: wp-admin/edit-post-rows.php:148 ++#: wp-admin/includes/post.php:524 ++#: wp-admin/includes/template.php:444 ++#: wp-includes/post.php:304 ++msgid "Pending Review" ++msgstr "Чека преглеЎ" ++ ++#: wp-admin/edit-form-advanced.php:101 ++msgid "Keep this post private" ++msgstr "Сачувај Пвај члаМак прОватМОЌ" ++ ++#: wp-admin/edit-form-advanced.php:106 ++#: wp-admin/edit-page-form.php:92 ++#, php-format ++msgid "Scheduled for:
    %1$s at %2$s" ++msgstr "ЗаказаМП за:
    %1$s у %2$s" ++ ++#: wp-admin/edit-form-advanced.php:108 ++#: wp-admin/edit-page-form.php:94 ++#, php-format ++msgid "Published on:
    %1$s at %2$s" ++msgstr "ОбјављеМП
    %1$s у %2$s" ++ ++#: wp-admin/edit-form-advanced.php:110 ++#: wp-admin/edit-form-advanced.php:117 ++#: wp-admin/edit-page-form.php:96 ++#: wp-admin/edit-page-form.php:103 ++msgid "Publish immediately" ++msgstr "ОбјавО ПЎЌах" ++ ++#: wp-admin/edit-form-advanced.php:112 ++#: wp-admin/edit-page-form.php:98 ++#, php-format ++msgid "Publish on:
    %1$s at %2$s" ++msgstr "ОбјавО
    %1$s у %2$s" ++ ++#: wp-admin/edit-form-advanced.php:124 ++#: wp-admin/edit-form-comment.php:40 ++#: wp-admin/edit-page-form.php:109 ++#: wp-admin/edit-post-rows.php:168 ++#: wp-admin/includes/dashboard.php:220 ++#: wp-admin/includes/post.php:658 ++#: wp-admin/includes/widgets.php:110 ++#: wp-admin/includes/widgets.php:231 ++#: wp-admin/page.php:66 ++#: wp-admin/plugins.php:127 ++#: wp-admin/post.php:68 ++#: wp-includes/script-loader.php:154 ++#: wp-includes/script-loader.php:159 ++#: wp-includes/script-loader.php:165 ++#: wp-includes/script-loader.php:172 ++#: wp-includes/script-loader.php:193 ++msgid "Edit" ++msgstr "УреЎО" ++ ++#: wp-admin/edit-form-advanced.php:132 ++#: wp-admin/edit-form-comment.php:47 ++#: wp-admin/edit-link-form.php:55 ++#: wp-admin/edit-page-form.php:116 ++#: wp-admin/includes/dashboard.php:217 ++#: wp-content/themes/default/functions.php:374 ++#: wp-content/themes/default/functions.php:381 ++#: wp-includes/js/tinymce/langs/wp-langs.php:63 ++#: wp-includes/script-loader.php:144 ++msgid "Save" ++msgstr "Сачувај" ++ ++#: wp-admin/edit-form-advanced.php:137 ++#: wp-admin/edit-form.php:52 ++#: wp-admin/edit-page-form.php:121 ++#: wp-admin/sidebar.php:78 ++msgid "Publish" ++msgstr "ОбјавО" ++ ++#: wp-admin/edit-form-advanced.php:139 ++#: wp-admin/edit-page-form.php:123 ++msgid "Submit for Review" ++msgstr "ПреЎај Ма преглеЎ" ++ ++#: wp-admin/edit-form-advanced.php:145 ++#: wp-admin/edit-page-form.php:129 ++#, php-format ++msgid "" ++"You are about to delete this draft '%s'\n" ++" 'Cancel' to stop, 'OK' to delete." ++msgstr "" ++"ОбрОсаћете Мацрт '%s'\n" ++" 'ОЎустаМО' за прекОЎ, 'У реЎу' за брОсање." ++ ++#: wp-admin/edit-form-advanced.php:145 ++#, php-format ++msgid "" ++"You are about to delete this post '%s'\n" ++" 'Cancel' to stop, 'OK' to delete." ++msgstr "" ++"ОбрОсаћете члаМак '%s'\n" ++" 'ОЎустаМО' за прекОЎ, 'У реЎу' за брОсање." ++ ++#: wp-admin/edit-form-advanced.php:145 ++msgid "Delete post" ++msgstr "ОбрОшО Ñ‡Ð»Ð°ÐœÐ°Ðº" ++ ++#: wp-admin/edit-form-advanced.php:151 ++#: wp-admin/edit-page-form.php:135 ++#, php-format ++msgid "Last edited by %1$s on %2$s at %3$s" ++msgstr "ППслеЎњО пут ОзЌењеМП ПЎ страМе %1$s Ма %2$s у %3$s" ++ ++#: wp-admin/edit-form-advanced.php:153 ++#: wp-admin/edit-page-form.php:137 ++#, php-format ++msgid "Last edited on %1$s at %2$s" ++msgstr "ППслеЎња ОзЌеМа %1$s у %2$s" ++ ++#: wp-admin/edit-form-advanced.php:162 ++#: wp-admin/edit-form-comment.php:54 ++#: wp-admin/edit-link-form.php:63 ++#: wp-admin/edit-page-form.php:146 ++msgid "Related" ++msgstr "СрПЎМП" ++ ++#: wp-admin/edit-form-advanced.php:166 ++msgid "See Comments on this Post" ++msgstr "ППглеЎај кПЌеМтаре ПвПг члаМка" ++ ++#: wp-admin/edit-form-advanced.php:168 ++#: wp-admin/edit-form-comment.php:57 ++#: wp-admin/edit-page-form.php:152 ++msgid "Manage All Comments" ++msgstr "Управљај свОЌ кПЌеМтарОЌа" ++ ++#: wp-admin/edit-form-advanced.php:169 ++msgid "Manage All Posts" ++msgstr "Управљај свОЌ члаМцОЌа" ++ ++#: wp-admin/edit-form-advanced.php:170 ++msgid "Manage All Categories" ++msgstr "Управљај свОЌ категПрОјаЌа" ++ ++#: wp-admin/edit-form-advanced.php:171 ++msgid "Manage All Tags" ++msgstr "Управљај свОЌ ПзМакаЌа" ++ ++#: wp-admin/edit-form-advanced.php:172 ++msgid "View Drafts" ++msgstr "ВОЎО Мацрте" ++ ++#: wp-admin/edit-form-advanced.php:182 ++#: wp-admin/edit-form.php:14 ++#: wp-admin/edit-page-form.php:162 ++#: wp-admin/includes/media.php:536 ++#: wp-admin/includes/media.php:625 ++#: wp-admin/includes/media.php:1130 ++#: wp-admin/includes/media.php:1158 ++#: wp-admin/includes/media.php:1186 ++#: wp-admin/includes/template.php:293 ++#: wp-admin/includes/template.php:330 ++#: wp-includes/js/tinymce/langs/wp-langs.php:282 ++#: wp-includes/script-loader.php:176 ++msgid "Title" ++msgstr "НаслПв" ++ ++#: wp-admin/edit-form-advanced.php:197 ++#: wp-admin/edit-form.php:25 ++#: wp-admin/menu.php:34 ++msgid "Post" ++msgstr "ЧлаМак" ++ ++#: wp-admin/edit-form-advanced.php:209 ++#: wp-admin/edit-tags.php:4 ++#: wp-admin/includes/media.php:627 ++#: wp-admin/includes/template.php:296 ++#: wp-admin/menu.php:44 ++#: wp-includes/widgets.php:1326 ++msgid "Tags" ++msgstr "ОзМаке" ++ ++#: wp-admin/edit-form-advanced.php:221 ++#: wp-admin/edit-link-form.php:105 ++msgid "+ Add New Category" ++msgstr "+ ДПЎај МПву категПрОју" ++ ++#: wp-admin/edit-form-advanced.php:223 ++#: wp-admin/edit-link-form.php:107 ++msgid "New category name" ++msgstr "НазОв МПве категПрОје" ++ ++#: wp-admin/edit-form-advanced.php:224 ++msgid "Parent category" ++msgstr "НаЎређеМа категПрОја" ++ ++#: wp-admin/edit-form-advanced.php:225 ++#: wp-admin/edit-link-form.php:108 ++#: wp-admin/includes/widgets.php:104 ++#: wp-includes/script-loader.php:116 ++#: wp-includes/script-loader.php:150 ++#: wp-includes/script-loader.php:192 ++msgid "Add" ++msgstr "ДПЎај" ++ ++#: wp-admin/edit-form-advanced.php:232 ++#: wp-admin/edit-link-form.php:115 ++msgid "All Categories" ++msgstr "Све категПрОје" ++ ++#: wp-admin/edit-form-advanced.php:233 ++#: wp-admin/edit-link-form.php:116 ++msgid "Most Used" ++msgstr "НајкПрОшћеМОје" ++ ++#: wp-admin/edit-form-advanced.php:255 ++#: wp-admin/edit-link-form.php:136 ++#: wp-admin/edit-page-form.php:189 ++msgid "Advanced Options" ++msgstr "НапреЎМе ПпцОје" ++ ++#: wp-admin/edit-form-advanced.php:258 ++msgid "Excerpt" ++msgstr "ОЎлПЌак" ++ ++#: wp-admin/edit-form-advanced.php:260 ++msgid "Excerpts are optional hand-crafted summaries of your content. You can use them in your template" ++msgstr "ОЎлПЌцО су МеПбавезМО сажецО вашег саЎржаја. МПжете Ох кПрОстО у вашеЌ шаблПМу" ++ ++#: wp-admin/edit-form-advanced.php:265 ++msgid "Trackbacks" ++msgstr "ППвратМе везе" ++ ++#: wp-admin/edit-form-advanced.php:267 ++msgid "Send trackbacks to:" ++msgstr "КаљО пПвратМе везе Ма:" ++ ++#: wp-admin/edit-form-advanced.php:267 ++msgid "Separate multiple URLs with spaces" ++msgstr "ОЎвПјОте вОше УРИ-ја разЌацОЌа" ++ ++#: wp-admin/edit-form-advanced.php:268 ++msgid "Trackbacks are a way to notify legacy blog systems that you’ve linked to them. If you link other WordPress blogs they’ll be notified automatically using pingbacks, no other action necessary." ++msgstr "ППвратМе везе су МачОМ Ўа ПбавестОте блПг сОстеЌе Ўа сте ПставОлО везу ка њОЌа. УкПлОкП ПставОте везу ка ЎругОЌ ВПрЎпрес блПгПвОЌа ПМО ће бОтО ПбавештеМО аутПЌатскО кПрОстећО пОМгПве, Ўруга акцОја МОје пПтребМа." ++ ++#: wp-admin/edit-form-advanced.php:277 ++#: wp-admin/edit-page-form.php:192 ++msgid "Custom Fields" ++msgstr "ПрОлагПђеМа пПља" ++ ++#: wp-admin/edit-form-advanced.php:292 ++#: wp-admin/edit-page-form.php:207 ++msgid "Custom fields can be used to add extra metadata to a post that you can use in your theme." ++msgstr "ПрОлагПђеМа пПља ЌПгу бОтО кПрОшћеМа за ЎПЎавање пПсебМОх ЌетапПЎатака члаМку кПје ЌПжете кПрОстОтО у вашПј теЌО." ++ ++#: wp-admin/edit-form-advanced.php:299 ++#: wp-admin/edit-page-form.php:212 ++msgid "Comments & Pings" ++msgstr "КПЌеМтарО О пОМгПвО" ++ ++#: wp-admin/edit-form-advanced.php:304 ++#: wp-admin/edit-page-form.php:217 ++msgid "Allow Comments" ++msgstr "ДПзвПлО кПЌеМтаре" ++ ++#: wp-admin/edit-form-advanced.php:305 ++#: wp-admin/edit-page-form.php:218 ++msgid "Allow Pings" ++msgstr "ДПзвПлО пОМгПве" ++ ++#: wp-admin/edit-form-advanced.php:306 ++msgid "These settings apply to this post only. “Pings” are trackbacks and pingbacks." ++msgstr "Ова пПЎешавања се ПЎМПсе саЌП Ма Пвај члаМак. „ПОМгПвО“ су пПвратМе везе О пПвратМО пОМгПвО." ++ ++#: wp-admin/edit-form-advanced.php:311 ++msgid "Password Protect This Post" ++msgstr "ЗаштОтО Пвај члаМак лПзОМкПЌ" ++ ++#: wp-admin/edit-form-advanced.php:314 ++msgid "Setting a password will require people who visit your blog to enter the above password to view this post and its comments." ++msgstr "ППстављање лПзОМке ће захтеватО ПЎ љуЎО кПје пПсећују ваш блПг Ўа уМесу лПзОМку ОзМаЎ Ўа бО вОЎелО члаМке О кПЌеМтаре." ++ ++#: wp-admin/edit-form-advanced.php:319 ++msgid "Post Slug" ++msgstr "ППЎлПжак члаМка" ++ ++#: wp-admin/edit-form-advanced.php:332 ++msgid "Post Author" ++msgstr "АутПр члаМка" ++ ++#: wp-admin/edit-form-comment.php:3 ++#, php-format ++msgid "Editing Comment # %s" ++msgstr "УређОвање кПЌеМтара # %s" ++ ++#: wp-admin/edit-form-comment.php:20 ++msgid "View this Comment" ++msgstr "ВОЎО Пвај кПЌеМтар" ++ ++#: wp-admin/edit-form-comment.php:25 ++msgid "Approval Status" ++msgstr "Стање ПЎПбрења" ++ ++#: wp-admin/edit-form-comment.php:28 ++msgid "Approved" ++msgstr "ОЎПбреМП" ++ ++#: wp-admin/edit-form-comment.php:29 ++msgid "Moderated" ++msgstr "УређОваМП" ++ ++#: wp-admin/edit-form-comment.php:30 ++#: wp-admin/includes/template.php:688 ++#: wp-content/plugins/akismet/akismet.php:639 ++msgid "Spam" ++msgstr "НежељеМО кПЌеМтарО" ++ ++#: wp-admin/edit-form-comment.php:35 ++#, php-format ++msgid "%1$s at %2$s" ++msgstr "%1$s у %2$s" ++ ++#: wp-admin/edit-form-comment.php:49 ++msgid "" ++"You are about to delete this comment. \n" ++" 'Cancel' to stop, 'OK' to delete." ++msgstr "" ++"ОбрОсаћете Пвај кПЌеМтар кПјО је пПслаП '%s. \n" ++" 'ОЎустаМО' за прекОЎ, 'У реЎу' за Маставак." ++ ++#: wp-admin/edit-form-comment.php:49 ++msgid "Delete comment" ++msgstr "ОбрОшО кПЌеМтар" ++ ++#: wp-admin/edit-form-comment.php:58 ++msgid "Moderate Comments" ++msgstr "УређОвање кПЌеМтара" ++ ++#: wp-admin/edit-form.php:14 ++msgid "Help on titles" ++msgstr "ППЌПћ са МаслПвОЌа" ++ ++#: wp-admin/edit-form.php:19 ++msgid "Help on categories" ++msgstr "ППЌПћ са категПрОјаЌа" ++ ++#: wp-admin/edit-form.php:25 ++msgid "Help with post field" ++msgstr "ППЌПћ са пПљОЌа за ПбјављОвање" ++ ++#: wp-admin/edit-form.php:45 ++#, php-format ++msgid "TrackBack a URL: (Separate multiple URLs with spaces.)" ++msgstr "ППвратМе везе a URI: (ОЎвПјОте вОше URI-ја разЌацОЌа.)
    " ++ ++#: wp-admin/edit-form.php:48 ++#: wp-admin/sidebar.php:76 ++msgid "Save as Draft" ++msgstr "Сачувај каП Мацрт" ++ ++#: wp-admin/edit-form.php:49 ++msgid "Save as Private" ++msgstr "Сачувај каП прОватМП" ++ ++#: wp-admin/edit-form.php:56 ++msgid "Advanced Editing" ++msgstr "НапреЎМП уређОвање" ++ ++#: wp-admin/edit-link-categories.php:35 ++#: wp-admin/menu.php:45 ++msgid "Link Categories" ++msgstr "КатегПрОје веза" ++ ++#: wp-admin/edit-link-categories.php:48 ++msgid "Categories deleted." ++msgstr "КатегПрОје ПбрОсаМе." ++ ++#: wp-admin/edit-link-categories.php:59 ++#, php-format ++msgid "Manage Link Categories (add new)" ++msgstr "Управљај категПрОјаЌа веза (ЎПЎај МПву)" ++ ++#: wp-admin/edit-link-categories.php:61 ++msgid "Manage Link Categories" ++msgstr "Управљај категПрОјаЌа веза" ++ ++#: wp-admin/edit-link-categories.php:107 ++#: wp-admin/menu.php:42 ++#: wp-includes/widgets.php:1372 ++msgid "Links" ++msgstr "Везе" ++ ++#: wp-admin/edit-link-categories.php:148 ++#, php-format ++msgid "Note:
    Deleting a category does not delete the links in that category. Instead, links that were only assigned to the deleted category are set to the category %s." ++msgstr "НапПЌеМа:БрОсање категПрОје Меће ПбрОсатО члаМке Оз те категПрОје, саЌП ће Ох преЌестОтО у ПсМПвМу категПрОју %s." ++ ++#: wp-admin/edit-link-category-form.php:28 ++msgid "Category name" ++msgstr "НазОв категПрОје" ++ ++#: wp-admin/edit-link-category-form.php:32 ++msgid "Category slug" ++msgstr "ППЎлПжак категПрОје" ++ ++#: wp-admin/edit-link-category-form.php:37 ++msgid "Description (optional)" ++msgstr "ОпОс (ПпцОПМП)" ++ ++#: wp-admin/edit-link-form.php:3 ++#: wp-admin/link.php:92 ++msgid "Edit Link" ++msgstr "УреЎО везу" ++ ++#: wp-admin/edit-link-form.php:8 ++#: wp-admin/edit-link-form.php:9 ++#: wp-admin/link-add.php:4 ++msgid "Add Link" ++msgstr "ДПЎај везу" ++ ++#: wp-admin/edit-link-form.php:46 ++msgid "Visit Link" ++msgstr "ППсетО везу" ++ ++#: wp-admin/edit-link-form.php:51 ++msgid "Keep this link private" ++msgstr "Сачуај Пву везу прОватМПЌ" ++ ++#: wp-admin/edit-link-form.php:58 ++#, php-format ++msgid "" ++"You are about to delete this link '%s'\n" ++"'Cancel' to stop, 'OK' to delete." ++msgstr "" ++"ОбрОсаћете Пву везу '%s'\n" ++" 'ОЎустаМО' за прекОЎ, 'У реЎу' за брОсање." ++ ++#: wp-admin/edit-link-form.php:58 ++msgid "Delete link" ++msgstr "ОбрОшО ÑÐ²Ðµ" ++ ++#: wp-admin/edit-link-form.php:66 ++msgid "Manage All Links" ++msgstr "Управљај свОЌ везаЌа" ++ ++#: wp-admin/edit-link-form.php:67 ++msgid "Manage All Link Categories" ++msgstr "Управљај свОЌ категПрОјаЌа веза" ++ ++#: wp-admin/edit-link-form.php:68 ++#: wp-admin/import/dotclear.php:587 ++#: wp-admin/import/textpattern.php:523 ++msgid "Import Links" ++msgstr "УвПз веза" ++ ++#: wp-admin/edit-link-form.php:80 ++msgid "Example: Nifty blogging software" ++msgstr "ПрОЌер: НајбПљО сПфтвер за блПг" ++ ++#: wp-admin/edit-link-form.php:85 ++msgid "Web Address" ++msgstr "Веб аЎреса" ++ ++#: wp-admin/edit-link-form.php:88 ++msgid "Example: http://wordpress.org/ — don’t forget the http://" ++msgstr "ПрОЌер: http://wordpress.org/ — МеЌПјте забПравОтО http://" ++ ++#: wp-admin/edit-link-form.php:96 ++msgid "This will be shown when someone hovers over the link in the blogroll, or optionally below the link." ++msgstr "ОвП ће бОтО прОказаМП каЎа МекП пређе пПказОвачеЌ прекП везе у блПгПвМОку, ОлО ПпцОПМП ОспПЎ везе." ++ ++#: wp-admin/edit-link-form.php:139 ++#: wp-includes/js/tinymce/langs/wp-langs.php:279 ++#: wp-includes/js/tinymce/langs/wp-langs.php:328 ++msgid "Target" ++msgstr "ОЎреЎОште" ++ ++#: wp-admin/edit-link-form.php:149 ++#: wp-admin/edit-link-form.php:183 ++#: wp-admin/edit-link-form.php:216 ++#: wp-admin/edit-link-form.php:239 ++msgid "none" ++msgstr "МОкП" ++ ++#: wp-admin/edit-link-form.php:150 ++msgid "Choose the frame your link targets. Essentially this means if you choose _blank your link will open in a new window." ++msgstr "ИзаберОте ПквОр у кПЌ ће се ПтваратО веза. ТП у стварО зМачО Ўа акП Озаберете _blank ваша веза ће се ПтвПрОтО у МПвПЌ прПзПру/језОчку." ++ ++#: wp-admin/edit-link-form.php:155 ++msgid "Link Relationship (XFN)" ++msgstr "ОЎМПсО веза (XFN)" ++ ++#: wp-admin/edit-link-form.php:159 ++msgid "rel:" ++msgstr "rel:" ++ ++#: wp-admin/edit-link-form.php:166 ++msgid "identity" ++msgstr "ОЎеМтОтет" ++ ++#: wp-admin/edit-link-form.php:170 ++msgid "another web address of mine" ++msgstr "ЌПја Ўруга веб аЎреса" ++ ++#: wp-admin/edit-link-form.php:174 ++msgid "friendship" ++msgstr "прОјатељствП" ++ ++#: wp-admin/edit-link-form.php:177 ++msgid "contact" ++msgstr "кПМтакт" ++ ++#: wp-admin/edit-link-form.php:179 ++msgid "acquaintance" ++msgstr "пПзМаМствП" ++ ++#: wp-admin/edit-link-form.php:181 ++msgid "friend" ++msgstr "прОјатељ" ++ ++#: wp-admin/edit-link-form.php:187 ++msgid "physical" ++msgstr "фОзОчкО" ++ ++#: wp-admin/edit-link-form.php:191 ++msgid "met" ++msgstr "сусрет" ++ ++#: wp-admin/edit-link-form.php:195 ++msgid "professional" ++msgstr "прПфесОПМалМП" ++ ++#: wp-admin/edit-link-form.php:199 ++msgid "co-worker" ++msgstr "сараЎМОк" ++ ++#: wp-admin/edit-link-form.php:202 ++msgid "colleague" ++msgstr "кПлега" ++ ++#: wp-admin/edit-link-form.php:206 ++msgid "geographical" ++msgstr "геПграфскО" ++ ++#: wp-admin/edit-link-form.php:210 ++msgid "co-resident" ++msgstr "сустаМар" ++ ++#: wp-admin/edit-link-form.php:213 ++msgid "neighbor" ++msgstr "кПЌшОја" ++ ++#: wp-admin/edit-link-form.php:220 ++msgid "family" ++msgstr "фаЌОлОја" ++ ++#: wp-admin/edit-link-form.php:224 ++msgid "child" ++msgstr "Ўете" ++ ++#: wp-admin/edit-link-form.php:227 ++msgid "kin" ++msgstr "срПЎМОк" ++ ++#: wp-admin/edit-link-form.php:230 ++msgid "parent" ++msgstr "рПЎОтељ" ++ ++#: wp-admin/edit-link-form.php:233 ++msgid "sibling" ++msgstr "брат/сестра" ++ ++#: wp-admin/edit-link-form.php:236 ++msgid "spouse" ++msgstr "супружМОк" ++ ++#: wp-admin/edit-link-form.php:243 ++msgid "romantic" ++msgstr "рПЌаМтОчМП" ++ ++#: wp-admin/edit-link-form.php:247 ++msgid "muse" ++msgstr "Ќуза" ++ ++#: wp-admin/edit-link-form.php:250 ++msgid "crush" ++msgstr "сОЌпатОја" ++ ++#: wp-admin/edit-link-form.php:253 ++msgid "date" ++msgstr "суЎар" ++ ++#: wp-admin/edit-link-form.php:256 ++msgid "sweetheart" ++msgstr "срце" ++ ++#: wp-admin/edit-link-form.php:263 ++msgid "If the link is to a person, you can specify your relationship with them using the above form. If you would like to learn more about the idea check out XFN." ++msgstr "УкПлОкП је веза ка ПсПбО, ЌПжете ПЎреЎОтО ПЎМПс са њПЌ кПрОстећО Пбразац ОзМаЎ. УкПлОкП желОте Ўа МаучОте вОше П ПвПј ОЎејО, пПглеЎајте XFN." ++ ++#: wp-admin/edit-link-form.php:268 ++#: wp-content/themes/default/functions.php:393 ++#: wp-includes/js/tinymce/langs/wp-langs.php:291 ++#: wp-includes/js/tinymce/wp-mce-help.php:163 ++msgid "Advanced" ++msgstr "НапреЎМП" ++ ++#: wp-admin/edit-link-form.php:272 ++msgid "Image Address" ++msgstr "АЎреса слОке" ++ ++#: wp-admin/edit-link-form.php:276 ++msgid "RSS Address" ++msgstr "RSS аЎреса" ++ ++#: wp-admin/edit-link-form.php:280 ++msgid "Notes" ++msgstr "НапПЌеМе" ++ ++#: wp-admin/edit-link-form.php:284 ++msgid "Rating" ++msgstr "ОцеМa" ++ ++#: wp-admin/edit-link-form.php:293 ++msgid "(Leave at 0 for no rating.)" ++msgstr "(ОставОте 0 за МеПцењОвање.)" ++ ++#: wp-admin/edit-page-form.php:4 ++#, php-format ++msgid "Page updated. Continue editing below or go back." ++msgstr "СтраМа је ажурОраМа. НаставОте са уређОвањеЌ ОспПЎ ОлО се вратОте МазаЎ." ++ ++#: wp-admin/edit-page-form.php:7 ++msgid "Page updated." ++msgstr "СтраМаа ажурОраМа." ++ ++#: wp-admin/edit-page-form.php:36 ++msgid "Write Page" ++msgstr "НапОшО страМу" ++ ++#: wp-admin/edit-page-form.php:64 ++msgid "View this Page" ++msgstr "ВОЎО Пву страМу" ++ ++#: wp-admin/edit-page-form.php:66 ++#: wp-includes/script-loader.php:498 ++msgid "Preview this Page" ++msgstr "ПреглеЎај Пву страМу" ++ ++#: wp-admin/edit-page-form.php:81 ++msgid "Pending" ++msgstr "Чека" ++ ++#: wp-admin/edit-page-form.php:88 ++msgid "Keep this page private" ++msgstr "Сачувај Пву страМу прОватМПЌ" ++ ++#: wp-admin/edit-page-form.php:129 ++#, php-format ++msgid "" ++"You are about to delete this page '%s'\n" ++" 'Cancel' to stop, 'OK' to delete." ++msgstr "" ++"ОбрОсаћете страМу '%s'\n" ++" 'ОЎустаМО' за прекОЎ, 'У реЎу' за брОсање." ++ ++#: wp-admin/edit-page-form.php:129 ++msgid "Delete page" ++msgstr "ОбрОшО ÑÑ‚Ñ€Ð°ÐœÑƒ" ++ ++#: wp-admin/edit-page-form.php:150 ++msgid "See Comments on this Page" ++msgstr "ППглеЎај кПЌеМтаре Ма ПвПј страМО" ++ ++#: wp-admin/edit-page-form.php:153 ++msgid "Manage All Pages" ++msgstr "Управљај свОЌ страМаЌа" ++ ++#: wp-admin/edit-page-form.php:177 ++#: wp-admin/menu.php:35 ++#: wp-includes/script-loader.php:180 ++msgid "Page" ++msgstr "СтраМа" ++ ++#: wp-admin/edit-page-form.php:219 ++msgid "These settings apply to this page only. “Pings” are trackbacks and pingbacks." ++msgstr "Ова пПЎешавања се ПЎМПсе саЌП Ма Пву страМу. „ПОМгПвО“ су пПвратМе везе О пПвратМО пОМгПвО." ++ ++#: wp-admin/edit-page-form.php:224 ++msgid "Password Protect This Page" ++msgstr "ЗаштОтО Пву страМу лПзОМкПЌ" ++ ++#: wp-admin/edit-page-form.php:227 ++msgid "Setting a password will require people who visit your blog to enter the above password to view this page and its comments." ++msgstr "ППстављање лПзОМке ће захтеватО ПЎ љуЎО кПје пПсећују ваш блПг Ўа уМесу лПзОМку ОзМаЎ Ўа бО вОЎелО Пву страМу О њеМе кПЌеМтаре." ++ ++#: wp-admin/edit-page-form.php:232 ++msgid "Page Slug" ++msgstr "ППЎлПжак страМе" ++ ++#: wp-admin/edit-page-form.php:239 ++msgid "Page Parent" ++msgstr "НаЎређеМа страМа" ++ ++#: wp-admin/edit-page-form.php:242 ++msgid "Main Page (no parent)" ++msgstr "ГлавМа страМа (МеЌа МаЎређеМе)" ++ ++#: wp-admin/edit-page-form.php:245 ++msgid "You can arrange your pages in hierarchies, for example you could have an “About” page that has “Life Story” and “My Dog” pages under it. There are no limits to how deeply nested you can make pages." ++msgstr "МПжете пПређатО страМе хОјерархОјскО, Ма прОЌер ЌПжете ОЌатО страМу „О ЌеМО“, кПја ОЌа страМе „ЖОвПтМа прОча“ О „МПј пас“ ОспПЎ ње. НеЌа ПграМОчења кПлОкП ЎубПкП ЌПжете разграМатО страМе." ++ ++#: wp-admin/edit-page-form.php:251 ++#: wp-admin/includes/file.php:3 ++msgid "Page Template" ++msgstr "КаблПМ страМе" ++ ++#: wp-admin/edit-page-form.php:254 ++msgid "Default Template" ++msgstr "ППЎразуЌеваМО шаблПМ" ++ ++#: wp-admin/edit-page-form.php:257 ++msgid "Some themes have custom templates you can use for certain pages that might have additional features or custom layouts. If so, you’ll see them above." ++msgstr "Неке теЌе ОЌају прОлагПђеМе шаблПМе кПје ЌПжете Ўа кПрОстОте за ПЎређеМе страМе кПје ЌПгу ОЌатО ЎПЎатМе ЌПгућМПстО ОлО прОлагПђеМ ОзглеЎ. УкПлОкП је такП, вОЎећете Ох ОзМаЎ." ++ ++#: wp-admin/edit-page-form.php:263 ++msgid "Page Order" ++msgstr "ППреЎак страМа" ++ ++#: wp-admin/edit-page-form.php:266 ++msgid "Pages are usually ordered alphabetically, but you can put a number above to change the order pages appear in. (We know this is a little janky, it’ll be better in future releases.)" ++msgstr "СтраМе су ПбОчМП пПређаМе азбучМОЌ реЎПЌ, алО ЌПжете ставОтО брПј ОзМаЎ Ўа прПЌеМОте реЎПслеЎ страМа." ++ ++#: wp-admin/edit-page-form.php:277 ++msgid "Page Author" ++msgstr "АутПр страМе" ++ ++#: wp-admin/edit-pages.php:11 ++#: wp-admin/page.php:134 ++msgid "You are not allowed to delete this page." ++msgstr "НОје ваЌ ЎПзвПљеМП Ўа ОзбрОшете Пву страМу." ++ ++#: wp-admin/edit-pages.php:15 ++#: wp-admin/edit-pages.php:18 ++#: wp-admin/edit.php:15 ++#: wp-admin/edit.php:18 ++#: wp-admin/page.php:138 ++#: wp-admin/page.php:141 ++#: wp-admin/post.php:149 ++#: wp-admin/post.php:152 ++#: wp-admin/upload.php:18 ++msgid "Error in deleting..." ++msgstr "Грешка у брОсању..." ++ ++#: wp-admin/edit-pages.php:34 ++#: wp-admin/menu.php:41 ++#: wp-includes/post-template.php:306 ++#: wp-includes/widgets.php:366 ++#: wp-includes/widgets.php:1360 ++#: wp-includes/widgets.php:1361 ++msgid "Pages" ++msgstr "СтраМе" ++ ++#: wp-admin/edit-pages.php:39 ++msgid "Published pages" ++msgstr "ОбјављеМе страМе" ++ ++#: wp-admin/edit-pages.php:39 ++#: wp-admin/includes/post.php:522 ++#, php-format ++msgid "Published (%s)" ++msgid_plural "Published (%s)" ++msgstr[0] "ОбјављеМП (%s)" ++msgstr[1] "ОбјављеМП (%s)" ++msgstr[2] "ОбјављеМП (%s)" ++ ++#: wp-admin/edit-pages.php:40 ++msgid "Scheduled pages" ++msgstr "ЗаказаМе страМе" ++ ++#: wp-admin/edit-pages.php:40 ++#: wp-admin/includes/post.php:523 ++#, php-format ++msgid "Scheduled (%s)" ++msgid_plural "Scheduled (%s)" ++msgstr[0] "ЗаказаМП (%s)" ++msgstr[1] "ЗаказаМП (%s)" ++msgstr[2] "ЗаказаМП (%s)" ++ ++#: wp-admin/edit-pages.php:41 ++msgid "Pending pages" ++msgstr "СтраМе Ма чекању" ++ ++#: wp-admin/edit-pages.php:41 ++#: wp-admin/includes/post.php:524 ++#, php-format ++msgid "Pending Review (%s)" ++msgid_plural "Pending Review (%s)" ++msgstr[0] "Чека преглеЎ (%s)" ++msgstr[1] "Чека преглеЎ (%s)" ++msgstr[2] "Чека преглеЎ (%s)" ++ ++#: wp-admin/edit-pages.php:42 ++#: wp-admin/includes/post.php:525 ++#: wp-includes/post.php:303 ++#: wp-includes/post.php:326 ++msgid "Draft" ++msgstr "Нацрт" ++ ++#: wp-admin/edit-pages.php:42 ++#: wp-admin/includes/post.php:525 ++msgid "Drafts|manage posts header" ++msgstr "НацртО|управљај заглављОЌа члаМака" ++ ++#: wp-admin/edit-pages.php:42 ++#: wp-admin/includes/post.php:525 ++#, php-format ++msgid "Draft (%s)" ++msgid_plural "Drafts (%s)" ++msgstr[0] "Нацрт (%s)" ++msgstr[1] "НацртО (%s)" ++msgstr[2] "НацртО (%s)" ++ ++#: wp-admin/edit-pages.php:43 ++#: wp-admin/includes/post.php:526 ++#: wp-includes/post.php:305 ++#: wp-includes/post.php:327 ++msgid "Private" ++msgstr "ПрОватМП" ++ ++#: wp-admin/edit-pages.php:43 ++msgid "Private pages" ++msgstr "ПрОватМе страМе" ++ ++#: wp-admin/edit-pages.php:43 ++#: wp-admin/includes/post.php:526 ++#, php-format ++msgid "Private (%s)" ++msgid_plural "Private (%s)" ++msgstr[0] "ПрОватМП (%s)" ++msgstr[1] "ПрОватМП (%s)" ++msgstr[2] "ПрОватМП (%s)" ++ ++#: wp-admin/edit-pages.php:46 ++msgid "Manage Pages" ++msgstr "Управљање страМаЌа" ++ ++#: wp-admin/edit-pages.php:68 ++#: wp-admin/edit.php:74 ++#: wp-admin/upload.php:77 ++#, php-format ++msgid "matching “%s”" ++msgstr "кПјО ПЎгПварају упОту „%s“" ++ ++#: wp-admin/edit-pages.php:72 ++#: wp-admin/edit.php:71 ++#: wp-admin/upload.php:74 ++#, php-format ++msgid "by %s" ++msgstr "ПЎ %s" ++ ++#: wp-admin/edit-pages.php:74 ++#, php-format ++msgid "%1$s%2$s%3$s|You can reorder these: 1: Pages, 2: by {s}, 3: matching {s}" ++msgstr "%1$s%2$s%3$s|МПжете прПЌеМОтО реЎПслеЎ: 1: СтраМа, 2: ПЎ {s}, 3: ПЎгПвара {s}" ++ ++#: wp-admin/edit-pages.php:85 ++msgid "All Pages" ++msgstr "Све страМе" ++ ++#: wp-admin/edit-pages.php:108 ++msgid "Your page has been saved." ++msgstr "Ваша страМа је сачуваМа." ++ ++#: wp-admin/edit-pages.php:108 ++#: wp-admin/page-new.php:17 ++msgid "View page" ++msgstr "ВОЎО страМу" ++ ++#: wp-admin/edit-pages.php:108 ++msgid "Edit page" ++msgstr "УреЎО страМу" ++ ++#: wp-admin/edit-pages.php:115 ++msgid "Search Pages" ++msgstr "ПретражО страМе" ++ ++#: wp-admin/edit-pages.php:165 ++msgid "No pages found." ++msgstr "НеЌа МађеМОх страМа." ++ ++#: wp-admin/edit.php:11 ++#: wp-admin/post.php:145 ++#: wp-admin/upload.php:14 ++msgid "You are not allowed to delete this post." ++msgstr "НОје ваЌ ЎПзвПљеМП Ўа ОзбрОшете Пвај члаМак." ++ ++#: wp-admin/edit.php:54 ++#: wp-admin/upload.php:57 ++#: wp-content/themes/classic/comments-popup.php:9 ++#, php-format ++msgid "Comments on %s" ++msgstr "КПЌеМтарО Ма %s" ++ ++#: wp-admin/edit.php:56 ++msgid "Manage Posts|manage posts header" ++msgstr "Управљање члаМцОЌа" ++ ++#: wp-admin/edit.php:60 ++#: wp-admin/upload.php:63 ++#, php-format ++msgid "Previous %s" ++msgstr "ПретхПЎМО %s" ++ ++#: wp-admin/edit.php:60 ++#: wp-admin/upload.php:63 ++#, php-format ++msgid "Latest %s" ++msgstr "ППслеЎњО %s" ++ ++#: wp-admin/edit.php:68 ++#: wp-admin/upload.php:71 ++msgid "by other authors" ++msgstr "пП ЎругОЌ аутПрОЌа" ++ ++#: wp-admin/edit.php:75 ++#: wp-admin/upload.php:78 ++#, php-format ++msgid "in “%s”" ++msgstr "у „%s“" ++ ++#: wp-admin/edit.php:76 ++#: wp-admin/upload.php:79 ++#, php-format ++msgid "tagged with “%s”" ++msgstr "ПзМачеМП са „%s“" ++ ++#: wp-admin/edit.php:77 ++#: wp-admin/upload.php:80 ++#, php-format ++msgid "during %s" ++msgstr "тПкПЌ %s" ++ ++#: wp-admin/edit.php:78 ++#: wp-admin/upload.php:81 ++#, fuzzy, php-format ++msgid "%1$s%2$s%3$s%4$s%5$s%6$s|You can reorder these: 1: Posts, 2: by {s}, 3: matching {s}, 4: in {s}, 5: tagged with {s}, 6: during {s}" ++msgstr "%1$s%2$s%3$s%4$s%5$s|МПжете прПЌеМОтО реЎПслеЎ: 1: ЧлаМцО, 2: ПЎ {s}, 3: ПЎгПвара {s}, 4: у {s}, 5: тПкПЌ {s}" ++ ++#: wp-admin/edit.php:87 ++msgid "All Posts" ++msgstr "СвО члаМцО" ++ ++#: wp-admin/edit.php:113 ++#: wp-admin/post-new.php:28 ++msgid "Your post has been saved." ++msgstr "Ваш члаМак је сачуваМ." ++ ++#: wp-admin/edit.php:113 ++#: wp-admin/post-new.php:28 ++msgid "View post" ++msgstr "ВОЎО члаМак" ++ ++#: wp-admin/edit.php:113 ++#: wp-admin/post-new.php:28 ++#: wp-includes/link-template.php:484 ++msgid "Edit post" ++msgstr "УреЎО члаМак" ++ ++#: wp-admin/edit.php:120 ++msgid "Search Posts" ++msgstr "ПретражО члаМке" ++ ++#: wp-admin/edit.php:150 ++#: wp-admin/includes/media.php:1023 ++#: wp-admin/upload.php:162 ++msgid "Show all dates" ++msgstr "ПрОкажО све ЎатуЌе" ++ ++#: wp-admin/edit.php:170 ++msgid "View all categories" ++msgstr "ВОЎО све категПрОје" ++ ++#: wp-admin/edit.php:172 ++#: wp-admin/link-manager.php:110 ++#: wp-admin/upload.php:182 ++msgid "Filter" ++msgstr "ЀОлтер" ++ ++#: wp-admin/edit-post-rows.php:76 ++msgid " — Protected" ++msgstr " — ЗаштОћеМП" ++ ++#: wp-admin/edit-post-rows.php:76 ++#: wp-admin/includes/template.php:404 ++msgid " — Private" ++msgstr " — ПрОватМП" ++ ++#: wp-admin/edit-post-rows.php:90 ++#: wp-admin/includes/upgrade.php:64 ++#: wp-admin/includes/upgrade.php:65 ++#: wp-includes/category-template.php:116 ++msgid "Uncategorized" ++msgstr "НекатегПрОзПваМП" ++ ++#: wp-admin/edit-post-rows.php:106 ++msgid "No Tags" ++msgstr "НеЌа ПзМака" ++ ++#: wp-admin/edit-post-rows.php:137 ++#: wp-admin/includes/template.php:433 ++#, php-format ++msgid "View \"%s\"" ++msgstr "ВОЎО \"%s\"" ++ ++#: wp-admin/edit-post-rows.php:162 ++msgid "View" ++msgstr "ППглеЎај" ++ ++#: wp-admin/edit-tag-form.php:3 ++#: wp-admin/edit-tag-form.php:4 ++msgid "Edit Tag" ++msgstr "УреЎО ПзМаку" ++ ++#: wp-admin/edit-tag-form.php:10 ++#: wp-admin/edit-tag-form.php:11 ++msgid "Add Tag" ++msgstr "ДПЎај ПзМаку" ++ ++#: wp-admin/edit-tag-form.php:28 ++msgid "Tag name" ++msgstr "НазОв ПзМаке" ++ ++#: wp-admin/edit-tag-form.php:30 ++msgid "The name is how the tag appears on your site." ++msgstr "ИЌе је ПМП какП се ПзМака пПјављује Ма вашеЌ блПгу." ++ ++#: wp-admin/edit-tag-form.php:33 ++msgid "Tag slug" ++msgstr "ППЎлПжак ПзМаке" ++ ++#: wp-admin/edit-tags.php:113 ++msgid "Tag added." ++msgstr "ОзМака ЎПЎата." ++ ++#: wp-admin/edit-tags.php:114 ++msgid "Tag deleted." ++msgstr "ОзМака ПбрОсаМа." ++ ++#: wp-admin/edit-tags.php:115 ++msgid "Tag updated." ++msgstr "ОзМака ажурОраМа." ++ ++#: wp-admin/edit-tags.php:116 ++msgid "Tag not added." ++msgstr "ОзМака МОје ЎПЎата." ++ ++#: wp-admin/edit-tags.php:117 ++msgid "Tag not updated." ++msgstr "ОзМака МОје ажурОраМа." ++ ++#: wp-admin/edit-tags.php:118 ++msgid "Tags deleted." ++msgstr "ОзМака ПбрОсаМа." ++ ++#: wp-admin/edit-tags.php:130 ++#, php-format ++msgid "Manage Tags (add new)" ++msgstr "Управљај ПзМакаЌа (ЎПЎај МПву)" ++ ++#: wp-admin/edit-tags.php:132 ++msgid "Manage Tags" ++msgstr "Управљај ПзМакаЌа" ++ ++#: wp-admin/edit-tags.php:137 ++msgid "Search Tags" ++msgstr "ПретражО ПзМаке" ++ ++#: wp-admin/export.php:4 ++#: wp-admin/export.php:16 ++#: wp-admin/menu.php:48 ++msgid "Export" ++msgstr "ИзвПз" ++ ++#: wp-admin/export.php:17 ++msgid "When you click the button below WordPress will create an XML file for you to save to your computer." ++msgstr "КаЎа прОтОсМете Ма ЎугЌе ОспПЎ, ВПрЎпрес ће МаправОтО XML ЎатПтеку за вас кПју ћете сМОЌОтО Ма ваш рачуМар." ++ ++#: wp-admin/export.php:18 ++msgid "This format, which we call WordPress eXtended RSS or WXR, will contain your posts, pages, comments, custom fields, categories, and tags." ++msgstr "Овај фПрЌат, кПјО ЌО зПвеЌП ВПрЎпресПв прПЎужеМО RSS ОлО WXR, ће саЎржатО ваше члаМке, страМе, кПЌеМтаре, прОлагПжеМа пПља, категПрОје О ПзМаке." ++ ++#: wp-admin/export.php:19 ++msgid "Once you’ve saved the download file, you can use the Import function on another WordPress blog to import this blog." ++msgstr "ЈеЎМПЌ каЎа сте сМОЌОлО ЎатПтеку, ЌПжете кПрОстОтО фуМкцОју УвезО Ма ЎругПЌ блПгу кПга пПкреће ВПрпрес Ўа бОсте увезлО Пвај блПг." ++ ++#: wp-admin/export.php:21 ++msgid "Options" ++msgstr "ОпцОје" ++ ++#: wp-admin/export.php:25 ++msgid "Restrict Author" ++msgstr "ОграМОчО аутПра" ++ ++#: wp-admin/export.php:28 ++msgid "All Authors" ++msgstr "СвО аутПрО" ++ ++#: wp-admin/export.php:40 ++msgid "Download Export File" ++msgstr "СМОЌО ОзвПзМу ЎатПтеку" ++ ++#: wp-admin/import/blogger.php:13 ++msgid "Import Blogger" ++msgstr "УвПз Оз Blogger-а" ++ ++#: wp-admin/import/blogger.php:14 ++msgid "Howdy! This importer allows you to import posts and comments from your Blogger account into your WordPress blog." ++msgstr "ЗЎравП! Овај увПзМОк ваЌ ПЌПгућава Ўа увезете члаМке О кПЌеМтаре Оз вашег Blogger МалПга у ваш ВПрЎпрес блПг." ++ ++#: wp-admin/import/blogger.php:15 ++msgid "To use this importer, you must have a Google account and an upgraded (New, was Beta) blog hosted on blogspot.com or a custom domain (not FTP)." ++msgstr "Да бОсте кПрОстОлО Пвај увПзМОк, ЌПрате ОЌатО Гугл МалПг, ажурОраМ (НПвО, раМОје Бета) блПг О ЌПрате бОтО Ма blogspot.com ОлО прОлагПђеМПЌ ЎПЌеМу (Ме FTP)." ++ ++#: wp-admin/import/blogger.php:16 ++msgid "The first thing you need to do is tell Blogger to let WordPress access your account. You will be sent back here after providing authorization." ++msgstr "Прва ствар кПју ЌПрате Ўа ураЎОте је Ўа кажете Blogger-у Ўа ЎПвПлО прОступ ВПрЎпресу вашеЌ МалПгу. БОћете враћеМО ПвЎе пПсле Озвршења аутПрОзацОје." ++ ++#: wp-admin/import/blogger.php:17 ++msgid "Authorize" ++msgstr "АутПрОзуј" ++ ++#: wp-admin/import/blogger.php:51 ++msgid "Authorization failed" ++msgstr "АутПрОзацОја МОје успела" ++ ++#: wp-admin/import/blogger.php:52 ++msgid "Something went wrong. If the problem persists, send this info to support:" ++msgstr "НештП се ЎесОлП пПгрешМП. УкПлОкП прПблеЌ О Ўаље пПстПјО, пПшаљОте Пве пПЎатке пПЎршцО:" ++ ++#: wp-admin/import/blogger.php:109 ++msgid "Trouble signing in" ++msgstr "ПрПблеЌ са прОјављОвањеЌ" ++ ++#: wp-admin/import/blogger.php:110 ++msgid "We were not able to gain access to your account. Try starting over." ++msgstr "НОсЌП успелО Ўа ЎПбОјеЌП прОступ вашеЌ МалПгу. ППкушајте пПМПвП." ++ ++#: wp-admin/import/blogger.php:143 ++msgid "No blogs found" ++msgstr "НеЌа МађеМОх блПгПва." ++ ++#: wp-admin/import/blogger.php:144 ++msgid "We were able to log in but there were no blogs. Try a different account next time." ++msgstr "УспелО сЌП Ўа прОступОЌП, алО таЌП МеЌа блПгПва. ПрПбајте ЎругО МалПг слеЎећО пут." ++ ++#: wp-admin/import/blogger.php:152 ++#: wp-admin/upgrade.php:30 ++#: wp-admin/upgrade.php:57 ++msgid "Continue" ++msgstr "НаставО" ++ ++#: wp-admin/import/blogger.php:153 ++#: wp-admin/link-import.php:73 ++msgid "Importing..." ++msgstr "УвПзОЌ..." ++ ++#: wp-admin/import/blogger.php:154 ++msgid "Set Authors" ++msgstr "ППставО аутПре" ++ ++#: wp-admin/import/blogger.php:155 ++msgid "Preparing author mapping form..." ++msgstr "ПрОпреЌаЌ преслОкавање аутПра Оз..." ++ ++#: wp-admin/import/blogger.php:156 ++msgid "Final Step: Author Mapping" ++msgstr "ЗавршМО кПрак: преслОкавање аутПра" ++ ++#: wp-admin/import/blogger.php:157 ++msgid "Nothing was imported. Had you already imported this blog?" ++msgstr "НОшта МОје увезеМП. Да лО сте већ увезлО Пвај блПг?" ++ ++#: wp-admin/import/blogger.php:158 ++msgid "Blogger Blogs" ++msgstr "БлПгПвО Blogger-а" ++ ++#: wp-admin/import/blogger.php:159 ++msgid "Blog Name" ++msgstr "ИЌе блПга" ++ ++#: wp-admin/import/blogger.php:160 ++msgid "Blog URL" ++msgstr "URL блПга" ++ ++#: wp-admin/import/blogger.php:161 ++msgid "The Magic Button" ++msgstr "МагОчМП ЎугЌе" ++ ++#: wp-admin/import/blogger.php:163 ++#: wp-admin/includes/file.php:3 ++#: wp-admin/menu.php:38 ++#: wp-content/plugins/akismet/akismet.php:488 ++#: wp-content/themes/classic/comments-popup.php:22 ++msgid "Comments" ++msgstr "КПЌеМтарО" ++ ++#: wp-admin/import/blogger.php:164 ++msgid "This feature requires Javascript but it seems to be disabled. Please enable Javascript and then reload this page. Don't worry, you can turn it back off when you're done." ++msgstr "Ова ЌПгућМПст захтева Javascript, алО ОзглеЎа Ўа је ПМ ОскључеМ. МПлОЌП вас Ўа укључОте Javascript О ПМЎа ПсвежОте Пву страМОцу. Не брОМОте, ЌПжете га ОскључОтО каЎа завршОте." ++ ++#: wp-admin/import/blogger.php:611 ++msgid "All posts were imported with the current user as author. Use this form to move each Blogger user's posts to a different WordPress user. You may add users and then return to this page and complete the user mapping. This form may be used as many times as you like until you activate the \"Restart\" function below." ++msgstr "СвО члаМцО су увезеМО са треМутМОЌ кПрОсМОкПЌ каП аутПрПЌ. КПрОстОте Пвај Пбразац Ўа бО пПЌерОлО свакО члаМак кПрОсМОка Blogger-а ЎругПЌ кПрОсМОку ВПрЎпреса. МПжете ЎПЎатО кПрОсМОке О ПМЎа се вратОтО Ма Пву страМОцу О завршОтО преслОкавање кПрОсМОка. Овај Пбразац ЌПже бОтО кПрОшћеМ кПлОкП гПЎ пута желОте све ЎПк Ме укључОте фуМкцОју \"Рестарт\" ОспПЎ." ++ ++#: wp-admin/import/blogger.php:612 ++msgid "Author mapping" ++msgstr "ПреслОкавање аутПра" ++ ++#: wp-admin/import/blogger.php:614 ++msgid "Blogger username" ++msgstr "КПрОсМОчкП ОЌе Ма Blogger-у" ++ ++#: wp-admin/import/blogger.php:615 ++msgid "WordPress login" ++msgstr "ВПрЎпрес прОјава" ++ ++#: wp-admin/import/blogger.php:673 ++msgid "Could not connect to https://www.google.com" ++msgstr "НОје бОлП ЌПгуће успПставОтО везу са https://www.google.com" ++ ++#: wp-admin/import/blogger.php:674 ++msgid "There was a problem opening a secure connection to Google. This is what went wrong:" ++msgstr "ППстПјаП је прПблеЌ прОлОкПЌ успПстављања сОгурМе везе са ГуглПЌ. Овај прПблеЌ је МастаП:" ++ ++#: wp-admin/import/blogger.php:685 ++#, php-format ++msgid "Could not connect to %s" ++msgstr "НОје ЌПгуће успПставОтО везу ка %s" ++ ++#: wp-admin/import/blogger.php:686 ++msgid "There was a problem opening a connection to Blogger. This is what went wrong:" ++msgstr "ППстПјаП је прПблеЌ прОлОкПЌ успПстављања везе са Blogger-ПЌ. Овај прПблеЌ је МастаП:" ++ ++#: wp-admin/import/blogger.php:752 ++msgid "Congratulations!" ++msgstr "ЧестОтаЌП!" ++ ++#: wp-admin/import/blogger.php:752 ++msgid "Now that you have imported your Blogger blog into WordPress, what are you going to do? Here are some suggestions:" ++msgstr "СаЎа каЎа сте увезлО ваш Blogger блПг у ВПрЎпрес, шта ћете Ўа раЎОте? ЕвП МекПлОкП преЎлПга:" ++ ++#: wp-admin/import/blogger.php:752 ++msgid "That was hard work! Take a break." ++msgstr "ОвП је бОП тежак пПсаП! НаправОте паузу." ++ ++#: wp-admin/import/blogger.php:754 ++msgid "In case you haven't done it already, you can import the posts from your other blogs:" ++msgstr "АкП тП већ МОсте, ЌПжете Ўа увезете члаМке Оз вашОх ЎругОх блПгПва:" ++ ++#: wp-admin/import/blogger.php:756 ++#, php-format ++msgid "Go to Authors & Users, where you can modify the new user(s) or delete them. If you want to make all of the imported posts yours, you will be given that option when you delete the new authors." ++msgstr "ИЎОте Ма АутПрО О кПрОсМОцО, гЎе ЌПжете Ўа уређујете кПрОсМОке ОлО Ўа Ох брОшете. АкП желОте Ўа све увежеМе члаМке учОМОте свПјОЌа, ОЌаћете прОлОку каЎа буЎете брОсалО МПве аутПре." ++ ++#: wp-admin/import/blogger.php:757 ++msgid "For security, click the link below to reset this importer." ++msgstr "Из разлПга сОгурМПстО, прОтОсМОте Ма ЎПњу везу Ўа бО ресетПвалО увПзМОка. ТП ће ПчОстОтО ваше пПЎатке О ПпцОје за Blogger Оз базе пПЎатака." ++ ++#: wp-admin/import/blogger.php:788 ++msgid "Restart" ++msgstr "Рестарт" ++ ++#: wp-admin/import/blogger.php:789 ++msgid "We have saved some information about your Blogger account in your WordPress database. Clearing this information will allow you to start over. Restarting will not affect any posts you have already imported. If you attempt to re-import a blog, duplicate posts and comments will be skipped." ++msgstr "СМОЌОлО сЌП Меке пПЎатке П вашеЌ Blogger МалПгу у вашПј ВПрЎпрес базО. ЧОшћење ПвОх пПЎатака ће ПЌПгућОтО Ўа пПчМете ОспПчетка. ППМПвМО пПчетак Меће угрПзОтО члаМке кПје стевећ увезлО. УкПлОкП пПкушате пПМПвМП увПжење блПга, ЎвПструкО члаМцО О кПЌеМтарО ће бОтО прескПчеМО." ++ ++#: wp-admin/import/blogger.php:790 ++msgid "Clear account information" ++msgstr "ОчОстО пПЎатке П МалПгу." ++ ++#: wp-admin/import/blogger.php:840 ++msgid "Blogger" ++msgstr "Blogger" ++ ++#: wp-admin/import/blogger.php:840 ++msgid "Import posts, comments, and users from a Blogger blog." ++msgstr "УвезОте члаМке, кПЌеМтаре О кПрОсМОке Оз вашег Blogger блПга." ++ ++#: wp-admin/import/blogware.php:11 ++msgid "Import Blogware" ++msgstr "УвПз Blogware-а" ++ ++#: wp-admin/import/blogware.php:26 ++msgid "Howdy! This importer allows you to extract posts from Blogware XML export file into your blog. Pick a Blogware file to upload and click Import." ++msgstr "ЗЎравП! Овај увПзМОк ваЌ ПЌПгућава Ўа ОзЎвПјОте члаМке Оз Blogware XML ЎатПтеке у ваш блПг. ИзаберОте Blogware ЎатПтеку за слање О прОтОсМОте УвезО." ++ ++#: wp-admin/import/blogware.php:89 ++#: wp-admin/import/livejournal.php:69 ++#: wp-admin/import/mt.php:210 ++#: wp-admin/import/wordpress.php:387 ++#, php-format ++msgid "Post %s already exists." ++msgstr "УМПс %s већ пПстПјО." ++ ++#: wp-admin/import/blogware.php:91 ++#: wp-admin/import/livejournal.php:71 ++#: wp-admin/import/mt.php:213 ++#: wp-admin/import/wordpress.php:418 ++#, php-format ++msgid "Importing post %s..." ++msgstr "УвПзОЌ члаМак %s..." ++ ++#: wp-admin/import/blogware.php:98 ++#: wp-admin/import/livejournal.php:77 ++#: wp-admin/import/rss.php:116 ++msgid "Couldn't get post ID" ++msgstr "НОје ЌПгуће ЎПбОтО ID члаМка" ++ ++#: wp-admin/import/blogware.php:144 ++#: wp-includes/pluggable.php:892 ++#, php-format ++msgid "%s comment" ++msgid_plural "%s comments" ++msgstr[0] "%s кПЌеМтар" ++msgstr[1] "%s кПЌеМтара" ++msgstr[2] "%s кПЌеМтара" ++ ++#: wp-admin/import/blogware.php:167 ++#: wp-admin/import/livejournal.php:144 ++#: wp-admin/import/mt.php:423 ++#: wp-admin/import/rss.php:147 ++#, php-format ++msgid "All done. Have fun!" ++msgstr "Све је ПбављеМП. УжОвајте!" ++ ++#: wp-admin/import/blogware.php:200 ++msgid "Blogware" ++msgstr "Blogware" ++ ++#: wp-admin/import/blogware.php:200 ++msgid "Import posts from Blogware." ++msgstr "УвезОте члаМке Оз Blogware-а." ++ ++#: wp-admin/import/btt.php:7 ++msgid "Import Bunny’s Technorati Tags" ++msgstr "УвезО ПзМаке Оз Bunny’s Technorati Tags" ++ ++#: wp-admin/import/btt.php:8 ++#: wp-admin/import/dotclear.php:116 ++#: wp-admin/import/jkw.php:8 ++#: wp-admin/import/stp.php:6 ++#: wp-admin/import/textpattern.php:33 ++#: wp-admin/import/utw.php:8 ++msgid "Steps may take a few minutes depending on the size of your database. Please be patient." ++msgstr "НекО кПрацО ЌПгу пПтрајатО, завОсМП ПЎ велОчОМе ваше базе. МПлОЌП вас за стрпљење." ++ ++#: wp-admin/import/btt.php:17 ++msgid "Howdy! This imports tags from Bunny’s Technorati Tags into WordPress tags." ++msgstr "ЗЎравП! ОвП увПзО ПзМаке Оз пПстПјећег ЎПЎатка Bunny’s Technorati Tags са вашег блПга у уграђеМу структуру ПзМачавања у ВПрЎпресу." ++ ++#: wp-admin/import/btt.php:18 ++msgid "This is suitable for Bunny’s Technorati Tags version 0.6." ++msgstr "ОвП је прОхватљОвП за ПзМаке Оз ОзЎања 0.6 ЎПЎатка Bunny’s Technorati Tags." ++ ++#: wp-admin/import/btt.php:19 ++msgid "All existing Bunny’s Technorati Tags will be removed after import." ++msgstr "Све пПстПјеће ПзМаке Оз ЎПЎатка Bunny’s Technorati Tags бОће уклПњеМе пПсле увПза." ++ ++#: wp-admin/import/btt.php:20 ++#: wp-admin/import/jkw.php:20 ++#: wp-admin/import/stp.php:18 ++#: wp-admin/import/utw.php:20 ++msgid "Don’t be stupid - backup your database before proceeding!" ++msgstr "Не буЎОте глупО — МаправОте пПвраћај ваше базе пПЎатака пре МегП штП пПчМете!" ++ ++#: wp-admin/import/btt.php:23 ++msgid "Import Tags" ++msgstr "УвезО ПзМаке" ++ ++#: wp-admin/import/btt.php:62 ++msgid "Reading Bunny’s Technorati Tags…" ++msgstr "ЧОтаЌ Bunny’s Technorati Tags ПзМаке члаМака…" ++ ++#: wp-admin/import/btt.php:67 ++#: wp-admin/import/jkw.php:83 ++#: wp-admin/import/jkw.php:124 ++#: wp-admin/import/utw.php:72 ++msgid "No Tags Found!" ++msgstr "НеЌа прПМађеМОх ПзМака!" ++ ++#: wp-admin/import/btt.php:71 ++#: wp-admin/import/jkw.php:87 ++#, php-format ++msgid "Done! %s post with tags were read." ++msgid_plural "Done! %s posts with tags were read." ++msgstr[0] "ОбављеМП! %s члаМак са ПзМакаЌа је ПчОтаМ." ++msgstr[1] "ОбављеМП! %s члаМка са ПзМакаЌа су ПчОтаМа." ++msgstr[2] "ОбављеМП! %s члаМка са ПзМакаЌа су ПчОтаМа." ++ ++#: wp-admin/import/btt.php:93 ++#: wp-admin/import/jkw.php:109 ++#: wp-admin/import/jkw.php:142 ++msgid "Next" ++msgstr "СлеЎеће" ++ ++#: wp-admin/import/btt.php:100 ++#: wp-admin/import/jkw.php:163 ++#: wp-admin/import/stp.php:139 ++#: wp-admin/import/utw.php:250 ++msgid "Import Complete!" ++msgstr "Увез је завршеМ!" ++ ++#: wp-admin/import/btt.php:113 ++msgid "Import Bunny’s Technorati Tags into WordPress tags." ++msgstr "УвезО ПзМаке Оз Bunny’s Technorati Tags." ++ ++#: wp-admin/import/dotclear.php:115 ++msgid "Import DotClear" ++msgstr "УвПз DotClear-а" ++ ++#: wp-admin/import/dotclear.php:126 ++msgid "Howdy! This importer allows you to extract posts from a DotClear database into your blog. Mileage may vary." ++msgstr "ЗЎравП! Овај увПзМОк ваЌ ПЌПгућава Ўа ОзЎвПјОте члаМке Оз Dotclear базе у ваш блПг. РезултатО су прПЌеМљОвО." ++ ++#: wp-admin/import/dotclear.php:127 ++msgid "Your DotClear Configuration settings are as follows:" ++msgstr "Ваша Dotclear пПЎешавања су слеЎећа:" ++ ++#: wp-admin/import/dotclear.php:131 ++msgid "Import Categories" ++msgstr "УвПзОЌ категПрОје" ++ ++#: wp-admin/import/dotclear.php:204 ++#: wp-admin/import/textpattern.php:156 ++msgid "Importing Categories..." ++msgstr "УвПзОЌ категПрОје..." ++ ++#: wp-admin/import/dotclear.php:228 ++#: wp-admin/import/textpattern.php:180 ++#, php-format ++msgid "Done! %1$s category imported." ++msgid_plural "Done! %1$s categories imported." ++msgstr[0] "ОбављеМП! УвезеМа %1$s категПрОја." ++msgstr[1] "ОбављеМП! УвежеМе %1$s категПрОје." ++msgstr[2] "ОбављеМП! УвежеМП %1$s категПрОја." ++ ++#: wp-admin/import/dotclear.php:231 ++#: wp-admin/import/textpattern.php:183 ++msgid "No Categories to Import!" ++msgstr "НеЌа категПрОја за увПз!" ++ ++#: wp-admin/import/dotclear.php:245 ++#: wp-admin/import/textpattern.php:197 ++msgid "Importing Users..." ++msgstr "УвПзОЌ кПрОсМОке..." ++ ++#: wp-admin/import/dotclear.php:302 ++#: wp-admin/import/textpattern.php:252 ++#, php-format ++msgid "Done! %1$s users imported." ++msgstr "ОбављеМП! УвежеМП %1$s кПрОсМОка." ++ ++#: wp-admin/import/dotclear.php:306 ++#: wp-admin/import/textpattern.php:256 ++msgid "No Users to Import!" ++msgstr "НеЌа кПрОсМОка за увПз!" ++ ++#: wp-admin/import/dotclear.php:322 ++#: wp-admin/import/textpattern.php:272 ++msgid "Importing Posts..." ++msgstr "УвПзОЌ члаМке..." ++ ++#: wp-admin/import/dotclear.php:405 ++#: wp-admin/import/textpattern.php:346 ++#, php-format ++msgid "Done! %1$s posts imported." ++msgstr "ОбављеМП! УвежеМП %1$s члаМака." ++ ++#: wp-admin/import/dotclear.php:420 ++#: wp-admin/import/textpattern.php:361 ++msgid "Importing Comments..." ++msgstr "УвПзОЌ кПЌеМтаре..." ++ ++#: wp-admin/import/dotclear.php:475 ++#: wp-admin/import/textpattern.php:413 ++#, php-format ++msgid "Done! %1$s comments imported." ++msgstr "ОбављеМП! УвежеМП %1$s кПЌеМтара." ++ ++#: wp-admin/import/dotclear.php:478 ++#: wp-admin/import/textpattern.php:416 ++msgid "No Comments to Import!" ++msgstr "НеЌа кПЌеМтара за увПз!" ++ ++#: wp-admin/import/dotclear.php:491 ++#: wp-admin/import/textpattern.php:429 ++msgid "Importing Links..." ++msgstr "УвПзОЌ везе..." ++ ++#: wp-admin/import/dotclear.php:529 ++#, php-format ++msgid "Done! %s link or link category imported." ++msgid_plural "Done! %s links or link categories imported." ++msgstr[0] "ОбављеМП! УвежеМа %s веза ОлО категПрОја веза." ++msgstr[1] "ОбављеМП! УвежеМе %s везе ОлО категПрОја веза." ++msgstr[2] "ОбављеМП! УвежеМП %s веза ОлО категПрОја веза." ++ ++#: wp-admin/import/dotclear.php:533 ++#: wp-admin/import/textpattern.php:469 ++msgid "No Links to Import!" ++msgstr "НеЌа веза за увПз!" ++ ++#: wp-admin/import/dotclear.php:548 ++#: wp-admin/import/textpattern.php:484 ++msgid "Import Users" ++msgstr "УвезО кПрОсМОке" ++ ++#: wp-admin/import/dotclear.php:561 ++#: wp-admin/import/textpattern.php:497 ++msgid "Import Posts" ++msgstr "УвезО члаМке" ++ ++#: wp-admin/import/dotclear.php:575 ++#: wp-admin/import/textpattern.php:511 ++msgid "Import Comments" ++msgstr "УвезО кПЌеМтаре" ++ ++#: wp-admin/import/dotclear.php:600 ++#: wp-admin/import/textpattern.php:536 ++msgid "Finish" ++msgstr "ЗавршО" ++ ++#: wp-admin/import/dotclear.php:624 ++msgid "Welcome to WordPress. We hope (and expect!) that you will find this platform incredibly rewarding! As a new WordPress user coming from DotClear, there are some things that we would like to point out. Hopefully, they will help your transition go as smoothly as possible." ++msgstr "ДПбрПЎПшлО у ВПрЎпрес. НаЎаЌП се (О ПчекујеЌП!) Ўа ћете Пву платфПрЌу МаћО веПЌа захвалМПЌ! КаП МПвО ВПрЎпрес кПрОсМОк кПјО ЎПлазО Оз Dotclear ЌОљеа, ОЌа пар стварО Ма кПје бОсЌП желелО Ўа ваЌ скреМеЌП пажњу. НаЎаЌП се ће ваЌ тП штП је вОше ЌПгуће ПлакшатО прелаз." ++ ++#: wp-admin/import/dotclear.php:625 ++#: wp-admin/import/textpattern.php:560 ++#: wp-admin/menu.php:29 ++#: wp-admin/users.php:8 ++msgid "Users" ++msgstr "КПрОсМОцО" ++ ++#: wp-admin/import/dotclear.php:626 ++#, php-format ++msgid "You have already setup WordPress and have been assigned an administrative login and password. Forget it. You didn't have that login in DotClear, why should you have it here? Instead we have taken care to import all of your users into our system. Unfortunately there is one downside. Because both WordPress and DotClear uses a strong encryption hash with passwords, it is impossible to decrypt it and we are forced to assign temporary passwords to all your users. Every user has the same username, but their passwords are reset to password123. So Login and change it." ++msgstr "Већ сте пПЎесОлО ВПрЎпрес О ЎПбОлО сте кПрОсМОчкП ОЌе О лПзОМку за аЎЌОМОстрацОју. ЗабПравОте Ох. ТП МОсте ОЌалО у Dotclear-у, заштП бОсте га кПрОстОлО ПвЎе? УЌестП тПга, пПтруЎОлО сЌП се Ўа увезеЌП све ваше кПрОсМОке у ваш сОстеЌ. НажалПст, пПстПјО О МегатОвМа страМа тПга. ППштП О ВПрЎпрес О Dotclear кПрОсте сМажаМ хеш за еМкрОпцОју (encryption hash) за лПзОМке, МеЌПгуће Ох је ЎекрОптПватО па сЌП прОМуђеМО Ўа свОЌ вашОЌ кПрОсМОцОЌа ЎПЎелОЌП прОвреЌеМе лПзМОке. СвакО кПрОсМОк ОЌа ОстП кПрОсМОчкП ОЌе, алО су ОЌ лПзОМке пПстављење Ма password123. СтПга се прОјавОте О прПЌеМОте Ох." ++ ++#: wp-admin/import/dotclear.php:627 ++#: wp-admin/import/textpattern.php:562 ++msgid "Preserving Authors" ++msgstr "Очување аутПра" ++ ++# DOTCLEAR ++#: wp-admin/import/dotclear.php:628 ++#: wp-admin/import/textpattern.php:563 ++msgid "Secondly, we have attempted to preserve post authors. If you are the only author or contributor to your blog, then you are safe. In most cases, we are successful in this preservation endeavor. However, if we cannot ascertain the name of the writer due to discrepancies between database tables, we assign it to you, the administrative user." ++msgstr "ДругП, ЌО сЌП пПкушалО Ўа ПчуваЌП аутПре члаМака. АкП сте вО јеЎОМО аутПр, ПМЎа сте сОгурМО. У већОМО случајева, ЌО сЌП успешМО у МапПрОЌа Пчувања. Ипак, акП ЌО Ме ЌПжеЌП Ўа утврЎОЌП ОЌе аутПра збПг Меслагања Ќеђу табелаЌа базе пПЎатака, ЌО Ох прОпОсујеЌП ваЌа, управМОку." ++ ++#: wp-admin/import/dotclear.php:629 ++#: wp-admin/import/textpattern.php:564 ++msgid "Textile" ++msgstr "Textile" ++ ++#: wp-admin/import/dotclear.php:630 ++msgid "Also, since you're coming from DotClear, you probably have been using Textile to format your comments and posts. If this is the case, we recommend downloading and installing Textile for WordPress. Trust me... You'll want it." ++msgstr "ТакПђе, пПштП ЎПлазОте са DotClear-а, верПватМП сте кПрОстОлО Textile за ПблОкПвање вашОх кПЌеМтара О члаМака. У ПвПЌ случају, ЌО ваЌ препПручујеЌП преузОЌање О пПстављање Textile-а за ВПрЎпрес. Верујте ЌО... Желећете га." ++ ++#: wp-admin/import/dotclear.php:631 ++#: wp-admin/import/textpattern.php:566 ++msgid "WordPress Resources" ++msgstr "ВПрЎпрес ресурсО" ++ ++#: wp-admin/import/dotclear.php:632 ++#: wp-admin/import/textpattern.php:567 ++msgid "Finally, there are numerous WordPress resources around the internet. Some of them are:" ++msgstr "На крају, пПстПје брПјМО ОзвПрО П ВПрЎпресу Ма ОМтерМету. НекО ПЎ њОх су:" ++ ++#: wp-admin/import/dotclear.php:634 ++#: wp-admin/import/textpattern.php:569 ++msgid "The official WordPress site" ++msgstr "ЗваМОчМП ЌрежМП ЌестП ВПрЎпреса" ++ ++#: wp-admin/import/dotclear.php:635 ++#: wp-admin/import/textpattern.php:570 ++msgid "The WordPress support forums" ++msgstr "ЀПруЌО за пПЎршку ВПрЎпреса" ++ ++#: wp-admin/import/dotclear.php:636 ++#: wp-admin/import/textpattern.php:571 ++msgid "The Codex (In other words, the WordPress Bible)" ++msgstr "The Codex (ИлО ЎругОЌ речОЌа, БОблОја за ВПрЎпрес)" ++ ++#: wp-admin/import/dotclear.php:638 ++#, php-format ++msgid "That's it! What are you waiting for? Go login!" ++msgstr "ТП је тП! Кта чекате?ПрОјавОте се!" ++ ++#: wp-admin/import/dotclear.php:644 ++msgid "DotClear Database User:" ++msgstr "КПрОсМОк базе пПЎатака за Dotclear:" ++ ++#: wp-admin/import/dotclear.php:645 ++msgid "DotClear Database Password:" ++msgstr "ЛПзОМка базе пПЎатака за Dotclear:" ++ ++#: wp-admin/import/dotclear.php:646 ++msgid "DotClear Database Name:" ++msgstr "ИЌе базе пПЎатака за Dotclear:" ++ ++#: wp-admin/import/dotclear.php:647 ++msgid "DotClear Database Host:" ++msgstr "ИЌе ЎПЌаћОМа (host) базе пПЎатака за Dotclear:" ++ ++#: wp-admin/import/dotclear.php:648 ++msgid "DotClear Table prefix:" ++msgstr "ПрефОкс базе пПЎатака за Dotclear:" ++ ++#: wp-admin/import/dotclear.php:649 ++msgid "Originating character set:" ++msgstr "ИзвПрМО скуп карактера:" ++ ++#: wp-admin/import/dotclear.php:745 ++msgid "DotClear" ++msgstr "DotClear" ++ ++#: wp-admin/import/dotclear.php:745 ++msgid "Import categories, users, posts, comments, and links from a DotClear blog." ++msgstr "УвезО категПрОје, кПрОсМОке, члаМке, кПЌеМтаре, О везе Оз DotClear блПга." ++ ++#: wp-admin/import/greymatter.php:9 ++msgid "Import GreyMatter" ++msgstr "УвПз GreyMatter-а" ++ ++#: wp-admin/import/greymatter.php:19 ++msgid "This is a basic GreyMatter to WordPress import script." ++msgstr "ОвП је ПсМПвМа GreyMatter у ВПрЎпрес увПзМа скрОпта." ++ ++#: wp-admin/import/greymatter.php:20 ++msgid "What it does:" ++msgstr "Кта раЎО:" ++ ++#: wp-admin/import/greymatter.php:22 ++msgid "Parses gm-authors.cgi to import (new) authors. Everyone is imported at level 1." ++msgstr "РазЎваја gm-authors.cgi Ўа бО увезаП (МПве) аутПре. СвО су увежеМО Ма МОвП 1." ++ ++#: wp-admin/import/greymatter.php:23 ++msgid "Parses the entries cgi files to import posts, comments, and karma on posts (although karma is not used on WordPress yet).
    If authors are found not to be in gm-authors.cgi, imports them at level 0." ++msgstr "РазЎваја уМПсе cgi ЎатПтека Ўа бО увезаП члаМке, кПЌеМтаре, О карЌу Ма члаМцОЌа (ОакП се карЌа јПш увек Ме кПрОстО у ВПрЎпресу).
    УкПлОкП аутПрО МОсу прПМађеМО у gm-authors.cgi, увПзО Ох Ма МОвП 0." ++ ++#: wp-admin/import/greymatter.php:24 ++msgid "Detects duplicate entries or comments. If you don't import everything the first time, or this import should fail in the middle, duplicate entries will not be made when you try again." ++msgstr "ПрПМалазО ЎвПструке уМПсе ОлО кПЌеМтаре. УкПлОкП Ме увезете све првО пут ОлО Пвај увПз прПпаЎМе у среЎОМО, ЎвПструкО уМПсО Меће бОтО МаправљеМО каЎа пПкушате пПМПвП." ++ ++#: wp-admin/import/greymatter.php:26 ++msgid "What it does not:" ++msgstr "Кта Ме раЎО:" ++ ++#: wp-admin/import/greymatter.php:28 ++msgid "Parse gm-counter.cgi, gm-banlist.cgi, gm-cplog.cgi (you can make a CP log hack if you really feel like it, but I question the need of a CP log)." ++msgstr "РазЎваја gm-counter.cgi, gm-banlist.cgi, gm-cplog.cgi (ЌПжете МаправОтО CP log hack укПлОкП га заОста вПлОте, алО се пОтаЌ за пПтребу CP log-а)." ++ ++#: wp-admin/import/greymatter.php:29 ++msgid "Import gm-templates." ++msgstr "УвПз gm-templates-а." ++ ++#: wp-admin/import/greymatter.php:30 ++msgid "Doesn't keep entries on top." ++msgstr "Не чува уМПсе Ма врху." ++ ++#: wp-admin/import/greymatter.php:38 ++msgid "Second step: GreyMatter details:" ++msgstr "ДругО кПрак: ЎетаљО GreyMatter-а:" ++ ++#: wp-admin/import/greymatter.php:41 ++msgid "Path to GM files:" ++msgstr "Путања ЎП GM ЎатПтека:" ++ ++#: wp-admin/import/greymatter.php:45 ++msgid "Path to GM entries:" ++msgstr "Путања ЎП GM уМПса:" ++ ++#: wp-admin/import/greymatter.php:49 ++msgid "Last entry's number:" ++msgstr "БрПј пПслеЎњег уМПса:" ++ ++#: wp-admin/import/greymatter.php:51 ++msgid "This importer will search for files 00000001.cgi to 000-whatever.cgi,
    so you need to enter the number of the last GM post here.
    (if you don't know that number, just log into your FTP and look it out
    in the entries' folder)" ++msgstr "УвПзМОк ће тражОтО за ЎатПтеке 00000001.cgi ЎП 000-бОлП-штаr.cgi,
    такП Ўа је пПтребМП Ўа ПвЎе уМесете брПј пПслеЎњег GM члаМка.
    (укПлОкП Ме зМате тај брПј, саЌП се прОјавОте Ма ваш FTP О пПтражОте га
    у фасОклО са уМПсОЌа)" ++ ++#: wp-admin/import/greymatter.php:55 ++msgid "Start Importing" ++msgstr "ППчМО увПжење" ++ ++#: wp-admin/import/greymatter.php:88 ++msgid "Wrong path, the path to the GM entries does not exist on the server" ++msgstr "ППгрешМа путања, путања ЎП GM уМПса Ме пПстПјО Ма серверу" ++ ++#: wp-admin/import/greymatter.php:91 ++msgid "Wrong path, the path to the GM files does not exist on the server" ++msgstr "ППгрешМа путања, путања ЎП GM ЎатПтека Ме пПстПјО Ма серверу" ++ ++#: wp-admin/import/greymatter.php:97 ++msgid "The importer is running..." ++msgstr "УвПзМОк раЎО..." ++ ++#: wp-admin/import/greymatter.php:99 ++msgid "importing users..." ++msgstr "увПзОЌ кПрОсМОке..." ++ ++#: wp-admin/import/greymatter.php:123 ++#, php-format ++msgid "user %s" ++msgstr "кПрОсМОк %s" ++ ++#: wp-admin/import/greymatter.php:123 ++msgid "Already exists" ++msgstr "Већ пПстПјО" ++ ++#: wp-admin/import/greymatter.php:132 ++#, php-format ++msgid "user %s..." ++msgstr "кПрОсМОк %s.." ++ ++#: wp-admin/import/greymatter.php:132 ++#: wp-admin/import/greymatter.php:135 ++#: wp-admin/import/greymatter.php:280 ++#: wp-admin/import/greymatter.php:285 ++msgid "Done" ++msgstr "ОбављеМП" ++ ++#: wp-admin/import/greymatter.php:136 ++msgid "importing posts, comments, and karma..." ++msgstr "увПзОЌ члаМке, кПЌеМтаре О карЌу..." ++ ++#: wp-admin/import/greymatter.php:172 ++#, php-format ++msgid "entry # %s : %s : by %s" ++msgstr "уМПс # %s : %s : ПЎ %s" ++ ++#: wp-admin/import/greymatter.php:200 ++msgid "(already exists)" ++msgstr "(већ пПстПјО)" ++ ++#: wp-admin/import/greymatter.php:222 ++#, php-format ++msgid "registered deleted user %s at level 0 " ++msgstr "регОстрПваМ ПбрОсаМО кПрОсМОк %s Ма МОвПу 0 " ++ ++#: wp-admin/import/greymatter.php:272 ++#, php-format ++msgid "imported %s comment" ++msgid_plural "imported %s comments" ++msgstr[0] "увежеМ %s кПЌеМтар" ++msgstr[1] "увежеМа %s кПЌеМтара" ++msgstr[2] "увежеМП %s кПЌеМтара" ++ ++#: wp-admin/import/greymatter.php:277 ++#, php-format ++msgid "ignored %s pre-existing comment" ++msgid_plural "ignored %s pre-existing comments" ++msgstr[0] "заМеЌареМ %s пПстПјећО кПЌеМтар" ++msgstr[1] "заМеЌареМа %s пПстПјећа кПЌеМтара" ++msgstr[2] "заМеЌареМП %s пПстПјећОх кПЌеМтара" ++ ++#: wp-admin/import/greymatter.php:287 ++msgid "Completed GreyMatter import!" ++msgstr "ЗавршеМ увПз Оз GreyMatter-а!" ++ ++#: wp-admin/import/greymatter.php:319 ++msgid "GreyMatter" ++msgstr "GreyMatter" ++ ++#: wp-admin/import/greymatter.php:319 ++msgid "Import users, posts, and comments from a Greymatter blog." ++msgstr "УвезОте кПрОсМОке, члаМке, О кПЌеМтаре Оз Greymatter блПга." ++ ++#: wp-admin/import/jkw.php:7 ++msgid "Import Jerome’s Keywords" ++msgstr "УвезО ПзМаке Оз ЎПЎатка Jerome’s Keywords" ++ ++#: wp-admin/import/jkw.php:17 ++msgid "Howdy! This imports tags from Jerome’s Keywords into WordPress tags." ++msgstr "ЗЎравП! ОвП увПзО ПзМаке Оз пПстПјећег ЎПЎатка Jerome’s Keywords са вашег блПга у уграђеМу структуру ПзМачавања у ВПрЎпресу." ++ ++#: wp-admin/import/jkw.php:18 ++msgid "This is suitable for Jerome’s Keywords version 1.x and 2.0a." ++msgstr "ОвП је прОхватљОвП за ПзМаке Оз ОзЎања 1.x О 2.0a ЎПЎатка Jerome’s Keywords." ++ ++#: wp-admin/import/jkw.php:19 ++msgid "All existing Jerome’s Keywords will be removed after import." ++msgstr "Све пПстПјеће ПзМаке Оз ЎПЎатка Jerome’s Keywords бОће уклПњеМе пПсле увПза." ++ ++#: wp-admin/import/jkw.php:23 ++msgid "Import Version 1.x" ++msgstr "УвПз Оз ОзЎања 1.x" ++ ++#: wp-admin/import/jkw.php:27 ++msgid "Import Version 2.0a" ++msgstr "УвПз Оз ОзЎања 2.0a" ++ ++#: wp-admin/import/jkw.php:78 ++#: wp-admin/import/jkw.php:118 ++msgid "Reading Jerome’s Keywords Tags…" ++msgstr "ЧОтаЌ Jerome’s Keywords ПзМаке члаМака…" ++ ++#: wp-admin/import/jkw.php:128 ++#: wp-admin/import/utw.php:87 ++#, php-format ++msgid "Done! %s tag were read." ++msgid_plural "Done! %s tags were read." ++msgstr[0] "ОбављеМП! %s ПзМака је ПчОтаМа." ++msgstr[1] "ОбављеМП! %s ПзМаке су ПчОтаМе." ++msgstr[2] "ОбављеМП! %s ПзМака је ПчОтаМП." ++ ++#: wp-admin/import/jkw.php:176 ++msgid "Import Jerome’s Keywords into WordPress tags." ++msgstr "УвезО ПзМаке Оз Jerome’s Keywords-а у уграђеМу структуру ПзМачавања у ВПрЎпресу." ++ ++#: wp-admin/import/livejournal.php:9 ++msgid "Import LiveJournal" ++msgstr "УвПз Оз LiveJournal-а" ++ ++#: wp-admin/import/livejournal.php:24 ++msgid "Howdy! Upload your LiveJournal XML export file and we’ll import the posts into this blog." ++msgstr "ЗЎравП! ППшаљОте вашу LiveJournal XML ЎатПтеку О ЌО ћеЌП увестО члаМке у Пвај блПг." ++ ++#: wp-admin/import/livejournal.php:25 ++msgid "Choose a LiveJournal XML file to upload, then click Upload file and import." ++msgstr "ИзаберОте LiveJournal XML ЎатПтеку за слање, ПМЎа прОтОсМОте ППшаљО ЎатПтеку О увезПте је." ++ ++#: wp-admin/import/livejournal.php:122 ++#: wp-admin/import/mt.php:250 ++#: wp-admin/import/wordpress.php:493 ++#, php-format ++msgid "(%s comment)" ++msgid_plural "(%s comments)" ++msgstr[0] "(%s кПЌеМтар)" ++msgstr[1] "(%s кПЌеМтара)" ++msgstr[2] "(%s кПЌеМтара)" ++ ++#: wp-admin/import/livejournal.php:178 ++msgid "LiveJournal" ++msgstr "LiveJournal" ++ ++#: wp-admin/import/livejournal.php:178 ++msgid "Import posts from a LiveJournal XML export file." ++msgstr "УвезОте члаМке Оз LiveJournal XML ОзвПзМе ЎатПтеке." ++ ++#: wp-admin/import/mt.php:14 ++msgid "Import Movable Type or TypePad" ++msgstr "УвПз Оз Movable Type-а ОлО TypePad-а" ++ ++#: wp-admin/import/mt.php:25 ++msgid "Howdy! We’re about to begin importing all of your Movable Type or Typepad entries into WordPress. To begin, either choose a file to upload and click \"Upload file and import,\" or use FTP to upload your MT export file as mt-export.txt in your /wp-content/ directory and then click \"Import mt-export.txt\"" ++msgstr "ЗЎравП! МО ћеЌП пПчетО увПз свОх вашОх Movable Type ОлО Typepad уМПса у ВПрЎпрес. Да бО пПчелО, ОзаберОте ОлО ЎатПтеку за слање О прОтОсМОте \"ППшаљО ЎатПтеку О увезО,\" ОлО кПрОстОте FTP Ўа бОсте пПслалО вашу MT ОзвПзМу ЎатПтеку каП mt-export.txt у ваш /wp-content/ ЎОректПрОјуЌ О ПМЎа прОтОсМОте \"УвезО mt-export.txt\"" ++ ++#: wp-admin/import/mt.php:33 ++msgid "Or use mt-export.txt in your /wp-content/ directory" ++msgstr "ИлО кПрОстОте mt-export.txt у вашеЌ /wp-content/ ЎОректПрОјуЌу" ++ ++#: wp-admin/import/mt.php:35 ++msgid "Import mt-export.txt" ++msgstr "УвезО mt-export.txt" ++ ++#: wp-admin/import/mt.php:38 ++msgid "The importer is smart enough not to import duplicates, so you can run this multiple times without worry if—for whatever reason—it doesn't finish. If you get an out of memory error try splitting up the import file into pieces." ++msgstr "УвПзМОк је ЎПвПљМП паЌетаМ Ўа Ме увезе ЎуплОкате, такП Ўа ЌПжете Ўа пПкреМете ПвП без брОге акП —збПг бОлП кПг разлПга—се Ме завршО. УкПлОкП ЎПбОјете Меку out of memory грешку, пПкушајте Ўа пПЎелОте увПзМу ЎатПтеку Ма ЎелПве." ++ ++#: wp-admin/import/mt.php:48 ++#: wp-admin/import/wordpress.php:232 ++#: wp-admin/includes/template.php:807 ++#: wp-admin/options-reading.php:30 ++#: wp-admin/options-reading.php:31 ++msgid "- Select -" ++msgstr "- ИзаберО -" ++ ++#: wp-admin/import/mt.php:155 ++#: wp-admin/import/wordpress.php:181 ++msgid "Assign Authors" ++msgstr "ДПЎељОвање аутПра" ++ ++#: wp-admin/import/mt.php:156 ++msgid "To make it easier for you to edit and save the imported posts and drafts, you may want to change the name of the author of the posts. For example, you may want to import all the entries as admin's entries." ++msgstr "Да бОсте ПлакшалО себО уређОвање О сМОЌање увезеМОх члаМака О Мацрта, ЌПжЎа ћете желетО Ўа ОзЌеМОте ОЌе аутПра члаМка. На прОЌер, ЌПжЎа ћете желетО Ўа Ох све увезете каП управМОкПве члаМке." ++ ++#: wp-admin/import/mt.php:157 ++msgid "Below, you can see the names of the authors of the MovableType posts in italics. For each of these names, you can either pick an author in your WordPress installation from the menu, or enter a name for the author in the textbox." ++msgstr "ИспПЎ ЌПжете вОЎетО ОЌеМа аутПра MovableType члаМака ПзМачеМа ОскПшеМОЌ слПвОЌа. За свакП ПЎ ОЌеМа, ЌПжете ПЎабратО аутПра Оз ваше лОсте аутПра путеЌ ОзбПрМОка, ОлО ЌПжете уМетО ОЌе аутПра у ЎПње текст пПље." ++ ++#: wp-admin/import/mt.php:158 ++#: wp-admin/import/wordpress.php:185 ++msgid "If a new user is created by WordPress, a password will be randomly generated. Manually change the user's details if necessary." ++msgstr "АкП је МПвО кПрОсМОк МаправљеМ у ВПрЎпресу, пПЎразуЌеваМа лПзОМка бОће Ќу случајМП МаправљеМа. РучМП прПЌеМОтО Ўетаље кПрОсМОка укПлОкП је пПтребМП." ++ ++#: wp-admin/import/mt.php:169 ++msgid "Current author:" ++msgstr "ТреМутМа аутПр:" ++ ++#: wp-admin/import/mt.php:169 ++#: wp-admin/import/wordpress.php:221 ++#, php-format ++msgid "Create user %1$s or map to existing" ++msgstr "НаправО кПрОсМОка %1$s ОлО преслОкај у пПстПјећО" ++ ++#: wp-admin/import/mt.php:174 ++#: wp-admin/import/wordpress.php:213 ++#: wp-includes/post-template.php:527 ++msgid "Submit" ++msgstr "ППшаљО" ++ ++#: wp-admin/import/mt.php:184 ++msgid "mt-export.txt does not exist" ++msgstr "mt-export.txt Ме пПстПјО" ++ ++#: wp-admin/import/mt.php:190 ++msgid "Sorry, there has been an error" ++msgstr "ЖаП МаЌ је, ЎесОла се грешка" ++ ++#: wp-admin/import/mt.php:231 ++#, php-format ++msgid "
    Adding tags %s..." ++msgstr "
    ДПЎајеЌ ПзМаке %s..." ++ ++#: wp-admin/import/mt.php:267 ++#, php-format ++msgid "(%s ping)" ++msgid_plural "(%s pings)" ++msgstr[0] "(%s пОМг)" ++msgstr[1] "(%s пОМга)" ++msgstr[2] "(%s пОМгПва)" ++ ++#: wp-admin/import/mt.php:468 ++msgid "Movable Type and TypePad" ++msgstr "Movable Type О TypePad" ++ ++#: wp-admin/import/mt.php:468 ++msgid "Import posts and comments from a Movable Type or Typepad blog." ++msgstr "УвезОте члаМке О кПЌеМтаре Оз Movable Type ОлО Typepad блПга." ++ ++#: wp-admin/import.php:10 ++msgid "If you have posts or comments in another system, WordPress can import those into this blog. To get started, choose a system to import from below:" ++msgstr "АкП ОЌате члаМке ОлО кПЌеМтаре у МекПЌ ЎругПЌ сОстеЌу, ВПрЎпрес Ох ЌПже увестО у треМутМО блПг. За пПчетак, ЎПле ОзаберОте сОстеЌ Оз кПјег се увПзО:" ++ ++#: wp-admin/import.php:32 ++msgid "No importers are available." ++msgstr "НеЌа ЎПступМОх увПзМОка." ++ ++#: wp-admin/import/rss.php:10 ++msgid "Import RSS" ++msgstr "УвПз RSS-а" ++ ++#: wp-admin/import/rss.php:25 ++msgid "Howdy! This importer allows you to extract posts from an RSS 2.0 file into your blog. This is useful if you want to import your posts from a system that is not handled by a custom import tool. Pick an RSS file to upload and click Import." ++msgstr "ЗЎравП! Овај увПзМОк ваЌ ЎПзвПљава Ўа ОзЎвПјОте члаМке Оз RSS 2.0 ЎатПтеке у ваш блПг. ОвП је кПрОсМП укПлОкП желОте Ўа увезете ваше члаМке са сОстеЌ кПјО МОје пПЎржаМ са прОлагПђеМОЌ увПзМОкПЌ. ИзаберОте RSS ЎатПтеку за слање О прОтОсМОте УвезО" ++ ++#: wp-admin/import/rss.php:105 ++msgid "Importing post..." ++msgstr "УвПзОЌ члаМак..." ++ ++#: wp-admin/import/rss.php:110 ++msgid "Post already imported" ++msgstr "УМПс је већ увежеМ" ++ ++#: wp-admin/import/rss.php:122 ++msgid "Done !" ++msgstr "ОбављеМП!" ++ ++#: wp-admin/import/rss.php:181 ++#: wp-admin/includes/dashboard.php:225 ++#: wp-includes/widgets.php:1304 ++msgid "RSS" ++msgstr "RSS" ++ ++#: wp-admin/import/rss.php:181 ++msgid "Import posts from an RSS feed." ++msgstr "УвезОте члаМке Оз RSS ОзвПра." ++ ++#: wp-admin/import/stp.php:5 ++msgid "Import Simple Tagging" ++msgstr "УвПз Оз Simple Tagging-а" ++ ++#: wp-admin/import/stp.php:15 ++msgid "Howdy! This imports tags from Simple Tagging 1.6.2 into WordPress tags." ++msgstr "ЗЎравП! ОвП увПзО ПзМаке Оз пПстПјећег ЎПЎатка Simple Tagging 1.6.2 са вашег блПга у уграђеМу структуру ПзМачавања у ВПрЎпресу." ++ ++#: wp-admin/import/stp.php:16 ++msgid "This has not been tested on any other versions of Simple Tagging. Mileage may vary." ++msgstr "ОвП МОје ОспрПбаМП МО Ма јеЎМПЌ ЎругПЌ ОзЎању Simple Tagging-а. РезултатО су прПЌеМљОвО." ++ ++#: wp-admin/import/stp.php:17 ++msgid "To accommodate larger databases for those tag-crazy authors out there, we have made this into an easy 4-step program to help you kick that nasty Simple Tagging habit. Just keep clicking along and we will let you know when you are in the clear!" ++msgstr "Да бОсте прОлагПЎОлО веће базе пПЎатака за ПМе луЎе-са-ПзМакаЌа аутПре, ЌО сЌП ПвП МаправОлО у прПграЌу ПЎ 4 јеЎМПставМОх кПрака Ўа бО ваЌ пПЌПглО Ўа ОзбацОте ту гаЎМуSimple Tagging МавОку. СаЌП МаставОте Ўа прОтОскате МапреЎ О ЌО ћеЌП вас ПбавестОтО каЎа сте Ма чОстПЌ!" ++ ++#: wp-admin/import/stp.php:21 ++#: wp-admin/import/utw.php:22 ++msgid "Step 1" ++msgstr "ПрвО кПрак" ++ ++#: wp-admin/import/stp.php:58 ++msgid "Reading STP Post Tags…" ++msgstr "ЧОтаЌ STP ПзМаке члаМака…" ++ ++#: wp-admin/import/stp.php:65 ++#: wp-admin/import/utw.php:124 ++msgid "No posts were found to have tags!" ++msgstr "НОсу прПМађеМО члаМцО са ПзМакаЌа!" ++ ++#: wp-admin/import/stp.php:76 ++#: wp-admin/import/utw.php:139 ++#, php-format ++msgid "Done! %s tag to post relationships were read." ++msgid_plural "Done! %s tags to post relationships were read." ++msgstr[0] "ОбављеМП! %s ПзМака ПЎМПса члаМка је ПчОтаМа." ++msgstr[1] "ОбављеМП! %s ПзМаке ПЎМПса члаМка су ПчОтаМе." ++msgstr[2] "ОбављеМП! %s ПзМака ПЎМПса члаМка је ПчОтаМП." ++ ++#: wp-admin/import/stp.php:81 ++#: wp-admin/import/utw.php:109 ++msgid "Step 2" ++msgstr "ДругО кПрак" ++ ++#: wp-admin/import/stp.php:89 ++#: wp-admin/import/utw.php:155 ++msgid "Adding Tags to Posts…" ++msgstr "ДПЎајеЌ ПзМаке члаМцОЌа…" ++ ++#: wp-admin/import/stp.php:94 ++#, php-format ++msgid "Done! %s tag was added!" ++msgid_plural "Done! %s tags were added!" ++msgstr[0] "ОбављеМП! %s ПзМака је ЎПЎата!" ++msgstr[1] "ОбављеМП! %s ПзМаке су ЎПЎате!" ++msgstr[2] "ОбављеМП! %s ПзМака је ЎПЎатП!" ++ ++#: wp-admin/import/stp.php:97 ++#: wp-admin/import/utw.php:145 ++msgid "Step 3" ++msgstr "ТрећО кПрак" ++ ++#: wp-admin/import/stp.php:140 ++msgid "OK, so we lied about this being a 4-step program! You’re done!" ++msgstr "У реЎу, лагалО сЌП П тПЌе Ўа је ПвП прПграЌ у 4 кПрака! ЗавршОлО сте!" ++ ++#: wp-admin/import/stp.php:141 ++#: wp-admin/import/utw.php:254 ++msgid "Now wasn’t that easy?" ++msgstr "Е саЎ, зар МОје бОлП лакП?" ++ ++#: wp-admin/import/stp.php:154 ++msgid "Import Simple Tagging tags into WordPress tags." ++msgstr "УвезО ПзМаке Оз Simple Tagging-а у уграђеМу структуру ПзМачавања у ВПрЎпресу." ++ ++#: wp-admin/import/textpattern.php:32 ++msgid "Import Textpattern" ++msgstr "УвПз Оз Textpattern-а" ++ ++#: wp-admin/import/textpattern.php:43 ++msgid "Howdy! This imports categories, users, posts, comments, and links from any Textpattern 4.0.2+ into this blog." ++msgstr "ЗЎравП! ОвП увПзО категПрОје, кПрОсМОке, члаМке, кПЌеМтаре, О везе Оз бОлП кПг Textpattern-а 4.0.2+ у Пвај блПг." ++ ++#: wp-admin/import/textpattern.php:44 ++msgid "This has not been tested on previous versions of Textpattern. Mileage may vary." ++msgstr "ОвП МОје ОспрПбаМП Ма раМОјОЌ ОзЎањОЌа Textpattern-а. ПутМО трПшак се ЌПже разлОкПватО." ++ ++#: wp-admin/import/textpattern.php:45 ++msgid "Your Textpattern Configuration settings are as follows:" ++msgstr "Ваша Textpattern пПЎешавања су слеЎећа:" ++ ++#: wp-admin/import/textpattern.php:465 ++#, php-format ++msgid "Done! %s link imported" ++msgid_plural "Done! %s links imported" ++msgstr[0] "ОбављеМП! %s веза увежеМа" ++msgstr[1] "ОбОбављеМП! %s везе увежеМе" ++msgstr[2] "ОбављеМП! %s веза увежеМП" ++ ++#: wp-admin/import/textpattern.php:559 ++msgid "Welcome to WordPress. We hope (and expect!) that you will find this platform incredibly rewarding! As a new WordPress user coming from Textpattern, there are some things that we would like to point out. Hopefully, they will help your transition go as smoothly as possible." ++msgstr "ДПбрПЎПшлО у ВПрЎпрес. НаЎаЌП се (О ПчекујеЌП!) Ўа ћете Пву платфПрЌу МаћО веПЌа захвалМПЌ! КаП МПвО ВПрЎпрес кПрОсМОк кПјО ЎПлазО Оз Textpattern ЌОљеа, ОЌа пар стварО Ма кПје бОсЌП желелО Ўа ваЌ скреМеЌП пажњу. НаЎаЌП се ће ваЌ тП штП је вОше ЌПгуће ПлакшатО прелаз." ++ ++#: wp-admin/import/textpattern.php:561 ++#, php-format ++msgid "You have already setup WordPress and have been assigned an administrative login and password. Forget it. You didn’t have that login in Textpattern, why should you have it here? Instead we have taken care to import all of your users into our system. Unfortunately there is one downside. Because both WordPress and Textpattern uses a strong encryption hash with passwords, it is impossible to decrypt it and we are forced to assign temporary passwords to all your users. Every user has the same username, but their passwords are reset to password123. So Login and change it." ++msgstr "Већ сте пПЎесОлО ВПрЎпрес О ЎПбОлО сте кПрОсМОчкП ОЌе О лПзОМку за аЎЌОМОстрацОју. ЗабПравОте Ох. ТП МОсте ОЌалО у Textpattern-у, заштП бОсте га кПрОстОлО ПвЎе? УЌестП тПга, пПтруЎОлО сЌП се Ўа увезеЌП све ваше кПрОсМОке у ваш сОстеЌ. НажалПст, пПстПјО О МегатОвМа страМа тПга. ППштП О ВПрЎпрес О Dotclear кПрОсте сМажаМ хеш за еМкрОпцОју (encryption hash) за лПзОМке, МеЌПгуће Ох је ЎекрОптПватО па сЌП прОМуђеМО Ўа свОЌ вашОЌ кПрОсМОцОЌа ЎПЎелОЌП прОвреЌеМе лПзМОке. СвакО кПрОсМОк ОЌа ОстП кПрОсМОчкП ОЌе, алО су ОЌ лПзОМке пПстављење Ма password123. СтПга се прОјавОте О прПЌеМОте Ох." ++ ++#: wp-admin/import/textpattern.php:565 ++msgid "Also, since you’re coming from Textpattern, you probably have been using Textile to format your comments and posts. If this is the case, we recommend downloading and installing Textile for WordPress. Trust me... You’ll want it." ++msgstr "ТакПђе, пПштП ЎПлазОте са Textpattern-а, верПватМП сте кПрОстОлО Textile за ПблОкПвање вашОх кПЌеМтара О члаМака. УкПлОкП је ПвП случај, ЌО ваЌ препПручујеЌП преузОЌање О пПстављање Textile-а за ВПрЎпрес. Верујте ЌО.. Желећете га." ++ ++#: wp-admin/import/textpattern.php:573 ++#, php-format ++msgid "That’s it! What are you waiting for? Go login!" ++msgstr "ТП је тП! Кта чекате?ПрОјавОте се!" ++ ++#: wp-admin/import/textpattern.php:579 ++msgid "Textpattern Database User:" ++msgstr "КПрОсМОк Textpattern базе пПЎатака:" ++ ++#: wp-admin/import/textpattern.php:580 ++msgid "Textpattern Database Password:" ++msgstr "ЛПзОМка Textpattern базе пПЎатака:" ++ ++#: wp-admin/import/textpattern.php:581 ++msgid "Textpattern Database Name:" ++msgstr "ИЌе Textpattern базе пПЎатака:" ++ ++#: wp-admin/import/textpattern.php:582 ++msgid "Textpattern Database Host:" ++msgstr "ДПЌаћОМ (host) Textpattern баже пПЎатака:" ++ ++#: wp-admin/import/textpattern.php:583 ++msgid "Textpattern Table prefix (if any):" ++msgstr "ПрефОкс Textpattern табеле (акП га ОЌа):" ++ ++#: wp-admin/import/textpattern.php:673 ++msgid "Textpattern" ++msgstr "Textpattern" ++ ++#: wp-admin/import/textpattern.php:673 ++msgid "Import categories, users, posts, comments, and links from a Textpattern blog." ++msgstr "УвезО категПрОје, кПрОсМОке, члаМке, кПЌеМтаре, О везе Оз Textpattern блПга." ++ ++#: wp-admin/import/utw.php:7 ++msgid "Import Ultimate Tag Warrior" ++msgstr "УвПз Оз Ultimate Tag Warrior-а" ++ ++#: wp-admin/import/utw.php:17 ++msgid "Howdy! This imports tags from Ultimate Tag Warrior 3 into WordPress tags." ++msgstr "ЗЎравП! ОвП увПзО ПзМаке Оз пПстПјећег ЎПЎатка Ultimate Tag Warrior 3 са вашег блПга у уграђеМу структуру ПзМачавања у ВПрЎпресу." ++ ++#: wp-admin/import/utw.php:18 ++msgid "This has not been tested on any other versions of Ultimate Tag Warrior. Mileage may vary." ++msgstr "ОвП МОје ОспрПбаМП МО Ма јеЎМПЌ ЎругПЌ ОзЎању Ultimate Tag Warrior-а. РезултатО су прПЌеМљОвО." ++ ++#: wp-admin/import/utw.php:19 ++msgid "To accommodate larger databases for those tag-crazy authors out there, we have made this into an easy 5-step program to help you kick that nasty UTW habit. Just keep clicking along and we will let you know when you are in the clear!" ++msgstr "Да бОсте прОлагПЎОлО веће базе пПЎатака за ПМе луЎе-са-ПзМакаЌа аутПре, ЌО сЌП ПвП МаправОлО у прПграЌу ПЎ 5 јеЎМПставМОх кПрака Ўа бО ваЌ пПЌПглО Ўа ОзбацОте ту гаЎМу UTW МавОку. СаЌП МаставОте Ўа прОтОскате МапреЎ О ЌО ћеЌП вас ПбавестОтО каЎа сте Ма чОстПЌ!" ++ ++#: wp-admin/import/utw.php:66 ++msgid "Reading UTW Tags…" ++msgstr "ЧОтаЌ UTW ПзМаке…" ++ ++#: wp-admin/import/utw.php:88 ++msgid "The following tags were found:" ++msgstr "ПрПМађеМе су слеЎеће ПзМаке:" ++ ++#: wp-admin/import/utw.php:102 ++msgid "If you don’t want to import any of these tags, you should delete them from the UTW tag management page and then re-run this import." ++msgstr "укПлОкП Ме желОте Ўа увезете бОлП кПју ПЎ ПвОх ПзМака, ЌПрате Ўа Ох ПбрОшете са страМОце за управљање ПзМакаЌа UTW-а О ПМЎа пПМПвП пПкреМОте Пвај увПзМОк." ++ ++#: wp-admin/import/utw.php:117 ++msgid "Reading UTW Post Tags…" ++msgstr "ЧОтаЌ UTW ПзМаке члаМака…" ++ ++#: wp-admin/import/utw.php:160 ++#, php-format ++msgid "Done! %s tag were added!" ++msgid_plural "Done! %s tags were added!" ++msgstr[0] "ОбављеМП! %s ПзМака је ЎПЎата!" ++msgstr[1] "ОбављеМП! %s ПзМаке су ЎПЎате!" ++msgstr[2] "ОбављеМП! %s ПзМака је ЎПЎатП!" ++ ++#: wp-admin/import/utw.php:164 ++msgid "Step 4" ++msgstr "ЧетвртО кПрак" ++ ++#: wp-admin/import/utw.php:252 ++msgid "OK, so we lied about this being a 5-step program! You’re done!" ++msgstr "У реЎу, лагалО сЌП П тПЌе Ўа је ПвП прПграЌ у 5 кПрака! ЗавршОлО сте!" ++ ++#: wp-admin/import/utw.php:274 ++msgid "Import Ultimate Tag Warrior tags into WordPress tags." ++msgstr "УвезО ПзМаке Оз Ultimate Tag Warrior-а у уграђеМу структуру ПзМачавања у ВПрЎпресу." ++ ++#: wp-admin/import/wordpress.php:23 ++msgid "Import WordPress" ++msgstr "УвезО Оз ВПрЎпреса" ++ ++#: wp-admin/import/wordpress.php:38 ++msgid "Howdy! Upload your WordPress eXtended RSS (WXR) file and we’ll import the posts, comments, custom fields, and categories into this blog." ++msgstr "ЗЎравП! ППшаљОте вашу ВПрЎпрес прПЎужеМО RSS (WXR) ЎатПтеку О ЌО ћеЌП увестО члаМке, кПЌеМтаре, прОлагПђеМа пПља, О категПрОје у Пвај блПг." ++ ++#: wp-admin/import/wordpress.php:39 ++msgid "Choose a WordPress WXR file to upload, then click Upload file and import." ++msgstr "ИзаберОте ВПрЎпрес WXR ЎатПтеку за слање, затОЌ прОтОсМОте ППшаљО ЎатПтеку О увезОте." ++ ++#: wp-admin/import/wordpress.php:182 ++msgid "To make it easier for you to edit and save the imported posts and drafts, you may want to change the name of the author of the posts. For example, you may want to import all the entries as admins entries." ++msgstr "Да бОсте ПлакшалО себО уређОвање О сМОЌање увезеМОх члаМака О Мацрта, ЌПжЎа ћете желетО Ўа ОзЌеМОте ОЌе аутПра члаМка. На прОЌер, ЌПжЎа ћете желетО Ўа Ох све увезете каП admin-Пве члаМке." ++ ++#: wp-admin/import/wordpress.php:196 ++msgid "Import author:" ++msgstr "УвПз аутПра:" ++ ++#: wp-admin/import/wordpress.php:204 ++msgid "Import Attachments" ++msgstr "УвПз прОлПга" ++ ++#: wp-admin/import/wordpress.php:207 ++msgid "Download and import file attachments" ++msgstr "ПреузЌО О увезО ЎатПтеке прОлПга" ++ ++#: wp-admin/import/wordpress.php:224 ++msgid "Map to existing" ++msgstr "ПреслОкај у пПстПјећО" ++ ++#: wp-admin/import/wordpress.php:248 ++msgid "Invalid file" ++msgstr "НеОсправМа ЎатПтека" ++ ++#: wp-admin/import/wordpress.php:249 ++msgid "Please upload a valid WXR (WordPress eXtended RSS) export file." ++msgstr "МПлОЌП вас пПшаљОте ОсправМу WXR (ВПрЎпресПв прПЎужеМО RSS) ОзвПзМу ЎатПтеку." ++ ++#: wp-admin/import/wordpress.php:333 ++msgid "All done." ++msgstr "Све је урађеМП." ++ ++#: wp-admin/import/wordpress.php:333 ++msgid "Have fun!" ++msgstr "УжОвајте!" ++ ++#: wp-admin/import/wordpress.php:522 ++#, php-format ++msgid "Importing attachment %s... " ++msgstr "УвПзОЌ прОлПг %s... " ++ ++#: wp-admin/import/wordpress.php:525 ++#, php-format ++msgid "Remote file error: %s" ++msgstr "Грешка уЎаљеМе ЎатПтеке: %s" ++ ++#: wp-admin/import/wordpress.php:536 ++#: wp-includes/functions.php:1164 ++msgid "Invalid file type" ++msgstr "НеОсправаМ тОп ЎатПтеке" ++ ++#: wp-admin/import/wordpress.php:557 ++#, php-format ++msgid "Skipping attachment %s" ++msgstr "Прескакање прОлПга %s" ++ ++#: wp-admin/import/wordpress.php:580 ++#, php-format ++msgid "Remote file returned error response %d" ++msgstr "УЎаљеМа ЎатПтека је пПслала грешку у ПЎгПвПру %d" ++ ++#: wp-admin/import/wordpress.php:584 ++msgid "Remote file is incorrect size" ++msgstr "УЎаљеМа ЎатПтека је МеправОлМе велОчОМе" ++ ++#: wp-admin/import/wordpress.php:590 ++#, php-format ++msgid "Remote file is too large, limit is %s" ++msgstr "УЎаљеМа ЎатПтека је превелОка, ПграМОчење је %s" ++ ++#: wp-admin/import/wordpress.php:704 ++msgid "Sorry, there has been an error." ++msgstr "ЖаП МаЌ је, ЎесОла се грешка." ++ ++#: wp-admin/import/wordpress.php:746 ++msgid "Import posts, comments, custom fields, pages, and categories from a WordPress export file." ++msgstr "УвезО члаМке, кПЌеМтаре, прОлагПђеМа пПља, страМе, О категПрОје Оз ВПрЎпресПве ОзвПзМе ЎатПтеке." ++ ++#: wp-admin/import/wp-cat2tag.php:9 ++msgid "Convert Categories to Tags" ++msgstr "ПретвПрО категПрОје у ПзМаке" ++ ++#: wp-admin/import/wp-cat2tag.php:32 ++msgid "Hey there. Here you can selectively converts existing categories to tags. To get started, check the categories you wish to be converted, then click the Convert button." ++msgstr "ЗЎравП! ОвЎе ЌПжете Ўа селектОвМП претвПрОте пПстПјеће категПрОје у ПзМаке. Да бОсте пПчелО, ОзаберОте категПрОје кПје желОте Ўа претвПрОте, затОЌ прОтОсМОте ЎугЌе ПретвПрО." ++ ++#: wp-admin/import/wp-cat2tag.php:33 ++msgid "Keep in mind that if you convert a category with child categories, the children become top-level orphans." ++msgstr "ИЌајте Ма уЌу Ўа акП претвПрОте категПрОју са пПЎкатегПрОјаЌа, те пПЎкатегПрОје пПстају категПрОје МајвОшег МОвПа." ++ ++#: wp-admin/import/wp-cat2tag.php:37 ++msgid "You have no categories to convert!" ++msgstr "НеЌате категПрОја за претварање!" ++ ++#: wp-admin/import/wp-cat2tag.php:56 ++msgid "Uncheck All" ++msgstr "СкОМО сва Пбележавања" ++ ++#: wp-admin/import/wp-cat2tag.php:63 ++#: wp-admin/import/wp-cat2tag.php:71 ++msgid "Check All" ++msgstr "ИзаберО све" ++ ++#: wp-admin/import/wp-cat2tag.php:93 ++msgid "Convert Tags" ++msgstr "ПретврПрО ПзМаке" ++ ++#: wp-admin/import/wp-cat2tag.php:133 ++#, php-format ++msgid "Uh, oh. Something didn’t work. Please try again." ++msgstr "Ух, Пх. НештП МОје раЎОлП. МПлОЌП вас пПкушајте пПМПвП." ++ ++#: wp-admin/import/wp-cat2tag.php:148 ++#, php-format ++msgid "Converting category #%s ... " ++msgstr "ПретвараЌ категПрОју #%s ... " ++ ++#: wp-admin/import/wp-cat2tag.php:151 ++msgid "Category doesn't exist!" ++msgstr "КатегПрОја Ме пПстПјО!" ++ ++#: wp-admin/import/wp-cat2tag.php:156 ++msgid "Category is already a tag." ++msgstr "КатегПрОја е већ ПзМака." ++ ++#: wp-admin/import/wp-cat2tag.php:192 ++msgid "Converted successfully." ++msgstr "УспешМП претвПреМП." ++ ++#: wp-admin/import/wp-cat2tag.php:199 ++#, php-format ++msgid "We’re all done here, but you can always convert more." ++msgstr "МО сЌП ураЎОлО све ПвЎе, алО увек ЌПжете претвПрОтО јПш." ++ ++#: wp-admin/import/wp-cat2tag.php:237 ++msgid "Categories to Tags Converter" ++msgstr "Претварач категПрОја у ПзМаке" ++ ++#: wp-admin/import/wp-cat2tag.php:237 ++msgid "Convert existing categories to tags, selectively." ++msgstr "ПретвПрО пПстПјеће категПрОје у ПзМаке, селектОвМП." ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:31 ++msgid "The ftp PHP extension is not available" ++msgstr "FTP PHP прПшОрење МОје ЎПступМП" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:42 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:41 ++msgid "FTP hostname is required" ++msgstr "FTP ЎПЌаћОМ (hostname) је МеПпхПЎаМ" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:51 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:50 ++msgid "FTP username is required" ++msgstr "FTP кПрОсМОчкП ОЌе је МеПпхПЎМП" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:56 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:55 ++msgid "FTP password is required" ++msgstr "FTP лПзОМка је МеПпхПЎМа" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:71 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:67 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:71 ++#, php-format ++msgid "Failed to connect to FTP Server %1$s:%2$s" ++msgstr "НОје успелП пПвезОвање са FTP серверПЌ %1$s:%2$s" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:76 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:76 ++#, php-format ++msgid "Username/Password incorrect for %s" ++msgstr "КПрОсМОчкП ОЌе/ЛПзОМка су МеОсправМО за %s" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:105 ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:128 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:107 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:130 ++#, php-format ++msgid "Changing to %s" ++msgstr "Мењање у %s" ++ ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:108 ++#: wp-admin/includes/class-wp-filesystem-ftpext.php:136 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:110 ++#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:138 ++#, php-format ++msgid "Found %s" ++msgstr "ПрПМађеМП %s" ++ ++#: wp-admin/includes/comment.php:15 ++msgid "You are not allowed to edit comments on this post, so you cannot edit this comment." ++msgstr "НОје ваЌ ЎПзвПљеМП Ўа уређујете кПЌеМтаре Ма Пвај члаМак, такП Ўа Ме ЌПжете ОзЌеМОтО Пвај кПЌеМтар." ++ ++#: wp-admin/includes/dashboard.php:26 ++#, php-format ++msgid "%d comment awaiting moderation" ++msgid_plural "%d comments awaiting moderation" ++msgstr[0] "%d кПЌеМтар чека уређОвање" ++msgstr[1] "%d кПЌеМтара чека уређОвање" ++msgstr[2] "%d кПЌеМтара чека уређОвање" ++ ++#: wp-admin/includes/dashboard.php:31 ++#: wp-includes/widgets.php:930 ++#: wp-includes/widgets.php:993 ++#: wp-includes/widgets.php:994 ++msgid "Recent Comments" ++msgstr "СкПрашњО кПЌеМтарО" ++ ++#: wp-admin/includes/dashboard.php:45 ++#: wp-admin/includes/dashboard.php:49 ++msgid "Incoming Links" ++msgstr "ДПлазМе везе" ++ ++#: wp-admin/includes/dashboard.php:55 ++#: wp-admin/menu.php:27 ++#: wp-admin/menu.php:66 ++#: wp-admin/plugin-editor.php:119 ++#: wp-includes/js/tinymce/langs/wp-langs.php:241 ++msgid "Plugins" ++msgstr "ДПЎацО" ++ ++#: wp-admin/includes/dashboard.php:65 ++msgid "http://wordpress.org/development/" ++msgstr "http://wordpress.org/development/" ++ ++#: wp-admin/includes/dashboard.php:66 ++msgid "http://wordpress.org/development/feed/" ++msgstr "http://wordpress.org/development/feed/" ++ ++#: wp-admin/includes/dashboard.php:67 ++msgid "WordPress Development Blog" ++msgstr "БлПг П развПју ВПрЎпреса" ++ ++#: wp-admin/includes/dashboard.php:78 ++msgid "Primary Feed" ++msgstr "ОсМПвМО ОзвПр" ++ ++#: wp-admin/includes/dashboard.php:87 ++msgid "http://planet.wordpress.org/" ++msgstr "http://planet.wordpress.org/" ++ ++#: wp-admin/includes/dashboard.php:88 ++msgid "http://planet.wordpress.org/feed/" ++msgstr "http://planet.wordpress.org/feed/" ++ ++#: wp-admin/includes/dashboard.php:89 ++msgid "Other WordPress News" ++msgstr "Остале ВПрЎпрес МПвПстО" ++ ++#: wp-admin/includes/dashboard.php:97 ++msgid "Secondary Feed" ++msgstr "СпПреЎМО ОзвПр" ++ ++#: wp-admin/includes/dashboard.php:206 ++msgid "See All" ++msgstr "ВОЎО ÑÐ²Ðµ" ++ ++#: wp-admin/includes/dashboard.php:218 ++#: wp-admin/includes/media.php:834 ++#: wp-admin/includes/widgets.php:227 ++#: wp-includes/js/tinymce/langs/wp-langs.php:17 ++#: wp-includes/script-loader.php:145 ++#: wp-includes/script-loader.php:153 ++#: wp-includes/script-loader.php:158 ++#: wp-includes/script-loader.php:164 ++#: wp-includes/script-loader.php:194 ++msgid "Cancel" ++msgstr "ОЎустаМО" ++ ++#: wp-admin/includes/dashboard.php:225 ++msgid "rss icon" ++msgstr "rss icon" ++ ++#: wp-admin/includes/dashboard.php:281 ++#, php-format ++msgid "From %1$s on %2$s %3$s" ++msgstr "ОЎ %1$s Ма %2$s %3$s" ++ ++#: wp-admin/includes/dashboard.php:332 ++#: wp-admin/page.php:85 ++#: wp-admin/post.php:92 ++msgid "Somebody" ++msgstr "НекП" ++ ++#: wp-admin/includes/dashboard.php:345 ++msgid "something" ++msgstr "МештП" ++ ++#: wp-admin/includes/dashboard.php:348 ++#, php-format ++msgid "%1$s linked here saying, \"%3$s\"|feed_display" ++msgstr "%1$s је пПслаП везу ПвЎе кажућО, \"%3$s\"" ++ ++#: wp-admin/includes/dashboard.php:350 ++#, php-format ++msgid "%1$s linked here saying, \"%3$s\"|feed_display" ++msgstr "%1$s је пПслаП везу ПвЎе, кажућО, \"%3$s\"" ++ ++#: wp-admin/includes/dashboard.php:354 ++#, php-format ++msgid " on %4$s|feed_display" ++msgstr "Ма %4$s" ++ ++#: wp-admin/includes/dashboard.php:366 ++msgid "This dashboard widget queries Google Blog Search so that when another blog links to your site it will show up here. It has found no incoming links… yet. It’s okay — there is no rush." ++msgstr "ВОџет кПМтрПлМе табле вршО упОт Ма Гугл блПг претразО такП Ўа каЎа МекО ЎругО блПг ПставО везу ка вашеЌ, ПМа ће се прОказатО ПвЎе. НОјеЎМа веза МОје прПМађеМа… јПш увек. ТП је уреЎу — МеЌа журбе." ++ ++#: wp-admin/includes/dashboard.php:405 ++msgid "Most Popular" ++msgstr "МајПЌОљеМОје" ++ ++#: wp-admin/includes/dashboard.php:405 ++msgid "Newest Plugins" ++msgstr "НајМПвОјО ЎПЎацО" ++ ++#: wp-admin/includes/dashboard.php:405 ++msgid "Recently Updated" ++msgstr "НеЎавМП ажурОраМП" ++ ++#: wp-admin/includes/dashboard.php:436 ++msgid "Download" ++msgstr "ПреузОЌање" ++ ++#: wp-admin/includes/dashboard.php:446 ++msgid "Loading…" ++msgstr "УчОтавање…" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Main Index Template" ++msgstr "КаблПМ главМПг ОМЎекса" ++ ++#: wp-admin/includes/file.php:3 ++#: wp-admin/includes/file.php:5 ++msgid "Stylesheet" ++msgstr "СтОлПвО" ++ ++#: wp-admin/includes/file.php:3 ++msgid "RTL Stylesheet" ++msgstr "ДесМП-ка-левП стОлПвО" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Popup Comments" ++msgstr "ИскачућО кПЌеМтарО" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Footer" ++msgstr "ППЎМПжје" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Header" ++msgstr "Заглавље" ++ ++#: wp-admin/includes/file.php:3 ++#: wp-includes/widgets.php:26 ++msgid "Sidebar" ++msgstr "БПчМа трака" ++ ++#: wp-admin/includes/file.php:3 ++#: wp-includes/widgets.php:457 ++#: wp-includes/widgets.php:1368 ++#: wp-includes/widgets.php:1369 ++msgid "Archives" ++msgstr "АрхОве" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Category Template" ++msgstr "КаблПМ категПрОја" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Search Results" ++msgstr "РезултатО претражОвања" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Search Form" ++msgstr "ППље за претрагу" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Single Post" ++msgstr "ЈеЎМПструк члаМак" ++ ++#: wp-admin/includes/file.php:3 ++msgid "404 Template" ++msgstr "КаблПМ грешке" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Links Template" ++msgstr "КаблПМ веза" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Theme Functions" ++msgstr "ЀуМкцОје теЌе" ++ ++#: wp-admin/includes/file.php:3 ++msgid "Attachment Template" ++msgstr "КаблПМ прОлПга" ++ ++#: wp-admin/includes/file.php:3 ++msgid "my-hacks.php (legacy hacks support)" ++msgstr "my-hacks.php (пПЎршка за старе трОкПве)" ++ ++#: wp-admin/includes/file.php:3 ++msgid ".htaccess (for rewrite rules )" ++msgstr ".htaccess (за правОла препОсОвања)" ++ ++#: wp-admin/includes/file.php:5 ++msgid "Comments Template" ++msgstr "КаблПМ кПЌеМтара" ++ ++#: wp-admin/includes/file.php:5 ++msgid "Popup Comments Template" ++msgstr "КаблПМ ОскачућОх кПЌеМтара" ++ ++#: wp-admin/includes/file.php:85 ++msgid "Sorry, can’t edit files with \"..\" in the name. If you are trying to edit a file in your WordPress home directory, you can just type the name of the file in." ++msgstr "ЖаП МаЌ је, Ме ЌПжете уређОватО ЎатПтеке са \"..\" у МазОву. АкП уређујете ЎатПтеку у ПсМПвМПЌ ВПрЎпрес ЎОректПрОјуЌу, саЌП упОштОте њеМП ОЌе." ++ ++#: wp-admin/includes/file.php:88 ++msgid "Sorry, can’t call files with their real path." ++msgstr "ЖаП ЌО је, Ме ЌПжете пПзОватО ЎатПтеке са кПЌплетМПЌ путањПЌ." ++ ++#: wp-admin/includes/file.php:91 ++msgid "Sorry, that file cannot be edited." ++msgstr "ЖаП МаЌ је, ЎатПтека се Ме ЌПже уређОватО." ++ ++#: wp-admin/includes/file.php:116 ++msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." ++msgstr "ВелОчОМа пПслате ЎатПтеке преЌашује вреЎМПст ЎОректОве upload_max_filesize у php.ini ЎатПтецО." ++ ++#: wp-admin/includes/file.php:117 ++msgid "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form." ++msgstr "ВелОчОМа пПслате ЎатПтеке преЌашује вреЎМПст ЎОректОве MAX_FILE_SIZE кПја је ПЎређеМа у HTML фПрЌО." ++ ++#: wp-admin/includes/file.php:118 ++msgid "The uploaded file was only partially uploaded." ++msgstr "ППслата ЎатПтека је саЌП ЎелОЌОчМП прОЌљеМа." ++ ++#: wp-admin/includes/file.php:119 ++msgid "No file was uploaded." ++msgstr "ДатПтека МОје пПслата." ++ ++#: wp-admin/includes/file.php:120 ++msgid "Missing a temporary folder." ++msgstr "НеЎПстаје прОвреЌеМО ЎОректПрОјуЌ." ++ ++#: wp-admin/includes/file.php:121 ++msgid "Failed to write file to disk." ++msgstr "ПОсање Ма ЎОск МОје успелП." ++ ++#: wp-admin/includes/file.php:137 ++msgid "Invalid form submission." ++msgstr "НеуспешМП слање Пбрасца." ++ ++#: wp-admin/includes/file.php:145 ++msgid "File is empty. Please upload something more substantial. This error could also be caused by uploads being disabled in your php.ini." ++msgstr "ДатПтека је празМа. МПлОЌП вас Ўа пПшаљете МештП стварМП. Ова грешка такПђе ЌПже бОтО узрПкПваМа укПлОкП је слање бОлП прПузрПкПваМП ПМеспПсПбљавањеЌ у вашПј php.ini." ++ ++#: wp-admin/includes/file.php:149 ++msgid "Specified file failed upload test." ++msgstr "НОје успела прПба слања ПЎређеМе ЎатПтеке." ++ ++#: wp-admin/includes/file.php:158 ++msgid "File type does not meet security guidelines. Try another." ++msgstr "ДатПтека Ме Оспуњава сОгурМПсМе захтеве. ППкушајте Ўругу." ++ ++#: wp-admin/includes/file.php:176 ++#, php-format ++msgid "The uploaded file could not be moved to %s." ++msgstr "ППслата ЎатПтека МОје ЌПгла бОтО преЌештеМа у %s." ++ ++#: wp-admin/includes/file.php:200 ++msgid "Invalid URL Provided" ++msgstr "НеОсправаМ URL је ЎПстављеМ" ++ ++#: wp-admin/includes/file.php:204 ++#: wp-admin/includes/file.php:208 ++msgid "Could not create Temporary file" ++msgstr "НОје ЌПгуће МаправОтО прОвреЌеМу ЎатПтеку" ++ ++#: wp-admin/includes/file.php:229 ++#: wp-admin/includes/update.php:157 ++msgid "Could not access filesystem." ++msgstr "НОје ЌПгућ прОступ сОстеЌу ЎатПтека." ++ ++#: wp-admin/includes/file.php:239 ++msgid "Incompatible archive" ++msgstr "НеусклађеМа архОвска ЎатПтека" ++ ++#: wp-admin/includes/file.php:242 ++msgid "Empty archive" ++msgstr "ПразМа архОвска ЎатПтека" ++ ++#: wp-admin/includes/file.php:262 ++msgid "Could not create directory" ++msgstr "НОје ЌПгуће МаправОтО ЎОректПрОјуЌ" ++ ++#: wp-admin/includes/file.php:268 ++msgid "Could not copy file" ++msgstr "НОје ЌПгуће уЌМПжОтО ЎатПтеку" ++ ++#: wp-admin/includes/image.php:131 ++#, php-format ++msgid "File '%s' doesn't exist?" ++msgstr "ДатПтека '%s' Ме пПстПјО?" ++ ++#: wp-admin/includes/image.php:134 ++msgid "The GD image library is not installed." ++msgstr "GD image library МОје пПстављеМа." ++ ++#: wp-admin/includes/image.php:141 ++#, php-format ++msgid "File '%s' is not an image." ++msgstr "ДатПтека '%s' МОје слОка." ++ ++#: wp-admin/includes/media.php:5 ++msgid "Choose File" ++msgstr "ИзаберО ЎатПтеку" ++ ++#: wp-admin/includes/media.php:6 ++msgid "Gallery" ++msgstr "ГалерОја" ++ ++#: wp-admin/includes/media.php:7 ++#: wp-admin/menu.php:46 ++#: wp-admin/upload.php:36 ++msgid "Media Library" ++msgstr "БОблОПтека саЎржаја" ++ ++#: wp-admin/includes/media.php:22 ++#, php-format ++msgid "Gallery (%s)" ++msgstr "ГалерОја (%s)" ++ ++#: wp-admin/includes/media.php:127 ++msgid "Uploads" ++msgstr "Слање ЎатПтека" ++ ++#: wp-admin/includes/media.php:127 ++#: wp-admin/update.php:152 ++msgid "WordPress" ++msgstr "ВПрЎпрес" ++ ++#: wp-admin/includes/media.php:159 ++#, php-format ++msgid "Add media: %s" ++msgstr "ДПЎај саЎржај: %s" ++ ++#: wp-admin/includes/media.php:161 ++msgid "Add Media" ++msgstr "ДПЎај саЎржај" ++ ++#: wp-admin/includes/media.php:163 ++msgid "Add an Image" ++msgstr "ДПЎај слОку" ++ ++#: wp-admin/includes/media.php:165 ++msgid "Add Video" ++msgstr "ДПЎај вОЎеП запОс" ++ ++#: wp-admin/includes/media.php:167 ++msgid "Add Audio" ++msgstr "ДПЎај звучМО запОс" ++ ++#: wp-admin/includes/media.php:296 ++#: wp-admin/includes/media.php:334 ++#: wp-admin/includes/media.php:372 ++#: wp-admin/includes/media.php:410 ++msgid "Saved." ++msgstr "СачуваМП." ++ ++#: wp-admin/includes/media.php:444 ++#: wp-admin/includes/media.php:540 ++msgid "Caption" ++msgstr "НатпОс" ++ ++#: wp-admin/includes/media.php:445 ++#: wp-admin/includes/media.php:1094 ++msgid "Alternate text, e.g. \"The Mona Lisa\"" ++msgstr "РезервМО текст, Мпр. \"МПМа ЛОза\"" ++ ++#: wp-admin/includes/media.php:452 ++#: wp-admin/includes/media.php:1096 ++#: wp-includes/js/tinymce/langs/wp-langs.php:29 ++#: wp-includes/js/tinymce/langs/wp-langs.php:268 ++msgid "Alignment" ++msgstr "ППравМање" ++ ++#: wp-admin/includes/media.php:458 ++#: wp-admin/includes/media.php:1101 ++#: wp-includes/js/tinymce/langs/wp-langs.php:30 ++#: wp-includes/js/tinymce/langs/wp-langs.php:275 ++#: wp-includes/js/tinymce/langs/wp-langs.php:372 ++msgid "Left" ++msgstr "ЛевП" ++ ++#: wp-admin/includes/media.php:460 ++#: wp-admin/includes/media.php:1103 ++#: wp-includes/js/tinymce/langs/wp-langs.php:31 ++#: wp-includes/js/tinymce/langs/wp-langs.php:352 ++#: wp-includes/js/tinymce/langs/wp-langs.php:373 ++msgid "Center" ++msgstr "ЊеМтрОраМП" ++ ++#: wp-admin/includes/media.php:462 ++#: wp-admin/includes/media.php:1105 ++#: wp-includes/js/tinymce/langs/wp-langs.php:32 ++#: wp-includes/js/tinymce/langs/wp-langs.php:276 ++#: wp-includes/js/tinymce/langs/wp-langs.php:370 ++msgid "Right" ++msgstr "ДесМП" ++ ++#: wp-admin/includes/media.php:465 ++msgid "Size" ++msgstr "ВелОчОМа" ++ ++#: wp-admin/includes/media.php:469 ++#: wp-includes/script-loader.php:173 ++msgid "Thumbnail" ++msgstr "УЌањеМа слОка" ++ ++#: wp-admin/includes/media.php:471 ++msgid "Medium" ++msgstr "СреЎња велОчОМа" ++ ++#: wp-admin/includes/media.php:473 ++#: wp-includes/script-loader.php:174 ++msgid "Full size" ++msgstr "ПуМа велОчОМа" ++ ++#: wp-admin/includes/media.php:490 ++msgid "Empty Title filled from filename." ++msgstr "ПразаМ МаслПв пПпуњеМ Оз ОЌеМа ЎатПтеке." ++ ++#: wp-admin/includes/media.php:549 ++#: wp-includes/js/tinymce/langs/wp-langs.php:278 ++msgid "Link URL" ++msgstr "URL везе" ++ ++#: wp-admin/includes/media.php:554 ++msgid "File URL" ++msgstr "URL ЎатПтеке" ++ ++#: wp-admin/includes/media.php:555 ++msgid "Post URL" ++msgstr "URL члаМка" ++ ++#: wp-admin/includes/media.php:559 ++msgid "Enter a link URL or click above for presets." ++msgstr "УМесОте URL везе ОлО ОзаберОте ОзМаЎ Оа уМапреЎ ЎефОМОсаМПг." ++ ++#: wp-admin/includes/media.php:629 ++#: wp-admin/widgets.php:248 ++#: wp-admin/widgets.php:265 ++msgid "Show" ++msgstr "ПрОкажО" ++ ++#: wp-admin/includes/media.php:630 ++msgid "Hide" ++msgstr "СакрОj" ++ ++#: wp-admin/includes/media.php:688 ++#: wp-admin/includes/media.php:1111 ++#: wp-admin/includes/media.php:1139 ++#: wp-admin/includes/media.php:1167 ++#: wp-admin/includes/media.php:1195 ++msgid "Insert into Post" ++msgstr "УЌетМО у члаМак" ++ ++#: wp-admin/includes/media.php:826 ++msgid "Choose files to upload" ++msgstr "ИзаберОте ЎатПтеку за слање" ++ ++#: wp-admin/includes/media.php:827 ++msgid "After a file has been uploaded, you can add titles and descriptions." ++msgstr "КаЎа ЎатПтека буЎе сМОЌљеМа, ЌПжете ЎПЎатО МаслПв О ПпОс." ++ ++#: wp-admin/includes/media.php:839 ++msgid "If you want to use all capabilities of the uploader, like uploading multiple files at once, please upgrade to lighttpd 1.5." ++msgstr "УкПлОкП желОте Ўа кПрОстОте све ЌПгућМПстО алатке за слање ЎатПтека, каП штП је слање вОше ЎатПтека ПЎјеЎМПЌ, ЌПлОЌП вас Ўа ажурОрате Ма lighttpd 1.5." ++ ++#: wp-admin/includes/media.php:858 ++msgid "From Computer" ++msgstr "Са рачуМара" ++ ++#: wp-admin/includes/media.php:876 ++#: wp-admin/includes/media.php:890 ++#: wp-admin/includes/media.php:923 ++#: wp-admin/includes/media.php:1071 ++msgid "Save all changes" ++msgstr "Сачувај све ОзЌеМе" ++ ++#: wp-admin/includes/media.php:881 ++msgid "— OR —" ++msgstr "— ИЛИ —" ++ ++#: wp-admin/includes/media.php:882 ++msgid "From URL" ++msgstr "Са URL-а" ++ ++#: wp-admin/includes/media.php:924 ++msgid "Insert gallery into post" ++msgstr "УЌетМО галерОју у члаМак" ++ ++#: wp-admin/includes/media.php:961 ++#: wp-admin/upload.php:129 ++msgid "Search Media" ++msgstr "ПретражО саЎржај" ++ ++#: wp-admin/includes/media.php:980 ++#: wp-admin/upload.php:94 ++msgid "All Types" ++msgstr "Све врсте" ++ ++#: wp-admin/includes/media.php:1043 ++msgid "Filter »" ++msgstr "ЀОлтер »" ++ ++#: wp-admin/includes/media.php:1082 ++#: wp-includes/js/tinymce/langs/wp-langs.php:261 ++msgid "Image URL" ++msgstr "URL слОке" ++ ++#: wp-admin/includes/media.php:1123 ++msgid "Audio File URL" ++msgstr "URL ЎатПтеке звучМПг запОса" ++ ++#: wp-admin/includes/media.php:1135 ++msgid "Link text, e.g. \"Still Alive by Jonathan Coulton\"" ++msgstr "Текст везе, Мпр. \"Still Alive ПЎ ЏПМатаМа КалтПМа\"" ++ ++#: wp-admin/includes/media.php:1151 ++msgid "Video URL" ++msgstr "URL ЎатПтеке вОЎеП запОса" ++ ++#: wp-admin/includes/media.php:1163 ++msgid "Link text, e.g. \"Lucy on YouTube\"" ++msgstr "Текст везе, Мпр. \"ЛусО Ма Јутјубу\"" ++ ++#: wp-admin/includes/media.php:1191 ++msgid "Link text, e.g. \"Ransom Demands (PDF)\"" ++msgstr "Текст везе, Мпр. \"СпОсак захтева (ПДЀ)\"" ++ ++#: wp-admin/includes/plugin.php:22 ++msgid "Visit plugin homepage" ++msgstr "ППсетОте ЌрежМП ЌестП ЎПЎатка" ++ ++#: wp-admin/includes/plugin.php:28 ++#: wp-includes/theme.php:113 ++msgid "Visit author homepage" ++msgstr "ППсетОте ЌрежМП ЌестП аутПра" ++ ++#: wp-admin/includes/plugin.php:164 ++msgid "One of the plugins is invalid." ++msgstr "ЈеЎаМ ПЎ ЎПЎатака је МеОсправаМ." ++ ++#: wp-admin/includes/plugin.php:195 ++msgid "Invalid plugin." ++msgstr "НеОсправаМ ЎПЎак." ++ ++#: wp-admin/includes/plugin.php:197 ++msgid "Plugin file does not exist." ++msgstr "ДПЎатак Ме пПстПјО." ++ ++#: wp-admin/includes/post.php:45 ++msgid "You are not allowed to edit pages as this user." ++msgstr "НОје ваЌ ЎПзвПљеМП Ўа уређујете страМе каП Пвај кПрОсМОк." ++ ++#: wp-admin/includes/post.php:48 ++msgid "You are not allowed to edit posts as this user." ++msgstr "НОје ваЌ ЎПзвПљеМП Ўа уређујете члаМке каП Пвај кПрОсМОк." ++ ++#: wp-admin/includes/post.php:214 ++msgid "You are not allowed to create pages on this blog." ++msgstr "НОје ваЌ ЎПзвПљеМП Ўа пПстављате страМе у ПвПЌ блПгу." ++ ++#: wp-admin/includes/post.php:217 ++msgid "You are not allowed to create posts or drafts on this blog." ++msgstr "НОје ваЌ ЎПзвПљеМП Ўа пПстављате члаМке ОлО Мацрте у ПвПЌ блПгу." ++ ++#: wp-admin/includes/post.php:259 ++msgid "You are not allowed to create pages as this user." ++msgstr "НОје ваЌ ЎПзвПљеМП Ўа пПстављате страМе каП Пвај кПрОсМОк." ++ ++#: wp-admin/includes/post.php:262 ++msgid "You are not allowed to post as this user." ++msgstr "НОје ваЌ ЎПзвПљеМП Ўа пПстављате члаМке каП Пвај кПрОсМОк." ++ ++#: wp-admin/includes/post.php:522 ++msgid "Published posts" ++msgstr "ОбјављеМО члаМцО" ++ ++#: wp-admin/includes/post.php:523 ++msgid "Scheduled posts" ++msgstr "ЗаказаМО члаМцО" ++ ++#: wp-admin/includes/post.php:524 ++msgid "Pending posts" ++msgstr "ЧлаМцО Ма чекању" ++ ++#: wp-admin/includes/post.php:526 ++msgid "Private posts" ++msgstr "ПрОватМО члаМцО" ++ ++#: wp-admin/includes/post.php:572 ++msgid "Images" ++msgstr "СлОке" ++ ++#: wp-admin/includes/post.php:572 ++msgid "Manage Images" ++msgstr "Управљање слОкаЌа" ++ ++#: wp-admin/includes/post.php:572 ++#, php-format ++msgid "Image (%s)" ++msgid_plural "Images (%s)" ++msgstr[0] "СлОка (%s)" ++msgstr[1] "СлОке (%s)" ++msgstr[2] "СлОке (%s)" ++ ++#: wp-admin/includes/post.php:573 ++msgid "Audio" ++msgstr "ЗвучМО запОсО" ++ ++#: wp-admin/includes/post.php:573 ++msgid "Manage Audio" ++msgstr "Управљај звучМОЌ запОсОЌа" ++ ++#: wp-admin/includes/post.php:573 ++#, php-format ++msgid "Audio (%s)" ++msgid_plural "Audio (%s)" ++msgstr[0] "ЗвучМО запОс (%s)" ++msgstr[1] "ЗвучМО запОсО (%s)" ++msgstr[2] "ЗвучМО запОсО (%s)" ++ ++#: wp-admin/includes/post.php:574 ++msgid "Video" ++msgstr "ВОЎеП запОс" ++ ++#: wp-admin/includes/post.php:574 ++msgid "Manage Video" ++msgstr "Управљај вОЎеП запОсОЌа" ++ ++#: wp-admin/includes/post.php:574 ++#, php-format ++msgid "Video (%s)" ++msgid_plural "Video (%s)" ++msgstr[0] "ВОЎеП запОс (%s)" ++msgstr[1] "ВОЎеП запОсО (%s)" ++msgstr[2] "ВОЎеП запОсО (%s)" ++ ++#: wp-admin/includes/post.php:649 ++msgid "Click to edit this part of the permalink" ++msgstr "ПрОтОсМОте Ўа уреЎОте Пвај ЎеП перЌалОМка" ++ ++#: wp-admin/includes/post.php:657 ++msgid "Permalink:" ++msgstr "ПерЌалОМк:" ++ ++#: wp-admin/includes/schema.php:160 ++msgid "My Blog" ++msgstr "МПј блПг" ++ ++#: wp-admin/includes/schema.php:161 ++msgid "Just another WordPress weblog" ++msgstr "СаЌП јПш јеЎаМ ВПрЎпрес блПг" ++ ++#: wp-admin/includes/schema.php:183 ++msgid "F j, Y" ++msgstr "j. F Y." ++ ++#: wp-admin/includes/schema.php:184 ++msgid "g:i a" ++msgstr "H:i " ++ ++#: wp-admin/includes/schema.php:185 ++msgid "F j, Y g:i a" ++msgstr "j. F Y. H:i" ++ ++#: wp-admin/includes/schema.php:277 ++msgid "Administrator|User role" ++msgstr "УправМОк" ++ ++#: wp-admin/includes/schema.php:278 ++msgid "Editor|User role" ++msgstr "УреЎМОк" ++ ++#: wp-admin/includes/schema.php:279 ++msgid "Author|User role" ++msgstr "АутПр" ++ ++#: wp-admin/includes/schema.php:280 ++msgid "Contributor|User role" ++msgstr "СараЎМОк" ++ ++#: wp-admin/includes/schema.php:281 ++msgid "Subscriber|User role" ++msgstr "ПретплатМОк" ++ ++#: wp-admin/includes/template.php:288 ++#: wp-admin/includes/template.php:325 ++msgid "Modified" ++msgstr "ИзЌењеМП" ++ ++#: wp-admin/includes/template.php:290 ++#: wp-admin/includes/template.php:327 ++msgid "Submitted" ++msgstr "ППслатП" ++ ++#: wp-admin/includes/template.php:299 ++#: wp-admin/includes/template.php:334 ++#: wp-admin/plugins.php:109 ++msgid "Status" ++msgstr "Стање" ++ ++#: wp-admin/includes/template.php:310 ++msgid "Media|media column header" ++msgstr "СаЎржај" ++ ++#: wp-admin/includes/template.php:311 ++msgid "Description|media column header" ++msgstr "ОпОс" ++ ++#: wp-admin/includes/template.php:312 ++msgid "Date Added|media column header" ++msgstr "ДатуЌ ЎПЎавања" ++ ++#: wp-admin/includes/template.php:313 ++msgid "Appears with|media column header" ++msgstr "ППјављује се са" ++ ++#: wp-admin/includes/template.php:315 ++msgid "Location|media column header" ++msgstr "МестП" ++ ++#: wp-admin/includes/template.php:561 ++#, php-format ++msgid "e-mail: %s" ++msgstr "е-пПшта: %s" ++ ++#: wp-admin/includes/template.php:565 ++msgid "View posts by this author" ++msgstr "ППглеЎај члаМке ПвПг аутПра" ++ ++#: wp-admin/includes/template.php:624 ++#: wp-includes/link-template.php:516 ++msgid "Edit comment" ++msgstr "УреЎО кПЌеМтар" ++ ++#: wp-admin/includes/template.php:642 ++msgid "Y/m/d \\a\\t g:i A" ++msgstr "Y/m/d у H:i:s" ++ ++#: wp-admin/includes/template.php:667 ++#, php-format ++msgid "From %1$s, %2$s" ++msgstr "ОЎ %1$s, %2$s" ++ ++#: wp-admin/includes/template.php:675 ++#: wp-admin/includes/template.php:680 ++msgid "Approve this comment" ++msgstr "ОЎПбрО Пвај кПЌеМтар" ++ ++#: wp-admin/includes/template.php:676 ++#: wp-admin/includes/template.php:683 ++msgid "Unapprove this comment" ++msgstr "Не ПЎПбрО Пвај кПЌеМтар" ++ ++#: wp-admin/includes/template.php:688 ++msgid "Mark this comment as spam" ++msgstr "ОзМачО Пвај кПЌеМтар каП МепПжељаМ" ++ ++#: wp-admin/includes/template.php:730 ++#: wp-admin/includes/template.php:800 ++msgid "Key" ++msgstr "Кључ" ++ ++#: wp-admin/includes/template.php:731 ++#: wp-admin/includes/template.php:801 ++msgid "Value" ++msgstr "ВреЎМПст" ++ ++#: wp-admin/includes/template.php:732 ++#: wp-admin/plugins.php:110 ++#: wp-includes/js/tinymce/wp-mce-help.php:194 ++#: wp-includes/js/tinymce/wp-mce-help.php:210 ++msgid "Action" ++msgstr "АкцОја" ++ ++#: wp-admin/includes/template.php:776 ++#: wp-includes/js/tinymce/langs/wp-langs.php:16 ++msgid "Update" ++msgstr "АжурОрај" ++ ++#: wp-admin/includes/template.php:797 ++msgid "Add a new custom field:" ++msgstr "ДПЎај МПвП прОлагПђеМП пПље:" ++ ++#: wp-admin/includes/template.php:815 ++msgid "or" ++msgstr "ОлО" ++ ++#: wp-admin/includes/template.php:823 ++msgid "Add Custom Field" ++msgstr "ДПЎај рОлагПђеМП пПље" ++ ++#: wp-admin/includes/template.php:864 ++#, php-format ++msgid "%1$s%2$s, %3$s
    @ %4$s : %5$s|1: month input, 2: day input, 3: year input, 4: hour input, 5: minute input" ++msgstr "%2$s%1$s %3$s
    у %4$s : %5$s" ++ ++#: wp-admin/includes/template.php:913 ++msgid "WordPress recommends a better browser" ++msgstr "ВПрЎпрес препПручује бПљО веб преглеЎач" ++ ++#: wp-admin/includes/template.php:943 ++msgid "Thumbnail linked to file" ++msgstr "УЌањеМа слОка пПвезује ка ЎатПтецО" ++ ++#: wp-admin/includes/template.php:943 ++msgid "Image linked to file" ++msgstr "СлОка пПвезује ка ЎатПтецО" ++ ++#: wp-admin/includes/template.php:947 ++msgid "Thumbnail linked to page" ++msgstr "УЌањеМа слОка пПвезује ка страМО" ++ ++#: wp-admin/includes/template.php:947 ++msgid "Image linked to page" ++msgstr "СлОка пПвезује ка страМО" ++ ++#: wp-admin/includes/template.php:952 ++msgid "Link to file" ++msgstr "Веза ка ЎатПтецО" ++ ++#: wp-admin/includes/template.php:956 ++msgid "Link to page" ++msgstr "Веза ка страМО" ++ ++#: wp-admin/includes/template.php:1012 ++msgid "Choose a file from your computer:" ++msgstr "ИзаберОте ЎатПтеку са свПг рачуМара:" ++ ++#: wp-admin/includes/template.php:1012 ++#, php-format ++msgid "Maximum size: %s" ++msgstr "Највећа ЌПгућа велОчОМа: %s" ++ ++#: wp-admin/includes/template.php:1018 ++msgid "Upload file and import" ++msgstr "ППшаљО ЎатПтеку О увезО" ++ ++#: wp-admin/includes/update.php:7 ++#: wp-admin/includes/update.php:24 ++#, php-format ++msgid "Version %s" ++msgstr "ИзЎање %s" ++ ++#: wp-admin/includes/update.php:13 ++#, php-format ++msgid "You are using a development version (%s). Cool! Please stay updated." ++msgstr "КПрОстОте развПјМП ОзЎање (%s). МПлОЌП вас Ўа га ажурОрате." ++ ++#: wp-admin/includes/update.php:18 ++#, php-format ++msgid "Get Version %3$s" ++msgstr "ПреузЌО ОзЎање %3$s" ++ ++#: wp-admin/includes/update.php:37 ++#, php-format ++msgid "WordPress %2$s is available! Please update now." ++msgstr "НПвП ОзЎање ВПрЎпреса, %2$s, је ЎПступМП! МПлОЌП вас ажурОрајте те ваше ОзЎање ПЎЌах." ++ ++#: wp-admin/includes/update.php:39 ++#, php-format ++msgid "WordPress %2$s is available! Please notify the site administrator." ++msgstr "НПвП ОзЎање ВПрЎпреса, %2$s, је ЎПступМП! МПлОЌП вас ПбавестОте управМОка." ++ ++#: wp-admin/includes/update.php:49 ++#, php-format ++msgid "This is WordPress version %s." ++msgstr "ОвП је ВПрЎпрес ОзЎање %s." ++ ++#: wp-admin/includes/update.php:51 ++#, php-format ++msgid "Update to %s" ++msgstr "АжурОрај у %s" ++ ++#: wp-admin/includes/update.php:51 ++msgid "Latest" ++msgstr "ППслеЎње" ++ ++#: wp-admin/includes/update.php:131 ++#, php-format ++msgid "There is a new version of %1$s available. Download version %3$s here." ++msgstr "НПвП ОзЎање %1$s је ЎПступМП. ПреузЌОте МПвП ОзЎање %3$s ПвЎе." ++ ++#: wp-admin/includes/update.php:133 ++#, php-format ++msgid "There is a new version of %1$s available. Download version %3$s here automatic upgrade unavailable for this plugin." ++msgstr "НПвП ОзЎање %1$s је ЎПступМП. ПреузЌОте МПвП ОзЎање %3$s ПвЎе аутПЌатскП ажурОрање за Пвај ЎПЎатак МОје ЎПступМП." ++ ++#: wp-admin/includes/update.php:135 ++#, php-format ++msgid "There is a new version of %1$s available. Download version %3$s here or upgrade automatically." ++msgstr "НПвП ОзЎање %1$s је ЎПступМП. ПреузЌОте МПвП ОзЎање %3$s ПвЎе ОлО ажурОрајте аутПЌатскО." ++ ++#: wp-admin/includes/update.php:150 ++msgid "The plugin is at the latest version." ++msgstr "Овај ЎПЎатак је у МајМПвОјеЌ ОзЎању." ++ ++#: wp-admin/includes/update.php:160 ++msgid "Filesystem error" ++msgstr "Грешка сОстеЌа ЎатПтека" ++ ++#: wp-admin/includes/update.php:166 ++msgid "Unable to locate WordPress directory." ++msgstr "НОје ЌПгуће прПМаћО ВПрЎпрес ЎОректПрОјуЌ." ++ ++#: wp-admin/includes/update.php:172 ++msgid "Upgrade package not available." ++msgstr "ПакПвање за ажурОрање МОје ЎПступМП." ++ ++#: wp-admin/includes/update.php:176 ++#, php-format ++msgid "Downloading update from %s" ++msgstr "ПреузОЌаЌ за ажурОрање са %s" ++ ++#: wp-admin/includes/update.php:180 ++msgid "Download failed." ++msgstr "ПреузОЌање МОје успелП." ++ ++#: wp-admin/includes/update.php:188 ++msgid "Unpacking the update" ++msgstr "Отварање пакПвања" ++ ++#: wp-admin/includes/update.php:202 ++msgid "Deactivating the plugin" ++msgstr "ДеактОвОрај Пвај ЎПЎатак" ++ ++#: wp-admin/includes/update.php:207 ++msgid "Removing the old version of the plugin" ++msgstr "Уклањање старПг ОзЎања ЎПЎатка" ++ ++#: wp-admin/includes/update.php:219 ++msgid "Could not remove the old plugin" ++msgstr "НОје ЌПгуће уклПМОтО старО ЎПЎатак" ++ ++#: wp-admin/includes/update.php:222 ++msgid "Installing the latest version" ++msgstr "ППстављање МајМПвОјег ОзЎања" ++ ++#: wp-admin/includes/update.php:226 ++msgid "Installation failed" ++msgstr "ИМсталацОја МОје успела" ++ ++#: wp-admin/includes/upgrade.php:41 ++msgid "User already exists. Password inherited." ++msgstr "КПрОсМОк већ пПстПјО. ЛПзОМка је преМесеМа." ++ ++#: wp-admin/includes/upgrade.php:70 ++#: wp-admin/includes/upgrade.php:71 ++msgid "Blogroll" ++msgstr "БлПгПвМОк" ++ ++#: wp-admin/includes/upgrade.php:101 ++msgid "Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!" ++msgstr "ДПбрПЎПшлО у ВПрЎпрес. ОвП је ваш првО члаМак. ОбрОшОте га, ОлО ОзЌеМОте, О пПчМОте са блПгПвањеЌ!" ++ ++#: wp-admin/includes/upgrade.php:101 ++msgid "Hello world!" ++msgstr "ЗЎравП свете!" ++ ++#: wp-admin/includes/upgrade.php:101 ++msgid "hello-world" ++msgstr "зЎравП-свете" ++ ++#: wp-admin/includes/upgrade.php:105 ++msgid "Mr WordPress" ++msgstr "г. ВПрЎпрес" ++ ++#: wp-admin/includes/upgrade.php:105 ++msgid "Hi, this is a comment.
    To delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them." ++msgstr "ЗЎравП, ПвП је кПЌеМтар.
    Да бО сте ПбрОсалО кПЌеМтар, прОјавОте се О пПглеЎајте кПЌеМтаре члаМка, ту ћете МаћО ПпцОју Ўа Ох ОзЌеМОте ОлО ПбрОшете." ++ ++#: wp-admin/includes/upgrade.php:109 ++msgid "This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress." ++msgstr "ОвП је прОЌер страМе ВПрЎпреса, ЌПжете је уреЎОтО Ўа бОсте ПставОлО пПЎатке П ваЌа ОлО П вашеЌ Ќесту какП бО чОтаПцО зМалО ПЎакле ЎПлазОте. МПжете МаправОтО ПваквОх страМа кПлОкП желОте ОлО пПЎстраМа такПђе О управљатО свОЌ вашОЌ саЎржајеЌ уМутар ВПрЎпреса." ++ ++#: wp-admin/includes/upgrade.php:109 ++#: wp-includes/js/tinymce/langs/wp-langs.php:238 ++#: wp-includes/js/tinymce/wp-mce-help.php:165 ++msgid "About" ++msgstr "О" ++ ++#: wp-admin/includes/upgrade.php:109 ++msgid "about" ++msgstr "П" ++ ++#: wp-admin/includes/upgrade.php:119 ++#, php-format ++msgid "" ++"Your new WordPress blog has been successfully set up at:\n" ++"\n" ++"%1$s\n" ++"\n" ++"You can log in to the administrator account with the following information:\n" ++"\n" ++"Username: %2$s\n" ++"Password: %3$s\n" ++"\n" ++"We hope you enjoy your new blog. Thanks!\n" ++"\n" ++"--The WordPress Team\n" ++"http://wordpress.org/\n" ++msgstr "" ++"Ваш МПвО ВПрЎпрес блПг је успешМП пПЎешеМ Ма:\n" ++"\n" ++"%1$s\n" ++"\n" ++"МПжете се прОјавОтО Ма аЎЌОМОстратОвМО МалПг са слеЎећОЌ пПЎацОЌа:\n" ++"\n" ++"КПрОсМОчкП ОЌе: %2$s\n" ++"ЛПзОМка: %3$s\n" ++"\n" ++"НаЎаЌП се Ўа ћете ужОватО у свПЌ МПвПЌ блПгу. Хвала!\n" ++"\n" ++"--ВПрЎпрес екОпа\n" ++"http://wordpress.org/\n" ++ ++#: wp-admin/includes/upgrade.php:134 ++msgid "New WordPress Blog" ++msgstr "НПвО ВПрЎпрес блПг" ++ ++#: wp-admin/includes/user.php:87 ++#: wp-login.php:155 ++msgid "ERROR: Please enter a username." ++msgstr "ГРЕККА: МПлОЌП уМесОте кПрОсМОчкП ОЌе." ++ ++#: wp-admin/includes/user.php:94 ++#: wp-admin/includes/user.php:96 ++msgid "ERROR: You entered your new password only once." ++msgstr "ГРЕККА: УМелО сте МПву лПзОМку саЌП јеЎМПЌ." ++ ++#: wp-admin/includes/user.php:99 ++msgid "ERROR: Please enter your password." ++msgstr "ГРЕККА: МПлОЌП вас уМесОте вашу лПзОМку." ++ ++#: wp-admin/includes/user.php:101 ++msgid "ERROR: Please enter your password twice." ++msgstr "ГРЕККА: МПлОЌП уМесОте лПзОМку Ўва пута." ++ ++#: wp-admin/includes/user.php:106 ++msgid "ERROR: Passwords may not contain the character \"\\\"." ++msgstr "ГРЕККА: ЛПзОМка Ме ЌПже Ўа саЎржО зМак \"\\\"." ++ ++#: wp-admin/includes/user.php:110 ++msgid "ERROR: Please enter the same password in the two password fields." ++msgstr "ГРЕККА: МПлОЌП вас уМесОте Осту лПзОМку у Пба пПља за лПзОМке." ++ ++#: wp-admin/includes/user.php:116 ++msgid "ERROR: This username is invalid. Please enter a valid username." ++msgstr "ГРЕККА: КПрОсМОчкП ОЌе МОје ваљаМП. МПлОЌП вас уМесОте ваљаМП кПрОсМОчкП ОЌе." ++ ++#: wp-admin/includes/user.php:119 ++msgid "ERROR: This username is already registered. Please choose another one." ++msgstr "ГРЕККА: ОвП кПрОсМОчкП ОЌе је већ регОстрПваМП. МПлОЌП вас ОзаберОте ЎругП." ++ ++#: wp-admin/includes/user.php:123 ++msgid "ERROR: Please enter an e-mail address." ++msgstr "ГРЕККА: МПлОЌП вас уМесОте аЎресу е-пПште." ++ ++#: wp-admin/includes/user.php:126 ++msgid "ERROR: The e-mail address isn't correct." ++msgstr "ГРЕККА: АЎреса е-пПште је МеОсправМа." ++ ++#: wp-admin/includes/user.php:354 ++msgid "No matching users were found!" ++msgstr "НеЌа прПМађеМОх кПрОсМОка!" ++ ++#: wp-admin/includes/widgets.php:136 ++msgid "No matching widgets" ++msgstr "НеЌа прПМађеМОх вОџета" ++ ++#: wp-admin/includes/widgets.php:216 ++#, php-format ++msgid "%1$s: %2$s|1: widget name, 2: widget title" ++msgstr "%1$s: %2$s|1: widget name, 2: widget title" ++ ++#: wp-admin/includes/widgets.php:243 ++msgid "There are no options for this widget." ++msgstr "НеЌа ПпцОја за Пвај вОџет." ++ ++#: wp-admin/includes/widgets.php:253 ++#: wp-admin/users.php:303 ++msgid "Change" ++msgstr "ПрПЌеМО" ++ ++#: wp-admin/includes/widgets.php:257 ++msgid "Remove" ++msgstr "УклПМО" ++ ++#: wp-admin/index.php:30 ++#: wp-admin/index.php:39 ++#: wp-admin/menu.php:7 ++msgid "Dashboard" ++msgstr "КПМтрПлМа табла" ++ ++#: wp-admin/index.php:43 ++msgid "Right Now" ++msgstr "СаЎа" ++ ++#: wp-admin/index.php:46 ++msgid "Write a New Post" ++msgstr "НапОшО МПвО члаМак" ++ ++#: wp-admin/index.php:48 ++msgid "Write a New Page" ++msgstr "НапОшО МПву страМу" ++ ++#: wp-admin/index.php:64 ++#, php-format ++msgid "%s post" ++msgid_plural "%s posts" ++msgstr[0] "%s члаМак" ++msgstr[1] "%s члаМка" ++msgstr[2] "%s члаМака" ++ ++#: wp-admin/index.php:68 ++#, php-format ++msgid "%s page" ++msgid_plural "%s pages" ++msgstr[0] "%s страМа" ++msgstr[1] "%s страМе" ++msgstr[2] "%s страМа" ++ ++#: wp-admin/index.php:71 ++#, php-format ++msgid "%s draft" ++msgid_plural "%s drafts" ++msgstr[0] "%s Мацрт" ++msgstr[1] "%s Мацрта" ++msgstr[2] "%s Мацрта" ++ ++#: wp-admin/index.php:74 ++#, php-format ++msgid "%s scheduled post" ++msgid_plural "%s scheduled posts" ++msgstr[0] "%s заказаМ члаМак" ++msgstr[1] "%s заказаМа члаМка" ++msgstr[2] "%s заказаМОх члаМака" ++ ++#: wp-admin/index.php:78 ++#, php-format ++msgid "There is %2$s post pending your review." ++msgid_plural "There are %2$s posts pending your review." ++msgstr[0] "ППстПјО %1$s кПЌеМтар у реЎу за чекање МежељеМОх кПЌеМтара." ++msgstr[1] "ППстПје %1$s кПЌеМтара у реЎу за чекање МежељеМОх кПЌеМтара." ++msgstr[2] "ППстПје %1$s кПЌеМтара у реЎу за чекање МежељеМОх кПЌеМтара." ++ ++#: wp-admin/index.php:83 ++#, php-format ++msgid "%s category" ++msgid_plural "%s categories" ++msgstr[0] "%s категПрОја" ++msgstr[1] "%s категПрОје" ++msgstr[2] "%s категПрОја" ++ ++#: wp-admin/index.php:84 ++#, php-format ++msgid "%s tag" ++msgid_plural "%s tags" ++msgstr[0] "%s ПзМака" ++msgstr[1] "%s ПзМаке" ++msgstr[2] "%s ПзМака" ++ ++#: wp-admin/index.php:93 ++#, php-format ++msgid "You have %1$s, contained within %2$s and %3$s. %4$s" ++msgstr "ИЌате %1$s, саЎржаМОх у %2$s О %3$s. %4$s" ++ ++#: wp-admin/index.php:102 ++#, php-format ++msgid "%d widget" ++msgid_plural "%d widgets" ++msgstr[0] "%d вОџет" ++msgstr[1] "%d вОџета" ++msgstr[2] "%d вОџета" ++ ++#: wp-admin/index.php:107 ++#, php-format ++msgid "You are using %1$s theme with %2$s." ++msgstr "ВО кПрОстОте %1$s теЌу са %2$s." ++ ++#: wp-admin/index.php:109 ++msgid "Change Theme" ++msgstr "ПрПЌеМО теЌу" ++ ++#: wp-admin/install.php:23 ++msgid "WordPress › Installation" ++msgstr "ВПрЎпрес » ИМсталацОја" ++ ++#: wp-admin/install.php:33 ++msgid "Already Installed" ++msgstr "Већ је ОМсталОраМП" ++ ++#: wp-admin/install.php:33 ++msgid "You appear to have already installed WordPress. To reinstall please clear your old database tables first." ++msgstr "ЧОМО се Ўа сте већ ОМсталОралО ВПрЎпрес. Да бО га реОМсталОралО, ЌПлОЌП првП ПчОстОте старе табеле у базО." ++ ++#: wp-admin/install.php:40 ++msgid "Welcome" ++msgstr "ДПбрП ЎПшлО" ++ ++#: wp-admin/install.php:41 ++#, php-format ++msgid "Welcome to the famous five minute WordPress installation process! You may want to browse the ReadMe documentation at your leisure. Otherwise, just fill in the information below and you'll be on your way to using the most extendable and powerful personal publishing platform in the world." ++msgstr "ДПбрПЎПшлО у чувеМу петПЌОМутМу ОМсталацОју ВПрЎпреса. МПжете преглеЎатО „ПрПчОтај Ќе“ ЎПкуЌеМтацОју пП свПЌ МахПђењу. ИМаче, саЌП пПпуМОте пПЎатке ОспПЎ О бОћете Ма путу Ўа кПрОстОте МајЌПћМОју платфПрЌу за лОчМП ОзЎаваштвП Ма свету." ++ ++#: wp-admin/install.php:42 ++msgid "First Step" ++msgstr "ПрвО кПрак" ++ ++#: wp-admin/install.php:44 ++msgid "Information needed" ++msgstr "ППЎатак је пПтребаМ" ++ ++#: wp-admin/install.php:45 ++msgid "Please provide the following information. Don't worry, you can always change these settings later." ++msgstr "Пре МегП штП пПчМеЌП, пПтребМе су МаЌ МекО пПЎацО. Не брОМОте, ЌПжете Ох ОзЌеМОтО касМОје." ++ ++#: wp-admin/install.php:50 ++#: wp-admin/options-general.php:16 ++msgid "Blog Title" ++msgstr "НазОв блПга" ++ ++#: wp-admin/install.php:54 ++msgid "Your E-mail" ++msgstr "Ваша аЎреса е-пПште" ++ ++#: wp-admin/install.php:56 ++msgid "Double-check your email address before continuing." ++msgstr "ПрПверОте Ўва пута аЎресу е-пПште пре МегП штП МаставОте." ++ ++#: wp-admin/install.php:59 ++msgid "Allow my blog to appear in search engines like Google and Technorati." ++msgstr "ЖелеП бОх Ўа се ЌПј блПг пПјављује у претражОвачОЌа каП штП су Гугл ОлО ТехМПратО." ++ ++#: wp-admin/install.php:62 ++msgid "Install WordPress" ++msgstr "ИМсталОрајте ВПрЎпрес" ++ ++#: wp-admin/install.php:79 ++msgid "ERROR: you must provide an e-mail address." ++msgstr "ГРЕККА: ЌПрате уМетО аЎресу е-пПште." ++ ++#: wp-admin/install.php:82 ++msgid "ERROR: that isn’t a valid e-mail address. E-mail addresses look like: username@example.com" ++msgstr "ГРЕККА: ПвП МОје ваљаМа аЎреса е-пПште. ОМа ОзглеЎа каП: korisnik@primer.net" ++ ++#: wp-admin/install.php:90 ++msgid "Success!" ++msgstr "Успех!" ++ ++#: wp-admin/install.php:92 ++msgid "WordPress has been installed. Were you expecting more steps? Sorry to disappoint." ++msgstr "ВПрЎпрес је ОМсталОраМ. ОчекОвалО сте јПш МекО кПрак? ИзвОМОте за разПчарење." ++ ++#: wp-admin/install.php:96 ++#: wp-admin/user-edit.php:198 ++#: wp-admin/users.php:334 ++#: wp-login.php:316 ++#: wp-login.php:381 ++msgid "Username" ++msgstr "КПрОсМОчкП ОЌе" ++ ++#: wp-admin/install.php:100 ++#: wp-admin/options-writing.php:76 ++#: wp-login.php:385 ++msgid "Password" ++msgstr "ЛПзОМка" ++ ++#: wp-admin/install.php:102 ++msgid "Note that password carefully! It is a random password that was generated just for you." ++msgstr "УпаЌтОте лПзОМку пажљОвП! ТП је случајМа лПзОМка МаправљеМа саЌП за вас." ++ ++#: wp-admin/install.php:106 ++#: wp-login.php:391 ++msgid "Log In" ++msgstr "ПрОјава" ++ ++#: wp-admin/link-add.php:22 ++msgid "Link added." ++msgstr "Веза ЎПЎата" ++ ++#: wp-admin/link-import.php:7 ++msgid "Import Blogroll" ++msgstr "УвПз блПгПвМОка" ++ ++#: wp-admin/link-import.php:24 ++msgid "Import your blogroll from another system" ++msgstr "УвезОте ваш блПгПвМОк са ЎругПг сОстеЌа" ++ ++#: wp-admin/link-import.php:28 ++msgid "If a program or website you use allows you to export your links or subscriptions as OPML you may import them here." ++msgstr "УкПлОкП прПграЌ ОлО ЌрежМП ЌестП кПје кПрОстОте ваЌ ЎПзвПљава Ўа Озвезете везе ОлО претплате каП OPML, ЌПжете Ох увестО ПвЎе." ++ ++#: wp-admin/link-import.php:33 ++msgid "Specify an OPML URL:" ++msgstr "НавеЎОте URL за OPML:" ++ ++#: wp-admin/link-import.php:38 ++msgid "Or choose from your local disk:" ++msgstr "ИлО ОзаберОте са свПг лПкалМПг ЎОска:" ++ ++#: wp-admin/link-import.php:44 ++msgid "Now select a category you want to put these links in." ++msgstr "СаЎа ОзаберОте категПрОју у кПју ћете пПставОтО Пве везе." ++ ++#: wp-admin/link-import.php:45 ++msgid "Category:" ++msgstr "КатегПрОја:" ++ ++#: wp-admin/link-import.php:56 ++msgid "Import OPML File" ++msgstr "УвПз OPML ЎатПтеке" ++ ++#: wp-admin/link-import.php:111 ++#, php-format ++msgid "Inserted %s" ++msgstr "УЌетМутП %s" ++ ++#: wp-admin/link-import.php:115 ++#, php-format ++msgid "Inserted %1$d links into category %2$s. All done! Go manage those links." ++msgstr "УЌетМутП %1$d веза у категПрОју %2$s. Све завршеМП! Уређујте Пве везе." ++ ++#: wp-admin/link-import.php:121 ++msgid "You need to supply your OPML url. Press back on your browser and try again" ++msgstr "МПрате ЎатО свПј OPML url. ПрОтОсМОте \"НазаЎ\" у веб преглеЎМОку О пПкушајте пПМПвП." ++ ++#: wp-admin/link-manager.php:10 ++#: wp-admin/link-manager.php:42 ++#: wp-admin/link.php:7 ++msgid "You do not have sufficient permissions to edit the links for this blog." ++msgstr "НеЌате ЎПвПљМа права Ўа Ќењате везе у ПвПЌ блПгу." ++ ++#: wp-admin/link-manager.php:37 ++msgid "Manage Links" ++msgstr "Управљај везаЌа" ++ ++#: wp-admin/link-manager.php:69 ++#, php-format ++msgid "%s link deleted." ++msgid_plural "%s links deleted" ++msgstr[0] "%s веза ПбрОсаМа." ++msgstr[1] "%s веза ПбрОсаМП." ++msgstr[2] "%s веза ПбрОсаМП." ++ ++#: wp-admin/link-manager.php:78 ++#, php-format ++msgid "Manage Links (add new)" ++msgstr "Управљај везаЌа (ЎПЎај МПву)" ++ ++#: wp-admin/link-manager.php:82 ++msgid "Search Links" ++msgstr "ПретражО везе" ++ ++#: wp-admin/link-manager.php:94 ++msgid "View all Categories" ++msgstr "ВОЎО све категПрОје" ++ ++#: wp-admin/link-manager.php:100 ++msgid "Order by Link ID" ++msgstr "ППређај пП ID-у везе" ++ ++#: wp-admin/link-manager.php:101 ++msgid "Order by Name" ++msgstr "ППређај пП ОЌеМу" ++ ++#: wp-admin/link-manager.php:102 ++msgid "Order by Address" ++msgstr "ППређај пП аЎресО" ++ ++#: wp-admin/link-manager.php:103 ++msgid "Order by Rating" ++msgstr "ППређај пП ПцеМаЌа" ++ ++#: wp-admin/link-manager.php:124 ++msgid "rel" ++msgstr "rel" ++ ++#: wp-admin/link-manager.php:125 ++msgid "Visible" ++msgstr "ВОЎљОвП" ++ ++#: wp-admin/link-manager.php:163 ++#: wp-admin/update.php:64 ++msgid "Yes" ++msgstr "Да" ++ ++#: wp-admin/link-manager.php:176 ++#, php-format ++msgid "Visit %s" ++msgstr "ППсетОте %s" ++ ++#: wp-admin/link-manager.php:214 ++msgid "No links found." ++msgstr "НеЌа прПМађеМОх веза." ++ ++#: wp-admin/link-parse-opml.php:58 ++#, php-format ++msgid "XML error: %1$s at line %2$s" ++msgstr "XML грешка: %1$s у лОМОјО %2$s" ++ ++#: wp-admin/link.php:97 ++msgid "Link not found." ++msgstr "Веза МОје прПМађеМа." ++ ++#: wp-admin/media.php:32 ++#: wp-admin/media.php:68 ++msgid "Edit Media" ++msgstr "УреЎО саЎржај" ++ ++#: wp-admin/media.php:56 ++msgid "Media attachment updated." ++msgstr "КаблПМ саЎржаја ажурОраМ." ++ ++#: wp-admin/media-upload.php:19 ++msgid "You are not allowed to be here" ++msgstr "НОје ваЌ ЎПзвПљеМП Ўа буЎете ПвЎе." ++ ++#: wp-admin/menu.php:10 ++#: wp-admin/menu.php:12 ++#: wp-admin/menu.php:14 ++msgid "Write" ++msgstr "ПОсање" ++ ++#: wp-admin/menu.php:17 ++#: wp-admin/menu.php:19 ++#: wp-admin/menu.php:21 ++msgid "Manage" ++msgstr "УређОвање" ++ ++#: wp-admin/menu.php:24 ++msgid "Design" ++msgstr "ИзглеЎ" ++ ++#: wp-admin/menu.php:25 ++#, php-format ++msgid "Comments %s" ++msgstr "КПЌеМтарО %s" ++ ++#: wp-admin/menu.php:26 ++#: wp-admin/options.php:4 ++msgid "Settings" ++msgstr "ППЎешавања" ++ ++#: wp-admin/menu.php:31 ++#: wp-admin/user-edit.php:63 ++msgid "Profile" ++msgstr "ПрПфОл" ++ ++#: wp-admin/menu.php:36 ++msgid "Link" ++msgstr "Веза" ++ ++#: wp-admin/menu.php:52 ++msgid "Authors & Users" ++msgstr "АутПрО О кПрОсМОцО" ++ ++#: wp-admin/menu.php:53 ++#: wp-admin/menu.php:55 ++msgid "Your Profile" ++msgstr "Ваш прПфОл" ++ ++#: wp-admin/menu.php:58 ++#: wp-includes/js/tinymce/langs/wp-langs.php:290 ++msgid "General" ++msgstr "Опште" ++ ++#: wp-admin/menu.php:59 ++msgid "Writing" ++msgstr "ПОсање" ++ ++#: wp-admin/menu.php:60 ++msgid "Reading" ++msgstr "ЧОтање" ++ ++#: wp-admin/menu.php:61 ++msgid "Discussion" ++msgstr "ДОскусОја" ++ ++#: wp-admin/menu.php:62 ++msgid "Privacy" ++msgstr "ПрОватМПст" ++ ++#: wp-admin/menu.php:63 ++msgid "Permalinks" ++msgstr "ПерЌалОМкПвО" ++ ++#: wp-admin/menu.php:64 ++msgid "Miscellaneous" ++msgstr "РазМП" ++ ++#: wp-admin/menu.php:67 ++#: wp-admin/plugin-editor.php:95 ++msgid "Plugin Editor" ++msgstr "УређОвање ЎПЎатака" ++ ++#: wp-admin/menu.php:69 ++msgid "Themes" ++msgstr "ТеЌе" ++ ++#: wp-admin/menu.php:70 ++#: wp-admin/theme-editor.php:93 ++msgid "Theme Editor" ++msgstr "УређОвање теЌа" ++ ++#: wp-admin/menu.php:140 ++msgid "You do not have sufficient permissions to access this page." ++msgstr "НеЌате ЎПвПљМа права Ўа прОступОте ПвПј страМО." ++ ++#: wp-admin/options-discussion.php:4 ++#: wp-admin/options-discussion.php:11 ++msgid "Discussion Settings" ++msgstr "ППЎешавања ЎОскусОја" ++ ++#: wp-admin/options-discussion.php:16 ++msgid "Default article settings" ++msgstr "ППЎразуЌеваМа пПЎешавања уМПса" ++ ++#: wp-admin/options-discussion.php:20 ++msgid "Attempt to notify any blogs linked to from the article (slows down posting.)" ++msgstr "ППкушај Ўа ПбавестОш свакО блПг везаМ Ма Пвај члаМак (успПрава ПбјављОвање)." ++ ++#: wp-admin/options-discussion.php:24 ++msgid "Allow link notifications from other blogs (pingbacks and trackbacks.)" ++msgstr "ДПзвПлО Пбавештавање путеЌ веза са ЎругОх блПгПва (пПвратМО пОМгПвО О пПвратМе везе.)" ++ ++#: wp-admin/options-discussion.php:28 ++msgid "Allow people to post comments on the article" ++msgstr "ДПзвПлО пОсање кПЌеМтара Ма Пвај члаМак" ++ ++#: wp-admin/options-discussion.php:30 ++msgid "These settings may be overridden for individual articles." ++msgstr "Ова пПЎешавања се ЌПгу ЌењатО за пПјеЎОМачМе члаМке." ++ ++#: wp-admin/options-discussion.php:34 ++msgid "E-mail me whenever" ++msgstr "ППшаљО ЌО е-пПшту каЎа" ++ ++#: wp-admin/options-discussion.php:38 ++msgid "Anyone posts a comment" ++msgstr "БОлП кП МапОше кПЌеМтар" ++ ++#: wp-admin/options-discussion.php:42 ++msgid "A comment is held for moderation" ++msgstr "КПЌеМтар је заЎржаМ за уређОвање" ++ ++#: wp-admin/options-discussion.php:46 ++msgid "Before a comment appears" ++msgstr "Пре пПјаве кПЌеМтара" ++ ++#: wp-admin/options-discussion.php:50 ++msgid "An administrator must always approve the comment" ++msgstr "УправМОк ЌПра увек ПЎПбрОтО кПЌеМтар" ++ ++#: wp-admin/options-discussion.php:52 ++msgid "Comment author must fill out name and e-mail" ++msgstr "АутПр кПЌеМтара ЌПра упОсатО ОЌе О е-пПшту" ++ ++#: wp-admin/options-discussion.php:54 ++msgid "Comment author must have a previously approved comment" ++msgstr "АутПр кПЌеМтара ЌПра ОЌатО претхПЎМП ПЎПбреМ кПЌеМтар" ++ ++#: wp-admin/options-discussion.php:58 ++msgid "Comment Moderation" ++msgstr "УређОвање кПЌеМтара" ++ ++#: wp-admin/options-discussion.php:60 ++#, php-format ++msgid "Hold a comment in the queue if it contains %s or more links. (A common characteristic of comment spam is a large number of hyperlinks.)" ++msgstr "ЗаЎржО кПЌеМтар за ПЎПбрење акП саЎржО вОше ПЎ %s веза. (СпаЌ кПЌеМтарО ПбОчМП саЎрже велОкО брПј хОпервеза)." ++ ++#: wp-admin/options-discussion.php:62 ++msgid "When a comment contains any of these words in its content, name, URL, e-mail, or IP, it will be held in the moderation queue. One word or IP per line. It will match inside words, so \"press\" will match \"WordPress\"." ++msgstr "КаЎа кПЌеМтар саЎржО бОлП кПју ПЎ ПвОх речО у саЎржају, МазОву, УРИ-ју, е-пПштО ОлО IP аЎресО, бОће заЎржаМ у реЎу за уређОвање. ЈеЎМа реч ОлО IP пП реЎу. ПрПМаћО ће О речО уМутар ЎужОх речОЌ па ће „прес“ прПМаћО О „ВПрЎпрес“." ++ ++#: wp-admin/options-discussion.php:69 ++msgid "Comment Blacklist" ++msgstr "ЊрМа лОста кПЌеМтара" ++ ++#: wp-admin/options-discussion.php:71 ++msgid "When a comment contains any of these words in its content, name, URL, e-mail, or IP, it will be marked as spam. One word or IP per line. It will match inside words, so \"press\" will match \"WordPress\"." ++msgstr "КаЎа кПЌеМтар саЎржО бОлП кПју ПЎ ПвОх речО у саЎржају, МазОву, УРИ-ју, е-пПштО ОлО IP аЎресО, ПзМачО га каП МежељеМО: (ОЎвПјОте вОше речО МПвОЌ реЎПвОЌа; јеЎМа реч ОлО IP пП реЎу; прПМаћО ће О речО уМутар ЎужОх речОЌ па ће „прес“ прПМаћО О „ВПрЎпрес“) УПбОчајеМе МежељеМе речО." ++ ++#: wp-admin/options-discussion.php:79 ++msgid "Avatars" ++msgstr "АватарО" ++ ++#: wp-admin/options-discussion.php:81 ++msgid "By default WordPress uses Gravatars — short for Globally Recognized Avatars — for the pictures that show up next to comments. Plugins may override this." ++msgstr "ППЎразуЌеваМП ВПрЎпрес кПрОстО Gravatars за слОке кПје се прОказују пПреЎ кПЌеМтара. ДПЎацО ЌПгу ПвП Ўа ОзЌеМе." ++ ++#: wp-admin/options-discussion.php:87 ++msgid "Avatar display" ++msgstr "ПрОказ аватара" ++ ++#: wp-admin/options-discussion.php:90 ++msgid "Don’t show Avatars" ++msgstr "Не прОказуј аватаре" ++ ++#: wp-admin/options-discussion.php:90 ++msgid "Show Avatars" ++msgstr "ПрОкажО аватаре" ++ ++#: wp-admin/options-discussion.php:99 ++msgid "Maximum Rating" ++msgstr "НајвОша ЎПзвПљеМа ПцеМа" ++ ++#: wp-admin/options-discussion.php:103 ++msgid "G — Suitable for all audiences" ++msgstr "Г — ЎПпуштеМП свОЌа" ++ ++#: wp-admin/options-discussion.php:103 ++msgid "PG — Possibly offensive, usually for audiences 13 and above" ++msgstr "ПГ — ЌПжЎа МапаЎМП, ПбОчМП за публОку старОју ПЎ 13 гПЎОМа" ++ ++#: wp-admin/options-discussion.php:103 ++msgid "R — Intended for adult audiences above 17" ++msgstr "Р — МаЌењеМП за ПЎраслу публОку ОзМаЎ 17 гПЎОМа" ++ ++#: wp-admin/options-discussion.php:103 ++msgid "X — Even more mature than above" ++msgstr "Икс — саЌП за пуМПлетМе ПсПбе" ++ ++#: wp-admin/options-general.php:4 ++#: wp-admin/options-general.php:11 ++msgid "General Settings" ++msgstr "Општа пПЎешавања" ++ ++#: wp-admin/options-general.php:20 ++msgid "Tagline" ++msgstr "ППЎМаслПв" ++ ++#: wp-admin/options-general.php:23 ++msgid "In a few words, explain what this blog is about." ++msgstr "ОпОшОте у пар речО П чеЌу је Пвај блПг." ++ ++#: wp-admin/options-general.php:26 ++msgid "WordPress address (URL)" ++msgstr "ВПрЎпрес аЎреса (URL)" ++ ++#: wp-admin/options-general.php:30 ++msgid "Blog address (URL)" ++msgstr "АЎреса блПга (URL)" ++ ++#: wp-admin/options-general.php:31 ++msgid "Enter the address here if you want your blog homepage to be different from the directory you installed WordPress." ++msgstr "УкПлОкП желОте Ўа МаслПвМа страМа блПга буЎе у ЎругПЌ ЎОректПрОјуЌу ПЎ ПМПга у кПјО сте ОМсталОралО ВПрЎпрес, ПвЎе уМесОте ту аЎресу. " ++ ++#: wp-admin/options-general.php:34 ++msgid "E-mail address" ++msgstr "АЎреса е-пПште" ++ ++#: wp-admin/options-general.php:37 ++msgid "This address is used for admin purposes, like new user notification." ++msgstr "Ова аЎреса се кПрОстО саЌП за аЎЌОМОстратОвМе сврхе, каП Ма прОЌер Пбавештење П МПвПЌ кПрОсМОку." ++ ++#: wp-admin/options-general.php:40 ++msgid "Membership" ++msgstr "ЧлаМствП" ++ ++#: wp-admin/options-general.php:43 ++msgid "Anyone can register" ++msgstr "СвакП ЌПже Ўа се регОструје" ++ ++#: wp-admin/options-general.php:46 ++msgid "Users must be registered and logged in to comment" ++msgstr "КПрОсМОцО ЌПрају бОтО регОстрПваМО О прОјављеМО Ўа бО ЌПглО Ўа шаљу кПЌеМтаре." ++ ++#: wp-admin/options-general.php:51 ++msgid "New User Default Role" ++msgstr "ППЎразуЌеваМа улПга МПвПг кПрОсМОка" ++ ++#: wp-admin/options-general.php:57 ++msgid "Timezone" ++msgstr "ВреЌеМска зПМа" ++ ++#: wp-admin/options-general.php:79 ++#, php-format ++msgid "UTC %s" ++msgstr "UTC %s" ++ ++#: wp-admin/options-general.php:83 ++msgid "hours" ++msgstr "часПва" ++ ++#: wp-admin/options-general.php:84 ++#, php-format ++msgid "UTC time is %s" ++msgstr "УТЊ вреЌе је %s" ++ ++#: wp-admin/options-general.php:84 ++#: wp-admin/options-general.php:85 ++msgid "Y-m-d G:i:s" ++msgstr "Y-m-d G:i:s" ++ ++#: wp-admin/options-general.php:85 ++#, php-format ++msgid "UTC %1$s is %2$s" ++msgstr "UTC %1$s је %2$s" ++ ++#: wp-admin/options-general.php:86 ++msgid "Unfortunately, you have to manually update this for Daylight Savings Time. Lame, we know, but will be fixed in the future." ++msgstr "НажалПст, ЌПрате ручМП Ўа прПЌеМОте ПвП за летње рачуМање вреЌеМа." ++ ++#: wp-admin/options-general.php:90 ++msgid "Date Format" ++msgstr "ОблОк ЎатуЌа" ++ ++#: wp-admin/options-general.php:92 ++#: wp-admin/options-general.php:97 ++msgid "Output:" ++msgstr "Резултат:" ++ ++#: wp-admin/options-general.php:95 ++msgid "Time Format" ++msgstr "ОблОк вреЌеМа" ++ ++#: wp-admin/options-general.php:98 ++msgid "Documentation on date formatting. Click \"Save Changes\" to update sample output." ++msgstr "ДПкуЌеМтацОја П ПблОкПвању ЎатуЌа. ПрОтОсМОте \"Сачувај пПЎешавања\" Ўа бОсте ПсвежОлО прОЌер ОзлазМПг пПЎатка." ++ ++#: wp-admin/options-general.php:101 ++msgid "Week Starts On" ++msgstr "НеЎеља пПчОње у" ++ ++#: wp-admin/options-head.php:4 ++msgid "Settings saved." ++msgstr "ППЎешавања сачуваМа." ++ ++#: wp-admin/options-misc.php:4 ++#: wp-admin/options-misc.php:12 ++msgid "Miscellaneous Settings" ++msgstr "РазМа пПЎешавања" ++ ++#: wp-admin/options-misc.php:15 ++msgid "Uploading" ++msgstr "Слање" ++ ++#: wp-admin/options-misc.php:18 ++msgid "Store uploads in this folder" ++msgstr "ППслатП чувај у ПвПЌ ЎОректПрОјуЌу" ++ ++#: wp-admin/options-misc.php:21 ++msgid "Default is wp-content/uploads" ++msgstr "ППЎразуЌеваМО је wp-content/uploads" ++ ++#: wp-admin/options-misc.php:26 ++msgid "Full URL path to files (optional)" ++msgstr "ПуМа URL путања ЎП ЎатПтека (МеПбавезМП)" ++ ++#: wp-admin/options-misc.php:35 ++msgid "Organize my uploads into month- and year-based folders" ++msgstr "УреЎО ЌПја слања у фасцОкле засМПваМе Ма ЌесецОЌа О гПЎОМаЌа." ++ ++#: wp-admin/options-misc.php:41 ++msgid "Image sizes" ++msgstr "ВелОчОМа слОке:" ++ ++#: wp-admin/options-misc.php:42 ++msgid "The sizes listed below determine the maximum dimensions to use when inserting an image into the body of a post." ++msgstr "ВелОчОМе МОжеМавеЎеМе ПЎређују Мајвеће велОчОМе за кПрОшћење каЎа се уЌета слОка у телП члаМка." ++ ++#: wp-admin/options-misc.php:46 ++msgid "Thumbnail size" ++msgstr "ВелОчОМа уЌањеМе слОке" ++ ++#: wp-admin/options-misc.php:48 ++msgid "Width" ++msgstr "КОрОМа" ++ ++#: wp-admin/options-misc.php:50 ++msgid "Height" ++msgstr "ВОсОМа" ++ ++#: wp-admin/options-misc.php:53 ++msgid "Crop thumbnail to exact dimensions (normally thumbnails are proportional)" ++msgstr "ИсецОте слОчОцу за тачМе велОчОМе (уПбОчајеМП слечОце су прПпПрцОалМе)" ++ ++#: wp-admin/options-misc.php:57 ++msgid "Medium size" ++msgstr "СреЎња велОчОМа:" ++ ++#: wp-admin/options-misc.php:59 ++msgid "Max Width" ++msgstr "Највећа шОрОМа" ++ ++#: wp-admin/options-misc.php:61 ++msgid "Max Height" ++msgstr "Нјвећа вОсОМа" ++ ++#: wp-admin/options-misc.php:75 ++msgid "Track Links’ Update Times" ++msgstr "ПратО вреЌеМа ажурОрања веза" ++ ++#: wp-admin/options-misc.php:84 ++msgid "Use legacy my-hacks.php file support" ++msgstr "КПрОстО пПЎршку за застареле my-hacks.php ЎатПтеке" ++ ++#: wp-admin/options-permalink.php:4 ++msgid "Permalink Settings" ++msgstr "ППЎешавања перЌалОМка" ++ ++#: wp-admin/options-permalink.php:105 ++msgid "You should update your .htaccess now." ++msgstr "ТребалП бО Ўа ажурОрате свПју .htaccess ЎатПтеку." ++ ++#: wp-admin/options-permalink.php:107 ++msgid "Permalink structure updated." ++msgstr "ПерЌалОМк структура ажурОраМа." ++ ++#: wp-admin/options-permalink.php:112 ++msgid "Customize Permalink Structure" ++msgstr "УреЎО структуру сталМОх веза" ++ ++#: wp-admin/options-permalink.php:115 ++msgid "By default WordPress uses web URLs which have question marks and lots of numbers in them, however WordPress offers you the ability to create a custom URL structure for your permalinks and archives. This can improve the aesthetics, usability, and forward-compatibility of your links. A number of tags are available, and here are some examples to get you started." ++msgstr "СтаМЎарЎМП ВПрЎпрес кПрОстО URI-је кПјО ОЌају зМакПве пОтања О ЌМПгП брПјева у себО; Опак, ВПрЎпрес ваЌ МуЎО ЌПгућМПст Ўа креОрате сПпствеМу структуру URI-ја за ваше перЌалОМкПве О архОве. ТОЌе ЌПжете уМапреЎОтО естетОку, кПрОсМПст О ЎугПтрајМПст вашОх веза. ОЎређеМ брПј ПзМака је Ма распПлагању, О ПвЎе је МекПлОкП прОЌера за пПчетак." ++ ++#: wp-admin/options-permalink.php:130 ++msgid "Common settings" ++msgstr "Честа пПЎешавања" ++ ++#: wp-admin/options-permalink.php:133 ++msgid "Default" ++msgstr "ППЎразуЌеваМП" ++ ++#: wp-admin/options-permalink.php:137 ++msgid "Day and name" ++msgstr "ДаМ О МаслПв" ++ ++#: wp-admin/options-permalink.php:141 ++msgid "Month and name" ++msgstr "Месец О МаслПв" ++ ++#: wp-admin/options-permalink.php:145 ++msgid "Numeric" ++msgstr "НуЌерОчкП" ++ ++#: wp-admin/options-permalink.php:155 ++msgid "Custom Structure" ++msgstr "ПрОлагПђеМа структура" ++ ++#: wp-admin/options-permalink.php:164 ++msgid "Optional" ++msgstr "ОпцОПМП" ++ ++#: wp-admin/options-permalink.php:166 ++msgid "If you like, you may enter custom structures for your category and tag URLs here. For example, using /topics/ as your category base would make your category links like http://example.org/topics/uncategorized/. If you leave these blank the defaults will be used." ++msgstr "УкПлОкП желОте, ПвЎе ЌПжете уМетО прОлагПђеМу структуру URLа за ваше категПрОје О ПзМаке. На прОЌер, кПрОстећО /teme/ каП вашу ПсМПву категПрОја ће МаправОтО везе каП http://primer.org/teme/nekategorizovane/. УкПлОкП ПставОте ПвП празМП пПЎразуЌеваМе ће бОтО кПрОшћеМе." ++ ++#: wp-admin/options-permalink.php:168 ++msgid "If you like, you may enter custom structures for your category and tag URLs here. For example, using /topics/ as your category base would make your category links like http://example.org/index.php/topics/uncategorized/. If you leave these blank the defaults will be used." ++msgstr "УкПлОкП желОте, ПвЎе ЌПжете уМетО прОлагПђеМу структуру URLа за ваше категПрОје О ПзМаке. На прОЌер, кПрОстећО /teme/ каП вашу ПсМПву категПрОја ће МаправОтО везе каП http://primer.org/index.php/teme/nekategorizovane/. УкПлОкП ПставОте ПвП празМП пПЎразуЌеваМе ће бОтО кПрОшћеМе." ++ ++#: wp-admin/options-permalink.php:173 ++msgid "Category base" ++msgstr "БазМа категПрОја" ++ ++#: wp-admin/options-permalink.php:177 ++msgid "Tag base" ++msgstr "ОсМПвМа ПзМака" ++ ++#: wp-admin/options-permalink.php:184 ++msgid "If your .htaccess file were writable, we could do this automatically, but it isn’t so these are the mod_rewrite rules you should have in your .htaccess file. Click in the field and press CTRL + a to select all." ++msgstr "Да се у ваш .htaccess ЌПже упОсОватО ЌПглО сЌП ПвП Ўа ураЎОЌП аутПЌатскО. ППштП МОје такП, ПвП су mod_rewrite правОла кПја бО требалП Ўа упОшете у вашу .htaccess ЎатПтеку. ПрОтОсМОте у пПље О прОтОсМОте CTRL + a Ма вашПј тастатурО Ўа бОсте све ПЎабралО." ++ ++#: wp-admin/options.php:47 ++msgid "All Settings" ++msgstr "Сва пПЎешавања" ++ ++#: wp-admin/options-privacy.php:4 ++#: wp-admin/options-privacy.php:11 ++msgid "Privacy Settings" ++msgstr "ППЎешавања прОватМПстО" ++ ++#: wp-admin/options-privacy.php:16 ++msgid "Blog Visibility" ++msgstr "ВОЎљОвПст блПга" ++ ++#: wp-admin/options-privacy.php:19 ++msgid "I would like my blog to be visible to everyone, including search engines (like Google, Sphere, Technorati) and archivers" ++msgstr "ЖелеП бОх Ўа ЌПј блПг буЎе вОЎљОв свОЌа, укључујућО претражОваче (каП штП су Гугл, ТехМПратО, СфОр) О архОверОЌа" ++ ++#: wp-admin/options-privacy.php:21 ++msgid "I would like to block search engines, but allow normal visitors" ++msgstr "ЖелеП бОх Ўа Ме ЎПзвПлОЌ прОступ претражОвачОЌа, алО Ўа ЎПзвПлОЌ прОступ уПбОчајеМОЌ пПсетОПцОЌа" ++ ++#: wp-admin/options-reading.php:4 ++#: wp-admin/options-reading.php:11 ++msgid "Reading Settings" ++msgstr "ППЎешавања чОтања" ++ ++#: wp-admin/options-reading.php:17 ++msgid "Front page displays" ++msgstr "ППчетМа страМОца прОказује" ++ ++#: wp-admin/options-reading.php:21 ++msgid "Your latest posts" ++msgstr "ВашО скПрашњО члаМцО" ++ ++#: wp-admin/options-reading.php:26 ++#, php-format ++msgid "A static page (select below)" ++msgstr "СтраМу (ОзаберО ОспПЎ)" ++ ++#: wp-admin/options-reading.php:30 ++#, php-format ++msgid "Front page: %s" ++msgstr "ППчетМа страМОца: %s" ++ ++#: wp-admin/options-reading.php:31 ++#, php-format ++msgid "Posts page: %s" ++msgstr "СтраМОца члаМака: %s" ++ ++#: wp-admin/options-reading.php:36 ++msgid "Warning: these pages should not be the same!" ++msgstr "УпПзПрење: Пве страМе Ме бО требалП Ўа буЎу Осте!" ++ ++#: wp-admin/options-reading.php:44 ++msgid "Blog pages show at most" ++msgstr "СтраМОце блПга прОказују МајвОше" ++ ++#: wp-admin/options-reading.php:46 ++#: wp-admin/options-reading.php:51 ++msgid "posts" ++msgstr "члаМака" ++ ++#: wp-admin/options-reading.php:50 ++msgid "Syndication feeds show the most recent" ++msgstr "ИзвПрО ЎОстрОбуцОје прОказују МајскПрОјОх" ++ ++#: wp-admin/options-reading.php:54 ++msgid "For each article in a feed, show" ++msgstr "За свакО члаМак у ОзвПру, прОкажО" ++ ++#: wp-admin/options-reading.php:56 ++msgid "Full text" ++msgstr "ЊеП текст" ++ ++#: wp-admin/options-reading.php:57 ++msgid "Summary" ++msgstr "Сажетак" ++ ++#: wp-admin/options-reading.php:62 ++msgid "Encoding for pages and feeds" ++msgstr "КПЎОрање страМОца О RSS ОзвПра" ++ ++#: wp-admin/options-reading.php:64 ++msgid "The character encoding you write your blog in (UTF-8 is recommended)" ++msgstr "Скуп зМакПва у кПЌе пОшете ваш блПг (UTF-8 се препПручује)" ++ ++#: wp-admin/options-writing.php:4 ++#: wp-admin/options-writing.php:11 ++msgid "Writing Settings" ++msgstr "ППЎешавања пОсања" ++ ++#: wp-admin/options-writing.php:17 ++msgid "Size of the post box" ++msgstr "ВелОчОМа кутОје за пОсање члаМака" ++ ++#: wp-admin/options-writing.php:19 ++msgid "lines" ++msgstr "лОМОја" ++ ++#: wp-admin/options-writing.php:22 ++msgid "Formatting" ++msgstr "ОблОкПвање" ++ ++#: wp-admin/options-writing.php:26 ++msgid "Convert emoticons like :-) and :-P to graphics on display" ++msgstr "ПретвПрО сЌајлОје каП :-) О :-P у слОчОце прО прОказу" ++ ++#: wp-admin/options-writing.php:27 ++msgid "WordPress should correct invalidly nested XHTML automatically" ++msgstr "ВПрЎпрес аутПЌатскО пПправља МеОсправМП угњежЎеМО XHTML кÎЎ" ++ ++#: wp-admin/options-writing.php:31 ++msgid "Default Post Category" ++msgstr "ППЎразуЌеваМа категПрОја члаМка" ++ ++#: wp-admin/options-writing.php:45 ++msgid "Default Link Category" ++msgstr "ППЎразуЌеваМа категПрОја веза" ++ ++#: wp-admin/options-writing.php:60 ++msgid "Post via e-mail" ++msgstr "ЧлаМак прекП е-пПште" ++ ++#: wp-admin/options-writing.php:61 ++#, php-format ++msgid "To post to WordPress by e-mail you must set up a secret e-mail account with POP3 access. Any mail received at this address will be posted, so it’s a good idea to keep this address very secret. Here are three random strings you could use: %s, %s, %s." ++msgstr "Да бОсте пОсалО члаМке путеЌ е-пПште, ЌПрате МаправОтО тајМО МалПг е-пПште са POP3 прОступПЌ. Свака пПрука кПја стОгМе Ма Пву аЎресу бОће аутПЌатскО ПбјављеМа, затП је ЎПбра ОЎеја Ўа Пва аЎреса ПстаМе пПтпуМП тајМа. ЕвП МекПлОкП случајМОх МОзПва кПје ЌПжете ОскПрОстОтО: %s, %s, %s." ++ ++#: wp-admin/options-writing.php:65 ++msgid "Mail Server" ++msgstr "Сервер е-пПште" ++ ++#: wp-admin/options-writing.php:67 ++msgid "Port" ++msgstr "ППрт" ++ ++#: wp-admin/options-writing.php:72 ++msgid "Login Name" ++msgstr "КПрОсМОчкП ОЌе" ++ ++#: wp-admin/options-writing.php:82 ++msgid "Default Mail Category" ++msgstr "ППЎразуЌеваМа категПрОја за пОсање пПштПЌ" ++ ++#: wp-admin/options-writing.php:97 ++msgid "Update Services" ++msgstr "СервОсО Пбавештавања" ++ ++#: wp-admin/options-writing.php:101 ++msgid "When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see Update Services on the Codex. Separate multiple service URLs with line breaks." ++msgstr "КаЎа ПбјавОте МПвО члаМак, ВПрЎпрес ЌПже П тПЌе ПбавестОтО ПЎгПварајуће сервОсе. За вОше ОМфПрЌацОја пПглеЎајте услуге за Пбавештавање П Псвежавању Ма Codex-у. ОЎвПјОте URI-је вОше сервера МПвОЌ реЎПвОЌа." ++ ++#: wp-admin/options-writing.php:107 ++#, php-format ++msgid "WordPress is not notifying any Update Services because of your blog's privacy settings." ++msgstr "ВПрЎпрес МеПбавештава МОјеЎМу услугу за Пбавештавање П Псвежавању збПг пПЎешавања прОватМПстО вашег блПга." ++ ++#: wp-admin/page-new.php:3 ++msgid "New Page" ++msgstr "НПва страМа" ++ ++#: wp-admin/page-new.php:17 ++msgid "Page saved." ++msgstr "СтраМа сачуваМа." ++ ++#: wp-admin/page-new.php:17 ++msgid "Manage pages" ++msgstr "УређОвање страМа" ++ ++#: wp-admin/page.php:71 ++msgid "You attempted to edit a page that doesn't exist. Perhaps it was deleted?" ++msgstr "ППкушалО сте Ўа уређујете страМу кПја Ме пПстПјО. МПжЎа је ОзбрОсаМа?" ++ ++#: wp-admin/page.php:86 ++#, php-format ++msgid "Warning: %s is currently editing this page" ++msgstr "УпПзПрење: %s саЎа уређује страМу" ++ ++#: wp-admin/plugin-editor.php:4 ++msgid "Edit Plugins" ++msgstr "УреЎО ЎПЎатке" ++ ++#: wp-admin/plugin-editor.php:30 ++#: wp-admin/theme-editor.php:44 ++msgid "You do not have sufficient permissions to edit templates for this blog." ++msgstr "НеЌате ЎПвПљМа права Ўа уређујете шаблПМе ПвПг блПга." ++ ++#: wp-admin/plugin-editor.php:56 ++msgid "You do not have sufficient permissions to edit plugins for this blog." ++msgstr "НеЌате ЎПвПљМа права Ўа уређујете ЎПЎатке ПвПг блПга." ++ ++#: wp-admin/plugin-editor.php:84 ++#: wp-admin/theme-editor.php:85 ++msgid "File edited successfully." ++msgstr "ДатПтека успешМП ОзЌењеМа." ++ ++#: wp-admin/plugin-editor.php:86 ++msgid "This plugin has been deactivated because your changes resulted in a fatal error." ++msgstr "Овај ЎПЎатак је ОскључеМ затП штП су ваше ОзЌеМе ОсхПЎОле кПбМу грешку." ++ ++#: wp-admin/plugin-editor.php:102 ++#, php-format ++msgid "Editing %s (active)" ++msgstr "УређОвање %s (актОвМП)" ++ ++#: wp-admin/plugin-editor.php:104 ++#, php-format ++msgid "Browsing %s (active)" ++msgstr "ПретражОвање %s (актОвМП)" ++ ++#: wp-admin/plugin-editor.php:107 ++#, php-format ++msgid "Editing %s (inactive)" ++msgstr "УређОвање %s (МеактОвМП)" ++ ++#: wp-admin/plugin-editor.php:109 ++#, php-format ++msgid "Browsing %s (inactive)" ++msgstr "ПретражОвање %s (МеактОвМП)" ++ ++#: wp-admin/plugin-editor.php:117 ++msgid "Plugin Files" ++msgstr "ДатПтеке ЎПЎатака" ++ ++#: wp-admin/plugin-editor.php:135 ++msgid "Warning: Making changes to active plugins is not recommended. If your changes cause a fatal error, the plugin will be automatically deactivated." ++msgstr "УпПзПрење: Прављење ОзЌеМа укључеМОЌ ЎПЎацОЌа МОје препПручљОвП. УкПлОкП ваше ОзЌеМе прПузрПкују кПбМу грешку, ЎПЎатак ће аутПЌатскО бОтО ОскључеМ." ++ ++#: wp-admin/plugin-editor.php:140 ++msgid "Update File and Attempt to Reactivate" ++msgstr "АжурОрај ЎатПтеку О пПкушај пПМПвМП укључење »" ++ ++#: wp-admin/plugin-editor.php:142 ++#: wp-admin/theme-editor.php:162 ++msgid "Update File" ++msgstr "АжурОрај ЎатПтеку" ++ ++#: wp-admin/plugin-editor.php:146 ++#: wp-admin/theme-editor.php:166 ++msgid "You need to make this file writable before you can save your changes. See the Codex for more information." ++msgstr "МПрате МаправОтО Пву ЎатПтеку упОсОвПЌ пре МегП штП сачувате ОзЌеМе. ППглеЎајте ДПкуЌеМтацОју (еМглескО језОк) за вОше пПЎатака." ++ ++#: wp-admin/plugin-editor.php:151 ++#: wp-admin/theme-editor.php:172 ++msgid "Oops, no such file exists! Double check the name and try again, merci." ++msgstr "Упс, таква ЎатПтека Ме пПстПјО. ПрПверОте пПМПвП ОЌе, О пПкушајте пПМПвП." ++ ++#: wp-admin/plugins.php:39 ++msgid "Manage Plugins" ++msgstr "Управљај ЎПЎацОЌа" ++ ++#: wp-admin/plugins.php:47 ++msgid "Plugin could not be activated because it triggered a fatal error." ++msgstr "ДПЎатак МОје ЌПгаП бОтО укључеМ затП штПје ОзазваП кПбМу грешку." ++ ++#: wp-admin/plugins.php:57 ++msgid "Some plugins could not be reactivated because they triggered a fatal error." ++msgstr "НекО ЎПЎацО МОсу ЌПглО Ўа се укључе затП штП су ОзазвалО кПбМу грешку." ++ ++#: wp-admin/plugins.php:59 ++msgid "Plugin activated." ++msgstr "ДПЎатак актОвОраМ." ++ ++#: wp-admin/plugins.php:61 ++msgid "Plugin deactivated." ++msgstr "ДПЎатак ЎеактОвОраМ." ++ ++#: wp-admin/plugins.php:63 ++msgid "All plugins deactivated." ++msgstr "СвО ЎПЎацО су ЎеактОвОраМО." ++ ++#: wp-admin/plugins.php:65 ++msgid "Plugins reactivated." ++msgstr "ДПЎацО пПМПвП укључеМО." ++ ++#: wp-admin/plugins.php:69 ++msgid "Plugin Management" ++msgstr "Управљање ЎПЎацОЌа" ++ ++#: wp-admin/plugins.php:70 ++msgid "Plugins extend and expand the functionality of WordPress. Once a plugin is installed, you may activate it or deactivate it here." ++msgstr "ДПЎацО пПвећавају О прПшОрују фуМкцОПМалМПст ВПрЎпреса. ЈеЎМПЌ каЎа ОМсталОрате ЎПЎатак, ЌПжете га актОвОратО ОлО ЎеактОвОратО ПвЎе." ++ ++#: wp-admin/plugins.php:77 ++msgid "Couldn’t open plugins directory or there are no plugins available." ++msgstr "ИлО Ме ЌПгу Ўа ПтвПрОЌ ЎОректПрОјуЌ са ЎПЎацОЌа, ОлО МеЌа ЎПступМОх ЎПЎатака." ++ ++#: wp-admin/plugins.php:89 ++msgid "Deactivate All Plugins" ++msgstr "ИскључО све ЎПЎатке" ++ ++#: wp-admin/plugins.php:93 ++msgid "Reactivate Plugins" ++msgstr "ППМПвП укључО ЎПЎатке" ++ ++#: wp-admin/plugins.php:106 ++#: wp-includes/js/tinymce/langs/wp-langs.php:242 ++msgid "Plugin" ++msgstr "ДПЎатак" ++ ++#: wp-admin/plugins.php:107 ++#: wp-includes/js/tinymce/langs/wp-langs.php:244 ++msgid "Version" ++msgstr "ИзЎање" ++ ++#: wp-admin/plugins.php:121 ++msgid "Deactivate this plugin" ++msgstr "ДеактОвОрај Пвај ЎПЎатак" ++ ++#: wp-admin/plugins.php:121 ++msgid "Deactivate" ++msgstr "ДеактОвОрај" ++ ++#: wp-admin/plugins.php:124 ++msgid "Activate this plugin" ++msgstr "АктОвОрај Пвај ЎПЎатак" ++ ++#: wp-admin/plugins.php:124 ++msgid "Activate" ++msgstr "АктОвОрај" ++ ++#: wp-admin/plugins.php:127 ++msgid "Open this file in the Plugin Editor" ++msgstr "ОтвПрО Пву ЎатПтеку у УређОвачу ЎПЎатака" ++ ++#: wp-admin/plugins.php:136 ++#, php-format ++msgid "By %s" ++msgstr "ОЎ %s" ++ ++#: wp-admin/plugins.php:150 ++msgid "Active" ++msgstr "УкључеМП" ++ ++#: wp-admin/plugins.php:152 ++msgid "Inactive" ++msgstr "ИскључеМП" ++ ++#: wp-admin/plugins.php:169 ++#, php-format ++msgid "If something goes wrong with a plugin and you can’t use WordPress, delete or rename that file in the %s directory and it will be automatically deactivated." ++msgstr "УкПлОкП МештП креМе пПгрешМП са ЎПЎаткПЌ О вО Ме ЌПжете Ўа кПрОстОте ВПрЎпрес, ОзбрОшОте ОлО ОзЌеМОте ОЌе ЎатПтецО у фасцОклО %s О ПМ ће аутПЌатскО бОтО ОскључеМ." ++ ++#: wp-admin/plugins.php:171 ++msgid "Get More Plugins" ++msgstr "ДПбавО јПш ЎПЎатака" ++ ++#: wp-admin/plugins.php:172 ++msgid "You can find additional plugins for your site in the WordPress plugin directory." ++msgstr "МПжете прПМаћО вОше ЎПЎатака за ваш блПг у ВПрЎпресПвПЌ пПпОсу ЎПЎатака." ++ ++#: wp-admin/plugins.php:173 ++#, php-format ++msgid "To install a plugin you generally just need to upload the plugin file into your %s directory. Once a plugin is uploaded, you may activate it here." ++msgstr "Да бОсте укључОлО ЎПЎатак ПбОчМП је пПтребМП јеЎОМП Ўа га сМОЌОте у вашу %s фаскОклу. ЈеЎМПЌ каЎа је ЎПЎатак сМОЌљеМ, ЌПжете га укључОтО ПвЎе." ++ ++#: wp-admin/post-new.php:3 ++msgid "Create New Post" ++msgstr "НаправО МПвО члаМак" ++ ++#: wp-admin/post-new.php:17 ++#, php-format ++msgid "" ++"Since you’re a newcomer, you’ll have to wait for an admin to add the edit_posts capability to your user, in order to be authorized to post.
    \n" ++"You can also e-mail the admin to ask for a promotion.
    \n" ++"When you’re promoted, just reload this page and you’ll be able to blog. :)" ++msgstr "" ++"ППштП сте МПвајлОја, ЌПрате сачекатО Ўа ваЌ управМОк пПЎОгМе МОвП прОступа Ма 1, Ўа бОсте бОлО ПвлашћеМО Ўа пОшете члаМке.
    \n" ++"МПжете такПђе пОсатО управМОку О тражОтО уМапређење.
    \n" ++"КаЎа ЎПбОјете уМапређење, саЌП пПМПвП учОтајте Пву страМу О ЌПћОћете Ўа блПгујете. :)" ++ ++#: wp-admin/post.php:78 ++msgid "You attempted to edit a post that doesn't exist. Perhaps it was deleted?" ++msgstr "ППкушалО сте Ўа уређујете члаМак кПјО Ме пПстПјО. МПжЎа је ОзбрОсаМ?" ++ ++#: wp-admin/post.php:93 ++#, php-format ++msgid "Warning: %s is currently editing this post" ++msgstr "УпПзПрење: %s саЎа уређује члаМак" ++ ++#: wp-admin/sidebar.php:15 ++msgid "WordPress › Posted" ++msgstr "ВПрЎпрес › ОбјављеМП" ++ ++#: wp-admin/sidebar.php:22 ++msgid "Posted !" ++msgstr "ОбјављеМП!" ++ ++#: wp-admin/sidebar.php:23 ++#, php-format ++msgid "Click here to post again." ++msgstr "ЖаП МаЌ је, Ўа бО пПставОлО кПЌеМтар, ЌПрате бОтО прОјављеМО." ++ ++#: wp-admin/sidebar.php:33 ++msgid "WordPress › Sidebar" ++msgstr "ВПрЎпрес › БПчМа трака" ++ ++#: wp-admin/sidebar.php:63 ++#: wp-content/plugins/akismet/akismet.php:807 ++#: wp-includes/widgets.php:410 ++#: wp-includes/widgets.php:492 ++#: wp-includes/widgets.php:531 ++#: wp-includes/widgets.php:559 ++#: wp-includes/widgets.php:779 ++#: wp-includes/widgets.php:916 ++#: wp-includes/widgets.php:975 ++#: wp-includes/widgets.php:1349 ++msgid "Title:" ++msgstr "НаслПв:" ++ ++#: wp-admin/sidebar.php:66 ++#: wp-content/themes/classic/sidebar.php:10 ++msgid "Categories:" ++msgstr "КатегПрОје:" ++ ++#: wp-admin/theme-editor.php:4 ++msgid "Edit Themes" ++msgstr "УређОвање теЌа" ++ ++#: wp-admin/theme-editor.php:24 ++msgid "The requested theme does not exist." ++msgstr "ТражеМа теЌа Ме пПстПјО." ++ ++#: wp-admin/theme-editor.php:68 ++msgid "You do not have sufficient permissions to edit themes for this blog." ++msgstr "НеЌате ЎПзвПле пПтребМе Ўа Ќењате теЌе у ПвПЌ блПгу." ++ ++#: wp-admin/theme-editor.php:95 ++msgid "Select theme to edit:" ++msgstr "ИзаберО теЌу за уређОвање:" ++ ++#: wp-admin/theme-editor.php:107 ++msgid "Select" ++msgstr "ИзаберО" ++ ++#: wp-admin/theme-editor.php:118 ++msgid "Theme Files" ++msgstr "ДатПтеке теЌа" ++ ++#: wp-admin/theme-editor.php:123 ++msgid "Templates" ++msgstr "КаблПМО" ++ ++#: wp-admin/theme-editor.php:134 ++msgid "Styles|Theme stylesheets in theme editor" ++msgstr "СтОлПвО" ++ ++#: wp-admin/themes.php:14 ++msgid "Manage Themes" ++msgstr "УређОвање теЌа" ++ ++#: wp-admin/themes.php:20 ++msgid "The active theme is broken. Reverting to the default theme." ++msgstr "АктОвМа теЌа је МеОсправМа. Враћа се пПЎразуЌеваМа теЌа." ++ ++#: wp-admin/themes.php:22 ++#, php-format ++msgid "New theme activated. Visit site" ++msgstr "НПва теЌа је укључеМа. ВОЎО блПг" ++ ++#: wp-admin/themes.php:31 ++msgid "Current Theme" ++msgstr "ТреМутМа теЌа" ++ ++#: wp-admin/themes.php:34 ++msgid "Current theme preview" ++msgstr "ПреЎпреглеЎ треМутМе теЌе" ++ ++#: wp-admin/themes.php:36 ++#, php-format ++msgid "%1$s %2$s by %3$s|1: theme title, 2: theme version, 3: theme author" ++msgstr "%1$s %2$s ПЎ %3$s|1: ОЌе теЌе, 2: ОзЎање теЌе, 3: аутПр теЌе" ++ ++#: wp-admin/themes.php:39 ++#, php-format ++msgid "The template files are located in %2$s. The stylesheet files are located in %3$s. %4$s uses templates from %5$s. Changes made to the templates will affect both themes." ++msgstr "ДатПтеке са шаблПМОЌа се Малазе у %2$s. ДатПтеке са стОлПвОЌа Малазе се у %3$s. %4$s кПрОстО шаблПМе ПЎ %5$s. ИзЌеМе Ма шаблПМОЌа ће утОцатО Ма Пбе теЌе." ++ ++#: wp-admin/themes.php:41 ++#, php-format ++msgid "All of this theme’s files are located in %2$s." ++msgstr "Све ЎатПтеке Пве теЌе Малазе се у %2$s." ++ ++#: wp-admin/themes.php:44 ++#: wp-admin/themes.php:82 ++msgid "Tags:" ++msgstr "ОзМаке:" ++ ++#: wp-admin/themes.php:48 ++msgid "Available Themes" ++msgstr "РаспПлПжОве теЌе" ++ ++#: wp-admin/themes.php:95 ++msgid "Broken Themes" ++msgstr "НеОсправМе теЌе" ++ ++#: wp-admin/themes.php:96 ++msgid "The following themes are installed but incomplete. Themes must have a stylesheet and a template." ++msgstr "СлеЎеће теЌе су ОМсталОраМе алО МекПЌплетМе. ТеЌе ЌПрају ОЌатО стОл О шаблПМ." ++ ++#: wp-admin/themes.php:126 ++msgid "Get More Themes" ++msgstr "ДПбавО јПш теЌа" ++ ++#: wp-admin/themes.php:127 ++msgid "You can find additional themes for your site in the WordPress theme directory. To install a theme you generally just need to upload the theme folder into your wp-content/themes directory. Once a theme is uploaded, you should see it on this page." ++msgstr "ДПЎатМе теЌе за свПј блПг ЌПжете Маћу у ВПрЎпресПвПЌ ЎОректПрОјуЌу теЌа. Да бО ОМсталОралО МПву теЌу, ПбОчМП треба Ўа пПшаљете ЎОректПрОјуЌ теЌе у ваш wp-content/themes ЎОректПрОјуЌ. ЈеЎМПЌ каЎа пПшаљете теЌу, требалП бО Ўа је вОЎОте Ма ПвПј страМО." ++ ++#: wp-admin/update-links.php:6 ++msgid "Feature disabled." ++msgstr "ОсПбОМа ПМеЌПгућеМа." ++ ++#: wp-admin/update-links.php:11 ++msgid "No links" ++msgstr "НеЌа веза" ++ ++#: wp-admin/update.php:6 ++msgid "You do not have sufficient permissions to update plugins for this blog." ++msgstr "НеЌате ЎПвПљМа права Ўа ажурОрате ЎПЎатке ПвПг блПга." ++ ++#: wp-admin/update.php:40 ++msgid "Error: There was an error connecting to the server, Please verify the settings are correct." ++msgstr "Грешка: ДесОла се грешка прОлОкПЌ успПстављања везе са серверПЌ. МПлОЌП вас пПтврЎОте Ўа су пПЎешавања ОсправМа." ++ ++#: wp-admin/update.php:44 ++msgid "FTP Connection Information" ++msgstr "ППЎацО П FTP везО" ++ ++#: wp-admin/update.php:45 ++msgid "To perform the requested update, FTP connection information is required." ++msgstr "Да бО се ОзвршОлП захтеваМП ажурОрање, пПЎацО П FTP везО су МеПпхПЎМО." ++ ++#: wp-admin/update.php:48 ++msgid "Hostname:" ++msgstr "ДПЌаћОМ (Hostname):" ++ ++#: wp-admin/update.php:52 ++msgid "Username:" ++msgstr "КПрОсМОчкП ОЌе:" ++ ++#: wp-admin/update.php:56 ++#: wp-includes/post-template.php:527 ++msgid "Password:" ++msgstr "ЛПзОМка:" ++ ++#: wp-admin/update.php:57 ++msgid "(Password not shown)" ++msgstr "(ЛПзОМка МОје прОказаМа)" ++ ++#: wp-admin/update.php:60 ++msgid "Use SSL:" ++msgstr "КПрОстО SSL:" ++ ++#: wp-admin/update.php:74 ++msgid "Proceed" ++msgstr "Наставак" ++ ++#: wp-admin/update.php:105 ++#: wp-admin/update.php:135 ++msgid "Upgrade Plugin" ++msgstr "АжурОрај ЎПЎатак" ++ ++#: wp-admin/update.php:121 ++msgid "Plugin upgraded successfully" ++msgstr "ДПЎатак је успешМП ажурОраМ." ++ ++#: wp-admin/update.php:123 ++msgid "Attempting reactivation of the plugin" ++msgstr "ППкушај пПМПвМПг укључОвања ЎПЎатка" ++ ++#: wp-admin/update.php:152 ++msgid "Plugin Reactivation" ++msgstr "ППМПвМП укључОвање ЎПЎатака" ++ ++#: wp-admin/update.php:161 ++msgid "Plugin reactivated successfully." ++msgstr "ДПЎатак је успешМП пПМПвП пПкреМут." ++ ++#: wp-admin/update.php:164 ++msgid "Plugin failed to reactivate due to a fatal error." ++msgstr "ДПЎатак МОје ЌПгаП бОтО пПМПвП укључеМ затП штПје ОзазваП кПбМу грешку." ++ ++#: wp-admin/upgrade.php:20 ++msgid "WordPress › Upgrade" ++msgstr "ВПрЎпрес › АжурОрање" ++ ++#: wp-admin/upgrade.php:28 ++msgid "No Upgrade Required" ++msgstr "НОје пПтребМП ажурОрање." ++ ++#: wp-admin/upgrade.php:29 ++msgid "Your WordPress database is already up-to-date!" ++msgstr "Ваша ВПрЎпрес база је већ МајМПвОја!" ++ ++#: wp-admin/upgrade.php:39 ++msgid "Database Upgrade Required" ++msgstr "ППтребМП ажурОрање базе" ++ ++#: wp-admin/upgrade.php:40 ++msgid "Your WordPress database is out-of-date, and must be upgraded before you can continue." ++msgstr "Ваша ВПрЎпрес база је застарела О ЌПра бОтО ажурОраМа пре МегП штП МаставОте." ++ ++#: wp-admin/upgrade.php:41 ++msgid "The upgrade process may take a while, so please be patient." ++msgstr "ППступак ажурОрања ЌПже пПтрајатО, ЌПлОЌП вас Ўа буЎете стрпљОвО." ++ ++#: wp-admin/upgrade.php:42 ++msgid "Upgrade WordPress" ++msgstr "АжурОрајте ВПрЎпрес" ++ ++#: wp-admin/upgrade.php:55 ++msgid "Upgrade Complete" ++msgstr "АжурОрање завршеМП" ++ ++#: wp-admin/upgrade.php:56 ++msgid "Your WordPress database has been successfully upgraded!" ++msgstr "Ваша ВПрпрес база је успешМП ажурОраМа!" ++ ++#: wp-admin/upgrade.php:61 ++#, php-format ++msgid "%s queries" ++msgstr "%s упОта" ++ ++#: wp-admin/upgrade.php:63 ++#, php-format ++msgid "%s seconds" ++msgstr "%s секуМЎО" ++ ++#: wp-admin/upload.php:59 ++msgid "Manage Media|manage media header" ++msgstr "Управљај саЎржајеЌ" ++ ++#: wp-admin/upload.php:114 ++msgid "Your media has been saved." ++msgstr "Ваш саЎржај је сачуваМ." ++ ++#: wp-admin/upload.php:114 ++msgid "View media" ++msgstr "ВОЎО саЎржај" ++ ++#: wp-admin/upload.php:114 ++msgid "Edit media" ++msgstr "УреЎО саЎржај" ++ ++#: wp-admin/upload.php:118 ++msgid "Media updated." ++msgstr "СаЎржај ажурОраМ." ++ ++#: wp-admin/upload.php:119 ++msgid "Media deleted." ++msgstr "СаЎржај ПбрОсаМ." ++ ++#: wp-admin/user-edit.php:63 ++#: wp-admin/user-edit.php:142 ++msgid "Edit User" ++msgstr "УређОвање кПрОсМОка" ++ ++#: wp-admin/user-edit.php:81 ++msgid "Invalid user ID." ++msgstr "НеОсправаМ ID кПрОсМОка." ++ ++#: wp-admin/user-edit.php:98 ++#: wp-admin/user-edit.php:117 ++msgid "You do not have permission to edit this user." ++msgstr "НеЌате права Ўа уређујете ПвПг кПрОсМОка" ++ ++#: wp-admin/user-edit.php:124 ++msgid "User updated." ++msgstr "КПрОсМОк ажурОраМ." ++ ++#: wp-admin/user-edit.php:126 ++msgid "« Back to Authors and Users" ++msgstr "« НазаЎ ЎП АутПра О КПрОсМОка" ++ ++#: wp-admin/user-edit.php:142 ++msgid "Your Profile and Personal Options" ++msgstr "Ваш прПфОл О лОчМе ПпцОје" ++ ++#: wp-admin/user-edit.php:154 ++msgid "Personal Options" ++msgstr "ЛОчМе ПпцОје" ++ ++#: wp-admin/user-edit.php:159 ++msgid "Visual Editor" ++msgstr "НапреЎМО уређОвач" ++ ++#: wp-admin/user-edit.php:160 ++msgid "Use the visual editor when writing" ++msgstr "ПрОлОкПЌ пОсања кПрОстО вОзуелМО бПгатО уређОвач" ++ ++#: wp-admin/user-edit.php:164 ++msgid "Admin Color Scheme" ++msgstr "КеЌа бПја кПрОсМОчкПг сучеља" ++ ++#: wp-admin/user-edit.php:199 ++msgid "Your username cannot be changed" ++msgstr "Ваше кПрОсМОчкП ОЌе Ме ЌПже бОтО прПЌењеМП" ++ ++#: wp-admin/user-edit.php:203 ++msgid "Role:" ++msgstr "УлПга:" ++ ++#: wp-admin/user-edit.php:220 ++#: wp-admin/user-edit.php:222 ++msgid "— No role for this blog —" ++msgstr "— НеЌа улПге за Пвај блПг —" ++ ++#: wp-admin/user-edit.php:228 ++msgid "First name" ++msgstr "ИЌе" ++ ++#: wp-admin/user-edit.php:233 ++msgid "Last name" ++msgstr "ПрезОЌе" ++ ++#: wp-admin/user-edit.php:238 ++msgid "Nickname" ++msgstr "НаЎОЌак" ++ ++#: wp-admin/user-edit.php:243 ++msgid "Display name publicly as" ++msgstr "ЈавМПстО се прОказује ÐºÐ°ÐŸ" ++ ++#: wp-admin/user-edit.php:266 ++msgid "Contact Info" ++msgstr "КПМтакт ОМфП" ++ ++#: wp-admin/user-edit.php:271 ++msgid "Required" ++msgstr "ОбавезМП" ++ ++#: wp-admin/user-edit.php:275 ++#: wp-admin/users.php:421 ++#: wp-content/themes/classic/comments.php:57 ++msgid "Website" ++msgstr "МрежМП ЌестП" ++ ++#: wp-admin/user-edit.php:280 ++msgid "AIM" ++msgstr "AIM" ++ ++#: wp-admin/user-edit.php:285 ++msgid "Yahoo IM" ++msgstr "Yahoo IM" ++ ++#: wp-admin/user-edit.php:290 ++msgid "Jabber / Google Talk" ++msgstr "Jabber / Google Talk" ++ ++#: wp-admin/user-edit.php:295 ++msgid "About Yourself" ++msgstr "О ваЌа" ++ ++#: wp-admin/user-edit.php:295 ++msgid "About the user" ++msgstr "О кПрОсМОку" ++ ++#: wp-admin/user-edit.php:299 ++msgid "Biographical Info" ++msgstr "БОПграфскО пПЎацО" ++ ++#: wp-admin/user-edit.php:300 ++msgid "Share a little biographical information to fill out your profile. This may be shown publicly." ++msgstr "НапОшОте МештП ЌалП бОПграфскОх пПЎатака Ўа бОсте ОспуМОлО свПј прПфОл. Ове ЌПже бОтО јавМП прОказаМП." ++ ++#: wp-admin/user-edit.php:308 ++msgid "New Password:" ++msgstr "НПва лПзОМка:" ++ ++#: wp-admin/user-edit.php:309 ++msgid "If you would like to change the password type a new one. Otherwise leave this blank." ++msgstr "УкПлОкП желОте Ўа прПЌеМОте лПзОМку, уМесОте МПву. ИМаче ПставОте празМП." ++ ++#: wp-admin/user-edit.php:310 ++msgid "Type your new password again." ++msgstr "УМесОте вашу МПву лПзОМку пПМПвП." ++ ++#: wp-admin/user-edit.php:312 ++msgid "Password Strength:" ++msgstr "ЈачОМа лПзОМке:" ++ ++#: wp-admin/user-edit.php:313 ++#: wp-includes/script-loader.php:124 ++msgid "Too short" ++msgstr "ПрекраткП" ++ ++#: wp-admin/user-edit.php:313 ++msgid "Hint: Use upper and lower case characters, numbers and symbols like !\"?$%^&( in your password." ++msgstr "Савет: кПрОстОте велОка О Ќала слПва, брПјеве О зМаке каП !\"?$%^&( у свПјПј лПзОМцО." ++ ++#: wp-admin/user-edit.php:332 ++msgid "Additional Capabilities:" ++msgstr "ДПЎатМе ЌПгућМПстО:" ++ ++#: wp-admin/user-edit.php:350 ++msgid "Update Profile" ++msgstr "АжурОрај прПфОл" ++ ++#: wp-admin/user-edit.php:350 ++msgid "Update User" ++msgstr "АжурОрај кПрОсМОка" ++ ++#: wp-admin/users.php:41 ++msgid "You can’t edit users." ++msgstr "Не ЌПжете Ўа уређујете кПрОсМОке." ++ ++#: wp-admin/users.php:47 ++msgid "You can’t edit that user." ++msgstr "Не ЌПжете Ўа уређујете тПг кПрОсМОка." ++ ++#: wp-admin/users.php:73 ++#: wp-admin/users.php:114 ++msgid "You can’t delete users." ++msgstr "Не ЌПжете Ўа брОшете кПрОсМОке." ++ ++#: wp-admin/users.php:81 ++msgid "You can’t delete that user." ++msgstr "Не ЌПжете Ўа брОшете тПг кПрОсМОка." ++ ++#: wp-admin/users.php:125 ++msgid "Delete Users" ++msgstr "ОбрОшО кПрОсМОке" ++ ++#: wp-admin/users.php:126 ++msgid "You have specified these users for deletion:" ++msgstr "СлеЎеће кПрОсМОке сте ПзМачОлО за брОсање:" ++ ++#: wp-admin/users.php:133 ++#, php-format ++msgid "ID #%1s: %2s The current user will not be deleted." ++msgstr "ID #%1s: %2s ТреМутМО кПрОсМОк Меће бОтО ПбрОсаМ." ++ ++#: wp-admin/users.php:135 ++#, php-format ++msgid "ID #%1s: %2s" ++msgstr "ID #%1s: %2s" ++ ++#: wp-admin/users.php:148 ++msgid "What should be done with posts and links owned by this user?" ++msgstr "Кта треба ураЎОтО са члаМцОЌа О везаЌа кПје пПсеЎује Пвај кПрОсМОк?" ++ ++#: wp-admin/users.php:151 ++msgid "Delete all posts and links." ++msgstr "ОбрОшО све члаМке О везе." ++ ++#: wp-admin/users.php:153 ++msgid "Attribute all posts and links to:" ++msgstr "ПрОпОшО све члаМке О везе:" ++ ++#: wp-admin/users.php:156 ++msgid "Confirm Deletion" ++msgstr "ППтврЎО брОсање" ++ ++#: wp-admin/users.php:158 ++msgid "There are no valid users selected for deletion." ++msgstr "НеЌа ОсправМОх ОзабраМОх кПрОсМОка за брОсање." ++ ++#: wp-admin/users.php:170 ++msgid "You can’t create users." ++msgstr "Не ЌПжете Ўа правОте кПрОсМОке." ++ ++#: wp-admin/users.php:204 ++#, php-format ++msgid "%s user deleted" ++msgid_plural "%s users deleted" ++msgstr[0] "%s кПрОсМОк ПбрОсаМ" ++msgstr[1] "%s кПрОсМОка ПбрОсаМП" ++msgstr[2] "%s кПрОсМОка ПбрОсаМП" ++ ++#: wp-admin/users.php:209 ++msgid "New user created." ++msgstr "НаправљеМ је МПвО кПрОсМОк." ++ ++#: wp-admin/users.php:214 ++msgid "Changed roles." ++msgstr "УлПге ОзЌењеМе." ++ ++#: wp-admin/users.php:219 ++msgid "The current user's role must have user editing capabilities." ++msgstr "СаЎашња кПрОсМОкПва улПга ЌПра ОЌатО уређОвачке спПсПбМПстО." ++ ++#: wp-admin/users.php:220 ++msgid "Other user roles have been changed." ++msgstr "Друге кПрОсМОкПве улПге су се прПЌеМОле." ++ ++#: wp-admin/users.php:225 ++msgid "You can't delete the current user." ++msgstr "Не ЌПжете Ўа ПбрОшете треМутМПг кПрОсМОка." ++ ++#: wp-admin/users.php:226 ++msgid "Other users have been deleted." ++msgstr "ОсталО кПрОсМОцО су ОзбрОсаМО." ++ ++#: wp-admin/users.php:246 ++#, php-format ++msgid "Users Matching \"%s\"" ++msgstr "СпОсак кПрОсМОка \"%s\"" ++ ++#: wp-admin/users.php:248 ++msgid "Manage Users" ++msgstr "Управљање кПрОсМОцОЌа" ++ ++#: wp-admin/users.php:269 ++msgid "All Users" ++msgstr "СвО кПрОсМОцО" ++ ++#: wp-admin/users.php:282 ++#, php-format ++msgid "%1$s (%2$s)|user role with count" ++msgstr "" ++ ++#: wp-admin/users.php:291 ++msgid "Search Users" ++msgstr "ПретражО кПрОсМОке" ++ ++#: wp-admin/users.php:302 ++msgid "Change role to…" ++msgstr "ПрПЌеМО улПгу у…" ++ ++#: wp-admin/users.php:327 ++msgid "« Back to All Users" ++msgstr "« НазаЎ ЎП СвОх кПрОсМОка" ++ ++#: wp-admin/users.php:337 ++#: wp-admin/users.php:435 ++msgid "Role" ++msgstr "УлПга" ++ ++#: wp-admin/users.php:383 ++msgid "Add New User" ++msgstr "ДПЎај МПвПг кПрОсМОка" ++ ++#: wp-admin/users.php:397 ++#, php-format ++msgid "Users can register themselves or you can manually create users here." ++msgstr "КПрОсМОцО се ЌПгу саЌО регОстрПватО ОлО Ох ЌПжете ручМП ЎПЎатО ПвЎе." ++ ++#: wp-admin/users.php:399 ++#, php-format ++msgid "Users cannot currently register themselves, but you can manually create users here." ++msgstr "КПрОсМОцО се Ме ЌПгу треМутМП саЌО регОстрПватО, алО Ох ЌПжете ручМП ЎПЎатО ПвЎе." ++ ++#: wp-admin/users.php:405 ++msgid "Username (required)" ++msgstr "КПрОсМОчкП ОЌе (ПбавезМП)" ++ ++#: wp-admin/users.php:409 ++msgid "First Name" ++msgstr "ИЌе" ++ ++#: wp-admin/users.php:413 ++msgid "Last Name" ++msgstr "ПрезОЌе" ++ ++#: wp-admin/users.php:417 ++msgid "E-mail (required)" ++msgstr "Е-пПшта (ПбавезМП)" ++ ++#: wp-admin/users.php:427 ++msgid "Password (twice)" ++msgstr "ЛПзОМка (Ўва пута)" ++ ++#: wp-admin/users.php:448 ++msgid "Add User" ++msgstr "ДПЎај кПрОсМОка" ++ ++#: wp-admin/widgets.php:13 ++#: wp-admin/widgets.php:233 ++#: wp-includes/functions.php:1538 ++msgid "Widgets" ++msgstr "ВОџетО" ++ ++#: wp-admin/widgets.php:28 ++msgid "No Sidebars Defined" ++msgstr "НеЌа утврђеМОх бПчМОх трака" ++ ++#: wp-admin/widgets.php:32 ++msgid "You are seeing this message because the theme you are currently using isn’t widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please follow these instructions." ++msgstr "ВО вОЎОте Пву пПруку затП штП теЌа кПју треМутМП кПрОстОте МОје спреЌМа за кПрОшћење вОџета, штП зМачО Ўа МеЌа бПчМОх трака кПје ЌПжете Ўа Ќењате. За ОМфПрЌацОје П прављењу теЌа кПје ЌПгу кПрОстОтО вОџете, ЌПлОЌП вас Ўа пратОте Пва упутства." ++ ++#: wp-admin/widgets.php:131 ++#: wp-admin/widgets.php:143 ++msgid "Add Widget" ++msgstr "ДПЎај вОџет" ++ ++#: wp-admin/widgets.php:185 ++#, php-format ++msgid "You are using %1$s widget in the \"%2$s\" sidebar." ++msgid_plural "You are using %1$s widgets in the \"%2$s\" sidebar." ++msgstr[0] "ВО кПрОстОте %1$s вОџет у \"%2$s\" бПчМПј трацО." ++msgstr[1] "ВО кПрОстОте %1$s вОџета у \"%2$s\" бПчМПј трацО." ++msgstr[2] "ВО кПрОстОте %1$s вОџета у \"%2$s\" бПчМПј трацО." ++ ++#: wp-admin/widgets.php:187 ++#, php-format ++msgid "You are using %1$s widget in the sidebar." ++msgid_plural "You are using %1$s widgets in the sidebar." ++msgstr[0] "ВО кПрОстОте %1$s вОџет у бПчМПј трацО." ++msgstr[1] "ВО кПрОстОте %1$s вОџета у бПчМПј трацО." ++msgstr[2] "ВО кПрОстОте %1$s вОџета у бПчМПј трацО." ++ ++#: wp-admin/widgets.php:209 ++msgid "Show any widgets" ++msgstr "ПрОкажО МекО вОџет" ++ ++#: wp-admin/widgets.php:209 ++msgid "Show all widgets" ++msgstr "ПрОкажО све вОџете" ++ ++#: wp-admin/widgets.php:210 ++msgid "Show unused widgets" ++msgstr "ПрОкажО МекПрОшћеМе вОџете" ++ ++#: wp-admin/widgets.php:211 ++msgid "Show used widgets" ++msgstr "ПрОкажО кПрОшћеМе вОџете" ++ ++#: wp-admin/widgets.php:218 ++msgid "Changes saved." ++msgstr "ПрПЌеМе сачуваМе." ++ ++#: wp-admin/widgets.php:236 ++msgid "Search Widgets" ++msgstr "ПретражО вОџете" ++ ++#: wp-admin/widgets.php:241 ++msgid "Available Widgets" ++msgstr "РаспПлПжОвО вОџетО" ++ ++#: wp-admin/widgets.php:257 ++msgid "Current Widgets" ++msgstr "ТреМутМО вОџетО" ++ ++#: wp-admin/widgets.php:292 ++msgid "Add more from the Available Widgets section." ++msgstr "ДПЎај јПш Оз ПЎељка „РаспПлПжОвО вОџетО“." ++ ++#: wp-app.php:168 ++#: wp-app.php:203 ++msgid "Sorry, you do not have the right to access this blog." ++msgstr "ЖаП МаЌ је, МеЌате права Ўа прОступОте ПвПЌ блПгу." ++ ++#: wp-app.php:256 ++msgid "Sorry, you do not have the right to edit/publish new posts." ++msgstr "ЖаП МаЌ је, МеЌате ЎПвПљМП права Ўа уређујете/Пбјављујете МПве члаМке." ++ ++#: wp-app.php:281 ++#: wp-app.php:448 ++#: wp-app.php:599 ++#: xmlrpc.php:1018 ++#: xmlrpc.php:1338 ++msgid "Sorry, your entry could not be posted. Something wrong happened." ++msgstr "ЖаП МаЌ је, ваш уМПс Ме ЌПже бОтО ПбјављеМ. НештП се ЎесОлП пПгрешМП." ++ ++#: wp-app.php:299 ++msgid "Sorry, you do not have the right to access this post." ++msgstr "ЖаП МаЌ је, МеЌате права Ўа прОсупОте ПвПЌ члаМку." ++ ++#: wp-app.php:327 ++#: wp-app.php:473 ++#: wp-app.php:535 ++#: wp-app.php:570 ++#: xmlrpc.php:1054 ++msgid "Sorry, you do not have the right to edit this post." ++msgstr "ЖаП МаЌ је, НеЌате права Ўа уређујете Пвај члаМак." ++ ++#: wp-app.php:356 ++#: wp-app.php:489 ++#: xmlrpc.php:1070 ++msgid "For some strange yet very annoying reason, this post could not be edited." ++msgstr "ЗбПг МекПг МепПзМатПг алО МепрОјатМПг разлПга, Пвај члаМак Ме ЌПже бОтО уређеМ." ++ ++#: wp-app.php:370 ++#: wp-app.php:504 ++#: xmlrpc.php:1101 ++msgid "Sorry, you do not have the right to delete this post." ++msgstr "ЖаП МаЌ је, МеЌате права Ўа ОзбрОшете Пвај члаМак." ++ ++#: wp-app.php:379 ++#: wp-app.php:520 ++#: xmlrpc.php:1106 ++msgid "For some strange yet very annoying reason, this post could not be deleted." ++msgstr "ЗбПг МекПг МепПзМатПг алО МепрОјатМПг разлПга, Пвај члаМак Ме ЌПже бОтО ОзбрОсаМ." ++ ++#: wp-app.php:390 ++msgid "Sorry, you do not have permission to upload files." ++msgstr "ЖаП МаЌ је, МеЌате ЎПзвПлу Ўа шаљете ЎатПтеке." ++ ++#: wp-app.php:511 ++#: wp-app.php:542 ++#: wp-app.php:577 ++msgid "Error ocurred while accessing post metadata for file location." ++msgstr "ДесОла се грешка прОлОкПЌ прОступа post metadata у ЎатПтецО." ++ ++#: wp-comments-post.php:21 ++msgid "Sorry, comments are closed for this item." ++msgstr "ЖаП МаЌ је, кПЌеМтарО за Пву ставку су затвПреМО." ++ ++#: wp-comments-post.php:46 ++msgid "Sorry, you must be logged in to post a comment." ++msgstr "ЖаП МаЌ је, Ўа бО пПставОлО кПЌеМтар, ЌПрате бОтО прОјављеМО." ++ ++#: wp-comments-post.php:53 ++msgid "Error: please fill the required fields (name, email)." ++msgstr "Грешка: ЌПлОЌ пПпуМОте пПтребМа пПља (ОЌе, е-аЎресу)" ++ ++#: wp-comments-post.php:55 ++msgid "Error: please enter a valid email address." ++msgstr "Грешка: ЌПлОЌ уМесОте ваљаМу аЎресу е-пПште." ++ ++#: wp-comments-post.php:59 ++msgid "Error: please type a comment." ++msgstr "Грешка: ЌПлОЌ укуцајте кПЌеМтар." ++ ++#: wp-content/plugins/akismet/akismet.php:41 ++#: wp-content/plugins/akismet/akismet.php:115 ++msgid "Akismet Configuration" ++msgstr "АкОсЌет пПЎешавања" ++ ++#: wp-content/plugins/akismet/akismet.php:102 ++msgid "Your key has been cleared." ++msgstr "Ваш кључ је ОзбрОсаМ." ++ ++#: wp-content/plugins/akismet/akismet.php:103 ++msgid "Your key has been verified. Happy blogging!" ++msgstr "Ваш кључ је пПтврђеМ. СрећМП блПгПвање!" ++ ++#: wp-content/plugins/akismet/akismet.php:104 ++msgid "The key you entered is invalid. Please double-check it." ++msgstr "Кључ кПјО сте уМелО је ОзглеЎа МеОсправаМ. ПрПверОте га." ++ ++#: wp-content/plugins/akismet/akismet.php:105 ++msgid "The key you entered could not be verified because a connection to akismet.com could not be established. Please check your server configuration." ++msgstr "Кључ кПјО сте уМелО Ме ЌПже бОтО пПтврђеМ затП штП веза са akismet.com Ме ЌПже бОтО успПстављеМа. МПлОЌП вас Ўа прПверОте пПЎешавања вашег сервера." ++ ++#: wp-content/plugins/akismet/akismet.php:106 ++msgid "There was a problem connecting to the Akismet server. Please check your server configuration." ++msgstr "ППстПјаП је прПблеЌ прОлОкПЌ успПстављања везе са АкОсЌет серверПЌ. МПлОЌП вас Ўа прПверОте пПЎешавања сервера." ++ ++#: wp-content/plugins/akismet/akismet.php:107 ++#, php-format ++msgid "Please enter an API key. (Get your key.)" ++msgstr "МПлОЌП вас Ўа уМесете API кључ. (ПреузЌОте ваш кључ.)" ++ ++#: wp-content/plugins/akismet/akismet.php:108 ++msgid "This key is valid." ++msgstr "Кључ је ОсправаМ." ++ ++#: wp-content/plugins/akismet/akismet.php:109 ++msgid "The key below was previously validated but a connection to akismet.com can not be established at this time. Please check your server configuration." ++msgstr "Кључ ОспПЎ је раМОје бОП пПтврђеМ алО веза са akismet.com треМутМП Ме ЌПже бОтО успПстављеМа. МПлОЌП вас Ўа прПверОте пПЎешавања вашег сервера." ++ ++#: wp-content/plugins/akismet/akismet.php:112 ++#: wp-content/themes/default/functions.php:357 ++msgid "Options saved." ++msgstr "ОпцОје сачуваМе." ++ ++#: wp-content/plugins/akismet/akismet.php:119 ++#, php-format ++msgid "For many people, Akismet will greatly reduce or even completely eliminate the comment and trackback spam you get on your site. If one does happen to get through, simply mark it as \"spam\" on the moderation screen and Akismet will learn from the mistakes. If you don't have a WordPress.com account yet, you can get one at WordPress.com." ++msgstr "За ЌМПге љуЎе, АкОсЌетt ће веПЌа сЌањОтО ОлО чак у пПтпуМПстО уклПМОтО МежељеМе кПЌеМтаре Ма вашеЌ ЌрежМПЌ Ќесту. УкПлОкП се МекО Опак „прПвуче“, јеЎМПставМП га ПзМачОте каП \"МежељеМО\" у ПкрОљу за уређОвање О АкОсЌет ће учОтО ПЎ грешкО. УкПлОкП МеЌате WordPress.com МалПг јПш увек, ЌПжете ЎПбОтО јеЎаМ Ма WordPress.com." ++ ++#: wp-content/plugins/akismet/akismet.php:122 ++msgid "WordPress.com API Key" ++msgstr "WordPress.com API кључ" ++ ++#: wp-content/plugins/akismet/akismet.php:126 ++msgid "What is this?" ++msgstr "Кта је ПвП?" ++ ++#: wp-content/plugins/akismet/akismet.php:128 ++msgid "Why might my key be invalid?" ++msgstr "ЗаштП ЌПј кључ ЌПже бОтО МеОсправаМ?" ++ ++#: wp-content/plugins/akismet/akismet.php:129 ++msgid "This can mean one of two things, either you copied the key wrong or that the plugin is unable to reach the Akismet servers, which is most often caused by an issue with your web host around firewalls or similar." ++msgstr "ОвП ЌПже зМачОтО јеЎМу ПЎ Ўве стварО: ОлО сте уМелО пПгрешаМ кључ ОлО ЎПЎатак МОје успеП Ўа успПставО везу са АкОсЌет серверОЌа, штП је честП ОзазваМП прПблеЌПЌ са вашОЌ хПстОМгПЌ." ++ ++#: wp-content/plugins/akismet/akismet.php:132 ++msgid "Automatically discard spam comments on posts older than a month." ++msgstr "АутПЌатскО ПЎбацО кПЌеМтаре ПзМачеМе каП МежељеМО Ма члаМцОЌа старОјОЌ ПЎ јеЎМПг Ќесеца." ++ ++#: wp-content/plugins/akismet/akismet.php:133 ++msgid "Update options »" ++msgstr "АжурОрај ЌПгућМПстО »" ++ ++#: wp-content/plugins/akismet/akismet.php:154 ++msgid "Akismet is almost ready." ++msgstr "Akismet је скПрП спреЌаМ." ++ ++#: wp-content/plugins/akismet/akismet.php:154 ++#, php-format ++msgid "You must enter your WordPress.com API key for it to work." ++msgstr "МПрате уМетО ваш WordPress.com API кључ Ўа бО тП раЎОлП." ++ ++#: wp-content/plugins/akismet/akismet.php:326 ++#, php-format ++msgid "Akismet Spam (%s)" ++msgstr "АкОсЌет МежељеМО кПЌеМтарО (%s)" ++ ++#: wp-content/plugins/akismet/akismet.php:328 ++#: wp-content/plugins/akismet/akismet.php:330 ++msgid "Akismet Spam" ++msgstr "АкОсЌет МежељеМО кПЌеМтарО" ++ ++#: wp-content/plugins/akismet/akismet.php:339 ++#: wp-content/plugins/akismet/akismet.php:358 ++msgid "You do not have sufficient permission to moderate comments." ++msgstr "НеЌате ЎПвПљМа права Ўа уређујете кПЌеМтаре." ++ ++#: wp-content/plugins/akismet/akismet.php:370 ++#, php-format ++msgid "%1$s comments recovered." ++msgstr "%1$s кПЌеМтара враћеМП." ++ ++#: wp-content/plugins/akismet/akismet.php:374 ++msgid "All spam deleted." ++msgstr "СвО МежељеМО кПЌеМтарО су ПбрОсаМО." ++ ++#: wp-content/plugins/akismet/akismet.php:422 ++msgid "Caught Spam" ++msgstr "УхваћеМО МежељеМО кПЌеМтарО" ++ ++#: wp-content/plugins/akismet/akismet.php:427 ++#, php-format ++msgid "Akismet has caught %1$s spam for you since you first installed it." ++msgstr "АкОсЌет је ухватОП %1$s МежељеМОх кПЌеМтара за вас ПЎ каЎа сте га првО пут пПставОлО." ++ ++#: wp-content/plugins/akismet/akismet.php:434 ++msgid "You have no spam currently in the queue. Must be your lucky day. :)" ++msgstr "ТреМутМП МеЌате МежељеМОх кПЌеМтара у реЎу за чекање. ОвП ЌПра Ўа је ваш срећаМ ЎаМ. :)" ++ ++#: wp-content/plugins/akismet/akismet.php:437 ++msgid "You can delete all of the spam from your database with a single click. This operation cannot be undone, so you may wish to check to ensure that no legitimate comments got through first. Spam is automatically deleted after 15 days, so don’t sweat it." ++msgstr "МПжете ОзбрОсатО све МежељеМе кПЌеМтаре Оз ваше базе јеЎМОЌ пртОскПЌ. Овај пПступак Ме ЌПже се ОсправОтО каЎа прПђете крПз њега. НежељеМО кПЌеМтарО су аутПЌатскО ОзбрОсаМО пПсле 15 ЎаМа." ++ ++#: wp-content/plugins/akismet/akismet.php:443 ++#: wp-content/plugins/akismet/akismet.php:621 ++#, php-format ++msgid "There are currently %1$s comments identified as spam." ++msgstr "ТреМутМП ОЌа %1$s кПЌеМтара ПзМачеМОх каП МежељеМО." ++ ++#: wp-content/plugins/akismet/akismet.php:443 ++#: wp-content/plugins/akismet/akismet.php:621 ++msgid "Delete all" ++msgstr "ОбрОшО све" ++ ++#: wp-content/plugins/akismet/akismet.php:450 ++#: wp-content/themes/classic/sidebar.php:16 ++#: wp-includes/widgets.php:445 ++#: wp-includes/widgets.php:1379 ++msgid "Search" ++msgstr "Претрага" ++ ++#: wp-content/plugins/akismet/akismet.php:452 ++msgid "These are the latest comments identified as spam by Akismet. If you see any mistakes, simply mark the comment as \"not spam\" and Akismet will learn from the submission. If you wish to recover a comment from spam, simply select the comment, and click Not Spam. After 15 days we clean out the junk for you." ++msgstr "ОвП су пПслеЎњО кПЌеМтарО ПзМачеМО каП МежељеМО ПЎ страМе АкОсЌета. УкПлОкП вОЎОте Меке грешке, јеЎМПставМП ПзМачОте кПЌеМтар каП \"МОје МежељеМО\" О АкОсЌет ће учОтО ПЎ грешке. УкПлОкП желОте Ўа пПвратОте кПЌеМтар Оз МежељеМОх кПЌеМтара, јеЎМПставМП ОзаберОте кПЌеМтар О прОтОсМОте НОје МежељеМО. ППсле 15 ЎаМа ЌО чОстОЌП Птпатке за вас." ++ ++#: wp-content/plugins/akismet/akismet.php:483 ++msgid "All" ++msgstr "Све" ++ ++#: wp-content/plugins/akismet/akismet.php:506 ++msgid "Search Spam »" ++msgstr "ПретражО МежељеМе пПруке »" ++ ++#: wp-content/plugins/akismet/akismet.php:513 ++#: wp-content/plugins/akismet/akismet.php:580 ++msgid "« Previous Page" ++msgstr "« ПретхПЎМа страМа" ++ ++#: wp-content/plugins/akismet/akismet.php:534 ++#: wp-content/plugins/akismet/akismet.php:601 ++msgid "Next Page »" ++msgstr "СлеЎећа стаМа »" ++ ++#: wp-content/plugins/akismet/akismet.php:556 ++msgid "IP:" ++msgstr "IP:" ++ ++#: wp-content/plugins/akismet/akismet.php:562 ++msgid "Not Spam" ++msgstr "НОје МежељеМО кПЌеМтар" ++ ++#: wp-content/plugins/akismet/akismet.php:568 ++msgid "View Post" ++msgstr "ВОЎО члаМак" ++ ++#: wp-content/plugins/akismet/akismet.php:607 ++msgid "De-spam marked comments »" ++msgstr "СкОМО ПзМаку „МежељеМО кПЌеМтар“ са ПЎабраМОх кПЌеМтара »" ++ ++#: wp-content/plugins/akismet/akismet.php:609 ++msgid "Comments you de-spam will be submitted to Akismet as mistakes so it can learn and get better." ++msgstr "КПЌеМтарО кПје Озвучете Оз МежељеМОх кПЌеМтара бОће пПЎМетО АкОсЌету каП грешке такП Ўа ПМ ЌПже Ўа учО О раЎО бПље." ++ ++#: wp-content/plugins/akismet/akismet.php:645 ++#, php-format ++msgid "Akismet has protected your site from %3$s spam comments." ++msgstr "АкОсЌет је заштОтОП ваш блПг ПЎ %3$s МежељеМОх кПЌеМтара." ++ ++#: wp-content/plugins/akismet/akismet.php:660 ++#, php-format ++msgid "Akismet has protected your site from %2$s spam comment already," ++msgid_plural "Akismet has protected your site from %2$s spam comments already," ++msgstr[0] "АкОсЌет је заштОтОП ваш блПг ПЎ %2$s МежељеМПг кПЌеМтара," ++msgstr[1] "АкОсЌет је заштОтОП ваш блПг ПЎ %2$s МежељеМа кПЌеМтара," ++msgstr[2] "АкОсЌет је заштОтОП ваш блПг ПЎ %2$s МежељеМОх кПЌеМтара," ++ ++#: wp-content/plugins/akismet/akismet.php:665 ++#, php-format ++msgid "Akismet blocks spam from getting to your blog," ++msgstr "АкОсЌет зауставља МежељеМе кПЌеМтаре ПЎ пПјаве Ма вашеЌ блПгу," ++ ++#: wp-content/plugins/akismet/akismet.php:670 ++#, php-format ++msgid "and there's %1$s comment in your spam queue right now." ++msgid_plural "and there are %1$s comments in your spam queue right now." ++msgstr[0] "О треМутМП пПстПјО %1$s кПЌеМтар у реЎу за чекање МежељеМОх кПЌеМтара." ++msgstr[1] "О треМутМП пПстПјО %1$s кПЌеМтара у реЎу за чекање МежељеМОх кПЌеМтара." ++msgstr[2] "О треМутМП пПстПјО %1$s кПЌеМтара у реЎу за чекање МежељеМОх кПЌеМтара." ++ ++#: wp-content/plugins/akismet/akismet.php:675 ++#, php-format ++msgid "but there's nothing in your spam queue at the moment." ++msgstr "алО треМутМП МеЌа МОчега у вашеЌ реЎу за чекање МежељеМОх кПЌеМтара." ++ ++#: wp-content/plugins/akismet/akismet.php:678 ++#, php-format ++msgid "%1$s %2$s|akismet_rightnow" ++msgstr "" ++ ++#: wp-content/plugins/akismet/akismet.php:693 ++msgid "Recheck Queue for Spam" ++msgstr "ПрПверО реЎ МежељеМОх кПЌеМтара" ++ ++#: wp-content/plugins/akismet/akismet.php:708 ++msgid "Check for Spam" ++msgstr "ПрПверО за МежељеМе кПЌеМтаре" ++ ++#: wp-content/plugins/akismet/akismet.php:775 ++#, php-format ++msgid "%1$s %2$sspam comments%3$s %4$sblocked by%5$s
    %6$sAkismet%7$s" ++msgstr "%1$s %2$sМежељеМОх кПЌеМтара%3$s %4$sПзМачеМП ПЎ%5$s
    %6$sАкОсЌета%7$s" ++ ++#: wp-content/plugins/akismet/akismet.php:837 ++msgid "spam comments" ++msgstr "МежељеМО кПЌеМтарО" ++ ++#: wp-content/plugins/akismet/akismet.php:837 ++msgid "blocked by" ++msgstr "ПзМачеМП ПЎ" ++ ++#: wp-content/themes/classic/comments.php:2 ++msgid "Enter your password to view comments." ++msgstr "УМесОте свПју лПзОМку за преглеЎ кПЌеМтара." ++ ++#: wp-content/themes/classic/comments.php:5 ++#: wp-includes/comment-template.php:394 ++msgid "No Comments" ++msgstr "НеЌа кПЌеМтара" ++ ++#: wp-content/themes/classic/comments.php:5 ++#: wp-includes/comment-template.php:396 ++msgid "1 Comment" ++msgstr "1 кПЌеМтар" ++ ++#: wp-content/themes/classic/comments.php:5 ++#: wp-includes/comment-template.php:392 ++msgid "% Comments" ++msgstr "% кПЌеМтара" ++ ++#: wp-content/themes/classic/comments.php:7 ++#: wp-content/themes/classic/comments.php:36 ++#: wp-content/themes/classic/comments-popup.php:55 ++msgid "Leave a comment" ++msgstr "ОставОте кПЌеМтар" ++ ++#: wp-content/themes/classic/comments.php:18 ++#: wp-content/themes/classic/comments-popup.php:45 ++msgid "Trackback" ++msgstr "ППвратМа веза" ++ ++#: wp-content/themes/classic/comments.php:18 ++#: wp-content/themes/classic/comments-popup.php:45 ++msgid "Pingback" ++msgstr "ППвратМО пОМг" ++ ++#: wp-content/themes/classic/comments.php:18 ++#: wp-content/themes/classic/comments-popup.php:45 ++msgid "by" ++msgstr "ПЎ" ++ ++#: wp-content/themes/classic/comments.php:18 ++#: wp-content/themes/classic/index.php:11 ++msgid "Edit This" ++msgstr "УреЎО ПвП" ++ ++#: wp-content/themes/classic/comments.php:26 ++#: wp-content/themes/classic/comments-popup.php:51 ++msgid "No comments yet." ++msgstr "НеЌа кПЌеМтара." ++ ++#: wp-content/themes/classic/comments.php:29 ++#: wp-content/themes/classic/comments-popup.php:24 ++msgid "RSS feed for comments on this post." ++msgstr "RSS ОзвПр за кПЌеМтаре Ма Пвај члаМак." ++ ++#: wp-content/themes/classic/comments.php:31 ++msgid "TrackBack URL" ++msgstr "URI пПвратМе везе" ++ ++#: wp-content/themes/classic/comments.php:39 ++#, php-format ++msgid "You must be logged in to post a comment." ++msgstr "ЖаП МаЌ је, Ўа бО пПставОлО кПЌеМтар, ЌПрате бОтО прОјављеМО." ++ ++#: wp-content/themes/classic/comments.php:46 ++#: wp-content/themes/classic/comments-popup.php:60 ++#, php-format ++msgid "Logged in as %s." ++msgstr "ПрОјављеМО каП %s." ++ ++#: wp-content/themes/classic/comments.php:46 ++#: wp-content/themes/classic/comments-popup.php:60 ++msgid "Log out of this account" ++msgstr "ОЎјавО се са ПвПг МалПга" ++ ++#: wp-content/themes/classic/comments.php:46 ++#: wp-content/themes/classic/comments-popup.php:60 ++msgid "Log out »" ++msgstr "ОЎјавО се »" ++ ++#: wp-content/themes/classic/comments.php:51 ++#: wp-content/themes/classic/comments.php:54 ++msgid "(required)" ++msgstr "(ПбавезМП)" ++ ++#: wp-content/themes/classic/comments.php:54 ++msgid "Mail (will not be published)" ++msgstr "Е-пПшта (Меће бОтО ПбјављеМП)" ++ ++#: wp-content/themes/classic/comments.php:61 ++#, php-format ++msgid "You can use these tags: %s" ++msgstr "МПжете кПрОстОтО слеЎеће ПзМаке: %s" ++ ++#: wp-content/themes/classic/comments.php:65 ++msgid "Submit Comment" ++msgstr "ПреЎај кПЌеМтар" ++ ++#: wp-content/themes/classic/comments.php:75 ++#: wp-content/themes/classic/comments-popup.php:92 ++msgid "Sorry, the comment form is closed at this time." ++msgstr "ЖаП МаЌ је, Пбразац за кПЌеМтаре је треМутМП затвПреМ." ++ ++#: wp-content/themes/classic/comments-popup.php:27 ++msgid "The URL to TrackBack this entry is:" ++msgstr "URI ЎП пПвратМе везе ПвПг члаМка је:" ++ ++#: wp-content/themes/classic/comments-popup.php:56 ++msgid "Line and paragraph breaks automatic, e-mail address never displayed, HTML allowed:" ++msgstr "РеЎПвО О параграфО се прелаЌају аутПЌатскО, аЎресе е-пПште се Ме прОказују, ХТМЛ је ЎПзвПљеМ:" ++ ++#: wp-content/themes/classic/comments-popup.php:76 ++msgid "URL" ++msgstr "URI" ++ ++#: wp-content/themes/classic/comments-popup.php:81 ++msgid "Your Comment" ++msgstr "Ваш кПЌеМтар" ++ ++#: wp-content/themes/classic/comments-popup.php:87 ++msgid "Say It!" ++msgstr "КажОте!" ++ ++#: wp-content/themes/classic/comments-popup.php:97 ++msgid "Close this window." ++msgstr "ЗатвПрО Пвај прПзПр." ++ ++#: wp-content/themes/classic/comments-popup.php:105 ++#, php-format ++msgid "Powered by WordPress" ++msgstr "ППкреће ВПрЎпрес" ++ ++#: wp-content/themes/classic/comments-popup.php:105 ++#: wp-content/themes/classic/footer.php:6 ++#: wp-content/themes/classic/sidebar.php:33 ++#: wp-includes/widgets.php:514 ++msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform." ++msgstr "ППкреће ВПрЎпрес, врхуМска сеЌаМтОчка платфПрЌа за лОчМП ОзЎаваштвП." ++ ++#: wp-content/themes/classic/footer.php:6 ++#, php-format ++msgid "Powered by WordPress" ++msgstr "ППкретаМП пПЌПћу ВПрЎпреса | ПревПЎ српскО.бОз" ++ ++#: wp-content/themes/classic/index.php:11 ++msgid "Filed under:" ++msgstr "НапОсаМП пПЎ:" ++ ++#: wp-content/themes/classic/index.php:11 ++msgid "Tags: " ++msgstr "ОзМаке:" ++ ++#: wp-content/themes/classic/index.php:14 ++msgid "(more...)" ++msgstr "(Ўаље...)" ++ ++#: wp-content/themes/classic/index.php:19 ++msgid "Comments (0)" ++msgstr "КПЌеМтарО (0)" ++ ++#: wp-content/themes/classic/index.php:19 ++msgid "Comments (1)" ++msgstr "КПЌеМтарО (1)" ++ ++#: wp-content/themes/classic/index.php:19 ++msgid "Comments (%)" ++msgstr "КПЌеМтарО (%)" ++ ++#: wp-content/themes/classic/index.php:27 ++msgid "Sorry, no posts matched your criteria." ++msgstr "ЖаП МаЌ је, МО јеЎаМ члаМак Ме ПЎгПвара крОтерОјуЌу." ++ ++#: wp-content/themes/classic/index.php:30 ++msgid "« Older Posts" ++msgstr "« СтарОјО члаМцО" ++ ++#: wp-content/themes/classic/index.php:30 ++msgid "Newer Posts »" ++msgstr "НПвОјО члаМцО »" ++ ++#: wp-content/themes/classic/sidebar.php:8 ++#: wp-includes/post-template.php:162 ++msgid "Pages:" ++msgstr "СтраМе:" ++ ++#: wp-content/themes/classic/sidebar.php:12 ++msgid "Search:" ++msgstr "Претрага:" ++ ++#: wp-content/themes/classic/sidebar.php:20 ++msgid "Archives:" ++msgstr "АрхОве:" ++ ++#: wp-content/themes/classic/sidebar.php:25 ++msgid "Meta:" ++msgstr "Мета:" ++ ++#: wp-content/themes/classic/sidebar.php:29 ++msgid "Syndicate this site using RSS" ++msgstr "ПреузОЌајте Пва блПг кПрОстећО RSS" ++ ++#: wp-content/themes/classic/sidebar.php:29 ++msgid "RSS" ++msgstr "RSS" ++ ++#: wp-content/themes/classic/sidebar.php:30 ++#: wp-includes/widgets.php:513 ++msgid "The latest comments to all posts in RSS" ++msgstr "НајМПвОјО кПЌеМтарО Ма све члаМке у RSSу" ++ ++#: wp-content/themes/classic/sidebar.php:30 ++#: wp-includes/widgets.php:513 ++msgid "Comments RSS" ++msgstr "RSS кПЌеМтара" ++ ++#: wp-content/themes/classic/sidebar.php:31 ++msgid "This page validates as XHTML 1.0 Transitional" ++msgstr "Ова страМа је ваљаМа пП XHTML 1.0 Transitional" ++ ++#: wp-content/themes/classic/sidebar.php:31 ++msgid "Valid XHTML" ++msgstr "ВаљаМ XHTML" ++ ++#: wp-content/themes/default/functions.php:147 ++msgid "Customize Header" ++msgstr "ПрОлагПЎО заглавље" ++ ++#: wp-content/themes/default/functions.php:147 ++#: wp-content/themes/default/functions.php:361 ++msgid "Header Image and Color" ++msgstr "СлОка О бПја заглавља" ++ ++#: wp-content/themes/default/functions.php:160 ++msgid "Close Color Picker" ++msgstr "ЗатвПрО ОзбПрМОк бПја" ++ ++#: wp-content/themes/default/functions.php:375 ++msgid "Font Color:" ++msgstr "БПја слПвМПг лОка:" ++ ++#: wp-content/themes/default/functions.php:375 ++#, php-format ++msgid "Any CSS color (%s or %s or %s)" ++msgstr "БОлП кПја CSS бПја (%s ОлО %s ОлО %s)" ++ ++#: wp-content/themes/default/functions.php:376 ++msgid "Upper Color:" ++msgstr "ГПрња бПја:" ++ ++#: wp-content/themes/default/functions.php:376 ++#: wp-content/themes/default/functions.php:377 ++#, php-format ++msgid "HEX only (%s or %s)" ++msgstr "СаЌП HEX (%s ОлО %s)" ++ ++#: wp-content/themes/default/functions.php:377 ++msgid "Lower Color:" ++msgstr "ДПња бПја:" ++ ++#: wp-content/themes/default/functions.php:379 ++msgid "Toggle Text" ++msgstr "ВОЎљОвПст текста" ++ ++#: wp-content/themes/default/functions.php:380 ++msgid "Use Defaults" ++msgstr "КПрОстО пПЎразуЌеваМП" ++ ++#: wp-content/themes/default/functions.php:389 ++msgid "Font Color" ++msgstr "БПја слПвМПг лОка" ++ ++#: wp-content/themes/default/functions.php:390 ++msgid "Upper Color" ++msgstr "ГПрња бПја" ++ ++#: wp-content/themes/default/functions.php:391 ++msgid "Lower Color" ++msgstr "ДПња бПја" ++ ++#: wp-content/themes/default/functions.php:392 ++msgid "Revert" ++msgstr "ОкреМО" ++ ++#: wp-content/themes/default/functions.php:400 ++msgid "Update Header" ++msgstr "АжурОрај заглавље" ++ ++#: wp-content/themes/default/functions.php:406 ++msgid "Font Color (CSS):" ++msgstr "БПја слПвМПг лОка (CSS):" ++ ++#: wp-content/themes/default/functions.php:407 ++msgid "Upper Color (HEX):" ++msgstr "ГПрња бПја (HEX):" ++ ++#: wp-content/themes/default/functions.php:408 ++msgid "Lower Color (HEX):" ++msgstr "ДПња бПја (HEX):" ++ ++#: wp-content/themes/default/functions.php:409 ++msgid "Select Default Colors" ++msgstr "ИзаберО пПЎразуЌеваМе бПје" ++ ++#: wp-content/themes/default/functions.php:410 ++msgid "Toggle Text Display" ++msgstr "ВОЎљОвПст текста" ++ ++#: wp-includes/atomlib.php:133 ++#, php-format ++msgid "XML error: %s at line %d" ++msgstr "XML грешка: %s Ма лОМОјО %d" ++ ++#: wp-includes/author-template.php:237 ++#, php-format ++msgid "Visit %s's website" ++msgstr "ППсетОте ЌрежМП ЌестП аутПра %s" ++ ++#: wp-includes/author-template.php:371 ++#: wp-includes/author-template.php:469 ++#, php-format ++msgid "Posts by %s" ++msgstr "ЧлаМцО ПЎ %s" ++ ++#: wp-includes/bookmark-template.php:73 ++#, php-format ++msgid "Last updated: %s" ++msgstr "ППслеЎњО ажурОраМ: %s" ++ ++#: wp-includes/bookmark-template.php:161 ++msgid "Bookmarks" ++msgstr "ОбележОвачО" ++ ++#: wp-includes/category-template.php:62 ++#: wp-includes/category-template.php:129 ++#: wp-includes/category-template.php:132 ++#: wp-includes/category-template.php:139 ++#: wp-includes/category-template.php:152 ++#: wp-includes/category-template.php:155 ++#: wp-includes/category-template.php:162 ++#, php-format ++msgid "View all posts in %s" ++msgstr "ВОЎО све члаМке у %s" ++ ++#: wp-includes/category-template.php:300 ++#: wp-includes/category-template.php:302 ++msgid "No categories" ++msgstr "НеЌа категПрОја" ++ ++#: wp-includes/category-template.php:416 ++#, php-format ++msgid "%d topic" ++msgid_plural "%d topics" ++msgstr[0] "%d пПглавље" ++msgstr[1] "%d пПглавља" ++msgstr[2] "%d пПглавља" ++ ++#: wp-includes/classes.php:634 ++#, php-format ++msgid "View all posts filed under %s" ++msgstr "ВОЎО све члаМке МапОсаМе пПЎ %s" ++ ++#: wp-includes/classes.php:649 ++#, php-format ++msgid "Feed for all posts filed under %s" ++msgstr "RSS ОзвПр за све члаМке МапОсаМе пПЎ категПрОјПЌ %s" ++ ++#: wp-includes/class-pop3.php:83 ++msgid "No server specified" ++msgstr "НОје ПЎређеМ сервер" ++ ++#: wp-includes/class-pop3.php:91 ++#: wp-includes/class-pop3.php:103 ++#: wp-includes/class-pop3.php:124 ++#: wp-includes/class-pop3.php:247 ++#: wp-includes/class-pop3.php:301 ++#: wp-includes/class-pop3.php:312 ++#: wp-includes/class-pop3.php:360 ++#: wp-includes/class-pop3.php:394 ++#: wp-includes/class-pop3.php:427 ++#: wp-includes/class-pop3.php:526 ++#: wp-includes/class-pop3.php:549 ++msgid "Error " ++msgstr "Грешка" ++ ++#: wp-includes/class-pop3.php:116 ++msgid "no login ID submitted" ++msgstr "МОје Ўат ID прОјаве" ++ ++#: wp-includes/class-pop3.php:119 ++#: wp-includes/class-pop3.php:139 ++msgid "connection not established" ++msgstr "веза МОје успПстављеМа" ++ ++#: wp-includes/class-pop3.php:136 ++#: wp-includes/class-pop3.php:172 ++msgid "No password submitted" ++msgstr "НОје Ўата лПзОМка" ++ ++#: wp-includes/class-pop3.php:144 ++msgid "Authentication failed" ++msgstr "ПрОјава МОје успела" ++ ++#: wp-includes/class-pop3.php:163 ++#: wp-includes/class-pop3.php:206 ++#: wp-includes/class-pop3.php:231 ++#: wp-includes/class-pop3.php:273 ++#: wp-includes/class-pop3.php:347 ++#: wp-includes/class-pop3.php:387 ++#: wp-includes/class-pop3.php:417 ++#: wp-includes/class-pop3.php:451 ++#: wp-includes/class-pop3.php:514 ++#: wp-includes/class-pop3.php:582 ++msgid "No connection to server" ++msgstr "НеЌа везе ка серверу" ++ ++#: wp-includes/class-pop3.php:169 ++msgid "No login ID submitted" ++msgstr "НОје Ўат ID прОјаве" ++ ++#: wp-includes/class-pop3.php:177 ++msgid "No server banner" ++msgstr "НеЌа баМера сервера" ++ ++#: wp-includes/class-pop3.php:177 ++#: wp-includes/class-pop3.php:187 ++msgid "abort" ++msgstr "ПбуставО" ++ ++#: wp-includes/class-pop3.php:187 ++msgid "apop authentication failed" ++msgstr "apop прОјава МОје успела" ++ ++#: wp-includes/class-pop3.php:324 ++msgid "Premature end of list" ++msgstr "ПреурањеМ крај спОска" ++ ++#: wp-includes/class-pop3.php:457 ++msgid "Empty command string" ++msgstr "ПразаМ кПЌаМЎМО стрОМг" ++ ++#: wp-includes/class-pop3.php:477 ++msgid "connection does not exist" ++msgstr "веза Ме пПстПјО" ++ ++#: wp-includes/class-pop3.php:587 ++msgid "No msg number submitted" ++msgstr "НОје Ўат брПј пПруке" ++ ++#: wp-includes/class-pop3.php:593 ++msgid "Command failed " ++msgstr "КПЌаМЎа МОје успела" ++ ++#: wp-includes/comment.php:337 ++msgid "Duplicate comment detected; it looks as though you've already said that!" ++msgstr "УПчеМ ЎуплОраМО кПЌеМтар; чОМО се Ўа сте тП већ реклО!" ++ ++#: wp-includes/comment.php:388 ++msgid "You are posting comments too quickly. Slow down." ++msgstr "Објављујете кПЌеМтаре сувОше брзП. УспПрОте ЌалП." ++ ++#: wp-includes/comment-template.php:25 ++#: wp-includes/theme.php:116 ++msgid "Anonymous" ++msgstr "АМПМОЌМО" ++ ++#: wp-includes/comment-template.php:735 ++msgid "Enter your password to view comments" ++msgstr "УМесОте свПју лПзОМку Ўа бО вОЎелО кПЌеМтаре" ++ ++#: wp-includes/comment-template.php:763 ++#, php-format ++msgid "Comment on %s" ++msgstr "КПЌеМтарО Ма %s" ++ ++#: wp-includes/cron.php:135 ++msgid "Once Hourly" ++msgstr "ЈеЎМПЌ Ма сат вреЌеМа" ++ ++#: wp-includes/cron.php:136 ++msgid "Once Daily" ++msgstr "ЈеЎМПЌ ЎМевМП" ++ ++#: wp-includes/deprecated.php:123 ++msgid "new WordPress Loop" ++msgstr "МПва ВПрЎпрес петља" ++ ++#: wp-includes/deprecated.php:1016 ++msgid "Last updated" ++msgstr "ППслеЎњО ажурОраМ" ++ ++#: wp-includes/feed-atom-comments.php:18 ++#: wp-includes/feed-rss2-comments.php:20 ++#, php-format ++msgid "Comments on: %s" ++msgstr "КПЌеМтарО Ма: %s" ++ ++#: wp-includes/feed-atom-comments.php:20 ++#, php-format ++msgid "Comments for %1$s searching on %2$s" ++msgstr "КПЌеМтарО за %1$s претражујућО %2$s" ++ ++#: wp-includes/feed-atom-comments.php:22 ++#: wp-includes/feed-rss2-comments.php:24 ++#, php-format ++msgid "Comments for %s" ++msgstr "КПЌеМтарО за %s" ++ ++#: wp-includes/feed-atom-comments.php:53 ++#: wp-includes/feed-rss2-comments.php:42 ++#, php-format ++msgid "Comment on %1$s by %2$s" ++msgstr "КПЌеМтар Ма %1$s ПЎ страМе %2$s" ++ ++#: wp-includes/feed-atom-comments.php:55 ++#: wp-includes/feed-rss2-comments.php:44 ++#, php-format ++msgid "By: %s" ++msgstr "ОЎ: %s" ++ ++#: wp-includes/feed-rss2-comments.php:22 ++#, php-format ++msgid "Comments for %s searching on %s" ++msgstr "КПЌеМтарО за %s претражујућО %s" ++ ++#: wp-includes/feed-rss2-comments.php:52 ++msgid "Protected Comments: Please enter your password to view comments." ++msgstr "ЗаштОћеМО кПЌеМтарО: МПлОЌ уМесОте свПју лПзОМку Ўа бО вОЎелО кПЌеМтаре." ++ ++#: wp-includes/formatting.php:812 ++#, php-format ++msgid "%s min" ++msgid_plural "%s mins" ++msgstr[0] "%s ЌОМут" ++msgstr[1] "%s ЌОМута" ++msgstr[2] "%s ЌОМута" ++ ++#: wp-includes/formatting.php:818 ++#, php-format ++msgid "%s hour" ++msgid_plural "%s hours" ++msgstr[0] "%s сат" ++msgstr[1] "%s сата" ++msgstr[2] "%s сатО" ++ ++#: wp-includes/formatting.php:824 ++#, php-format ++msgid "%s day" ++msgid_plural "%s days" ++msgstr[0] "%s ЎаМ" ++msgstr[1] "%s ЎаМа" ++msgstr[2] "%s ЎаМа" ++ ++#: wp-includes/formatting.php:1371 ++msgid ", |between list items" ++msgstr ", |between list items" ++ ++#: wp-includes/formatting.php:1372 ++msgid ", and |between last two list items" ++msgstr "О |between last two list items" ++ ++#: wp-includes/formatting.php:1373 ++msgid " and |between only two list items" ++msgstr " О |between only two list items" ++ ++#: wp-includes/functions.php:250 ++#, php-format ++msgid "%s is a protected WP option and may not be modified" ++msgstr "%s је заштОћеМа WP ЌПгућМПст О Ме ЌПже бОтО ОзЌењеМа" ++ ++#: wp-includes/functions.php:907 ++#, php-format ++msgid "ERROR: %s is not a valid feed template" ++msgstr "ГРЕККА: %s МОје ОсправаМ шаблПМ ОзвПра" ++ ++#: wp-includes/functions.php:1113 ++#: wp-includes/functions.php:1175 ++#, php-format ++msgid "Unable to create directory %s. Is its parent directory writable by the server?" ++msgstr "Не ЌПгу Ўа МачОМОЌ ЎОректПрОјуЌ %s. Да лО је рПЎОтељскО ЎОректПрОјуЌ упОсОв за сервер?" ++ ++#: wp-includes/functions.php:1160 ++msgid "Empty filename" ++msgstr "ПразМП ОЌе ЎатПтеке" ++ ++#: wp-includes/functions.php:1181 ++#, php-format ++msgid "Could not write file %s" ++msgstr "НОсаЌ ЌПгаП Ўа упОшеЌ ЎатПтеку %s" ++ ++#: wp-includes/functions.php:1283 ++#, php-format ++msgid "Your attempt to edit this attachment: "%s" has failed." ++msgstr "Ваш пПкушај Ўа уреЎОте Пвај прОлПг: „%s“ МОје успеП." ++ ++#: wp-includes/functions.php:1285 ++msgid "Your attempt to add this category has failed." ++msgstr "Ваш пПкушај Ўа ЎПЎате Пву категПрОју МОје успеП." ++ ++#: wp-includes/functions.php:1286 ++#, php-format ++msgid "Your attempt to delete this category: "%s" has failed." ++msgstr "Ваш пПкушај Ўа ОзбрОшете Пву категПрОју: „%s“ МОје успеП." ++ ++#: wp-includes/functions.php:1287 ++#, php-format ++msgid "Your attempt to edit this category: "%s" has failed." ++msgstr "Ваш пПкушај Ўа уреЎОте Пву категПрОју: „%s“ МОје успеП." ++ ++#: wp-includes/functions.php:1289 ++#, php-format ++msgid "Your attempt to delete this comment: "%s" has failed." ++msgstr "Ваш пПкушај Ўа ОзбрОшете Пвај кПЌеМтар: „%s“ МОје успеП." ++ ++#: wp-includes/functions.php:1290 ++#, php-format ++msgid "Your attempt to unapprove this comment: "%s" has failed." ++msgstr "Ваш пПкушај Ўа Ме ЎПзвПлОте Пвај кПЌеМтар: „%s“ МОје успеП." ++ ++#: wp-includes/functions.php:1291 ++#, php-format ++msgid "Your attempt to approve this comment: "%s" has failed." ++msgstr "Ваш пПкушај Ўа ПЎПбрОте Пвај кПЌеМтар: „%s“ МОје успеП." ++ ++#: wp-includes/functions.php:1292 ++#, php-format ++msgid "Your attempt to edit this comment: "%s" has failed." ++msgstr "Ваш пПкушај Ўа уреЎОте Пвај кПЌеМтар: „%s“ МОје успеП." ++ ++#: wp-includes/functions.php:1293 ++msgid "Your attempt to bulk modify comments has failed." ++msgstr "Ваш пПкушај Ўа ЌасПвМП ОзЌеМОте кПЌеМтаре МОје успеП." ++ ++#: wp-includes/functions.php:1294 ++msgid "Your attempt to moderate comments has failed." ++msgstr "Ваш пПкушај Ўа уреЎОте кПЌеМтаре МОје успеП." ++ ++#: wp-includes/functions.php:1296 ++msgid "Your attempt to add this link has failed." ++msgstr "Ваш пПкушај Ўа ЎПЎате Пву везу МОје успеП." ++ ++#: wp-includes/functions.php:1297 ++#, php-format ++msgid "Your attempt to delete this link: "%s" has failed." ++msgstr "Ваш пПкушај Ўа ОзбрОшете Пву везу: „%s“ МОје успеП." ++ ++#: wp-includes/functions.php:1298 ++#, php-format ++msgid "Your attempt to edit this link: "%s" has failed." ++msgstr "Ваш пПкушај Ўа уреЎОте Пву везу: „%s“ МОје успеП." ++ ++#: wp-includes/functions.php:1299 ++msgid "Your attempt to bulk modify links has failed." ++msgstr "Ваш пПкушај Ўа ЌасПвМП ОзЌеМОте везе МОје успеП." ++ ++#: wp-includes/functions.php:1301 ++msgid "Your attempt to add this page has failed." ++msgstr "Ваш пПкушај Ўа ЎПЎате Пву страМу МОје успеП." ++ ++#: wp-includes/functions.php:1302 ++#, php-format ++msgid "Your attempt to delete this page: "%s" has failed." ++msgstr "Ваш пПкушај Ўа ОзбрОшете Пву страМу: „%s“ МОје успеП." ++ ++#: wp-includes/functions.php:1303 ++#, php-format ++msgid "Your attempt to edit this page: "%s" has failed." ++msgstr "Ваш пПкушај Ўа уреЎОте Пву страМу: „%s“ МОје успеП." ++ ++#: wp-includes/functions.php:1305 ++#, php-format ++msgid "Your attempt to edit this plugin file: "%s" has failed." ++msgstr "Ваш пПкушај Ўа уреЎОте Пву ЎатПтеку ЎПЎатка: „%s“ МОје успеП." ++ ++#: wp-includes/functions.php:1306 ++#, php-format ++msgid "Your attempt to activate this plugin: "%s" has failed." ++msgstr "Ваш пПкушај Ўа укључОте Пвај ЎПЎатак: „%s“ МОје успеП." ++ ++#: wp-includes/functions.php:1307 ++#, php-format ++msgid "Your attempt to deactivate this plugin: "%s" has failed." ++msgstr "Ваш пПкушај Ўа ОскључОте Пвај ЎПЎатак: „%s“ МОје успеП." ++ ++#: wp-includes/functions.php:1308 ++#, php-format ++msgid "Your attempt to upgrade this plugin: "%s" has failed." ++msgstr "Ваш пПкушај Ўа ажурОрате Пвај ЎПЎатак: „%s“ МОје успеП." ++ ++#: wp-includes/functions.php:1310 ++msgid "Your attempt to add this post has failed." ++msgstr "Ваш пПкушај Ўа ЎПЎате Пвај члаМак МОје успеП." ++ ++#: wp-includes/functions.php:1311 ++#, php-format ++msgid "Your attempt to delete this post: "%s" has failed." ++msgstr "Ваш пПкушај Ўа ОзбрОшете Пвај члаМак: „%s“ МОје успеП." ++ ++#: wp-includes/functions.php:1312 ++#, php-format ++msgid "Your attempt to edit this post: "%s" has failed." ++msgstr "Ваш пПкушај Ўа уреЎОте Пвај члаМак:„%s“ МОје успеП." ++ ++#: wp-includes/functions.php:1314 ++msgid "Your attempt to add this user has failed." ++msgstr "Ваш пПкушај Ўа ЎПЎате ПвПг кПрОсМОка МОје успеП." ++ ++#: wp-includes/functions.php:1315 ++msgid "Your attempt to delete users has failed." ++msgstr "Ваш пПкушај Ўа ОзбрОшете кПрОсМОке МОје успеП." ++ ++#: wp-includes/functions.php:1316 ++msgid "Your attempt to bulk modify users has failed." ++msgstr "Ваш пПкушај Ўа ЌасПвМП ОзЌеМОте кПрОсМОке МОје успеП." ++ ++#: wp-includes/functions.php:1317 ++#, php-format ++msgid "Your attempt to edit this user: "%s" has failed." ++msgstr "Ваш пПкушај Ўа уреЎОте ПвПг кПрОсМОка: „%s“ МОје успеП." ++ ++#: wp-includes/functions.php:1318 ++#, php-format ++msgid "Your attempt to modify the profile for: "%s" has failed." ++msgstr "Ваш пПкушај Ўа ОзЌеМОте прПфОл за: „%s“ МОје успеП." ++ ++#: wp-includes/functions.php:1320 ++msgid "Your attempt to edit your settings has failed." ++msgstr "Ваш пПкушај Ўа ОзЌеМОте ваша пПЎешавања МОје успеП." ++ ++#: wp-includes/functions.php:1321 ++#, php-format ++msgid "Your attempt to change your permalink structure to: %s has failed." ++msgstr "Ваш пПкушај Ўа прПЌеМОте вашу permalink структуру у: %s МОје успеП." ++ ++#: wp-includes/functions.php:1322 ++#, php-format ++msgid "Your attempt to edit this file: "%s" has failed." ++msgstr "Ваш пПкушај Ўа уреЎОте Пву ЎатПтеку: „%s“ МОје успеП." ++ ++#: wp-includes/functions.php:1323 ++#, php-format ++msgid "Your attempt to edit this theme file: "%s" has failed." ++msgstr "Ваш пПкушај Ўа уреЎОте Пву ЎатПтеку теЌе: „%s“ МОје успеП." ++ ++#: wp-includes/functions.php:1324 ++#, php-format ++msgid "Your attempt to switch to this theme: "%s" has failed." ++msgstr "Ваш пПкушај Ўа пПставОте Пву теЌу: „%s“ МОје успеП." ++ ++#: wp-includes/functions.php:1339 ++msgid "Are you sure you want to do this?" ++msgstr "Да лО сОгурМП желОте Ўа ураЎОте ПвП?" ++ ++#: wp-includes/functions.php:1344 ++msgid "WordPress Failure Notice" ++msgstr "ВПрЎпрес Пбавештење П грешцО" ++ ++#: wp-includes/functions.php:1347 ++msgid "Please try again." ++msgstr "МПлОЌП вас пПкушајте пПМПвП." ++ ++#: wp-includes/functions.php:1395 ++msgid "WordPress › Error" ++msgstr "ВПрЎпрес › Грешка" ++ ++#: wp-includes/general-template.php:36 ++#: wp-login.php:261 ++#: wp-login.php:264 ++#: wp-login.php:329 ++msgid "Log in" ++msgstr "ПрОјава" ++ ++#: wp-includes/general-template.php:38 ++msgid "Log out" ++msgstr "ОЎјава" ++ ++#: wp-includes/general-template.php:48 ++#: wp-login.php:262 ++#: wp-login.php:325 ++#: wp-login.php:403 ++msgid "Register" ++msgstr "РегОстрацОја" ++ ++#: wp-includes/general-template.php:52 ++msgid "Site Admin" ++msgstr "АЎЌОМ. блПга" ++ ++#: wp-includes/general-template.php:414 ++#, php-format ++msgid "%1$s %2$d" ++msgstr "%1$s %2$d" ++ ++#: wp-includes/general-template.php:591 ++#: wp-includes/widgets.php:1364 ++#: wp-includes/widgets.php:1365 ++msgid "Calendar" ++msgstr "КалеМЎар" ++ ++#: wp-includes/general-template.php:592 ++#, php-format ++msgid "%1$s %2$s|Used as a calendar caption" ++msgstr "" ++ ++#: wp-includes/general-template.php:616 ++#: wp-includes/general-template.php:626 ++#, php-format ++msgid "View posts for %1$s %2$s" ++msgstr "ВОЎО члаМке за %1$s %2$s" ++ ++#: wp-includes/general-template.php:933 ++#: wp-includes/general-template.php:937 ++msgid "HTML" ++msgstr "HTML" ++ ++#: wp-includes/general-template.php:934 ++#: wp-includes/general-template.php:938 ++msgid "Visual" ++msgstr "ВОЎљОвП" ++ ++#: wp-includes/general-template.php:1032 ++msgid "« Previous" ++msgstr "« ПретхПЎМП" ++ ++#: wp-includes/general-template.php:1033 ++msgid "Next »" ++msgstr "СлеЎеће »" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:13 ++msgid "Do you want to use the WYSIWYG mode for this textarea?" ++msgstr "Да лО желОте Ўа кПрОстОте WYSIWYG (шта вОЎОш, тП О ЎПбОјеш) ЌПЎ за ПвП текстуалМП пПље?" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:14 ++msgid "Apply" ++msgstr "ПрОЌеМО" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:15 ++#: wp-includes/script-loader.php:183 ++msgid "Insert" ++msgstr "УбацО" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:18 ++#: wp-includes/js/tinymce/wp-mce-help.php:246 ++msgid "Close" ++msgstr "ЗатвПрО" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:19 ++msgid "Browse" ++msgstr "ПреглеЎ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:20 ++#: wp-includes/js/tinymce/langs/wp-langs.php:300 ++msgid "Class" ++msgstr "Класа" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:21 ++msgid "-- Not set --" ++msgstr "-- НОје пПЎешеМП --" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:22 ++#: wp-includes/js/tinymce/langs/wp-langs.php:227 ++msgid "Copy/Cut/Paste is not available in Mozilla and Firefox." ++msgstr "УЌМПжавање/Исецање/Лепљење МОје ЎПступМП у МПзОлО О ЀајерфПксу." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:23 ++msgid "Currently not supported by your browser, use keyboard shortcuts instead." ++msgstr "ТреМутМП МОје пПЎржаМП ПЎ страМе вашег веб преглеЎача, кПрОстОте пречОце са тастатуре уЌестП тПга." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:24 ++msgid "Sorry, but we have noticed that your popup-blocker has disabled a window that provides application functionality. You will need to disable popup blocking on this site in order to fully utilize this tool." ++msgstr "ЖаП МаЌ је, прОЌетОлО сЌП Ўа је ваш блПкОрач ОскачућОх прПзПра ПМеЌПгућОП прПзПр кПјО Ўаје фуМкцОПМалМПст аплОкацОјО. МПраћете Ўа ОскључОте блПкОрање Оскакања прПзПра Ма ПвПЌ веб Ќесту Ўа бОсте ЌПглО у пПтпуМПстО Ўа кПрОстОте Пву алатку." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:25 ++msgid "Error: Invalid values entered, these are marked in red." ++msgstr "Грешка: УМете су МеОсправМе вреЎМПстО, ПзМачеМе су црвеМПЌ бПјПЌ." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:26 ++#: wp-includes/js/tinymce/langs/wp-langs.php:231 ++msgid "More colors" ++msgstr "ВОше бПја" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:33 ++msgid "Full" ++msgstr "ЊелП" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:36 ++msgid "%Y-%m-%d" ++msgstr "%Y-%m-%d" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:37 ++msgid "%H:%M:%S" ++msgstr "%H:%M:%S" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:38 ++msgid "Insert date" ++msgstr "УбацО ЎатуЌ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:39 ++msgid "Insert time" ++msgstr "УбацО вреЌе" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:142 ++#: wp-includes/locale.php:157 ++msgid "January" ++msgstr "јаМуар" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:143 ++#: wp-includes/locale.php:158 ++msgid "February" ++msgstr "фебруар" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:144 ++#: wp-includes/locale.php:159 ++msgid "March" ++msgstr "Ќарт" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:145 ++#: wp-includes/locale.php:160 ++msgid "April" ++msgstr "апрОл" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:146 ++#: wp-includes/locale.php:161 ++msgid "May" ++msgstr "Ќај" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:147 ++#: wp-includes/locale.php:162 ++msgid "June" ++msgstr "јуМ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:148 ++#: wp-includes/locale.php:163 ++msgid "July" ++msgstr "јул" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:149 ++#: wp-includes/locale.php:164 ++msgid "August" ++msgstr "август" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:150 ++#: wp-includes/locale.php:165 ++msgid "September" ++msgstr "септеЌбар" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:151 ++#: wp-includes/locale.php:166 ++msgid "October" ++msgstr "ПктПбар" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:152 ++#: wp-includes/locale.php:167 ++msgid "November" ++msgstr "МПвеЌбар" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:40 ++#: wp-includes/locale.php:153 ++#: wp-includes/locale.php:168 ++msgid "December" ++msgstr "ЎецеЌбар" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:157 ++msgid "Jan_January_abbreviation" ++msgstr "јаМ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:158 ++msgid "Feb_February_abbreviation" ++msgstr "феб" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:159 ++msgid "Mar_March_abbreviation" ++msgstr "Ќар" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:160 ++msgid "Apr_April_abbreviation" ++msgstr "апр" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:161 ++msgid "May_May_abbreviation" ++msgstr "Ќај" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:162 ++msgid "Jun_June_abbreviation" ++msgstr "јуМ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:163 ++msgid "Jul_July_abbreviation" ++msgstr "јул" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:164 ++msgid "Aug_August_abbreviation" ++msgstr "авг" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:165 ++msgid "Sep_September_abbreviation" ++msgstr "сеп" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:166 ++msgid "Oct_October_abbreviation" ++msgstr "Пкт" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:167 ++msgid "Nov_November_abbreviation" ++msgstr "МПв" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:41 ++#: wp-includes/locale.php:168 ++msgid "Dec_December_abbreviation" ++msgstr "Ўец" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:110 ++#: wp-includes/locale.php:120 ++#: wp-includes/locale.php:133 ++msgid "Sunday" ++msgstr "МеЎеља" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:111 ++#: wp-includes/locale.php:121 ++#: wp-includes/locale.php:134 ++msgid "Monday" ++msgstr "пПМеЎељак" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:112 ++#: wp-includes/locale.php:122 ++#: wp-includes/locale.php:135 ++msgid "Tuesday" ++msgstr "утПрак" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:113 ++#: wp-includes/locale.php:123 ++#: wp-includes/locale.php:136 ++msgid "Wednesday" ++msgstr "среЎа" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:114 ++#: wp-includes/locale.php:124 ++#: wp-includes/locale.php:137 ++msgid "Thursday" ++msgstr "четвртак" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:115 ++#: wp-includes/locale.php:125 ++#: wp-includes/locale.php:138 ++msgid "Friday" ++msgstr "петак" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:42 ++#: wp-includes/locale.php:116 ++#: wp-includes/locale.php:126 ++#: wp-includes/locale.php:139 ++msgid "Saturday" ++msgstr "субПта" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:133 ++msgid "Sun" ++msgstr "НеЎ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:134 ++msgid "Mon" ++msgstr "ППМ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:135 ++msgid "Tue" ++msgstr "УтП" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:136 ++msgid "Wed" ++msgstr "Сре" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:137 ++msgid "Thu" ++msgstr "Чет" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:138 ++msgid "Fri" ++msgstr "Пет" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:43 ++#: wp-includes/locale.php:139 ++msgid "Sat" ++msgstr "Суб" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:46 ++msgid "Print" ++msgstr "КтаЌпање" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:49 ++#: wp-includes/js/tinymce/langs/wp-langs.php:295 ++msgid "Preview" ++msgstr "ПреглеЎ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:52 ++msgid "Direction left to right" ++msgstr "Правац левП ка ЎесМП" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:53 ++msgid "Direction right to left" ++msgstr "Правац ЎесМП ка левП" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:56 ++msgid "Insert new layer" ++msgstr "ДПЎај МПвО слПј" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:57 ++msgid "Move forward" ++msgstr "ППЌерО МапреЎ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:58 ++msgid "Move backward" ++msgstr "ППЌерО уМазаЎ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:59 ++msgid "Toggle absolute positioning" ++msgstr "ПребацОвање Ма апсПлутМП пПзОцОПМОрање" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:60 ++msgid "New layer..." ++msgstr "НПвО слПј" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:64 ++msgid "Cancel all changes" ++msgstr "ОЎустаМО ПЎ свОх ОзЌеМа" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:67 ++msgid "Insert non-breaking space character" ++msgstr "УЌетМО зМак за МеразЎвајањ прПстПра" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:70 ++msgid "Run spell checking" ++msgstr "ППкреМО прПверу правПпОса" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:71 ++msgid "ieSpell not detected. Do you want to install it now?" ++msgstr "ieSpell МОје уПчеМ. Да лО желОте Ўа га саЎа ОМсталОрате?" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:74 ++msgid "Horizontale rule" ++msgstr "ВПЎПраваМ лењОр" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:77 ++msgid "Emotions" ++msgstr "Осећање" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:80 ++msgid "Find" ++msgstr "ПрПМађО" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:81 ++msgid "Find/Replace" ++msgstr "ПрПМађО/ЗаЌеМО" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:84 ++#: wp-includes/js/tinymce/langs/wp-langs.php:206 ++#: wp-includes/js/tinymce/langs/wp-langs.php:260 ++msgid "Insert/edit image" ++msgstr "УЌетМО/уреЎО слОку" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:87 ++#: wp-includes/js/tinymce/langs/wp-langs.php:202 ++#: wp-includes/js/tinymce/langs/wp-langs.php:277 ++msgid "Insert/edit link" ++msgstr "УЌетМутО/уреЎОтО везу" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:90 ++msgid "Citation" ++msgstr "ЊОтОрање" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:91 ++msgid "Abbreviation" ++msgstr "Скраћење" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:92 ++msgid "Acronym" ++msgstr "СкраћеМОца" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:93 ++msgid "Deletion" ++msgstr "БрОсање" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:94 ++msgid "Insertion" ++msgstr "УЌетање" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:95 ++msgid "Insert/Edit Attributes" ++msgstr "УЌетМО/уреЎО ПсПбОМе" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:98 ++msgid "Edit CSS Style" ++msgstr "УреЎО CSS стОл" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:101 ++msgid "Paste as Plain Text" ++msgstr "НалепО каП чОстО текст" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:102 ++msgid "Paste from Word" ++msgstr "НалепО Оз прПграЌа ВПрЎ (Word)" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:103 ++msgid "Select All" ++msgstr "ОзаберО све" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:106 ++#: wp-includes/js/tinymce/langs/wp-langs.php:108 ++msgid "Use CTRL+V on your keyboard to paste the text into the window." ++msgstr "КПрОстОте CTRL+V Ма вашПј тастатурО Ўа бОсте МалепОлО текст у прПзПр." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:107 ++msgid "Keep linebreaks" ++msgstr "Сачувај прелПЌ лОМОја" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:111 ++msgid "Inserts a new table" ++msgstr "УЌетМО МПву табелу" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:112 ++msgid "Insert row before" ++msgstr "УЌетМО реЎ пре" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:113 ++msgid "Insert row after" ++msgstr "УЌетМО реЎ пПсле" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:114 ++msgid "Delete row" ++msgstr "ОбрОшО реЎ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:115 ++msgid "Insert column before" ++msgstr "УЌетМО кПлПМу пре" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:116 ++msgid "Insert column after" ++msgstr "УЌетМО кПлПМу пПсле" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:117 ++msgid "Remove column" ++msgstr "УклПМО кПлПМу" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:118 ++msgid "Split merged table cells" ++msgstr "ППЎелО спПјеМе ћелОје табеле" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:119 ++msgid "Merge table cells" ++msgstr "СпПјО ћелОје табеле" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:120 ++msgid "Table row properties" ++msgstr "СвПјства реЎа табеле" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:121 ++msgid "Table cell properties" ++msgstr "СвПјства ћелОје табеле" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:122 ++msgid "Table properties" ++msgstr "СвПјства табеле" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:123 ++msgid "Paste table row before" ++msgstr "НалепО реЎ табеле пре" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:124 ++msgid "Paste table row after" ++msgstr "НалепО реЎ табеле пПсле" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:125 ++msgid "Cut table row" ++msgstr "ИсецО реЎ табеле" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:126 ++msgid "Copy table row" ++msgstr "УЌМПжО реЎ табеле" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:127 ++msgid "Delete table" ++msgstr "ОбрОшО табелу" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:128 ++msgid "Row" ++msgstr "РеЎ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:129 ++msgid "Column" ++msgstr "кПлПМа" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:130 ++msgid "Cell" ++msgstr "ЋелОја" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:133 ++msgid "The changes you made will be lost if you navigate away from this page." ++msgstr "ИзЌеМе кПје сте МаправОлО бОће ОзгубљеМе акП МапустОте Пву страМОцу." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:136 ++msgid "Toggle fullscreen mode" ++msgstr "ПрОказ прекП целПг екраМа" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:139 ++#: wp-includes/js/tinymce/langs/wp-langs.php:289 ++msgid "Insert / edit embedded media" ++msgstr "УЌетМО / уреЎО угњежЎеМО саЎржај" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:140 ++msgid "0| Extra width for the media popup in pixels" ++msgstr "" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:141 ++msgid "0| Extra height for the media popup in pixels" ++msgstr "" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:142 ++msgid "Edit embedded media" ++msgstr "УреЎО угњежЎеМО саЎржај" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:145 ++msgid "Document properties" ++msgstr "СвПјства ЎПкуЌеМта" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:148 ++msgid "Insert predefined template content" ++msgstr "УЌетМО саЎржај уМапреЎ ЎефОМОсаМПг шаблПМа" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:151 ++msgid "Visual control characters on/off." ++msgstr "ВОЎљОвО кПМтрПлМО зМацО укључеМО/ОскључеМО." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:154 ++msgid "Toggle spellchecker" ++msgstr "ПребацО прПверу правПпОса" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:155 ++msgid "Spellchecker settings" ++msgstr "ППЎешавања ПрПвере правПпОса" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:156 ++msgid "Ignore word" ++msgstr "ЗаМеЌарО реч" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:157 ++msgid "Ignore all" ++msgstr "ЗаМеЌарО све" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:158 ++msgid "Languages" ++msgstr "ЈезОцО" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:159 ++msgid "Please wait..." ++msgstr "МПлОЌП вас, сачекајте..." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:160 ++msgid "Suggestions" ++msgstr "ПреЎлПзО" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:161 ++msgid "No suggestions" ++msgstr "НеЌа препПрука" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:162 ++msgid "No misspellings found." ++msgstr "НеЌа прПМађеМОх штаЌпарскОх грешака." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:165 ++msgid "Insert page break." ++msgstr "УЌетМО прелПЌ страМОце." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:169 ++msgid "Styles" ++msgstr "СтОлПвО" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:170 ++msgid "Font size" ++msgstr "ВелОчОМа слПвМПг лОка" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:171 ++msgid "Font family" ++msgstr "ЀаЌОлОја слПвМПг лОка" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:172 ++msgid "Format" ++msgstr "ОблОк" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:173 ++msgid "Paragraph" ++msgstr "Пасус" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:174 ++msgid "Div" ++msgstr "Div" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:175 ++#: wp-includes/js/tinymce/wp-mce-help.php:204 ++msgid "Address" ++msgstr "АЎреса" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:176 ++msgid "Preformatted" ++msgstr "ОблОкПваМП уМапреЎ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:177 ++msgid "Heading 1" ++msgstr "Заглавље 1" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:178 ++msgid "Heading 2" ++msgstr "Заглавље 2" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:179 ++msgid "Heading 3" ++msgstr "Заглавље 3" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:180 ++msgid "Heading 4" ++msgstr "Заглавље 4" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:181 ++msgid "Heading 5" ++msgstr "Заглавље 5" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:182 ++msgid "Heading 6" ++msgstr "Заглавље 6" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:183 ++#: wp-includes/js/tinymce/langs/wp-langs.php:226 ++msgid "Blockquote" ++msgstr "ЊОтат" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:184 ++msgid "Code" ++msgstr "КÎЎ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:185 ++msgid "Code sample" ++msgstr "ПрОЌер кÎЎа" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:186 ++msgid "Definition term " ++msgstr "Објашњење члаМа" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:187 ++msgid "Definition description" ++msgstr "ДефОМОцОја ПпОса" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:188 ++#: wp-includes/js/tinymce/wp-mce-help.php:200 ++#: wp-includes/js/tinymce/wp-mce-help.php:213 ++msgid "Bold" ++msgstr "ППЎебљаМП" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:189 ++#: wp-includes/js/tinymce/wp-mce-help.php:200 ++#: wp-includes/js/tinymce/wp-mce-help.php:213 ++msgid "Italic" ++msgstr "ИскПшеМП" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:190 ++#: wp-includes/js/tinymce/wp-mce-help.php:201 ++msgid "Underline" ++msgstr "ППЎвучеМП" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:191 ++#: wp-includes/js/tinymce/wp-mce-help.php:217 ++msgid "Strikethrough" ++msgstr "ПрецртаМП" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:192 ++msgid "Align left" ++msgstr "ППравМај улевП" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:193 ++msgid "Align center" ++msgstr "ЊеМтрОраМП" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:194 ++msgid "Align right" ++msgstr "ППравМај уЎесМП" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:195 ++msgid "Align full" ++msgstr "ППравМај целП" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:196 ++msgid "Unordered list" ++msgstr "НеуређеМа лОста" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:197 ++msgid "Ordered list" ++msgstr "НуЌерОсаМа лОста" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:198 ++msgid "Outdent" ++msgstr "Извлачење" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:199 ++msgid "Indent" ++msgstr "Увлачење" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:200 ++#: wp-includes/js/tinymce/wp-mce-help.php:197 ++msgid "Undo" ++msgstr "ВратО" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:201 ++#: wp-includes/js/tinymce/wp-mce-help.php:197 ++msgid "Redo" ++msgstr "ППМПвО" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:203 ++msgid "0| Extra width for the link popup in pixels" ++msgstr "" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:204 ++msgid "0| Extra height for the link popup in pixels" ++msgstr "" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:205 ++msgid "Unlink" ++msgstr "УклПМОтО везу" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:207 ++msgid "0| Extra width for the image popup in pixels" ++msgstr "" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:208 ++msgid "0| Extra height for the image popup in pixels" ++msgstr "" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:209 ++msgid "Cleanup messy code" ++msgstr "ПрПчОстО МесређеМ кÎЎ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:210 ++msgid "Edit HTML Source" ++msgstr "УреЎО HTML ОзвПр" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:211 ++msgid "Subscript" ++msgstr "НапОсаМП ОспПЎ (Subscript)" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:212 ++msgid "Superscript" ++msgstr "СтепеМПваМП (Superscript)" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:213 ++msgid "Insert horizontal ruler" ++msgstr "УЌетМО вПЎПравМО лењОр" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:214 ++msgid "Remove formatting" ++msgstr "УклПМО ПблОкПвање текста" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:215 ++msgid "Select text color" ++msgstr "ИзаберО бПју тескта" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:216 ++msgid "Select background color" ++msgstr "ИзаберО бПју пПзаЎОМе" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:217 ++msgid "Insert custom character" ++msgstr "УЌетМО МестаМЎарЎМО карактер" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:218 ++msgid "Toggle guidelines/invisible elements" ++msgstr "ПрОкажО сЌерМОце/МевОЎљОве ПсМПве" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:219 ++#: wp-includes/js/tinymce/langs/wp-langs.php:246 ++msgid "Insert/edit anchor" ++msgstr "УЌетМО/уреЎО сОЎрП" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:220 ++#: wp-includes/js/tinymce/wp-mce-help.php:196 ++msgid "Cut" ++msgstr "ИсецО" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:221 ++#: wp-includes/js/tinymce/wp-mce-help.php:195 ++msgid "Copy" ++msgstr "УЌМПжО" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:222 ++#: wp-includes/js/tinymce/wp-mce-help.php:195 ++msgid "Paste" ++msgstr "НалепО" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:223 ++msgid "Image properties" ++msgstr "СвПјства слОке" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:224 ++msgid "New document" ++msgstr "НПвО ЎПкуЌеМт" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:225 ++#: wp-includes/js/tinymce/langs/wp-langs.php:239 ++#: wp-includes/js/tinymce/langs/wp-langs.php:396 ++#: wp-includes/js/tinymce/wp-mce-help.php:222 ++msgid "Help" ++msgstr "ППЌПћ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:228 ++msgid "Path" ++msgstr "Путања" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:229 ++msgid "Are you sure you want to clear all contents?" ++msgstr "Да лО сОгурМП желОте Ўа ПчОстОте цеП саЎржај?" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:230 ++msgid "Jump to tool buttons - Alt+Q, Jump to editor - Alt-Z, Jump to element path - Alt-X" ++msgstr "СкПчО Ма ЎугЌаЎ алата - Alt+Q, СкПчО Ма уређОвач - Alt-Z, СкПчО Ма путању елеЌеМта - Alt-X" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:232 ++msgid "0| Extra width for the colorpicker popup in pixels" ++msgstr "" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:233 ++msgid "0| Extra height for the colorpicker popup in pixels" ++msgstr "" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:237 ++#: wp-includes/js/tinymce/wp-mce-help.php:228 ++msgid "About TinyMCE" ++msgstr "О TinyMCE-у" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:240 ++msgid "License" ++msgstr "ДПзвПла" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:245 ++msgid "Loaded plugins" ++msgstr "УчОтаМО ЎПЎацО" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:247 ++msgid "Anchor name" ++msgstr "ИЌе сОЎра" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:248 ++msgid "HTML Source Editor" ++msgstr "УређОвач HTML ОзвПра" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:249 ++msgid "Word wrap" ++msgstr "ПрелПЌ текста" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:250 ++msgid "Select a color" ++msgstr "ИзаберОте бПју" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:251 ++msgid "Picker" ++msgstr "БОрач" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:252 ++msgid "Color picker" ++msgstr "БОрач бПја" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:253 ++msgid "Palette" ++msgstr "Палета" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:254 ++msgid "Palette colors" ++msgstr "Палета бПја" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:255 ++msgid "Named" ++msgstr "ИЌеМПваМП" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:256 ++msgid "Named colors" ++msgstr "ИЌеМПваМе бПје" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:257 ++msgid "Color:" ++msgstr "БПја:" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:258 ++msgid "Name:" ++msgstr "ИЌе:" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:259 ++msgid "Select custom character" ++msgstr "ИзаберО МестаМЎарЎМО карактер" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:262 ++msgid "Image description" ++msgstr "ОпОс слОке" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:263 ++msgid "Image list" ++msgstr "ЛОста слОка" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:264 ++msgid "Border" ++msgstr "ИвОца" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:265 ++#: wp-includes/js/tinymce/langs/wp-langs.php:294 ++msgid "Dimensions" ++msgstr "ВелОчОМе" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:266 ++msgid "Vertical space" ++msgstr "УсправМО прПстПр" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:267 ++msgid "Horizontal space" ++msgstr "ВПЎПравМО прПстПр" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:269 ++msgid "Baseline" ++msgstr "ОсМПвМа лОМОја" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:270 ++#: wp-includes/js/tinymce/langs/wp-langs.php:369 ++msgid "Top" ++msgstr "Врх" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:271 ++msgid "Middle" ++msgstr "СреЎОМа" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:272 ++#: wp-includes/js/tinymce/langs/wp-langs.php:371 ++msgid "Bottom" ++msgstr "ДМП" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:273 ++msgid "Text top" ++msgstr "Текст Ма врху" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:274 ++msgid "Text bottom" ++msgstr "Текст Ма ЎМу" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:280 ++msgid "Open link in the same window" ++msgstr "ОтвПрО везу у ОстПЌ прПзПру/језОчку" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:281 ++msgid "Open link in a new window" ++msgstr "ОтвПрО везу у МПвПЌ прПзПру/језОчку" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:283 ++msgid "The URL you entered seems to be an email address, do you want to add the required mailto: prefix?" ++msgstr "URL кПјО сте уМелО је ОзглеЎа аЎреса е-пПште, Ўа лО желОте Ўа ЎПЎате МеПпхПЎМО префОкс mailto:?" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:284 ++msgid "The URL you entered seems to external link, do you want to add the required http:// prefix?" ++msgstr "URL кПјО сте уМелО је ОзглеЎа спПљашња веза, Ўа лО желОте Ўа ЎПЎате МеПпхПЎМО префОкс http://?" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:285 ++msgid "Link list" ++msgstr "СпОсак веза" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:292 ++msgid "File/URL" ++msgstr "ДатПтека/URL" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:293 ++#: wp-includes/js/tinymce/wp-mce-help.php:218 ++#: wp-includes/js/tinymce/wp-mce-help.php:219 ++msgid "List" ++msgstr "СпОсак" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:296 ++msgid "Constrain proportions" ++msgstr "СтегМО разЌере" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:297 ++msgid "Type" ++msgstr "Врста" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:298 ++msgid "Id" ++msgstr "Id" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:301 ++msgid "V-Space" ++msgstr "в-разЌак" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:302 ++msgid "H-Space" ++msgstr "х-разЌак" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:303 ++msgid "Auto play" ++msgstr "СаЌПпуштање" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:304 ++#: wp-includes/js/tinymce/langs/wp-langs.php:386 ++msgid "Loop" ++msgstr "Петља" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:305 ++msgid "Show menu" ++msgstr "ПрОкажО ОзбПрМОк" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:306 ++msgid "Quality" ++msgstr "КвалОтет" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:307 ++msgid "Scale" ++msgstr "РазЌера" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:308 ++msgid "Align" ++msgstr "ППравМај" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:309 ++msgid "SAlign" ++msgstr "с-равМање" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:310 ++msgid "WMode" ++msgstr "в-режОЌ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:311 ++msgid "Background" ++msgstr "ППзаЎОМа" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:312 ++msgid "Base" ++msgstr "База" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:313 ++msgid "Flashvars" ++msgstr "ПрПЌеМљОве Ѐлеша" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:314 ++msgid "SWLiveConnect" ++msgstr "ЛајвкПМект" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:315 ++msgid "AutoHREF" ++msgstr "АутПХРЕЀ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:316 ++msgid "Cache" ++msgstr "Кеш" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:317 ++msgid "Hidden" ++msgstr "СакрОвеМП" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:318 ++msgid "Controller" ++msgstr "КПМтрПлПр" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:319 ++msgid "Kiosk mode" ++msgstr "КОПск" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:320 ++msgid "Play every frame" ++msgstr "ПрОкажО свакО каЎар" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:321 ++msgid "Target cache" ++msgstr "Кеш цОља" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:322 ++msgid "No correction" ++msgstr "НеЌа Осправке" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:323 ++msgid "Enable JavaScript" ++msgstr "ОЌПгућО JavaScript" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:324 ++#: wp-includes/js/tinymce/langs/wp-langs.php:382 ++msgid "Start time" ++msgstr "ВреЌе пПчетка" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:325 ++msgid "End time" ++msgstr "ВреЌе завршетка" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:326 ++msgid "Href" ++msgstr "Хреф" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:327 ++msgid "Choke speed" ++msgstr "БрзОМа гушења" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:329 ++msgid "Volume" ++msgstr "ГласМПст" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:330 ++#: wp-includes/js/tinymce/langs/wp-langs.php:385 ++msgid "Auto start" ++msgstr "СаЌПпПкретање" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:331 ++msgid "Enabled" ++msgstr "ОЌПгућеМП" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:332 ++msgid "Fullscreen" ++msgstr "ЊелПекраМскО" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:333 ++msgid "Invoke URLs" ++msgstr "Отварање УРЛ-Пва" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:334 ++msgid "Mute" ++msgstr "НечујМП" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:335 ++msgid "Stretch to fit" ++msgstr "РазвућО ЎП уклапања" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:336 ++msgid "Windowless video" ++msgstr "ВОЎеП запОс без прПзПра" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:337 ++msgid "Balance" ++msgstr "БалаМс" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:338 ++msgid "Base URL" ++msgstr "БазМО URL" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:339 ++msgid "Captioning id" ++msgstr "ОЎ. МаслПвљавања" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:340 ++msgid "Current marker" ++msgstr "ТреМутМО пПказОвач" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:341 ++msgid "Current position" ++msgstr "ТреМутМО пПлПжај" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:342 ++msgid "Default frame" ++msgstr "ППЎразуЌеваМО каЎар" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:343 ++msgid "Play count" ++msgstr "БрПј пуштања" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:344 ++msgid "Rate" ++msgstr "ПрПтПк" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:345 ++msgid "UI Mode" ++msgstr "РежОЌ сучеља" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:346 ++msgid "Flash options" ++msgstr "Ѐлеш ПпцОје" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:347 ++msgid "Quicktime options" ++msgstr "КвОктајЌ ПцОје" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:348 ++msgid "Windows media player options" ++msgstr "ВОМЎПус ЌеЎОја плејер ПпцОје" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:349 ++msgid "Real media player options" ++msgstr "РОал ЌеЎОја плејер ПпцОје" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:350 ++msgid "Shockwave options" ++msgstr "КПквејв ПцОје" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:351 ++msgid "Auto goto URL" ++msgstr "СаЌППЎлазак Ма УРЛ" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:353 ++msgid "Image status" ++msgstr "Стање слОке" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:354 ++msgid "Maintain aspect" ++msgstr "Очувај прПпПрцОје" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:355 ++msgid "No java" ++msgstr "НеЌа јаве" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:356 ++msgid "Prefetch" ++msgstr "ПреЎПхватање" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:357 ++msgid "Shuffle" ++msgstr "ПрПЌешаМП" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:358 ++msgid "Console" ++msgstr "КПМзПла" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:359 ++msgid "Num loops" ++msgstr "НуЌерОчка петља" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:360 ++msgid "Controls" ++msgstr "КПМтрПле" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:361 ++msgid "Script callbacks" ++msgstr "КПМтрапПзОвМе скрОпте" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:362 ++msgid "Stretch style" ++msgstr "СтОл развлачења" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:363 ++msgid "Stretch H-Align" ++msgstr "х-разЌак развлачења" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:364 ++msgid "Stretch V-Align" ++msgstr "в-разЌак развлачења" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:365 ++msgid "Sound" ++msgstr "Звук" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:366 ++msgid "Progress" ++msgstr "НапреЎак" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:367 ++msgid "QT Src" ++msgstr "КвОктајЌ ОзвПр" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:368 ++msgid "Streamed rtsp resources should be added to the QT Src field under the advanced tab." ++msgstr "rtsp ОзвПрО у прПтПку требалП бО бОтО ЎПЎатО КвОктајЌ ОзвПру пПЎ језОчкПЌ МапреЎМП." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:374 ++msgid "Top left" ++msgstr "ГПре левП" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:375 ++msgid "Top right" ++msgstr "ГПре ЎесМП" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:376 ++msgid "Bottom left" ++msgstr "ДПле левП" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:377 ++msgid "Bottom right" ++msgstr "ДПле ЎесМП" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:378 ++msgid "Flash video options" ++msgstr "ОпцОје вОЎеП запОса Ѐлеша" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:379 ++msgid "Scale mode" ++msgstr "РежОЌ разЌере" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:380 ++msgid "Buffer" ++msgstr "МеђуЌеЌПрОја" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:381 ++msgid "Start image" ++msgstr "ППчетМа слОка" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:383 ++msgid "Default volume" ++msgstr "ППЎразуЌеваМа гласМПст" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:384 ++msgid "Hidden GUI" ++msgstr "СакрОвеМП графОчкП сучеље" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:387 ++msgid "Show scale modes" ++msgstr "ПрОкажО режОЌе разЌере" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:388 ++msgid "Smooth video" ++msgstr "ГлаЎак вОЎеП запОс" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:389 ++msgid "JS Callback" ++msgstr "ЈС кПМтрапПзОв" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:393 ++msgid "Show/Hide Kitchen Sink" ++msgstr "ПрОкажО/сакрОј МапреЎМу лОМОју са алаткаЌа" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:394 ++msgid "Insert More tag" ++msgstr "УЌетМО ПзМаку ВОше" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:395 ++msgid "Insert Page break" ++msgstr "УЌетМО прелПЌ страМОце" ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:397 ++msgid "More..." ++msgstr "ВОше..." ++ ++#: wp-includes/js/tinymce/langs/wp-langs.php:398 ++msgid "Next page..." ++msgstr "СлеЎећа страМОца..." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:8 ++msgid "Rich Editor Help" ++msgstr "ППЌПћ за БПгатО уређОвач" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:162 ++msgid "Basics of Rich Editing" ++msgstr "ОсМПве БПгатПг уређОвања" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:162 ++msgid "Basics" ++msgstr "ОсМПвМП" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:163 ++msgid "Advanced use of the Rich Editor" ++msgstr "НапреЎМа упПтреба БПгатПг уређОвача" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:164 ++msgid "Hotkeys" ++msgstr "ПречОце" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:165 ++msgid "About the software" ++msgstr "О сПфтверу" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:171 ++msgid "Rich Editing Basics" ++msgstr "ОсМПве БПгатПг уређОвања" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:172 ++msgid "Rich editing, also called WYSIWYG for What You See Is What You Get, means your text is formatted as you type. The rich editor creates HTML code behind the scenes while you concentrate on writing. Font styles, links and images all appear approximately as they will on the internet." ++msgstr "БПгатП уређОвање, такПђе пПзМатП О каП WYSIWYG за „Кта вОЎОш, тП О ЎПбОјеш“ (What You See Is What You Get), зМачО Ўа је текст кПјО уМесете ПблОкПваМ какП куцате. БПгатО уређОвач правО s HTML кÎЎ Оза сцеМе ЎПк се вО усЌеравате Ма пОсање. ОблОцО слПвМПг лОка, везе О слОке ће се пПјавОтО прОблОжМП ПМакП каП Ма ИМтерМету." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:173 ++msgid "WordPress includes a rich HTML editor that works well in all major web browsers used today. However editing HTML is not the same as typing text. Each web page has two major components: the structure, which is the actual HTML code and is produced by the editor as you type, and the display, that is applied to it by the currently selected WordPress theme and is defined in style.css. WordPress is producing valid XHTML 1.0 which means that inserting multiple line breaks (BR tags) after a paragraph would not produce white space on the web page. The BR tags will be removed as invalid by the internal HTML correcting functions." ++msgstr "ВПрЎпрес укључује бПгатО HTML уређОвач кПјО раЎО ЎПбрП у већОМО веб преглеЎача кПјО се ЎаМас кПрОсте. Ипак, уређОвање HTML-а МОје ОстП каП О куцање текста. Свака веб страМОца ОЌа Ўва важМа Ўела: структуру, кПја је у стварО HTML кÎЎ О МаправљеМа је ПЎ уређОвача ЎПк куцате, О прОказа, кПјО се прОЌењујњ ПЎ треМутМП ОзабраМе ВПрЎпрес теЌе О ПпОсаМ је у ЎатПтецО style.css. ВПрЎпрес правО ОсправаМ XHTML 1.0 штП зМачО Ўа уЌетање вОше МПвО реЎПва (BR ПзМаке) пПсле пасуса Меће МаправОтО белО прПстПр Ма веб страМОцО. BR ПзМаке бОће ОзбачеМе каП МеОсправМе ПЎ страМе фуМкцОје уМутрашње прПвере HTML-а. " ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:174 ++msgid "While using the editor, most basic keyboard shortcuts work like in any other text editor. For example: Shift+Enter inserts line break, Ctrl+C = copy, Ctrl+X = cut, Ctrl+Z = undo, Ctrl+Y = redo, Ctrl+A = select all, etc. (on Mac use the Command key instead of Ctrl). See the Hotkeys tab for all available keyboard shortcuts." ++msgstr "ПрОлОкПЌ кПрОшћења уређОвача, већОМа ПсМПвМОх пречОца са тастатуре раЎО каП у бОлП кПЌ ЎругПЌ уређОвачу текста. На прОЌер: Shift+Enter уЌета прелПЌ реЎа, Ctrl+C уЌМПжава, Ctrl+X Осеца, Ctrl+Z ПпПзОва, Ctrl+Y пПМавља, Ctrl+B пПЎебљава, Ctrl+I ОскПшава, Ctrl+U пПЎвлачО, ОтЎ. (Ма Мек (Mac, Macintosh) рачуМарОЌа кПрОстОте Apple ЎугЌе уЌестП Ctrl). ППглеЎајте језОчак ПречОце за све ЎПступМе пречОце са тастатуре." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:175 ++msgid "If you do not like the way the rich editor works, you may turn it off from Your Profile submenu, under Users in the admin menu." ++msgstr "УкПлОкП Ме вПлОте МачОМ Ма кПјО бПгатО уређОвач раЎО, ЌПжете га ОскључОтО у вашеЌ прПфОлу, пПЎ КПрОсМОцО у аЎЌОМОстратОвМПЌ Ўелу." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:179 ++msgid "Advanced Rich Editing" ++msgstr "НапреЎМП БПгатП уређОвање" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:180 ++msgid "Images and Attachments" ++msgstr "СлОке О прОлПзО" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:181 ++msgid "There is a button in the editor toolbar for inserting images that are already hosted somewhere on the internet. If you have a URL for an image, click this button and enter the URL in the box which appears." ++msgstr "ППстПјО ЎугЌе Ма уређОвачкПј лОМОјО за уЌетање слОка кПје су пПстављеМе МегЎе Ма ИМтерМету. УкПлОкП ОЌате URL слОке, прОтОсМОте ПвП ЎугЌе О уМесОте URL у кутОјО кПја ће се пПјавОтО." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:182 ++msgid "If you need to upload an image or another media file from your computer, you can use the Media Library buttons above the editor. The media library will attempt to create a thumbnail-sized copy from each uploaded image. To insert your image into the post, first click on the thumbnail to reveal a menu of options. When you have selected the options you like, click \"Send to Editor\" and your image or file will appear in the post you are editing. If you are inserting a movie, there are additional options in the \"Media\" dialog that can be opened from the second toolbar row." ++msgstr "УкПлОкП је пПтребМП Ўа пПшаљете слОку ОлО Ўругу ЎатПтеку саЎржаја са вашег рачуМара, ЌПжете кПрОстОтО ЎугЌаЎ БОблОПтеке саЎржаја ОзМаЎ уређОвача. БОблОПтека саЎржаја ће пПкушатО Ўа МаправО уЌањеМу слОку ПЎ сваке пПслате слОке. Да бОсте уЌетМулО вашу пПслату слОку у члаМак, првП прОтОсМОте Ма уЌањеМу слОку Ўа бОсте ЎПбОлО ОзбПрМОк са ЌПгућМПстОЌа. КаЎа сте ОзабралО ЌПгућМПстО кПје желОте, прОтОсМОте \"ППшаљО уређОвачу\" О слОка ОлО ЎатПтека ће се пПјавОтО у члаМку кПјО уређујете. УкПлОкП уЌетате вОЎеП запОс, пПстПје ЎПЎатМе ЌПгућМПстО у ЎОјалПгу \"СаЎржај\" кПје ЌПгу бОтО ПтвПреМе Оз ЎругПг реЎа лОМеје са алаткаЌа." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:183 ++msgid "HTML in the Rich Editor" ++msgstr "HTML у БПгатПЌ уређОвачу" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:184 ++msgid "Any HTML entered directly into the rich editor will show up as text when the post is viewed. What you see is what you get. When you want to include HTML elements that cannot be generated with the toolbar buttons, you must enter it by hand in the HTML editor. Examples are tables and <code>. To do this, click the HTML tab and edit the code, then switch back to Visual mode. If the code is valid and understood by the editor, you should see it rendered immediately." ++msgstr "БОлП кПјО HTML кПјО уМесете ЎОректМП у бПгатО уређОвач ће се пПјавОтО каП текст каЎа се члаМак глеЎа. Кта вОЎОш тП О ЎПбОјеш. КаЎа желОте Ўа укључОте HTML ЎелПве кПјО Ме ЌПгу бОтО МаправљеМО пПЌПћу ЎугЌаЎО са лОМОје са алаткаЌа, ЌПрате га уМетО ручМП у HTML уређОвачу. ПрОЌерО су табеле О <code>. Да бОсте ПвП ураЎОлО, прОтОсМОте HTML ЎугЌе О уреЎОте кÎЎ, затОЌ се вратОте Ма режОЌ ВОЎљОвП. УкПлОкП је кÎЎ правОлаМ О разуЌљОв уређОвачу, ЌПжете га вОЎетО ПЎЌах." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:185 ++msgid "Pasting in the Rich Editor" ++msgstr "Лепљење у БПгатПЌ уређОвачу" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:186 ++msgid "When pasting content from another web page the results can be inconsistent and depend on your browser and on the web page you are pasting from. The editor tries to correct any invalid HTML code that was pasted, but for best results try using the HTML tab or one of the paste buttons that are on the second row. Alternatively try pasting paragraph by paragraph. In most browsers to select one paragraph at a time, triple-click on it." ++msgstr "КаЎа се лепО текстуалМО саЎржај са Ўруге веб страМОце резултат ЌПже бОтО МеЎПслеЎаМ О завОсаМ ПЎ вашег веб преглеЎача О страМОце са Пје лепОте. УређОвач пПкушава Ўа ОсправО бОлП кПјО МеОсправаМ HTML кÎЎ кПјО је МалепљеМ, алО за МајбПље резултате пПкушајте Ўа кПрОстОте HTML језОчак ОлО јеЎМП ПЎ ЎугЌаЎО за лепљење кПјО се Малазе у ЎругПЌ реЎу. РезервМП, пПкушајте Ўа лепОте пасус пП пасус. У већОМО веб преглеЎача за бОрање јеЎМПг пасуса, прОтОсМОте трО пута Ма њега." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:187 ++msgid "Pasting content from another application, like Word or Excel, is best done with the Paste from Word button on the second row, or in HTML mode." ++msgstr "Лепљење текстуалМПг саЎржаја Оз ЎругПг прПграЌа, каП штП је ВПрЎ (Word) ОлО Ексцел (Excel), се МајбПље раЎО са ЎугЌетПЌ НалепО Оз прПграЌа ВПрЎ Оз ЎругПг реЎа, ОлО у HTML режОЌу." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:191 ++msgid "Writing at Full Speed" ++msgstr "ПОсање пуМПЌ брзОМПЌ" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:192 ++msgid "Rather than reaching for your mouse to click on the toolbar, use these access keys. Windows and Linux use Ctrl + letter. Macintosh uses Command + letter." ++msgstr "БПље МегП Ўа пПЌерате руку ЎП ЌОша Ўа прОтОсМете ЎугЌе Ма лОМОјО са алаткаЌа, кПрОстОте ЎугЌаЎ за прОступ. ВОМЎПуз О ЛОМукс кПрОсте Ctrl + слПвП. МекОМтПш (Macintosh) кПрОстО Command + слПвП." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:194 ++#: wp-includes/js/tinymce/wp-mce-help.php:210 ++msgid "Letter" ++msgstr "СлПвП" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:196 ++msgid "Select all" ++msgstr "ИзаберО све" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:201 ++msgid "Header 1" ++msgstr "Заглавље 1" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:202 ++msgid "Header 2" ++msgstr "Заглавље 2" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:202 ++msgid "Header 3" ++msgstr "Заглавље 3" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:203 ++msgid "Header 4" ++msgstr "Заглавље 4" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:203 ++msgid "Header 5" ++msgstr "Заглавље 5" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:204 ++msgid "Header 6" ++msgstr "Заглавље 6" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:208 ++msgid "The following shortcuts use different access keys: Alt + Shift + letter." ++msgstr "СлеЎеће пречОце кПрОсте разлОтОту ЎугЌаЎ за прОступ: Alt + Shift + слПвП." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:215 ++msgid "Check Spelling" ++msgstr "ПрПверО правПпОс" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:215 ++msgid "Align Left" ++msgstr "УравМатП левП" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:216 ++msgid "Justify Text" ++msgstr "ППравМај текст" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:216 ++msgid "Align Center" ++msgstr "ЊеМтрОраМП" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:217 ++msgid "Align Right" ++msgstr "УравМатП ЎесМП" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:218 ++msgid "Insert link" ++msgstr "УЌетМутО везу" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:219 ++msgid "Remove link" ++msgstr "УклПМОтО везу" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:220 ++msgid "Quote" ++msgstr "ЊОтат" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:220 ++msgid "Insert Image" ++msgstr "УбацО слОку" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:221 ++msgid "Full Screen" ++msgstr "ПрекП целПг екраМа" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:221 ++msgid "Insert More Tag" ++msgstr "УбацО ПзМаку ВОше" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:222 ++msgid "Insert Page Break tag" ++msgstr "УЌетМО ПзМаку за прелПЌ страМОце" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:223 ++msgid "Switch to HTML mode" ++msgstr "ПребацО Ма HTML режОЌ." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:230 ++msgid "Version:" ++msgstr "ИзЎање:" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:231 ++#, php-format ++msgid "TinyMCE is a platform independent web based Javascript HTML WYSIWYG editor control released as Open Source under %sLGPL\tby Moxiecode Systems AB. It has the ability to convert HTML TEXTAREA fields or other HTML elements to editor instances." ++msgstr "TinyMCE је HTML WYSIWYG кПМтрПла уређОвача, веб базОраМа, пОсаМа у ЈаваскрОпту, МезавОсМа ПЎ платфПрЌе, кПју је каП сПфтвер ПтвПреМПг кÎЎа пПЎ %sГМОЈЛ\tлОцеМцПЌ ОзЎаП Moxiecode Systems AB. ОМа ОЌа ЌПгућМПст Ўа претвПрО HTML TEXTAREA пПља ОлО Ўруге HTML елеЌеМте у ОстаМце уређОвача." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:231 ++msgid "GNU Library General Public Licence" ++msgstr "ГНУ-Пв Мања Ппшта јавМа лОцеМца" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:232 ++msgid "Copyright © 2003-2007, Moxiecode Systems AB, All rights reserved." ++msgstr "АутПрска права © 2003-2007, Moxiecode Systems AB, сва права заЎржаМа." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:233 ++msgid "For more information about this software visit the TinyMCE website." ++msgstr "За вОше ОМфПрЌацОја П ПвПЌ сПфтверу пПсетОте ЌрежМП ЌестП TinyMCE-а." ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:236 ++msgid "Got Moxie?" ++msgstr "Got Moxie?" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:237 ++msgid "Hosted By Sourceforge" ++msgstr "ДПЌаћОМ - КПвМОца ОзвПра (Sourceforge)" ++ ++#: wp-includes/js/tinymce/wp-mce-help.php:238 ++msgid "Also on freshmeat" ++msgstr "ТакПђе О Ма freshmeat-у" ++ ++#: wp-includes/link-template.php:317 ++msgid "Comments Feed" ++msgstr "ИзвПр кПЌеМтара" ++ ++#: wp-includes/link-template.php:593 ++msgid "Previous Post" ++msgstr "ПретхПЎМО члаМак" ++ ++#: wp-includes/link-template.php:593 ++msgid "Next Post" ++msgstr "СлеЎећО члаМак" ++ ++#: wp-includes/locale.php:120 ++msgid "S_Sunday_initial" ++msgstr "Н" ++ ++#: wp-includes/locale.php:121 ++msgid "M_Monday_initial" ++msgstr "П" ++ ++#: wp-includes/locale.php:122 ++msgid "T_Tuesday_initial" ++msgstr "У" ++ ++#: wp-includes/locale.php:123 ++msgid "W_Wednesday_initial" ++msgstr "С" ++ ++#: wp-includes/locale.php:124 ++msgid "T_Thursday_initial" ++msgstr "Ч" ++ ++#: wp-includes/locale.php:125 ++msgid "F_Friday_initial" ++msgstr "П" ++ ++#: wp-includes/locale.php:126 ++msgid "S_Saturday_initial" ++msgstr "С" ++ ++#: wp-includes/locale.php:175 ++msgid "am" ++msgstr "am" ++ ++#: wp-includes/locale.php:176 ++msgid "pm" ++msgstr "pm" ++ ++#: wp-includes/locale.php:177 ++msgid "AM" ++msgstr "AM" ++ ++#: wp-includes/locale.php:178 ++msgid "PM" ++msgstr "PM" ++ ++#: wp-includes/locale.php:183 ++msgid "number_format_decimals|$decimals argument for http://php.net/number_format, default is 0" ++msgstr "" ++ ++#: wp-includes/locale.php:186 ++msgid "number_format_decimal_point|$dec_point argument for http://php.net/number_format, default is ." ++msgstr "" ++ ++#: wp-includes/locale.php:189 ++msgid "number_format_thousands_sep|$thousands_sep argument for http://php.net/number_format, default is ," ++msgstr "" ++ ++#: wp-includes/media.php:217 ++#: wp-includes/media.php:221 ++#: wp-includes/media.php:227 ++msgid "Resize path invalid" ++msgstr "НеОсправМа путања уЌањеМе слОке" ++ ++#: wp-includes/pluggable.php:416 ++#: wp-includes/user.php:39 ++msgid "ERROR: The username field is empty." ++msgstr "Грешка: ППље за лПзОМку је празМП." ++ ++#: wp-includes/pluggable.php:419 ++#: wp-includes/user.php:41 ++msgid "ERROR: The password field is empty." ++msgstr "Грешка: ППље за лПзОМку је празМП." ++ ++#: wp-includes/pluggable.php:425 ++msgid "ERROR: Invalid username." ++msgstr "ГРЕККА: ППгрешМП кПрОсМОчкП ОЌе." ++ ++#: wp-includes/pluggable.php:436 ++msgid "ERROR: Incorrect password." ++msgstr "Грешка: ППгрешМа лПзОМка." ++ ++#: wp-includes/pluggable.php:784 ++#, php-format ++msgid "New comment on your post #%1$s \"%2$s\"" ++msgstr "НПвО кПЌеМтар Ма ваш члаМак #%1$s \"%2$s\"" ++ ++#: wp-includes/pluggable.php:785 ++#: wp-includes/pluggable.php:880 ++#, php-format ++msgid "Author : %1$s (IP: %2$s , %3$s)" ++msgstr "АутПр : %1$s (IP: %2$s , %3$s)" ++ ++#: wp-includes/pluggable.php:786 ++#: wp-includes/pluggable.php:881 ++#, php-format ++msgid "E-mail : %s" ++msgstr "Е-пПшта : %s" ++ ++#: wp-includes/pluggable.php:787 ++#: wp-includes/pluggable.php:795 ++#: wp-includes/pluggable.php:802 ++#: wp-includes/pluggable.php:867 ++#: wp-includes/pluggable.php:874 ++#: wp-includes/pluggable.php:882 ++#, php-format ++msgid "URL : %s" ++msgstr "УРИ : %s" ++ ++#: wp-includes/pluggable.php:788 ++#: wp-includes/pluggable.php:883 ++#, php-format ++msgid "Whois : http://ws.arin.net/cgi-bin/whois.pl?queryinput=%s" ++msgstr "Whois упОт : http://ws.arin.net/cgi-bin/whois.pl?queryinput=%s" ++ ++#: wp-includes/pluggable.php:789 ++#: wp-includes/pluggable.php:884 ++msgid "Comment: " ++msgstr "КПЌеМтар:" ++ ++#: wp-includes/pluggable.php:790 ++msgid "You can see all comments on this post here: " ++msgstr "Све кПЌеМтаре Ма Пвај члаМак ЌПжете вОЎетО ПвЎе:" ++ ++#: wp-includes/pluggable.php:791 ++#, php-format ++msgid "[%1$s] Comment: \"%2$s\"" ++msgstr "[%1$s] КПЌеМтар: \"%2$s\"" ++ ++#: wp-includes/pluggable.php:793 ++#, php-format ++msgid "New trackback on your post #%1$s \"%2$s\"" ++msgstr "НПва пПвратМа веза Ма ваш члаМак #%1$s \"%2$s\"" ++ ++#: wp-includes/pluggable.php:794 ++#: wp-includes/pluggable.php:801 ++#, php-format ++msgid "Website: %1$s (IP: %2$s , %3$s)" ++msgstr "МрежМП ЌестП: %1$s (IP: %2$s , %3$s)" ++ ++#: wp-includes/pluggable.php:796 ++#: wp-includes/pluggable.php:803 ++msgid "Excerpt: " ++msgstr "ОЎлПЌак:" ++ ++#: wp-includes/pluggable.php:797 ++msgid "You can see all trackbacks on this post here: " ++msgstr "ОвЎе ЌПжете вОЎетО све пПвратМе везе Ма Пвај члаМак:" ++ ++#: wp-includes/pluggable.php:798 ++#, php-format ++msgid "[%1$s] Trackback: \"%2$s\"" ++msgstr "[%1$s] ППвратМа веза: \"%2$s\"" ++ ++#: wp-includes/pluggable.php:800 ++#, php-format ++msgid "New pingback on your post #%1$s \"%2$s\"" ++msgstr "НПвО пПвратМО пОМг Ма ваш члаМак #%1$s \"%2$s\"" ++ ++#: wp-includes/pluggable.php:804 ++msgid "You can see all pingbacks on this post here: " ++msgstr "ОвЎе ЌПжете вОЎетО све пПвратМе пОМгПве Ма Пвај члаМак:" ++ ++#: wp-includes/pluggable.php:805 ++#, php-format ++msgid "[%1$s] Pingback: \"%2$s\"" ++msgstr "[%1$s] ППвратМО пОМг: \"%2$s\"" ++ ++#: wp-includes/pluggable.php:808 ++#: wp-includes/pluggable.php:889 ++#, php-format ++msgid "Delete it: %s" ++msgstr "ОбрОшО: %s" ++ ++#: wp-includes/pluggable.php:809 ++#: wp-includes/pluggable.php:890 ++#, php-format ++msgid "Spam it: %s" ++msgstr "ОбележО каП МежељеМ: %s" ++ ++#: wp-includes/pluggable.php:864 ++#, php-format ++msgid "A new trackback on the post #%1$s \"%2$s\" is waiting for your approval" ++msgstr "НПва пПвратМа веза Ма члаМак #%1$s \"%2$s\" чека Ма ваше ПЎПбрење" ++ ++#: wp-includes/pluggable.php:866 ++#: wp-includes/pluggable.php:873 ++#, php-format ++msgid "Website : %1$s (IP: %2$s , %3$s)" ++msgstr "МрежМП ЌестП: %1$s (IP: %2$s , %3$s)" ++ ++#: wp-includes/pluggable.php:868 ++msgid "Trackback excerpt: " ++msgstr "Исечак пПвратМе везе:" ++ ++#: wp-includes/pluggable.php:871 ++#, php-format ++msgid "A new pingback on the post #%1$s \"%2$s\" is waiting for your approval" ++msgstr "НПвО пОМг Ма члаМак #%1$s \"%2$s\" чека Ма ваше ПЎПбрење" ++ ++#: wp-includes/pluggable.php:875 ++msgid "Pingback excerpt: " ++msgstr "Исечак пОМга:" ++ ++#: wp-includes/pluggable.php:878 ++#, php-format ++msgid "A new comment on the post #%1$s \"%2$s\" is waiting for your approval" ++msgstr "НПвО кПЌеМтар Ма члаМак #%1$s \"%2$s\" чека Ма ваше ПЎПбрење" ++ ++#: wp-includes/pluggable.php:888 ++#, php-format ++msgid "Approve it: %s" ++msgstr "ОЎПбрО: %s" ++ ++#: wp-includes/pluggable.php:893 ++#, php-format ++msgid "Currently %s are waiting for approval. Please visit the moderation panel:" ++msgstr "ТреМутМП %s чека Ма ПЎПбрење. МПлОЌП пПсетОте паМел за уређОвање:" ++ ++#: wp-includes/pluggable.php:896 ++#, php-format ++msgid "[%1$s] Please moderate: \"%2$s\"" ++msgstr "[%1$s] МПлОЌП уреЎОте: \"%2$s\"" ++ ++#: wp-includes/pluggable.php:923 ++#, php-format ++msgid "New user registration on your blog %s:" ++msgstr "НПвО кПрОсМОк регОстрПваМ Ма вашеЌ блПгу %s:" ++ ++#: wp-includes/pluggable.php:924 ++#: wp-includes/pluggable.php:932 ++#: wp-login.php:103 ++#: wp-login.php:130 ++#, php-format ++msgid "Username: %s" ++msgstr "КПрОсМОчкП ОЌе: %s" ++ ++#: wp-includes/pluggable.php:925 ++#, php-format ++msgid "E-mail: %s" ++msgstr "Е-пПшта: %s" ++ ++#: wp-includes/pluggable.php:927 ++#, php-format ++msgid "[%s] New User Registration" ++msgstr "[%s] РегОстрацОја МПвПг кПрОсМОка" ++ ++#: wp-includes/pluggable.php:933 ++#: wp-login.php:131 ++#, php-format ++msgid "Password: %s" ++msgstr "ЛПзОМка: %s" ++ ++#: wp-includes/pluggable.php:936 ++#, php-format ++msgid "[%s] Your username and password" ++msgstr "[%s] Ваше кПрОсМОчкП ОЌе О лПзОМка..." ++ ++#: wp-includes/post-template.php:60 ++#, php-format ++msgid "Protected: %s" ++msgstr "ЗаштОћеМП: %s" ++ ++#: wp-includes/post-template.php:62 ++#, php-format ++msgid "Private: %s" ++msgstr "ПрОватМП: %s" ++ ++#: wp-includes/post-template.php:147 ++msgid "There is no excerpt because this is a protected post." ++msgstr "НеЌа Осечка јер је ПвП заштОћеМ члаМак." ++ ++#: wp-includes/post-template.php:163 ++msgid "Next page" ++msgstr "СлеЎећа страМа" ++ ++#: wp-includes/post-template.php:164 ++msgid "Previous page" ++msgstr "ПретхПЎМа страМа" ++ ++#: wp-includes/post-template.php:379 ++#: wp-includes/post-template.php:400 ++msgid "Missing Attachment" ++msgstr "НеЎПстаје прОлПг" ++ ++#: wp-includes/post-template.php:526 ++msgid "This post is password protected. To view it please enter your password below:" ++msgstr "ЧлаМак је заштОћеМ лПзОМкПЌ. Да бО сте га вОЎелО, ЌПлОЌП уМесОте је:" ++ ++#: wp-includes/rss.php:856 ++msgid "An error has occurred, which probably means the feed is down. Try again later." ++msgstr "ДесОла се грешка штП верПватМП зМачО Ўа је RSS ОзвПр МеактОваМ. ППкушајте пПМПвП касМОје." ++ ++#: wp-includes/script-loader.php:19 ++msgid "(Quick Links)" ++msgstr "(Брзе везе)" ++ ++#: wp-includes/script-loader.php:20 ++msgid "Enter a word to look up:" ++msgstr "УМесОте реч за прПверу:" ++ ++#: wp-includes/script-loader.php:21 ++msgid "Dictionary lookup" ++msgstr "ПрПвера у речМОку" ++ ++#: wp-includes/script-loader.php:22 ++msgid "lookup" ++msgstr "прПвера" ++ ++#: wp-includes/script-loader.php:23 ++msgid "Close all open tags" ++msgstr "ЗатвПрО све ПтвПреМе ПзМаке" ++ ++#: wp-includes/script-loader.php:24 ++msgid "close tags" ++msgstr "затвПрО ПзМаке" ++ ++#: wp-includes/script-loader.php:25 ++msgid "Enter the URL" ++msgstr "УМесО URL" ++ ++#: wp-includes/script-loader.php:26 ++msgid "Enter the URL of the image" ++msgstr "УМесО URL слОке" ++ ++#: wp-includes/script-loader.php:27 ++msgid "Enter a description of the image" ++msgstr "УМесО ПпОс слОке" ++ ++#: wp-includes/script-loader.php:46 ++#: wp-includes/script-loader.php:55 ++msgid "You do not have permission to do that." ++msgstr "НеЌате права Ўа тП Ўа ураЎОте." ++ ++#: wp-includes/script-loader.php:47 ++msgid "An unidentified error has occurred." ++msgstr "НепрепПзМата грешка се ЎПгПЎОла." ++ ++#: wp-includes/script-loader.php:56 ++msgid "Something strange happened. Try refreshing the page." ++msgstr "НештП се чуЎМП ЎесОлП. ППкушајте Ўа ПсвежОте страМОцу." ++ ++#: wp-includes/script-loader.php:57 ++msgid "Slow down, I'm still sending your data!" ++msgstr "УспПрОте, јПш увек шаљеЌ ваше пПЎатке!" ++ ++#: wp-includes/script-loader.php:93 ++msgid "You have attempted to queue too many files." ++msgstr "ППкушалО сте Ўа ставОте превОше ЎатПтека у реЎ за чекање." ++ ++#: wp-includes/script-loader.php:94 ++#, php-format ++msgid "This file is too big. Your php.ini upload_max_filesize is %s." ++msgstr "Ова ЎатПтека је превелОка. У вашПј ЎатПтецО php.ini upload_max_filesize (Мајвећа ЎПзвПљеМа велОчОМа за слање) је %s." ++ ++#: wp-includes/script-loader.php:95 ++msgid "This file is empty. Please try another." ++msgstr "Ова ЎатПтека је празМа. МПлОЌП вас пПкушајте Меку Ўругу." ++ ++#: wp-includes/script-loader.php:96 ++msgid "This file type is not allowed. Please try another." ++msgstr "Ова врста ЎатПтеке МОје ЎПзвПљеМа. МПлОЌП вас пПкушајте Меку Ўругу." ++ ++#: wp-includes/script-loader.php:97 ++msgid "An error occurred in the upload. Please try again later." ++msgstr "ДесОла се грешка прОлОкПЌ слања ЎатПтеке. ППкушајте касМОје пПМПвП." ++ ++#: wp-includes/script-loader.php:98 ++msgid "There was a configuration error. Please contact the server administrator." ++msgstr "ДесОла се грешка пПЎешавања. МПлОЌП вас Ўа кПМтактОрате аЎЌОМОстратПра сервера." ++ ++#: wp-includes/script-loader.php:99 ++msgid "You may only upload 1 file." ++msgstr "МПжете пПслатО саЌП јеЎМу ЎатПтеку." ++ ++#: wp-includes/script-loader.php:100 ++msgid "HTTP error." ++msgstr "HTTP грешка." ++ ++#: wp-includes/script-loader.php:101 ++msgid "Upload failed." ++msgstr "Слање ЎатПтеке МОје успелП." ++ ++#: wp-includes/script-loader.php:102 ++msgid "IO error." ++msgstr "IO грешка." ++ ++#: wp-includes/script-loader.php:103 ++msgid "Security error." ++msgstr "БезбеЎПМПсМа грешка." ++ ++#: wp-includes/script-loader.php:104 ++msgid "File cancelled." ++msgstr "ОЎустатП ПЎ ЎатПтеке." ++ ++#: wp-includes/script-loader.php:105 ++msgid "Upload stopped." ++msgstr "Слање ЎатПтека заустављеМП." ++ ++#: wp-includes/script-loader.php:106 ++msgid "Dismiss" ++msgstr "ОЎбацОтО" ++ ++#: wp-includes/script-loader.php:107 ++msgid "Crunching…" ++msgstr "ОбраЎа…" ++ ++#: wp-includes/script-loader.php:108 ++msgid "Deleted" ++msgstr "ОбрОсаМП" ++ ++#: wp-includes/script-loader.php:117 ++msgid "Separate multiple categories with commas." ++msgstr "ОЎвПјОте вОше категПрОја зарезОЌа." ++ ++#: wp-includes/script-loader.php:125 ++msgid "Bad" ++msgstr "ЛПше" ++ ++#: wp-includes/script-loader.php:126 ++msgid "Good" ++msgstr "ДПбрП" ++ ++#: wp-includes/script-loader.php:127 ++msgid "Strong" ++msgstr "ЈакП" ++ ++#: wp-includes/script-loader.php:131 ++msgid "%i% pending" ++msgstr "%i% чека" ++ ++#: wp-includes/script-loader.php:149 ++msgid "Tags used on this post:" ++msgstr "ОзМаке кПрОшћеМе Ма ПвПЌ члаМку:" ++ ++#: wp-includes/script-loader.php:151 ++msgid "Add new tag" ++msgstr "ДПЎај МПву ПзМаку" ++ ++#: wp-includes/script-loader.php:152 ++msgid "Separate tags with commas" ++msgstr "ОЎвПјОте вОше ПзМака запетаЌа" ++ ++#: wp-includes/script-loader.php:169 ++msgid "Browse your files" ++msgstr "ПретражОте ваше ЎатПтеке" ++ ++#: wp-includes/script-loader.php:170 ++msgid "« Back" ++msgstr "« НазаЎ" ++ ++#: wp-includes/script-loader.php:171 ++msgid "Direct link to file" ++msgstr "ДОректМа веза ка ЎатПтецО" ++ ++#: wp-includes/script-loader.php:175 ++msgid "Icon" ++msgstr "ИкПМОца" ++ ++#: wp-includes/script-loader.php:177 ++msgid "Show:" ++msgstr "ПрОкажО:" ++ ++#: wp-includes/script-loader.php:178 ++msgid "Link to:" ++msgstr "Веза ка:" ++ ++#: wp-includes/script-loader.php:179 ++msgid "File" ++msgstr "ДатПтека" ++ ++#: wp-includes/script-loader.php:182 ++msgid "Send to editor »" ++msgstr "ППшаљО уреЎМОку »" ++ ++#: wp-includes/script-loader.php:186 ++msgid "Delete File" ++msgstr "ОбрОшО ЎатПтеку" ++ ++#: wp-includes/script-loader.php:187 ++msgid "Save »" ++msgstr "Сачувај »" ++ ++#: wp-includes/script-loader.php:188 ++msgid "" ++"Are you sure you want to delete the file '%title%'?\n" ++"Click ok to delete or cancel to go back." ++msgstr "" ++"Да лО сте сОгурМО Ўа желОте Ўа ОзбрОшете ЎатПтеку '%title%'?\n" ++"ПрОтОсМОте У реЎу за брОсање ОлО ОЎустаМО за пПвратак." ++ ++#: wp-includes/script-loader.php:501 ++msgid "Saving Draft…" ++msgstr "СМОЌаЌ Мацрт…" ++ ++#: wp-includes/taxonomy.php:224 ++#: wp-includes/taxonomy.php:290 ++#: wp-includes/taxonomy.php:404 ++#: wp-includes/taxonomy.php:543 ++#: wp-includes/taxonomy.php:1045 ++#: wp-includes/taxonomy.php:1262 ++msgid "Invalid Taxonomy" ++msgstr "НеправОлМа таксПМПЌОја" ++ ++#: wp-includes/taxonomy.php:1165 ++#: wp-includes/taxonomy.php:1416 ++msgid "Invalid taxonomy" ++msgstr "НеправОлМа таксПМПЌОја" ++ ++#: wp-includes/taxonomy.php:1168 ++msgid "Invalid term ID" ++msgstr "НеправОлаМ ID терЌОМа" ++ ++#: wp-includes/taxonomy.php:1199 ++#: wp-includes/taxonomy.php:1206 ++msgid "Could not insert term into the database" ++msgstr "НОје ЌПгуће уЌетМутО пПјав у базу пПЎатака." ++ ++#: wp-includes/taxonomy.php:1464 ++#, php-format ++msgid "The slug \"%s\" is already in use by another term" ++msgstr "ППЎлПжак \"%s\" се већ кПрОстО кПЎ ЎругПг пПјЌа" ++ ++#: wp-includes/theme.php:174 ++msgid "Stylesheet is missing." ++msgstr "НеЎПстају стОлПвО." ++ ++#: wp-includes/theme.php:188 ++msgid "File not readable." ++msgstr "ДатПтека МОје чОтљОва." ++ ++#: wp-includes/theme.php:229 ++msgid "Template is missing." ++msgstr "НеЎПстаје шаблПМ." ++ ++#: wp-includes/user.php:29 ++msgid "Please log in again." ++msgstr "МПлОЌП вас прОјавОте се пПМПвП." ++ ++#: wp-includes/widgets.php:24 ++#: wp-includes/widgets.php:52 ++#, php-format ++msgid "Sidebar %d" ++msgstr "БПчМа трака %d" ++ ++#: wp-includes/widgets.php:412 ++msgid "Sort by:" ++msgstr "УреЎО пП:" ++ ++#: wp-includes/widgets.php:414 ++msgid "Page title" ++msgstr "НаслПв страМе" ++ ++#: wp-includes/widgets.php:415 ++msgid "Page order" ++msgstr "ППреЎак страМа" ++ ++#: wp-includes/widgets.php:416 ++msgid "Page ID" ++msgstr "ID страМе" ++ ++#: wp-includes/widgets.php:421 ++msgid "Exclude:" ++msgstr "ИзузЌО:" ++ ++#: wp-includes/widgets.php:423 ++msgid "Page IDs, separated by commas." ++msgstr "ID-јевО страМа, разЎвПјеМО запетаЌа." ++ ++#: wp-includes/widgets.php:464 ++msgid "Select Month" ++msgstr "ИзаберО Ќесец" ++ ++#: wp-includes/widgets.php:494 ++#: wp-includes/widgets.php:792 ++msgid "Show post counts" ++msgstr "ППкажО брПј члаМака" ++ ++#: wp-includes/widgets.php:496 ++msgid "Display as a drop down" ++msgstr "ППкажО каП паЎајуће" ++ ++#: wp-includes/widgets.php:505 ++#: wp-includes/widgets.php:1375 ++#: wp-includes/widgets.php:1376 ++msgid "Meta" ++msgstr "Мета" ++ ++#: wp-includes/widgets.php:512 ++msgid "Syndicate this site using RSS 2.0" ++msgstr "ПреузОЌајте Пвај блПг кПрОстећО RSS 2.0" ++ ++#: wp-includes/widgets.php:512 ++msgid "Entries RSS" ++msgstr "RSS члаМака" ++ ++#: wp-includes/widgets.php:649 ++msgid "Arbitrary text or HTML" ++msgstr "ПрПОзвПљаМ текст ОлО HTML" ++ ++#: wp-includes/widgets.php:651 ++msgid "Text" ++msgstr "Текст" ++ ++#: wp-includes/widgets.php:694 ++msgid "Select Category" ++msgstr "ИзаберО категПрОју" ++ ++#: wp-includes/widgets.php:787 ++msgid "Show as dropdown" ++msgstr "ППкажО каП паЎајуће" ++ ++#: wp-includes/widgets.php:797 ++msgid "Show hierarchy" ++msgstr "ПрОкажО хОјерархОју" ++ ++#: wp-includes/widgets.php:812 ++msgid "A list or dropdown of categories" ++msgstr "СпОсак ОлО паЎајућО ОзбПрМОк категПрОја" ++ ++#: wp-includes/widgets.php:867 ++#: wp-includes/widgets.php:1382 ++#: wp-includes/widgets.php:1383 ++msgid "Recent Posts" ++msgstr "СкПрашњО члаМцО" ++ ++#: wp-includes/widgets.php:918 ++msgid "Number of posts to show:" ++msgstr "БрПј члаМака за прОказОвање:" ++ ++#: wp-includes/widgets.php:920 ++#: wp-includes/widgets.php:979 ++msgid "(at most 15)" ++msgstr "(МајвОше 15)" ++ ++#: wp-includes/widgets.php:948 ++#, php-format ++msgid "%1$s on %2$s" ++msgstr "%1$s Ма %2$s" ++ ++#: wp-includes/widgets.php:977 ++msgid "Number of comments to show:" ++msgstr "БрПј кПЌеМтара за прОказ:" ++ ++#: wp-includes/widgets.php:992 ++msgid "The most recent comments" ++msgstr "СкПрашњО кПЌеМтарО" ++ ++#: wp-includes/widgets.php:1035 ++msgid "Unknown Feed" ++msgstr "НепПзМат ОзвПр" ++ ++#: wp-includes/widgets.php:1041 ++msgid "Syndicate this content" ++msgstr "ПреузОЌајте Пвај саЎржај кПрОстећО RSS" ++ ++#: wp-includes/widgets.php:1083 ++msgid "Untitled" ++msgstr "Без МаслПва" ++ ++#: wp-includes/widgets.php:1133 ++msgid "An error has occurred; the feed is probably down. Try again later." ++msgstr "ДесОла се грешка; ОзвПр верПватМП МОје ЎПступаМ. ППкушајте касМОје." ++ ++#: wp-includes/widgets.php:1215 ++msgid "Enter the RSS feed URL here:" ++msgstr "УМесОте URL RSS ОзвПра ПвЎе:" ++ ++#: wp-includes/widgets.php:1221 ++msgid "Give the feed a title (optional):" ++msgstr "Дај ОзвПру МаслПв (МеПбавезМП):" ++ ++#: wp-includes/widgets.php:1227 ++msgid "How many items would you like to display?" ++msgstr "КПлОкП ставкО желОте Ўа прОкажете?" ++ ++#: wp-includes/widgets.php:1240 ++msgid "Display item content?" ++msgstr "ПрОкажО саЎржај ставке?" ++ ++#: wp-includes/widgets.php:1247 ++msgid "Display item author if available?" ++msgstr "ПрОкажО аутПра ставке укПлОкП је ЎПступМП?" ++ ++#: wp-includes/widgets.php:1254 ++msgid "Display item date?" ++msgstr "ПрОкажО ЎатуЌ ставке?" ++ ++#: wp-includes/widgets.php:1287 ++msgid "Error: could not find an RSS or ATOM feed at that URL." ++msgstr "Грешка: МОје ЌПгуће прПМаћО RSS ОлО ATOM ОзвПр Ма тПЌ URL-у." ++ ++#: wp-includes/widgets.php:1288 ++#, php-format ++msgid "Error in RSS %1$d" ++msgstr "Грешка у RSS-у %1$d0" ++ ++#: wp-includes/widgets.php:1302 ++msgid "Entries from any RSS or Atom feed" ++msgstr "ЗапОсО Оз бОлП кПг RSS ОлО Atom ОзвПра" ++ ++#: wp-includes/widgets.php:1359 ++msgid "Your blog's WordPress Pages" ++msgstr "ВПрЎпрес страМе вашег блПга" ++ ++#: wp-includes/widgets.php:1363 ++msgid "A calendar of your blog's posts" ++msgstr "КалеМЎар члаМака вашег блПга" ++ ++#: wp-includes/widgets.php:1367 ++msgid "A monthly archive of your blog's posts" ++msgstr "МесечМа архОва члаМака вашег блПга" ++ ++#: wp-includes/widgets.php:1371 ++msgid "Your blogroll" ++msgstr "Ваш блПгПвМОк" ++ ++#: wp-includes/widgets.php:1374 ++msgid "Log in/out, admin, feed and WordPress links" ++msgstr "ПрОјава/ПЎјава, аЎЌОМОстратПр, RSS ОзвПр О ВПрЎпрес везе" ++ ++#: wp-includes/widgets.php:1378 ++msgid "A search form for your blog" ++msgstr "ППље за претрагу вашег блПга" ++ ++#: wp-includes/widgets.php:1381 ++msgid "The most recent posts on your blog" ++msgstr "НајМПвОјО члаМцО вашег блПга" ++ ++#: wp-includes/widgets.php:1385 ++msgid "Your most used tags in cloud format" ++msgstr "Ваше МајкПрОшћеМОје ПзМаке у ПблОку Пблака" ++ ++#: wp-includes/widgets.php:1386 ++#: wp-includes/widgets.php:1387 ++msgid "Tag Cloud" ++msgstr "Облак ПзМака" ++ ++#: wp-includes/wp-db.php:532 ++#, php-format ++msgid "ERROR: WordPress %s requires MySQL 4.0.0 or higher" ++msgstr "ГРЕККА: ВПрЎпрес %s захтева MySQL 4.0.0 ОлО МПвОје" ++ ++#: wp-login.php:30 ++msgid "Powered by WordPress" ++msgstr "ППкреће ВПрЎпрес" ++ ++#: wp-login.php:65 ++msgid "ERROR: Enter a username or e-mail address." ++msgstr "ГРЕККА: УМесОте кПрОсМОчкП ОЌе ОлО аЎресу е-пПште." ++ ++#: wp-login.php:70 ++msgid "ERROR: There is no user registered with that email address." ++msgstr "ГРЕККА: НеЌа кПрОсМОка регОстрПваМОх са тПЌ аЎресПЌ е-пПште." ++ ++#: wp-login.php:82 ++msgid "ERROR: Invalid username or e-mail." ++msgstr "ГРЕККА: НеОсправМП кПрОсМОчкП ОЌе ОлО аЎреса е-пПште." ++ ++#: wp-login.php:101 ++msgid "Someone has asked to reset the password for the following site and username." ++msgstr "НекП је тражОП пПМОштење лПзОМке за слеЎеће ЌрежМП ЌестП О кПрОсМОчкП ОЌе." ++ ++#: wp-login.php:104 ++msgid "To reset your password visit the following address, otherwise just ignore this email and nothing will happen." ++msgstr "Да бО пПМОштОлО свПју лПзОМку, пПсетОте слеЎећу аЎресу; у супрПтМПЌ, ОгМПрОшОте Пву пПруку О МОшта се Меће ЎесОтО." ++ ++#: wp-login.php:107 ++#, php-format ++msgid "[%s] Password Reset" ++msgstr "[%s] ЛПзОМка пПМОштеМа" ++ ++#: wp-login.php:108 ++#: wp-login.php:135 ++msgid "The e-mail could not be sent." ++msgstr "Е-пОсЌП МОје ЌПглП бОтО пПслатП." ++ ++#: wp-login.php:108 ++#: wp-login.php:135 ++msgid "Possible reason: your host may have disabled the mail() function..." ++msgstr "МПгућО узрПк: верПватМП је Ма вашеЌ серверу ПМеЌПћеМа фуМкцОја mail() ..." ++ ++#: wp-login.php:119 ++#: wp-login.php:123 ++msgid "Invalid key" ++msgstr "НеОсправаМ кључ" ++ ++#: wp-login.php:134 ++#, php-format ++msgid "[%s] Your new password" ++msgstr "[%s] Ваша МПва лПзОМка" ++ ++#: wp-login.php:140 ++#, php-format ++msgid "Password Lost and Changed for user: %s" ++msgstr "ЛПзОМка ОзгубљеМа О прПЌењеМа за кПрОсМОка: %s" ++ ++#: wp-login.php:141 ++#, php-format ++msgid "[%s] Password Lost/Changed" ++msgstr "[%s] ЛПзОМка ОзгубљеМа/прПЌењеМа" ++ ++#: wp-login.php:157 ++msgid "ERROR: This username is invalid. Please enter a valid username." ++msgstr "ГРЕККА: КПрОсМОчкП ОЌе МОје ваљаМП. МПлОЌ уМесОте ваљаМП кПрОсМОчкП ОЌе." ++ ++#: wp-login.php:160 ++msgid "ERROR: This username is already registered, please choose another one." ++msgstr "ГРЕККА: ОвП кПрОсМОчкП ОЌе је већ регОстрПваМП, ЌПлОЌ ОзаберОте ЎругП." ++ ++#: wp-login.php:164 ++msgid "ERROR: Please type your e-mail address." ++msgstr "ГРЕККА: МПлОЌП уМесОте вашу аЎресу е-пПште." ++ ++#: wp-login.php:166 ++msgid "ERROR: The email address isn’t correct." ++msgstr "ГРЕККА: АЎреса е-пПште је МеОсправМа." ++ ++#: wp-login.php:169 ++msgid "ERROR: This email is already registered, please choose another one." ++msgstr "ГРЕККА: Ова аЎреса е-пПште је већ регОстрПваМа, ЌПлОЌП вас Ўа Озаберете Ўругу." ++ ++#: wp-login.php:181 ++#, php-format ++msgid "ERROR: Couldn’t register you... please contact the webmaster !" ++msgstr "ГРЕККА: Не ЌПжеЌП Ўа вас регОструјеЌП... ЌПлОЌП вац ступОте у кПМтакт са вебЌастерПЌ !" ++ ++#: wp-login.php:244 ++msgid "Sorry, that key does not appear to be valid." ++msgstr "ЖаП МаЌ је, чОМО се Ўа кључ МОје ваљаМ." ++ ++#: wp-login.php:247 ++msgid "Lost Password" ++msgstr "ИзгубљеМа лПзОМка" ++ ++#: wp-login.php:247 ++msgid "Please enter your username or e-mail address. You will receive a new password via e-mail." ++msgstr "МПлОЌ вас уМесетО ваше кПрОсМОчкП ОЌе ОлО аЎресу е-пПште. ПрОЌОћете МПву лПзОМку прекП е-пПште." ++ ++#: wp-login.php:252 ++msgid "Username or E-mail:" ++msgstr "КПрОсМОчкП ОЌе ОлО аЎреса е-пПште:" ++ ++#: wp-login.php:256 ++msgid "Get New Password" ++msgstr "ПрОЌО МПву лПзОМку" ++ ++#: wp-login.php:270 ++#: wp-login.php:335 ++#: wp-login.php:412 ++msgid "Are you lost?" ++msgstr "Јесте лО се ОзгубОлО?" ++ ++#: wp-login.php:270 ++#: wp-login.php:335 ++#: wp-login.php:412 ++#, php-format ++msgid "« Back to %s" ++msgstr "« НазаЎ Ма %s" ++ ++#: wp-login.php:311 ++msgid "Registration Form" ++msgstr "Образац за регОстрацОју" ++ ++#: wp-login.php:311 ++msgid "Register For This Site" ++msgstr "РегОструјте се прО ПвПЌ блПгу" ++ ++#: wp-login.php:324 ++msgid "A password will be e-mailed to you." ++msgstr "ЛПзОМка ће ваЌ бОтО пПслата." ++ ++#: wp-login.php:330 ++#: wp-login.php:404 ++#: wp-login.php:406 ++msgid "Password Lost and Found" ++msgstr "ЛПзОМка ОзгубљеМа О МађеМа" ++ ++#: wp-login.php:330 ++#: wp-login.php:404 ++#: wp-login.php:406 ++msgid "Lost your password?" ++msgstr "ИзгубОлО сте лПзОМку?" ++ ++#: wp-login.php:366 ++msgid "ERROR: Cookies are blocked or not supported by your browser. You must enable cookies to use WordPress." ++msgstr "ГРЕККА: „КПлачОћО“ (cookies) су ОскључеМО ОлО Ох ваш веб преглеЎач Ме пПЎржава. МПрате ПЌПгућОтО кПлачОће Ўа бОсте кПрОстОлО ВПрЎпрес." ++ ++#: wp-login.php:369 ++msgid "You are now logged out." ++msgstr "СаЎа сте ПЎјављеМО." ++ ++#: wp-login.php:370 ++msgid "User registration is currently not allowed." ++msgstr "РегОстрацОја кПрОсМОка треМутМП МОје ЎПзвПљеМа." ++ ++#: wp-login.php:371 ++msgid "Check your e-mail for the confirmation link." ++msgstr "ПрПверОте свПју пПшту за везу за пПтврЎу." ++ ++#: wp-login.php:372 ++msgid "Check your e-mail for your new password." ++msgstr "ПрПверОте свПју пПшту за МПву лПзОМку." ++ ++#: wp-login.php:373 ++msgid "Registration complete. Please check your e-mail." ++msgstr "РегОстрацОја успела. МПлОЌП вас Ўа прПверОте вашу е-пПшту." ++ ++#: wp-login.php:375 ++msgid "Login" ++msgstr "ПрОјава" ++ ++#: wp-login.php:389 ++msgid "Remember Me" ++msgstr "ЗапаЌтО Ќе" ++ ++#: xmlrpc.php:152 ++#: xmlrpc.php:690 ++#: xmlrpc.php:712 ++#: xmlrpc.php:734 ++msgid "Bad login/pass combination." ++msgstr "НеОспаваМ спПј кПрОсМОчкПг О лПзОМке." ++ ++#: xmlrpc.php:238 ++msgid "Sorry, you can not edit this page." ++msgstr "ЖаП МаЌ је, Ме ЌПжете Ўа Ќењате Пву страМу." ++ ++#: xmlrpc.php:305 ++#: xmlrpc.php:409 ++#: xmlrpc.php:452 ++msgid "Sorry, no such page." ++msgstr "ЖаП МаЌ је, МеЌа такве страМе." ++ ++#: xmlrpc.php:326 ++#: xmlrpc.php:496 ++msgid "Sorry, you can not edit pages." ++msgstr "ЖаП МаЌ је, Ме ЌПжете Ўа уређујете страМе." ++ ++#: xmlrpc.php:374 ++msgid "Sorry, you can not add new pages." ++msgstr "ЖаП МаЌ је, Ме ЌПжете ЎПЎаватО МПве страМе." ++ ++#: xmlrpc.php:415 ++msgid "Sorry, you do not have the right to delete this page." ++msgstr "ЖаП МаЌ је, МеЌате права Ўа ОзбрОшете Пву страМу." ++ ++#: xmlrpc.php:421 ++msgid "Failed to delete the page." ++msgstr "БрОсање Пве страМе МОје успелП." ++ ++#: xmlrpc.php:458 ++msgid "Sorry, you do not have the right to edit this page." ++msgstr "ЖаП МаЌ је, МеЌате права Ўа уређујете Пву страМу." ++ ++#: xmlrpc.php:546 ++msgid "Sorry, you can not edit posts on this blog." ++msgstr "ЖаП МаЌ је, Ме ЌПжете Ўа уређујете члаМке Ма ПвПЌ блПгу." ++ ++#: xmlrpc.php:585 ++msgid "Sorry, you do not have the right to add a category." ++msgstr "ЖаП МаЌ је, МеЌате ЎПвПљМП права Ўа ЎПЎате категПрОју." ++ ++#: xmlrpc.php:613 ++msgid "Sorry, the new category failed." ++msgstr "ЖаП МаЌ је, МОје успелП прављење МПве категПрОје." ++ ++#: xmlrpc.php:639 ++msgid "Sorry, you do not have the right to delete a category." ++msgstr "ЖаП МаЌ је, МеЌате права Ўа ПбрОшете категПрОју." ++ ++#: xmlrpc.php:665 ++msgid "Sorry, you must be able to edit posts to this blog in order to view categories." ++msgstr "ЖаП МаЌ је, ЌПрате бОтО у ЌПгућМПстО Ўа уређујете члаМке Ма ПвПЌ блПгу Ўа бОсте вОЎелО категПрОје." ++ ++#: xmlrpc.php:695 ++msgid "You are not allowed access to details about comments." ++msgstr "НОје ваЌ ЎПзвПљеМ прОступ ЎетаљОЌа П кПЌеМтарОЌа." ++ ++#: xmlrpc.php:717 ++#: xmlrpc.php:739 ++msgid "You are not allowed access to details about this blog." ++msgstr "НОје ваЌ ЎПзвПљеМ прОступ ЎетаљОЌа П ПвПЌ блПгу." ++ ++#: xmlrpc.php:795 ++msgid "Sorry, you do not have access to user data on this blog." ++msgstr "ЖаП МаЌ је, МеЌате прОступ кПрОсМОчкОЌ пПЎацОЌа Ма ПвПЌ блПгу." ++ ++#: xmlrpc.php:828 ++#: xmlrpc.php:1624 ++#: xmlrpc.php:2013 ++#: xmlrpc.php:2052 ++#: xmlrpc.php:2141 ++msgid "Sorry, you can not edit this post." ++msgstr "ЖаП МаЌ је, МОје ваЌ ЎПзвПљеМП Ўа Ќењате Пвај члаМак." ++ ++#: xmlrpc.php:872 ++#: xmlrpc.php:1714 ++#: xmlrpc.php:1932 ++msgid "Either there are no posts, or something went wrong." ++msgstr "ИлО Ме пПстПје члаМцО, ОлО се МештП ЎесОлП пПгрешМП." ++ ++#: xmlrpc.php:923 ++#: xmlrpc.php:960 ++msgid "Sorry, this user can not edit the template." ++msgstr "ЖаП МаЌ је, Пвај кПрОсМОк Ме ЌПже Ўа уређује шаблПМ." ++ ++#: xmlrpc.php:971 ++msgid "Either the file is not writable, or something wrong happened. The file has not been updated." ++msgstr "ИлО ЎатПтека МОје упОсОва ОлО се МештП ЎесОлП пПгрешМП. ДатПтека МОје ПсвежеМа." ++ ++#: xmlrpc.php:998 ++msgid "Sorry, you are not allowed to post on this blog." ++msgstr "НОје ваЌ ЎПзвПљеМП Ўа Пбјављујете у ПвПЌ блПгу." ++ ++#: xmlrpc.php:1047 ++#: xmlrpc.php:1096 ++#: xmlrpc.php:1690 ++#: xmlrpc.php:2098 ++msgid "Sorry, no such post." ++msgstr "ЖаП МаЌ је, МеЌа таквПг члаМка." ++ ++#: xmlrpc.php:1059 ++#: xmlrpc.php:1564 ++msgid "Sorry, you do not have the right to publish this post." ++msgstr "ЖаП МаЌ је, МеЌате права Ўа ПбјавОте Пвај члаМак." ++ ++#: xmlrpc.php:1136 ++#: xmlrpc.php:1385 ++msgid "Sorry, you are not allowed to publish posts on this blog." ++msgstr "ЖаП МаЌ је, МОје ваЌ ЎПзвПљеМП Ўа Пбјављујете члаМке у ПвПЌ блПгу." ++ ++#: xmlrpc.php:1141 ++#: xmlrpc.php:1390 ++msgid "Sorry, you are not allowed to publish pages on this blog." ++msgstr "ЖаП МаЌ је, МОје ваЌ ЎПзвПљеМП Ўа Пбјављујете страМе у ПвПЌ блПгу." ++ ++#: xmlrpc.php:1149 ++#: xmlrpc.php:1198 ++#: xmlrpc.php:1398 ++#: xmlrpc.php:1458 ++msgid "Invalid post type." ++msgstr "НеОсправМа врста члаМка." ++ ++#: xmlrpc.php:1189 ++msgid "You are not allowed to post as this user" ++msgstr "НОје ваЌ ЎПзвПљеМП Ўа Пбјављујете каП Пвај кПрОсМОк" ++ ++#: xmlrpc.php:1194 ++msgid "You are not allowed to create pages as this user" ++msgstr "НОје ваЌ ЎПзвПљеМП Ўа пПстављате страМе каП Пвај кПрОсМОк" ++ ++#: xmlrpc.php:1412 ++msgid "Invalid post id." ++msgstr "НеОсправаМ ID члаМка." ++ ++#: xmlrpc.php:1449 ++msgid "You are not allowed to change the post author as this user." ++msgstr "НОје ваЌ ЎПзвПљеМП Ўа Ќењате аутПра члаМка каП Пвај кПрОсМОк." ++ ++#: xmlrpc.php:1454 ++msgid "You are not allowed to change the page author as this user." ++msgstr "НОје ваЌ ЎПзвПљеМП Ўа Ќењате аутПра страМе каП Пвај кПрОсМОк." ++ ++#: xmlrpc.php:1562 ++msgid "Sorry, you do not have the right to publish this page." ++msgstr "ЖаП МаЌ је, МеЌате права Ўа ПбјавОте Пву страМу." ++ ++#: xmlrpc.php:1594 ++msgid "Sorry, your entry could not be edited. Something wrong happened." ++msgstr "ЖаП МаЌ је, ваш уМПс Ме ЌПже бОтО уређеМ. НештП се ЎесОлП пПгрешМП." ++ ++#: xmlrpc.php:1809 ++#: xmlrpc.php:1979 ++msgid "Sorry, you must be able to edit posts on this blog in order to view categories." ++msgstr "ЖаП МаЌ је, ЌПрате бОтО у ЌПгућМПстО Ўа уређујете члаМке Ма ПвПЌ блПгу Ўа бОсте вОЎелО категПрОје." ++ ++#: xmlrpc.php:1858 ++msgid "You are not allowed to upload files to this site." ++msgstr "НОје ваЌ ЎПзвПљеМП Ўа шаљете ЎатПтеке Ма ПвПЌ Ќесту." ++ ++#: xmlrpc.php:1885 ++#, php-format ++msgid "Could not write file %1$s (%2$s)" ++msgstr "НОсаЌ ЌПгаП Ўа сМОЌОЌ ЎатПтеку %1$s (%2$s)" ++ ++#: xmlrpc.php:2183 ++msgid "Is there no link to us?" ++msgstr "Да лО МеЌа везе преЌа МаЌа?" ++ ++#: xmlrpc.php:2223 ++#: xmlrpc.php:2233 ++#: xmlrpc.php:2240 ++#: xmlrpc.php:2342 ++msgid "The specified target URL cannot be used as a target. It either doesn't exist, or it is not a pingback-enabled resource." ++msgstr "ЊОљаМО URL Ме ЌПже бОтО кПрОшћеМ каП цОљ. ИлО Ме пПстПјО ОлО МОје ПЌПгућеМ пПвратМО пОМг." ++ ++#: xmlrpc.php:2236 ++msgid "The source URL and the target URL cannot both point to the same resource." ++msgstr "ИзвПрМО URL О цОљаМО URL Ме ЌПгу зајеЎМП Ўа пПказују Ма ОстО ОзвПр." ++ ++#: xmlrpc.php:2246 ++msgid "The pingback has already been registered." ++msgstr "ППвратМО пОМг је већ прОЌљеМ." ++ ++#: xmlrpc.php:2254 ++msgid "The source URL does not exist." ++msgstr "ИзвПрМО URL Ме пПстПјО." ++ ++#: xmlrpc.php:2266 ++msgid "We cannot find a title on that page." ++msgstr "Не ЌПжеЌП прПМаћО МаслПв Ма тПј страМО." ++ ++#: xmlrpc.php:2302 ++msgid "The source URL does not contain a link to the target URL, and so cannot be used as a source." ++msgstr "ИзвПрМО URL Ме саЎржО везу ка цОљаМПЌ URLу О каП такав Ме ЌПже бОтО кПрОшћеМ каП ОзвПр." ++ ++#: xmlrpc.php:2322 ++#, php-format ++msgid "Pingback from %1$s to %2$s registered. Keep the web talking! :-)" ++msgstr "ППвратМО пОМг ПЎ %1$s to %2$s је прОЌљеМ. НаставОте ЌрежМП ћаскање! :-)" ++ ++#: xmlrpc.php:2349 ++msgid "The specified target URL does not exist." ++msgstr "ЊОљаМО URL Ме пПстПјО." ++ ++#~ msgid "This feature requires iframe support." ++#~ msgstr "Ова ПсПбОМа захтева пПЎршку за iframe." ++#~ msgid "Draft (%s)|manage posts header" ++#~ msgstr "НацртО (%s)" ++#~ msgid "ignored %s" ++#~ msgstr "ПЎбачеМП %s" ++#~ msgid "Long Description" ++#~ msgstr "Дуг ПпОс" ++#~ msgid "Long description" ++#~ msgstr "Дугачак ПпОс" ++#~ msgid "Show Avatars with Rating" ++#~ msgstr "Не прОказуј аватаре са ПцеМПЌ" ++#~ msgid "G|rating" ++#~ msgstr "Г" ++#~ msgid "PG|Rating" ++#~ msgstr "ПГ" ++#~ msgid "R|Rating" ++#~ msgstr "Р" ++#~ msgid "X|Rating" ++#~ msgstr "Икс" ++#~ msgid "Crop to size" ++#~ msgstr "ИсецО ЎП велОчОМе" ++#~ msgid "All plugins reactivated." ++#~ msgstr "СвО ЎПЎацО су пПМПвП укључеМО." ++#~ msgid "" ++#~ "January,February,March,April,May,June,July,August,September,October," ++#~ "November,December|Comma separated list of the months. No spaces between " ++#~ "them." ++#~ msgstr "" ++#~ "ЈаМуар,Ѐебруар,Март,АпрОл,Мај,ЈуМ,Август,СептеЌбар,ОктПбар,НПвеЌбар," ++#~ "ДецеЌбар" ++#~ msgid "" ++#~ "Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec|Comma separated list of " ++#~ "the abbreviated names of the months. No spaces between them." ++#~ msgstr "ЈаМ,Ѐеб,Мар,Апр,Мај,ЈуМ,Јул,Авг,Сеп,Окт,НПв,Дец" ++#~ msgid "" ++#~ "Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday|Comma " ++#~ "separated list of the days of the week. No spaces between them." ++#~ msgstr "НеЎеља,ППМеЎељак,УтПрак,СреЎа,Четвртак,Петак,СубПта,НеЎеља" ++#~ msgid "" ++#~ "Sun,Mon,Tue,Wed,Thu,Fri,Sat,Sun|Comma separated list of the abbreviated " ++#~ "names for the days of the week. No spaces between them." ++#~ msgstr "НеЎ,ППМ,УтП,Сре,Чет,Пет,Суб,НеЎ" ++#~ msgid "Show/Hide Advanced Toolbar" ++#~ msgstr "ПрОкажО/СакрОј НапреЎМу ЛОМОју са алаткаЌа" ++ --- wordpress-2.5.1.orig/debian/patches/010_REQUEST.patch +++ wordpress-2.5.1/debian/patches/010_REQUEST.patch @@ -0,0 +1,48 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## Bad $_REQUEST usage patch.dpatch by +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: This patch introduces a workaround to avoid DoS and data loss because +## DP: of a bad $_REQUEST usage in wordpress + +@DPATCH@ + +diff -Nru wordpress-2.5.1/wp-admin/admin.php wordpress-2.5.1-new/wp-admin/admin.php +--- wordpress-2.5.1/wp-admin/admin.php 2008-03-12 01:12:34.000000000 +0100 ++++ wordpress-2.5.1-new/wp-admin/admin.php 2008-11-10 09:19:52.000000000 +0100 +@@ -19,6 +19,9 @@ + + update_category_cache(); + ++if (!check_malicious_cookies()) ++ die("Warning! Malicious cookies indentified. Please clean cookies for this host and retry.

    Wordpress will be unusable until you clean your cookies"); ++ + $posts_per_page = get_option('posts_per_page'); + $what_to_show = get_option('what_to_show'); + $date_format = get_option('date_format'); +diff -Nru wordpress-2.5.1/wp-admin/includes/admin.php wordpress-2.5.1-new/wp-admin/includes/admin.php +--- wordpress-2.5.1/wp-admin/includes/admin.php 2008-04-14 19:07:18.000000000 +0200 ++++ wordpress-2.5.1-new/wp-admin/includes/admin.php 2008-11-10 08:52:34.000000000 +0100 +@@ -1,5 +1,6 @@ + "", "action" => ""); ++ foreach ($_COOKIE as $name => $value) ++ foreach ($malicious as $dangerous => $dvalue) ++ if ($name == $dangerous) ++ $safe = false; ++ ++ return $safe; ++} ++?> --- wordpress-2.5.1.orig/debian/patches/006rss_language.patch +++ wordpress-2.5.1/debian/patches/006rss_language.patch @@ -0,0 +1,30 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## rss_language patch.dpatch by +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: This makes us able to change rss_language directly from the admin page. Thanks to Lionel Elie Mamane + +@DPATCH@ + +--- wordpress/wp-admin/options-reading.php 2008-05-05 23:26:51.000000000 +0200 ++++ wordpress/wp-admin/options-reading-new.php 2008-05-05 23:32:03.000000000 +0200 +@@ -51,6 +51,10 @@ + + + ++ ++ ++ ++ + + +


    +@@ -66,7 +70,7 @@ + +

    + +- ++ + +

    + --- wordpress-2.5.1.orig/debian/patches/001readme.patch +++ wordpress-2.5.1/debian/patches/001readme.patch @@ -0,0 +1,20 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 001readme.dpatch by +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Fixing reame file + +@DPATCH@ + +diff -Nru wordpress/readme.html wordpress-2.5.0/readme.html +--- wordpress/readme.html 2008-02-29 18:09:44.000000000 +0100 ++++ wordpress-2.5.0/readme.html 2008-04-14 14:08:58.000000000 +0200 +@@ -85,7 +85,7 @@ +

    WordPress has no multi-million dollar marketing campaign or celebrity sponsors, but we do have something even better—you. If you enjoy WordPress please consider telling a friend, setting it up for someone less knowledgable than yourself, or writing the author of a media article that overlooks us.

    + +

    Copyright

    +-

    WordPress is released under the GPL (see license.txt).

    ++

    WordPress is released under the GPL (see license.txt).

    + + + --- wordpress-2.5.1.orig/debian/patches/002js-library.patch +++ wordpress-2.5.1/debian/patches/002js-library.patch @@ -0,0 +1,12573 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 002js-library.dpatch by +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Deleteing non-needed libraries + +@DPATCH@ + +diff -Nru wordpress/wp-includes/js/prototype.js wordpress-2.5.0/wp-includes/js/prototype.js +--- wordpress/wp-includes/js/prototype.js 2007-12-28 20:17:21.000000000 +0100 ++++ wordpress-2.5.0/wp-includes/js/prototype.js 1970-01-01 01:00:00.000000000 +0100 +@@ -1,4184 +0,0 @@ +-/* Prototype JavaScript framework, version 1.6.0 +- * (c) 2005-2007 Sam Stephenson +- * +- * Prototype is freely distributable under the terms of an MIT-style license. +- * For details, see the Prototype web site: http://www.prototypejs.org/ +- * +- *--------------------------------------------------------------------------*/ +- +-var Prototype = { +- Version: '1.6.0', +- +- Browser: { +- IE: !!(window.attachEvent && !window.opera), +- Opera: !!window.opera, +- WebKit: navigator.userAgent.indexOf('AppleWebKit/') > -1, +- Gecko: navigator.userAgent.indexOf('Gecko') > -1 && navigator.userAgent.indexOf('KHTML') == -1, +- MobileSafari: !!navigator.userAgent.match(/Apple.*Mobile.*Safari/) +- }, +- +- BrowserFeatures: { +- XPath: !!document.evaluate, +- ElementExtensions: !!window.HTMLElement, +- SpecificElementExtensions: +- document.createElement('div').__proto__ && +- document.createElement('div').__proto__ !== +- document.createElement('form').__proto__ +- }, +- +- ScriptFragment: ']*>([\\S\\s]*?)<\/script>', +- JSONFilter: /^\/\*-secure-([\s\S]*)\*\/\s*$/, +- +- emptyFunction: function() { }, +- K: function(x) { return x } +-}; +- +-if (Prototype.Browser.MobileSafari) +- Prototype.BrowserFeatures.SpecificElementExtensions = false; +- +-if (Prototype.Browser.WebKit) +- Prototype.BrowserFeatures.XPath = false; +- +-/* Based on Alex Arnell's inheritance implementation. */ +-var Class = { +- create: function() { +- var parent = null, properties = $A(arguments); +- if (Object.isFunction(properties[0])) +- parent = properties.shift(); +- +- function klass() { +- this.initialize.apply(this, arguments); +- } +- +- Object.extend(klass, Class.Methods); +- klass.superclass = parent; +- klass.subclasses = []; +- +- if (parent) { +- var subclass = function() { }; +- subclass.prototype = parent.prototype; +- klass.prototype = new subclass; +- parent.subclasses.push(klass); +- } +- +- for (var i = 0; i < properties.length; i++) +- klass.addMethods(properties[i]); +- +- if (!klass.prototype.initialize) +- klass.prototype.initialize = Prototype.emptyFunction; +- +- klass.prototype.constructor = klass; +- +- return klass; +- } +-}; +- +-Class.Methods = { +- addMethods: function(source) { +- var ancestor = this.superclass && this.superclass.prototype; +- var properties = Object.keys(source); +- +- if (!Object.keys({ toString: true }).length) +- properties.push("toString", "valueOf"); +- +- for (var i = 0, length = properties.length; i < length; i++) { +- var property = properties[i], value = source[property]; +- if (ancestor && Object.isFunction(value) && +- value.argumentNames().first() == "$super") { +- var method = value, value = Object.extend((function(m) { +- return function() { return ancestor[m].apply(this, arguments) }; +- })(property).wrap(method), { +- valueOf: function() { return method }, +- toString: function() { return method.toString() } +- }); +- } +- this.prototype[property] = value; +- } +- +- return this; +- } +-}; +- +-var Abstract = { }; +- +-Object.extend = function(destination, source) { +- for (var property in source) +- destination[property] = source[property]; +- return destination; +-}; +- +-Object.extend(Object, { +- inspect: function(object) { +- try { +- if (object === undefined) return 'undefined'; +- if (object === null) return 'null'; +- return object.inspect ? object.inspect() : object.toString(); +- } catch (e) { +- if (e instanceof RangeError) return '...'; +- throw e; +- } +- }, +- +- toJSON: function(object) { +- var type = typeof object; +- switch (type) { +- case 'undefined': +- case 'function': +- case 'unknown': return; +- case 'boolean': return object.toString(); +- } +- +- if (object === null) return 'null'; +- if (object.toJSON) return object.toJSON(); +- if (Object.isElement(object)) return; +- +- var results = []; +- for (var property in object) { +- var value = Object.toJSON(object[property]); +- if (value !== undefined) +- results.push(property.toJSON() + ': ' + value); +- } +- +- return '{' + results.join(', ') + '}'; +- }, +- +- toQueryString: function(object) { +- return $H(object).toQueryString(); +- }, +- +- toHTML: function(object) { +- return object && object.toHTML ? object.toHTML() : String.interpret(object); +- }, +- +- keys: function(object) { +- var keys = []; +- for (var property in object) +- keys.push(property); +- return keys; +- }, +- +- values: function(object) { +- var values = []; +- for (var property in object) +- values.push(object[property]); +- return values; +- }, +- +- clone: function(object) { +- return Object.extend({ }, object); +- }, +- +- isElement: function(object) { +- return object && object.nodeType == 1; +- }, +- +- isArray: function(object) { +- return object && object.constructor === Array; +- }, +- +- isHash: function(object) { +- return object instanceof Hash; +- }, +- +- isFunction: function(object) { +- return typeof object == "function"; +- }, +- +- isString: function(object) { +- return typeof object == "string"; +- }, +- +- isNumber: function(object) { +- return typeof object == "number"; +- }, +- +- isUndefined: function(object) { +- return typeof object == "undefined"; +- } +-}); +- +-Object.extend(Function.prototype, { +- argumentNames: function() { +- var names = this.toString().match(/^[\s\(]*function[^(]*\((.*?)\)/)[1].split(",").invoke("strip"); +- return names.length == 1 && !names[0] ? [] : names; +- }, +- +- bind: function() { +- if (arguments.length < 2 && arguments[0] === undefined) return this; +- var __method = this, args = $A(arguments), object = args.shift(); +- return function() { +- return __method.apply(object, args.concat($A(arguments))); +- } +- }, +- +- bindAsEventListener: function() { +- var __method = this, args = $A(arguments), object = args.shift(); +- return function(event) { +- return __method.apply(object, [event || window.event].concat(args)); +- } +- }, +- +- curry: function() { +- if (!arguments.length) return this; +- var __method = this, args = $A(arguments); +- return function() { +- return __method.apply(this, args.concat($A(arguments))); +- } +- }, +- +- delay: function() { +- var __method = this, args = $A(arguments), timeout = args.shift() * 1000; +- return window.setTimeout(function() { +- return __method.apply(__method, args); +- }, timeout); +- }, +- +- wrap: function(wrapper) { +- var __method = this; +- return function() { +- return wrapper.apply(this, [__method.bind(this)].concat($A(arguments))); +- } +- }, +- +- methodize: function() { +- if (this._methodized) return this._methodized; +- var __method = this; +- return this._methodized = function() { +- return __method.apply(null, [this].concat($A(arguments))); +- }; +- } +-}); +- +-Function.prototype.defer = Function.prototype.delay.curry(0.01); +- +-Date.prototype.toJSON = function() { +- return '"' + this.getUTCFullYear() + '-' + +- (this.getUTCMonth() + 1).toPaddedString(2) + '-' + +- this.getUTCDate().toPaddedString(2) + 'T' + +- this.getUTCHours().toPaddedString(2) + ':' + +- this.getUTCMinutes().toPaddedString(2) + ':' + +- this.getUTCSeconds().toPaddedString(2) + 'Z"'; +-}; +- +-var Try = { +- these: function() { +- var returnValue; +- +- for (var i = 0, length = arguments.length; i < length; i++) { +- var lambda = arguments[i]; +- try { +- returnValue = lambda(); +- break; +- } catch (e) { } +- } +- +- return returnValue; +- } +-}; +- +-RegExp.prototype.match = RegExp.prototype.test; +- +-RegExp.escape = function(str) { +- return String(str).replace(/([.*+?^=!:${}()|[\]\/\\])/g, '\\$1'); +-}; +- +-/*--------------------------------------------------------------------------*/ +- +-var PeriodicalExecuter = Class.create({ +- initialize: function(callback, frequency) { +- this.callback = callback; +- this.frequency = frequency; +- this.currentlyExecuting = false; +- +- this.registerCallback(); +- }, +- +- registerCallback: function() { +- this.timer = setInterval(this.onTimerEvent.bind(this), this.frequency * 1000); +- }, +- +- execute: function() { +- this.callback(this); +- }, +- +- stop: function() { +- if (!this.timer) return; +- clearInterval(this.timer); +- this.timer = null; +- }, +- +- onTimerEvent: function() { +- if (!this.currentlyExecuting) { +- try { +- this.currentlyExecuting = true; +- this.execute(); +- } finally { +- this.currentlyExecuting = false; +- } +- } +- } +-}); +-Object.extend(String, { +- interpret: function(value) { +- return value == null ? '' : String(value); +- }, +- specialChar: { +- '\b': '\\b', +- '\t': '\\t', +- '\n': '\\n', +- '\f': '\\f', +- '\r': '\\r', +- '\\': '\\\\' +- } +-}); +- +-Object.extend(String.prototype, { +- gsub: function(pattern, replacement) { +- var result = '', source = this, match; +- replacement = arguments.callee.prepareReplacement(replacement); +- +- while (source.length > 0) { +- if (match = source.match(pattern)) { +- result += source.slice(0, match.index); +- result += String.interpret(replacement(match)); +- source = source.slice(match.index + match[0].length); +- } else { +- result += source, source = ''; +- } +- } +- return result; +- }, +- +- sub: function(pattern, replacement, count) { +- replacement = this.gsub.prepareReplacement(replacement); +- count = count === undefined ? 1 : count; +- +- return this.gsub(pattern, function(match) { +- if (--count < 0) return match[0]; +- return replacement(match); +- }); +- }, +- +- scan: function(pattern, iterator) { +- this.gsub(pattern, iterator); +- return String(this); +- }, +- +- truncate: function(length, truncation) { +- length = length || 30; +- truncation = truncation === undefined ? '...' : truncation; +- return this.length > length ? +- this.slice(0, length - truncation.length) + truncation : String(this); +- }, +- +- strip: function() { +- return this.replace(/^\s+/, '').replace(/\s+$/, ''); +- }, +- +- stripTags: function() { +- return this.replace(/<\/?[^>]+>/gi, ''); +- }, +- +- stripScripts: function() { +- return this.replace(new RegExp(Prototype.ScriptFragment, 'img'), ''); +- }, +- +- extractScripts: function() { +- var matchAll = new RegExp(Prototype.ScriptFragment, 'img'); +- var matchOne = new RegExp(Prototype.ScriptFragment, 'im'); +- return (this.match(matchAll) || []).map(function(scriptTag) { +- return (scriptTag.match(matchOne) || ['', ''])[1]; +- }); +- }, +- +- evalScripts: function() { +- return this.extractScripts().map(function(script) { return eval(script) }); +- }, +- +- escapeHTML: function() { +- var self = arguments.callee; +- self.text.data = this; +- return self.div.innerHTML; +- }, +- +- unescapeHTML: function() { +- var div = new Element('div'); +- div.innerHTML = this.stripTags(); +- return div.childNodes[0] ? (div.childNodes.length > 1 ? +- $A(div.childNodes).inject('', function(memo, node) { return memo+node.nodeValue }) : +- div.childNodes[0].nodeValue) : ''; +- }, +- +- toQueryParams: function(separator) { +- var match = this.strip().match(/([^?#]*)(#.*)?$/); +- if (!match) return { }; +- +- return match[1].split(separator || '&').inject({ }, function(hash, pair) { +- if ((pair = pair.split('='))[0]) { +- var key = decodeURIComponent(pair.shift()); +- var value = pair.length > 1 ? pair.join('=') : pair[0]; +- if (value != undefined) value = decodeURIComponent(value); +- +- if (key in hash) { +- if (!Object.isArray(hash[key])) hash[key] = [hash[key]]; +- hash[key].push(value); +- } +- else hash[key] = value; +- } +- return hash; +- }); +- }, +- +- toArray: function() { +- return this.split(''); +- }, +- +- succ: function() { +- return this.slice(0, this.length - 1) + +- String.fromCharCode(this.charCodeAt(this.length - 1) + 1); +- }, +- +- times: function(count) { +- return count < 1 ? '' : new Array(count + 1).join(this); +- }, +- +- camelize: function() { +- var parts = this.split('-'), len = parts.length; +- if (len == 1) return parts[0]; +- +- var camelized = this.charAt(0) == '-' +- ? parts[0].charAt(0).toUpperCase() + parts[0].substring(1) +- : parts[0]; +- +- for (var i = 1; i < len; i++) +- camelized += parts[i].charAt(0).toUpperCase() + parts[i].substring(1); +- +- return camelized; +- }, +- +- capitalize: function() { +- return this.charAt(0).toUpperCase() + this.substring(1).toLowerCase(); +- }, +- +- underscore: function() { +- return this.gsub(/::/, '/').gsub(/([A-Z]+)([A-Z][a-z])/,'#{1}_#{2}').gsub(/([a-z\d])([A-Z])/,'#{1}_#{2}').gsub(/-/,'_').toLowerCase(); +- }, +- +- dasherize: function() { +- return this.gsub(/_/,'-'); +- }, +- +- inspect: function(useDoubleQuotes) { +- var escapedString = this.gsub(/[\x00-\x1f\\]/, function(match) { +- var character = String.specialChar[match[0]]; +- return character ? character : '\\u00' + match[0].charCodeAt().toPaddedString(2, 16); +- }); +- if (useDoubleQuotes) return '"' + escapedString.replace(/"/g, '\\"') + '"'; +- return "'" + escapedString.replace(/'/g, '\\\'') + "'"; +- }, +- +- toJSON: function() { +- return this.inspect(true); +- }, +- +- unfilterJSON: function(filter) { +- return this.sub(filter || Prototype.JSONFilter, '#{1}'); +- }, +- +- isJSON: function() { +- var str = this.replace(/\\./g, '@').replace(/"[^"\\\n\r]*"/g, ''); +- return (/^[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t]*$/).test(str); +- }, +- +- evalJSON: function(sanitize) { +- var json = this.unfilterJSON(); +- try { +- if (!sanitize || json.isJSON()) return eval('(' + json + ')'); +- } catch (e) { } +- throw new SyntaxError('Badly formed JSON string: ' + this.inspect()); +- }, +- +- include: function(pattern) { +- return this.indexOf(pattern) > -1; +- }, +- +- startsWith: function(pattern) { +- return this.indexOf(pattern) === 0; +- }, +- +- endsWith: function(pattern) { +- var d = this.length - pattern.length; +- return d >= 0 && this.lastIndexOf(pattern) === d; +- }, +- +- empty: function() { +- return this == ''; +- }, +- +- blank: function() { +- return /^\s*$/.test(this); +- }, +- +- interpolate: function(object, pattern) { +- return new Template(this, pattern).evaluate(object); +- } +-}); +- +-if (Prototype.Browser.WebKit || Prototype.Browser.IE) Object.extend(String.prototype, { +- escapeHTML: function() { +- return this.replace(/&/g,'&').replace(//g,'>'); +- }, +- unescapeHTML: function() { +- return this.replace(/&/g,'&').replace(/</g,'<').replace(/>/g,'>'); +- } +-}); +- +-String.prototype.gsub.prepareReplacement = function(replacement) { +- if (Object.isFunction(replacement)) return replacement; +- var template = new Template(replacement); +- return function(match) { return template.evaluate(match) }; +-}; +- +-String.prototype.parseQuery = String.prototype.toQueryParams; +- +-Object.extend(String.prototype.escapeHTML, { +- div: document.createElement('div'), +- text: document.createTextNode('') +-}); +- +-with (String.prototype.escapeHTML) div.appendChild(text); +- +-var Template = Class.create({ +- initialize: function(template, pattern) { +- this.template = template.toString(); +- this.pattern = pattern || Template.Pattern; +- }, +- +- evaluate: function(object) { +- if (Object.isFunction(object.toTemplateReplacements)) +- object = object.toTemplateReplacements(); +- +- return this.template.gsub(this.pattern, function(match) { +- if (object == null) return ''; +- +- var before = match[1] || ''; +- if (before == '\\') return match[2]; +- +- var ctx = object, expr = match[3]; +- var pattern = /^([^.[]+|\[((?:.*?[^\\])?)\])(\.|\[|$)/, match = pattern.exec(expr); +- if (match == null) return before; +- +- while (match != null) { +- var comp = match[1].startsWith('[') ? match[2].gsub('\\\\]', ']') : match[1]; +- ctx = ctx[comp]; +- if (null == ctx || '' == match[3]) break; +- expr = expr.substring('[' == match[3] ? match[1].length : match[0].length); +- match = pattern.exec(expr); +- } +- +- return before + String.interpret(ctx); +- }.bind(this)); +- } +-}); +-Template.Pattern = /(^|.|\r|\n)(#\{(.*?)\})/; +- +-var $break = { }; +- +-var Enumerable = { +- each: function(iterator, context) { +- var index = 0; +- iterator = iterator.bind(context); +- try { +- this._each(function(value) { +- iterator(value, index++); +- }); +- } catch (e) { +- if (e != $break) throw e; +- } +- return this; +- }, +- +- eachSlice: function(number, iterator, context) { +- iterator = iterator ? iterator.bind(context) : Prototype.K; +- var index = -number, slices = [], array = this.toArray(); +- while ((index += number) < array.length) +- slices.push(array.slice(index, index+number)); +- return slices.collect(iterator, context); +- }, +- +- all: function(iterator, context) { +- iterator = iterator ? iterator.bind(context) : Prototype.K; +- var result = true; +- this.each(function(value, index) { +- result = result && !!iterator(value, index); +- if (!result) throw $break; +- }); +- return result; +- }, +- +- any: function(iterator, context) { +- iterator = iterator ? iterator.bind(context) : Prototype.K; +- var result = false; +- this.each(function(value, index) { +- if (result = !!iterator(value, index)) +- throw $break; +- }); +- return result; +- }, +- +- collect: function(iterator, context) { +- iterator = iterator ? iterator.bind(context) : Prototype.K; +- var results = []; +- this.each(function(value, index) { +- results.push(iterator(value, index)); +- }); +- return results; +- }, +- +- detect: function(iterator, context) { +- iterator = iterator.bind(context); +- var result; +- this.each(function(value, index) { +- if (iterator(value, index)) { +- result = value; +- throw $break; +- } +- }); +- return result; +- }, +- +- findAll: function(iterator, context) { +- iterator = iterator.bind(context); +- var results = []; +- this.each(function(value, index) { +- if (iterator(value, index)) +- results.push(value); +- }); +- return results; +- }, +- +- grep: function(filter, iterator, context) { +- iterator = iterator ? iterator.bind(context) : Prototype.K; +- var results = []; +- +- if (Object.isString(filter)) +- filter = new RegExp(filter); +- +- this.each(function(value, index) { +- if (filter.match(value)) +- results.push(iterator(value, index)); +- }); +- return results; +- }, +- +- include: function(object) { +- if (Object.isFunction(this.indexOf)) +- if (this.indexOf(object) != -1) return true; +- +- var found = false; +- this.each(function(value) { +- if (value == object) { +- found = true; +- throw $break; +- } +- }); +- return found; +- }, +- +- inGroupsOf: function(number, fillWith) { +- fillWith = fillWith === undefined ? null : fillWith; +- return this.eachSlice(number, function(slice) { +- while(slice.length < number) slice.push(fillWith); +- return slice; +- }); +- }, +- +- inject: function(memo, iterator, context) { +- iterator = iterator.bind(context); +- this.each(function(value, index) { +- memo = iterator(memo, value, index); +- }); +- return memo; +- }, +- +- invoke: function(method) { +- var args = $A(arguments).slice(1); +- return this.map(function(value) { +- return value[method].apply(value, args); +- }); +- }, +- +- max: function(iterator, context) { +- iterator = iterator ? iterator.bind(context) : Prototype.K; +- var result; +- this.each(function(value, index) { +- value = iterator(value, index); +- if (result == undefined || value >= result) +- result = value; +- }); +- return result; +- }, +- +- min: function(iterator, context) { +- iterator = iterator ? iterator.bind(context) : Prototype.K; +- var result; +- this.each(function(value, index) { +- value = iterator(value, index); +- if (result == undefined || value < result) +- result = value; +- }); +- return result; +- }, +- +- partition: function(iterator, context) { +- iterator = iterator ? iterator.bind(context) : Prototype.K; +- var trues = [], falses = []; +- this.each(function(value, index) { +- (iterator(value, index) ? +- trues : falses).push(value); +- }); +- return [trues, falses]; +- }, +- +- pluck: function(property) { +- var results = []; +- this.each(function(value) { +- results.push(value[property]); +- }); +- return results; +- }, +- +- reject: function(iterator, context) { +- iterator = iterator.bind(context); +- var results = []; +- this.each(function(value, index) { +- if (!iterator(value, index)) +- results.push(value); +- }); +- return results; +- }, +- +- sortBy: function(iterator, context) { +- iterator = iterator.bind(context); +- return this.map(function(value, index) { +- return {value: value, criteria: iterator(value, index)}; +- }).sort(function(left, right) { +- var a = left.criteria, b = right.criteria; +- return a < b ? -1 : a > b ? 1 : 0; +- }).pluck('value'); +- }, +- +- toArray: function() { +- return this.map(); +- }, +- +- zip: function() { +- var iterator = Prototype.K, args = $A(arguments); +- if (Object.isFunction(args.last())) +- iterator = args.pop(); +- +- var collections = [this].concat(args).map($A); +- return this.map(function(value, index) { +- return iterator(collections.pluck(index)); +- }); +- }, +- +- size: function() { +- return this.toArray().length; +- }, +- +- inspect: function() { +- return '#'; +- } +-}; +- +-Object.extend(Enumerable, { +- map: Enumerable.collect, +- find: Enumerable.detect, +- select: Enumerable.findAll, +- filter: Enumerable.findAll, +- member: Enumerable.include, +- entries: Enumerable.toArray, +- every: Enumerable.all, +- some: Enumerable.any +-}); +-function $A(iterable) { +- if (!iterable) return []; +- if (iterable.toArray) return iterable.toArray(); +- var length = iterable.length, results = new Array(length); +- while (length--) results[length] = iterable[length]; +- return results; +-} +- +-if (Prototype.Browser.WebKit) { +- function $A(iterable) { +- if (!iterable) return []; +- if (!(Object.isFunction(iterable) && iterable == '[object NodeList]') && +- iterable.toArray) return iterable.toArray(); +- var length = iterable.length, results = new Array(length); +- while (length--) results[length] = iterable[length]; +- return results; +- } +-} +- +-Array.from = $A; +- +-Object.extend(Array.prototype, Enumerable); +- +-if (!Array.prototype._reverse) Array.prototype._reverse = Array.prototype.reverse; +- +-Object.extend(Array.prototype, { +- _each: function(iterator) { +- for (var i = 0, length = this.length; i < length; i++) +- iterator(this[i]); +- }, +- +- clear: function() { +- this.length = 0; +- return this; +- }, +- +- first: function() { +- return this[0]; +- }, +- +- last: function() { +- return this[this.length - 1]; +- }, +- +- compact: function() { +- return this.select(function(value) { +- return value != null; +- }); +- }, +- +- flatten: function() { +- return this.inject([], function(array, value) { +- return array.concat(Object.isArray(value) ? +- value.flatten() : [value]); +- }); +- }, +- +- without: function() { +- var values = $A(arguments); +- return this.select(function(value) { +- return !values.include(value); +- }); +- }, +- +- reverse: function(inline) { +- return (inline !== false ? this : this.toArray())._reverse(); +- }, +- +- reduce: function() { +- return this.length > 1 ? this : this[0]; +- }, +- +- uniq: function(sorted) { +- return this.inject([], function(array, value, index) { +- if (0 == index || (sorted ? array.last() != value : !array.include(value))) +- array.push(value); +- return array; +- }); +- }, +- +- intersect: function(array) { +- return this.uniq().findAll(function(item) { +- return array.detect(function(value) { return item === value }); +- }); +- }, +- +- clone: function() { +- return [].concat(this); +- }, +- +- size: function() { +- return this.length; +- }, +- +- inspect: function() { +- return '[' + this.map(Object.inspect).join(', ') + ']'; +- }, +- +- toJSON: function() { +- var results = []; +- this.each(function(object) { +- var value = Object.toJSON(object); +- if (value !== undefined) results.push(value); +- }); +- return '[' + results.join(', ') + ']'; +- } +-}); +- +-// use native browser JS 1.6 implementation if available +-if (Object.isFunction(Array.prototype.forEach)) +- Array.prototype._each = Array.prototype.forEach; +- +-if (!Array.prototype.indexOf) Array.prototype.indexOf = function(item, i) { +- i || (i = 0); +- var length = this.length; +- if (i < 0) i = length + i; +- for (; i < length; i++) +- if (this[i] === item) return i; +- return -1; +-}; +- +-if (!Array.prototype.lastIndexOf) Array.prototype.lastIndexOf = function(item, i) { +- i = isNaN(i) ? this.length : (i < 0 ? this.length + i : i) + 1; +- var n = this.slice(0, i).reverse().indexOf(item); +- return (n < 0) ? n : i - n - 1; +-}; +- +-Array.prototype.toArray = Array.prototype.clone; +- +-function $w(string) { +- if (!Object.isString(string)) return []; +- string = string.strip(); +- return string ? string.split(/\s+/) : []; +-} +- +-if (Prototype.Browser.Opera){ +- Array.prototype.concat = function() { +- var array = []; +- for (var i = 0, length = this.length; i < length; i++) array.push(this[i]); +- for (var i = 0, length = arguments.length; i < length; i++) { +- if (Object.isArray(arguments[i])) { +- for (var j = 0, arrayLength = arguments[i].length; j < arrayLength; j++) +- array.push(arguments[i][j]); +- } else { +- array.push(arguments[i]); +- } +- } +- return array; +- }; +-} +-Object.extend(Number.prototype, { +- toColorPart: function() { +- return this.toPaddedString(2, 16); +- }, +- +- succ: function() { +- return this + 1; +- }, +- +- times: function(iterator) { +- $R(0, this, true).each(iterator); +- return this; +- }, +- +- toPaddedString: function(length, radix) { +- var string = this.toString(radix || 10); +- return '0'.times(length - string.length) + string; +- }, +- +- toJSON: function() { +- return isFinite(this) ? this.toString() : 'null'; +- } +-}); +- +-$w('abs round ceil floor').each(function(method){ +- Number.prototype[method] = Math[method].methodize(); +-}); +-function $H(object) { +- return new Hash(object); +-}; +- +-var Hash = Class.create(Enumerable, (function() { +- if (function() { +- var i = 0, Test = function(value) { this.key = value }; +- Test.prototype.key = 'foo'; +- for (var property in new Test('bar')) i++; +- return i > 1; +- }()) { +- function each(iterator) { +- var cache = []; +- for (var key in this._object) { +- var value = this._object[key]; +- if (cache.include(key)) continue; +- cache.push(key); +- var pair = [key, value]; +- pair.key = key; +- pair.value = value; +- iterator(pair); +- } +- } +- } else { +- function each(iterator) { +- for (var key in this._object) { +- var value = this._object[key], pair = [key, value]; +- pair.key = key; +- pair.value = value; +- iterator(pair); +- } +- } +- } +- +- function toQueryPair(key, value) { +- if (Object.isUndefined(value)) return key; +- return key + '=' + encodeURIComponent(String.interpret(value)); +- } +- +- return { +- initialize: function(object) { +- this._object = Object.isHash(object) ? object.toObject() : Object.clone(object); +- }, +- +- _each: each, +- +- set: function(key, value) { +- return this._object[key] = value; +- }, +- +- get: function(key) { +- return this._object[key]; +- }, +- +- unset: function(key) { +- var value = this._object[key]; +- delete this._object[key]; +- return value; +- }, +- +- toObject: function() { +- return Object.clone(this._object); +- }, +- +- keys: function() { +- return this.pluck('key'); +- }, +- +- values: function() { +- return this.pluck('value'); +- }, +- +- index: function(value) { +- var match = this.detect(function(pair) { +- return pair.value === value; +- }); +- return match && match.key; +- }, +- +- merge: function(object) { +- return this.clone().update(object); +- }, +- +- update: function(object) { +- return new Hash(object).inject(this, function(result, pair) { +- result.set(pair.key, pair.value); +- return result; +- }); +- }, +- +- toQueryString: function() { +- return this.map(function(pair) { +- var key = encodeURIComponent(pair.key), values = pair.value; +- +- if (values && typeof values == 'object') { +- if (Object.isArray(values)) +- return values.map(toQueryPair.curry(key)).join('&'); +- } +- return toQueryPair(key, values); +- }).join('&'); +- }, +- +- inspect: function() { +- return '#'; +- }, +- +- toJSON: function() { +- return Object.toJSON(this.toObject()); +- }, +- +- clone: function() { +- return new Hash(this); +- } +- } +-})()); +- +-Hash.prototype.toTemplateReplacements = Hash.prototype.toObject; +-Hash.from = $H; +-var ObjectRange = Class.create(Enumerable, { +- initialize: function(start, end, exclusive) { +- this.start = start; +- this.end = end; +- this.exclusive = exclusive; +- }, +- +- _each: function(iterator) { +- var value = this.start; +- while (this.include(value)) { +- iterator(value); +- value = value.succ(); +- } +- }, +- +- include: function(value) { +- if (value < this.start) +- return false; +- if (this.exclusive) +- return value < this.end; +- return value <= this.end; +- } +-}); +- +-var $R = function(start, end, exclusive) { +- return new ObjectRange(start, end, exclusive); +-}; +- +-var Ajax = { +- getTransport: function() { +- return Try.these( +- function() {return new XMLHttpRequest()}, +- function() {return new ActiveXObject('Msxml2.XMLHTTP')}, +- function() {return new ActiveXObject('Microsoft.XMLHTTP')} +- ) || false; +- }, +- +- activeRequestCount: 0 +-}; +- +-Ajax.Responders = { +- responders: [], +- +- _each: function(iterator) { +- this.responders._each(iterator); +- }, +- +- register: function(responder) { +- if (!this.include(responder)) +- this.responders.push(responder); +- }, +- +- unregister: function(responder) { +- this.responders = this.responders.without(responder); +- }, +- +- dispatch: function(callback, request, transport, json) { +- this.each(function(responder) { +- if (Object.isFunction(responder[callback])) { +- try { +- responder[callback].apply(responder, [request, transport, json]); +- } catch (e) { } +- } +- }); +- } +-}; +- +-Object.extend(Ajax.Responders, Enumerable); +- +-Ajax.Responders.register({ +- onCreate: function() { Ajax.activeRequestCount++ }, +- onComplete: function() { Ajax.activeRequestCount-- } +-}); +- +-Ajax.Base = Class.create({ +- initialize: function(options) { +- this.options = { +- method: 'post', +- asynchronous: true, +- contentType: 'application/x-www-form-urlencoded', +- encoding: 'UTF-8', +- parameters: '', +- evalJSON: true, +- evalJS: true +- }; +- Object.extend(this.options, options || { }); +- +- this.options.method = this.options.method.toLowerCase(); +- if (Object.isString(this.options.parameters)) +- this.options.parameters = this.options.parameters.toQueryParams(); +- } +-}); +- +-Ajax.Request = Class.create(Ajax.Base, { +- _complete: false, +- +- initialize: function($super, url, options) { +- $super(options); +- this.transport = Ajax.getTransport(); +- this.request(url); +- }, +- +- request: function(url) { +- this.url = url; +- this.method = this.options.method; +- var params = Object.clone(this.options.parameters); +- +- if (!['get', 'post'].include(this.method)) { +- // simulate other verbs over post +- params['_method'] = this.method; +- this.method = 'post'; +- } +- +- this.parameters = params; +- +- if (params = Object.toQueryString(params)) { +- // when GET, append parameters to URL +- if (this.method == 'get') +- this.url += (this.url.include('?') ? '&' : '?') + params; +- else if (/Konqueror|Safari|KHTML/.test(navigator.userAgent)) +- params += '&_='; +- } +- +- try { +- var response = new Ajax.Response(this); +- if (this.options.onCreate) this.options.onCreate(response); +- Ajax.Responders.dispatch('onCreate', this, response); +- +- this.transport.open(this.method.toUpperCase(), this.url, +- this.options.asynchronous); +- +- if (this.options.asynchronous) this.respondToReadyState.bind(this).defer(1); +- +- this.transport.onreadystatechange = this.onStateChange.bind(this); +- this.setRequestHeaders(); +- +- this.body = this.method == 'post' ? (this.options.postBody || params) : null; +- this.transport.send(this.body); +- +- /* Force Firefox to handle ready state 4 for synchronous requests */ +- if (!this.options.asynchronous && this.transport.overrideMimeType) +- this.onStateChange(); +- +- } +- catch (e) { +- this.dispatchException(e); +- } +- }, +- +- onStateChange: function() { +- var readyState = this.transport.readyState; +- if (readyState > 1 && !((readyState == 4) && this._complete)) +- this.respondToReadyState(this.transport.readyState); +- }, +- +- setRequestHeaders: function() { +- var headers = { +- 'X-Requested-With': 'XMLHttpRequest', +- 'X-Prototype-Version': Prototype.Version, +- 'Accept': 'text/javascript, text/html, application/xml, text/xml, */*' +- }; +- +- if (this.method == 'post') { +- headers['Content-type'] = this.options.contentType + +- (this.options.encoding ? '; charset=' + this.options.encoding : ''); +- +- /* Force "Connection: close" for older Mozilla browsers to work +- * around a bug where XMLHttpRequest sends an incorrect +- * Content-length header. See Mozilla Bugzilla #246651. +- */ +- if (this.transport.overrideMimeType && +- (navigator.userAgent.match(/Gecko\/(\d{4})/) || [0,2005])[1] < 2005) +- headers['Connection'] = 'close'; +- } +- +- // user-defined headers +- if (typeof this.options.requestHeaders == 'object') { +- var extras = this.options.requestHeaders; +- +- if (Object.isFunction(extras.push)) +- for (var i = 0, length = extras.length; i < length; i += 2) +- headers[extras[i]] = extras[i+1]; +- else +- $H(extras).each(function(pair) { headers[pair.key] = pair.value }); +- } +- +- for (var name in headers) +- this.transport.setRequestHeader(name, headers[name]); +- }, +- +- success: function() { +- var status = this.getStatus(); +- return !status || (status >= 200 && status < 300); +- }, +- +- getStatus: function() { +- try { +- return this.transport.status || 0; +- } catch (e) { return 0 } +- }, +- +- respondToReadyState: function(readyState) { +- var state = Ajax.Request.Events[readyState], response = new Ajax.Response(this); +- +- if (state == 'Complete') { +- try { +- this._complete = true; +- (this.options['on' + response.status] +- || this.options['on' + (this.success() ? 'Success' : 'Failure')] +- || Prototype.emptyFunction)(response, response.headerJSON); +- } catch (e) { +- this.dispatchException(e); +- } +- +- var contentType = response.getHeader('Content-type'); +- if (this.options.evalJS == 'force' +- || (this.options.evalJS && contentType +- && contentType.match(/^\s*(text|application)\/(x-)?(java|ecma)script(;.*)?\s*$/i))) +- this.evalResponse(); +- } +- +- try { +- (this.options['on' + state] || Prototype.emptyFunction)(response, response.headerJSON); +- Ajax.Responders.dispatch('on' + state, this, response, response.headerJSON); +- } catch (e) { +- this.dispatchException(e); +- } +- +- if (state == 'Complete') { +- // avoid memory leak in MSIE: clean up +- this.transport.onreadystatechange = Prototype.emptyFunction; +- } +- }, +- +- getHeader: function(name) { +- try { +- return this.transport.getResponseHeader(name); +- } catch (e) { return null } +- }, +- +- evalResponse: function() { +- try { +- return eval((this.transport.responseText || '').unfilterJSON()); +- } catch (e) { +- this.dispatchException(e); +- } +- }, +- +- dispatchException: function(exception) { +- (this.options.onException || Prototype.emptyFunction)(this, exception); +- Ajax.Responders.dispatch('onException', this, exception); +- } +-}); +- +-Ajax.Request.Events = +- ['Uninitialized', 'Loading', 'Loaded', 'Interactive', 'Complete']; +- +-Ajax.Response = Class.create({ +- initialize: function(request){ +- this.request = request; +- var transport = this.transport = request.transport, +- readyState = this.readyState = transport.readyState; +- +- if((readyState > 2 && !Prototype.Browser.IE) || readyState == 4) { +- this.status = this.getStatus(); +- this.statusText = this.getStatusText(); +- this.responseText = String.interpret(transport.responseText); +- this.headerJSON = this._getHeaderJSON(); +- } +- +- if(readyState == 4) { +- var xml = transport.responseXML; +- this.responseXML = xml === undefined ? null : xml; +- this.responseJSON = this._getResponseJSON(); +- } +- }, +- +- status: 0, +- statusText: '', +- +- getStatus: Ajax.Request.prototype.getStatus, +- +- getStatusText: function() { +- try { +- return this.transport.statusText || ''; +- } catch (e) { return '' } +- }, +- +- getHeader: Ajax.Request.prototype.getHeader, +- +- getAllHeaders: function() { +- try { +- return this.getAllResponseHeaders(); +- } catch (e) { return null } +- }, +- +- getResponseHeader: function(name) { +- return this.transport.getResponseHeader(name); +- }, +- +- getAllResponseHeaders: function() { +- return this.transport.getAllResponseHeaders(); +- }, +- +- _getHeaderJSON: function() { +- var json = this.getHeader('X-JSON'); +- if (!json) return null; +- json = decodeURIComponent(escape(json)); +- try { +- return json.evalJSON(this.request.options.sanitizeJSON); +- } catch (e) { +- this.request.dispatchException(e); +- } +- }, +- +- _getResponseJSON: function() { +- var options = this.request.options; +- if (!options.evalJSON || (options.evalJSON != 'force' && +- !(this.getHeader('Content-type') || '').include('application/json'))) +- return null; +- try { +- return this.transport.responseText.evalJSON(options.sanitizeJSON); +- } catch (e) { +- this.request.dispatchException(e); +- } +- } +-}); +- +-Ajax.Updater = Class.create(Ajax.Request, { +- initialize: function($super, container, url, options) { +- this.container = { +- success: (container.success || container), +- failure: (container.failure || (container.success ? null : container)) +- }; +- +- options = options || { }; +- var onComplete = options.onComplete; +- options.onComplete = (function(response, param) { +- this.updateContent(response.responseText); +- if (Object.isFunction(onComplete)) onComplete(response, param); +- }).bind(this); +- +- $super(url, options); +- }, +- +- updateContent: function(responseText) { +- var receiver = this.container[this.success() ? 'success' : 'failure'], +- options = this.options; +- +- if (!options.evalScripts) responseText = responseText.stripScripts(); +- +- if (receiver = $(receiver)) { +- if (options.insertion) { +- if (Object.isString(options.insertion)) { +- var insertion = { }; insertion[options.insertion] = responseText; +- receiver.insert(insertion); +- } +- else options.insertion(receiver, responseText); +- } +- else receiver.update(responseText); +- } +- +- if (this.success()) { +- if (this.onComplete) this.onComplete.bind(this).defer(); +- } +- } +-}); +- +-Ajax.PeriodicalUpdater = Class.create(Ajax.Base, { +- initialize: function($super, container, url, options) { +- $super(options); +- this.onComplete = this.options.onComplete; +- +- this.frequency = (this.options.frequency || 2); +- this.decay = (this.options.decay || 1); +- +- this.updater = { }; +- this.container = container; +- this.url = url; +- +- this.start(); +- }, +- +- start: function() { +- this.options.onComplete = this.updateComplete.bind(this); +- this.onTimerEvent(); +- }, +- +- stop: function() { +- this.updater.options.onComplete = undefined; +- clearTimeout(this.timer); +- (this.onComplete || Prototype.emptyFunction).apply(this, arguments); +- }, +- +- updateComplete: function(response) { +- if (this.options.decay) { +- this.decay = (response.responseText == this.lastText ? +- this.decay * this.options.decay : 1); +- +- this.lastText = response.responseText; +- } +- this.timer = this.onTimerEvent.bind(this).delay(this.decay * this.frequency); +- }, +- +- onTimerEvent: function() { +- this.updater = new Ajax.Updater(this.container, this.url, this.options); +- } +-}); +-function $(element) { +- if (arguments.length > 1) { +- for (var i = 0, elements = [], length = arguments.length; i < length; i++) +- elements.push($(arguments[i])); +- return elements; +- } +- if (Object.isString(element)) +- element = document.getElementById(element); +- return Element.extend(element); +-} +- +-if (Prototype.BrowserFeatures.XPath) { +- document._getElementsByXPath = function(expression, parentElement) { +- var results = []; +- var query = document.evaluate(expression, $(parentElement) || document, +- null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null); +- for (var i = 0, length = query.snapshotLength; i < length; i++) +- results.push(Element.extend(query.snapshotItem(i))); +- return results; +- }; +-} +- +-/*--------------------------------------------------------------------------*/ +- +-if (!window.Node) var Node = { }; +- +-if (!Node.ELEMENT_NODE) { +- // DOM level 2 ECMAScript Language Binding +- Object.extend(Node, { +- ELEMENT_NODE: 1, +- ATTRIBUTE_NODE: 2, +- TEXT_NODE: 3, +- CDATA_SECTION_NODE: 4, +- ENTITY_REFERENCE_NODE: 5, +- ENTITY_NODE: 6, +- PROCESSING_INSTRUCTION_NODE: 7, +- COMMENT_NODE: 8, +- DOCUMENT_NODE: 9, +- DOCUMENT_TYPE_NODE: 10, +- DOCUMENT_FRAGMENT_NODE: 11, +- NOTATION_NODE: 12 +- }); +-} +- +-(function() { +- var element = this.Element; +- this.Element = function(tagName, attributes) { +- attributes = attributes || { }; +- tagName = tagName.toLowerCase(); +- var cache = Element.cache; +- if (Prototype.Browser.IE && attributes.name) { +- tagName = '<' + tagName + ' name="' + attributes.name + '">'; +- delete attributes.name; +- return Element.writeAttribute(document.createElement(tagName), attributes); +- } +- if (!cache[tagName]) cache[tagName] = Element.extend(document.createElement(tagName)); +- return Element.writeAttribute(cache[tagName].cloneNode(false), attributes); +- }; +- Object.extend(this.Element, element || { }); +-}).call(window); +- +-Element.cache = { }; +- +-Element.Methods = { +- visible: function(element) { +- return $(element).style.display != 'none'; +- }, +- +- toggle: function(element) { +- element = $(element); +- Element[Element.visible(element) ? 'hide' : 'show'](element); +- return element; +- }, +- +- hide: function(element) { +- $(element).style.display = 'none'; +- return element; +- }, +- +- show: function(element) { +- $(element).style.display = ''; +- return element; +- }, +- +- remove: function(element) { +- element = $(element); +- element.parentNode.removeChild(element); +- return element; +- }, +- +- update: function(element, content) { +- element = $(element); +- if (content && content.toElement) content = content.toElement(); +- if (Object.isElement(content)) return element.update().insert(content); +- content = Object.toHTML(content); +- element.innerHTML = content.stripScripts(); +- content.evalScripts.bind(content).defer(); +- return element; +- }, +- +- replace: function(element, content) { +- element = $(element); +- if (content && content.toElement) content = content.toElement(); +- else if (!Object.isElement(content)) { +- content = Object.toHTML(content); +- var range = element.ownerDocument.createRange(); +- range.selectNode(element); +- content.evalScripts.bind(content).defer(); +- content = range.createContextualFragment(content.stripScripts()); +- } +- element.parentNode.replaceChild(content, element); +- return element; +- }, +- +- insert: function(element, insertions) { +- element = $(element); +- +- if (Object.isString(insertions) || Object.isNumber(insertions) || +- Object.isElement(insertions) || (insertions && (insertions.toElement || insertions.toHTML))) +- insertions = {bottom:insertions}; +- +- var content, t, range; +- +- for (position in insertions) { +- content = insertions[position]; +- position = position.toLowerCase(); +- t = Element._insertionTranslations[position]; +- +- if (content && content.toElement) content = content.toElement(); +- if (Object.isElement(content)) { +- t.insert(element, content); +- continue; +- } +- +- content = Object.toHTML(content); +- +- range = element.ownerDocument.createRange(); +- t.initializeRange(element, range); +- t.insert(element, range.createContextualFragment(content.stripScripts())); +- +- content.evalScripts.bind(content).defer(); +- } +- +- return element; +- }, +- +- wrap: function(element, wrapper, attributes) { +- element = $(element); +- if (Object.isElement(wrapper)) +- $(wrapper).writeAttribute(attributes || { }); +- else if (Object.isString(wrapper)) wrapper = new Element(wrapper, attributes); +- else wrapper = new Element('div', wrapper); +- if (element.parentNode) +- element.parentNode.replaceChild(wrapper, element); +- wrapper.appendChild(element); +- return wrapper; +- }, +- +- inspect: function(element) { +- element = $(element); +- var result = '<' + element.tagName.toLowerCase(); +- $H({'id': 'id', 'className': 'class'}).each(function(pair) { +- var property = pair.first(), attribute = pair.last(); +- var value = (element[property] || '').toString(); +- if (value) result += ' ' + attribute + '=' + value.inspect(true); +- }); +- return result + '>'; +- }, +- +- recursivelyCollect: function(element, property) { +- element = $(element); +- var elements = []; +- while (element = element[property]) +- if (element.nodeType == 1) +- elements.push(Element.extend(element)); +- return elements; +- }, +- +- ancestors: function(element) { +- return $(element).recursivelyCollect('parentNode'); +- }, +- +- descendants: function(element) { +- return $A($(element).getElementsByTagName('*')).each(Element.extend); +- }, +- +- firstDescendant: function(element) { +- element = $(element).firstChild; +- while (element && element.nodeType != 1) element = element.nextSibling; +- return $(element); +- }, +- +- immediateDescendants: function(element) { +- if (!(element = $(element).firstChild)) return []; +- while (element && element.nodeType != 1) element = element.nextSibling; +- if (element) return [element].concat($(element).nextSiblings()); +- return []; +- }, +- +- previousSiblings: function(element) { +- return $(element).recursivelyCollect('previousSibling'); +- }, +- +- nextSiblings: function(element) { +- return $(element).recursivelyCollect('nextSibling'); +- }, +- +- siblings: function(element) { +- element = $(element); +- return element.previousSiblings().reverse().concat(element.nextSiblings()); +- }, +- +- match: function(element, selector) { +- if (Object.isString(selector)) +- selector = new Selector(selector); +- return selector.match($(element)); +- }, +- +- up: function(element, expression, index) { +- element = $(element); +- if (arguments.length == 1) return $(element.parentNode); +- var ancestors = element.ancestors(); +- return expression ? Selector.findElement(ancestors, expression, index) : +- ancestors[index || 0]; +- }, +- +- down: function(element, expression, index) { +- element = $(element); +- if (arguments.length == 1) return element.firstDescendant(); +- var descendants = element.descendants(); +- return expression ? Selector.findElement(descendants, expression, index) : +- descendants[index || 0]; +- }, +- +- previous: function(element, expression, index) { +- element = $(element); +- if (arguments.length == 1) return $(Selector.handlers.previousElementSibling(element)); +- var previousSiblings = element.previousSiblings(); +- return expression ? Selector.findElement(previousSiblings, expression, index) : +- previousSiblings[index || 0]; +- }, +- +- next: function(element, expression, index) { +- element = $(element); +- if (arguments.length == 1) return $(Selector.handlers.nextElementSibling(element)); +- var nextSiblings = element.nextSiblings(); +- return expression ? Selector.findElement(nextSiblings, expression, index) : +- nextSiblings[index || 0]; +- }, +- +- select: function() { +- var args = $A(arguments), element = $(args.shift()); +- return Selector.findChildElements(element, args); +- }, +- +- adjacent: function() { +- var args = $A(arguments), element = $(args.shift()); +- return Selector.findChildElements(element.parentNode, args).without(element); +- }, +- +- identify: function(element) { +- element = $(element); +- var id = element.readAttribute('id'), self = arguments.callee; +- if (id) return id; +- do { id = 'anonymous_element_' + self.counter++ } while ($(id)); +- element.writeAttribute('id', id); +- return id; +- }, +- +- readAttribute: function(element, name) { +- element = $(element); +- if (Prototype.Browser.IE) { +- var t = Element._attributeTranslations.read; +- if (t.values[name]) return t.values[name](element, name); +- if (t.names[name]) name = t.names[name]; +- if (name.include(':')) { +- return (!element.attributes || !element.attributes[name]) ? null : +- element.attributes[name].value; +- } +- } +- return element.getAttribute(name); +- }, +- +- writeAttribute: function(element, name, value) { +- element = $(element); +- var attributes = { }, t = Element._attributeTranslations.write; +- +- if (typeof name == 'object') attributes = name; +- else attributes[name] = value === undefined ? true : value; +- +- for (var attr in attributes) { +- var name = t.names[attr] || attr, value = attributes[attr]; +- if (t.values[attr]) name = t.values[attr](element, value); +- if (value === false || value === null) +- element.removeAttribute(name); +- else if (value === true) +- element.setAttribute(name, name); +- else element.setAttribute(name, value); +- } +- return element; +- }, +- +- getHeight: function(element) { +- return $(element).getDimensions().height; +- }, +- +- getWidth: function(element) { +- return $(element).getDimensions().width; +- }, +- +- classNames: function(element) { +- return new Element.ClassNames(element); +- }, +- +- hasClassName: function(element, className) { +- if (!(element = $(element))) return; +- var elementClassName = element.className; +- return (elementClassName.length > 0 && (elementClassName == className || +- new RegExp("(^|\\s)" + className + "(\\s|$)").test(elementClassName))); +- }, +- +- addClassName: function(element, className) { +- if (!(element = $(element))) return; +- if (!element.hasClassName(className)) +- element.className += (element.className ? ' ' : '') + className; +- return element; +- }, +- +- removeClassName: function(element, className) { +- if (!(element = $(element))) return; +- element.className = element.className.replace( +- new RegExp("(^|\\s+)" + className + "(\\s+|$)"), ' ').strip(); +- return element; +- }, +- +- toggleClassName: function(element, className) { +- if (!(element = $(element))) return; +- return element[element.hasClassName(className) ? +- 'removeClassName' : 'addClassName'](className); +- }, +- +- // removes whitespace-only text node children +- cleanWhitespace: function(element) { +- element = $(element); +- var node = element.firstChild; +- while (node) { +- var nextNode = node.nextSibling; +- if (node.nodeType == 3 && !/\S/.test(node.nodeValue)) +- element.removeChild(node); +- node = nextNode; +- } +- return element; +- }, +- +- empty: function(element) { +- return $(element).innerHTML.blank(); +- }, +- +- descendantOf: function(element, ancestor) { +- element = $(element), ancestor = $(ancestor); +- +- if (element.compareDocumentPosition) +- return (element.compareDocumentPosition(ancestor) & 8) === 8; +- +- if (element.sourceIndex && !Prototype.Browser.Opera) { +- var e = element.sourceIndex, a = ancestor.sourceIndex, +- nextAncestor = ancestor.nextSibling; +- if (!nextAncestor) { +- do { ancestor = ancestor.parentNode; } +- while (!(nextAncestor = ancestor.nextSibling) && ancestor.parentNode); +- } +- if (nextAncestor) return (e > a && e < nextAncestor.sourceIndex); +- } +- +- while (element = element.parentNode) +- if (element == ancestor) return true; +- return false; +- }, +- +- scrollTo: function(element) { +- element = $(element); +- var pos = element.cumulativeOffset(); +- window.scrollTo(pos[0], pos[1]); +- return element; +- }, +- +- getStyle: function(element, style) { +- element = $(element); +- style = style == 'float' ? 'cssFloat' : style.camelize(); +- var value = element.style[style]; +- if (!value) { +- var css = document.defaultView.getComputedStyle(element, null); +- value = css ? css[style] : null; +- } +- if (style == 'opacity') return value ? parseFloat(value) : 1.0; +- return value == 'auto' ? null : value; +- }, +- +- getOpacity: function(element) { +- return $(element).getStyle('opacity'); +- }, +- +- setStyle: function(element, styles) { +- element = $(element); +- var elementStyle = element.style, match; +- if (Object.isString(styles)) { +- element.style.cssText += ';' + styles; +- return styles.include('opacity') ? +- element.setOpacity(styles.match(/opacity:\s*(\d?\.?\d*)/)[1]) : element; +- } +- for (var property in styles) +- if (property == 'opacity') element.setOpacity(styles[property]); +- else +- elementStyle[(property == 'float' || property == 'cssFloat') ? +- (elementStyle.styleFloat === undefined ? 'cssFloat' : 'styleFloat') : +- property] = styles[property]; +- +- return element; +- }, +- +- setOpacity: function(element, value) { +- element = $(element); +- element.style.opacity = (value == 1 || value === '') ? '' : +- (value < 0.00001) ? 0 : value; +- return element; +- }, +- +- getDimensions: function(element) { +- element = $(element); +- var display = $(element).getStyle('display'); +- if (display != 'none' && display != null) // Safari bug +- return {width: element.offsetWidth, height: element.offsetHeight}; +- +- // All *Width and *Height properties give 0 on elements with display none, +- // so enable the element temporarily +- var els = element.style; +- var originalVisibility = els.visibility; +- var originalPosition = els.position; +- var originalDisplay = els.display; +- els.visibility = 'hidden'; +- els.position = 'absolute'; +- els.display = 'block'; +- var originalWidth = element.clientWidth; +- var originalHeight = element.clientHeight; +- els.display = originalDisplay; +- els.position = originalPosition; +- els.visibility = originalVisibility; +- return {width: originalWidth, height: originalHeight}; +- }, +- +- makePositioned: function(element) { +- element = $(element); +- var pos = Element.getStyle(element, 'position'); +- if (pos == 'static' || !pos) { +- element._madePositioned = true; +- element.style.position = 'relative'; +- // Opera returns the offset relative to the positioning context, when an +- // element is position relative but top and left have not been defined +- if (window.opera) { +- element.style.top = 0; +- element.style.left = 0; +- } +- } +- return element; +- }, +- +- undoPositioned: function(element) { +- element = $(element); +- if (element._madePositioned) { +- element._madePositioned = undefined; +- element.style.position = +- element.style.top = +- element.style.left = +- element.style.bottom = +- element.style.right = ''; +- } +- return element; +- }, +- +- makeClipping: function(element) { +- element = $(element); +- if (element._overflow) return element; +- element._overflow = Element.getStyle(element, 'overflow') || 'auto'; +- if (element._overflow !== 'hidden') +- element.style.overflow = 'hidden'; +- return element; +- }, +- +- undoClipping: function(element) { +- element = $(element); +- if (!element._overflow) return element; +- element.style.overflow = element._overflow == 'auto' ? '' : element._overflow; +- element._overflow = null; +- return element; +- }, +- +- cumulativeOffset: function(element) { +- var valueT = 0, valueL = 0; +- do { +- valueT += element.offsetTop || 0; +- valueL += element.offsetLeft || 0; +- element = element.offsetParent; +- } while (element); +- return Element._returnOffset(valueL, valueT); +- }, +- +- positionedOffset: function(element) { +- var valueT = 0, valueL = 0; +- do { +- valueT += element.offsetTop || 0; +- valueL += element.offsetLeft || 0; +- element = element.offsetParent; +- if (element) { +- if (element.tagName == 'BODY') break; +- var p = Element.getStyle(element, 'position'); +- if (p == 'relative' || p == 'absolute') break; +- } +- } while (element); +- return Element._returnOffset(valueL, valueT); +- }, +- +- absolutize: function(element) { +- element = $(element); +- if (element.getStyle('position') == 'absolute') return; +- // Position.prepare(); // To be done manually by Scripty when it needs it. +- +- var offsets = element.positionedOffset(); +- var top = offsets[1]; +- var left = offsets[0]; +- var width = element.clientWidth; +- var height = element.clientHeight; +- +- element._originalLeft = left - parseFloat(element.style.left || 0); +- element._originalTop = top - parseFloat(element.style.top || 0); +- element._originalWidth = element.style.width; +- element._originalHeight = element.style.height; +- +- element.style.position = 'absolute'; +- element.style.top = top + 'px'; +- element.style.left = left + 'px'; +- element.style.width = width + 'px'; +- element.style.height = height + 'px'; +- return element; +- }, +- +- relativize: function(element) { +- element = $(element); +- if (element.getStyle('position') == 'relative') return; +- // Position.prepare(); // To be done manually by Scripty when it needs it. +- +- element.style.position = 'relative'; +- var top = parseFloat(element.style.top || 0) - (element._originalTop || 0); +- var left = parseFloat(element.style.left || 0) - (element._originalLeft || 0); +- +- element.style.top = top + 'px'; +- element.style.left = left + 'px'; +- element.style.height = element._originalHeight; +- element.style.width = element._originalWidth; +- return element; +- }, +- +- cumulativeScrollOffset: function(element) { +- var valueT = 0, valueL = 0; +- do { +- valueT += element.scrollTop || 0; +- valueL += element.scrollLeft || 0; +- element = element.parentNode; +- } while (element); +- return Element._returnOffset(valueL, valueT); +- }, +- +- getOffsetParent: function(element) { +- if (element.offsetParent) return $(element.offsetParent); +- if (element == document.body) return $(element); +- +- while ((element = element.parentNode) && element != document.body) +- if (Element.getStyle(element, 'position') != 'static') +- return $(element); +- +- return $(document.body); +- }, +- +- viewportOffset: function(forElement) { +- var valueT = 0, valueL = 0; +- +- var element = forElement; +- do { +- valueT += element.offsetTop || 0; +- valueL += element.offsetLeft || 0; +- +- // Safari fix +- if (element.offsetParent == document.body && +- Element.getStyle(element, 'position') == 'absolute') break; +- +- } while (element = element.offsetParent); +- +- element = forElement; +- do { +- if (!Prototype.Browser.Opera || element.tagName == 'BODY') { +- valueT -= element.scrollTop || 0; +- valueL -= element.scrollLeft || 0; +- } +- } while (element = element.parentNode); +- +- return Element._returnOffset(valueL, valueT); +- }, +- +- clonePosition: function(element, source) { +- var options = Object.extend({ +- setLeft: true, +- setTop: true, +- setWidth: true, +- setHeight: true, +- offsetTop: 0, +- offsetLeft: 0 +- }, arguments[2] || { }); +- +- // find page position of source +- source = $(source); +- var p = source.viewportOffset(); +- +- // find coordinate system to use +- element = $(element); +- var delta = [0, 0]; +- var parent = null; +- // delta [0,0] will do fine with position: fixed elements, +- // position:absolute needs offsetParent deltas +- if (Element.getStyle(element, 'position') == 'absolute') { +- parent = element.getOffsetParent(); +- delta = parent.viewportOffset(); +- } +- +- // correct by body offsets (fixes Safari) +- if (parent == document.body) { +- delta[0] -= document.body.offsetLeft; +- delta[1] -= document.body.offsetTop; +- } +- +- // set position +- if (options.setLeft) element.style.left = (p[0] - delta[0] + options.offsetLeft) + 'px'; +- if (options.setTop) element.style.top = (p[1] - delta[1] + options.offsetTop) + 'px'; +- if (options.setWidth) element.style.width = source.offsetWidth + 'px'; +- if (options.setHeight) element.style.height = source.offsetHeight + 'px'; +- return element; +- } +-}; +- +-Element.Methods.identify.counter = 1; +- +-Object.extend(Element.Methods, { +- getElementsBySelector: Element.Methods.select, +- childElements: Element.Methods.immediateDescendants +-}); +- +-Element._attributeTranslations = { +- write: { +- names: { +- className: 'class', +- htmlFor: 'for' +- }, +- values: { } +- } +-}; +- +- +-if (!document.createRange || Prototype.Browser.Opera) { +- Element.Methods.insert = function(element, insertions) { +- element = $(element); +- +- if (Object.isString(insertions) || Object.isNumber(insertions) || +- Object.isElement(insertions) || (insertions && (insertions.toElement || insertions.toHTML))) +- insertions = { bottom: insertions }; +- +- var t = Element._insertionTranslations, content, position, pos, tagName; +- +- for (position in insertions) { +- content = insertions[position]; +- position = position.toLowerCase(); +- pos = t[position]; +- +- if (content && content.toElement) content = content.toElement(); +- if (Object.isElement(content)) { +- pos.insert(element, content); +- continue; +- } +- +- content = Object.toHTML(content); +- tagName = ((position == 'before' || position == 'after') +- ? element.parentNode : element).tagName.toUpperCase(); +- +- if (t.tags[tagName]) { +- var fragments = Element._getContentFromAnonymousElement(tagName, content.stripScripts()); +- if (position == 'top' || position == 'after') fragments.reverse(); +- fragments.each(pos.insert.curry(element)); +- } +- else element.insertAdjacentHTML(pos.adjacency, content.stripScripts()); +- +- content.evalScripts.bind(content).defer(); +- } +- +- return element; +- }; +-} +- +-if (Prototype.Browser.Opera) { +- Element.Methods._getStyle = Element.Methods.getStyle; +- Element.Methods.getStyle = function(element, style) { +- switch(style) { +- case 'left': +- case 'top': +- case 'right': +- case 'bottom': +- if (Element._getStyle(element, 'position') == 'static') return null; +- default: return Element._getStyle(element, style); +- } +- }; +- Element.Methods._readAttribute = Element.Methods.readAttribute; +- Element.Methods.readAttribute = function(element, attribute) { +- if (attribute == 'title') return element.title; +- return Element._readAttribute(element, attribute); +- }; +-} +- +-else if (Prototype.Browser.IE) { +- $w('positionedOffset getOffsetParent viewportOffset').each(function(method) { +- Element.Methods[method] = Element.Methods[method].wrap( +- function(proceed, element) { +- element = $(element); +- var position = element.getStyle('position'); +- if (position != 'static') return proceed(element); +- element.setStyle({ position: 'relative' }); +- var value = proceed(element); +- element.setStyle({ position: position }); +- return value; +- } +- ); +- }); +- +- Element.Methods.getStyle = function(element, style) { +- element = $(element); +- style = (style == 'float' || style == 'cssFloat') ? 'styleFloat' : style.camelize(); +- var value = element.style[style]; +- if (!value && element.currentStyle) value = element.currentStyle[style]; +- +- if (style == 'opacity') { +- if (value = (element.getStyle('filter') || '').match(/alpha\(opacity=(.*)\)/)) +- if (value[1]) return parseFloat(value[1]) / 100; +- return 1.0; +- } +- +- if (value == 'auto') { +- if ((style == 'width' || style == 'height') && (element.getStyle('display') != 'none')) +- return element['offset' + style.capitalize()] + 'px'; +- return null; +- } +- return value; +- }; +- +- Element.Methods.setOpacity = function(element, value) { +- function stripAlpha(filter){ +- return filter.replace(/alpha\([^\)]*\)/gi,''); +- } +- element = $(element); +- var currentStyle = element.currentStyle; +- if ((currentStyle && !currentStyle.hasLayout) || +- (!currentStyle && element.style.zoom == 'normal')) +- element.style.zoom = 1; +- +- var filter = element.getStyle('filter'), style = element.style; +- if (value == 1 || value === '') { +- (filter = stripAlpha(filter)) ? +- style.filter = filter : style.removeAttribute('filter'); +- return element; +- } else if (value < 0.00001) value = 0; +- style.filter = stripAlpha(filter) + +- 'alpha(opacity=' + (value * 100) + ')'; +- return element; +- }; +- +- Element._attributeTranslations = { +- read: { +- names: { +- 'class': 'className', +- 'for': 'htmlFor' +- }, +- values: { +- _getAttr: function(element, attribute) { +- return element.getAttribute(attribute, 2); +- }, +- _getAttrNode: function(element, attribute) { +- var node = element.getAttributeNode(attribute); +- return node ? node.value : ""; +- }, +- _getEv: function(element, attribute) { +- var attribute = element.getAttribute(attribute); +- return attribute ? attribute.toString().slice(23, -2) : null; +- }, +- _flag: function(element, attribute) { +- return $(element).hasAttribute(attribute) ? attribute : null; +- }, +- style: function(element) { +- return element.style.cssText.toLowerCase(); +- }, +- title: function(element) { +- return element.title; +- } +- } +- } +- }; +- +- Element._attributeTranslations.write = { +- names: Object.clone(Element._attributeTranslations.read.names), +- values: { +- checked: function(element, value) { +- element.checked = !!value; +- }, +- +- style: function(element, value) { +- element.style.cssText = value ? value : ''; +- } +- } +- }; +- +- Element._attributeTranslations.has = {}; +- +- $w('colSpan rowSpan vAlign dateTime accessKey tabIndex ' + +- 'encType maxLength readOnly longDesc').each(function(attr) { +- Element._attributeTranslations.write.names[attr.toLowerCase()] = attr; +- Element._attributeTranslations.has[attr.toLowerCase()] = attr; +- }); +- +- (function(v) { +- Object.extend(v, { +- href: v._getAttr, +- src: v._getAttr, +- type: v._getAttr, +- action: v._getAttrNode, +- disabled: v._flag, +- checked: v._flag, +- readonly: v._flag, +- multiple: v._flag, +- onload: v._getEv, +- onunload: v._getEv, +- onclick: v._getEv, +- ondblclick: v._getEv, +- onmousedown: v._getEv, +- onmouseup: v._getEv, +- onmouseover: v._getEv, +- onmousemove: v._getEv, +- onmouseout: v._getEv, +- onfocus: v._getEv, +- onblur: v._getEv, +- onkeypress: v._getEv, +- onkeydown: v._getEv, +- onkeyup: v._getEv, +- onsubmit: v._getEv, +- onreset: v._getEv, +- onselect: v._getEv, +- onchange: v._getEv +- }); +- })(Element._attributeTranslations.read.values); +-} +- +-else if (Prototype.Browser.Gecko && /rv:1\.8\.0/.test(navigator.userAgent)) { +- Element.Methods.setOpacity = function(element, value) { +- element = $(element); +- element.style.opacity = (value == 1) ? 0.999999 : +- (value === '') ? '' : (value < 0.00001) ? 0 : value; +- return element; +- }; +-} +- +-else if (Prototype.Browser.WebKit) { +- Element.Methods.setOpacity = function(element, value) { +- element = $(element); +- element.style.opacity = (value == 1 || value === '') ? '' : +- (value < 0.00001) ? 0 : value; +- +- if (value == 1) +- if(element.tagName == 'IMG' && element.width) { +- element.width++; element.width--; +- } else try { +- var n = document.createTextNode(' '); +- element.appendChild(n); +- element.removeChild(n); +- } catch (e) { } +- +- return element; +- }; +- +- // Safari returns margins on body which is incorrect if the child is absolutely +- // positioned. For performance reasons, redefine Position.cumulativeOffset for +- // KHTML/WebKit only. +- Element.Methods.cumulativeOffset = function(element) { +- var valueT = 0, valueL = 0; +- do { +- valueT += element.offsetTop || 0; +- valueL += element.offsetLeft || 0; +- if (element.offsetParent == document.body) +- if (Element.getStyle(element, 'position') == 'absolute') break; +- +- element = element.offsetParent; +- } while (element); +- +- return Element._returnOffset(valueL, valueT); +- }; +-} +- +-if (Prototype.Browser.IE || Prototype.Browser.Opera) { +- // IE and Opera are missing .innerHTML support for TABLE-related and SELECT elements +- Element.Methods.update = function(element, content) { +- element = $(element); +- +- if (content && content.toElement) content = content.toElement(); +- if (Object.isElement(content)) return element.update().insert(content); +- +- content = Object.toHTML(content); +- var tagName = element.tagName.toUpperCase(); +- +- if (tagName in Element._insertionTranslations.tags) { +- $A(element.childNodes).each(function(node) { element.removeChild(node) }); +- Element._getContentFromAnonymousElement(tagName, content.stripScripts()) +- .each(function(node) { element.appendChild(node) }); +- } +- else element.innerHTML = content.stripScripts(); +- +- content.evalScripts.bind(content).defer(); +- return element; +- }; +-} +- +-if (document.createElement('div').outerHTML) { +- Element.Methods.replace = function(element, content) { +- element = $(element); +- +- if (content && content.toElement) content = content.toElement(); +- if (Object.isElement(content)) { +- element.parentNode.replaceChild(content, element); +- return element; +- } +- +- content = Object.toHTML(content); +- var parent = element.parentNode, tagName = parent.tagName.toUpperCase(); +- +- if (Element._insertionTranslations.tags[tagName]) { +- var nextSibling = element.next(); +- var fragments = Element._getContentFromAnonymousElement(tagName, content.stripScripts()); +- parent.removeChild(element); +- if (nextSibling) +- fragments.each(function(node) { parent.insertBefore(node, nextSibling) }); +- else +- fragments.each(function(node) { parent.appendChild(node) }); +- } +- else element.outerHTML = content.stripScripts(); +- +- content.evalScripts.bind(content).defer(); +- return element; +- }; +-} +- +-Element._returnOffset = function(l, t) { +- var result = [l, t]; +- result.left = l; +- result.top = t; +- return result; +-}; +- +-Element._getContentFromAnonymousElement = function(tagName, html) { +- var div = new Element('div'), t = Element._insertionTranslations.tags[tagName]; +- div.innerHTML = t[0] + html + t[1]; +- t[2].times(function() { div = div.firstChild }); +- return $A(div.childNodes); +-}; +- +-Element._insertionTranslations = { +- before: { +- adjacency: 'beforeBegin', +- insert: function(element, node) { +- element.parentNode.insertBefore(node, element); +- }, +- initializeRange: function(element, range) { +- range.setStartBefore(element); +- } +- }, +- top: { +- adjacency: 'afterBegin', +- insert: function(element, node) { +- element.insertBefore(node, element.firstChild); +- }, +- initializeRange: function(element, range) { +- range.selectNodeContents(element); +- range.collapse(true); +- } +- }, +- bottom: { +- adjacency: 'beforeEnd', +- insert: function(element, node) { +- element.appendChild(node); +- } +- }, +- after: { +- adjacency: 'afterEnd', +- insert: function(element, node) { +- element.parentNode.insertBefore(node, element.nextSibling); +- }, +- initializeRange: function(element, range) { +- range.setStartAfter(element); +- } +- }, +- tags: { +- TABLE: ['', '
    ', 1], +- TBODY: ['', '
    ', 2], +- TR: ['', '
    ', 3], +- TD: ['
    ', '
    ', 4], +- SELECT: ['', 1] +- } +-}; +- +-(function() { +- this.bottom.initializeRange = this.top.initializeRange; +- Object.extend(this.tags, { +- THEAD: this.tags.TBODY, +- TFOOT: this.tags.TBODY, +- TH: this.tags.TD +- }); +-}).call(Element._insertionTranslations); +- +-Element.Methods.Simulated = { +- hasAttribute: function(element, attribute) { +- attribute = Element._attributeTranslations.has[attribute] || attribute; +- var node = $(element).getAttributeNode(attribute); +- return node && node.specified; +- } +-}; +- +-Element.Methods.ByTag = { }; +- +-Object.extend(Element, Element.Methods); +- +-if (!Prototype.BrowserFeatures.ElementExtensions && +- document.createElement('div').__proto__) { +- window.HTMLElement = { }; +- window.HTMLElement.prototype = document.createElement('div').__proto__; +- Prototype.BrowserFeatures.ElementExtensions = true; +-} +- +-Element.extend = (function() { +- if (Prototype.BrowserFeatures.SpecificElementExtensions) +- return Prototype.K; +- +- var Methods = { }, ByTag = Element.Methods.ByTag; +- +- var extend = Object.extend(function(element) { +- if (!element || element._extendedByPrototype || +- element.nodeType != 1 || element == window) return element; +- +- var methods = Object.clone(Methods), +- tagName = element.tagName, property, value; +- +- // extend methods for specific tags +- if (ByTag[tagName]) Object.extend(methods, ByTag[tagName]); +- +- for (property in methods) { +- value = methods[property]; +- if (Object.isFunction(value) && !(property in element)) +- element[property] = value.methodize(); +- } +- +- element._extendedByPrototype = Prototype.emptyFunction; +- return element; +- +- }, { +- refresh: function() { +- // extend methods for all tags (Safari doesn't need this) +- if (!Prototype.BrowserFeatures.ElementExtensions) { +- Object.extend(Methods, Element.Methods); +- Object.extend(Methods, Element.Methods.Simulated); +- } +- } +- }); +- +- extend.refresh(); +- return extend; +-})(); +- +-Element.hasAttribute = function(element, attribute) { +- if (element.hasAttribute) return element.hasAttribute(attribute); +- return Element.Methods.Simulated.hasAttribute(element, attribute); +-}; +- +-Element.addMethods = function(methods) { +- var F = Prototype.BrowserFeatures, T = Element.Methods.ByTag; +- +- if (!methods) { +- Object.extend(Form, Form.Methods); +- Object.extend(Form.Element, Form.Element.Methods); +- Object.extend(Element.Methods.ByTag, { +- "FORM": Object.clone(Form.Methods), +- "INPUT": Object.clone(Form.Element.Methods), +- "SELECT": Object.clone(Form.Element.Methods), +- "TEXTAREA": Object.clone(Form.Element.Methods) +- }); +- } +- +- if (arguments.length == 2) { +- var tagName = methods; +- methods = arguments[1]; +- } +- +- if (!tagName) Object.extend(Element.Methods, methods || { }); +- else { +- if (Object.isArray(tagName)) tagName.each(extend); +- else extend(tagName); +- } +- +- function extend(tagName) { +- tagName = tagName.toUpperCase(); +- if (!Element.Methods.ByTag[tagName]) +- Element.Methods.ByTag[tagName] = { }; +- Object.extend(Element.Methods.ByTag[tagName], methods); +- } +- +- function copy(methods, destination, onlyIfAbsent) { +- onlyIfAbsent = onlyIfAbsent || false; +- for (var property in methods) { +- var value = methods[property]; +- if (!Object.isFunction(value)) continue; +- if (!onlyIfAbsent || !(property in destination)) +- destination[property] = value.methodize(); +- } +- } +- +- function findDOMClass(tagName) { +- var klass; +- var trans = { +- "OPTGROUP": "OptGroup", "TEXTAREA": "TextArea", "P": "Paragraph", +- "FIELDSET": "FieldSet", "UL": "UList", "OL": "OList", "DL": "DList", +- "DIR": "Directory", "H1": "Heading", "H2": "Heading", "H3": "Heading", +- "H4": "Heading", "H5": "Heading", "H6": "Heading", "Q": "Quote", +- "INS": "Mod", "DEL": "Mod", "A": "Anchor", "IMG": "Image", "CAPTION": +- "TableCaption", "COL": "TableCol", "COLGROUP": "TableCol", "THEAD": +- "TableSection", "TFOOT": "TableSection", "TBODY": "TableSection", "TR": +- "TableRow", "TH": "TableCell", "TD": "TableCell", "FRAMESET": +- "FrameSet", "IFRAME": "IFrame" +- }; +- if (trans[tagName]) klass = 'HTML' + trans[tagName] + 'Element'; +- if (window[klass]) return window[klass]; +- klass = 'HTML' + tagName + 'Element'; +- if (window[klass]) return window[klass]; +- klass = 'HTML' + tagName.capitalize() + 'Element'; +- if (window[klass]) return window[klass]; +- +- window[klass] = { }; +- window[klass].prototype = document.createElement(tagName).__proto__; +- return window[klass]; +- } +- +- if (F.ElementExtensions) { +- copy(Element.Methods, HTMLElement.prototype); +- copy(Element.Methods.Simulated, HTMLElement.prototype, true); +- } +- +- if (F.SpecificElementExtensions) { +- for (var tag in Element.Methods.ByTag) { +- var klass = findDOMClass(tag); +- if (Object.isUndefined(klass)) continue; +- copy(T[tag], klass.prototype); +- } +- } +- +- Object.extend(Element, Element.Methods); +- delete Element.ByTag; +- +- if (Element.extend.refresh) Element.extend.refresh(); +- Element.cache = { }; +-}; +- +-document.viewport = { +- getDimensions: function() { +- var dimensions = { }; +- $w('width height').each(function(d) { +- var D = d.capitalize(); +- dimensions[d] = self['inner' + D] || +- (document.documentElement['client' + D] || document.body['client' + D]); +- }); +- return dimensions; +- }, +- +- getWidth: function() { +- return this.getDimensions().width; +- }, +- +- getHeight: function() { +- return this.getDimensions().height; +- }, +- +- getScrollOffsets: function() { +- return Element._returnOffset( +- window.pageXOffset || document.documentElement.scrollLeft || document.body.scrollLeft, +- window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop); +- } +-}; +-/* Portions of the Selector class are derived from Jack Slocum’s DomQuery, +- * part of YUI-Ext version 0.40, distributed under the terms of an MIT-style +- * license. Please see http://www.yui-ext.com/ for more information. */ +- +-var Selector = Class.create({ +- initialize: function(expression) { +- this.expression = expression.strip(); +- this.compileMatcher(); +- }, +- +- compileMatcher: function() { +- // Selectors with namespaced attributes can't use the XPath version +- if (Prototype.BrowserFeatures.XPath && !(/(\[[\w-]*?:|:checked)/).test(this.expression)) +- return this.compileXPathMatcher(); +- +- var e = this.expression, ps = Selector.patterns, h = Selector.handlers, +- c = Selector.criteria, le, p, m; +- +- if (Selector._cache[e]) { +- this.matcher = Selector._cache[e]; +- return; +- } +- +- this.matcher = ["this.matcher = function(root) {", +- "var r = root, h = Selector.handlers, c = false, n;"]; +- +- while (e && le != e && (/\S/).test(e)) { +- le = e; +- for (var i in ps) { +- p = ps[i]; +- if (m = e.match(p)) { +- this.matcher.push(Object.isFunction(c[i]) ? c[i](m) : +- new Template(c[i]).evaluate(m)); +- e = e.replace(m[0], ''); +- break; +- } +- } +- } +- +- this.matcher.push("return h.unique(n);\n}"); +- eval(this.matcher.join('\n')); +- Selector._cache[this.expression] = this.matcher; +- }, +- +- compileXPathMatcher: function() { +- var e = this.expression, ps = Selector.patterns, +- x = Selector.xpath, le, m; +- +- if (Selector._cache[e]) { +- this.xpath = Selector._cache[e]; return; +- } +- +- this.matcher = ['.//*']; +- while (e && le != e && (/\S/).test(e)) { +- le = e; +- for (var i in ps) { +- if (m = e.match(ps[i])) { +- this.matcher.push(Object.isFunction(x[i]) ? x[i](m) : +- new Template(x[i]).evaluate(m)); +- e = e.replace(m[0], ''); +- break; +- } +- } +- } +- +- this.xpath = this.matcher.join(''); +- Selector._cache[this.expression] = this.xpath; +- }, +- +- findElements: function(root) { +- root = root || document; +- if (this.xpath) return document._getElementsByXPath(this.xpath, root); +- return this.matcher(root); +- }, +- +- match: function(element) { +- this.tokens = []; +- +- var e = this.expression, ps = Selector.patterns, as = Selector.assertions; +- var le, p, m; +- +- while (e && le !== e && (/\S/).test(e)) { +- le = e; +- for (var i in ps) { +- p = ps[i]; +- if (m = e.match(p)) { +- // use the Selector.assertions methods unless the selector +- // is too complex. +- if (as[i]) { +- this.tokens.push([i, Object.clone(m)]); +- e = e.replace(m[0], ''); +- } else { +- // reluctantly do a document-wide search +- // and look for a match in the array +- return this.findElements(document).include(element); +- } +- } +- } +- } +- +- var match = true, name, matches; +- for (var i = 0, token; token = this.tokens[i]; i++) { +- name = token[0], matches = token[1]; +- if (!Selector.assertions[name](element, matches)) { +- match = false; break; +- } +- } +- +- return match; +- }, +- +- toString: function() { +- return this.expression; +- }, +- +- inspect: function() { +- return "#"; +- } +-}); +- +-Object.extend(Selector, { +- _cache: { }, +- +- xpath: { +- descendant: "//*", +- child: "/*", +- adjacent: "/following-sibling::*[1]", +- laterSibling: '/following-sibling::*', +- tagName: function(m) { +- if (m[1] == '*') return ''; +- return "[local-name()='" + m[1].toLowerCase() + +- "' or local-name()='" + m[1].toUpperCase() + "']"; +- }, +- className: "[contains(concat(' ', @class, ' '), ' #{1} ')]", +- id: "[@id='#{1}']", +- attrPresence: "[@#{1}]", +- attr: function(m) { +- m[3] = m[5] || m[6]; +- return new Template(Selector.xpath.operators[m[2]]).evaluate(m); +- }, +- pseudo: function(m) { +- var h = Selector.xpath.pseudos[m[1]]; +- if (!h) return ''; +- if (Object.isFunction(h)) return h(m); +- return new Template(Selector.xpath.pseudos[m[1]]).evaluate(m); +- }, +- operators: { +- '=': "[@#{1}='#{3}']", +- '!=': "[@#{1}!='#{3}']", +- '^=': "[starts-with(@#{1}, '#{3}')]", +- '$=': "[substring(@#{1}, (string-length(@#{1}) - string-length('#{3}') + 1))='#{3}']", +- '*=': "[contains(@#{1}, '#{3}')]", +- '~=': "[contains(concat(' ', @#{1}, ' '), ' #{3} ')]", +- '|=': "[contains(concat('-', @#{1}, '-'), '-#{3}-')]" +- }, +- pseudos: { +- 'first-child': '[not(preceding-sibling::*)]', +- 'last-child': '[not(following-sibling::*)]', +- 'only-child': '[not(preceding-sibling::* or following-sibling::*)]', +- 'empty': "[count(*) = 0 and (count(text()) = 0 or translate(text(), ' \t\r\n', '') = '')]", +- 'checked': "[@checked]", +- 'disabled': "[@disabled]", +- 'enabled': "[not(@disabled)]", +- 'not': function(m) { +- var e = m[6], p = Selector.patterns, +- x = Selector.xpath, le, m, v; +- +- var exclusion = []; +- while (e && le != e && (/\S/).test(e)) { +- le = e; +- for (var i in p) { +- if (m = e.match(p[i])) { +- v = Object.isFunction(x[i]) ? x[i](m) : new Template(x[i]).evaluate(m); +- exclusion.push("(" + v.substring(1, v.length - 1) + ")"); +- e = e.replace(m[0], ''); +- break; +- } +- } +- } +- return "[not(" + exclusion.join(" and ") + ")]"; +- }, +- 'nth-child': function(m) { +- return Selector.xpath.pseudos.nth("(count(./preceding-sibling::*) + 1) ", m); +- }, +- 'nth-last-child': function(m) { +- return Selector.xpath.pseudos.nth("(count(./following-sibling::*) + 1) ", m); +- }, +- 'nth-of-type': function(m) { +- return Selector.xpath.pseudos.nth("position() ", m); +- }, +- 'nth-last-of-type': function(m) { +- return Selector.xpath.pseudos.nth("(last() + 1 - position()) ", m); +- }, +- 'first-of-type': function(m) { +- m[6] = "1"; return Selector.xpath.pseudos['nth-of-type'](m); +- }, +- 'last-of-type': function(m) { +- m[6] = "1"; return Selector.xpath.pseudos['nth-last-of-type'](m); +- }, +- 'only-of-type': function(m) { +- var p = Selector.xpath.pseudos; return p['first-of-type'](m) + p['last-of-type'](m); +- }, +- nth: function(fragment, m) { +- var mm, formula = m[6], predicate; +- if (formula == 'even') formula = '2n+0'; +- if (formula == 'odd') formula = '2n+1'; +- if (mm = formula.match(/^(\d+)$/)) // digit only +- return '[' + fragment + "= " + mm[1] + ']'; +- if (mm = formula.match(/^(-?\d*)?n(([+-])(\d+))?/)) { // an+b +- if (mm[1] == "-") mm[1] = -1; +- var a = mm[1] ? Number(mm[1]) : 1; +- var b = mm[2] ? Number(mm[2]) : 0; +- predicate = "[((#{fragment} - #{b}) mod #{a} = 0) and " + +- "((#{fragment} - #{b}) div #{a} >= 0)]"; +- return new Template(predicate).evaluate({ +- fragment: fragment, a: a, b: b }); +- } +- } +- } +- }, +- +- criteria: { +- tagName: 'n = h.tagName(n, r, "#{1}", c); c = false;', +- className: 'n = h.className(n, r, "#{1}", c); c = false;', +- id: 'n = h.id(n, r, "#{1}", c); c = false;', +- attrPresence: 'n = h.attrPresence(n, r, "#{1}"); c = false;', +- attr: function(m) { +- m[3] = (m[5] || m[6]); +- return new Template('n = h.attr(n, r, "#{1}", "#{3}", "#{2}"); c = false;').evaluate(m); +- }, +- pseudo: function(m) { +- if (m[6]) m[6] = m[6].replace(/"/g, '\\"'); +- return new Template('n = h.pseudo(n, "#{1}", "#{6}", r, c); c = false;').evaluate(m); +- }, +- descendant: 'c = "descendant";', +- child: 'c = "child";', +- adjacent: 'c = "adjacent";', +- laterSibling: 'c = "laterSibling";' +- }, +- +- patterns: { +- // combinators must be listed first +- // (and descendant needs to be last combinator) +- laterSibling: /^\s*~\s*/, +- child: /^\s*>\s*/, +- adjacent: /^\s*\+\s*/, +- descendant: /^\s/, +- +- // selectors follow +- tagName: /^\s*(\*|[\w\-]+)(\b|$)?/, +- id: /^#([\w\-\*]+)(\b|$)/, +- className: /^\.([\w\-\*]+)(\b|$)/, +- pseudo: /^:((first|last|nth|nth-last|only)(-child|-of-type)|empty|checked|(en|dis)abled|not)(\((.*?)\))?(\b|$|(?=\s)|(?=:))/, +- attrPresence: /^\[([\w]+)\]/, +- attr: /\[((?:[\w-]*:)?[\w-]+)\s*(?:([!^$*~|]?=)\s*((['"])([^\4]*?)\4|([^'"][^\]]*?)))?\]/ +- }, +- +- // for Selector.match and Element#match +- assertions: { +- tagName: function(element, matches) { +- return matches[1].toUpperCase() == element.tagName.toUpperCase(); +- }, +- +- className: function(element, matches) { +- return Element.hasClassName(element, matches[1]); +- }, +- +- id: function(element, matches) { +- return element.id === matches[1]; +- }, +- +- attrPresence: function(element, matches) { +- return Element.hasAttribute(element, matches[1]); +- }, +- +- attr: function(element, matches) { +- var nodeValue = Element.readAttribute(element, matches[1]); +- return Selector.operators[matches[2]](nodeValue, matches[3]); +- } +- }, +- +- handlers: { +- // UTILITY FUNCTIONS +- // joins two collections +- concat: function(a, b) { +- for (var i = 0, node; node = b[i]; i++) +- a.push(node); +- return a; +- }, +- +- // marks an array of nodes for counting +- mark: function(nodes) { +- for (var i = 0, node; node = nodes[i]; i++) +- node._counted = true; +- return nodes; +- }, +- +- unmark: function(nodes) { +- for (var i = 0, node; node = nodes[i]; i++) +- node._counted = undefined; +- return nodes; +- }, +- +- // mark each child node with its position (for nth calls) +- // "ofType" flag indicates whether we're indexing for nth-of-type +- // rather than nth-child +- index: function(parentNode, reverse, ofType) { +- parentNode._counted = true; +- if (reverse) { +- for (var nodes = parentNode.childNodes, i = nodes.length - 1, j = 1; i >= 0; i--) { +- var node = nodes[i]; +- if (node.nodeType == 1 && (!ofType || node._counted)) node.nodeIndex = j++; +- } +- } else { +- for (var i = 0, j = 1, nodes = parentNode.childNodes; node = nodes[i]; i++) +- if (node.nodeType == 1 && (!ofType || node._counted)) node.nodeIndex = j++; +- } +- }, +- +- // filters out duplicates and extends all nodes +- unique: function(nodes) { +- if (nodes.length == 0) return nodes; +- var results = [], n; +- for (var i = 0, l = nodes.length; i < l; i++) +- if (!(n = nodes[i])._counted) { +- n._counted = true; +- results.push(Element.extend(n)); +- } +- return Selector.handlers.unmark(results); +- }, +- +- // COMBINATOR FUNCTIONS +- descendant: function(nodes) { +- var h = Selector.handlers; +- for (var i = 0, results = [], node; node = nodes[i]; i++) +- h.concat(results, node.getElementsByTagName('*')); +- return results; +- }, +- +- child: function(nodes) { +- var h = Selector.handlers; +- for (var i = 0, results = [], node; node = nodes[i]; i++) { +- for (var j = 0, children = [], child; child = node.childNodes[j]; j++) +- if (child.nodeType == 1 && child.tagName != '!') results.push(child); +- } +- return results; +- }, +- +- adjacent: function(nodes) { +- for (var i = 0, results = [], node; node = nodes[i]; i++) { +- var next = this.nextElementSibling(node); +- if (next) results.push(next); +- } +- return results; +- }, +- +- laterSibling: function(nodes) { +- var h = Selector.handlers; +- for (var i = 0, results = [], node; node = nodes[i]; i++) +- h.concat(results, Element.nextSiblings(node)); +- return results; +- }, +- +- nextElementSibling: function(node) { +- while (node = node.nextSibling) +- if (node.nodeType == 1) return node; +- return null; +- }, +- +- previousElementSibling: function(node) { +- while (node = node.previousSibling) +- if (node.nodeType == 1) return node; +- return null; +- }, +- +- // TOKEN FUNCTIONS +- tagName: function(nodes, root, tagName, combinator) { +- tagName = tagName.toUpperCase(); +- var results = [], h = Selector.handlers; +- if (nodes) { +- if (combinator) { +- // fastlane for ordinary descendant combinators +- if (combinator == "descendant") { +- for (var i = 0, node; node = nodes[i]; i++) +- h.concat(results, node.getElementsByTagName(tagName)); +- return results; +- } else nodes = this[combinator](nodes); +- if (tagName == "*") return nodes; +- } +- for (var i = 0, node; node = nodes[i]; i++) +- if (node.tagName.toUpperCase() == tagName) results.push(node); +- return results; +- } else return root.getElementsByTagName(tagName); +- }, +- +- id: function(nodes, root, id, combinator) { +- var targetNode = $(id), h = Selector.handlers; +- if (!targetNode) return []; +- if (!nodes && root == document) return [targetNode]; +- if (nodes) { +- if (combinator) { +- if (combinator == 'child') { +- for (var i = 0, node; node = nodes[i]; i++) +- if (targetNode.parentNode == node) return [targetNode]; +- } else if (combinator == 'descendant') { +- for (var i = 0, node; node = nodes[i]; i++) +- if (Element.descendantOf(targetNode, node)) return [targetNode]; +- } else if (combinator == 'adjacent') { +- for (var i = 0, node; node = nodes[i]; i++) +- if (Selector.handlers.previousElementSibling(targetNode) == node) +- return [targetNode]; +- } else nodes = h[combinator](nodes); +- } +- for (var i = 0, node; node = nodes[i]; i++) +- if (node == targetNode) return [targetNode]; +- return []; +- } +- return (targetNode && Element.descendantOf(targetNode, root)) ? [targetNode] : []; +- }, +- +- className: function(nodes, root, className, combinator) { +- if (nodes && combinator) nodes = this[combinator](nodes); +- return Selector.handlers.byClassName(nodes, root, className); +- }, +- +- byClassName: function(nodes, root, className) { +- if (!nodes) nodes = Selector.handlers.descendant([root]); +- var needle = ' ' + className + ' '; +- for (var i = 0, results = [], node, nodeClassName; node = nodes[i]; i++) { +- nodeClassName = node.className; +- if (nodeClassName.length == 0) continue; +- if (nodeClassName == className || (' ' + nodeClassName + ' ').include(needle)) +- results.push(node); +- } +- return results; +- }, +- +- attrPresence: function(nodes, root, attr) { +- if (!nodes) nodes = root.getElementsByTagName("*"); +- var results = []; +- for (var i = 0, node; node = nodes[i]; i++) +- if (Element.hasAttribute(node, attr)) results.push(node); +- return results; +- }, +- +- attr: function(nodes, root, attr, value, operator) { +- if (!nodes) nodes = root.getElementsByTagName("*"); +- var handler = Selector.operators[operator], results = []; +- for (var i = 0, node; node = nodes[i]; i++) { +- var nodeValue = Element.readAttribute(node, attr); +- if (nodeValue === null) continue; +- if (handler(nodeValue, value)) results.push(node); +- } +- return results; +- }, +- +- pseudo: function(nodes, name, value, root, combinator) { +- if (nodes && combinator) nodes = this[combinator](nodes); +- if (!nodes) nodes = root.getElementsByTagName("*"); +- return Selector.pseudos[name](nodes, value, root); +- } +- }, +- +- pseudos: { +- 'first-child': function(nodes, value, root) { +- for (var i = 0, results = [], node; node = nodes[i]; i++) { +- if (Selector.handlers.previousElementSibling(node)) continue; +- results.push(node); +- } +- return results; +- }, +- 'last-child': function(nodes, value, root) { +- for (var i = 0, results = [], node; node = nodes[i]; i++) { +- if (Selector.handlers.nextElementSibling(node)) continue; +- results.push(node); +- } +- return results; +- }, +- 'only-child': function(nodes, value, root) { +- var h = Selector.handlers; +- for (var i = 0, results = [], node; node = nodes[i]; i++) +- if (!h.previousElementSibling(node) && !h.nextElementSibling(node)) +- results.push(node); +- return results; +- }, +- 'nth-child': function(nodes, formula, root) { +- return Selector.pseudos.nth(nodes, formula, root); +- }, +- 'nth-last-child': function(nodes, formula, root) { +- return Selector.pseudos.nth(nodes, formula, root, true); +- }, +- 'nth-of-type': function(nodes, formula, root) { +- return Selector.pseudos.nth(nodes, formula, root, false, true); +- }, +- 'nth-last-of-type': function(nodes, formula, root) { +- return Selector.pseudos.nth(nodes, formula, root, true, true); +- }, +- 'first-of-type': function(nodes, formula, root) { +- return Selector.pseudos.nth(nodes, "1", root, false, true); +- }, +- 'last-of-type': function(nodes, formula, root) { +- return Selector.pseudos.nth(nodes, "1", root, true, true); +- }, +- 'only-of-type': function(nodes, formula, root) { +- var p = Selector.pseudos; +- return p['last-of-type'](p['first-of-type'](nodes, formula, root), formula, root); +- }, +- +- // handles the an+b logic +- getIndices: function(a, b, total) { +- if (a == 0) return b > 0 ? [b] : []; +- return $R(1, total).inject([], function(memo, i) { +- if (0 == (i - b) % a && (i - b) / a >= 0) memo.push(i); +- return memo; +- }); +- }, +- +- // handles nth(-last)-child, nth(-last)-of-type, and (first|last)-of-type +- nth: function(nodes, formula, root, reverse, ofType) { +- if (nodes.length == 0) return []; +- if (formula == 'even') formula = '2n+0'; +- if (formula == 'odd') formula = '2n+1'; +- var h = Selector.handlers, results = [], indexed = [], m; +- h.mark(nodes); +- for (var i = 0, node; node = nodes[i]; i++) { +- if (!node.parentNode._counted) { +- h.index(node.parentNode, reverse, ofType); +- indexed.push(node.parentNode); +- } +- } +- if (formula.match(/^\d+$/)) { // just a number +- formula = Number(formula); +- for (var i = 0, node; node = nodes[i]; i++) +- if (node.nodeIndex == formula) results.push(node); +- } else if (m = formula.match(/^(-?\d*)?n(([+-])(\d+))?/)) { // an+b +- if (m[1] == "-") m[1] = -1; +- var a = m[1] ? Number(m[1]) : 1; +- var b = m[2] ? Number(m[2]) : 0; +- var indices = Selector.pseudos.getIndices(a, b, nodes.length); +- for (var i = 0, node, l = indices.length; node = nodes[i]; i++) { +- for (var j = 0; j < l; j++) +- if (node.nodeIndex == indices[j]) results.push(node); +- } +- } +- h.unmark(nodes); +- h.unmark(indexed); +- return results; +- }, +- +- 'empty': function(nodes, value, root) { +- for (var i = 0, results = [], node; node = nodes[i]; i++) { +- // IE treats comments as element nodes +- if (node.tagName == '!' || (node.firstChild && !node.innerHTML.match(/^\s*$/))) continue; +- results.push(node); +- } +- return results; +- }, +- +- 'not': function(nodes, selector, root) { +- var h = Selector.handlers, selectorType, m; +- var exclusions = new Selector(selector).findElements(root); +- h.mark(exclusions); +- for (var i = 0, results = [], node; node = nodes[i]; i++) +- if (!node._counted) results.push(node); +- h.unmark(exclusions); +- return results; +- }, +- +- 'enabled': function(nodes, value, root) { +- for (var i = 0, results = [], node; node = nodes[i]; i++) +- if (!node.disabled) results.push(node); +- return results; +- }, +- +- 'disabled': function(nodes, value, root) { +- for (var i = 0, results = [], node; node = nodes[i]; i++) +- if (node.disabled) results.push(node); +- return results; +- }, +- +- 'checked': function(nodes, value, root) { +- for (var i = 0, results = [], node; node = nodes[i]; i++) +- if (node.checked) results.push(node); +- return results; +- } +- }, +- +- operators: { +- '=': function(nv, v) { return nv == v; }, +- '!=': function(nv, v) { return nv != v; }, +- '^=': function(nv, v) { return nv.startsWith(v); }, +- '$=': function(nv, v) { return nv.endsWith(v); }, +- '*=': function(nv, v) { return nv.include(v); }, +- '~=': function(nv, v) { return (' ' + nv + ' ').include(' ' + v + ' '); }, +- '|=': function(nv, v) { return ('-' + nv.toUpperCase() + '-').include('-' + v.toUpperCase() + '-'); } +- }, +- +- matchElements: function(elements, expression) { +- var matches = new Selector(expression).findElements(), h = Selector.handlers; +- h.mark(matches); +- for (var i = 0, results = [], element; element = elements[i]; i++) +- if (element._counted) results.push(element); +- h.unmark(matches); +- return results; +- }, +- +- findElement: function(elements, expression, index) { +- if (Object.isNumber(expression)) { +- index = expression; expression = false; +- } +- return Selector.matchElements(elements, expression || '*')[index || 0]; +- }, +- +- findChildElements: function(element, expressions) { +- var exprs = expressions.join(','), expressions = []; +- exprs.scan(/(([\w#:.~>+()\s-]+|\*|\[.*?\])+)\s*(,|$)/, function(m) { +- expressions.push(m[1].strip()); +- }); +- var results = [], h = Selector.handlers; +- for (var i = 0, l = expressions.length, selector; i < l; i++) { +- selector = new Selector(expressions[i].strip()); +- h.concat(results, selector.findElements(element)); +- } +- return (l > 1) ? h.unique(results) : results; +- } +-}); +- +-function $$() { +- return Selector.findChildElements(document, $A(arguments)); +-} +-var Form = { +- reset: function(form) { +- $(form).reset(); +- return form; +- }, +- +- serializeElements: function(elements, options) { +- if (typeof options != 'object') options = { hash: !!options }; +- else if (options.hash === undefined) options.hash = true; +- var key, value, submitted = false, submit = options.submit; +- +- var data = elements.inject({ }, function(result, element) { +- if (!element.disabled && element.name) { +- key = element.name; value = $(element).getValue(); +- if (value != null && (element.type != 'submit' || (!submitted && +- submit !== false && (!submit || key == submit) && (submitted = true)))) { +- if (key in result) { +- // a key is already present; construct an array of values +- if (!Object.isArray(result[key])) result[key] = [result[key]]; +- result[key].push(value); +- } +- else result[key] = value; +- } +- } +- return result; +- }); +- +- return options.hash ? data : Object.toQueryString(data); +- } +-}; +- +-Form.Methods = { +- serialize: function(form, options) { +- return Form.serializeElements(Form.getElements(form), options); +- }, +- +- getElements: function(form) { +- return $A($(form).getElementsByTagName('*')).inject([], +- function(elements, child) { +- if (Form.Element.Serializers[child.tagName.toLowerCase()]) +- elements.push(Element.extend(child)); +- return elements; +- } +- ); +- }, +- +- getInputs: function(form, typeName, name) { +- form = $(form); +- var inputs = form.getElementsByTagName('input'); +- +- if (!typeName && !name) return $A(inputs).map(Element.extend); +- +- for (var i = 0, matchingInputs = [], length = inputs.length; i < length; i++) { +- var input = inputs[i]; +- if ((typeName && input.type != typeName) || (name && input.name != name)) +- continue; +- matchingInputs.push(Element.extend(input)); +- } +- +- return matchingInputs; +- }, +- +- disable: function(form) { +- form = $(form); +- Form.getElements(form).invoke('disable'); +- return form; +- }, +- +- enable: function(form) { +- form = $(form); +- Form.getElements(form).invoke('enable'); +- return form; +- }, +- +- findFirstElement: function(form) { +- var elements = $(form).getElements().findAll(function(element) { +- return 'hidden' != element.type && !element.disabled; +- }); +- var firstByIndex = elements.findAll(function(element) { +- return element.hasAttribute('tabIndex') && element.tabIndex >= 0; +- }).sortBy(function(element) { return element.tabIndex }).first(); +- +- return firstByIndex ? firstByIndex : elements.find(function(element) { +- return ['input', 'select', 'textarea'].include(element.tagName.toLowerCase()); +- }); +- }, +- +- focusFirstElement: function(form) { +- form = $(form); +- form.findFirstElement().activate(); +- return form; +- }, +- +- request: function(form, options) { +- form = $(form), options = Object.clone(options || { }); +- +- var params = options.parameters, action = form.readAttribute('action') || ''; +- if (action.blank()) action = window.location.href; +- options.parameters = form.serialize(true); +- +- if (params) { +- if (Object.isString(params)) params = params.toQueryParams(); +- Object.extend(options.parameters, params); +- } +- +- if (form.hasAttribute('method') && !options.method) +- options.method = form.method; +- +- return new Ajax.Request(action, options); +- } +-}; +- +-/*--------------------------------------------------------------------------*/ +- +-Form.Element = { +- focus: function(element) { +- $(element).focus(); +- return element; +- }, +- +- select: function(element) { +- $(element).select(); +- return element; +- } +-}; +- +-Form.Element.Methods = { +- serialize: function(element) { +- element = $(element); +- if (!element.disabled && element.name) { +- var value = element.getValue(); +- if (value != undefined) { +- var pair = { }; +- pair[element.name] = value; +- return Object.toQueryString(pair); +- } +- } +- return ''; +- }, +- +- getValue: function(element) { +- element = $(element); +- var method = element.tagName.toLowerCase(); +- return Form.Element.Serializers[method](element); +- }, +- +- setValue: function(element, value) { +- element = $(element); +- var method = element.tagName.toLowerCase(); +- Form.Element.Serializers[method](element, value); +- return element; +- }, +- +- clear: function(element) { +- $(element).value = ''; +- return element; +- }, +- +- present: function(element) { +- return $(element).value != ''; +- }, +- +- activate: function(element) { +- element = $(element); +- try { +- element.focus(); +- if (element.select && (element.tagName.toLowerCase() != 'input' || +- !['button', 'reset', 'submit'].include(element.type))) +- element.select(); +- } catch (e) { } +- return element; +- }, +- +- disable: function(element) { +- element = $(element); +- element.blur(); +- element.disabled = true; +- return element; +- }, +- +- enable: function(element) { +- element = $(element); +- element.disabled = false; +- return element; +- } +-}; +- +-/*--------------------------------------------------------------------------*/ +- +-var Field = Form.Element; +-var $F = Form.Element.Methods.getValue; +- +-/*--------------------------------------------------------------------------*/ +- +-Form.Element.Serializers = { +- input: function(element, value) { +- switch (element.type.toLowerCase()) { +- case 'checkbox': +- case 'radio': +- return Form.Element.Serializers.inputSelector(element, value); +- default: +- return Form.Element.Serializers.textarea(element, value); +- } +- }, +- +- inputSelector: function(element, value) { +- if (value === undefined) return element.checked ? element.value : null; +- else element.checked = !!value; +- }, +- +- textarea: function(element, value) { +- if (value === undefined) return element.value; +- else element.value = value; +- }, +- +- select: function(element, index) { +- if (index === undefined) +- return this[element.type == 'select-one' ? +- 'selectOne' : 'selectMany'](element); +- else { +- var opt, value, single = !Object.isArray(index); +- for (var i = 0, length = element.length; i < length; i++) { +- opt = element.options[i]; +- value = this.optionValue(opt); +- if (single) { +- if (value == index) { +- opt.selected = true; +- return; +- } +- } +- else opt.selected = index.include(value); +- } +- } +- }, +- +- selectOne: function(element) { +- var index = element.selectedIndex; +- return index >= 0 ? this.optionValue(element.options[index]) : null; +- }, +- +- selectMany: function(element) { +- var values, length = element.length; +- if (!length) return null; +- +- for (var i = 0, values = []; i < length; i++) { +- var opt = element.options[i]; +- if (opt.selected) values.push(this.optionValue(opt)); +- } +- return values; +- }, +- +- optionValue: function(opt) { +- // extend element because hasAttribute may not be native +- return Element.extend(opt).hasAttribute('value') ? opt.value : opt.text; +- } +-}; +- +-/*--------------------------------------------------------------------------*/ +- +-Abstract.TimedObserver = Class.create(PeriodicalExecuter, { +- initialize: function($super, element, frequency, callback) { +- $super(callback, frequency); +- this.element = $(element); +- this.lastValue = this.getValue(); +- }, +- +- execute: function() { +- var value = this.getValue(); +- if (Object.isString(this.lastValue) && Object.isString(value) ? +- this.lastValue != value : String(this.lastValue) != String(value)) { +- this.callback(this.element, value); +- this.lastValue = value; +- } +- } +-}); +- +-Form.Element.Observer = Class.create(Abstract.TimedObserver, { +- getValue: function() { +- return Form.Element.getValue(this.element); +- } +-}); +- +-Form.Observer = Class.create(Abstract.TimedObserver, { +- getValue: function() { +- return Form.serialize(this.element); +- } +-}); +- +-/*--------------------------------------------------------------------------*/ +- +-Abstract.EventObserver = Class.create({ +- initialize: function(element, callback) { +- this.element = $(element); +- this.callback = callback; +- +- this.lastValue = this.getValue(); +- if (this.element.tagName.toLowerCase() == 'form') +- this.registerFormCallbacks(); +- else +- this.registerCallback(this.element); +- }, +- +- onElementEvent: function() { +- var value = this.getValue(); +- if (this.lastValue != value) { +- this.callback(this.element, value); +- this.lastValue = value; +- } +- }, +- +- registerFormCallbacks: function() { +- Form.getElements(this.element).each(this.registerCallback, this); +- }, +- +- registerCallback: function(element) { +- if (element.type) { +- switch (element.type.toLowerCase()) { +- case 'checkbox': +- case 'radio': +- Event.observe(element, 'click', this.onElementEvent.bind(this)); +- break; +- default: +- Event.observe(element, 'change', this.onElementEvent.bind(this)); +- break; +- } +- } +- } +-}); +- +-Form.Element.EventObserver = Class.create(Abstract.EventObserver, { +- getValue: function() { +- return Form.Element.getValue(this.element); +- } +-}); +- +-Form.EventObserver = Class.create(Abstract.EventObserver, { +- getValue: function() { +- return Form.serialize(this.element); +- } +-}); +-if (!window.Event) var Event = { }; +- +-Object.extend(Event, { +- KEY_BACKSPACE: 8, +- KEY_TAB: 9, +- KEY_RETURN: 13, +- KEY_ESC: 27, +- KEY_LEFT: 37, +- KEY_UP: 38, +- KEY_RIGHT: 39, +- KEY_DOWN: 40, +- KEY_DELETE: 46, +- KEY_HOME: 36, +- KEY_END: 35, +- KEY_PAGEUP: 33, +- KEY_PAGEDOWN: 34, +- KEY_INSERT: 45, +- +- cache: { }, +- +- relatedTarget: function(event) { +- var element; +- switch(event.type) { +- case 'mouseover': element = event.fromElement; break; +- case 'mouseout': element = event.toElement; break; +- default: return null; +- } +- return Element.extend(element); +- } +-}); +- +-Event.Methods = (function() { +- var isButton; +- +- if (Prototype.Browser.IE) { +- var buttonMap = { 0: 1, 1: 4, 2: 2 }; +- isButton = function(event, code) { +- return event.button == buttonMap[code]; +- }; +- +- } else if (Prototype.Browser.WebKit) { +- isButton = function(event, code) { +- switch (code) { +- case 0: return event.which == 1 && !event.metaKey; +- case 1: return event.which == 1 && event.metaKey; +- default: return false; +- } +- }; +- +- } else { +- isButton = function(event, code) { +- return event.which ? (event.which === code + 1) : (event.button === code); +- }; +- } +- +- return { +- isLeftClick: function(event) { return isButton(event, 0) }, +- isMiddleClick: function(event) { return isButton(event, 1) }, +- isRightClick: function(event) { return isButton(event, 2) }, +- +- element: function(event) { +- var node = Event.extend(event).target; +- return Element.extend(node.nodeType == Node.TEXT_NODE ? node.parentNode : node); +- }, +- +- findElement: function(event, expression) { +- var element = Event.element(event); +- return element.match(expression) ? element : element.up(expression); +- }, +- +- pointer: function(event) { +- return { +- x: event.pageX || (event.clientX + +- (document.documentElement.scrollLeft || document.body.scrollLeft)), +- y: event.pageY || (event.clientY + +- (document.documentElement.scrollTop || document.body.scrollTop)) +- }; +- }, +- +- pointerX: function(event) { return Event.pointer(event).x }, +- pointerY: function(event) { return Event.pointer(event).y }, +- +- stop: function(event) { +- Event.extend(event); +- event.preventDefault(); +- event.stopPropagation(); +- event.stopped = true; +- } +- }; +-})(); +- +-Event.extend = (function() { +- var methods = Object.keys(Event.Methods).inject({ }, function(m, name) { +- m[name] = Event.Methods[name].methodize(); +- return m; +- }); +- +- if (Prototype.Browser.IE) { +- Object.extend(methods, { +- stopPropagation: function() { this.cancelBubble = true }, +- preventDefault: function() { this.returnValue = false }, +- inspect: function() { return "[object Event]" } +- }); +- +- return function(event) { +- if (!event) return false; +- if (event._extendedByPrototype) return event; +- +- event._extendedByPrototype = Prototype.emptyFunction; +- var pointer = Event.pointer(event); +- Object.extend(event, { +- target: event.srcElement, +- relatedTarget: Event.relatedTarget(event), +- pageX: pointer.x, +- pageY: pointer.y +- }); +- return Object.extend(event, methods); +- }; +- +- } else { +- Event.prototype = Event.prototype || document.createEvent("HTMLEvents").__proto__; +- Object.extend(Event.prototype, methods); +- return Prototype.K; +- } +-})(); +- +-Object.extend(Event, (function() { +- var cache = Event.cache; +- +- function getEventID(element) { +- if (element._eventID) return element._eventID; +- arguments.callee.id = arguments.callee.id || 1; +- return element._eventID = ++arguments.callee.id; +- } +- +- function getDOMEventName(eventName) { +- if (eventName && eventName.include(':')) return "dataavailable"; +- return eventName; +- } +- +- function getCacheForID(id) { +- return cache[id] = cache[id] || { }; +- } +- +- function getWrappersForEventName(id, eventName) { +- var c = getCacheForID(id); +- return c[eventName] = c[eventName] || []; +- } +- +- function createWrapper(element, eventName, handler) { +- var id = getEventID(element); +- var c = getWrappersForEventName(id, eventName); +- if (c.pluck("handler").include(handler)) return false; +- +- var wrapper = function(event) { +- if (!Event || !Event.extend || +- (event.eventName && event.eventName != eventName)) +- return false; +- +- Event.extend(event); +- handler.call(element, event) +- }; +- +- wrapper.handler = handler; +- c.push(wrapper); +- return wrapper; +- } +- +- function findWrapper(id, eventName, handler) { +- var c = getWrappersForEventName(id, eventName); +- return c.find(function(wrapper) { return wrapper.handler == handler }); +- } +- +- function destroyWrapper(id, eventName, handler) { +- var c = getCacheForID(id); +- if (!c[eventName]) return false; +- c[eventName] = c[eventName].without(findWrapper(id, eventName, handler)); +- } +- +- function destroyCache() { +- for (var id in cache) +- for (var eventName in cache[id]) +- cache[id][eventName] = null; +- } +- +- if (window.attachEvent) { +- window.attachEvent("onunload", destroyCache); +- } +- +- return { +- observe: function(element, eventName, handler) { +- element = $(element); +- var name = getDOMEventName(eventName); +- +- var wrapper = createWrapper(element, eventName, handler); +- if (!wrapper) return element; +- +- if (element.addEventListener) { +- element.addEventListener(name, wrapper, false); +- } else { +- element.attachEvent("on" + name, wrapper); +- } +- +- return element; +- }, +- +- stopObserving: function(element, eventName, handler) { +- element = $(element); +- var id = getEventID(element), name = getDOMEventName(eventName); +- +- if (!handler && eventName) { +- getWrappersForEventName(id, eventName).each(function(wrapper) { +- element.stopObserving(eventName, wrapper.handler); +- }); +- return element; +- +- } else if (!eventName) { +- Object.keys(getCacheForID(id)).each(function(eventName) { +- element.stopObserving(eventName); +- }); +- return element; +- } +- +- var wrapper = findWrapper(id, eventName, handler); +- if (!wrapper) return element; +- +- if (element.removeEventListener) { +- element.removeEventListener(name, wrapper, false); +- } else { +- element.detachEvent("on" + name, wrapper); +- } +- +- destroyWrapper(id, eventName, handler); +- +- return element; +- }, +- +- fire: function(element, eventName, memo) { +- element = $(element); +- if (element == document && document.createEvent && !element.dispatchEvent) +- element = document.documentElement; +- +- if (document.createEvent) { +- var event = document.createEvent("HTMLEvents"); +- event.initEvent("dataavailable", true, true); +- } else { +- var event = document.createEventObject(); +- event.eventType = "ondataavailable"; +- } +- +- event.eventName = eventName; +- event.memo = memo || { }; +- +- if (document.createEvent) { +- element.dispatchEvent(event); +- } else { +- element.fireEvent(event.eventType, event); +- } +- +- return event; +- } +- }; +-})()); +- +-Object.extend(Event, Event.Methods); +- +-Element.addMethods({ +- fire: Event.fire, +- observe: Event.observe, +- stopObserving: Event.stopObserving +-}); +- +-Object.extend(document, { +- fire: Element.Methods.fire.methodize(), +- observe: Element.Methods.observe.methodize(), +- stopObserving: Element.Methods.stopObserving.methodize() +-}); +- +-(function() { +- /* Support for the DOMContentLoaded event is based on work by Dan Webb, +- Matthias Miller, Dean Edwards and John Resig. */ +- +- var timer, fired = false; +- +- function fireContentLoadedEvent() { +- if (fired) return; +- if (timer) window.clearInterval(timer); +- document.fire("dom:loaded"); +- fired = true; +- } +- +- if (document.addEventListener) { +- if (Prototype.Browser.WebKit) { +- timer = window.setInterval(function() { +- if (/loaded|complete/.test(document.readyState)) +- fireContentLoadedEvent(); +- }, 0); +- +- Event.observe(window, "load", fireContentLoadedEvent); +- +- } else { +- document.addEventListener("DOMContentLoaded", +- fireContentLoadedEvent, false); +- } +- +- } else { +- document.write("