plg+upd
This commit is contained in:
parent
09a5682c79
commit
129bc046ad
|
|
@ -40,9 +40,42 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
|
|||
</nav>
|
||||
</div>
|
||||
|
||||
<div class="about__section is-feature has-accent-background-color">
|
||||
<h1><?php _e( 'Say hello to more and better.' ); ?></h1>
|
||||
|
||||
<p><?php _e( 'More ways to make your pages come alive. With easier ways to get it all done and looking better than ever—and boosts in speed you can feel.' ); ?></p>
|
||||
</div>
|
||||
|
||||
<hr />
|
||||
|
||||
<div class="about__section changelog">
|
||||
<div class="column">
|
||||
<h2><?php _e( 'Maintenance and Security Releases' ); ?></h2>
|
||||
<p>
|
||||
<?php
|
||||
printf(
|
||||
/* translators: 1: WordPress version number, 2: plural number of bugs. More than one security issue. */
|
||||
_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.',
|
||||
23
|
||||
),
|
||||
'5.4.2',
|
||||
number_format_i18n( 23 )
|
||||
);
|
||||
?>
|
||||
<?php
|
||||
printf(
|
||||
/* translators: %s: HelpHub URL */
|
||||
__( 'For more information, see <a href="%s">the release notes</a>.' ),
|
||||
sprintf(
|
||||
/* translators: %s: WordPress version */
|
||||
esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
|
||||
sanitize_title( '5.4.2' )
|
||||
)
|
||||
);
|
||||
?>
|
||||
</p>
|
||||
<p>
|
||||
<?php
|
||||
printf(
|
||||
|
|
@ -73,14 +106,6 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
|
|||
|
||||
<hr />
|
||||
|
||||
<div class="about__section is-feature has-accent-background-color">
|
||||
<h1><?php _e( 'Say hello to more and better.' ); ?></h1>
|
||||
|
||||
<p><?php _e( 'More ways to make your pages come alive. With easier ways to get it all done and looking better than ever—and boosts in speed you can feel.' ); ?></p>
|
||||
</div>
|
||||
|
||||
<hr />
|
||||
|
||||
<div class="about__section has-2-columns has-subtle-background-color">
|
||||
<h2 class="is-section-header">
|
||||
<?php
|
||||
|
|
|
|||
|
|
@ -3923,8 +3923,7 @@ img {
|
|||
}
|
||||
|
||||
.fileedit-sub input[type="submit"] {
|
||||
margin-bottom: 0px;
|
||||
padding: 0px 18px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
#documentation label[for="docs-list"] {
|
||||
|
|
@ -3938,7 +3937,6 @@ img {
|
|||
|
||||
#documentation input[type="button"] {
|
||||
margin-bottom: 0;
|
||||
padding: 8px 18px;
|
||||
}
|
||||
|
||||
#wpfooter {
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -3922,8 +3922,7 @@ img {
|
|||
}
|
||||
|
||||
.fileedit-sub input[type="submit"] {
|
||||
margin-bottom: 0px;
|
||||
padding: 0px 18px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
#documentation label[for="docs-list"] {
|
||||
|
|
@ -3937,7 +3936,6 @@ img {
|
|||
|
||||
#documentation input[type="button"] {
|
||||
margin-bottom: 0;
|
||||
padding: 8px 18px;
|
||||
}
|
||||
|
||||
#wpfooter {
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
Binary file not shown.
|
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 3.0 KiB |
|
|
@ -719,7 +719,7 @@ class WP_Site_Health {
|
|||
sprintf(
|
||||
/* translators: %s: The minimum recommended PHP version. */
|
||||
__( 'PHP is the programming language used to build and maintain WordPress. Newer versions of PHP are faster and more secure, so staying up to date will help your site’s overall performance and security. The minimum recommended version of PHP is %s.' ),
|
||||
$response['recommended_version']
|
||||
$response ? $response['recommended_version'] : ''
|
||||
)
|
||||
),
|
||||
'actions' => sprintf(
|
||||
|
|
@ -2289,7 +2289,13 @@ class WP_Site_Health {
|
|||
}
|
||||
|
||||
if ( ! is_wp_error( $result_fetch ) ) {
|
||||
$results[] = json_decode( wp_remote_retrieve_body( $result_fetch ) );
|
||||
$result = json_decode( wp_remote_retrieve_body( $result_fetch ), true );
|
||||
} else {
|
||||
$result = false;
|
||||
}
|
||||
|
||||
if ( is_array( $result ) ) {
|
||||
$results[] = $result;
|
||||
} else {
|
||||
$results[] = array(
|
||||
'status' => 'recommended',
|
||||
|
|
|
|||
|
|
@ -507,13 +507,14 @@ class WP_Terms_List_Table extends WP_List_Table {
|
|||
* Filters the action links displayed for each term in the Tags list table.
|
||||
*
|
||||
* @since 2.8.0
|
||||
* @deprecated 3.0.0 Use {@see '{$taxonomy}_row_actions'} instead.
|
||||
* @since 3.0.0 Deprecated in favor of {@see '{$taxonomy}_row_actions'} filter.
|
||||
* @since 5.4.2 Restored (un-deprecated).
|
||||
*
|
||||
* @param string[] $actions An array of action links to be displayed. Default
|
||||
* 'Edit', 'Quick Edit', 'Delete', and 'View'.
|
||||
* @param WP_Term $tag Term object.
|
||||
*/
|
||||
$actions = apply_filters_deprecated( 'tag_row_actions', array( $actions, $tag ), '3.0.0', '{$taxonomy}_row_actions' );
|
||||
$actions = apply_filters( 'tag_row_actions', $actions, $tag );
|
||||
|
||||
/**
|
||||
* Filters the action links displayed for each term in the terms list table.
|
||||
|
|
|
|||
|
|
@ -3231,7 +3231,7 @@ function edit_form_image_editor( $post ) {
|
|||
|
||||
?>
|
||||
</label>
|
||||
<?php wp_editor( $post->post_content, 'attachment_content', $editor_args ); ?>
|
||||
<?php wp_editor( format_to_edit( $post->post_content ), 'attachment_content', $editor_args ); ?>
|
||||
|
||||
</div>
|
||||
<?php
|
||||
|
|
|
|||
|
|
@ -686,23 +686,46 @@ function set_screen_options() {
|
|||
}
|
||||
break;
|
||||
default:
|
||||
if ( '_page' === substr( $option, -5 ) || 'layout_columns' === $option ) {
|
||||
/**
|
||||
* Filters a screen option value before it is set.
|
||||
*
|
||||
* The filter can also be used to modify non-standard [items]_per_page
|
||||
* settings. See the parent function for a full list of standard options.
|
||||
*
|
||||
* Returning false to the filter will skip saving the current option.
|
||||
*
|
||||
* @since 2.8.0
|
||||
* @since 5.4.2 Only applied to options ending with '_page',
|
||||
* or the 'layout_columns' option.
|
||||
*
|
||||
* @see set_screen_options()
|
||||
*
|
||||
* @param bool $keep Whether to save or skip saving the screen option value.
|
||||
* Default false.
|
||||
* @param string $option The option name.
|
||||
* @param int $value The number of rows to use.
|
||||
*/
|
||||
$value = apply_filters( 'set-screen-option', false, $option, $value ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
|
||||
}
|
||||
|
||||
/**
|
||||
* Filters a screen option value before it is set.
|
||||
*
|
||||
* The filter can also be used to modify non-standard [items]_per_page
|
||||
* settings. See the parent function for a full list of standard options.
|
||||
* The dynamic portion of the hook, `$option`, refers to the option name.
|
||||
*
|
||||
* Returning false to the filter will skip saving the current option.
|
||||
*
|
||||
* @since 2.8.0
|
||||
* @since 5.4.2
|
||||
*
|
||||
* @see set_screen_options()
|
||||
*
|
||||
* @param bool $keep Whether to save or skip saving the screen option value. Default false.
|
||||
* @param string $option The option name.
|
||||
* @param int $value The number of rows to use.
|
||||
* @param bool $keep Whether to save or skip saving the screen option value.
|
||||
* Default false.
|
||||
* @param string $option The option name.
|
||||
* @param int $value The number of rows to use.
|
||||
*/
|
||||
$value = apply_filters( 'set-screen-option', false, $option, $value ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
|
||||
$value = apply_filters( "set_screen_option_{$option}", false, $option, $value );
|
||||
|
||||
if ( false === $value ) {
|
||||
return;
|
||||
|
|
|
|||
|
|
@ -278,6 +278,7 @@ function get_theme_feature_list( $api = true ) {
|
|||
|
||||
__( 'Features' ) => array(
|
||||
'accessibility-ready' => __( 'Accessibility Ready' ),
|
||||
'block-styles' => __( 'Block Editor Styles' ),
|
||||
'custom-background' => __( 'Custom Background' ),
|
||||
'custom-colors' => __( 'Custom Colors' ),
|
||||
'custom-header' => __( 'Custom Header' ),
|
||||
|
|
@ -300,6 +301,7 @@ function get_theme_feature_list( $api = true ) {
|
|||
'four-columns' => __( 'Four Columns' ),
|
||||
'left-sidebar' => __( 'Left Sidebar' ),
|
||||
'right-sidebar' => __( 'Right Sidebar' ),
|
||||
'wide-blocks' => __( 'Wide Blocks' ),
|
||||
),
|
||||
|
||||
);
|
||||
|
|
|
|||
|
|
@ -405,7 +405,7 @@ if ( ! is_multisite() && current_user_can( 'edit_themes' ) && $broken_themes ) {
|
|||
</tr>
|
||||
<?php foreach ( $broken_themes as $broken_theme ) : ?>
|
||||
<tr>
|
||||
<td><?php echo $broken_theme->get( 'Name' ) ? $broken_theme->display( 'Name' ) : $broken_theme->get_stylesheet(); ?></td>
|
||||
<td><?php echo $broken_theme->get( 'Name' ) ? $broken_theme->display( 'Name' ) : esc_html( $broken_theme->get_stylesheet() ); ?></td>
|
||||
<td><?php echo $broken_theme->errors()->get_error_message(); ?></td>
|
||||
<?php
|
||||
if ( $can_resume ) {
|
||||
|
|
|
|||
|
|
@ -56,8 +56,8 @@ do_action( 'set_comment_cookies', $comment, $user, $cookies_consent );
|
|||
|
||||
$location = empty( $_POST['redirect_to'] ) ? get_comment_link( $comment ) : $_POST['redirect_to'] . '#comment-' . $comment->comment_ID;
|
||||
|
||||
// Add specific query arguments to display the awaiting moderation message.
|
||||
if ( 'unapproved' === wp_get_comment_status( $comment ) && ! empty( $comment->comment_author_email ) ) {
|
||||
// If user didn't consent to cookies, add specific query arguments to display the awaiting moderation message.
|
||||
if ( ! $cookies_consent && 'unapproved' === wp_get_comment_status( $comment ) && ! empty( $comment->comment_author_email ) ) {
|
||||
$location = add_query_arg(
|
||||
array(
|
||||
'unapproved' => $comment->comment_ID,
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -7,7 +7,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: GlotPress/2.4.0-alpha\n"
|
||||
"X-Generator: GlotPress/3.0.0-alpha\n"
|
||||
"Language: sv_SE\n"
|
||||
"Project-Id-Version: WordPress - 5.4.x - Development - Administration - Network Admin\n"
|
||||
|
||||
|
|
|
|||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
|
|
@ -7,7 +7,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: GlotPress/2.4.0-alpha\n"
|
||||
"X-Generator: GlotPress/3.0.0-alpha\n"
|
||||
"Language: sv_SE\n"
|
||||
"Project-Id-Version: WordPress - 5.4.x - Development - Continents & Cities\n"
|
||||
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -2,28 +2,34 @@
|
|||
# This file is distributed under the same license as the Plugins - Akismet Anti-Spam - Stable (latest release) package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2020-03-25 06:06:52+0000\n"
|
||||
"PO-Revision-Date: 2020-06-11 04:31:06+0000\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: GlotPress/2.4.0-alpha\n"
|
||||
"X-Generator: GlotPress/3.0.0-alpha\n"
|
||||
"Language: sv_SE\n"
|
||||
"Project-Id-Version: Plugins - Akismet Anti-Spam - Stable (latest release)\n"
|
||||
|
||||
#: class.akismet-admin.php:682
|
||||
#. translators: The placeholder is for showing how much of the process has
|
||||
#. completed, as a percent. e.g., "Checking for Spam (40%)"
|
||||
#: class.akismet-admin.php:416
|
||||
msgid "Checking for Spam (%1$s%)"
|
||||
msgstr "Söker efter skräppost (%1$s %)"
|
||||
|
||||
#: class.akismet-admin.php:684
|
||||
msgid "No comment history."
|
||||
msgstr "Ingen kommentarhistorik."
|
||||
|
||||
#: class.akismet-admin.php:650
|
||||
#: class.akismet-admin.php:652
|
||||
msgid "Akismet was unable to recheck this comment."
|
||||
msgstr "Akismet kunde inte kontrollera denna kommentar igen."
|
||||
|
||||
#: class.akismet-admin.php:642
|
||||
#: class.akismet-admin.php:644
|
||||
msgid "Akismet was unable to check this comment but will automatically retry later."
|
||||
msgstr "Akismet kunde inte kontrollera den här kommentaren men kommer automatiskt att försöka igen senare."
|
||||
|
||||
#: class.akismet-admin.php:613
|
||||
#: class.akismet-admin.php:615
|
||||
msgid "Comment was caught by %s."
|
||||
msgstr "Kommentaren stoppades av %s."
|
||||
|
||||
|
|
@ -43,11 +49,11 @@ msgstr "Ställ in ett annat konto"
|
|||
msgid "Set up your Akismet account to enable spam filtering on this site."
|
||||
msgstr "Ställ in ditt Akismetkonto för att aktivera skräppostfiltrering på denna webbplats."
|
||||
|
||||
#: class.akismet-admin.php:1085
|
||||
#: class.akismet-admin.php:1087
|
||||
msgid "Akismet could not recheck your comments for spam."
|
||||
msgstr "Akismet kunde inte kontrollera dina kommentarer igen efter skräppost."
|
||||
|
||||
#: class.akismet-admin.php:435
|
||||
#: class.akismet-admin.php:437
|
||||
msgid "You don't have permission to do that."
|
||||
msgstr "Du har inte behörighet att göra det."
|
||||
|
||||
|
|
@ -124,10 +130,6 @@ msgstr "Om sant kommer Akismet ta bort den värsta skräpposten automatiskt ist
|
|||
msgid "A 12-character Akismet API key. Available at akismet.com/get/"
|
||||
msgstr "En Akismet API-nyckel på 12 tecken. Finns på akismet.com/get/"
|
||||
|
||||
#: class.akismet-admin.php:411
|
||||
msgid "(%1$s%)"
|
||||
msgstr "(%1$s%)"
|
||||
|
||||
#: views/notice.php:55
|
||||
msgid "Your site can’t connect to the Akismet servers."
|
||||
msgstr "Din webbplats får inte kontakt med Akismets servrar."
|
||||
|
|
@ -141,7 +143,7 @@ msgstr "En API-nyckel för Akismet har angetts i filen %s för denna webbplats."
|
|||
msgid "Manual Configuration"
|
||||
msgstr "Manuell konfigurering"
|
||||
|
||||
#: class.akismet-admin.php:230
|
||||
#: class.akismet-admin.php:234
|
||||
msgid "On this page, you are able to update your Akismet settings and view spam stats."
|
||||
msgstr "På denna sida kan du uppdatera dina inställningar för Akismet och se spam-statistik."
|
||||
|
||||
|
|
@ -200,38 +202,34 @@ msgstr "Detaljerad statistik"
|
|||
msgid "Statistics"
|
||||
msgstr "Statistik"
|
||||
|
||||
#: class.akismet-admin.php:1189
|
||||
#: class.akismet-admin.php:1191
|
||||
msgid "Used by millions, Akismet is quite possibly the best way in the world to <strong>protect your blog from spam</strong>. It keeps your site protected even while you sleep. To get started, just go to <a href=\"admin.php?page=akismet-key-config\">your Akismet Settings page</a> to set up your API key."
|
||||
msgstr "Akismet, som används av miljoner personer, är kanske världens bästa sätt att <strong>skydda din blogg från skräppost</strong>. Det skyddar din webbplats t.o.m. medan du sover. För att komma igång behöver du bara gå till <a href=\"admin.php?page=akismet-key-config\">din inställningssida för Akismet</a> för att konfigurera din API-nyckel."
|
||||
|
||||
#: class.akismet-admin.php:1186
|
||||
#: class.akismet-admin.php:1188
|
||||
msgid "Used by millions, Akismet is quite possibly the best way in the world to <strong>protect your blog from spam</strong>. Your site is fully configured and being protected, even while you sleep."
|
||||
msgstr "Akismet, som används av miljoner personer, är kanske världens bästa sätt att <strong>skydda din blogg från skräppost</strong>. Din webbplats är färdigkonfigurerad och skyddar din webbplats t.o.m. medan du sover. "
|
||||
|
||||
#: class.akismet-admin.php:1078
|
||||
#: class.akismet-admin.php:1080
|
||||
msgid "%s comment was caught as spam."
|
||||
msgid_plural "%s comments were caught as spam."
|
||||
msgstr[0] "%s kommentar bedömdes som skräppost."
|
||||
msgstr[1] "%s kommentarer bedömdes som skräppost."
|
||||
|
||||
#: class.akismet-admin.php:1075
|
||||
#: class.akismet-admin.php:1077
|
||||
msgid "No comments were caught as spam."
|
||||
msgstr "Inga kommentarer bedömdes som skräppost."
|
||||
|
||||
#: class.akismet-admin.php:1071
|
||||
#: class.akismet-admin.php:1073
|
||||
msgid "Akismet checked %s comment."
|
||||
msgid_plural "Akismet checked %s comments."
|
||||
msgstr[0] "Akismet har kontrollerat %s kommentar."
|
||||
msgstr[1] "Akismet har kontrollerat %s kommentarer."
|
||||
|
||||
#: class.akismet-admin.php:1068
|
||||
#: class.akismet-admin.php:1070
|
||||
msgid "There were no comments to check. Akismet will only check comments awaiting moderation."
|
||||
msgstr "Det finns inga kommentarer att kontrollera. Akismet kommer endast att kontrollera kommentarer som inväntar granskning."
|
||||
|
||||
#: class.akismet-admin.php:410
|
||||
msgid "Checking for Spam"
|
||||
msgstr "Söker efter skräppost"
|
||||
|
||||
#: class.akismet.php:558
|
||||
msgid "Comment not found."
|
||||
msgstr "Kommentaren kunde inte hittas."
|
||||
|
|
@ -306,26 +304,26 @@ msgstr "Vänligen uppdatera din betalinformation."
|
|||
msgid "<strong>Almost done</strong> - configure Akismet and say goodbye to spam"
|
||||
msgstr "<strong>Nästan klart</strong> – konfigurera Akismet och vinka adjö till skräppost"
|
||||
|
||||
#: class.akismet-admin.php:1002
|
||||
#: class.akismet-admin.php:1004
|
||||
msgid "Akismet has saved you %d minute!"
|
||||
msgid_plural "Akismet has saved you %d minutes!"
|
||||
msgstr[0] "Akismet har sparat dig %d minut!"
|
||||
msgstr[1] "Akismet har sparat dig %d minuter!"
|
||||
|
||||
#: class.akismet-admin.php:1000
|
||||
#: class.akismet-admin.php:1002
|
||||
msgid "Akismet has saved you %d hour!"
|
||||
msgid_plural "Akismet has saved you %d hours!"
|
||||
msgstr[0] "Akismet har sparat dig %d timme!"
|
||||
msgstr[1] "Akismet har sparat dig %d timmar!"
|
||||
|
||||
#: class.akismet-admin.php:998
|
||||
#: class.akismet-admin.php:1000
|
||||
msgid "Akismet has saved you %s day!"
|
||||
msgid_plural "Akismet has saved you %s days!"
|
||||
msgstr[0] "Akismet har sparat dig %s dag!"
|
||||
msgstr[1] "Akismet har sparat dig %s dagar!"
|
||||
|
||||
#: class.akismet-admin.php:178 class.akismet-admin.php:216
|
||||
#: class.akismet-admin.php:229
|
||||
#: class.akismet-admin.php:182 class.akismet-admin.php:220
|
||||
#: class.akismet-admin.php:233
|
||||
msgid "Akismet filters out spam, so you can focus on more important things."
|
||||
msgstr "Akismet filtrerar bort skräppost så att du kan fokusera på viktigare saker."
|
||||
|
||||
|
|
@ -385,11 +383,11 @@ msgstr "Inaktiverat."
|
|||
msgid "SSL Status"
|
||||
msgstr "SSL-status"
|
||||
|
||||
#: class.akismet-admin.php:628
|
||||
#: class.akismet-admin.php:630
|
||||
msgid "This comment was reported as not spam."
|
||||
msgstr "Denna kommentar rapporterades som 'inte skräppost'."
|
||||
|
||||
#: class.akismet-admin.php:620
|
||||
#: class.akismet-admin.php:622
|
||||
msgid "This comment was reported as spam."
|
||||
msgstr "Denna kommentar rapporterades som skräppost."
|
||||
|
||||
|
|
@ -405,12 +403,12 @@ msgstr "URL borttagen"
|
|||
msgid "Removing..."
|
||||
msgstr "Tar bort..."
|
||||
|
||||
#: class.akismet-admin.php:86 class.akismet-admin.php:1204
|
||||
#: class.akismet-admin.php:86 class.akismet-admin.php:1206
|
||||
msgid "Akismet"
|
||||
msgstr "Akismet"
|
||||
|
||||
#: views/config.php:60 class.akismet-admin.php:105 class.akismet-admin.php:237
|
||||
#: class.akismet-admin.php:689
|
||||
#: class.akismet-admin.php:105 class.akismet-admin.php:241
|
||||
#: class.akismet-admin.php:691 views/config.php:60
|
||||
msgid "Settings"
|
||||
msgstr "Inställningar"
|
||||
|
||||
|
|
@ -418,211 +416,211 @@ msgstr "Inställningar"
|
|||
msgid "Re-adding..."
|
||||
msgstr "Återställer..."
|
||||
|
||||
#: class.akismet-admin.php:175 class.akismet-admin.php:213
|
||||
#: class.akismet-admin.php:226
|
||||
#: class.akismet-admin.php:179 class.akismet-admin.php:217
|
||||
#: class.akismet-admin.php:230
|
||||
msgid "Overview"
|
||||
msgstr "Översikt"
|
||||
|
||||
#: class.akismet-admin.php:177 class.akismet-admin.php:188
|
||||
#: class.akismet-admin.php:199
|
||||
#: class.akismet-admin.php:181 class.akismet-admin.php:192
|
||||
#: class.akismet-admin.php:203
|
||||
msgid "Akismet Setup"
|
||||
msgstr "Konfiguration för Akismet"
|
||||
|
||||
#: class.akismet-admin.php:179
|
||||
#: class.akismet-admin.php:183
|
||||
msgid "On this page, you are able to set up the Akismet plugin."
|
||||
msgstr "På den här sidan har du möjlighet att konfigurera tillägget Akismet."
|
||||
|
||||
#: class.akismet-admin.php:186
|
||||
#: class.akismet-admin.php:190
|
||||
msgid "New to Akismet"
|
||||
msgstr "Ny på Akismet"
|
||||
|
||||
#: class.akismet-admin.php:189
|
||||
#: class.akismet-admin.php:193
|
||||
msgid "You need to enter an API key to activate the Akismet service on your site."
|
||||
msgstr "Du måste ange en API-nyckel för att aktivera tjänsten från Akismet på din webbplats."
|
||||
|
||||
#: class.akismet-admin.php:197
|
||||
#: class.akismet-admin.php:201
|
||||
msgid "Enter an API Key"
|
||||
msgstr "Ange en API-nyckel"
|
||||
|
||||
#: class.akismet-admin.php:190
|
||||
#: class.akismet-admin.php:194
|
||||
msgid "Sign up for an account on %s to get an API Key."
|
||||
msgstr "Registrera ett konto på %s för att få en API-nyckel."
|
||||
|
||||
#: class.akismet-admin.php:200
|
||||
#: class.akismet-admin.php:204
|
||||
msgid "If you already have an API key"
|
||||
msgstr "Om du redan har en API-nyckel"
|
||||
|
||||
#: class.akismet-admin.php:202
|
||||
#: class.akismet-admin.php:206
|
||||
msgid "Copy and paste the API key into the text field."
|
||||
msgstr "Kopiera och klistra in API-nyckeln i textfältet."
|
||||
|
||||
#: class.akismet-admin.php:203
|
||||
#: class.akismet-admin.php:207
|
||||
msgid "Click the Use this Key button."
|
||||
msgstr "Klicka på knappen Använd denna nyckel."
|
||||
|
||||
#: class.akismet-admin.php:215
|
||||
#: class.akismet-admin.php:219
|
||||
msgid "Akismet Stats"
|
||||
msgstr "Akismet statistik"
|
||||
|
||||
#: class.akismet-admin.php:217
|
||||
#: class.akismet-admin.php:221
|
||||
msgid "On this page, you are able to view stats on spam filtered on your site."
|
||||
msgstr "På den här sidan har du möjlighet att se statistik för skräppost som har filtrerats på din webbplats."
|
||||
|
||||
#: class.akismet-admin.php:228 class.akismet-admin.php:239
|
||||
#: class.akismet-admin.php:252
|
||||
#: class.akismet-admin.php:232 class.akismet-admin.php:243
|
||||
#: class.akismet-admin.php:256
|
||||
msgid "Akismet Configuration"
|
||||
msgstr "Konfigurera Akismet"
|
||||
|
||||
#: views/config.php:70 class.akismet-admin.php:240
|
||||
#: class.akismet-admin.php:244 views/config.php:70
|
||||
msgid "API Key"
|
||||
msgstr "API-nyckel"
|
||||
|
||||
#: class.akismet-admin.php:240
|
||||
#: class.akismet-admin.php:244
|
||||
msgid "Enter/remove an API key."
|
||||
msgstr "Ange/ta bort en API-nyckel."
|
||||
|
||||
#: views/config.php:105 class.akismet-admin.php:241
|
||||
#: class.akismet-admin.php:245 views/config.php:105
|
||||
msgid "Comments"
|
||||
msgstr "Kommentarer"
|
||||
|
||||
#: class.akismet-admin.php:241
|
||||
#: class.akismet-admin.php:245
|
||||
msgid "Show the number of approved comments beside each comment author in the comments list page."
|
||||
msgstr "Visa antalet godkända kommentarer bredvid varje kommentarsförfattare på kommentarslistningssidan."
|
||||
|
||||
#: class.akismet-admin.php:242
|
||||
#: class.akismet-admin.php:246
|
||||
msgid "Choose to either discard the worst spam automatically or to always put all spam in spam folder."
|
||||
msgstr "Välj att antingen ignorera den värsta skräpposten automatiskt eller att alltid placera all skräppost i skräppostmappen."
|
||||
|
||||
#: views/config.php:128 class.akismet-admin.php:242
|
||||
#: class.akismet-admin.php:246 views/config.php:128
|
||||
msgid "Strictness"
|
||||
msgstr "Strikthet"
|
||||
|
||||
#: views/config.php:188 class.akismet-admin.php:250
|
||||
#: class.akismet-admin.php:254 views/config.php:188
|
||||
msgid "Account"
|
||||
msgstr "Konto"
|
||||
|
||||
#: views/config.php:196 class.akismet-admin.php:253
|
||||
#: class.akismet-admin.php:257 views/config.php:196
|
||||
msgid "Subscription Type"
|
||||
msgstr "Prenumerationstyp"
|
||||
|
||||
#: class.akismet-admin.php:254
|
||||
#: class.akismet-admin.php:258
|
||||
msgid "The subscription status - active, cancelled or suspended"
|
||||
msgstr "Prenumerationsstatus - aktiv, avslutad eller suspenderad"
|
||||
|
||||
#: views/config.php:203 class.akismet-admin.php:254
|
||||
#: class.akismet-admin.php:258 views/config.php:203
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
#: class.akismet-admin.php:253
|
||||
#: class.akismet-admin.php:257
|
||||
msgid "The Akismet subscription plan"
|
||||
msgstr "Akismets prenumerationsplan"
|
||||
|
||||
#: class.akismet-admin.php:264
|
||||
#: class.akismet-admin.php:268
|
||||
msgid "Akismet FAQ"
|
||||
msgstr "Vanliga frågor för Akismet"
|
||||
|
||||
#: class.akismet-admin.php:263
|
||||
#: class.akismet-admin.php:267
|
||||
msgid "For more information:"
|
||||
msgstr "För mer information:"
|
||||
|
||||
#: class.akismet-admin.php:265
|
||||
#: class.akismet-admin.php:269
|
||||
msgid "Akismet Support"
|
||||
msgstr "Support för Akismet"
|
||||
|
||||
#: class.akismet-admin.php:271
|
||||
#: class.akismet-admin.php:275
|
||||
msgid "Cheatin’ uh?"
|
||||
msgstr "Fuskar du va?"
|
||||
|
||||
#: class.akismet-admin.php:341
|
||||
#: class.akismet-admin.php:345
|
||||
msgctxt "comments"
|
||||
msgid "Spam"
|
||||
msgstr "Skräppost"
|
||||
|
||||
#: class.akismet-admin.php:343
|
||||
#: class.akismet-admin.php:347
|
||||
msgid "<a href=\"%1$s\">Akismet</a> has protected your site from <a href=\"%2$s\">%3$s spam comment</a>."
|
||||
msgid_plural "<a href=\"%1$s\">Akismet</a> has protected your site from <a href=\"%2$s\">%3$s spam comments</a>."
|
||||
msgstr[0] "<a href=\"%1$s\">Akismet</a> har skyddat din webbplats från <a href=\"%2$s\">%3$s skräpkommentar</a>."
|
||||
msgstr[1] "<a href=\"%1$s\">Akismet</a> har skyddat din webbplats från <a href=\"%2$s\">%3$s skräpkommentarer</a>."
|
||||
|
||||
#: class.akismet-admin.php:353
|
||||
#: class.akismet-admin.php:357
|
||||
msgid "<a href=\"%1$s\">Akismet</a> has protected your site from %2$s spam comment already. "
|
||||
msgid_plural "<a href=\"%1$s\">Akismet</a> has protected your site from %2$s spam comments already. "
|
||||
msgstr[0] "<a href=\"%1$s\">Akismet</a> har redan skyddat din webbplats från %2$s skräpkommentar. "
|
||||
msgstr[1] "<a href=\"%1$s\">Akismet</a> har redan skyddat din webbplats från %2$s skräpkommentarer. "
|
||||
|
||||
#: class.akismet-admin.php:359
|
||||
#: class.akismet-admin.php:363
|
||||
msgid "<a href=\"%s\">Akismet</a> blocks spam from getting to your blog. "
|
||||
msgstr "<a href=\"%s\">Akismet</a> motverkar skräpposter på din blogg."
|
||||
|
||||
#: class.akismet-admin.php:365
|
||||
#: class.akismet-admin.php:369
|
||||
msgid "There’s <a href=\"%2$s\">%1$s comment</a> in your spam queue right now."
|
||||
msgid_plural "There are <a href=\"%2$s\">%1$s comments</a> in your spam queue right now."
|
||||
msgstr[0] "Det finns <a href=\"%2$s\">%1$s kommentar</a> markerad som skräp just nu."
|
||||
msgstr[1] "Det finns <a href=\"%2$s\">%1$s kommentarer</a> markerade som skräp just nu."
|
||||
|
||||
#: class.akismet-admin.php:371
|
||||
#: class.akismet-admin.php:375
|
||||
msgid "There’s nothing in your <a href='%s'>spam queue</a> at the moment."
|
||||
msgstr "Det finns inga poster markerade som <a href='%s'>skräppost</a> för tillfället."
|
||||
|
||||
#: class.akismet-admin.php:607
|
||||
#: class.akismet-admin.php:609
|
||||
msgid "Akismet re-checked and cleared this comment."
|
||||
msgstr "Akismet kontrollerade denna kommentar igen och godkände den."
|
||||
|
||||
#: class.akismet-admin.php:601
|
||||
#: class.akismet-admin.php:603
|
||||
msgid "Akismet re-checked and caught this comment as spam."
|
||||
msgstr "Akismet kontrollerade denna kommentar igen och markerade den som skräppost."
|
||||
|
||||
#: class.akismet-admin.php:417
|
||||
#: class.akismet-admin.php:422
|
||||
msgid "Check for Spam"
|
||||
msgstr "Kolla efter skräppost"
|
||||
|
||||
#: class.akismet-admin.php:647
|
||||
#: class.akismet-admin.php:649
|
||||
msgid "Akismet was unable to recheck this comment (response: %s)."
|
||||
msgstr "Akismet kunde inte kontrollera denna kommentar igen (svar: %s)."
|
||||
|
||||
#: class.akismet-admin.php:531
|
||||
#: class.akismet-admin.php:533
|
||||
msgid "Flagged as spam by Akismet"
|
||||
msgstr "Flaggat som skräppost av Akismet"
|
||||
|
||||
#: class.akismet-admin.php:527
|
||||
#: class.akismet-admin.php:529
|
||||
msgid "Awaiting spam check"
|
||||
msgstr "Inväntar skräppostkontroll"
|
||||
|
||||
#: class.akismet-admin.php:537
|
||||
#: class.akismet-admin.php:539
|
||||
msgid "Flagged as spam by %s"
|
||||
msgstr "Flaggat som skräppost av %s"
|
||||
|
||||
#: class.akismet-admin.php:533
|
||||
#: class.akismet-admin.php:535
|
||||
msgid "Cleared by Akismet"
|
||||
msgstr "Godkänd av Akismet"
|
||||
|
||||
#: class.akismet-admin.php:539
|
||||
#: class.akismet-admin.php:541
|
||||
msgid "Un-spammed by %s"
|
||||
msgstr "Avmarkerat som skräppost av %s"
|
||||
|
||||
#: class.akismet-admin.php:574
|
||||
#: class.akismet-admin.php:576
|
||||
msgid "%s approved"
|
||||
msgid_plural "%s approved"
|
||||
msgstr[0] "%s godkänd"
|
||||
msgstr[1] "%s godkända"
|
||||
|
||||
#: class.akismet-admin.php:551
|
||||
#: class.akismet-admin.php:553
|
||||
msgid "History"
|
||||
msgstr "Historik"
|
||||
|
||||
#: class.akismet-admin.php:551 class.akismet-admin.php:559
|
||||
#: class.akismet-admin.php:553 class.akismet-admin.php:561
|
||||
msgid "View comment history"
|
||||
msgstr "Visa kommentarshistorik"
|
||||
|
||||
#: class.akismet-admin.php:888
|
||||
#: class.akismet-admin.php:890
|
||||
msgid "Please check your <a href=\"%s\">Akismet configuration</a> and contact your web host if problems persist."
|
||||
msgstr "Vänligen kontrollera din <a href=\"%s\">konfiguration av Akismet</a> och kontakta ditt webbhotell om problemen består."
|
||||
|
||||
#: class.akismet-admin.php:673
|
||||
#: class.akismet-admin.php:675
|
||||
msgid "%s ago"
|
||||
msgstr "%s sedan"
|
||||
|
||||
#: class.akismet-admin.php:995
|
||||
#: class.akismet-admin.php:997
|
||||
msgid "Cleaning up spam takes time."
|
||||
msgstr "Att rensa upp skräppost tar tid."
|
||||
|
||||
|
|
@ -648,39 +646,39 @@ msgid_plural "<strong class=\"count\">%1$s spam</strong> blocked by <strong>Akis
|
|||
msgstr[0] "<strong class=\"count\">%1$s skräppost</strong> blockerad av <strong>Akismet</strong>"
|
||||
msgstr[1] "<strong class=\"count\">%1$s skräpposter</strong> blockerade av <strong>Akismet</strong>"
|
||||
|
||||
#: class.akismet-admin.php:604
|
||||
#: class.akismet-admin.php:606
|
||||
msgid "Akismet caught this comment as spam."
|
||||
msgstr "Akismet markerade denna kommentar som skräppost."
|
||||
|
||||
#: class.akismet-admin.php:658
|
||||
#: class.akismet-admin.php:660
|
||||
msgid "Comment status was changed to %s"
|
||||
msgstr "Kommentarsstatus ändrades till %s"
|
||||
|
||||
#: class.akismet-admin.php:610
|
||||
#: class.akismet-admin.php:612
|
||||
msgid "Akismet cleared this comment."
|
||||
msgstr "Akismet godkände denna kommentar."
|
||||
|
||||
#: class.akismet-admin.php:639
|
||||
#: class.akismet-admin.php:641
|
||||
msgid "Akismet was unable to check this comment (response: %s) but will automatically retry later."
|
||||
msgstr "Akismet kunde inte kontrollera denna kommentar (svar: %s) men kommer automatiskt att försök igen senare."
|
||||
|
||||
#: class.akismet-admin.php:664
|
||||
#: class.akismet-admin.php:666
|
||||
msgid "%1$s changed the comment status to %2$s."
|
||||
msgstr "%1$s ändrade status för kommentaren till %2$s."
|
||||
|
||||
#: class.akismet-admin.php:617
|
||||
#: class.akismet-admin.php:619
|
||||
msgid "%s reported this comment as spam."
|
||||
msgstr "%s rapporterade denna kommentar som skräppost."
|
||||
|
||||
#: class.akismet-admin.php:625
|
||||
#: class.akismet-admin.php:627
|
||||
msgid "%s reported this comment as not spam."
|
||||
msgstr "%s rapporterade denna kommentar som 'inte skräppost'."
|
||||
|
||||
#: class.akismet-admin.php:632
|
||||
#: class.akismet-admin.php:634
|
||||
msgid "Akismet caught this comment as spam during an automatic retry."
|
||||
msgstr "Akismet fångade den här kommentaren som skräpport under en automatisk körning."
|
||||
|
||||
#: class.akismet-admin.php:635
|
||||
#: class.akismet-admin.php:637
|
||||
msgid "Akismet cleared this comment during an automatic retry."
|
||||
msgstr "Akismet godkände den här kommentaren under en automatisk skanning."
|
||||
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2020-05-06 12:54:15+0000","generator":"GlotPress\/3.0.0-alpha","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"An unexpected error occured within the Podcast Player. Reloading this page might fix the problem.":["Ett ov\u00e4ntat fel intr\u00e4ffade i Podcast Player. Att l\u00e4sa in den h\u00e4r sidan igen kan l\u00f6sa problemet."],"The podcast player cannot be displayed as your browser settings do not allow for sounds to be played in webpages. This can be changed in your browser\u2019s \"Internet options\" settings. In the \"Advanced\" tab you will have to check the box next to \"Play sounds in webpages\" in the \"Multimedia\" section. Once you have confirmed that the box is checked, please press \"Apply\" and then reload this page.":["Podcastspelaren kan inte visas eftersom dina webbl\u00e4sarinst\u00e4llningar inte till\u00e5ter att ljud spelas upp p\u00e5 webbsidor. Detta kan \u00e4ndras i din webbl\u00e4sares \"Internetalternativ\"-inst\u00e4llningar. P\u00e5 fliken \"Avancerat\" m\u00e5ste du markera rutan bredvid \"Spela upp ljud p\u00e5 webbsidor\" i avsnittet \"Multimedia\". N\u00e4r du har bekr\u00e4ftat att rutan \u00e4r markerad trycker du p\u00e5 \"Till\u00e4mpa\" och l\u00e4ser d\u00e4refter in den h\u00e4r sidan igen."],"Select an episode to play it in the audio player.":["V\u00e4lj ett avsnitt f\u00f6r att spela upp det i ljudspelaren."],"Playlist: %s":["Spellista: %s"],"Error: Episode unavailable - Open in a new tab":["Fel: Avsnittet \u00e4r inte tillg\u00e4ngligt - \u00d6ppna i en ny flik"],"Loading: %s":["Laddar: %s"],"Paused":["Pausad"],"track":["sp\u00e5r"],"%s:":["%s:"],"Error:":["Fel:"],"Open in a new tab":["\u00d6ppna i en ny flik"],"Episode unavailable. ":["Avsnitt inte tillg\u00e4ngligt."],"Playing:":["Spelar:"]}},"comment":{"reference":"_inc\/blocks\/podcast-player\/view.js"}}
|
||||
{"translation-revision-date":"2020-06-20 21:06:08+0000","generator":"GlotPress\/3.0.0-alpha","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"An unexpected error occured within the Podcast Player. Reloading this page might fix the problem.":["Ett ov\u00e4ntat fel intr\u00e4ffade i Podcast Player. Att l\u00e4sa in den h\u00e4r sidan igen kan l\u00f6sa problemet."],"The podcast player cannot be displayed as your browser settings do not allow for sounds to be played in webpages. This can be changed in your browser\u2019s \"Internet options\" settings. In the \"Advanced\" tab you will have to check the box next to \"Play sounds in webpages\" in the \"Multimedia\" section. Once you have confirmed that the box is checked, please press \"Apply\" and then reload this page.":["Podcastspelaren kan inte visas eftersom dina webbl\u00e4sarinst\u00e4llningar inte till\u00e5ter att ljud spelas upp p\u00e5 webbsidor. Detta kan \u00e4ndras i din webbl\u00e4sares \"Internetalternativ\"-inst\u00e4llningar. P\u00e5 fliken \"Avancerat\" m\u00e5ste du markera rutan bredvid \"Spela upp ljud p\u00e5 webbsidor\" i avsnittet \"Multimedia\". N\u00e4r du har bekr\u00e4ftat att rutan \u00e4r markerad trycker du p\u00e5 \"Till\u00e4mpa\" och l\u00e4ser d\u00e4refter in den h\u00e4r sidan igen."],"Select an episode to play it in the audio player.":["V\u00e4lj ett avsnitt f\u00f6r att spela upp det i ljudspelaren."],"Playlist: %s":["Spellista: %s"],"Error: Episode unavailable - Open in a new tab":["Fel: Avsnittet \u00e4r inte tillg\u00e4ngligt - \u00d6ppna i en ny flik"],"Loading: %s":["Laddar: %s"],"Paused":["Pausad"],"track":["sp\u00e5r"],"%s:":["%s:"],"Error:":["Fel:"],"Open in a new tab":["\u00d6ppna i en ny flik"],"Episode unavailable. ":["Avsnitt inte tillg\u00e4ngligt."],"Playing:":["Spelar:"]}},"comment":{"reference":"_inc\/blocks\/podcast-player\/view.js"}}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2020-05-06 12:54:15+0000","generator":"GlotPress\/3.0.0-alpha","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"block search term\u0004maps":["kartor"],"Grow":["V\u00e4x"],"Earn":["Tj\u00e4na"],"Delete Marker":["Ta bort mark\u00f6r"],"Marker Caption":["Tidsmark\u00f6rstext"],"Marker Title":["Tidsmark\u00f6rstitel"],"Terrain":["Terr\u00e4ng"],"Satellite":["Satellit"],"Black and white":["Svart och vit"],"Basic":["Grundl\u00e4ggande"],"Add an interactive map showing one or more locations.":["L\u00e4gg till en interaktiv karta som visar en eller flera platser."],"block search term\u0004navigation":["navigering"],"block search term\u0004location":["plats"],"Map":["Karta"]}},"comment":{"reference":"_inc\/blocks\/map\/view.js"}}
|
||||
{"translation-revision-date":"2020-06-20 21:06:08+0000","generator":"GlotPress\/3.0.0-alpha","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"block search term\u0004maps":["kartor"],"Grow":["V\u00e4x"],"Earn":["Tj\u00e4na"],"Delete Marker":["Ta bort mark\u00f6r"],"Marker Caption":["Tidsmark\u00f6rstext"],"Marker Title":["Tidsmark\u00f6rstitel"],"Terrain":["Terr\u00e4ng"],"Satellite":["Satellit"],"Black and white":["Svart och vit"],"Basic":["Grundl\u00e4ggande"],"Add an interactive map showing one or more locations.":["L\u00e4gg till en interaktiv karta som visar en eller flera platser."],"block search term\u0004navigation":["navigering"],"block search term\u0004location":["plats"],"Map":["Karta"]}},"comment":{"reference":"_inc\/blocks\/map\/view.js"}}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because it is too large
Load Diff
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2020-03-11 15:28:57+0000","generator":"GlotPress\/2.4.0-alpha","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Editor tips":["Redigeringstips"],"Disable tips":["Inaktivera tips"],"Got it":["Jag f\u00f6rst\u00e5r"],"See next tip":["Se n\u00e4sta tips"]}},"comment":{"reference":"wp-includes\/js\/dist\/nux.js"}}
|
||||
{"translation-revision-date":"2020-06-06 09:38:51+0000","generator":"GlotPress\/3.0.0-alpha","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Editor tips":["Redigeringstips"],"Disable tips":["Inaktivera tips"],"Got it":["Jag f\u00f6rst\u00e5r"],"See next tip":["Se n\u00e4sta tips"]}},"comment":{"reference":"wp-includes\/js\/dist\/nux.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2020-03-11 15:28:57+0000","generator":"GlotPress\/2.4.0-alpha","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"%s Block":["Block av typen %s"],"%1$s Block. %2$s":["Block %1$s. %2$s"],"%s Block. Column %d":["Block %s. Kolumn %d"],"%1$s Block. Column %2$d. %3$s":["Block %1$s. kolumn %2$d. %3$s"],"%s Block. Row %d":["%s block. Rad %d"],"%1$s Block. Row %2$d. %3$s":["%1$s block. Rad %2$d. %3$s"],"Common blocks":["Vanliga block"],"Embeds":["Inb\u00e4ddningar"],"Formatting":["Formatering"],"Layout elements":["Layoutelement"],"Reusable blocks":["\u00c5teranv\u00e4ndbara block"],"Widgets":["Widgetar"]}},"comment":{"reference":"wp-includes\/js\/dist\/blocks.js"}}
|
||||
{"translation-revision-date":"2020-06-06 09:38:51+0000","generator":"GlotPress\/3.0.0-alpha","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"%s Block":["Block av typen %s"],"%1$s Block. %2$s":["Block %1$s. %2$s"],"%s Block. Column %d":["Block %s. Kolumn %d"],"%1$s Block. Column %2$d. %3$s":["Block %1$s. kolumn %2$d. %3$s"],"%s Block. Row %d":["%s block. Rad %d"],"%1$s Block. Row %2$d. %3$s":["%1$s block. Rad %2$d. %3$s"],"Reusable blocks":["\u00c5teranv\u00e4ndbara block"],"Embeds":["Inb\u00e4ddningar"],"Layout elements":["Layoutelement"],"Formatting":["Formatering"],"Common blocks":["Vanliga block"],"Widgets":["Widgetar"]}},"comment":{"reference":"wp-includes\/js\/dist\/blocks.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2020-03-11 15:28:57+0000","generator":"GlotPress\/2.4.0-alpha","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"You are probably offline.":["Du \u00e4r f\u00f6rmodligen offline."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Uppladdningen av mediafilen misslyckades. Om det \u00e4r ett foto eller en stor bild b\u00f6r du minska dess storlek och f\u00f6rs\u00f6ka igen."],"The response is not a valid JSON response.":["Svaret \u00e4r inget giltigt JSON-svar."],"An unknown error occurred.":["Ett ok\u00e4nt fel uppstod."]}},"comment":{"reference":"wp-includes\/js\/dist\/api-fetch.js"}}
|
||||
{"translation-revision-date":"2020-06-06 09:38:51+0000","generator":"GlotPress\/3.0.0-alpha","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"You are probably offline.":["Du \u00e4r f\u00f6rmodligen offline."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Uppladdningen av mediafilen misslyckades. Om det \u00e4r ett foto eller en stor bild b\u00f6r du minska dess storlek och f\u00f6rs\u00f6ka igen."],"The response is not a valid JSON response.":["Svaret \u00e4r inget giltigt JSON-svar."],"An unknown error occurred.":["Ett ok\u00e4nt fel uppstod."]}},"comment":{"reference":"wp-includes\/js\/dist\/api-fetch.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2020-03-11 15:28:57+0000","generator":"GlotPress\/2.4.0-alpha","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Unknown error":["Ok\u00e4nt fel"],"Import from JSON":["Importera fr\u00e5n JSON"],"Invalid JSON file":["Ogiltig JSON-fil"],"Reusable block imported successfully!":["\u00c5teranv\u00e4ndbart block importerat utan problem."],"Invalid Reusable Block JSON file":["Ogiltig JSON-fil f\u00f6r \u00e5teranv\u00e4ndbart block"],"button label\u0004Import":["Importera"],"File":["Fil"]}},"comment":{"reference":"wp-includes\/js\/dist\/list-reusable-blocks.js"}}
|
||||
{"translation-revision-date":"2020-06-06 09:38:51+0000","generator":"GlotPress\/3.0.0-alpha","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Reusable block imported successfully!":["\u00c5teranv\u00e4ndbart block importerat utan problem."],"button label\u0004Import":["Importera"],"Unknown error":["Ok\u00e4nt fel"],"Invalid Reusable Block JSON file":["Ogiltig JSON-fil f\u00f6r \u00e5teranv\u00e4ndbart block"],"Invalid JSON file":["Ogiltig JSON-fil"],"Import from JSON":["Importera fr\u00e5n JSON"],"File":["Fil"]}},"comment":{"reference":"wp-includes\/js\/dist\/list-reusable-blocks.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2020-03-11 15:28:57+0000","generator":"GlotPress\/2.4.0-alpha","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Annotation":["Beskrivning"]}},"comment":{"reference":"wp-includes\/js\/dist\/annotations.js"}}
|
||||
{"translation-revision-date":"2020-06-06 09:38:51+0000","generator":"GlotPress\/3.0.0-alpha","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Annotation":["Beskrivning"]}},"comment":{"reference":"wp-includes\/js\/dist\/annotations.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2020-03-24 17:02:49+0000","generator":"GlotPress\/2.4.0-alpha","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"All site health tests have finished running. There are items that should be addressed, and the results are now available on the page.":["Alla h\u00e4lsokontroller f\u00f6r webbplatsen har nu genomf\u00f6rts. Det finns saker som b\u00f6r \u00e5tg\u00e4rdas och resultaten \u00e4r nu tillg\u00e4ngliga p\u00e5 sidan."],"Should be improved":["B\u00f6r f\u00f6rb\u00e4ttras"],"Good":["Bra"],"%s critical issue":["%s kritiskt problem","%s kritiska problem"],"%s recommended improvement":["%s rekommenderad f\u00f6rb\u00e4ttring","%s rekommenderade f\u00f6rb\u00e4ttringar"],"%s item with no issues detected":["%s objekt utan n\u00e5gra uppt\u00e4ckta problem","%s objekt utan n\u00e5gra uppt\u00e4ckta problem"],"Please wait...":["V\u00e4nta ..."],"Site information has been added to your clipboard.":["Information om webbplatsen har kopierats till ditt urklipp."],"All site health tests have finished running. Your site is looking good, and the results are now available on the page.":["Alla h\u00e4lsokontroller f\u00f6r webbplatsen har slutf\u00f6rts. Din webbplats ser bra ut och resultaten \u00e4r nu tillg\u00e4ngliga p\u00e5 sidan."],"All site health tests have finished running.":["Alla h\u00e4lsokontroller f\u00f6r webbplatsen har slutf\u00f6rts."]}},"comment":{"reference":"wp-admin\/js\/site-health.js"}}
|
||||
{"translation-revision-date":"2020-06-21 08:38:21+0000","generator":"GlotPress\/3.0.0-alpha","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"All site health tests have finished running. There are items that should be addressed, and the results are now available on the page.":["Alla h\u00e4lsokontroller f\u00f6r webbplatsen har nu genomf\u00f6rts. Det finns saker som b\u00f6r \u00e5tg\u00e4rdas och resultaten \u00e4r nu tillg\u00e4ngliga p\u00e5 sidan."],"Should be improved":["B\u00f6r f\u00f6rb\u00e4ttras"],"Good":["Bra"],"%s critical issue":["%s kritiskt problem","%s kritiska problem"],"%s item with no issues detected":["%s objekt utan n\u00e5gra uppt\u00e4ckta problem","%s objekt utan n\u00e5gra uppt\u00e4ckta problem"],"%s recommended improvement":["%s rekommenderad f\u00f6rb\u00e4ttring","%s rekommenderade f\u00f6rb\u00e4ttringar"],"Site information has been added to your clipboard.":["Information om webbplatsen har kopierats till ditt urklipp."],"All site health tests have finished running. Your site is looking good, and the results are now available on the page.":["Alla h\u00e4lsokontroller f\u00f6r webbplatsen har slutf\u00f6rts. Din webbplats ser bra ut och resultaten \u00e4r nu tillg\u00e4ngliga p\u00e5 sidan."],"All site health tests have finished running.":["Alla h\u00e4lsokontroller f\u00f6r webbplatsen har slutf\u00f6rts."],"Please wait...":["V\u00e4nta ..."]}},"comment":{"reference":"wp-admin\/js\/site-health.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2020-03-11 15:28:57+0000","generator":"GlotPress\/2.4.0-alpha","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Inline Code":["Programkod inline"],"media":["media"],"Link removed.":["L\u00e4nk borttagen."],"Link edited.":["L\u00e4nk redigerad."],"Inline image":["Bild inlagd i texten"],"photo":["foto"],"Warning: the link has been inserted but may have errors. Please test it.":["Varning: l\u00e4nken har lagts till men kan inneh\u00e5lla fel. V\u00e4nligen testa den."],"Link inserted.":["L\u00e4nk infogad."],"Text Color":["Textf\u00e4rg"],"Link":["L\u00e4nk"],"Bold":["Fet"],"Italic":["Kursiv"],"Underline":["Understreck"],"Strikethrough":["Genomstruken"],"Unlink":["Ta bort l\u00e4nkning"],"Width":["Bredd"],"Apply":["Verkst\u00e4ll"]}},"comment":{"reference":"wp-includes\/js\/dist\/format-library.js"}}
|
||||
{"translation-revision-date":"2020-06-06 09:38:51+0000","generator":"GlotPress\/3.0.0-alpha","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Inline Code":["Programkod inline"],"Link edited.":["L\u00e4nk redigerad."],"Link removed.":["L\u00e4nk borttagen."],"Inline image":["Bild inlagd i texten"],"media":["media"],"photo":["foto"],"Warning: the link has been inserted but may have errors. Please test it.":["Varning: l\u00e4nken har lagts till men kan inneh\u00e5lla fel. V\u00e4nligen testa den."],"Link inserted.":["L\u00e4nk infogad."],"Text Color":["Textf\u00e4rg"],"Link":["L\u00e4nk"],"Unlink":["Ta bort l\u00e4nkning"],"Strikethrough":["Genomstruken"],"Underline":["Understreck"],"Italic":["Kursiv"],"Bold":["Fet"],"Width":["Bredd"],"Apply":["Verkst\u00e4ll"]}},"comment":{"reference":"wp-includes\/js\/dist\/format-library.js"}}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2020-03-11 15:28:57+0000","generator":"GlotPress\/2.4.0-alpha","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"%s item selected":["%s objekt valt","%s objekt valda"]}},"comment":{"reference":"wp-includes\/js\/media-views.js"}}
|
||||
{"translation-revision-date":"2020-06-06 09:38:51+0000","generator":"GlotPress\/3.0.0-alpha","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"%s item selected":["%s objekt valt","%s objekt valda"]}},"comment":{"reference":"wp-includes\/js\/media-views.js"}}
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2020-03-11 15:28:57+0000","generator":"GlotPress\/2.4.0-alpha","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"%s block icon":["ikon f\u00f6r blocket %s"],"No blocks found in your library. These blocks can be downloaded and installed:":["Inga block hittades i ditt bibliotek. Dessa block kan laddas ner och installeras:"],"Retry":["F\u00f6rs\u00f6k igen"],"No blocks found in your library. We did find %d block available for download.":["Inga block hittades i ditt bibliotek. Vi hittade %d block tillg\u00e4ngligt f\u00f6r nedladdning.","Inga block hittades i ditt bibliotek. Vi hittade %d block tillg\u00e4ngliga f\u00f6r nedladdning."],"No blocks found in your library.":["Inga block hittades i ditt bibliotek."],"Please contact your site administrator to install new blocks.":["Kontakta din webbplatsadministrat\u00f6r f\u00f6r att installera nya block."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["Inga block hittades i ditt bibliotek. Kontakta din webbplatsadministrat\u00f6r f\u00f6r att installera nya block."],"Block previews can\u2019t load.":["Det g\u00e5r inte att ladda f\u00f6rhandsvisningen av block."],"Block previews can't install.":["Det g\u00e5r inte att installera f\u00f6rhandsvisningen av block."],"%d active installation":["%d aktiv installation","%d aktiva installationer"],"Authored by %s":["F\u00f6rfattad av %s"],"%s out of 5 stars":["%s av 5 stj\u00e4rnor"],"This author has %d block, with an average rating of %d.":["Denna f\u00f6rfattare har %d block, med ett genomsnittligt betyg p\u00e5 %d.","Denna f\u00f6rfattare har %d block, med ett genomsnittligt betyg p\u00e5 %d."],"%d total rating":["Totalt %d recension","Totalt %d recensioner"],"Add block":["L\u00e4gg till block"],"Remove":["Ta bort"],"Updated %s":["Uppdaterade %s"]}},"comment":{"reference":"wp-includes\/js\/dist\/block-directory.js"}}
|
||||
{"translation-revision-date":"2020-06-06 09:38:51+0000","generator":"GlotPress\/3.0.0-alpha","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"%s block icon":["ikon f\u00f6r blocket %s"],"No blocks found in your library. These blocks can be downloaded and installed:":["Inga block hittades i ditt bibliotek. Dessa block kan laddas ner och installeras:"],"No blocks found in your library. We did find %d block available for download.":["Inga block hittades i ditt bibliotek. Vi hittade %d block tillg\u00e4ngligt f\u00f6r nedladdning.","Inga block hittades i ditt bibliotek. Vi hittade %d block tillg\u00e4ngliga f\u00f6r nedladdning."],"Please contact your site administrator to install new blocks.":["Kontakta din webbplatsadministrat\u00f6r f\u00f6r att installera nya block."],"No blocks found in your library.":["Inga block hittades i ditt bibliotek."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["Inga block hittades i ditt bibliotek. Kontakta din webbplatsadministrat\u00f6r f\u00f6r att installera nya block."],"Block previews can't install.":["Det g\u00e5r inte att installera f\u00f6rhandsvisningen av block."],"Retry":["F\u00f6rs\u00f6k igen"],"Block previews can\u2019t load.":["Det g\u00e5r inte att ladda f\u00f6rhandsvisningen av block."],"%d active installation":["%d aktiv installation","%d aktiva installationer"],"This author has %d block, with an average rating of %d.":["Denna f\u00f6rfattare har %d block, med ett genomsnittligt betyg p\u00e5 %d.","Denna f\u00f6rfattare har %d block, med ett genomsnittligt betyg p\u00e5 %d."],"Authored by %s":["F\u00f6rfattad av %s"],"%d total rating":["Totalt %d recension","Totalt %d recensioner"],"%s out of 5 stars":["%s av 5 stj\u00e4rnor"],"Add block":["L\u00e4gg till block"],"Remove":["Ta bort"],"Updated %s":["Uppdaterade %s"]}},"comment":{"reference":"wp-includes\/js\/dist\/block-directory.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2020-03-11 15:28:57+0000","generator":"GlotPress\/2.4.0-alpha","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Period":["Period"],"Comma":["Komma"],"Backtick":["Backtick (`)"]}},"comment":{"reference":"wp-includes\/js\/dist\/keycodes.js"}}
|
||||
{"translation-revision-date":"2020-06-06 09:38:51+0000","generator":"GlotPress\/3.0.0-alpha","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Backtick":["Backtick (`)"],"Period":["Period"],"Comma":["Komma"]}},"comment":{"reference":"wp-includes\/js\/dist\/keycodes.js"}}
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2020-03-11 15:28:57+0000","generator":"GlotPress\/2.4.0-alpha","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Select or Upload Media":["V\u00e4lj eller ladda upp media"],"This file is empty.":["Filen \u00e4r tom."],"Sorry, this file type is not supported here.":["Denna filtyp st\u00f6ds inte h\u00e4r."],"Error while uploading file %s to the media library.":["Ett fel intr\u00e4ffade n\u00e4r filen %s laddades upp till mediabiblioteket."],"Sorry, this file type is not permitted for security reasons.":["Denna filtyp \u00e4r inte till\u00e5ten av s\u00e4kerhetssk\u00e4l."],"This file exceeds the maximum upload size for this site.":["Filen \u00f6verskrider den maximala storleken f\u00f6r filuppladdningar p\u00e5 denna webbplats."]}},"comment":{"reference":"wp-includes\/js\/dist\/media-utils.js"}}
|
||||
{"translation-revision-date":"2020-06-06 09:38:51+0000","generator":"GlotPress\/3.0.0-alpha","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Select or Upload Media":["V\u00e4lj eller ladda upp media"],"Error while uploading file %s to the media library.":["Ett fel intr\u00e4ffade n\u00e4r filen %s laddades upp till mediabiblioteket."],"This file is empty.":["Filen \u00e4r tom."],"Sorry, this file type is not supported here.":["Denna filtyp st\u00f6ds inte h\u00e4r."],"Sorry, this file type is not permitted for security reasons.":["Denna filtyp \u00e4r inte till\u00e5ten av s\u00e4kerhetssk\u00e4l."],"This file exceeds the maximum upload size for this site.":["Filen \u00f6verskrider den maximala storleken f\u00f6r filuppladdningar p\u00e5 denna webbplats."]}},"comment":{"reference":"wp-includes\/js\/dist\/media-utils.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2020-03-11 15:28:57+0000","generator":"GlotPress\/2.4.0-alpha","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Block rendered as empty.":["Blocket visas tomt."],"Error loading block: %s":["Ett fel intr\u00e4ffade vid laddning av block: %s"]}},"comment":{"reference":"wp-includes\/js\/dist\/server-side-render.js"}}
|
||||
{"translation-revision-date":"2020-06-06 09:38:51+0000","generator":"GlotPress\/3.0.0-alpha","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Block rendered as empty.":["Blocket visas tomt."],"Error loading block: %s":["Ett fel intr\u00e4ffade vid laddning av block: %s"]}},"comment":{"reference":"wp-includes\/js\/dist\/server-side-render.js"}}
|
||||
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
|
|
@ -2,12 +2,12 @@
|
|||
# This file is distributed under the same license as the Themes - Twenty Eleven package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2020-03-31 21:00:33+0000\n"
|
||||
"PO-Revision-Date: 2020-05-11 14:32:01+0000\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: GlotPress/2.4.0-alpha\n"
|
||||
"X-Generator: GlotPress/3.0.0-alpha\n"
|
||||
"Language: sv_SE\n"
|
||||
"Project-Id-Version: Themes - Twenty Eleven\n"
|
||||
|
||||
|
|
@ -268,7 +268,7 @@ msgstr "Sida %s"
|
|||
#. 5: Author posts, 6: Author post link text, 7: Author display name.
|
||||
#: functions.php:797
|
||||
msgid "<span class=\"sep\">Posted on </span><a href=\"%1$s\" title=\"%2$s\" rel=\"bookmark\"><time class=\"entry-date\" datetime=\"%3$s\">%4$s</time></a><span class=\"by-author\"> <span class=\"sep\"> by </span> <span class=\"author vcard\"><a class=\"url fn n\" href=\"%5$s\" title=\"%6$s\" rel=\"author\">%7$s</a></span></span>"
|
||||
msgstr "<span class=\"sep\">Postat </span><a href=\"%1$s\" title=\"%2$s\" rel=\"bookmark\"><time class=\"entry-date\" datetime=\"%3$s\">%4$s</time></a><span class=\"by-author\"> <span class=\"sep\"> av </span> <span class=\"author vcard\"><a class=\"url fn n\" href=\"%5$s\" title=\"%6$s\" rel=\"author\">%7$s</a></span></span>"
|
||||
msgstr "<span class=\"sep\">Publicerat </span><a href=\"%1$s\" title=\"%2$s\" rel=\"bookmark\"><time class=\"entry-date\" datetime=\"%3$s\">%4$s</time></a><span class=\"by-author\"> <span class=\"sep\"> av </span> <span class=\"author vcard\"><a class=\"url fn n\" href=\"%5$s\" title=\"%6$s\" rel=\"author\">%7$s</a></span></span>"
|
||||
|
||||
#: functions.php:770
|
||||
msgid "Reply <span>↓</span>"
|
||||
|
|
@ -402,19 +402,19 @@ msgstr "Visa alla inlägg av %s <span class=\"meta-nav\">→</span>"
|
|||
#. 5: Author name, 6: Author URL.
|
||||
#: content-single.php:49
|
||||
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>."
|
||||
msgstr "Detta inlägg postades av <a href=\"%6$s\">%5$s</a>. Bokmärk <a href=\"%3$s\" title=\"Permalänk till %4$s\" rel=\"bookmark\">permalänken</a>."
|
||||
msgstr "Detta inlägg publicerades av <a href=\"%6$s\">%5$s</a>. Bokmärk <a href=\"%3$s\" title=\"Permalänk till %4$s\" rel=\"bookmark\">permalänken</a>."
|
||||
|
||||
#. translators: 1: Categories list, 2: Tag list, 3: Permalink, 4: Post title,
|
||||
#. 5: Author name, 6: Author URL.
|
||||
#: content-single.php:46
|
||||
msgid "This entry was posted in %1$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 "Det här inlägget postades i %1$s av <a href=\"%6$s\">%5$s</a>. Bokmärk <a href=\"%3$s\" title=\"Permalänk till %4$s\" rel=\"bookmark\">permalänken</a>."
|
||||
msgstr "Detta inlägg är publicerat under %1$s av <a href=\"%6$s\">%5$s</a>. Bokmärk <a href=\"%3$s\" title=\"Permalänk till %4$s\" rel=\"bookmark\">permalänken</a>."
|
||||
|
||||
#. translators: 1: Categories list, 2: Tag list, 3: Permalink, 4: Post title,
|
||||
#. 5: Author name, 6: Author URL.
|
||||
#: content-single.php:43
|
||||
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 "Det här inlägget postades i %1$s och märktes %2$s av <a href=\"%6$s\">%5$s</a>. Bokmärk <a href=\"%3$s\" title=\"Permalänk till %4$s\" rel=\"bookmark\">permalänken</a>."
|
||||
msgstr "Detta inlägg är publicerat under %1$s och märkt %2$s av <a href=\"%6$s\">%5$s</a>. Bokmärk <a href=\"%3$s\" title=\"Permalänk till %4$s\" rel=\"bookmark\">permalänken</a>."
|
||||
|
||||
#: content-quote.php:15
|
||||
msgid "Quote"
|
||||
|
|
@ -472,13 +472,13 @@ msgstr "Galleri"
|
|||
#. translators: 1: Category list, 3: Post permalink, 4: Post title.
|
||||
#: content-featured.php:42
|
||||
msgid "This entry was posted in %1$s. Bookmark the <a href=\"%3$s\" title=\"Permalink to %4$s\" rel=\"bookmark\">permalink</a>."
|
||||
msgstr "Det här inlägget postades i %1$s. Bokmärk <a href=\"%3$s\" title=\"Permalänk till %4$s\" rel=\"bookmark\">permalänken</a>. "
|
||||
msgstr "Detta inlägg är publicerat under %1$s. Bokmärk <a href=\"%3$s\" title=\"Permalänk till %4$s\" rel=\"bookmark\">permalänken</a>. "
|
||||
|
||||
#. translators: 1: Category list, 2: Tag list, 3: Post permalink, 4: Post
|
||||
#. title.
|
||||
#: content-featured.php:39
|
||||
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 "Det här inlägget postades i %1$s och har märkts med etiketterna %2$s. Bokmärk <a href=\"%3$s\" title=\"Permalink to %4$s\" rel=\"bookmark\">permalänken</a>."
|
||||
msgstr "Detta inlägg är publicerat under %1$s och är märkt %2$s. Bokmärk <a href=\"%3$s\" title=\"Permalink to %4$s\" rel=\"bookmark\">permalänken</a>."
|
||||
|
||||
#. translators: Used between list items, there is a space after the comma.
|
||||
#: content-gallery.php:75 content-gallery.php:88 content-image.php:59
|
||||
|
|
@ -592,7 +592,7 @@ msgstr "Författararkiv: %s"
|
|||
|
||||
#: archive.php:71 index.php:44 tag.php:70 category.php:70 author.php:106
|
||||
msgid "Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post."
|
||||
msgstr "Tyvärr så kunde inga resultat hittas för efterfrågat arkiv. Kanske kan en sökning hjälpa dig att hitta relaterande inlägg."
|
||||
msgstr "Ingenting hittades på den efterfrågade arkivsidan. Kanske kan en sökning hjälpa dig att hitta relaterande inlägg."
|
||||
|
||||
#: archive.php:67 index.php:40 tag.php:66 search.php:52 category.php:66
|
||||
#: author.php:102
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -0,0 +1,398 @@
|
|||
# Translation of Themes - Twenty Nineteen in Swedish
|
||||
# This file is distributed under the same license as the Themes - Twenty Nineteen package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2020-03-31 20:56:24+0000\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: GlotPress/3.0.0-alpha\n"
|
||||
"Language: sv_SE\n"
|
||||
"Project-Id-Version: Themes - Twenty Nineteen\n"
|
||||
|
||||
#. Description of the theme
|
||||
msgid "Our 2019 default theme is designed to show off the power of the block editor. It features custom styles for all the default blocks, and is built so that what you see in the editor looks like what you'll see on your website. Twenty Nineteen is designed to be adaptable to a wide range of websites, whether you’re running a photo blog, launching a new business, or supporting a non-profit. Featuring ample whitespace and modern sans-serif headlines paired with classic serif body text, it's built to be beautiful on all screen sizes."
|
||||
msgstr "Vårt standardtema för 2019 är utformat för att visa upp blockredigerarens möjligheter. Det har anpassade stilar för alla standardblock och är konstruerat så att innehållet i ser likadant ut redigeraren som på webbplatsen. Twenty Nineteen är utformat så att det kan anpassas för många typer av webbplatser, vare sig du har en fotoblogg, startar ett nytt företag eller stödjer en ideell förening. Det är byggt för att vara snyggt på skärmar av alla storlekar, med gott om vitt utrymme, rubriker i moderna sans-serifer i kombination med brödtext i klassiska serif-typsnitt."
|
||||
|
||||
#. Theme Name of the theme
|
||||
msgid "Twenty Nineteen"
|
||||
msgstr "Twenty Nineteen"
|
||||
|
||||
#: classes/class-twentynineteen-walker-comment.php:96
|
||||
msgid "Your comment is awaiting moderation. This is a preview, your comment will be visible after it has been approved."
|
||||
msgstr "Din kommentar inväntar granskning. Detta är en förhandsvisning. Din kommentar blir synlig när den har godkänts."
|
||||
|
||||
#: functions.php:153
|
||||
msgid "Dark Blue"
|
||||
msgstr "Mörkblått"
|
||||
|
||||
#: functions.php:148
|
||||
msgid "Blue"
|
||||
msgstr "Blått"
|
||||
|
||||
#. translators: %s: Parent post link.
|
||||
#: single.php:31
|
||||
msgid "<span class=\"meta-nav\">Published in</span><span class=\"post-title\">%s</span>"
|
||||
msgstr "<span class=\"meta-nav\">Publicerad i</span><span class=\"post-title\">%s</span>"
|
||||
|
||||
#: image.php:87
|
||||
msgctxt "Parent post link"
|
||||
msgid "<span class=\"meta-nav\">Published in</span><br><span class=\"post-title\">%title</span>"
|
||||
msgstr "<span class=\"meta-nav\">Publicerat i</span><br><span class=\"post-title\">%title</span>"
|
||||
|
||||
#: template-parts/content/content.php:18
|
||||
#: template-parts/content/content-excerpt.php:18
|
||||
msgctxt "post"
|
||||
msgid "Featured"
|
||||
msgstr "Utvalt"
|
||||
|
||||
#. translators: %s: WordPress version.
|
||||
#: inc/back-compat.php:40 inc/back-compat.php:55 inc/back-compat.php:76
|
||||
msgid "Twenty Nineteen requires at least WordPress version 4.7. You are running version %s. Please upgrade and try again."
|
||||
msgstr "Twenty Nineteen kräver lägst WordPress version 4.7. Du använder version %s. Uppgradera och försök igen."
|
||||
|
||||
#: inc/template-functions.php:143
|
||||
msgid "Back"
|
||||
msgstr "Tillbaka"
|
||||
|
||||
#: inc/template-functions.php:136
|
||||
msgid "More"
|
||||
msgstr "Mer"
|
||||
|
||||
#: inc/customizer.php:98
|
||||
msgid "Apply a filter to featured images using the primary color"
|
||||
msgstr "Använd ett filter för utvalda bilder med användning av primärfärgen"
|
||||
|
||||
#: inc/customizer.php:78
|
||||
msgid "Apply a custom color for buttons, links, featured images, etc."
|
||||
msgstr "Använd en anpassad färg för knappar, länkar, utvalda bilder m.m."
|
||||
|
||||
#: inc/customizer.php:56
|
||||
msgctxt "primary color"
|
||||
msgid "Custom"
|
||||
msgstr "Anpassad"
|
||||
|
||||
#: inc/customizer.php:55
|
||||
msgctxt "primary color"
|
||||
msgid "Default"
|
||||
msgstr "Standard"
|
||||
|
||||
#: functions.php:168
|
||||
msgid "White"
|
||||
msgstr "Vitt"
|
||||
|
||||
#: functions.php:163
|
||||
msgid "Light Gray"
|
||||
msgstr "Ljustgrått"
|
||||
|
||||
#: functions.php:158
|
||||
msgid "Dark Gray"
|
||||
msgstr "Mörkgrått"
|
||||
|
||||
#: functions.php:136
|
||||
msgid "XL"
|
||||
msgstr "XL"
|
||||
|
||||
#: functions.php:135
|
||||
msgid "Huge"
|
||||
msgstr "Enorm"
|
||||
|
||||
#: functions.php:130
|
||||
msgid "L"
|
||||
msgstr "L"
|
||||
|
||||
#: functions.php:129
|
||||
msgid "Large"
|
||||
msgstr "Stor"
|
||||
|
||||
#: functions.php:124
|
||||
msgid "M"
|
||||
msgstr "M"
|
||||
|
||||
#: functions.php:123
|
||||
msgid "Normal"
|
||||
msgstr "Normal"
|
||||
|
||||
#: functions.php:117
|
||||
msgid "Small"
|
||||
msgstr "Liten"
|
||||
|
||||
#: functions.php:118
|
||||
msgid "S"
|
||||
msgstr "S"
|
||||
|
||||
#: functions.php:60 footer.php:37
|
||||
msgid "Footer Menu"
|
||||
msgstr "Sidfotsmeny"
|
||||
|
||||
#: image.php:70
|
||||
msgctxt "Used before full size attachment link."
|
||||
msgid "Full size"
|
||||
msgstr "Full storlek"
|
||||
|
||||
#: image.php:56
|
||||
msgid "Page"
|
||||
msgstr "Sida"
|
||||
|
||||
#: functions.php:192
|
||||
msgid "Add widgets here to appear in your footer."
|
||||
msgstr "Lägg till widgetar här som ska visas i sidfoten."
|
||||
|
||||
#: functions.php:190 template-parts/footer/footer-widgets.php:12
|
||||
msgid "Footer"
|
||||
msgstr "Sidfot"
|
||||
|
||||
#: inc/customizer.php:53
|
||||
msgid "Primary Color"
|
||||
msgstr "Huvudfärg"
|
||||
|
||||
#: template-parts/post/discussion-meta.php:18
|
||||
msgid "No comments"
|
||||
msgstr "Ingen kommentar"
|
||||
|
||||
#. translators: %d: Number of comments.
|
||||
#: template-parts/post/discussion-meta.php:16
|
||||
msgid "%d Comment"
|
||||
msgid_plural "%d Comments"
|
||||
msgstr[0] "%d kommentar"
|
||||
msgstr[1] "%d kommentarer"
|
||||
|
||||
#: template-parts/post/author-bio.php:26
|
||||
msgid "View more posts"
|
||||
msgstr "Visa fler inlägg"
|
||||
|
||||
#. translators: %s: Post author.
|
||||
#: template-parts/post/author-bio.php:17
|
||||
msgid "Published by %s"
|
||||
msgstr "Publicerat av %s"
|
||||
|
||||
#: template-parts/header/site-branding.php:33
|
||||
msgid "Top Menu"
|
||||
msgstr "Toppmeny"
|
||||
|
||||
#. translators: %s: Post title. Only visible to screen readers.
|
||||
#: template-parts/content/content.php:36
|
||||
#: template-parts/content/content-single.php:27
|
||||
msgid "Continue reading<span class=\"screen-reader-text\"> \"%s\"</span>"
|
||||
msgstr "Fortsätt läsa<span class=\"screen-reader-text\"> \"%s\"</span>"
|
||||
|
||||
#: image.php:52 template-parts/content/content-page.php:27
|
||||
#: template-parts/content/content.php:49
|
||||
#: template-parts/content/content-single.php:40
|
||||
msgid "Pages:"
|
||||
msgstr "Sidor:"
|
||||
|
||||
#: template-parts/content/content-none.php:46
|
||||
msgid "It seems we can’t find what you’re looking for. Perhaps searching can help."
|
||||
msgstr "Det verkar inte som om vi kan hitta det du letar efter. Kanske kan en sökning hjälpa."
|
||||
|
||||
#: template-parts/content/content-none.php:39
|
||||
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
|
||||
msgstr "Ledsen, inget matchade dina sökkriterier. Vänligen försök igen med andra nyckelord."
|
||||
|
||||
#. translators: 1: Link to WP admin new post page.
|
||||
#: template-parts/content/content-none.php:26
|
||||
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "Är du redo att posta ditt första inlägg? <a href=\"%1$s\">Starta här</a>."
|
||||
|
||||
#: template-parts/content/content-none.php:16
|
||||
msgid "Nothing Found"
|
||||
msgstr "Kunde inte hittas"
|
||||
|
||||
#: single.php:42
|
||||
msgid "Previous post:"
|
||||
msgstr "Föregående inlägg:"
|
||||
|
||||
#: single.php:41
|
||||
msgid "Previous Post"
|
||||
msgstr "Föregående inlägg"
|
||||
|
||||
#: single.php:39
|
||||
msgid "Next post:"
|
||||
msgstr "Nästa inlägg:"
|
||||
|
||||
#: single.php:38
|
||||
msgid "Next Post"
|
||||
msgstr "Nästa inlägg"
|
||||
|
||||
#: search.php:22
|
||||
msgid "Search results for: "
|
||||
msgstr "Sökresultat för:"
|
||||
|
||||
#: inc/template-tags.php:234
|
||||
msgid "Older posts"
|
||||
msgstr "Äldre inlägg"
|
||||
|
||||
#: inc/template-tags.php:230
|
||||
msgid "Newer posts"
|
||||
msgstr "Nyare inlägg"
|
||||
|
||||
#: inc/template-tags.php:104
|
||||
msgid "Tags:"
|
||||
msgstr "Etiketter:"
|
||||
|
||||
#: inc/template-tags.php:92
|
||||
msgid "Posted in"
|
||||
msgstr "Publicerat i"
|
||||
|
||||
#. translators: Used between list items, there is a space after the comma.
|
||||
#: inc/template-tags.php:86 inc/template-tags.php:98
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
|
||||
#. translators: %s: Post title. Only visible to screen readers.
|
||||
#: inc/template-tags.php:63
|
||||
msgid "Leave a comment<span class=\"screen-reader-text\"> on %s</span>"
|
||||
msgstr "Lämna en kommentar<span class=\"screen-reader-text\"> till %s</span>"
|
||||
|
||||
#: inc/template-tags.php:46
|
||||
msgid "Posted by"
|
||||
msgstr "Publicerat av"
|
||||
|
||||
#: inc/template-functions.php:82
|
||||
msgctxt "monthly archives date format"
|
||||
msgid "F Y"
|
||||
msgstr "F Y"
|
||||
|
||||
#: inc/template-functions.php:80
|
||||
msgctxt "yearly archives date format"
|
||||
msgid "Y"
|
||||
msgstr "Y"
|
||||
|
||||
#: inc/template-functions.php:92
|
||||
msgid "Archives:"
|
||||
msgstr "Arkiv:"
|
||||
|
||||
#. translators: %s: Taxonomy singular name.
|
||||
#: inc/template-functions.php:90
|
||||
msgid "%s Archives:"
|
||||
msgstr "Arkiv för %s:"
|
||||
|
||||
#: inc/template-functions.php:86
|
||||
msgid "Post Type Archives: "
|
||||
msgstr "Inläggstypsarkiv:"
|
||||
|
||||
#: inc/template-functions.php:84
|
||||
msgid "Daily Archives: "
|
||||
msgstr "Dagliga arkiv:"
|
||||
|
||||
#: inc/template-functions.php:82
|
||||
msgid "Monthly Archives: "
|
||||
msgstr "Månatliga arkiv:"
|
||||
|
||||
#: inc/template-functions.php:80
|
||||
msgid "Yearly Archives: "
|
||||
msgstr "Årsarkiv:"
|
||||
|
||||
#: inc/template-functions.php:78
|
||||
msgid "Author Archives: "
|
||||
msgstr "Författararkiv:"
|
||||
|
||||
#: inc/template-functions.php:76
|
||||
msgid "Tag Archives: "
|
||||
msgstr "Etikettarkiv:"
|
||||
|
||||
#: inc/template-functions.php:74
|
||||
msgid "Category Archives: "
|
||||
msgstr "Kategoriarkiv:"
|
||||
|
||||
#. translators: %s: Post title. Only visible to screen readers.
|
||||
#: template-parts/content/content-page.php:41
|
||||
#: template-parts/header/entry-header.php:32 inc/template-tags.php:120
|
||||
msgid "Edit <span class=\"screen-reader-text\">%s</span>"
|
||||
msgstr "Redigera <span class=\"screen-reader-text\">%s</span>"
|
||||
|
||||
#: header.php:25
|
||||
msgid "Skip to content"
|
||||
msgstr "Hoppa till innehåll"
|
||||
|
||||
#: functions.php:61 template-parts/header/site-branding.php:46
|
||||
msgid "Social Links Menu"
|
||||
msgstr "Meny för sociala länkar"
|
||||
|
||||
#: functions.php:59
|
||||
msgid "Primary"
|
||||
msgstr "Huvudmeny"
|
||||
|
||||
#. translators: %s: WordPress.
|
||||
#: footer.php:28
|
||||
msgid "Proudly powered by %s."
|
||||
msgstr "Drivs med %s."
|
||||
|
||||
#: comments.php:116
|
||||
msgid "Comments are closed."
|
||||
msgstr "Kommentarer inaktiverade."
|
||||
|
||||
#: comments.php:96
|
||||
msgid "Next"
|
||||
msgstr "Nästa"
|
||||
|
||||
#: comments.php:95
|
||||
msgid "Previous"
|
||||
msgstr "Föregående"
|
||||
|
||||
#: comments.php:92 comments.php:95 comments.php:96
|
||||
msgid "Comments"
|
||||
msgstr "Kommentarer"
|
||||
|
||||
#. translators: 1: Number of comments, 2: Post title.
|
||||
#: comments.php:44
|
||||
msgctxt "comments title"
|
||||
msgid "%1$s reply on “%2$s”"
|
||||
msgid_plural "%1$s replies on “%2$s”"
|
||||
msgstr[0] "%1$s svar på ”%2$s”"
|
||||
msgstr[1] "%1$s svar på ”%2$s”"
|
||||
|
||||
#. translators: %s: Post title.
|
||||
#: comments.php:40
|
||||
msgctxt "comments title"
|
||||
msgid "One reply on “%s”"
|
||||
msgstr "Ett svar på ”%s”"
|
||||
|
||||
#: comments.php:35 comments.php:105 comments.php:107
|
||||
msgid "Leave a comment"
|
||||
msgstr "Lämna en kommentar"
|
||||
|
||||
#: comments.php:33
|
||||
msgid "Join the Conversation"
|
||||
msgstr "Delta i diskussionen"
|
||||
|
||||
#: classes/class-twentynineteen-walker-comment.php:94
|
||||
msgid "Your comment is awaiting moderation."
|
||||
msgstr "Din kommentar inväntar granskning."
|
||||
|
||||
#: classes/class-twentynineteen-walker-comment.php:87
|
||||
msgid "Edit"
|
||||
msgstr "Redigera"
|
||||
|
||||
#. translators: 1: Comment date, 2: Comment time.
|
||||
#: classes/class-twentynineteen-walker-comment.php:79
|
||||
msgid "%1$s at %2$s"
|
||||
msgstr "%1$s \\k\\l. %2$s"
|
||||
|
||||
#. translators: %s: Comment author link.
|
||||
#: classes/class-twentynineteen-walker-comment.php:59
|
||||
msgid "%s <span class=\"screen-reader-text says\">says:</span>"
|
||||
msgstr "%s <span class=\"screen-reader-text says\">säger:</span>"
|
||||
|
||||
#: 404.php:24
|
||||
msgid "It looks like nothing was found at this location. Maybe try a search?"
|
||||
msgstr "Det verkar inte som något kunde hittas för den här platsen. Testa en sökning kanske?"
|
||||
|
||||
#: 404.php:20
|
||||
msgid "Oops! That page can’t be found."
|
||||
msgstr "Ojdå! Sidan kunde inte hittas."
|
||||
|
||||
#. Theme URI of the theme
|
||||
msgid "https://wordpress.org/themes/twentynineteen/"
|
||||
msgstr "https://wordpress.org/themes/twentynineteen/"
|
||||
|
||||
#. Author of the theme
|
||||
msgid "the WordPress team"
|
||||
msgstr "WordPress-teamet"
|
||||
|
||||
#. Author URI of the theme
|
||||
#: footer.php:25
|
||||
msgid "https://wordpress.org/"
|
||||
msgstr "https://wordpress.org/"
|
||||
Binary file not shown.
|
|
@ -0,0 +1,336 @@
|
|||
# Translation of Themes - Twenty Seventeen in Swedish
|
||||
# This file is distributed under the same license as the Themes - Twenty Seventeen package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2020-03-31 20:57:10+0000\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: GlotPress/3.0.0-alpha\n"
|
||||
"Language: sv_SE\n"
|
||||
"Project-Id-Version: Themes - Twenty Seventeen\n"
|
||||
|
||||
#. Description of the theme
|
||||
msgid "Twenty Seventeen brings your site to life with header video and immersive featured images. With a focus on business sites, it features multiple sections on the front page as well as widgets, navigation and social menus, a logo, and more. Personalize its asymmetrical grid with a custom color scheme and showcase your multimedia content with post formats. Our default theme for 2017 works great in many languages, for any abilities, and on any device."
|
||||
msgstr "Twenty Seventeen livar upp din webbplats med inlevelsefulla utvalda bilder och subtila animationer. Temat är anpassat för företagswebbplatser och innehåller flera sektioner på förstasidan samt widgets, menyer för sidor och länkar till sociala nätverk, ett logotyputrymme och mycket mer. Anpassa temats oregelbundna rutnät med ett eget färgschema och visa upp olika typer av media i ett passande inläggsformat. Vårt standardtema för 2017 fungerar utmärkt på många olika språk, kan hantera alla typer av användningsområden och ser fantastiskt ut i alla typer av webbläsare."
|
||||
|
||||
#. Theme Name of the theme
|
||||
msgid "Twenty Seventeen"
|
||||
msgstr "Twenty Seventeen"
|
||||
|
||||
#: template-parts/footer/footer-widgets.php:18
|
||||
msgid "Footer"
|
||||
msgstr "Sidfot"
|
||||
|
||||
#: functions.php:340
|
||||
msgid "Add widgets here to appear in your sidebar on blog posts and archive pages."
|
||||
msgstr "Lägg till widgetar här som kommer att visas i sidokolumnen för blogginlägg och arkivsidor."
|
||||
|
||||
#: functions.php:338 sidebar.php:18
|
||||
msgid "Blog Sidebar"
|
||||
msgstr "Sidokolumn för blogg"
|
||||
|
||||
#: template-parts/header/site-branding.php:34
|
||||
#: template-parts/navigation/navigation-top.php:31
|
||||
msgid "Scroll down to content"
|
||||
msgstr "Rulla ned till innehållet"
|
||||
|
||||
#: functions.php:181
|
||||
msgctxt "Theme starter content"
|
||||
msgid "Coffee"
|
||||
msgstr "Kaffe"
|
||||
|
||||
#: functions.php:177
|
||||
msgctxt "Theme starter content"
|
||||
msgid "Sandwich"
|
||||
msgstr "Macka"
|
||||
|
||||
#: functions.php:173
|
||||
msgctxt "Theme starter content"
|
||||
msgid "Espresso"
|
||||
msgstr "Espresso"
|
||||
|
||||
#: inc/custom-header.php:128
|
||||
msgid "Pause background video"
|
||||
msgstr "Pausa bakgrundsvideo"
|
||||
|
||||
#: inc/custom-header.php:127
|
||||
msgid "Play background video"
|
||||
msgstr "Spela bakgrundsvideo"
|
||||
|
||||
#. translators: %s: The section ID.
|
||||
#: inc/template-tags.php:158
|
||||
msgid "Front Page Section %s Placeholder"
|
||||
msgstr "Platshållare för förstasidessektionen %s"
|
||||
|
||||
#: inc/customizer.php:109
|
||||
msgid "When the two-column layout is assigned, the page title is in one column and content is in the other."
|
||||
msgstr "När två-kolumnsläget används visas sidans titel i ena kolumnen och innehållet i den andra."
|
||||
|
||||
#: single.php:34
|
||||
msgid "Next Post"
|
||||
msgstr "Nästa inlägg"
|
||||
|
||||
#: index.php:27
|
||||
msgid "Posts"
|
||||
msgstr "Inlägg"
|
||||
|
||||
#: inc/template-tags.php:89
|
||||
msgid "Tags"
|
||||
msgstr "Taggar"
|
||||
|
||||
#: inc/template-tags.php:85
|
||||
msgid "Categories"
|
||||
msgstr "Kategorier"
|
||||
|
||||
#. translators: Used between list items, there is a space after the comma.
|
||||
#: inc/template-tags.php:66
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
|
||||
#. translators: %s: Post date.
|
||||
#: inc/template-tags.php:52
|
||||
msgid "<span class=\"screen-reader-text\">Posted on</span> %s"
|
||||
msgstr "<span class=\"screen-reader-text\">Publicerat</span> %s"
|
||||
|
||||
#. translators: %s: Post author.
|
||||
#: inc/template-tags.php:21
|
||||
msgid "by %s"
|
||||
msgstr "av %s"
|
||||
|
||||
#: inc/icon-functions.php:44
|
||||
msgid "Please define an SVG icon filename."
|
||||
msgstr "Ange ett filnamn för SVG-ikonen."
|
||||
|
||||
#: inc/icon-functions.php:39
|
||||
msgid "Please define default parameters in the form of an array."
|
||||
msgstr "Ange standard-parametrar i form av en array."
|
||||
|
||||
#: inc/customizer.php:143
|
||||
msgid "Select pages to feature in each area from the dropdowns. Add an image to a section by setting a featured image in the page editor. Empty sections will not be displayed."
|
||||
msgstr "Välj sidor som ska framhävas i varje sektions rullgardinsmenyer. Lägg till en bild i en sektion genom att ställa in en utvald bild i sidredigeraren. Tomma sektioner visas ej."
|
||||
|
||||
#. translators: %d: The front page section number.
|
||||
#: inc/customizer.php:142
|
||||
msgid "Front Page Section %d Content"
|
||||
msgstr "Innehåll för förstasidessektion %d"
|
||||
|
||||
#: inc/customizer.php:112 inc/customizer.php:171
|
||||
msgid "Two Column"
|
||||
msgstr "Två kolumner"
|
||||
|
||||
#: inc/customizer.php:111 inc/customizer.php:170
|
||||
msgid "One Column"
|
||||
msgstr "En kolumn"
|
||||
|
||||
#: inc/customizer.php:106
|
||||
msgid "Page Layout"
|
||||
msgstr "Sidlayout"
|
||||
|
||||
#: inc/customizer.php:89
|
||||
msgid "Theme Options"
|
||||
msgstr "Temainställningar"
|
||||
|
||||
#: inc/customizer.php:64
|
||||
msgid "Custom"
|
||||
msgstr "Anpassad"
|
||||
|
||||
#: inc/customizer.php:62
|
||||
msgid "Light"
|
||||
msgstr "Ljust"
|
||||
|
||||
#: inc/customizer.php:60
|
||||
msgid "Color Scheme"
|
||||
msgstr "Färgschema"
|
||||
|
||||
#: inc/custom-header.php:56
|
||||
msgid "Default Header Image"
|
||||
msgstr "Standard-sidhuvudsbild"
|
||||
|
||||
#: functions.php:362
|
||||
msgid "Footer 2"
|
||||
msgstr "Sidfot 2"
|
||||
|
||||
#: functions.php:352 functions.php:364
|
||||
msgid "Add widgets here to appear in your footer."
|
||||
msgstr "Lägg till widgets som ska visas i sidfoten här."
|
||||
|
||||
#: functions.php:350
|
||||
msgid "Footer 1"
|
||||
msgstr "Sidfot 1"
|
||||
|
||||
#: functions.php:290
|
||||
msgctxt "Libre Franklin font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: template-parts/navigation/navigation-top.php:12 functions.php:64
|
||||
#: functions.php:205
|
||||
msgid "Top Menu"
|
||||
msgstr "Toppmeny"
|
||||
|
||||
#: comments.php:62
|
||||
msgid "Reply"
|
||||
msgstr "Svara"
|
||||
|
||||
#: template-parts/post/content-none.php:33
|
||||
msgid "It seems we can’t find what you’re looking for. Perhaps searching can help."
|
||||
msgstr "Det verkar inte som om vi kan hitta det du letar efter. Kanske kan en sökning hjälpa."
|
||||
|
||||
#: search.php:59
|
||||
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
|
||||
msgstr "Ledsen, inget matchade dina sökkriterier. Vänligen försök igen med andra nyckelord."
|
||||
|
||||
#. translators: %s: Post editor URL.
|
||||
#: template-parts/post/content-none.php:27
|
||||
msgid "Ready to publish your first post? <a href=\"%s\">Get started here</a>."
|
||||
msgstr "Är du redo att posta ditt första inlägg? <a href=\"%s\">Starta här</a>."
|
||||
|
||||
#: template-parts/post/content-none.php:17 search.php:26
|
||||
msgid "Nothing Found"
|
||||
msgstr "Kunde inte hittas"
|
||||
|
||||
#: single.php:33
|
||||
msgid "Previous Post"
|
||||
msgstr "Föregående inlägg"
|
||||
|
||||
#: single.php:33 comments.php:71
|
||||
msgid "Previous"
|
||||
msgstr "Föregående"
|
||||
|
||||
#: single.php:34 comments.php:72
|
||||
msgid "Next"
|
||||
msgstr "Nästa"
|
||||
|
||||
#: searchform.php:20
|
||||
msgctxt "submit button"
|
||||
msgid "Search"
|
||||
msgstr "Sök"
|
||||
|
||||
#: searchform.php:19
|
||||
msgctxt "placeholder"
|
||||
msgid "Search …"
|
||||
msgstr "Sök …"
|
||||
|
||||
#: searchform.php:17
|
||||
msgctxt "label"
|
||||
msgid "Search for:"
|
||||
msgstr "Sök efter:"
|
||||
|
||||
#. translators: Search query.
|
||||
#: search.php:22
|
||||
msgid "Search Results for: %s"
|
||||
msgstr "Sökresultat för: %s"
|
||||
|
||||
#. translators: %s: Post title.
|
||||
#: template-parts/post/content.php:57 template-parts/post/content-audio.php:84
|
||||
#: template-parts/post/content-image.php:61
|
||||
#: template-parts/post/content-video.php:83
|
||||
#: template-parts/post/content-gallery.php:71
|
||||
#: template-parts/page/content-front-page.php:42
|
||||
#: template-parts/page/content-front-page-panels.php:45 functions.php:392
|
||||
msgid "Continue reading<span class=\"screen-reader-text\"> \"%s\"</span>"
|
||||
msgstr "Fortsätt läsa<span class=\"screen-reader-text\"> \"%s\"</span>"
|
||||
|
||||
#: inc/customizer.php:63
|
||||
msgid "Dark"
|
||||
msgstr "Mörkt"
|
||||
|
||||
#. translators: %s: The current WordPress version.
|
||||
#: inc/back-compat.php:40 inc/back-compat.php:54 inc/back-compat.php:73
|
||||
msgid "Twenty Seventeen requires at least WordPress version 4.7. You are running version %s. Please upgrade and try again."
|
||||
msgstr "Twenty Seventeen kräver minst version 4.7 av WordPress. Du kör version %s. Vänligen uppdatera WordPress och försök igen."
|
||||
|
||||
#. translators: %s: Post title.
|
||||
#: inc/template-tags.php:117
|
||||
msgid "Edit<span class=\"screen-reader-text\"> \"%s\"</span>"
|
||||
msgstr "Redigera<span class=\"screen-reader-text\"> ”%s”</span>"
|
||||
|
||||
#: template-parts/post/content.php:64 template-parts/post/content-audio.php:91
|
||||
#: template-parts/post/content-image.php:68
|
||||
#: template-parts/post/content-video.php:90
|
||||
#: template-parts/post/content-gallery.php:78
|
||||
#: template-parts/page/content-page.php:26
|
||||
msgid "Pages:"
|
||||
msgstr "Sidor:"
|
||||
|
||||
#: template-parts/navigation/navigation-top.php:17
|
||||
msgid "Menu"
|
||||
msgstr "Meny"
|
||||
|
||||
#: header.php:28
|
||||
msgid "Skip to content"
|
||||
msgstr "Hoppa till innehåll"
|
||||
|
||||
#: functions.php:484
|
||||
msgid "Collapse child menu"
|
||||
msgstr "Minimera undermeny"
|
||||
|
||||
#: functions.php:483
|
||||
msgid "Expand child menu"
|
||||
msgstr "Expandera undermeny"
|
||||
|
||||
#: functions.php:65 functions.php:216
|
||||
msgid "Social Links Menu"
|
||||
msgstr "Meny för sociala länkar"
|
||||
|
||||
#. translators: %s: WordPress
|
||||
#: template-parts/footer/site-info.php:21
|
||||
msgid "Proudly powered by %s"
|
||||
msgstr "Drivs med %s"
|
||||
|
||||
#: footer.php:26
|
||||
msgid "Footer Social Links Menu"
|
||||
msgstr "Social länkmeny sidfot"
|
||||
|
||||
#: comments.php:82
|
||||
msgid "Comments are closed."
|
||||
msgstr "Kommentarer kan inte lämnas på detta inlägg."
|
||||
|
||||
#. translators: 1: Number of comments, 2: Post title.
|
||||
#: comments.php:41
|
||||
msgctxt "comments title"
|
||||
msgid "%1$s Reply to “%2$s”"
|
||||
msgid_plural "%1$s Replies to “%2$s”"
|
||||
msgstr[0] "%1$s svar på ”%2$s”"
|
||||
msgstr[1] "%1$s svar på ”%2$s”"
|
||||
|
||||
#. translators: %s: Post title.
|
||||
#: comments.php:37
|
||||
msgctxt "comments title"
|
||||
msgid "One Reply to “%s”"
|
||||
msgstr "Ett svar på ”%s”"
|
||||
|
||||
#: index.php:55 archive.php:51 search.php:52
|
||||
msgid "Page"
|
||||
msgstr "Sida"
|
||||
|
||||
#: 404.php:21
|
||||
msgid "Oops! That page can’t be found."
|
||||
msgstr "Ojdå! Sidan kunde inte hittas."
|
||||
|
||||
#: 404.php:24
|
||||
msgid "It looks like nothing was found at this location. Maybe try a search?"
|
||||
msgstr "Det verkar inte som något kunde hittas för den här platsen. Testa en sökning kanske?"
|
||||
|
||||
#: index.php:53 archive.php:49 search.php:50
|
||||
msgid "Previous page"
|
||||
msgstr "Föregående sida"
|
||||
|
||||
#: index.php:54 archive.php:50 search.php:51
|
||||
msgid "Next page"
|
||||
msgstr "Nästa sida"
|
||||
|
||||
#. Author of the theme
|
||||
msgid "the WordPress team"
|
||||
msgstr "WordPress-teamet"
|
||||
|
||||
#. Theme URI of the theme
|
||||
msgid "https://wordpress.org/themes/twentyseventeen/"
|
||||
msgstr "https://wordpress.org/themes/twentyseventeen/"
|
||||
|
||||
#. Author URI of the theme
|
||||
#: template-parts/footer/site-info.php:18
|
||||
msgid "https://wordpress.org/"
|
||||
msgstr "https://wordpress.org/"
|
||||
Binary file not shown.
|
|
@ -0,0 +1,370 @@
|
|||
# Translation of Themes - Twenty Sixteen in Swedish
|
||||
# This file is distributed under the same license as the Themes - Twenty Sixteen package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2018-12-07 12:19:31+0000\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: GlotPress/3.0.0-alpha\n"
|
||||
"Language: sv_SE\n"
|
||||
"Project-Id-Version: Themes - Twenty Sixteen\n"
|
||||
|
||||
#. Theme Name of the theme
|
||||
msgid "Twenty Sixteen"
|
||||
msgstr "Twenty Sixteen"
|
||||
|
||||
#. Description of the theme
|
||||
msgid "Twenty Sixteen is a modernized take on an ever-popular WordPress layout — the horizontal masthead with an optional right sidebar that works perfectly for blogs and websites. It has custom color options with beautiful default color schemes, a harmonious fluid grid using a mobile-first approach, and impeccable polish in every detail. Twenty Sixteen will make your WordPress look beautiful everywhere."
|
||||
msgstr "Twenty Sixteen är en moderniserad variant av den ständigt populära WordPress-layouten - det horisontella sidhuvudet med ett valfritt sidofält till höger som fungerar perfekt för bloggar och webbplatser. Det har möjlighet till anpassade färger med vackra standardfärgscheman, ett harmonisk flytande rutnät med hjälp av metoden mobil-först och oklanderligt slipat in i minsta detalj. Twenty Sixteen kommer att göra ditt WordPress vackert överallt."
|
||||
|
||||
#: functions.php:204
|
||||
msgid "Bright Red"
|
||||
msgstr "Djuprött"
|
||||
|
||||
#: functions.php:199
|
||||
msgid "Dark Red"
|
||||
msgstr "Mörkrött"
|
||||
|
||||
#: functions.php:194
|
||||
msgid "Medium Brown"
|
||||
msgstr "Mellanbrunt"
|
||||
|
||||
#: functions.php:189
|
||||
msgid "Dark Brown"
|
||||
msgstr "Mörkbrunt"
|
||||
|
||||
#: functions.php:184
|
||||
msgid "Light Blue"
|
||||
msgstr "Ljusblått"
|
||||
|
||||
#: functions.php:179
|
||||
msgid "Bright Blue"
|
||||
msgstr "Djupblått"
|
||||
|
||||
#: functions.php:174
|
||||
msgid "Blue Gray"
|
||||
msgstr "Blågrått"
|
||||
|
||||
#: functions.php:169
|
||||
msgid "White"
|
||||
msgstr "Vitt"
|
||||
|
||||
#: functions.php:164
|
||||
msgid "Light Gray"
|
||||
msgstr "Ljusgrått"
|
||||
|
||||
#: functions.php:159
|
||||
msgid "Medium Gray"
|
||||
msgstr "Mellangrått"
|
||||
|
||||
#: functions.php:154
|
||||
msgid "Dark Gray"
|
||||
msgstr "Mörkgrått"
|
||||
|
||||
#. translators: %s: Post title.
|
||||
#: template-parts/content.php:29 inc/template-tags.php:195
|
||||
msgid "Continue reading<span class=\"screen-reader-text\"> \"%s\"</span>"
|
||||
msgstr "Fortsätt läsa<span class=\"screen-reader-text\"> \"%s\"</span>"
|
||||
|
||||
#. translators: %s: Post title.
|
||||
#: image.php:88 template-parts/content-page.php:39
|
||||
#: template-parts/content.php:53 template-parts/content-search.php:28
|
||||
#: template-parts/content-search.php:43 template-parts/content-single.php:47
|
||||
msgid "Edit<span class=\"screen-reader-text\"> \"%s\"</span>"
|
||||
msgstr "Redigera<span class=\"screen-reader-text\"> \"%s\"</span>"
|
||||
|
||||
#: inc/customizer.php:345
|
||||
msgid "Red"
|
||||
msgstr "Röd"
|
||||
|
||||
#. translators: %s: Post title.
|
||||
#: comments.php:31
|
||||
msgctxt "comments title"
|
||||
msgid "One thought on “%s”"
|
||||
msgstr "En kommentar till “%s”"
|
||||
|
||||
#: searchform.php:16
|
||||
msgctxt "submit button"
|
||||
msgid "Search"
|
||||
msgstr "Sök"
|
||||
|
||||
#: searchform.php:14
|
||||
msgctxt "placeholder"
|
||||
msgid "Search …"
|
||||
msgstr "Sök …"
|
||||
|
||||
#: searchform.php:13
|
||||
msgctxt "label"
|
||||
msgid "Search for:"
|
||||
msgstr "Sök efter:"
|
||||
|
||||
#: footer.php:30
|
||||
msgid "Footer Social Links Menu"
|
||||
msgstr "Social länkmeny sidfot"
|
||||
|
||||
#: footer.php:17
|
||||
msgid "Footer Primary Menu"
|
||||
msgstr "Primär meny sidfot"
|
||||
|
||||
#: functions.php:269
|
||||
msgid "Add widgets here to appear in your sidebar."
|
||||
msgstr "Lägg till widgets som ska visas i din sidopanel här."
|
||||
|
||||
#: template-parts/content.php:14
|
||||
msgid "Featured"
|
||||
msgstr "Utvalda"
|
||||
|
||||
#: template-parts/content-none.php:33
|
||||
msgid "It seems we can’t find what you’re looking for. Perhaps searching can help."
|
||||
msgstr "Det verkar inte som om vi kan hitta det du letar efter. Kanske kan en sökning hjälpa."
|
||||
|
||||
#: template-parts/content-none.php:28
|
||||
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
|
||||
msgstr "Ledsen, inget matchade dina sökkriterier. Vänligen försök igen med andra nyckelord."
|
||||
|
||||
#. translators: %s: Post editor URL.
|
||||
#: template-parts/content-none.php:22
|
||||
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "Är du redo att posta ditt första inlägg? <a href=\"%1$s\">Starta här</a>."
|
||||
|
||||
#: template-parts/content-none.php:13
|
||||
msgid "Nothing Found"
|
||||
msgstr "Kunde inte hittas"
|
||||
|
||||
#. translators: %s: The post author display name.
|
||||
#: template-parts/biography.php:35
|
||||
msgid "View all posts by %s"
|
||||
msgstr "Visa alla inlägg av %s"
|
||||
|
||||
#: template-parts/biography.php:28
|
||||
msgid "Author:"
|
||||
msgstr "Författare:"
|
||||
|
||||
#: single.php:42
|
||||
msgid "Previous post:"
|
||||
msgstr "Föregående inlägg:"
|
||||
|
||||
#: single.php:41
|
||||
msgid "Previous"
|
||||
msgstr "Föregående"
|
||||
|
||||
#: single.php:39
|
||||
msgid "Next post:"
|
||||
msgstr "Nästa inlägg:"
|
||||
|
||||
#: single.php:38
|
||||
msgid "Next"
|
||||
msgstr "Nästa"
|
||||
|
||||
#. translators: %s: The search query.
|
||||
#: search.php:21
|
||||
msgid "Search Results for: %s"
|
||||
msgstr "Sökresultat för: %s"
|
||||
|
||||
#: inc/template-tags.php:113
|
||||
msgctxt "Used before tag names."
|
||||
msgid "Tags"
|
||||
msgstr "Taggar"
|
||||
|
||||
#: inc/template-tags.php:104
|
||||
msgctxt "Used before category names."
|
||||
msgid "Categories"
|
||||
msgstr "Kategorier"
|
||||
|
||||
#: inc/template-tags.php:100 inc/template-tags.php:109
|
||||
msgctxt "Used between list items, there is a space after the comma."
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
|
||||
#: inc/template-tags.php:84
|
||||
msgctxt "Used before publish date."
|
||||
msgid "Posted on"
|
||||
msgstr "Postat"
|
||||
|
||||
#: inc/template-tags.php:40
|
||||
msgctxt "Used before post format."
|
||||
msgid "Format"
|
||||
msgstr "Format"
|
||||
|
||||
#. translators: %s: Post title.
|
||||
#: inc/template-tags.php:53
|
||||
msgid "Leave a comment<span class=\"screen-reader-text\"> on %s</span>"
|
||||
msgstr "Lämna en kommentar<span class=\"screen-reader-text\"> till %s</span>"
|
||||
|
||||
#: inc/template-tags.php:26
|
||||
msgctxt "Used before post author name."
|
||||
msgid "Author"
|
||||
msgstr "Författare"
|
||||
|
||||
#: functions.php:209 inc/customizer.php:355
|
||||
msgid "Yellow"
|
||||
msgstr "Gult"
|
||||
|
||||
#: inc/customizer.php:335
|
||||
msgid "Gray"
|
||||
msgstr "Grått"
|
||||
|
||||
#: inc/customizer.php:325
|
||||
msgid "Dark"
|
||||
msgstr "Mörkt"
|
||||
|
||||
#: inc/customizer.php:221
|
||||
msgid "Main Text Color"
|
||||
msgstr "Primär textfärg"
|
||||
|
||||
#: inc/customizer.php:315
|
||||
msgid "Default"
|
||||
msgstr "Standard"
|
||||
|
||||
#: inc/customizer.php:242
|
||||
msgid "Secondary Text Color"
|
||||
msgstr "Sekundär textfärg"
|
||||
|
||||
#: inc/customizer.php:200
|
||||
msgid "Link Color"
|
||||
msgstr "Länkfärg"
|
||||
|
||||
#: inc/customizer.php:176
|
||||
msgid "Page Background Color"
|
||||
msgstr "Färg för sidbakgrund"
|
||||
|
||||
#: single.php:31 image.php:107
|
||||
msgctxt "Parent post link"
|
||||
msgid "<span class=\"meta-nav\">Published in</span><span class=\"post-title\">%title</span>"
|
||||
msgstr "<span class=\"meta-nav\">Publicerat i</span><span class=\"post-title\">%title</span>"
|
||||
|
||||
#. translators: %s: The current WordPress version.
|
||||
#: inc/back-compat.php:42 inc/back-compat.php:56 inc/back-compat.php:75
|
||||
msgid "Twenty Sixteen requires at least WordPress version 4.4. You are running version %s. Please upgrade and try again."
|
||||
msgstr "Twenty Sixteen kräver minst version 4.4 av WordPress. Du kör version %s. Vänligen uppdatera WordPress och försök igen."
|
||||
|
||||
#: inc/customizer.php:153
|
||||
msgid "Base Color Scheme"
|
||||
msgstr "Huvudfärgschema"
|
||||
|
||||
#: image.php:77
|
||||
msgctxt "Used before full size attachment link."
|
||||
msgid "Full size"
|
||||
msgstr "Full storlek"
|
||||
|
||||
#: image.php:58 template-parts/content-page.php:24
|
||||
#: template-parts/content.php:36 template-parts/content-single.php:26
|
||||
msgid "Pages:"
|
||||
msgstr "Sidor:"
|
||||
|
||||
#: image.php:26
|
||||
msgid "Next Image"
|
||||
msgstr "Nästa bild"
|
||||
|
||||
#: image.php:25
|
||||
msgid "Previous Image"
|
||||
msgstr "Föregående bild"
|
||||
|
||||
#: header.php:50
|
||||
msgid "Menu"
|
||||
msgstr "Meny"
|
||||
|
||||
#: header.php:28
|
||||
msgid "Skip to content"
|
||||
msgstr "Hoppa till innehåll"
|
||||
|
||||
#: functions.php:419
|
||||
msgid "expand child menu"
|
||||
msgstr "expandera undermeny"
|
||||
|
||||
#: functions.php:420
|
||||
msgid "collapse child menu"
|
||||
msgstr "minimera undermeny"
|
||||
|
||||
#: functions.php:338
|
||||
msgctxt "Inconsolata font: on or off"
|
||||
msgid "on"
|
||||
msgstr "på"
|
||||
|
||||
#: functions.php:279
|
||||
msgid "Content Bottom 1"
|
||||
msgstr "Innehåll botten 1"
|
||||
|
||||
#: functions.php:281 functions.php:293
|
||||
msgid "Appears at the bottom of the content on posts and pages."
|
||||
msgstr "Visas i botten av innehåll i inlägg och på sidor."
|
||||
|
||||
#: functions.php:291
|
||||
msgid "Content Bottom 2"
|
||||
msgstr "Innehåll botten 2"
|
||||
|
||||
#: functions.php:322
|
||||
msgctxt "Merriweather font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:330
|
||||
msgctxt "Montserrat font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:267
|
||||
msgid "Sidebar"
|
||||
msgstr "Sidopanel"
|
||||
|
||||
#: functions.php:93 header.php:67
|
||||
msgid "Social Links Menu"
|
||||
msgstr "Meny för sociala länkar"
|
||||
|
||||
#: functions.php:92 header.php:54
|
||||
msgid "Primary Menu"
|
||||
msgstr "Primär meny"
|
||||
|
||||
#. translators: %s: WordPress
|
||||
#: footer.php:63
|
||||
msgid "Proudly powered by %s"
|
||||
msgstr "Drivs med %s"
|
||||
|
||||
#: comments.php:71
|
||||
msgid "Comments are closed."
|
||||
msgstr "Kommentarer inaktiverade."
|
||||
|
||||
#. translators: 1: Number of comments, 2: Post title.
|
||||
#: comments.php:35
|
||||
msgctxt "comments title"
|
||||
msgid "%1$s thought on “%2$s”"
|
||||
msgid_plural "%1$s thoughts on “%2$s”"
|
||||
msgstr[0] "%1$s reaktion till “%2$s”"
|
||||
msgstr[1] "%1$s reaktioner till “%2$s”"
|
||||
|
||||
#: image.php:62 template-parts/content-page.php:28
|
||||
#: template-parts/content.php:40 template-parts/content-single.php:30
|
||||
#: search.php:46 archive.php:54 index.php:51
|
||||
msgid "Page"
|
||||
msgstr "Sida"
|
||||
|
||||
#: search.php:45 archive.php:53 index.php:50
|
||||
msgid "Next page"
|
||||
msgstr "Nästa sida"
|
||||
|
||||
#: search.php:44 archive.php:52 index.php:49
|
||||
msgid "Previous page"
|
||||
msgstr "Föregående sida"
|
||||
|
||||
#: 404.php:21
|
||||
msgid "It looks like nothing was found at this location. Maybe try a search?"
|
||||
msgstr "Det verkar inte som något kunde hittas för den här platsen. Testa en sökning kanske?"
|
||||
|
||||
#: 404.php:17
|
||||
msgid "Oops! That page can’t be found."
|
||||
msgstr "Ojdå! Sidan kunde inte hittas."
|
||||
|
||||
#. Theme URI of the theme
|
||||
msgid "https://wordpress.org/themes/twentysixteen/"
|
||||
msgstr "https://wordpress.org/themes/twentysixteen/"
|
||||
|
||||
#. Author of the theme
|
||||
msgid "the WordPress team"
|
||||
msgstr "WordPress-teamet"
|
||||
|
||||
#. Author URI of the theme
|
||||
#: footer.php:60
|
||||
msgid "https://wordpress.org/"
|
||||
msgstr "https://wordpress.org/"
|
||||
Binary file not shown.
|
|
@ -7,7 +7,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: GlotPress/2.4.0-alpha\n"
|
||||
"X-Generator: GlotPress/3.0.0-alpha\n"
|
||||
"Language: sv_SE\n"
|
||||
"Project-Id-Version: Themes - Twenty Twenty\n"
|
||||
|
||||
|
|
@ -23,109 +23,24 @@ msgstr "Twenty Twenty"
|
|||
msgid "Show author bio"
|
||||
msgstr "Visa författarbiografi"
|
||||
|
||||
#: template-parts/entry-author-bio.php:29
|
||||
msgid "View Archive <span aria-hidden=\"true\">→</span>"
|
||||
msgstr "Visa arkiv <span aria-hidden=\"true\">→</span>"
|
||||
|
||||
#: inc/starter-content.php:38
|
||||
msgctxt "Theme starter content"
|
||||
msgid "The New UMoMA Opens its Doors"
|
||||
msgstr "Nya UMoMA välkomnar allmänheten"
|
||||
|
||||
#: inc/template-tags.php:393
|
||||
msgctxt "A string that is output before one or more categories"
|
||||
msgid "In"
|
||||
msgstr "I"
|
||||
|
||||
#: inc/starter-content.php:150
|
||||
msgid "Join the Club"
|
||||
msgstr "Gå med i klubben"
|
||||
|
||||
#: inc/starter-content.php:147
|
||||
msgid "Members get access to exclusive exhibits and sales. Our memberships cost $99.99 and are billed annually."
|
||||
msgstr "Medlemmar får tillgång till exklusiva utställningar och marknader. Medlemskap kostar 99,99 USD och debiteras en gång per år."
|
||||
#: template-parts/entry-author-bio.php:29
|
||||
msgid "View Archive <span aria-hidden=\"true\">→</span>"
|
||||
msgstr "Visa arkiv <span aria-hidden=\"true\">→</span>"
|
||||
|
||||
#: inc/starter-content.php:144
|
||||
msgid "Become a Member and Get Exclusive Offers!"
|
||||
msgstr "Bli medlem och få exklusiva erbjudanden!"
|
||||
|
||||
#: inc/starter-content.php:136
|
||||
msgid "The exhibitions are produced by UMoMA in collaboration with artists and museums around the world and they often attract international attention. UMoMA has received a Special Commendation from the European Museum of the Year, and was among the top candidates for the Swedish Museum of the Year Award as well as for the Council of Europe Museum Prize."
|
||||
msgstr "Utställningarna produceras av UMoMA i samarbete med konstnärer och muséer från hela världen och uppmärksammas ofta internationellt. UMoMA har betecknats som ”Årets europeiska museum” och var en av toppkandidaterna till priset ”Årets svenska museum” och även Europarådets museipris."
|
||||
|
||||
#: inc/starter-content.php:133
|
||||
msgid "With seven floors of striking architecture, UMoMA shows exhibitions of international contemporary art, sometimes along with art historical retrospectives. Existential, political and philosophical issues are intrinsic to our programme. As visitor you are invited to guided tours artist talks, lectures, film screenings and other events with free admission"
|
||||
msgstr "I sju våningar effektfull arkitektur visar UMoMA utställningar med internationell modern konst, emellanåt kombinerat med konsthistoriska återblickar. Vårt program genomsyras av existentiella, politiska och filosofiska frågeställningar. Som besökare är du välkommen till visningar, möten med konstnärer, föreläsningar, filmvisningar och andra evenemang med fri entré"
|
||||
|
||||
#: inc/starter-content.php:129
|
||||
msgid "“Cyborgs, as the philosopher Donna Haraway established, are not reverent. They do not remember the cosmos.”"
|
||||
msgstr "”Cyborgar är, enligt filosofen Donna Haraway, inte vördnadsfulla. De minns inte kosmos.”"
|
||||
|
||||
#: inc/starter-content.php:113
|
||||
msgid "From Signac to Matisse"
|
||||
msgstr "Från Signac till Matisse"
|
||||
|
||||
#: inc/starter-content.php:98
|
||||
msgid "The Life I Deserve"
|
||||
msgstr "Livet jag förtjänar"
|
||||
|
||||
#: inc/starter-content.php:84 inc/starter-content.php:116
|
||||
msgid "October 1 -- December 1"
|
||||
msgstr "1 oktober – 1 december"
|
||||
|
||||
#: inc/starter-content.php:81
|
||||
msgid "Theatre of Operations"
|
||||
msgstr "Operationsteatern"
|
||||
|
||||
#: inc/starter-content.php:72 inc/starter-content.php:87
|
||||
#: inc/starter-content.php:104 inc/starter-content.php:119
|
||||
msgid "Read More"
|
||||
msgstr "Läs mer"
|
||||
|
||||
#: inc/starter-content.php:69 inc/starter-content.php:101
|
||||
msgid "August 1 -- December 1"
|
||||
msgstr "1 augusti – 1 december"
|
||||
|
||||
#: inc/starter-content.php:66
|
||||
msgid "Works and Days"
|
||||
msgstr "Verk och dagar"
|
||||
|
||||
#: inc/starter-content.php:55
|
||||
msgid "The premier destination for modern art in Northern Sweden. Open from 10 AM to 6 PM every day during the summer months."
|
||||
msgstr "Det viktigaste resmålet för modern konst i Norrland. Öppet kl. 10–18 varje dag under sommaren."
|
||||
|
||||
#: inc/starter-content.php:47
|
||||
msgid "The New UMoMA Opens its Doors"
|
||||
msgstr "Nya UMoMA välkomnar allmänheten"
|
||||
|
||||
#: classes/class-twentytwenty-customize.php:395
|
||||
msgid "Overlay Opacity"
|
||||
msgstr "Överläggets opacitet"
|
||||
|
||||
#: classes/class-twentytwenty-customize.php:375
|
||||
msgid "The color used for the text in the overlay."
|
||||
msgstr "Färgen som används för texten i överlägget."
|
||||
|
||||
#: classes/class-twentytwenty-customize.php:374
|
||||
msgid "Overlay Text Color"
|
||||
msgstr "Överläggets textfärg"
|
||||
|
||||
#: classes/class-twentytwenty-customize.php:353
|
||||
msgid "The color used for the overlay. Defaults to the accent color."
|
||||
msgstr "Färgen som används för överlägget. Som standard är accentfärgen."
|
||||
|
||||
#: classes/class-twentytwenty-customize.php:352
|
||||
msgid "Overlay Background Color"
|
||||
msgstr "Överläggets bakgrundsfärg"
|
||||
|
||||
#: classes/class-twentytwenty-customize.php:283
|
||||
msgid "Settings for the \"Cover Template\" page template. Add a featured image to use as background."
|
||||
msgstr "Inställningar för sidmallen ”Omslagsmall”. Lägg till en utvald bild för att använda den som bakgrund."
|
||||
|
||||
#: classes/class-twentytwenty-customize.php:183
|
||||
msgid "Apply a custom color for links, buttons, featured images."
|
||||
msgstr "Tillämpa en anpassad färg för länkar, knappar och utvalda bilder."
|
||||
|
||||
#: classes/class-twentytwenty-customize.php:126
|
||||
msgid "Custom"
|
||||
msgstr "Anpassad"
|
||||
|
|
@ -138,13 +53,110 @@ msgstr "Standard"
|
|||
msgid "Primary Color"
|
||||
msgstr "Primär färg"
|
||||
|
||||
#: searchform.php:24 template-parts/modal-search.php:20
|
||||
msgid "Search for:"
|
||||
msgstr "Sök efter:"
|
||||
#: inc/template-tags.php:393
|
||||
msgctxt "A string that is output before one or more categories"
|
||||
msgid "In"
|
||||
msgstr "I"
|
||||
|
||||
#: index.php:99
|
||||
msgid "search again"
|
||||
msgstr "sök igen"
|
||||
#: inc/starter-content.php:113
|
||||
msgid "From Signac to Matisse"
|
||||
msgstr "Från Signac till Matisse"
|
||||
|
||||
#: classes/class-twentytwenty-customize.php:375
|
||||
msgid "The color used for the text in the overlay."
|
||||
msgstr "Färgen som används för texten i överlägget."
|
||||
|
||||
#: classes/class-twentytwenty-customize.php:374
|
||||
msgid "Overlay Text Color"
|
||||
msgstr "Överläggets textfärg"
|
||||
|
||||
#: classes/class-twentytwenty-customize.php:352
|
||||
msgid "Overlay Background Color"
|
||||
msgstr "Överläggets bakgrundsfärg"
|
||||
|
||||
#: classes/class-twentytwenty-customize.php:183
|
||||
msgid "Apply a custom color for links, buttons, featured images."
|
||||
msgstr "Tillämpa en anpassad färg för länkar, knappar och utvalda bilder."
|
||||
|
||||
#: classes/class-twentytwenty-customize.php:395
|
||||
msgid "Overlay Opacity"
|
||||
msgstr "Överläggets opacitet"
|
||||
|
||||
#: classes/class-twentytwenty-customize.php:353
|
||||
msgid "The color used for the overlay. Defaults to the accent color."
|
||||
msgstr "Färgen som används för överlägget. Som standard är accentfärgen."
|
||||
|
||||
#: inc/starter-content.php:150
|
||||
msgid "Join the Club"
|
||||
msgstr "Gå med i klubben"
|
||||
|
||||
#: classes/class-twentytwenty-customize.php:283
|
||||
msgid "Settings for the \"Cover Template\" page template. Add a featured image to use as background."
|
||||
msgstr "Inställningar för sidmallen ”Omslagsmall”. Lägg till en utvald bild för att använda den som bakgrund."
|
||||
|
||||
#: inc/starter-content.php:47
|
||||
msgid "The New UMoMA Opens its Doors"
|
||||
msgstr "Nya UMoMA välkomnar allmänheten"
|
||||
|
||||
#: inc/starter-content.php:55
|
||||
msgid "The premier destination for modern art in Northern Sweden. Open from 10 AM to 6 PM every day during the summer months."
|
||||
msgstr "Det viktigaste resmålet för modern konst i Norrland. Öppet kl. 10–18 varje dag under sommaren."
|
||||
|
||||
#: inc/starter-content.php:66
|
||||
msgid "Works and Days"
|
||||
msgstr "Verk och dagar"
|
||||
|
||||
#: inc/starter-content.php:69 inc/starter-content.php:101
|
||||
msgid "August 1 -- December 1"
|
||||
msgstr "1 augusti – 1 december"
|
||||
|
||||
#: inc/starter-content.php:81
|
||||
msgid "Theatre of Operations"
|
||||
msgstr "Operationsteatern"
|
||||
|
||||
#: inc/starter-content.php:84 inc/starter-content.php:116
|
||||
msgid "October 1 -- December 1"
|
||||
msgstr "1 oktober – 1 december"
|
||||
|
||||
#: inc/starter-content.php:98
|
||||
msgid "The Life I Deserve"
|
||||
msgstr "Livet jag förtjänar"
|
||||
|
||||
#: inc/starter-content.php:129
|
||||
msgid "“Cyborgs, as the philosopher Donna Haraway established, are not reverent. They do not remember the cosmos.”"
|
||||
msgstr "”Cyborgar är, enligt filosofen Donna Haraway, inte vördnadsfulla. De minns inte kosmos.”"
|
||||
|
||||
#: inc/starter-content.php:133
|
||||
msgid "With seven floors of striking architecture, UMoMA shows exhibitions of international contemporary art, sometimes along with art historical retrospectives. Existential, political and philosophical issues are intrinsic to our programme. As visitor you are invited to guided tours artist talks, lectures, film screenings and other events with free admission"
|
||||
msgstr "I sju våningar effektfull arkitektur visar UMoMA utställningar med internationell modern konst, emellanåt kombinerat med konsthistoriska återblickar. Vårt program genomsyras av existentiella, politiska och filosofiska frågeställningar. Som besökare är du välkommen till visningar, möten med konstnärer, föreläsningar, filmvisningar och andra evenemang med fri entré"
|
||||
|
||||
#: inc/starter-content.php:136
|
||||
msgid "The exhibitions are produced by UMoMA in collaboration with artists and museums around the world and they often attract international attention. UMoMA has received a Special Commendation from the European Museum of the Year, and was among the top candidates for the Swedish Museum of the Year Award as well as for the Council of Europe Museum Prize."
|
||||
msgstr "Utställningarna produceras av UMoMA i samarbete med konstnärer och muséer från hela världen och uppmärksammas ofta internationellt. UMoMA har betecknats som ”Årets europeiska museum” och var en av toppkandidaterna till priset ”Årets svenska museum” och även Europarådets museipris."
|
||||
|
||||
#: inc/starter-content.php:147
|
||||
msgid "Members get access to exclusive exhibits and sales. Our memberships cost $99.99 and are billed annually."
|
||||
msgstr "Medlemmar får tillgång till exklusiva utställningar och marknader. Medlemskap kostar 99,99 USD och debiteras en gång per år."
|
||||
|
||||
#: 404.php:24
|
||||
msgid "404 not found"
|
||||
msgstr "404 – hittades inte"
|
||||
|
||||
#. translators: Copyright date format, see https://www.php.net/date
|
||||
#: footer.php:25
|
||||
msgctxt "copyright date format"
|
||||
msgid "Y"
|
||||
msgstr "Y"
|
||||
|
||||
#. translators: %s: HTML character for up arrow.
|
||||
#: footer.php:43
|
||||
msgid "To the top %s"
|
||||
msgstr "Till toppen %s"
|
||||
|
||||
#. translators: %s: HTML character for up arrow.
|
||||
#: footer.php:49
|
||||
msgid "Up %s"
|
||||
msgstr "Upp %s"
|
||||
|
||||
#. translators: %s: Number of search results.
|
||||
#: index.php:39
|
||||
|
|
@ -153,270 +165,36 @@ msgid_plural "We found %s results for your search."
|
|||
msgstr[0] "Din sökning gav %s resultat."
|
||||
msgstr[1] "Din sökning gav %s resultat."
|
||||
|
||||
#. translators: %s: HTML character for up arrow.
|
||||
#: footer.php:49
|
||||
msgid "Up %s"
|
||||
msgstr "Upp %s"
|
||||
#: index.php:99
|
||||
msgid "search again"
|
||||
msgstr "sök igen"
|
||||
|
||||
#. translators: %s: HTML character for up arrow.
|
||||
#: footer.php:43
|
||||
msgid "To the top %s"
|
||||
msgstr "Till toppen %s"
|
||||
#: searchform.php:24 template-parts/modal-search.php:20
|
||||
msgid "Search for:"
|
||||
msgstr "Sök efter:"
|
||||
|
||||
#. translators: Copyright date format, see https://www.php.net/date
|
||||
#: footer.php:25
|
||||
msgctxt "copyright date format"
|
||||
msgid "Y"
|
||||
msgstr "Y"
|
||||
#. translators: 1: Comment date, 2: Comment time.
|
||||
#: classes/class-twentytwenty-walker-comment.php:69
|
||||
msgid "%1$s at %2$s"
|
||||
msgstr "%1$s \\k\\l. %2$s"
|
||||
|
||||
#: 404.php:24
|
||||
msgid "404 not found"
|
||||
msgstr "404 – hittades inte"
|
||||
#: classes/class-twentytwenty-walker-comment.php:77
|
||||
msgid "Edit"
|
||||
msgstr "Redigera"
|
||||
|
||||
#. Template Name of the theme
|
||||
msgid "Full Width Template"
|
||||
msgstr "Fullbreddsmall"
|
||||
#: classes/class-twentytwenty-walker-comment.php:92
|
||||
msgid "Your comment is awaiting moderation."
|
||||
msgstr "Din kommentar inväntar granskning."
|
||||
|
||||
#: template-parts/pagination.php:25
|
||||
msgid "Older <span class=\"nav-short\">Posts</span>"
|
||||
msgstr "Tidigare <span class=\"nav-short\">inlägg</span>"
|
||||
#: comments.php:34
|
||||
msgid "Leave a comment"
|
||||
msgstr "Lämna en kommentar"
|
||||
|
||||
#: template-parts/pagination.php:21
|
||||
msgid "Newer <span class=\"nav-short\">Posts</span>"
|
||||
msgstr "Senare <span class=\"nav-short\">inlägg</span>"
|
||||
|
||||
#: template-parts/navigation.php:25
|
||||
msgid "Post"
|
||||
msgstr "Inlägg"
|
||||
|
||||
#: template-parts/modal-search.php:26
|
||||
msgid "Close search"
|
||||
msgstr "Stäng sökningen"
|
||||
|
||||
#: template-parts/modal-menu.php:117
|
||||
msgid "Expanded Social links"
|
||||
msgstr "Expanderade sociala länkar"
|
||||
|
||||
#: template-parts/modal-menu.php:73
|
||||
msgid "Mobile"
|
||||
msgstr "Mobil"
|
||||
|
||||
#: template-parts/modal-menu.php:48
|
||||
msgid "Expanded"
|
||||
msgstr "Expanderad"
|
||||
|
||||
#: template-parts/modal-menu.php:21
|
||||
msgid "Close Menu"
|
||||
msgstr "Stäng menyn"
|
||||
|
||||
#: template-parts/footer-menus-widgets.php:57
|
||||
msgid "Social links"
|
||||
msgstr "Sociala länkar"
|
||||
|
||||
#: template-parts/footer-menus-widgets.php:37
|
||||
msgid "Footer"
|
||||
msgstr "Sidfot"
|
||||
|
||||
#. translators: %s: Author name.
|
||||
#: inc/template-tags.php:354 template-parts/entry-author-bio.php:20
|
||||
msgid "By %s"
|
||||
msgstr "Av %s"
|
||||
|
||||
#: template-parts/content-cover.php:138 template-parts/content.php:48
|
||||
msgid "Pages:"
|
||||
msgstr "Sidor:"
|
||||
|
||||
#: template-parts/content-cover.php:138 template-parts/content.php:48
|
||||
msgid "Page"
|
||||
msgstr "Sida"
|
||||
|
||||
#: template-parts/content-cover.php:88
|
||||
msgid "Scroll Down"
|
||||
msgstr "Rulla ned"
|
||||
|
||||
#: searchform.php:27
|
||||
msgctxt "submit button"
|
||||
msgid "Search"
|
||||
msgstr "Sök"
|
||||
|
||||
#: searchform.php:25
|
||||
msgctxt "placeholder"
|
||||
msgid "Search …"
|
||||
msgstr "Sök …"
|
||||
|
||||
#: index.php:48
|
||||
msgid "We could not find any results for your search. You can give it another try through the search form below."
|
||||
msgstr "Din sökning gav inga matchande resultat. Du kan prova det igen med hjälp av nedanstående sökformulär."
|
||||
|
||||
#: index.php:32
|
||||
msgid "Search:"
|
||||
msgstr "Sök:"
|
||||
|
||||
#. translators: %s: Post title. Only visible to screen readers.
|
||||
#: inc/template-tags.php:206
|
||||
msgid "Edit <span class=\"screen-reader-text\">%s</span>"
|
||||
msgstr "Redigera <span class=\"screen-reader-text\">%s</span>"
|
||||
|
||||
#: inc/template-tags.php:445
|
||||
msgid "Sticky post"
|
||||
msgstr "Klistrat inlägg"
|
||||
|
||||
#: inc/template-tags.php:407
|
||||
msgid "Tags"
|
||||
msgstr "Etiketter"
|
||||
|
||||
#: inc/template-tags.php:389 template-parts/entry-header.php:36
|
||||
#: template-parts/content-cover.php:70
|
||||
msgid "Categories"
|
||||
msgstr "Kategorier"
|
||||
|
||||
#: inc/template-tags.php:371
|
||||
msgid "Post date"
|
||||
msgstr "Inläggsdatum"
|
||||
|
||||
#: inc/template-tags.php:347
|
||||
msgid "Post author"
|
||||
msgstr "Inläggsförfattare"
|
||||
|
||||
#: inc/starter-content.php:196
|
||||
msgid "Social Links Menu"
|
||||
msgstr "Meny för sociala länkar"
|
||||
|
||||
#: inc/starter-content.php:176 inc/starter-content.php:186 functions.php:494
|
||||
msgid "Primary"
|
||||
msgstr "Huvudmeny"
|
||||
|
||||
#: header.php:88
|
||||
msgid "Horizontal"
|
||||
msgstr "Horisontell"
|
||||
|
||||
#: header.php:76 header.php:137
|
||||
msgid "Menu"
|
||||
msgstr "Meny"
|
||||
|
||||
#: header.php:53 header.php:157
|
||||
msgid "Search"
|
||||
msgstr "Sök"
|
||||
|
||||
#: template-parts/content.php:36
|
||||
msgid "Continue reading"
|
||||
msgstr "Fortsätt läsa"
|
||||
|
||||
#: functions.php:551
|
||||
msgctxt "Short name of the larger font size in the block editor."
|
||||
msgid "XL"
|
||||
msgstr "XL"
|
||||
|
||||
#: functions.php:550
|
||||
msgctxt "Name of the larger font size in the block editor"
|
||||
msgid "Larger"
|
||||
msgstr "Större"
|
||||
|
||||
#: functions.php:545
|
||||
msgctxt "Short name of the large font size in the block editor."
|
||||
msgid "L"
|
||||
msgstr "L"
|
||||
|
||||
#: functions.php:544
|
||||
msgctxt "Name of the large font size in the block editor"
|
||||
msgid "Large"
|
||||
msgstr "Stor"
|
||||
|
||||
#: functions.php:539
|
||||
msgctxt "Short name of the regular font size in the block editor."
|
||||
msgid "M"
|
||||
msgstr "M"
|
||||
|
||||
#: functions.php:538
|
||||
msgctxt "Name of the regular font size in the block editor"
|
||||
msgid "Regular"
|
||||
msgstr "Normal"
|
||||
|
||||
#: functions.php:533
|
||||
msgctxt "Short name of the small font size in the block editor."
|
||||
msgid "S"
|
||||
msgstr "S"
|
||||
|
||||
#: functions.php:532
|
||||
msgctxt "Name of the small font size in the block editor"
|
||||
msgid "Small"
|
||||
msgstr "Liten"
|
||||
|
||||
#: functions.php:517
|
||||
msgid "Background Color"
|
||||
msgstr "Bakgrundsfärg"
|
||||
|
||||
#: functions.php:504
|
||||
msgid "Subtle Background"
|
||||
msgstr "Subtil bakgrund"
|
||||
|
||||
#: functions.php:499
|
||||
msgid "Secondary"
|
||||
msgstr "Sekundär"
|
||||
|
||||
#: functions.php:489
|
||||
msgid "Accent Color"
|
||||
msgstr "Accentfärg"
|
||||
|
||||
#: functions.php:380
|
||||
msgid "Widgets in this area will be displayed in the second column in the footer."
|
||||
msgstr "Widgetar i detta område kommer att visas i sidfotens andra kolumn."
|
||||
|
||||
#: functions.php:378
|
||||
msgid "Footer #2"
|
||||
msgstr "Sidfot 2"
|
||||
|
||||
#: functions.php:368
|
||||
msgid "Widgets in this area will be displayed in the first column in the footer."
|
||||
msgstr "Widgetar i detta område kommer att visas i sidfotens första kolumn."
|
||||
|
||||
#: functions.php:366
|
||||
msgid "Footer #1"
|
||||
msgstr "Sidfot 1"
|
||||
|
||||
#: functions.php:341
|
||||
msgid "Skip to the content"
|
||||
msgstr "Hoppa till innehåll"
|
||||
|
||||
#: functions.php:262
|
||||
msgid "Social Menu"
|
||||
msgstr "Social meny"
|
||||
|
||||
#: functions.php:261
|
||||
msgid "Footer Menu"
|
||||
msgstr "Sidfotsmeny"
|
||||
|
||||
#: functions.php:260
|
||||
msgid "Mobile Menu"
|
||||
msgstr "Mobilmeny"
|
||||
|
||||
#: functions.php:259
|
||||
msgid "Desktop Expanded Menu"
|
||||
msgstr "Utökad meny för datorskärm"
|
||||
|
||||
#: functions.php:258
|
||||
msgid "Desktop Horizontal Menu"
|
||||
msgstr "Horisontell meny för datorskärm"
|
||||
|
||||
#: footer.php:33
|
||||
msgid "Powered by WordPress"
|
||||
msgstr "Drivs med WordPress"
|
||||
|
||||
#: comments.php:127
|
||||
msgid "Comments are closed."
|
||||
msgstr "Stängt för kommentering."
|
||||
|
||||
#: comments.php:88
|
||||
msgid "Comments"
|
||||
msgstr "Kommentarer"
|
||||
|
||||
#: comments.php:75
|
||||
msgid "Older Comments"
|
||||
msgstr "Tidigare kommentarer"
|
||||
|
||||
#: comments.php:74
|
||||
msgid "Newer Comments"
|
||||
msgstr "Senare kommentarer"
|
||||
#. translators: %s: Post title.
|
||||
#: comments.php:37
|
||||
msgctxt "comments title"
|
||||
msgid "One reply on “%s”"
|
||||
msgstr "Ett svar på ”%s”"
|
||||
|
||||
#. translators: 1: Number of comments, 2: Post title.
|
||||
#: comments.php:41
|
||||
|
|
@ -426,102 +204,324 @@ msgid_plural "%1$s replies on “%2$s”"
|
|||
msgstr[0] "%1$s svar på ”%2$s”"
|
||||
msgstr[1] "%1$s svar på ”%2$s”"
|
||||
|
||||
#. translators: %s: Post title.
|
||||
#: comments.php:37
|
||||
msgctxt "comments title"
|
||||
msgid "One reply on “%s”"
|
||||
msgstr "Ett svar på ”%s”"
|
||||
#: comments.php:88
|
||||
msgid "Comments"
|
||||
msgstr "Kommentarer"
|
||||
|
||||
#: comments.php:34
|
||||
msgid "Leave a comment"
|
||||
msgstr "Lämna en kommentar"
|
||||
#: inc/starter-content.php:176 inc/starter-content.php:186 functions.php:492
|
||||
msgid "Primary"
|
||||
msgstr "Huvudmeny"
|
||||
|
||||
#: classes/class-twentytwenty-walker-page.php:107 inc/template-tags.php:555
|
||||
msgid "Show sub menu"
|
||||
msgstr "Visa undermeny"
|
||||
#: inc/starter-content.php:196
|
||||
msgid "Social Links Menu"
|
||||
msgstr "Meny för sociala länkar"
|
||||
|
||||
#. translators: %d: ID of a post.
|
||||
#: classes/class-twentytwenty-walker-page.php:70
|
||||
msgid "#%d (no title)"
|
||||
msgstr "#%d (utan rubrik)"
|
||||
#. translators: %s: Post title. Only visible to screen readers.
|
||||
#: inc/template-tags.php:206
|
||||
msgid "Edit <span class=\"screen-reader-text\">%s</span>"
|
||||
msgstr "Redigera <span class=\"screen-reader-text\">%s</span>"
|
||||
|
||||
#: classes/class-twentytwenty-walker-comment.php:127
|
||||
msgid "By Post Author"
|
||||
msgstr "Av inläggets författare"
|
||||
#: functions.php:261
|
||||
msgid "Footer Menu"
|
||||
msgstr "Sidfotsmeny"
|
||||
|
||||
#: classes/class-twentytwenty-walker-comment.php:92
|
||||
msgid "Your comment is awaiting moderation."
|
||||
msgstr "Din kommentar inväntar granskning."
|
||||
#: template-parts/content-cover.php:138 template-parts/content.php:48
|
||||
msgid "Pages:"
|
||||
msgstr "Sidor:"
|
||||
|
||||
#: classes/class-twentytwenty-walker-comment.php:77
|
||||
msgid "Edit"
|
||||
msgstr "Redigera"
|
||||
#: template-parts/footer-menus-widgets.php:37
|
||||
msgid "Footer"
|
||||
msgstr "Sidfot"
|
||||
|
||||
#. translators: 1: Comment date, 2: Comment time.
|
||||
#: classes/class-twentytwenty-walker-comment.php:69
|
||||
msgid "%1$s at %2$s"
|
||||
msgstr "%1$s \\k\\l. %2$s"
|
||||
#: template-parts/content-cover.php:138 template-parts/content.php:48
|
||||
msgid "Page"
|
||||
msgstr "Sida"
|
||||
|
||||
#: classes/class-twentytwenty-walker-comment.php:56
|
||||
msgid "says:"
|
||||
msgstr "säger:"
|
||||
#: functions.php:497
|
||||
msgid "Secondary"
|
||||
msgstr "Sekundär"
|
||||
|
||||
#: classes/class-twentytwenty-customize.php:396
|
||||
msgid "Make sure that the contrast is high enough so that the text is readable."
|
||||
msgstr "Se till att kontrasten är tillräckligt hög för att texten ska kunna läsas."
|
||||
#: 404.php:17
|
||||
msgid "Page Not Found"
|
||||
msgstr "Sidan hittades inte"
|
||||
|
||||
#: classes/class-twentytwenty-customize.php:306
|
||||
msgid "Creates a parallax effect when the visitor scrolls."
|
||||
msgstr "Skapar en parallax-effekt när besökaren rullar sidan."
|
||||
#: 404.php:19
|
||||
msgid "The page you were looking for could not be found. It might have been removed, renamed, or did not exist in the first place."
|
||||
msgstr "Sidan du försökte hämta kunde inte hittas. Den kan ha tagits bort, bytt namn eller kanske aldrig har funnits."
|
||||
|
||||
#: classes/class-twentytwenty-customize.php:305
|
||||
msgid "Fixed Background Image"
|
||||
msgstr "Fast bakgrundsbild"
|
||||
#: classes/class-twentytwenty-customize.php:81
|
||||
msgid "Retina logo"
|
||||
msgstr "Retina-logga"
|
||||
|
||||
#: classes/class-twentytwenty-customize.php:82
|
||||
msgid "Scales the logo to half its uploaded size, making it sharp on high-res screens."
|
||||
msgstr "Minska loggan till hälften av dess uppladdade storlek, så det blir skarp på skärmar med hög upplösning."
|
||||
|
||||
#: classes/class-twentytwenty-customize.php:101
|
||||
msgid "Header & Footer Background Color"
|
||||
msgstr "Bakgrundsfärg för sidhuvud och sidfot"
|
||||
|
||||
#: classes/class-twentytwenty-customize.php:202
|
||||
msgid "Theme Options"
|
||||
msgstr "Temainställningar"
|
||||
|
||||
#: classes/class-twentytwenty-customize.php:225
|
||||
msgid "Show search in header"
|
||||
msgstr "Visa sökfunktion i sidhuvudet"
|
||||
|
||||
#: classes/class-twentytwenty-customize.php:267
|
||||
msgid "On archive pages, posts show:"
|
||||
msgstr "På arkivsidor visar inläggen:"
|
||||
|
||||
#: classes/class-twentytwenty-customize.php:269
|
||||
msgid "Full text"
|
||||
msgstr "Hela texten"
|
||||
|
||||
#: classes/class-twentytwenty-customize.php:270
|
||||
msgid "Summary"
|
||||
msgstr "Sammanfattning"
|
||||
|
||||
#. Template Name of the theme
|
||||
#: classes/class-twentytwenty-customize.php:281
|
||||
msgid "Cover Template"
|
||||
msgstr "Omslagsmall"
|
||||
|
||||
#: classes/class-twentytwenty-customize.php:270
|
||||
msgid "Summary"
|
||||
msgstr "Sammanfattning"
|
||||
#: classes/class-twentytwenty-customize.php:305
|
||||
msgid "Fixed Background Image"
|
||||
msgstr "Fast bakgrundsbild"
|
||||
|
||||
#: classes/class-twentytwenty-customize.php:269
|
||||
msgid "Full text"
|
||||
msgstr "Hela texten"
|
||||
#: classes/class-twentytwenty-customize.php:306
|
||||
msgid "Creates a parallax effect when the visitor scrolls."
|
||||
msgstr "Skapar en parallax-effekt när besökaren rullar sidan."
|
||||
|
||||
#: classes/class-twentytwenty-customize.php:267
|
||||
msgid "On archive pages, posts show:"
|
||||
msgstr "På arkivsidor visar inläggen:"
|
||||
#: classes/class-twentytwenty-customize.php:396
|
||||
msgid "Make sure that the contrast is high enough so that the text is readable."
|
||||
msgstr "Se till att kontrasten är tillräckligt hög för att texten ska kunna läsas."
|
||||
|
||||
#: classes/class-twentytwenty-customize.php:225
|
||||
msgid "Show search in header"
|
||||
msgstr "Visa sökfunktion i sidhuvudet"
|
||||
#: classes/class-twentytwenty-walker-comment.php:56
|
||||
msgid "says:"
|
||||
msgstr "säger:"
|
||||
|
||||
#: classes/class-twentytwenty-customize.php:202
|
||||
msgid "Theme Options"
|
||||
msgstr "Temainställningar"
|
||||
#: classes/class-twentytwenty-walker-comment.php:127
|
||||
msgid "By Post Author"
|
||||
msgstr "Av inläggets författare"
|
||||
|
||||
#: classes/class-twentytwenty-customize.php:101
|
||||
msgid "Header & Footer Background Color"
|
||||
msgstr "Bakgrundsfärg för sidhuvud och sidfot"
|
||||
#. translators: %d: ID of a post.
|
||||
#: classes/class-twentytwenty-walker-page.php:70
|
||||
msgid "#%d (no title)"
|
||||
msgstr "#%d (utan rubrik)"
|
||||
|
||||
#: classes/class-twentytwenty-customize.php:82
|
||||
msgid "Scales the logo to half its uploaded size, making it sharp on high-res screens."
|
||||
msgstr "Minska loggan till hälften av dess uppladdade storlek, så det blir skarp på skärmar med hög upplösning."
|
||||
#: classes/class-twentytwenty-walker-page.php:107 inc/template-tags.php:555
|
||||
msgid "Show sub menu"
|
||||
msgstr "Visa undermeny"
|
||||
|
||||
#: classes/class-twentytwenty-customize.php:81
|
||||
msgid "Retina logo"
|
||||
msgstr "Retina-logga"
|
||||
#: comments.php:74
|
||||
msgid "Newer Comments"
|
||||
msgstr "Senare kommentarer"
|
||||
|
||||
#: 404.php:19
|
||||
msgid "The page you were looking for could not be found. It might have been removed, renamed, or did not exist in the first place."
|
||||
msgstr "Sidan du försökte hämta kunde inte hittas. Den kan ha tagits bort, bytt namn eller kanske aldrig har funnits."
|
||||
#: comments.php:75
|
||||
msgid "Older Comments"
|
||||
msgstr "Tidigare kommentarer"
|
||||
|
||||
#: 404.php:17
|
||||
msgid "Page Not Found"
|
||||
msgstr "Sidan hittades inte"
|
||||
#: comments.php:127
|
||||
msgid "Comments are closed."
|
||||
msgstr "Stängt för kommentering."
|
||||
|
||||
#: footer.php:33
|
||||
msgid "Powered by WordPress"
|
||||
msgstr "Drivs med WordPress"
|
||||
|
||||
#: functions.php:258
|
||||
msgid "Desktop Horizontal Menu"
|
||||
msgstr "Horisontell meny för datorskärm"
|
||||
|
||||
#: functions.php:259
|
||||
msgid "Desktop Expanded Menu"
|
||||
msgstr "Utökad meny för datorskärm"
|
||||
|
||||
#: functions.php:260
|
||||
msgid "Mobile Menu"
|
||||
msgstr "Mobilmeny"
|
||||
|
||||
#: functions.php:262
|
||||
msgid "Social Menu"
|
||||
msgstr "Social meny"
|
||||
|
||||
#: functions.php:341
|
||||
msgid "Skip to the content"
|
||||
msgstr "Hoppa till innehåll"
|
||||
|
||||
#: functions.php:366
|
||||
msgid "Footer #1"
|
||||
msgstr "Sidfot 1"
|
||||
|
||||
#: functions.php:368
|
||||
msgid "Widgets in this area will be displayed in the first column in the footer."
|
||||
msgstr "Widgetar i detta område kommer att visas i sidfotens första kolumn."
|
||||
|
||||
#: functions.php:378
|
||||
msgid "Footer #2"
|
||||
msgstr "Sidfot 2"
|
||||
|
||||
#: functions.php:380
|
||||
msgid "Widgets in this area will be displayed in the second column in the footer."
|
||||
msgstr "Widgetar i detta område kommer att visas i sidfotens andra kolumn."
|
||||
|
||||
#: functions.php:487
|
||||
msgid "Accent Color"
|
||||
msgstr "Accentfärg"
|
||||
|
||||
#: functions.php:502
|
||||
msgid "Subtle Background"
|
||||
msgstr "Subtil bakgrund"
|
||||
|
||||
#: functions.php:515
|
||||
msgid "Background Color"
|
||||
msgstr "Bakgrundsfärg"
|
||||
|
||||
#: functions.php:530
|
||||
msgctxt "Name of the small font size in the block editor"
|
||||
msgid "Small"
|
||||
msgstr "Liten"
|
||||
|
||||
#: functions.php:531
|
||||
msgctxt "Short name of the small font size in the block editor."
|
||||
msgid "S"
|
||||
msgstr "S"
|
||||
|
||||
#: functions.php:536
|
||||
msgctxt "Name of the regular font size in the block editor"
|
||||
msgid "Regular"
|
||||
msgstr "Normal"
|
||||
|
||||
#: functions.php:537
|
||||
msgctxt "Short name of the regular font size in the block editor."
|
||||
msgid "M"
|
||||
msgstr "M"
|
||||
|
||||
#: functions.php:542
|
||||
msgctxt "Name of the large font size in the block editor"
|
||||
msgid "Large"
|
||||
msgstr "Stor"
|
||||
|
||||
#: functions.php:543
|
||||
msgctxt "Short name of the large font size in the block editor."
|
||||
msgid "L"
|
||||
msgstr "L"
|
||||
|
||||
#: functions.php:548
|
||||
msgctxt "Name of the larger font size in the block editor"
|
||||
msgid "Larger"
|
||||
msgstr "Större"
|
||||
|
||||
#: functions.php:549
|
||||
msgctxt "Short name of the larger font size in the block editor."
|
||||
msgid "XL"
|
||||
msgstr "XL"
|
||||
|
||||
#: template-parts/content.php:36
|
||||
msgid "Continue reading"
|
||||
msgstr "Fortsätt läsa"
|
||||
|
||||
#: header.php:53 header.php:157
|
||||
msgid "Search"
|
||||
msgstr "Sök"
|
||||
|
||||
#: header.php:76 header.php:137
|
||||
msgid "Menu"
|
||||
msgstr "Meny"
|
||||
|
||||
#: header.php:88
|
||||
msgid "Horizontal"
|
||||
msgstr "Horisontell"
|
||||
|
||||
#: inc/template-tags.php:347
|
||||
msgid "Post author"
|
||||
msgstr "Inläggsförfattare"
|
||||
|
||||
#: inc/template-tags.php:371
|
||||
msgid "Post date"
|
||||
msgstr "Inläggsdatum"
|
||||
|
||||
#: inc/template-tags.php:389 template-parts/entry-header.php:36
|
||||
#: template-parts/content-cover.php:70
|
||||
msgid "Categories"
|
||||
msgstr "Kategorier"
|
||||
|
||||
#: inc/template-tags.php:407
|
||||
msgid "Tags"
|
||||
msgstr "Etiketter"
|
||||
|
||||
#: inc/template-tags.php:445
|
||||
msgid "Sticky post"
|
||||
msgstr "Klistrat inlägg"
|
||||
|
||||
#: index.php:32
|
||||
msgid "Search:"
|
||||
msgstr "Sök:"
|
||||
|
||||
#: index.php:48
|
||||
msgid "We could not find any results for your search. You can give it another try through the search form below."
|
||||
msgstr "Din sökning gav inga matchande resultat. Du kan prova det igen med hjälp av nedanstående sökformulär."
|
||||
|
||||
#: searchform.php:25
|
||||
msgctxt "placeholder"
|
||||
msgid "Search …"
|
||||
msgstr "Sök …"
|
||||
|
||||
#: searchform.php:27
|
||||
msgctxt "submit button"
|
||||
msgid "Search"
|
||||
msgstr "Sök"
|
||||
|
||||
#: template-parts/content-cover.php:88
|
||||
msgid "Scroll Down"
|
||||
msgstr "Rulla ned"
|
||||
|
||||
#. translators: %s: Author name.
|
||||
#: inc/template-tags.php:354 template-parts/entry-author-bio.php:20
|
||||
msgid "By %s"
|
||||
msgstr "Av %s"
|
||||
|
||||
#: template-parts/footer-menus-widgets.php:57
|
||||
msgid "Social links"
|
||||
msgstr "Sociala länkar"
|
||||
|
||||
#: template-parts/modal-menu.php:21
|
||||
msgid "Close Menu"
|
||||
msgstr "Stäng menyn"
|
||||
|
||||
#: template-parts/modal-menu.php:48
|
||||
msgid "Expanded"
|
||||
msgstr "Expanderad"
|
||||
|
||||
#: template-parts/modal-menu.php:73
|
||||
msgid "Mobile"
|
||||
msgstr "Mobil"
|
||||
|
||||
#: template-parts/modal-menu.php:117
|
||||
msgid "Expanded Social links"
|
||||
msgstr "Expanderade sociala länkar"
|
||||
|
||||
#: template-parts/modal-search.php:26
|
||||
msgid "Close search"
|
||||
msgstr "Stäng sökningen"
|
||||
|
||||
#: template-parts/navigation.php:25
|
||||
msgid "Post"
|
||||
msgstr "Inlägg"
|
||||
|
||||
#: template-parts/pagination.php:21
|
||||
msgid "Newer <span class=\"nav-short\">Posts</span>"
|
||||
msgstr "Senare <span class=\"nav-short\">inlägg</span>"
|
||||
|
||||
#: template-parts/pagination.php:25
|
||||
msgid "Older <span class=\"nav-short\">Posts</span>"
|
||||
msgstr "Tidigare <span class=\"nav-short\">inlägg</span>"
|
||||
|
||||
#. Template Name of the theme
|
||||
msgid "Full Width Template"
|
||||
msgstr "Fullbreddsmall"
|
||||
|
||||
#. Author URI of the theme
|
||||
#: footer.php:32
|
||||
|
|
@ -534,4 +534,4 @@ msgstr "WordPress-teamet"
|
|||
|
||||
#. Theme URI of the theme
|
||||
msgid "https://wordpress.org/themes/twentytwenty/"
|
||||
msgstr "https://wordpress.org/themes/twentytwenty/"
|
||||
msgstr "https://wordpress.org/themes/twentytwenty/"
|
||||
|
|
|
|||
|
|
@ -79,15 +79,6 @@ table.comments td.comment p a:after {
|
|||
.checkforspam {
|
||||
display: inline-block !important;
|
||||
}
|
||||
.checkforspam-progress {
|
||||
display: none;
|
||||
}
|
||||
.checkforspam.checking .checkforspam-progress {
|
||||
padding-left: 1ex;
|
||||
}
|
||||
.checkforspam.button-disabled .checkforspam-progress {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.checkforspam-spinner {
|
||||
display: inline-block;
|
||||
|
|
|
|||
|
|
@ -84,70 +84,72 @@ jQuery( function ( $ ) {
|
|||
});
|
||||
|
||||
// Show a preview image of the hovered URL. Applies to author URLs and URLs inside the comments.
|
||||
$( '#the-comment-list' ).on( 'mouseover', mshotEnabledLinkSelector, function () {
|
||||
clearTimeout( mshotRemovalTimer );
|
||||
if ( "enable_mshots" in WPAkismet && WPAkismet.enable_mshots ) {
|
||||
$( '#the-comment-list' ).on( 'mouseover', mshotEnabledLinkSelector, function () {
|
||||
clearTimeout( mshotRemovalTimer );
|
||||
|
||||
if ( $( '.akismet-mshot' ).length > 0 ) {
|
||||
if ( $( '.akismet-mshot:first' ).data( 'link' ) == this ) {
|
||||
// The preview is already showing for this link.
|
||||
return;
|
||||
if ( $( '.akismet-mshot' ).length > 0 ) {
|
||||
if ( $( '.akismet-mshot:first' ).data( 'link' ) == this ) {
|
||||
// The preview is already showing for this link.
|
||||
return;
|
||||
}
|
||||
else {
|
||||
// A new link is being hovered, so remove the old preview.
|
||||
$( '.akismet-mshot' ).remove();
|
||||
}
|
||||
}
|
||||
else {
|
||||
// A new link is being hovered, so remove the old preview.
|
||||
$( '.akismet-mshot' ).remove();
|
||||
}
|
||||
}
|
||||
|
||||
clearTimeout( mshotSecondTryTimer );
|
||||
clearTimeout( mshotThirdTryTimer );
|
||||
|
||||
var thisHref = $( this ).attr( 'href' );
|
||||
|
||||
var mShot = $( '<div class="akismet-mshot mshot-container"><div class="mshot-arrow"></div><img src="' + akismet_mshot_url( thisHref ) + '" width="450" height="338" class="mshot-image" /></div>' );
|
||||
mShot.data( 'link', this );
|
||||
|
||||
var offset = $( this ).offset();
|
||||
|
||||
mShot.offset( {
|
||||
left : Math.min( $( window ).width() - 475, offset.left + $( this ).width() + 10 ), // Keep it on the screen if the link is near the edge of the window.
|
||||
top: offset.top + ( $( this ).height() / 2 ) - 101 // 101 = top offset of the arrow plus the top border thickness
|
||||
} );
|
||||
|
||||
// These retries appear to be superfluous if .mshot-image has already loaded, but it's because mShots
|
||||
// can return a "Generating thumbnail..." image if it doesn't have a thumbnail ready, so we need
|
||||
// to retry to see if we can get the newly generated thumbnail.
|
||||
mshotSecondTryTimer = setTimeout( function () {
|
||||
mShot.find( '.mshot-image' ).attr( 'src', akismet_mshot_url( thisHref, 2 ) );
|
||||
}, 6000 );
|
||||
|
||||
mshotThirdTryTimer = setTimeout( function () {
|
||||
mShot.find( '.mshot-image' ).attr( 'src', akismet_mshot_url( thisHref, 3 ) );
|
||||
}, 12000 );
|
||||
|
||||
$( 'body' ).append( mShot );
|
||||
} ).on( 'mouseout', 'a[id^="author_comment_url"], tr.pingback td.column-author a:first-of-type, td.comment p a', function () {
|
||||
mshotRemovalTimer = setTimeout( function () {
|
||||
clearTimeout( mshotSecondTryTimer );
|
||||
clearTimeout( mshotThirdTryTimer );
|
||||
|
||||
$( '.akismet-mshot' ).remove();
|
||||
}, 200 );
|
||||
} ).on( 'mouseover', 'tr', function () {
|
||||
// When the mouse hovers over a comment row, begin preloading mshots for any links in the comment or the comment author.
|
||||
var linksToPreloadMshotsFor = $( this ).find( mshotEnabledLinkSelector );
|
||||
|
||||
linksToPreloadMshotsFor.each( function () {
|
||||
// Don't attempt to preload an mshot for a single link twice. Browser caching should cover this, but in case of
|
||||
// race conditions, save a flag locally when we've begun trying to preload one.
|
||||
if ( ! $( this ).data( 'akismet-mshot-preloaded' ) ) {
|
||||
akismet_preload_mshot( $( this ).attr( 'href' ) );
|
||||
$( this ).data( 'akismet-mshot-preloaded', true );
|
||||
}
|
||||
} );
|
||||
} );
|
||||
var thisHref = $( this ).attr( 'href' );
|
||||
|
||||
$( '.checkforspam' ).click( function( e ) {
|
||||
if ( $( this ).hasClass( 'checkforspam-pending-config' ) ) {
|
||||
var mShot = $( '<div class="akismet-mshot mshot-container"><div class="mshot-arrow"></div><img src="' + akismet_mshot_url( thisHref ) + '" width="450" height="338" class="mshot-image" /></div>' );
|
||||
mShot.data( 'link', this );
|
||||
|
||||
var offset = $( this ).offset();
|
||||
|
||||
mShot.offset( {
|
||||
left : Math.min( $( window ).width() - 475, offset.left + $( this ).width() + 10 ), // Keep it on the screen if the link is near the edge of the window.
|
||||
top: offset.top + ( $( this ).height() / 2 ) - 101 // 101 = top offset of the arrow plus the top border thickness
|
||||
} );
|
||||
|
||||
// These retries appear to be superfluous if .mshot-image has already loaded, but it's because mShots
|
||||
// can return a "Generating thumbnail..." image if it doesn't have a thumbnail ready, so we need
|
||||
// to retry to see if we can get the newly generated thumbnail.
|
||||
mshotSecondTryTimer = setTimeout( function () {
|
||||
mShot.find( '.mshot-image' ).attr( 'src', akismet_mshot_url( thisHref, 2 ) );
|
||||
}, 6000 );
|
||||
|
||||
mshotThirdTryTimer = setTimeout( function () {
|
||||
mShot.find( '.mshot-image' ).attr( 'src', akismet_mshot_url( thisHref, 3 ) );
|
||||
}, 12000 );
|
||||
|
||||
$( 'body' ).append( mShot );
|
||||
} ).on( 'mouseout', 'a[id^="author_comment_url"], tr.pingback td.column-author a:first-of-type, td.comment p a', function () {
|
||||
mshotRemovalTimer = setTimeout( function () {
|
||||
clearTimeout( mshotSecondTryTimer );
|
||||
clearTimeout( mshotThirdTryTimer );
|
||||
|
||||
$( '.akismet-mshot' ).remove();
|
||||
}, 200 );
|
||||
} ).on( 'mouseover', 'tr', function () {
|
||||
// When the mouse hovers over a comment row, begin preloading mshots for any links in the comment or the comment author.
|
||||
var linksToPreloadMshotsFor = $( this ).find( mshotEnabledLinkSelector );
|
||||
|
||||
linksToPreloadMshotsFor.each( function () {
|
||||
// Don't attempt to preload an mshot for a single link twice. Browser caching should cover this, but in case of
|
||||
// race conditions, save a flag locally when we've begun trying to preload one.
|
||||
if ( ! $( this ).data( 'akismet-mshot-preloaded' ) ) {
|
||||
akismet_preload_mshot( $( this ).attr( 'href' ) );
|
||||
$( this ).data( 'akismet-mshot-preloaded', true );
|
||||
}
|
||||
} );
|
||||
} );
|
||||
}
|
||||
|
||||
$( '.checkforspam.enable-on-load' ).click( function( e ) {
|
||||
if ( $( this ).hasClass( 'ajax-disabled' ) ) {
|
||||
// Akismet hasn't been configured yet. Allow the user to proceed to the button's link.
|
||||
return;
|
||||
}
|
||||
|
|
@ -162,11 +164,9 @@ jQuery( function ( $ ) {
|
|||
$('.checkforspam').addClass('button-disabled').addClass( 'checking' );
|
||||
$('.checkforspam-spinner').addClass( 'spinner' ).addClass( 'is-active' );
|
||||
|
||||
// Update the label on the "Check for Spam" button to use the active "Checking for Spam" language.
|
||||
$( '.checkforspam .akismet-label' ).text( $( '.checkforspam' ).data( 'active-label' ) );
|
||||
|
||||
akismet_check_for_spam(0, 100);
|
||||
});
|
||||
$( '.checkforspam.enable-on-load' ).removeClass( 'button-disabled' );
|
||||
|
||||
var spam_count = 0;
|
||||
var recheck_count = 0;
|
||||
|
|
@ -181,7 +181,7 @@ jQuery( function ( $ ) {
|
|||
var percentage_complete = Math.round( ( recheck_count / check_for_spam_buttons.data( 'pending-comment-count' ) ) * 1000 ) / 10;
|
||||
|
||||
// Update the progress counter on the "Check for Spam" button.
|
||||
$( '.checkforspam-progress' ).text( check_for_spam_buttons.data( 'progress-label-format' ).replace( '%1$s', percentage_complete ) );
|
||||
$( '.checkforspam' ).text( check_for_spam_buttons.data( 'progress-label' ).replace( '%1$s', percentage_complete ) );
|
||||
|
||||
$.post(
|
||||
ajaxurl,
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
Plugin Name: Akismet Anti-Spam
|
||||
Plugin URI: https://akismet.com/
|
||||
Description: Used by millions, Akismet is quite possibly the best way in the world to <strong>protect your blog from spam</strong>. It keeps your site protected even while you sleep. To get started: activate the Akismet plugin and then go to your Akismet Settings page to set up your API key.
|
||||
Version: 4.1.5
|
||||
Version: 4.1.6
|
||||
Author: Automattic
|
||||
Author URI: https://automattic.com/wordpress-plugins/
|
||||
License: GPLv2 or later
|
||||
|
|
@ -37,7 +37,7 @@ if ( !function_exists( 'add_action' ) ) {
|
|||
exit;
|
||||
}
|
||||
|
||||
define( 'AKISMET_VERSION', '4.1.5' );
|
||||
define( 'AKISMET_VERSION', '4.1.6' );
|
||||
define( 'AKISMET__MINIMUM_WP_VERSION', '4.0' );
|
||||
define( 'AKISMET__PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
||||
define( 'AKISMET_DELETE_LIMIT', 100000 );
|
||||
|
|
|
|||
|
|
@ -137,7 +137,7 @@ class Akismet_Admin {
|
|||
|
||||
wp_register_script( 'akismet.js', plugin_dir_url( __FILE__ ) . '_inc/akismet.js', array('jquery'), AKISMET_VERSION );
|
||||
wp_enqueue_script( 'akismet.js' );
|
||||
|
||||
|
||||
$inline_js = array(
|
||||
'comment_author_url_nonce' => wp_create_nonce( 'comment_author_url_nonce' ),
|
||||
'strings' => array(
|
||||
|
|
@ -153,6 +153,10 @@ class Akismet_Admin {
|
|||
$inline_js['start_recheck'] = true;
|
||||
}
|
||||
|
||||
if ( apply_filters( 'akismet_enable_mshots', true ) ) {
|
||||
$inline_js['enable_mshots'] = true;
|
||||
}
|
||||
|
||||
wp_localize_script( 'akismet.js', 'WPAkismet', $inline_js );
|
||||
}
|
||||
}
|
||||
|
|
@ -383,7 +387,7 @@ class Akismet_Admin {
|
|||
return;
|
||||
}
|
||||
|
||||
$link = add_query_arg( array( 'action' => 'akismet_recheck_queue' ), admin_url( 'admin.php' ) );
|
||||
$link = '';
|
||||
|
||||
$comments_count = wp_count_comments();
|
||||
|
||||
|
|
@ -393,32 +397,30 @@ class Akismet_Admin {
|
|||
$classes = array(
|
||||
'button-secondary',
|
||||
'checkforspam',
|
||||
'button-disabled' // Disable button until the page is loaded
|
||||
);
|
||||
|
||||
if ( ! Akismet::get_api_key() ) {
|
||||
$link = admin_url( 'options-general.php?page=akismet-key-config' );
|
||||
if ( $comments_count->moderated > 0 ) {
|
||||
$classes[] = 'enable-on-load';
|
||||
|
||||
$classes[] = 'checkforspam-pending-config';
|
||||
if ( ! Akismet::get_api_key() ) {
|
||||
$link = add_query_arg( array( 'page' => 'akismet-key-config' ), class_exists( 'Jetpack' ) ? admin_url( 'admin.php' ) : admin_url( 'options-general.php' ) );
|
||||
$classes[] = 'ajax-disabled';
|
||||
}
|
||||
}
|
||||
|
||||
if ( $comments_count->moderated == 0 ) {
|
||||
$classes[] = 'button-disabled';
|
||||
}
|
||||
echo '<a
|
||||
class="' . esc_attr( implode( ' ', $classes ) ) . '"
|
||||
href="' . esc_url( $link ) . '"
|
||||
data-active-label="' . esc_attr( __( 'Checking for Spam', 'akismet' ) ) . '"
|
||||
data-progress-label-format="' . esc_attr( __( '(%1$s%)', 'akismet' ) ) . '"
|
||||
class="' . esc_attr( implode( ' ', $classes ) ) . '"' .
|
||||
( ! empty( $link ) ? ' href="' . esc_url( $link ) . '"' : '' ) .
|
||||
/* translators: The placeholder is for showing how much of the process has completed, as a percent. e.g., "Checking for Spam (40%)" */
|
||||
' data-progress-label="' . esc_attr( __( 'Checking for Spam (%1$s%)', 'akismet' ) ) . '"
|
||||
data-success-url="' . esc_attr( remove_query_arg( array( 'akismet_recheck', 'akismet_recheck_error' ), add_query_arg( array( 'akismet_recheck_complete' => 1, 'recheck_count' => urlencode( '__recheck_count__' ), 'spam_count' => urlencode( '__spam_count__' ) ) ) ) ) . '"
|
||||
data-failure-url="' . esc_attr( remove_query_arg( array( 'akismet_recheck', 'akismet_recheck_complete' ), add_query_arg( array( 'akismet_recheck_error' => 1 ) ) ) ) . '"
|
||||
data-pending-comment-count="' . esc_attr( $comments_count->moderated ) . '"
|
||||
data-nonce="' . esc_attr( wp_create_nonce( 'akismet_check_for_spam' ) ) . '"
|
||||
>';
|
||||
echo '<span class="akismet-label">' . esc_html__('Check for Spam', 'akismet') . '</span>';
|
||||
echo '<span class="checkforspam-progress"></span>';
|
||||
echo '</a>';
|
||||
' . ( ! in_array( 'ajax-disabled', $classes ) ? 'onclick="return false;"' : '' ) . '
|
||||
>' . esc_html__('Check for Spam', 'akismet') . '</a>';
|
||||
echo '<span class="checkforspam-spinner"></span>';
|
||||
|
||||
}
|
||||
|
||||
public static function recheck_queue() {
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ Contributors: matt, ryan, andy, mdawaffe, tellyworth, josephscott, lessbloat, eo
|
|||
Tags: akismet, comments, spam, antispam, anti-spam, anti spam, comment moderation, comment spam, contact form spam, spam comments
|
||||
Requires at least: 4.6
|
||||
Tested up to: 5.4
|
||||
Stable tag: 4.1.5
|
||||
Stable tag: 4.1.6
|
||||
License: GPLv2 or later
|
||||
|
||||
Akismet checks your comments and contact form submissions against our global database of spam to protect you and your site from malicious content.
|
||||
|
|
@ -30,6 +30,12 @@ Upload the Akismet plugin to your blog, activate it, and then enter your Akismet
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 4.1.6 =
|
||||
*Release Date - 4 June 2020*
|
||||
|
||||
* Disable "Check for Spam" button until the page is loaded to avoid errors with clicking through to queue recheck endpoint directly.
|
||||
* Add filter "akismet_enable_mshots" to allow disabling screenshot popups on the edit comments admin page.
|
||||
|
||||
= 4.1.5 =
|
||||
*Release Date - 29 April 2020*
|
||||
|
||||
|
|
@ -77,4 +83,4 @@ Upload the Akismet plugin to your blog, activate it, and then enter your Akismet
|
|||
* Hooked into the new "Personal Data Eraser" functionality from WordPress 4.9.6.
|
||||
* Added functionality to clear outdated alerts from Akismet.com.
|
||||
|
||||
For older changelog entries, please see the [additional changelog.txt file](https://plugins.svn.wordpress.org/akismet/trunk/changelog.txt) delivered with the plugin.
|
||||
For older changelog entries, please see the [additional changelog.txt file](https://plugins.svn.wordpress.org/akismet/trunk/changelog.txt) delivered with the plugin.
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
<?php
|
||||
|
||||
use Automattic\Jetpack\Redirect;
|
||||
|
||||
/**
|
||||
* Notify user that VaultPress has been disabled. Hide VaultPress notice that requested attention.
|
||||
*
|
||||
|
|
@ -22,8 +24,8 @@ function jetpack_vaultpress_rewind_enabled_notice() {
|
|||
<?php
|
||||
echo sprintf(
|
||||
wp_kses(
|
||||
/* Translators: first variable is the URL of the web site without the protocol, e.g. mysite.com */
|
||||
__( 'You can access your backups on your site\'s <a href="https://wordpress.com/activity-log/%s" target="_blank" rel="noopener noreferrer">Activity</a> page.', 'jetpack' ),
|
||||
/* Translators: first variable is the full URL to the new dashboard */
|
||||
__( 'You can access your backups at <a href="%s" target="_blank" rel="noopener noreferrer">this dashboard</a>.', 'jetpack' ),
|
||||
array(
|
||||
'a' => array(
|
||||
'href' => array(),
|
||||
|
|
@ -32,7 +34,7 @@ function jetpack_vaultpress_rewind_enabled_notice() {
|
|||
),
|
||||
)
|
||||
),
|
||||
esc_attr( Jetpack::build_raw_urls( get_home_url() ) )
|
||||
esc_url( Redirect::get_url( 'calypso-backups' ) )
|
||||
);
|
||||
?>
|
||||
</p>
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '709fbe0e2eea58dcd47b86f4fecdf8d7');
|
||||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => 'c479d6bc5cea92c158a3e6447752da42');
|
||||
|
|
@ -1 +1 @@
|
|||
!function(e,t){for(var n in t)e[n]=t[n]}(window,function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=308)}({146:function(e,t,n){},308:function(e,t,n){n(47),e.exports=n(309)},309:function(e,t,n){"use strict";n.r(t);n(146)},42:function(e,t,n){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&(n.p=window.Jetpack_Block_Assets_Base_Url)},47:function(e,t,n){"use strict";n.r(t);n(42)}}));
|
||||
!function(e,t){for(var n in t)e[n]=t[n]}(window,function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=318)}({147:function(e,t,n){},318:function(e,t,n){n(44),e.exports=n(319)},319:function(e,t,n){"use strict";n.r(t);n(147)},38:function(e,t,n){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&(n.p=window.Jetpack_Block_Assets_Base_Url)},44:function(e,t,n){"use strict";n.r(t);n(38)}}));
|
||||
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => 'd8a3c92abf3587c9a1ad771a36e2b3a3');
|
||||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => 'fc7bccac439c34d5d823ec50bb67e7bd');
|
||||
|
|
@ -1 +1 @@
|
|||
!function(e,t){for(var n in t)e[n]=t[n]}(window,function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=310)}({147:function(e,t,n){},310:function(e,t,n){n(47),e.exports=n(311)},311:function(e,t,n){"use strict";n.r(t);n(147)},42:function(e,t,n){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&(n.p=window.Jetpack_Block_Assets_Base_Url)},47:function(e,t,n){"use strict";n.r(t);n(42)}}));
|
||||
!function(e,t){for(var n in t)e[n]=t[n]}(window,function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=320)}({148:function(e,t,n){},320:function(e,t,n){n(44),e.exports=n(321)},321:function(e,t,n){"use strict";n.r(t);n(148)},38:function(e,t,n){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&(n.p=window.Jetpack_Block_Assets_Base_Url)},44:function(e,t,n){"use strict";n.r(t);n(38)}}));
|
||||
|
|
@ -1 +1 @@
|
|||
.jetpack-block-nudge.block-editor-warning{margin-bottom:0}.jetpack-block-nudge .block-editor-warning__message{margin:13px 0}.jetpack-block-nudge .block-editor-warning__actions{line-height:1}.jetpack-block-nudge .jetpack-block-nudge__info{font-size:13px;display:flex;flex-direction:row;line-height:1.4}.jetpack-block-nudge .jetpack-block-nudge__text-container{display:flex;flex-direction:column}.jetpack-block-nudge .jetpack-block-nudge__title{font-size:14px}.jetpack-block-nudge .jetpack-block-nudge__message{color:#636d75}.jetpack-upgrade-nudge__icon{align-self:center;background:#d6b02c;border-radius:50%;box-sizing:content-box;color:#fff;fill:#fff;flex-shrink:0;margin-right:16px;padding:6px}.wp-block-column.is-vertically-aligned-bottom,.wp-block-column.is-vertically-aligned-center,.wp-block-column.is-vertically-aligned-top{width:100%}.block-editor-warning{border:1px solid #e2e4e7;padding:10px 14px}.block-editor-warning .block-editor-warning__message{line-height:1.4;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px}.block-editor-warning .block-editor-warning__actions .components-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:inherit;text-decoration:none}
|
||||
.jetpack-block-nudge.block-editor-warning{margin-bottom:12px}.jetpack-block-nudge .block-editor-warning__message{margin:13px 0}.jetpack-block-nudge .block-editor-warning__actions{line-height:1}.jetpack-block-nudge .jetpack-block-nudge__info{font-size:13px;display:flex;flex-direction:row;line-height:1.4}.jetpack-block-nudge .jetpack-block-nudge__text-container{display:flex;flex-direction:column}.jetpack-block-nudge .jetpack-block-nudge__title{font-size:14px}.jetpack-block-nudge .jetpack-block-nudge__message{color:#636d75}.jetpack-upgrade-nudge__icon{align-self:center;background:#d6b02c;border-radius:50%;box-sizing:content-box;color:#fff;fill:#fff;flex-shrink:0;margin-right:16px;padding:6px}.wp-block-column.is-vertically-aligned-bottom,.wp-block-column.is-vertically-aligned-center,.wp-block-column.is-vertically-aligned-top{width:100%}.block-editor-warning{border:1px solid #e2e4e7;padding:10px 14px}.block-editor-warning .block-editor-warning__message{line-height:1.4;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px}.block-editor-warning .block-editor-warning__actions .components-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:inherit;text-decoration:none}
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
|||
.jetpack-block-nudge.block-editor-warning{margin-bottom:0}.jetpack-block-nudge .block-editor-warning__message{margin:13px 0}.jetpack-block-nudge .block-editor-warning__actions{line-height:1}.jetpack-block-nudge .jetpack-block-nudge__info{font-size:13px;display:flex;flex-direction:row;line-height:1.4}.jetpack-block-nudge .jetpack-block-nudge__text-container{display:flex;flex-direction:column}.jetpack-block-nudge .jetpack-block-nudge__title{font-size:14px}.jetpack-block-nudge .jetpack-block-nudge__message{color:#636d75}.jetpack-upgrade-nudge__icon{align-self:center;background:#d6b02c;border-radius:50%;box-sizing:content-box;color:#fff;fill:#fff;flex-shrink:0;margin-left:16px;padding:6px}.wp-block-column.is-vertically-aligned-bottom,.wp-block-column.is-vertically-aligned-center,.wp-block-column.is-vertically-aligned-top{width:100%}.block-editor-warning{border:1px solid #e2e4e7;padding:10px 14px}.block-editor-warning .block-editor-warning__message{line-height:1.4;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px}.block-editor-warning .block-editor-warning__actions .components-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:inherit;text-decoration:none}
|
||||
.jetpack-block-nudge.block-editor-warning{margin-bottom:12px}.jetpack-block-nudge .block-editor-warning__message{margin:13px 0}.jetpack-block-nudge .block-editor-warning__actions{line-height:1}.jetpack-block-nudge .jetpack-block-nudge__info{font-size:13px;display:flex;flex-direction:row;line-height:1.4}.jetpack-block-nudge .jetpack-block-nudge__text-container{display:flex;flex-direction:column}.jetpack-block-nudge .jetpack-block-nudge__title{font-size:14px}.jetpack-block-nudge .jetpack-block-nudge__message{color:#636d75}.jetpack-upgrade-nudge__icon{align-self:center;background:#d6b02c;border-radius:50%;box-sizing:content-box;color:#fff;fill:#fff;flex-shrink:0;margin-left:16px;padding:6px}.wp-block-column.is-vertically-aligned-bottom,.wp-block-column.is-vertically-aligned-center,.wp-block-column.is-vertically-aligned-top{width:100%}.block-editor-warning{border:1px solid #e2e4e7;padding:10px 14px}.block-editor-warning .block-editor-warning__message{line-height:1.4;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px}.block-editor-warning .block-editor-warning__actions .components-button{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:inherit;text-decoration:none}
|
||||
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '25cf5e0cc772849ee7ed99cb450718cc');
|
||||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => 'b2b0d0865f9f15322eceec20694b0444');
|
||||
|
|
@ -1 +1 @@
|
|||
!function(e,t){for(var n in t)e[n]=t[n]}(window,function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=312)}({148:function(e,t,n){},312:function(e,t,n){n(47),e.exports=n(313)},313:function(e,t,n){"use strict";n.r(t);n(148)},42:function(e,t,n){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&(n.p=window.Jetpack_Block_Assets_Base_Url)},47:function(e,t,n){"use strict";n.r(t);n(42)}}));
|
||||
!function(e,t){for(var n in t)e[n]=t[n]}(window,function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=322)}({149:function(e,t,n){},322:function(e,t,n){n(44),e.exports=n(323)},323:function(e,t,n){"use strict";n.r(t);n(149)},38:function(e,t,n){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&(n.p=window.Jetpack_Block_Assets_Base_Url)},44:function(e,t,n){"use strict";n.r(t);n(38)}}));
|
||||
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('lodash', 'moment', 'react', 'wp-a11y', 'wp-api-fetch', 'wp-blob', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-data', 'wp-date', 'wp-edit-post', 'wp-editor', 'wp-element', 'wp-escape-html', 'wp-hooks', 'wp-i18n', 'wp-keycodes', 'wp-notices', 'wp-plugins', 'wp-polyfill', 'wp-token-list', 'wp-url', 'wp-viewport'), 'version' => 'ec2ba10ef471923948b43fd6ab5f7508');
|
||||
<?php return array('dependencies' => array('lodash', 'moment', 'react', 'wp-a11y', 'wp-api-fetch', 'wp-blob', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-data', 'wp-date', 'wp-dom-ready', 'wp-edit-post', 'wp-editor', 'wp-element', 'wp-escape-html', 'wp-hooks', 'wp-i18n', 'wp-keycodes', 'wp-notices', 'wp-plugins', 'wp-polyfill', 'wp-token-list', 'wp-url', 'wp-viewport'), 'version' => 'b3831e0c756ccc7da9eb0f8b373d6d48');
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('lodash', 'moment', 'react', 'wp-a11y', 'wp-api-fetch', 'wp-blob', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-data', 'wp-date', 'wp-edit-post', 'wp-editor', 'wp-element', 'wp-escape-html', 'wp-hooks', 'wp-i18n', 'wp-keycodes', 'wp-notices', 'wp-plugins', 'wp-polyfill', 'wp-token-list', 'wp-url', 'wp-viewport'), 'version' => '37d02306bdf55cebd1147177418f7dd0');
|
||||
<?php return array('dependencies' => array('lodash', 'moment', 'react', 'wp-a11y', 'wp-api-fetch', 'wp-blob', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-data', 'wp-date', 'wp-dom-ready', 'wp-edit-post', 'wp-editor', 'wp-element', 'wp-escape-html', 'wp-hooks', 'wp-i18n', 'wp-keycodes', 'wp-notices', 'wp-plugins', 'wp-polyfill', 'wp-token-list', 'wp-url', 'wp-viewport'), 'version' => 'fdee54bdedd9af6833af202891d359fa');
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('lodash', 'moment', 'react', 'wp-api-fetch', 'wp-blob', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-data', 'wp-date', 'wp-editor', 'wp-element', 'wp-escape-html', 'wp-hooks', 'wp-i18n', 'wp-keycodes', 'wp-notices', 'wp-polyfill', 'wp-token-list', 'wp-url', 'wp-viewport'), 'version' => '6e817b0588210825d09d174a1cc41aff');
|
||||
<?php return array('dependencies' => array('lodash', 'moment', 'react', 'wp-api-fetch', 'wp-blob', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-data', 'wp-date', 'wp-editor', 'wp-element', 'wp-escape-html', 'wp-hooks', 'wp-i18n', 'wp-keycodes', 'wp-notices', 'wp-polyfill', 'wp-token-list', 'wp-url', 'wp-viewport'), 'version' => 'be4f5069de6544c4fe567dd9fcafb85c');
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('lodash', 'moment', 'react', 'wp-a11y', 'wp-api-fetch', 'wp-blob', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-data', 'wp-date', 'wp-edit-post', 'wp-editor', 'wp-element', 'wp-escape-html', 'wp-hooks', 'wp-i18n', 'wp-keycodes', 'wp-notices', 'wp-plugins', 'wp-polyfill', 'wp-token-list', 'wp-url', 'wp-viewport'), 'version' => '6533fe3ec593e8aba08a33f86458d442');
|
||||
<?php return array('dependencies' => array('lodash', 'moment', 'react', 'wp-a11y', 'wp-api-fetch', 'wp-blob', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-data', 'wp-date', 'wp-dom-ready', 'wp-edit-post', 'wp-editor', 'wp-element', 'wp-escape-html', 'wp-hooks', 'wp-i18n', 'wp-keycodes', 'wp-notices', 'wp-plugins', 'wp-polyfill', 'wp-token-list', 'wp-url', 'wp-viewport'), 'version' => 'edefdf96c37dc6ffeb1a17036cbe440f');
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => 'da05b70d3d08d39f987b1a60a083d2ec');
|
||||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '087d2c2b64ca7a6242b3094ac2d82a07');
|
||||
|
|
@ -1 +1 @@
|
|||
!function(e,t){for(var n in t)e[n]=t[n]}(window,function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=314)}({314:function(e,t,n){n(47),e.exports=n(315)},315:function(e,t,n){"use strict";n.r(t);n(316)},316:function(e,t,n){},42:function(e,t,n){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&(n.p=window.Jetpack_Block_Assets_Base_Url)},47:function(e,t,n){"use strict";n.r(t);n(42)}}));
|
||||
!function(e,t){for(var n in t)e[n]=t[n]}(window,function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=324)}({324:function(e,t,n){n(44),e.exports=n(325)},325:function(e,t,n){"use strict";n.r(t);n(326)},326:function(e,t,n){},38:function(e,t,n){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&(n.p=window.Jetpack_Block_Assets_Base_Url)},44:function(e,t,n){"use strict";n.r(t);n(38)}}));
|
||||
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '605405155947da05383293ff7f879397');
|
||||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => 'c38e22b517ffd5afae730b53652589f0');
|
||||
|
|
@ -1 +1 @@
|
|||
!function(e,t){for(var n in t)e[n]=t[n]}(window,function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=317)}({149:function(e,t,n){},317:function(e,t,n){n(47),e.exports=n(318)},318:function(e,t,n){"use strict";n.r(t);n(149)},42:function(e,t,n){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&(n.p=window.Jetpack_Block_Assets_Base_Url)},47:function(e,t,n){"use strict";n.r(t);n(42)}}));
|
||||
!function(e,t){for(var n in t)e[n]=t[n]}(window,function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=327)}({150:function(e,t,n){},327:function(e,t,n){n(44),e.exports=n(328)},328:function(e,t,n){"use strict";n.r(t);n(150)},38:function(e,t,n){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&(n.p=window.Jetpack_Block_Assets_Base_Url)},44:function(e,t,n){"use strict";n.r(t);n(38)}}));
|
||||
|
|
@ -1 +1 @@
|
|||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => 'd494f997d40537f397fdad396fab06ca');
|
||||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '868c38e9d8649469ec44d590f4484b89');
|
||||
|
|
@ -1 +1 @@
|
|||
!function(e,t){for(var n in t)e[n]=t[n]}(window,function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=319)}({319:function(e,t,n){n(47),e.exports=n(320)},320:function(e,t,n){"use strict";n.r(t);n(321)},321:function(e,t,n){},42:function(e,t,n){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&(n.p=window.Jetpack_Block_Assets_Base_Url)},47:function(e,t,n){"use strict";n.r(t);n(42)}}));
|
||||
!function(e,t){for(var n in t)e[n]=t[n]}(window,function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=329)}({329:function(e,t,n){n(44),e.exports=n(330)},330:function(e,t,n){"use strict";n.r(t);n(331)},331:function(e,t,n){},38:function(e,t,n){"object"==typeof window&&window.Jetpack_Block_Assets_Base_Url&&(n.p=window.Jetpack_Block_Assets_Base_Url)},44:function(e,t,n){"use strict";n.r(t);n(38)}}));
|
||||
|
|
@ -0,0 +1 @@
|
|||
<?php return array('dependencies' => array('wp-dom-ready', 'wp-polyfill'), 'version' => 'a8be02ac9ca59ed1e821883b61e569fe');
|
||||
|
|
@ -0,0 +1 @@
|
|||
div.juxtapose{width:100%;font-family:Helvetica,Arial,sans-serif}div.jx-slider{width:100%;height:100%;position:relative;overflow:hidden;cursor:pointer;color:#f3f3f3}div.jx-handle{position:absolute;height:100%;width:40px;cursor:col-resize;z-index:15;margin-left:-20px}.vertical div.jx-handle{height:40px;width:100%;cursor:row-resize;margin-top:-20px;margin-left:0}div.jx-control{height:100%;margin-right:auto;margin-left:auto;width:3px;background-color:currentColor}.vertical div.jx-control{height:3px;width:100%;background-color:currentColor;position:relative;top:50%;transform:translateY(-50%)}div.jx-controller{position:absolute;top:0;bottom:0;height:60px;width:9px;margin:auto auto auto -3px;background-color:currentColor}.vertical div.jx-controller{height:9px;width:100px;margin-left:auto;margin-right:auto;top:-3px;position:relative}div.jx-arrow{margin:auto;top:0;bottom:0}.vertical div.jx-arrow,div.jx-arrow{position:absolute;width:0;height:0;transition:all .2s ease}.vertical div.jx-arrow{margin:0 auto;left:0;right:0}div.jx-arrow.jx-left{left:2px;border-color:transparent currentcolor transparent transparent;border-style:solid;border-width:8px 8px 8px 0}div.jx-arrow.jx-right{right:2px;border-color:transparent transparent transparent currentcolor;border-style:solid;border-width:8px 0 8px 8px}.vertical div.jx-arrow.jx-left{left:0;top:2px;border-color:transparent transparent currentcolor;border-style:solid;border-width:0 8px 8px}.vertical div.jx-arrow.jx-right{right:0;top:auto;bottom:2px;border-color:currentcolor transparent transparent;border-style:solid;border-width:8px 8px 0}div.jx-handle:active div.jx-arrow.jx-left,div.jx-handle:hover div.jx-arrow.jx-left{left:-1px}div.jx-handle:active div.jx-arrow.jx-right,div.jx-handle:hover div.jx-arrow.jx-right{right:-1px}.vertical div.jx-handle:active div.jx-arrow.jx-left,.vertical div.jx-handle:hover div.jx-arrow.jx-left{left:0;top:0}.vertical div.jx-handle:active div.jx-arrow.jx-right,.vertical div.jx-handle:hover div.jx-arrow.jx-right{right:0;bottom:0}div.jx-image{position:absolute;height:100%;display:inline-block;top:0;overflow:hidden}.vertical div.jx-image{width:100%;left:0;top:auto}div.jx-image img{height:100%;width:auto;z-index:5;position:absolute;margin-bottom:0;max-height:none;max-width:none}.vertical div.jx-image img{height:auto;width:100%}div.jx-image.jx-left{left:0;background-position:0}div.jx-image.jx-left img{left:0}div.jx-image.jx-right{right:0;background-position:100%}div.jx-image.jx-right img{right:0;bottom:0}.veritcal div.jx-image.jx-left{top:0;background-position:top}.veritcal div.jx-image.jx-left img{top:0}.vertical div.jx-image.jx-right{bottom:0;background-position:bottom}.veritcal div.jx-image.jx-right img{bottom:0}div.jx-image div.jx-label{font-size:1em;padding:.25em .75em;position:relative;display:inline-block;top:0;background-color:#000;background-color:rgba(0,0,0,.7);color:#fff;z-index:10;white-space:nowrap;line-height:18px;vertical-align:middle}div.jx-image.jx-left div.jx-label{float:left;left:0}div.jx-image.jx-right div.jx-label{float:right;right:0}.vertical div.jx-image div.jx-label{display:table;position:absolute}.vertical div.jx-image.jx-right div.jx-label{left:0;bottom:0;top:auto}div.jx-image.transition{transition:width .5s ease}div.jx-handle.transition{transition:left .5s ease}.vertical div.jx-image.transition{transition:height .5s ease}.vertical div.jx-handle.transition{transition:top .5s ease}div.jx-controller:focus,div.jx-image.jx-left div.jx-label:focus,div.jx-image.jx-right div.jx-label:focus,figcaption{text-align:center;font-size:85%}div.jx-control{color:#fff}.vertical div.jx-controller,div.jx-controller{width:48px;height:48px;border-radius:50%}div.jx-controller{margin-left:-22.5px}.vertical div.jx-controller{transform:translateY(-19.5px)}.vertical div.jx-arrow.jx-left,.vertical div.jx-arrow.jx-right,div.jx-arrow.jx-left,div.jx-arrow.jx-right{width:24px;height:24px;border:none;background-repeat:no-repeat;z-index:1;will-change:transform}div.jx-arrow.jx-left{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTEzLjQgMThMOCAxMmw1LjQtNiAxLjIgMS00LjYgNSA0LjYgNXoiLz48L3N2Zz4=");left:0}div.jx-arrow.jx-right{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTEwLjYgNkw5LjQgN2w0LjYgNS00LjYgNSAxLjIgMSA1LjQtNnoiLz48L3N2Zz4=");right:0}div.vertical div.jx-arrow.jx-left,div.vertical div.jx-arrow.jx-right{transform:rotate(90deg)}
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1 @@
|
|||
div.juxtapose{width:100%;font-family:Helvetica,Arial,sans-serif}div.jx-slider{width:100%;height:100%;position:relative;overflow:hidden;cursor:pointer;color:#f3f3f3}div.jx-handle{position:absolute;height:100%;width:40px;cursor:col-resize;z-index:15;margin-right:-20px}.vertical div.jx-handle{height:40px;width:100%;cursor:row-resize;margin-top:-20px;margin-right:0}div.jx-control{height:100%;margin-left:auto;margin-right:auto;width:3px;background-color:currentColor}.vertical div.jx-control{height:3px;width:100%;background-color:currentColor;position:relative;top:50%;transform:translateY(-50%)}div.jx-controller{position:absolute;top:0;bottom:0;height:60px;width:9px;margin:auto -3px auto auto;background-color:currentColor}.vertical div.jx-controller{height:9px;width:100px;margin-right:auto;margin-left:auto;top:-3px;position:relative}div.jx-arrow{margin:auto;top:0;bottom:0}.vertical div.jx-arrow,div.jx-arrow{position:absolute;width:0;height:0;transition:all .2s ease}.vertical div.jx-arrow{margin:0 auto;right:0;left:0}div.jx-arrow.jx-left{right:2px;border-color:transparent transparent transparent currentcolor;border-style:solid;border-width:8px 0 8px 8px}div.jx-arrow.jx-right{left:2px;border-color:transparent currentcolor transparent transparent;border-style:solid;border-width:8px 8px 8px 0}.vertical div.jx-arrow.jx-left{right:0;top:2px;border-color:transparent transparent currentcolor;border-style:solid;border-width:0 8px 8px}.vertical div.jx-arrow.jx-right{left:0;top:auto;bottom:2px;border-color:currentcolor transparent transparent;border-style:solid;border-width:8px 8px 0}div.jx-handle:active div.jx-arrow.jx-left,div.jx-handle:hover div.jx-arrow.jx-left{right:-1px}div.jx-handle:active div.jx-arrow.jx-right,div.jx-handle:hover div.jx-arrow.jx-right{left:-1px}.vertical div.jx-handle:active div.jx-arrow.jx-left,.vertical div.jx-handle:hover div.jx-arrow.jx-left{right:0;top:0}.vertical div.jx-handle:active div.jx-arrow.jx-right,.vertical div.jx-handle:hover div.jx-arrow.jx-right{left:0;bottom:0}div.jx-image{position:absolute;height:100%;display:inline-block;top:0;overflow:hidden}.vertical div.jx-image{width:100%;right:0;top:auto}div.jx-image img{height:100%;width:auto;z-index:5;position:absolute;margin-bottom:0;max-height:none;max-width:none}.vertical div.jx-image img{height:auto;width:100%}div.jx-image.jx-left{right:0;background-position:100%}div.jx-image.jx-left img{right:0}div.jx-image.jx-right{left:0;background-position:0}div.jx-image.jx-right img{left:0;bottom:0}.veritcal div.jx-image.jx-left{top:0;background-position:top}.veritcal div.jx-image.jx-left img{top:0}.vertical div.jx-image.jx-right{bottom:0;background-position:bottom}.veritcal div.jx-image.jx-right img{bottom:0}div.jx-image div.jx-label{font-size:1em;padding:.25em .75em;position:relative;display:inline-block;top:0;background-color:#000;background-color:rgba(0,0,0,.7);color:#fff;z-index:10;white-space:nowrap;line-height:18px;vertical-align:middle}div.jx-image.jx-left div.jx-label{float:right;right:0}div.jx-image.jx-right div.jx-label{float:left;left:0}.vertical div.jx-image div.jx-label{display:table;position:absolute}.vertical div.jx-image.jx-right div.jx-label{right:0;bottom:0;top:auto}div.jx-image.transition{transition:width .5s ease}div.jx-handle.transition{transition:right .5s ease}.vertical div.jx-image.transition{transition:height .5s ease}.vertical div.jx-handle.transition{transition:top .5s ease}div.jx-controller:focus,div.jx-image.jx-left div.jx-label:focus,div.jx-image.jx-right div.jx-label:focus,figcaption{text-align:center;font-size:85%}div.jx-control{color:#fff}.vertical div.jx-controller,div.jx-controller{width:48px;height:48px;border-radius:50%}div.jx-controller{margin-right:-22.5px}.vertical div.jx-controller{transform:translateY(-19.5px)}.vertical div.jx-arrow.jx-left,.vertical div.jx-arrow.jx-right,div.jx-arrow.jx-left,div.jx-arrow.jx-right{width:24px;height:24px;border:none;background-repeat:no-repeat;z-index:1;will-change:transform}div.jx-arrow.jx-left{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTEzLjQgMThMOCAxMmw1LjQtNiAxLjIgMS00LjYgNSA0LjYgNXoiLz48L3N2Zz4=");right:0}div.jx-arrow.jx-right{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTEwLjYgNkw5LjQgN2w0LjYgNS00LjYgNSAxLjIgMSA1LjQtNnoiLz48L3N2Zz4=");left:0}div.vertical div.jx-arrow.jx-left,div.vertical div.jx-arrow.jx-right{transform:rotate(-90deg)}
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 11 KiB |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue