Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ai
noblogs-wp
Commits
09fcbfad
Commit
09fcbfad
authored
Apr 20, 2012
by
lechuck
Committed by
lechuck
Sep 20, 2015
Browse files
update wordpress 3.3.2
parent
a7cfa472
Changes
27
Expand all
Hide whitespace changes
Inline
Side-by-side
readme.html
View file @
09fcbfad
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
<body>
<body>
<h1
id=
"logo"
>
<h1
id=
"logo"
>
<a
href=
"http://wordpress.org/"
><img
alt=
"WordPress"
src=
"wp-admin/images/wordpress-logo.png"
width=
"250"
height=
"68"
/></a>
<a
href=
"http://wordpress.org/"
><img
alt=
"WordPress"
src=
"wp-admin/images/wordpress-logo.png"
width=
"250"
height=
"68"
/></a>
<br
/>
Version 3.3.
1
<br
/>
Version 3.3.
2
</h1>
</h1>
<p
style=
"text-align: center"
>
Semantic Personal Publishing Platform
</p>
<p
style=
"text-align: center"
>
Semantic Personal Publishing Platform
</p>
...
...
wp-admin/about.php
View file @
09fcbfad
...
@@ -34,7 +34,11 @@ include( './admin-header.php' );
...
@@ -34,7 +34,11 @@ include( './admin-header.php' );
</h2>
</h2>
<div
class=
"changelog point-releases"
>
<div
class=
"changelog point-releases"
>
<h3>
<?php
echo
_n
(
'Maintenance and Security Release'
,
'Maintenance and Security Releases'
,
1
);
?>
</h3>
<h3>
<?php
echo
_n
(
'Maintenance and Security Release'
,
'Maintenance and Security Releases'
,
2
);
?>
</h3>
<p>
<?php
printf
(
_n
(
'<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.'
,
'<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.'
,
12
),
'3.3.2'
,
number_format_i18n
(
12
)
);
?>
<?php
printf
(
__
(
'For more information, see <a href="%s">the release notes</a>.'
),
'http://codex.wordpress.org/Version_3.3.2'
);
?>
</p>
<p>
<?php
printf
(
_n
(
'<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bug.'
,
<p>
<?php
printf
(
_n
(
'<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bug.'
,
'<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs.'
,
15
),
'3.3.1'
,
number_format_i18n
(
15
)
);
?>
'<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs.'
,
15
),
'3.3.1'
,
number_format_i18n
(
15
)
);
?>
<?php
printf
(
__
(
'For more information, see <a href="%s">the release notes</a>.'
),
'http://codex.wordpress.org/Version_3.3.1'
);
?>
<?php
printf
(
__
(
'For more information, see <a href="%s">the release notes</a>.'
),
'http://codex.wordpress.org/Version_3.3.1'
);
?>
...
...
wp-admin/includes/update-core.php
View file @
09fcbfad
...
@@ -406,7 +406,7 @@ function update_core($from, $to) {
...
@@ -406,7 +406,7 @@ function update_core($from, $to) {
$mysql_version
=
$wpdb
->
db_version
();
$mysql_version
=
$wpdb
->
db_version
();
$required_php_version
=
'5.2.4'
;
$required_php_version
=
'5.2.4'
;
$required_mysql_version
=
'5.0'
;
$required_mysql_version
=
'5.0'
;
$wp_version
=
'3.3.
1
'
;
$wp_version
=
'3.3.
2
'
;
$php_compat
=
version_compare
(
$php_version
,
$required_php_version
,
'>='
);
$php_compat
=
version_compare
(
$php_version
,
$required_php_version
,
'>='
);
if
(
file_exists
(
WP_CONTENT_DIR
.
'/db.php'
)
&&
empty
(
$wpdb
->
is_mysql
)
)
if
(
file_exists
(
WP_CONTENT_DIR
.
'/db.php'
)
&&
empty
(
$wpdb
->
is_mysql
)
)
$mysql_compat
=
true
;
$mysql_compat
=
true
;
...
...
wp-admin/plugins.php
View file @
09fcbfad
...
@@ -154,6 +154,10 @@ if ( $action ) {
...
@@ -154,6 +154,10 @@ if ( $action ) {
wp_die
(
__
(
'You do not have sufficient permissions to deactivate plugins for this site.'
));
wp_die
(
__
(
'You do not have sufficient permissions to deactivate plugins for this site.'
));
check_admin_referer
(
'deactivate-plugin_'
.
$plugin
);
check_admin_referer
(
'deactivate-plugin_'
.
$plugin
);
if
(
!
is_network_admin
()
&&
is_plugin_active_for_network
(
$plugin
)
)
{
wp_redirect
(
self_admin_url
(
"plugins.php?plugin_status=
$status
&paged=
$page
&s=
$s
"
)
);
exit
;
}
deactivate_plugins
(
$plugin
);
deactivate_plugins
(
$plugin
);
update_option
(
'recently_activated'
,
array
(
$plugin
=>
time
())
+
(
array
)
get_option
(
'recently_activated'
));
update_option
(
'recently_activated'
,
array
(
$plugin
=>
time
())
+
(
array
)
get_option
(
'recently_activated'
));
if
(
headers_sent
()
)
if
(
headers_sent
()
)
...
@@ -169,7 +173,13 @@ if ( $action ) {
...
@@ -169,7 +173,13 @@ if ( $action ) {
check_admin_referer
(
'bulk-plugins'
);
check_admin_referer
(
'bulk-plugins'
);
$plugins
=
isset
(
$_POST
[
'checked'
]
)
?
(
array
)
$_POST
[
'checked'
]
:
array
();
$plugins
=
isset
(
$_POST
[
'checked'
]
)
?
(
array
)
$_POST
[
'checked'
]
:
array
();
$plugins
=
array_filter
(
$plugins
,
'is_plugin_active'
);
//Do not deactivate plugins which are already deactivated.
// Do not deactivate plugins which are already deactivated.
if
(
is_network_admin
()
)
{
$plugins
=
array_filter
(
$plugins
,
'is_plugin_active_for_network'
);
}
else
{
$plugins
=
array_filter
(
$plugins
,
'is_plugin_active'
);
$plugins
=
array_diff
(
$plugins
,
array_filter
(
$plugins
,
'is_plugin_active_for_network'
)
);
}
if
(
empty
(
$plugins
)
)
{
if
(
empty
(
$plugins
)
)
{
wp_redirect
(
self_admin_url
(
"plugins.php?plugin_status=
$status
&paged=
$page
&s=
$s
"
)
);
wp_redirect
(
self_admin_url
(
"plugins.php?plugin_status=
$status
&paged=
$page
&s=
$s
"
)
);
exit
;
exit
;
...
...
wp-admin/press-this.php
View file @
09fcbfad
...
@@ -390,24 +390,15 @@ var photostorage = false;
...
@@ -390,24 +390,15 @@ var photostorage = false;
function
setup_photo_actions
()
{
function
setup_photo_actions
()
{
jQuery
(
'
.close
'
).
click
(
function
()
{
jQuery
(
'
.close
'
).
click
(
function
()
{
jQuery
(
'
#extra-fields
'
).
hide
();
jQuery
(
'
#extra-fields
'
).
hide
();
jQuery
(
'
body
'
).
append
(
jQuery
(
'
#photo-add-url-div
'
)
);
jQuery
(
'
#extra-fields
'
).
html
(
''
);
jQuery
(
'
#extra-fields
'
).
html
(
''
);
});
});
jQuery
(
'
.refresh
'
).
click
(
function
()
{
jQuery
(
'
.refresh
'
).
click
(
function
()
{
photostorage
=
false
;
photostorage
=
false
;
jQuery
(
'
body
'
).
append
(
jQuery
(
'
#photo-add-url-div
'
)
);
show
(
'
photo
'
);
show
(
'
photo
'
);
});
});
jQuery
(
'
#photo-add-url
'
).
click
(
function
(){
jQuery
(
'
#photo-add-url
'
).
click
(
function
(){
var
container
=
jQuery
(
'
#img_container
'
);
var
form
=
jQuery
(
'
#photo-add-url-div
'
).
clone
();
jQuery
(
'
#img_container
'
).
empty
().
append
(
form
.
show
()
);
if
(
container
.
children
(
'
#photo-add-url-div:visible
'
).
length
)
{
container
.
children
(
'
a
'
).
show
();
jQuery
(
'
#photo-add-url-div
'
).
hide
();
}
else
{
container
.
children
(
'
a
'
).
hide
();
container
.
append
(
jQuery
(
'
#photo-add-url-div
'
).
show
()
);
}
});
});
jQuery
(
'
#waiting
'
).
hide
();
jQuery
(
'
#waiting
'
).
hide
();
jQuery
(
'
#extra-fields
'
).
show
();
jQuery
(
'
#extra-fields
'
).
show
();
...
...
wp-admin/setup-config.php
View file @
09fcbfad
...
@@ -44,10 +44,13 @@ define('WP_DEBUG', false);
...
@@ -44,10 +44,13 @@ define('WP_DEBUG', false);
require_once
(
ABSPATH
.
WPINC
.
'/load.php'
);
require_once
(
ABSPATH
.
WPINC
.
'/load.php'
);
require_once
(
ABSPATH
.
WPINC
.
'/version.php'
);
require_once
(
ABSPATH
.
WPINC
.
'/version.php'
);
wp_check_php_mysql_versions
();
wp_check_php_mysql_versions
();
wp_unregister_GLOBALS
();
require_once
(
ABSPATH
.
WPINC
.
'/compat.php'
);
require_once
(
ABSPATH
.
WPINC
.
'/compat.php'
);
require_once
(
ABSPATH
.
WPINC
.
'/functions.php'
);
require_once
(
ABSPATH
.
WPINC
.
'/functions.php'
);
require_once
(
ABSPATH
.
WPINC
.
'/class-wp-error.php'
);
require_once
(
ABSPATH
.
WPINC
.
'/class-wp-error.php'
);
require_once
(
ABSPATH
.
WPINC
.
'/formatting.php'
);
wp_magic_quotes
();
if
(
!
file_exists
(
ABSPATH
.
'wp-config-sample.php'
))
if
(
!
file_exists
(
ABSPATH
.
'wp-config-sample.php'
))
wp_die
(
'Sorry, I need a wp-config-sample.php file to work from. Please re-upload this file from your WordPress installation.'
);
wp_die
(
'Sorry, I need a wp-config-sample.php file to work from. Please re-upload this file from your WordPress installation.'
);
...
...
wp-comments-post.php
View file @
09fcbfad
...
@@ -100,6 +100,6 @@ if ( !$user->ID ) {
...
@@ -100,6 +100,6 @@ if ( !$user->ID ) {
$location
=
empty
(
$_POST
[
'redirect_to'
])
?
get_comment_link
(
$comment_id
)
:
$_POST
[
'redirect_to'
]
.
'#comment-'
.
$comment_id
;
$location
=
empty
(
$_POST
[
'redirect_to'
])
?
get_comment_link
(
$comment_id
)
:
$_POST
[
'redirect_to'
]
.
'#comment-'
.
$comment_id
;
$location
=
apply_filters
(
'comment_post_redirect'
,
$location
,
$comment
);
$location
=
apply_filters
(
'comment_post_redirect'
,
$location
,
$comment
);
wp_redirect
(
$location
);
wp_
safe_
redirect
(
$location
);
exit
;
exit
;
?>
?>
wp-content/themes/twentyeleven/languages/twentyeleven.pot
View file @
09fcbfad
# Copyright (C) 201
0 Twenty Eleven
# Copyright (C) 201
2 the WordPress team
# This file is distributed under the
same license as the Twenty Eleven packag
e.
# This file is distributed under the
GNU General Public Licens
e.
msgid ""
msgid ""
msgstr ""
msgstr ""
"Project-Id-Version: Twenty Eleven 1.3\n"
"Project-Id-Version: Twenty Eleven 1.3\n"
"Report-Msgid-Bugs-To: http://wordpress.org/tag/twentyeleven\n"
"Report-Msgid-Bugs-To: http://wordpress.org/tag
s
/twentyeleven\n"
"POT-Creation-Date: 201
1-1
2-10 1
9:47:15
+00:00\n"
"POT-Creation-Date: 201
2-0
2-10 1
6:30:53
+00:00\n"
"MIME-Version: 1.0\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 201
0
-MO-DA HO:MI+ZONE\n"
"PO-Revision-Date: 201
2
-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
#: content-quote.php:14 showcase.php:115 showcase.php:194 content.php:15
#: 404.php:17
#: content.php:19 content-image.php:15 content-gallery.php:16
msgid "This is somewhat embarrassing, isn’t it?"
#: content-gallery.php:48 content-aside.php:16 content-status.php:15
#: inc/widgets.php:89 content-link.php:16 content-featured.php:14
msgid "Permalink to %s"
msgstr ""
msgstr ""
#: content-quote.php:15
#: 404.php:21
msgid "Quote"
msgid ""
"It seems we can’t find what you’re looking for. Perhaps "
"searching, or one of the links below, can help."
msgstr ""
msgstr ""
#: content-quote.php:24 content.php:30 content-image.php:21
#: 404.php:28
#: content-aside.php:22 content-status.php:21 content-link.php:22
msgid "Most Used Categories"
msgid "Reply"
msgstr ""
msgstr ""
#: content-quote.php:24 content.php:30 content-image.php:21
#. translators: %1$s: smilie
#: content-aside.php:22 content-status.php:21 content-link.php:22
#: 404.php:36
msgctxt "comments number"
msgid "Try looking in the monthly archives. %1$s"
msgid "1"
msgstr ""
msgstr ""
#: content-quote.php:24 content.php:30 content-image.php:21
#: archive.php:25
#: content-aside.php:22 content-status.php:21 content-link.php:22
msgid "Daily Archives: %s"
msgctxt "comments number"
msgid "%"
msgstr ""
msgstr ""
#: content-quote.php:35 content.php:41 content-image.php:27
#: archive.php:27
#: content-gallery.php:32 content-aside.php:33 functions.php:327
msgid "Monthly Archives: %s"
#: content-status.php:34 content-link.php:33
msgid "Continue reading <span class=\"meta-nav\">→</span>"
msgstr ""
msgstr ""
#: content-quote.php:36 content.php:42 content-image.php:28
#: archive.php:27
#: content-single.php:24 content-intro.php:18 content-gallery.php:54
msgctxt "monthly archives date format"
#: content-aside.php:34 image.php:90 content-status.php:35 content-page.php:18
msgid "F Y"
#: content-link.php:34 content-featured.php:23
msgid "Pages:"
msgstr ""
msgstr ""
#. translators: used between list items, there is a space after the comma
#: archive.php:29
#: content-quote.php:44 content-quote.php:54 content.php:51 content.php:61
msgid "Yearly Archives: %s"
#: content-image.php:47 content-image.php:56 content-single.php:30
#: content-single.php:33 content-gallery.php:62 content-gallery.php:72
#: content-featured.php:29 content-featured.php:38
msgid ", "
msgstr ""
msgstr ""
#:
content-quote.php:48 content.php:55 content-imag
e.php:
51
#:
archiv
e.php:
29
#: content-gallery.php:66
msgctxt "yearly archives date format"
msgid "
<span class=\"%1$s\">Posted in</span> %2$s
"
msgid "
Y
"
msgstr ""
msgstr ""
#: content-quote.php:60 content.php:67 content-image.php:59
#: archive.php:31
#: content-gallery.php:78
msgid "Blog Archives"
msgid "<span class=\"%1$s\">Tagged</span> %2$s"
msgstr ""
msgstr ""
#: content-quote.php:69 showcase.php:196 content.php:77 content-image.php:64
#: archive.php:57 author.php:74 category.php:50 index.php:37 search.php:42
#: content-gallery.php:87 content-aside.php:42 content-status.php:43
#: tag.php:50
#: content-link.php:42
msgid "Nothing Found"
msgid "Leave a reply"
msgstr ""
msgstr ""
#:
content-quote.php:69 showcase.php:196 content.php:77 content-im
ag
e
.php:
6
4
#:
archive.php:61 author.php:78 category.php:54 index.php:41 t
ag.php:
5
4
#: content-gallery.php:87 content-aside.php:42 content-status.php:43
msgid ""
#: content-link.php:42
"Apologies, but no results were found for the requested archive. Perhaps "
msgid "<b>1</b> Reply
"
"searching will help find a related post.
"
msgstr ""
msgstr ""
#: content-quote.php:69 showcase.php:196 content.php:77 content-image.php:64
#: author.php:28
#: content-gallery.php:87 content-aside.php:42 content-status.php:43
msgid "Author Archives: %s"
#: content-link.php:42
msgid "<b>%</b> Replies"
msgstr ""
msgstr ""
#: content-quote.php:72 content.php:80 content-image.php:68
#: author.php:49 content-single.php:60
#: content-single.php:52 content-intro.php:19 content-gallery.php:90
msgid "About %s"
#: content-aside.php:44 image.php:41 functions.php:505 functions.php:533
#: content-status.php:45 content-page.php:21 content-link.php:44
#: content-featured.php:45
msgid "Edit"
msgstr ""
msgstr ""
#:
showcase
.php:
72
#:
category
.php:
19
msgid "
Featured Post
"
msgid "
Category Archives: %s
"
msgstr ""
msgstr ""
#: showcase.php:145
#: comments.php:17
msgid "Featuring: %s"
msgid ""
"This post is password protected. Enter the password to view any comments."
msgstr ""
msgstr ""
#: showcase.php:155
#: comments.php:33
msgid "Recent Posts"
msgid "One thought on “%2$s”"
msgstr ""
msgid_plural "%1$s thoughts on “%2$s”"
msgstr[0] ""
msgstr[1] ""
#: index.php:37 category.php:50 tag.php:50 author.php:74 search.php:42
#: comments.php:40 comments.php:60
#: archive.php:57
msgid "Comment navigation"
msgid "Nothing Found"
msgstr ""
msgstr ""
#: index.php:41 category.php:54 tag.php:54 author.php:78 archive.php:61
#: comments.php:41 comments.php:61
msgid ""
msgid "← Older Comments"
"Apologies, but no results were found for the requested archive. Perhaps "
"searching will help find a related post."
msgstr ""
msgstr ""
#: co
nt
ent.php:
1
6
#: co
mments.php:42 comm
ent
s
.php:6
2
msgid "
Featured
"
msgid "
Newer Comments →
"
msgstr ""
msgstr ""
#. #-#-#-#-# twentyeleven.pot (Twenty Eleven 1.3) #-#-#-#-#
#: comments.php:72
#. Author URI of the plugin/theme
msgid "Comments are closed."
#: footer.php:27
msgid "http://wordpress.org/"
msgstr ""
msgstr ""
#: footer.php:27
#: content-aside.php:16 content-featured.php:14 content-gallery.php:16
msgid "Semantic Personal Publishing Platform"
#: content-gallery.php:48 content-image.php:15 content-link.php:16
#: content-quote.php:14 content-status.php:15 content.php:15 content.php:19
#: inc/widgets.php:89 showcase.php:115 showcase.php:194
msgid "Permalink to %s"
msgstr ""
msgstr ""
#:
footer
.php:
2
7
#:
content-aside
.php:
1
7
msgid "
Proudly powered by %s
"
msgid "
Aside
"
msgstr ""
msgstr ""
#: category.php:19
#: content-aside.php:22 content-image.php:21 content-link.php:22
msgid "Category Archives: %s"
#: content-quote.php:24 content-status.php:21 content.php:30
msgid "Reply"
msgstr ""
msgstr ""
#: content-image.php:16
#: content-aside.php:22 content-image.php:21 content-link.php:22
msgid "Image"
#: content-quote.php:24 content-status.php:21 content.php:30
msgctxt "comments number"
msgid "1"
msgstr ""
msgstr ""
#: content-image.php:34
#: content-aside.php:22 content-image.php:21 content-link.php:22
msgid ""
#: content-quote.php:24 content-status.php:21 content.php:30
"<a href=\"%1$s\" rel=\"bookmark\"><time class=\"entry-date\" datetime=\"%2$s"
msgctxt "comments number"
"\" pubdate>%3$s</time></a><span class=\"by-author\"> <span class=\"sep\"> by "
msgid "%"
"</span> <span class=\"author vcard\"><a class=\"url fn n\" href=\"%4$s\" "
"title=\"%5$s\" rel=\"author\">%6$s</a></span></span>"
msgstr ""
msgstr ""
#: content-image.php:39 functions.php:570
#: content-aside.php:33 content-gallery.php:32 content-image.php:27
msgid "View all posts by %s"
#: content-link.php:33 content-quote.php:35 content-status.php:34
#: content.php:41 functions.php:327
msgid "Continue reading <span class=\"meta-nav\">→</span>"
msgstr ""
msgstr ""
#: sidebar.php:19
#: content-aside.php:34 content-featured.php:23 content-gallery.php:54
msgid "Archives"
#: content-image.php:28 content-intro.php:18 content-link.php:34
#: content-page.php:18 content-quote.php:36 content-single.php:24
#: content-status.php:35 content.php:42 image.php:90
msgid "Pages:"
msgstr ""
msgstr ""
#: sidebar.php:26
#: content-aside.php:42 content-gallery.php:87 content-image.php:64
msgid "Meta"
#: content-link.php:42 content-quote.php:69 content-status.php:43
#: content.php:77 showcase.php:196
msgid "Leave a reply"
msgstr ""
msgstr ""
#: content-single.php:35
#: content-aside.php:42 content-gallery.php:87 content-image.php:64
msgid ""
#: content-link.php:42 content-quote.php:69 content-status.php:43
"This entry was posted in %1$s and tagged %2$s by <a href=\"%6$s\">%5$s</a>. "
#: content.php:77 showcase.php:196
"Bookmark the <a href=\"%3$s\" title=\"Permalink to %4$s\" rel=\"bookmark"
msgid "<b>1</b> Reply"
"\">permalink</a>."
msgstr ""
msgstr ""
#: content-si
ngle.php:37
#: content-
a
si
de.php:42 content-gallery.php:87 content-image.php:64
msgid ""
#: content-link.php:42 content-quote.php:69 content-status.php:43
"This entry was posted in %1$s by <a href=\"%6$s\">%5$s</a>. Bookmark the <a "
#: content.php:77 showcase.php:196
"href=\"%3$s\" title=\"Permalink to %4$s\" rel=\"bookmark\">permalink</a>.
"
msgid "<b>%</b> Replies
"
msgstr ""
msgstr ""
#: content-single.php:39
#: content-aside.php:44 content-featured.php:45 content-gallery.php:90
msgid ""
#: content-image.php:68 content-intro.php:19 content-link.php:44
"This entry was posted by <a href=\"%6$s\">%5$s</a>. Bookmark the <a href=\"%3"
#: content-page.php:21 content-quote.php:72 content-single.php:52
"$s\" title=\"Permalink to %4$s\" rel=\"bookmark\">permalink</a>."
#: content-status.php:45 content.php:80 functions.php:505 functions.php:533
#: image.php:41
msgid "Edit"
msgstr ""
msgstr ""
#: content-single.php:60 author.php:49
#. translators: used between list items, there is a space after the comma
msgid "About %s"
#: content-featured.php:29 content-featured.php:38 content-gallery.php:62
#: content-gallery.php:72 content-image.php:47 content-image.php:56
#: content-quote.php:44 content-quote.php:54 content-single.php:30
#: content-single.php:33 content.php:51 content.php:61
msgid ", "
msgstr ""
msgstr ""
#: content-single.php:64
#: content-featured.php:31
msgid "View all posts by %s <span class=\"meta-nav\">→</span>"
msgid ""
"This entry was posted in %1$s and tagged %2$s. Bookmark the <a href=\"%3$s\" "
"title=\"Permalink to %4$s\" rel=\"bookmark\">permalink</a>."
msgstr ""
msgstr ""
#: tag.php:19
#: content-featured.php:33
msgid "Tag Archives: %s"
msgid ""
"This entry was posted in %1$s. Bookmark the <a href=\"%3$s\" title="
"\"Permalink to %4$s\" rel=\"bookmark\">permalink</a>."
msgstr ""
msgstr ""
#: content-gallery.php:17
#: content-gallery.php:17
...
@@ -207,74 +204,83 @@ msgid_plural "This gallery contains <a %1$s>%2$s photos</a>."
...
@@ -207,74 +204,83 @@ msgid_plural "This gallery contains <a %1$s>%2$s photos</a>."
msgstr[0] ""
msgstr[0] ""
msgstr[1] ""
msgstr[1] ""
#: co
mments
.php:
17
#: co
ntent-gallery.php:66 content-image.php:51 content-quote
.php:
48
msgid ""
#: content.php:55
"This post is password protected. Enter the password to view any comments.
"
msgid "<span class=\"%1$s\">Posted in</span> %2$s
"
msgstr ""
msgstr ""
#: comments.php:33
#: content-gallery.php:78 content-image.php:59 content-quote.php:60
msgid "One thought on “%2$s”"
#: content.php:67
msgid_plural "%1$s thoughts on “%2$s”"
msgid "<span class=\"%1$s\">Tagged</span> %2$s"
msgstr[0] ""
msgstr ""
msgstr[1] ""
#: co
mm
ent
s.php:40 comments
.php:6
0
#: co
nt
ent
-image
.php:
1
6
msgid "
Comment navigation
"
msgid "
Image
"
msgstr ""
msgstr ""
#: comments.php:41 comments.php:61
#: content-image.php:34
msgid "← Older Comments"
msgid ""
"<a href=\"%1$s\" rel=\"bookmark\"><time class=\"entry-date\" datetime=\"%2$s"
"\" pubdate>%3$s</time></a><span class=\"by-author\"> <span class=\"sep\"> by "
"</span> <span class=\"author vcard\"><a class=\"url fn n\" href=\"%4$s\" "
"title=\"%5$s\" rel=\"author\">%6$s</a></span></span>"
msgstr ""
msgstr ""
#: co
mm
ent
s.php:42 comment
s.php:
62
#: co
nt
ent
-image.php:39 function
s.php:
570
msgid "
Newer Comments →
"
msgid "
View all posts by %s
"
msgstr ""
msgstr ""
#: co
mm
ent
s
.php:7
2
#: co
nt
ent
-link
.php:
1
7
msgid "
Comments are closed.
"
msgid "
Link
"
msgstr ""
msgstr ""
#: content-
asid
e.php:1
7
#: content-
quot
e.php:1
5
msgid "
Asid
e"
msgid "
Quot
e"
msgstr ""
msgstr ""
#: 404.php:17
#: content-single.php:35
msgid "This is somewhat embarrassing, isn’t it?"
msgid ""
"This entry was posted in %1$s and tagged %2$s by <a href=\"%6$s\">%5$s</a>. "
"Bookmark the <a href=\"%3$s\" title=\"Permalink to %4$s\" rel=\"bookmark"
"\">permalink</a>."
msgstr ""
msgstr ""
#:
404
.php:
21
#:
content-single
.php:
37
msgid ""
msgid ""
"
It seems we can’t find what you’re looking for. Perhaps
"
"
This entry was posted in %1$s by <a href=\"%6$s\">%5$s</a>. Bookmark the <a
"
"
searching, or one of the links below, can help
."
"
href=\"%3$s\" title=\"Permalink to %4$s\" rel=\"bookmark\">permalink</a>
."
msgstr ""
msgstr ""
#: 404.php:28
#: content-single.php:39
msgid "Most Used Categories"
msgid ""
"This entry was posted by <a href=\"%6$s\">%5$s</a>. Bookmark the <a href=\"%3"
"$s\" title=\"Permalink to %4$s\" rel=\"bookmark\">permalink</a>."