This commit is contained in:
Karin Allarpsdotter 2025-06-09 10:07:10 +02:00
parent 61f6ceb973
commit 334a3e3430
113 changed files with 2372 additions and 2496 deletions

View File

@ -54,13 +54,43 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<a href="contribute.php" class="nav-tab"><?php _e( 'Get Involved' ); ?></a>
</nav>
<div class="about__section changelog has-subtle-background-color">
<div class="column">
<h2><?php _e( 'Maintenance and Security Release' ); ?></h2>
<p>
<?php
printf(
/* translators: 1: WordPress version number, 2: Plural number of bugs. */
_n(
'<strong>Version %1$s</strong> addressed %2$s bug.',
'<strong>Version %1$s</strong> addressed %2$s bugs.',
16
),
'6.8.1',
'15'
);
?>
<?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( '6.8.1' )
)
);
?>
</p>
</div>
</div>
<div class="about__section has-1-column">
<div class="column">
<h2><?php _e( 'A release polished to a high sheen.' ); ?></h2>
<p class="is-subheading"><?php _e( 'WordPress 6.8 polishes and refines the tools you use every day, making your site faster, more secure, and easier to manage.' ); ?></p>
<p><?php _e( 'The Style Book now has a structured layout and works with Classic themes, giving you more control over global styles.' ); ?></p>
<p><?php _e( 'Speculative loading speeds up navigation by preloading links before users navigate to them, while bcrypt hashing strengthens password security automatically.' ); ?></p>
<p><?php _e( 'Behind the scenes, database optimizations improve performance, and a new security warning system helps prevent vulnerabilities before they become a problem.' ); ?></p>
<p><?php _e( 'Speculative loading speeds up navigation by preloading links before users navigate to them, bcrypt hashing strengthens password security automatically, and database optimizations improve performance.' ); ?></p>
</div>
</div>

View File

@ -1008,8 +1008,18 @@ class WP_Upgrader {
global $wp_filesystem;
if ( ! $wp_filesystem ) {
require_once ABSPATH . 'wp-admin/includes/file.php';
WP_Filesystem();
if ( ! function_exists( 'WP_Filesystem' ) ) {
require_once ABSPATH . 'wp-admin/includes/file.php';
}
ob_start();
$credentials = request_filesystem_credentials( '' );
ob_end_clean();
if ( false === $credentials || ! WP_Filesystem( $credentials ) ) {
wp_trigger_error( __FUNCTION__, __( 'Could not access filesystem.' ) );
return;
}
}
$file = $wp_filesystem->abspath() . '.maintenance';

View File

@ -1327,8 +1327,8 @@ $( function() {
// Observe submissions from posts lists for 'bulk_action' or users lists for 'new_role'.
var bulkFieldRelations = {
'bulk_action' : 'action',
'changeit' : 'new_role'
'bulk_action' : window.bulkActionObserverIds.bulk_action,
'changeit' : window.bulkActionObserverIds.changeit
};
if ( ! Object.keys( bulkFieldRelations ).includes( submitterName ) ) {
return;

File diff suppressed because one or more lines are too long

View File

@ -1293,7 +1293,7 @@ window.wp = window.wp || {};
.append( $button.attr({
id: id + '-html',
'class': 'wp-switch-editor switch-html'
}).text( window.tinymce.translate( 'Code' ) ) )
}).text( window.tinymce.translate( 'Code|tab' ) ) )
).append( $editorContainer )
);

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.

View File

@ -2,7 +2,7 @@
# This file is distributed under the same license as the WordPress - 6.8.x - Development - Administration package.
msgid ""
msgstr ""
"PO-Revision-Date: 2025-03-28 20:52:50+0000\n"
"PO-Revision-Date: 2025-04-25 20:25:55+0000\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -37,6 +37,10 @@ msgctxt "default GMT offset or timezone string"
msgid "0"
msgstr "Europe/Stockholm"
#: wp-admin/about.php:93
msgid "Speculative loading speeds up navigation by preloading links before users navigate to them, bcrypt hashing strengthens password security automatically, and database optimizations improve performance."
msgstr "Spekulativ laddning gör webbplatsnavigering snabbare genom att hämta länkade sidor redan innan en besökare har gett kommando att gå till dem. Hashberäkning med bcrypt ger automatiskt bättre skydd av lösenord. Och databasoptimeringar förbättrar prestandan."
#. translators: 1: URL to WordPress release notes, 2: WordPress version number,
#. 3: The PHP extension name needed.
#: wp-admin/upgrade.php:68
@ -216,76 +220,68 @@ msgstr "Ledare för mindre utgåva"
msgid "Release Coordination"
msgstr "Koordinering av versionsutgåvan"
#: wp-admin/about.php:164
#: wp-admin/about.php:194
msgid "WordPress 6.8 packs a wide range of performance fixes and enhancements to speed up everything from editing to browsing. Beyond speculative loading, WordPress 6.8 pays special attention to the block editor, block type registration, and query caching. Plus, imagine never waiting longer than 50 milliseconds—for any interaction. In WordPress 6.8, the Interactivity API takes a first step toward that goal."
msgstr "WordPress 6.8 innehåller ett stort antal prestandakorrigeringar och förbättringar som snabbar upp allt från redigering till vanliga besök på webbplatsen. Utöver spekulativ laddning innehåller WordPress 6.8 extra många nyheter kring blockredigeraren, registrering av blocktyper och cachelagring av databasfrågor. Tänk dig hur det kan vara att aldrig vänta mer än 50 millisekunder för alla typer av interaktion. WordPress 6.8 tar ett första steg på vägen mot detta mål för Interactivity-API."
#: wp-admin/about.php:151
#: wp-admin/about.php:181
msgid "Work continues on optimizing cache key generation in the <code>WP_Query</code> class. The goal is, as ever, to boost your site&#8217;s performance, in this case by taking some more of the load off your database. This is especially good if you get a lot of traffic."
msgstr "Arbetet går vidare med att optimera genereringen av cache-nycklar i klassen <code>WP_Query</code>. Målet är, som alltid, att öka webbplatsens prestanda, i detta fall genom att minska belastningen på din databas lite mer. Detta är extra effektivt om webbplatsen har många besökare."
#: wp-admin/about.php:150
#: wp-admin/about.php:180
msgid "Take a load off the database"
msgstr "Minska belastningen på databasen"
#: wp-admin/about.php:142
#: wp-admin/about.php:172
msgid "100+ accessibility fixes and enhancements touch a broad spectrum of the WordPress experience. This release includes fixes to every bundled theme, improvements to the navigation menu management, the customizer, and simplified labeling. The Block Editor has over 70 improvements to blocks, DataViews, and to its overall user experience."
msgstr "Över 100 rättelser och förbättringar för tillgänglighet som berör många olika delar av WordPress-upplevelsen. Denna version innehåller korrigeringar för alla standardteman, förbättringar i hanteringen av navigeringsmenyn, anpassaren och förenklade textetiketter. Blockredigeraren innehåller över 70 förbättringar av olika block, DataViews (datavyer) och den övergripande användarupplevelsen."
#: wp-admin/about.php:128
#: wp-admin/about.php:158
msgid "Now passwords are harder to crack with bcrypt hashing, which takes a lot more computing power to break. This strengthens overall security, as do other encryption improvements across WordPress. You don&#8217;t need to do anything—everything updates automatically."
msgstr "Nu blir lösenord mer svårknäckta tack vare hashvärden beräknade med bcrypt, något som kräver betydligt mer datorkraft för att beräkna. Detta och andra förbättringar av krypteringen stärker den övergripande säkerheten i WordPress. Du behöver inte göra någonting allt uppdateras automatiskt."
#: wp-admin/about.php:127
#: wp-admin/about.php:157
msgid "Stronger password security with bcrypt"
msgstr "Bättre skydd av lösenord tack vare bcrypt"
#: wp-admin/about.php:111
#: wp-admin/about.php:141
msgid "In WordPress 6.8, pages load faster than ever. When you or your user hovers over or clicks a link, WordPress may preload the next page, for a smoother, near-instant experience. The system balances speed and efficiency, and you can control how it works, with a plugin or your own code. This feature only works in modern browsers—older ones will simply ignore it without any impact."
msgstr "Med WordPress 6.8 laddas sidor snabbare än någonsin. När du eller en besökare pekar på en länk eller börjar klicka på den kan WordPress förladda nästa sida för en smidigare och nästan omedelbar upplevelse. Systemet gör en avvägning mellan hastighet och effektivitet, och du kan påverka dess funktion med ett tillägg eller egen kod. Denna funktion stöds endast av moderna webbläsare, medan äldre webbläsare helt enkelt ignorerar funktionen utan någon påverkan."
#: wp-admin/about.php:110
#: wp-admin/about.php:140
msgid "Near-instant page loads, thanks to Speculative Loading"
msgstr "Nästan omedelbara sidladdningar tack vare spekulativ laddning"
#: wp-admin/about.php:104
#: wp-admin/about.php:134
msgid "Easier ways to see your options in Data Views, and you can exclude sticky posts from the Query Loop. Plus, you&#8217;ll find lots of little improvements in the editor that smooth your way through everything you build."
msgstr "Du kan enklare se dina alternativ i datavyer (Data Views), och kan hoppa över fastnålade/klistrade inlägg i Query-loopen. Dessutom gör en lång rad mindre förbättringar i redigeraren att allt du bygger går smidigare."
#: wp-admin/about.php:83
#: wp-admin/about.php:113
msgid "Plus, now you can see it in Classic themes that have editor-styles or a theme.json file. Find the Style Book under Appearance > Design and use it to preview your theme&#8217;s evolution, as you edit CSS or make changes in the Customizer."
msgstr "Dessutom är detta nu synligt i i klassiska teman som innehåller stilar för redigeraren eller en theme.json-fil. Stilkatalogen finns under Utseende > Design och kan användas för att förhandsgranska hur ditt tema utvecklas när du redigerar CSS eller gör ändringar i Anpassaren."
#. translators: %s is a direct link to the Style Book.
#: wp-admin/about.php:79
#: wp-admin/about.php:109
msgid "Plus, now you can see it in Classic themes that have editor-styles or a theme.json file. Find <a href=\"%s\">the Style Book</a> under Appearance > Design and use it to preview your theme&#8217;s evolution, as you edit CSS or make changes in the Customizer."
msgstr "Dessutom är detta nu synligt i i klassiska teman som innehåller stilar för redigeraren eller en theme.json-fil. <a href=\"%s\">Stilkatalogen</a> finns under Utseende > Design och kan användas för att förhandsgranska hur ditt tema utvecklas när du redigerar CSS eller gör ändringar i Anpassaren."
#: wp-admin/about.php:71
#: wp-admin/about.php:101
msgid "The Style Book has a new, structured layout and clearer labels, to make it even easier to edit colors, typography—almost all your site styles—in one place."
msgstr "Stilkatalogen har en ny, strukturerad layout och tydligare textetiketter som gör det ännu enklare att redigera färger, typografi nästan alla stilar på webbplatsen på ett och samma ställe."
#: wp-admin/about.php:69
#: wp-admin/about.php:99
msgid "The Style Book gets a cleaner look—and a few new tricks"
msgstr "Stilkatalogen får ett mer renodlat utseende och några nya finesser"
#: wp-admin/about.php:63
msgid "Behind the scenes, database optimizations improve performance, and a new security warning system helps prevent vulnerabilities before they become a problem."
msgstr "Bakom kulisserna ger databasoptimeringar bättre prestandan. Ett nytt system för säkerhetsvarningar hjälper till att förhindra sårbarheter innan problem uppstår."
#: wp-admin/about.php:62
msgid "Speculative loading speeds up navigation by preloading links before users navigate to them, while bcrypt hashing strengthens password security automatically."
msgstr "Spekulativ laddning snabbar upp sidövergångar genom att påbörja laddning av sidor innan besökaren går till dem, samtidigt som hash-värden beräknade med bcrypt automatiskt ger bättre skydd för lösenorden."
#: wp-admin/about.php:61
#: wp-admin/about.php:92
msgid "The Style Book now has a structured layout and works with Classic themes, giving you more control over global styles."
msgstr "Stilkatalogen har nu en strukturerad layout och fungerar även med klassiska teman, vilket ger dig bättre kontroll över globala stilar."
#: wp-admin/about.php:60
#: wp-admin/about.php:91
msgid "WordPress 6.8 polishes and refines the tools you use every day, making your site faster, more secure, and easier to manage."
msgstr "WordPress 6.8 förbättrar och förfinar verktygen du använder varje dag och ger dig en snabbare, säkrare och mer lätthanterad webbplats."
#: wp-admin/about.php:59
#: wp-admin/about.php:90
msgid "A release polished to a high sheen."
msgstr "En välpolerad utgåva."
@ -388,12 +384,12 @@ msgid "Skip to Editor"
msgstr "Hoppa till redigerare"
#. translators: %s: WordPress version number.
#: wp-admin/about.php:259
#: wp-admin/about.php:289
msgid "WordPress %s Field Guide"
msgstr "Fältguide för WordPress %s"
#. translators: %s: WordPress version number.
#: wp-admin/about.php:232
#: wp-admin/about.php:262
msgid "WordPress %s Release Notes"
msgstr "Kommentarer om utgåvan WordPress %s"
@ -552,20 +548,20 @@ msgstr "Du som är tilläggsutvecklare kan läsa mer om <a href=\"https://develo
msgid "If you are a plugin author, you can learn more about <a href=\"https://developer.wordpress.org/plugins/privacy/adding-the-personal-data-eraser-to-your-plugin/\">how to add the Personal Data Eraser to a plugin</a>."
msgstr "Du som är tilläggsutvecklare kan läsa mer om <a href=\"https://developer.wordpress.org/plugins/privacy/adding-the-personal-data-eraser-to-your-plugin/\">hur du lägger till funktionen för borttagning av personuppgifter i ett tillägg</a>."
#: wp-admin/about.php:185
#: wp-admin/about.php:215
msgid "See everything new"
msgstr "Se allt nytt"
#: wp-admin/about.php:185
#: wp-admin/about.php:215
msgid "https://wordpress.org/download/releases/6-8/"
msgstr "https://wordpress.org/download/releases/6-8/"
#. translators: %s: Version number.
#: wp-admin/about.php:177
#: wp-admin/about.php:207
msgid "For a comprehensive overview of all the new features and enhancements in WordPress %s, please visit the feature-showcase website."
msgstr "Du hittar en heltäckande beskrivning av alla nya funktioner och alla förbättringar i WordPress %s på webbplatsen feature-showcase."
#: wp-admin/about.php:171
#: wp-admin/about.php:201
msgid "And much more"
msgstr "Och mycket mer"
@ -708,11 +704,11 @@ msgstr "Installera nu"
msgid "Created by a worldwide team of passionate individuals"
msgstr "Skapat av ett världsomspännande team av passionerade individer"
#: wp-admin/about.php:141
#: wp-admin/about.php:171
msgid "Accessibility improvements"
msgstr "Tillgänglighetsförbättringar"
#: wp-admin/about.php:163
#: wp-admin/about.php:193
msgid "Performance updates"
msgstr "Prestandauppdateringar"
@ -779,12 +775,12 @@ msgid "When using Bulk Edit, you can change the metadata (categories, author, et
msgstr "När du använder massredigering kan du ändra metadata (kategorier, författare, etc.) för alla valda inlägg samtidigt. För att ta bort ett inlägg från grupperingen klickar du bara på knappen %s<span class=\"screen-reader-text\">ta bort</span> bredvid dess namn i området för massredigering som visas."
#. translators: %s: WordPress version number.
#: wp-admin/about.php:242
#: wp-admin/about.php:272
msgid "Read the WordPress %s Release Notes for information on installation, enhancements, fixed issues, release contributors, learning resources, and the list of file changes."
msgstr "Läs kommentarerna för utgåvan WordPress %s där du hittar information om installation, förbättringar, åtgärdade problem, bidragsgivare till utgåvan, resurser för utbildning samt listan över alla ändrade filer."
#. translators: %s: WordPress version number.
#: wp-admin/about.php:269
#: wp-admin/about.php:299
msgid "Explore the WordPress %s Field Guide. Learn about the changes in this release with detailed developer notes to help you build with WordPress."
msgstr "Utforska utvecklarhandboken (Field Guide) för WordPress %s. Läs mer om nyheterna i denna version med detaljerade kommentarer för utvecklare som hjälper dig att bygga med WordPress."
@ -804,6 +800,11 @@ msgstr "PHP-versionen på din server är %1$s, men den nya tilläggsversionen kr
msgid "Your WordPress version is %1$s, however the new plugin version requires %2$s."
msgstr "Din WordPress-version är %1$s, men den nya tilläggsversionen kräver %2$s."
#. translators: %s: WordPress version.
#: wp-admin/about.php:79
msgid "https://wordpress.org/support/wordpress-version/version-%s/"
msgstr "https://wordpress.org/support/wordpress-version/version-%s/"
#: wp-admin/contribute.php:103 wp-admin/credits.php:57 wp-admin/credits.php:65
msgid "https://make.wordpress.org/contribute/"
msgstr "https://make.wordpress.org/contribute/"
@ -1267,7 +1268,7 @@ msgid "Be the future of WordPress"
msgstr "Var framtiden för WordPress"
#. translators: 1: Learn WordPress link, 2: Workshops link.
#: wp-admin/about.php:210
#: wp-admin/about.php:240
msgid "<a href=\"%1$s\">Learn WordPress</a> is a free resource for new and experienced WordPress users. Learn is stocked with how-to videos on using various features in WordPress, <a href=\"%2$s\">interactive workshops</a> for exploring topics in-depth, and lesson plans for diving deep into specific areas of WordPress."
msgstr "<a href=\"%1$s\">Learn WordPress</a> är en kostnadsfri resurs för både nya och erfarna WordPress-användare. Learn är fyllt med instruktionsvideor om hur man använder olika funktioner i WordPress, <a href=\"%2$s\">interaktiva workshops</a> för att utforska olika ämnen på djupet och lektionsplaner för fördjupning inom specifika WordPress-områden."
@ -1413,12 +1414,12 @@ msgid "<a href=\"https://wordpress.org/documentation/article/customizer/\">Docum
msgstr "<a href=\"https://wordpress.org/documentation/article/customizer/\">Dokumentation om anpassaren</a>"
#. translators: The localized WordPress download URL.
#: wp-admin/about.php:350
#: wp-admin/about.php:380
msgid "https://wordpress.org/download/"
msgstr "https://sv.wordpress.org/download/"
#. translators: %s: The major version of WordPress for this branch.
#: wp-admin/about.php:347
#: wp-admin/about.php:377
msgid "This is the final release of WordPress %s"
msgstr "Detta är den sista utgåvan av WordPress %s"
@ -1741,12 +1742,12 @@ msgid "Reach out to WordPress Core developers to ensure you'll never have this p
msgstr "Kontakta utvecklare för WordPress-kärnan för att se till att detta problem aldrig återkommer."
#. translators: 1: WordPress version number, 2: Link to update WordPress
#: wp-admin/about.php:344
#: wp-admin/about.php:374
msgid "Important! Your version of WordPress (%1$s) will stop receiving security updates in the near future. To keep your site secure, please <a href=\"%2$s\">update to the latest version of WordPress</a>."
msgstr "Viktigt! Din version av WordPress (%1$s) kommer att sluta ta emot säkerhetsuppdateringar inom en snar framtid. För att hålla din webbplats säker, <a href=\"%2$s\">uppdatera till den senaste versionen av WordPress</a>."
#. translators: 1: WordPress version number, 2: Link to update WordPress
#: wp-admin/about.php:341
#: wp-admin/about.php:371
msgid "Important! Your version of WordPress (%1$s) is no longer supported, you will not receive any security updates for your website. To keep your site secure, please <a href=\"%2$s\">update to the latest version of WordPress</a>."
msgstr "Viktigt! Din version av WordPress (%1$s) stöds inte längre, du kommer inte att få några säkerhetsuppdateringar för din webbplats. För att hålla din webbplats säker, <a href=\"%2$s\">uppdatera till den senaste versionen av WordPress</a>."
@ -1756,7 +1757,7 @@ msgid "https://make.wordpress.org/core/wordpress-%s-field-guide/"
msgstr "https://make.wordpress.org/core/wordpress-%s-field-guide/"
#. translators: %s: Version number.
#: wp-admin/about.php:201
#: wp-admin/about.php:231
msgid "Learn more about WordPress %s"
msgstr "Lär dig mer om WordPress %s"
@ -2661,7 +2662,7 @@ msgstr "Lägg till applikationslösenord"
msgid "Required to create an Application Password, but not to update the user."
msgstr "Krävs för att skapa ett applikationslösenord men inte för att uppdatera användaren."
#: wp-admin/about.php:285
#: wp-admin/about.php:315
msgid "Go to Updates"
msgstr "Gå till uppdateringar"
@ -7670,7 +7671,7 @@ msgstr "Ställföreträdare för utgåvan"
msgid "Release Design Lead"
msgstr "Designansvarig för utgåvan"
#: wp-admin/about.php:103
#: wp-admin/about.php:133
msgid "Editor improvements"
msgstr "Förbättringar av redigeraren"
@ -8113,7 +8114,7 @@ msgid "(Currently set to: %s)"
msgstr "(Just nu satt till: %s)"
#. translators: %s: WordPress version number.
#: wp-admin/about.php:315
#: wp-admin/about.php:345
msgid "<strong>Version %s</strong> addressed one security issue."
msgstr "<strong>Version %s</strong> åtgärdar ett säkerhetsproblem."
@ -8126,15 +8127,15 @@ msgstr "https://sv.gravatar.com/"
msgid "Profile Picture"
msgstr "Profilbild"
#: wp-admin/about.php:312
#: wp-admin/about.php:342
msgid "Maintenance and Security Releases"
msgstr "Underhålls- och säkerhetsutgåvor"
#: wp-admin/about.php:309
#: wp-admin/about.php:339
msgid "Security Releases"
msgstr "Säkerhetsutgåvor"
#: wp-admin/about.php:306
#: wp-admin/about.php:336
msgid "Maintenance Releases"
msgstr "Underhållsutgåvor"
@ -11431,14 +11432,15 @@ msgstr "Ange e-postadressen till en befintlig användare i det här nätverket f
msgid "Show Toolbar when viewing site"
msgstr "Visa verktygsfält när du är på webbplatsen"
#. translators: %s: HelpHub URL.
#. translators: %s: Documentation URL.
#: wp-admin/about.php:338
#: wp-admin/about.php:76 wp-admin/about.php:368
msgid "For more information, see <a href=\"%s\">the release notes</a>."
msgstr "Läs mer i <a href=\"%s\">uppgifterna om utgåvan</a>."
#. translators: 1: WordPress version number, 2: Plural number of bugs. More
#. than one security issue.
#: wp-admin/about.php:332
#: wp-admin/about.php:362
msgid "<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug."
msgid_plural "<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs."
msgstr[0] "<strong>Version %1$s</strong> åtgärdar några sårbarheter och rättar %2$s fel."
@ -11446,33 +11448,33 @@ msgstr[1] "<strong>Version %1$s</strong> åtgärdar några sårbarheter och rät
#. translators: 1: WordPress version number, 2: Plural number of bugs. Singular
#. security issue.
#: wp-admin/about.php:326
#: wp-admin/about.php:356
msgid "<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bug."
msgid_plural "<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs."
msgstr[0] "<strong>Version %1$s</strong> åtgärdar en säkerhetsrisk och rättar %2$s fel."
msgstr[1] "<strong>Version %1$s</strong> åtgärdar en säkerhetsrisk och rättar %2$s fel."
#. translators: 1: WordPress version number, 2: Plural number of bugs.
#: wp-admin/about.php:320
#: wp-admin/about.php:64 wp-admin/about.php:350
msgid "<strong>Version %1$s</strong> addressed %2$s bug."
msgid_plural "<strong>Version %1$s</strong> addressed %2$s bugs."
msgstr[0] "<strong>Version %1$s</strong> åtgärdar %2$s fel."
msgstr[1] "<strong>Version %1$s</strong> åtgärdar %2$s fel."
#. translators: %s: WordPress version number.
#: wp-admin/about.php:317
#: wp-admin/about.php:347
msgid "<strong>Version %s</strong> addressed some security issues."
msgstr "<strong>Version %s</strong> åtgärdar några säkerhetsproblem."
#: wp-admin/about.php:311
#: wp-admin/about.php:59 wp-admin/about.php:341
msgid "Maintenance and Security Release"
msgstr "Underhålls- och säkerhetsutgåva"
#: wp-admin/about.php:308
#: wp-admin/about.php:338
msgid "Security Release"
msgstr "Säkerhetsutgåva"
#: wp-admin/about.php:305
#: wp-admin/about.php:335
msgid "Maintenance Release"
msgstr "Underhållsutgåva"
@ -11745,11 +11747,11 @@ msgstr "<strong>Redigera</strong> tar dig till inläggets redigeringssida. Du ko
msgid "Because this is a multisite installation, you may add accounts that already exist on the Network by specifying a username or email, and defining a role. For more options, such as specifying a password, you have to be a Network Administrator and use the hover link under an existing user&#8217;s name to Edit the user profile under Network Admin > All Users."
msgstr "Eftersom detta är en nätverksinstallation av WordPress kan du lägga till konton som redan finns på nätverket genom att ange ett användarnamn eller en e-postadress och ange en roll. För fler alternativ, som till exempel att ange ett lösenord, måste du vara en nätverksadministratör och använda åtgärdslänken ”Redigera” under en befintlig användares namn för att redigera användarprofilen på sidan Nätverksadministration > Alla användare."
#: wp-admin/about.php:292
#: wp-admin/about.php:322
msgid "Go to Dashboard &rarr; Home"
msgstr "Gå till Adminpanel &rarr; Hem"
#: wp-admin/about.php:285
#: wp-admin/about.php:315
msgid "Go to Dashboard &rarr; Updates"
msgstr "Gå till adminpanel &rarr; Uppdateringar"
@ -13450,7 +13452,7 @@ msgstr "Uppdateringar för WordPress"
msgid "Edit menu item"
msgstr "Redigera menyval"
#: wp-admin/about.php:292
#: wp-admin/about.php:322
msgid "Go to Dashboard"
msgstr "Gå till adminpanelen"

File diff suppressed because one or more lines are too long

View File

@ -2,7 +2,7 @@
# This file is distributed under the same license as the Plugins - Akismet Anti-spam: Spam Protection - Stable (latest release) package.
msgid ""
msgstr ""
"PO-Revision-Date: 2025-02-04 21:23:12+0000\n"
"PO-Revision-Date: 2025-05-07 16:51:03+0000\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -11,6 +11,10 @@ msgstr ""
"Language: sv_SE\n"
"Project-Id-Version: Plugins - Akismet Anti-spam: Spam Protection - Stable (latest release)\n"
#: class-akismet-compatible-plugins.php:86
msgid "Error getting compatible plugins."
msgstr "Fel vid hämtning av kompatibla tillägg."
#: views/notice.php:70
msgid "Upgrade plan"
msgstr "Uppgradera paket"
@ -37,11 +41,11 @@ msgstr "Nästan klart! Konfigurera Akismet och säg hejdå till skräppost"
msgid "Choose an Akismet plan"
msgstr "Välj ett Akismet-paket"
#: class.akismet-admin.php:770
#: class.akismet-admin.php:761
msgid "This comment was not sent to Akismet when it was submitted because it was caught by the comment disallowed list."
msgstr "Denna kommentar skickades inte till Akismet när den skickades in eftersom den fastnade i listan över otillåtna kommentarer."
#: class.akismet-admin.php:767
#: class.akismet-admin.php:758
msgid "This comment was not sent to Akismet when it was submitted because it was caught by something else."
msgstr "Denna kommentar skickades inte till Akismet när den skickades in eftersom den fastnade av något annat."
@ -66,19 +70,19 @@ msgstr "Kunde inte hitta matchande kommentar."
msgid "The 'comments' parameter must be an array."
msgstr "Parametern \"comments\" måste vara en array."
#: class.akismet-admin.php:764
#: class.akismet-admin.php:755
msgid "Akismet cleared this comment during a recheck. It did not update the comment status because it had already been modified by another user or plugin."
msgstr "Akismet godkände den här kommentaren under en återkontroll. Kommentarstatusen uppdaterades inte eftersom den redan hade modifierats av en annan användare eller av ett annat tillägg."
#: class.akismet-admin.php:761
#: class.akismet-admin.php:752
msgid "Akismet determined this comment was spam during a recheck. It did not update the comment status because it had already been modified by another user or plugin."
msgstr "Akismet fastställde att den här kommentaren var skräppost under en återkontroll. Kommentarstatusen uppdaterades inte eftersom den redan hade modifierats av en annan användare eller av ett annat tillägg."
#: class.akismet-admin.php:758
#: class.akismet-admin.php:749
msgid "Akismet cleared this comment and updated its status via webhook."
msgstr "Akismet rensade denna kommentar och uppdaterade dess status via webhook."
#: class.akismet-admin.php:755
#: class.akismet-admin.php:746
msgid "Akismet caught this comment as spam and updated its status via webhook."
msgstr "Akismet fångade denna kommentar som skräppost och uppdaterade dess status via webhook."
@ -86,18 +90,18 @@ msgstr "Akismet fångade denna kommentar som skräppost och uppdaterade dess sta
msgid "Akismet is now protecting your site from spam."
msgstr "Akismet skyddar nu din webbplats från skräppost."
#: views/config.php:300
#: views/config.php:304
msgid "Account overview"
msgstr "Kontoöversikt"
#. translators: %1$s: spam folder link, %2$d: delete interval in days
#: views/config.php:188
#: views/config.php:192
msgid "Spam in the %1$s older than %2$d day is deleted automatically."
msgid_plural "Spam in the %1$s older than %2$d days is deleted automatically."
msgstr[0] "Skräppost i %1$s äldre än %2$d dag tas bort automatiskt."
msgstr[1] "Skräppost i %1$s äldre än %2$d dagar tas bort automatiskt."
#: views/config.php:183
#: views/config.php:187
msgid "spam folder"
msgstr "skräppostmapp"
@ -109,19 +113,19 @@ msgstr "Detaljerad Akismet-statistik"
msgid "Back to settings"
msgstr "Tillbaka till inställningarna"
#: views/config.php:264
#: views/config.php:268
msgid "Subscription type"
msgstr "Prenumerationstyp"
#: views/config.php:228
#: views/config.php:232
msgid "To help your site with transparency under privacy laws like the GDPR, Akismet can display a notice to your users under your comment forms."
msgstr "För att hjälpa din webbplats med transparens under sekretesslagar som GDPR kan Akismet visa dina besökare ett meddelande under dina kommentarsformulär."
#: views/config.php:150
#: views/config.php:154
msgid "Spam filtering"
msgstr "Skräppostfiltrering"
#: views/config.php:90 views/enter.php:9
#: views/config.php:94 views/enter.php:9
msgid "API key"
msgstr "API-nyckel"
@ -146,7 +150,7 @@ msgstr "WP-Cron har inaktiverats med konstanten DISABLE_WP_CRON. Förnyade kontr
#. translators: %1$s is a human-readable time difference, like "3 hours ago",
#. and %2$s is an already-translated phrase describing how a comment's status
#. changed, like "This comment was reported as spam."
#: class.akismet-admin.php:802
#: class.akismet-admin.php:793
msgid "%1$s - %2$s"
msgstr "%1$s %2$s "
@ -210,28 +214,28 @@ msgstr "Din API-nyckel är inte längre giltig."
#. 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:490
#: class.akismet-admin.php:481
msgid "Checking for Spam (%1$s%)"
msgstr "Söker efter skräppost (%1$s&nbsp;%)"
#: class.akismet-admin.php:818
#: class.akismet-admin.php:809
msgid "No comment history."
msgstr "Ingen kommentarhistorik."
#: class.akismet-admin.php:751
#: class.akismet-admin.php:742
msgid "Akismet was unable to recheck this comment."
msgstr "Akismet kunde inte kontrollera denna kommentar igen."
#: class.akismet-admin.php:743
#: class.akismet-admin.php:734
msgid "Akismet was unable to check this comment but will automatically retry later."
msgstr "Akismet kunde inte kontrollera denna kommentar men gör automatiskt ett nytt försök senare."
#. translators: The placeholder is a WordPress PHP function name.
#: class.akismet-admin.php:712
#: class.akismet-admin.php:703
msgid "Comment was caught by %s."
msgstr "Kommentaren stoppades av %s."
#: class.akismet.php:804
#: class.akismet.php:802
msgid "Akismet is not configured. Please enter an API key."
msgstr "Akismet är inte konfigurerad. Ange en API-nyckel."
@ -247,11 +251,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:1330
#: class.akismet-admin.php:1332
msgid "Akismet could not recheck your comments for spam."
msgstr "Akismet kunde inte kontrollera dina kommentarer igen efter skräppost."
#: class.akismet-admin.php:523
#: class.akismet-admin.php:514
msgid "You don&#8217;t have permission to do that."
msgstr "Du har inte behörighet att göra det."
@ -267,28 +271,28 @@ msgstr "För närvarande kan statistik inte hämtas. Försök igen."
msgid "API key must be set to fetch stats."
msgstr "API-nyckeln måste vara inställd för att hämta statistik."
#: views/config.php:221
#: views/config.php:225
msgid "Do not display privacy notice."
msgstr "Visa inte integritetsmeddelandet."
#: views/config.php:213
#: views/config.php:217
msgid "Display a privacy notice under your comment forms."
msgstr "Visa ett integritetsmeddelande under dina kommentarsformulär."
#: views/config.php:207
#: views/config.php:211
msgid "Akismet privacy notice"
msgstr "Akismet integritetsmeddelande"
#: views/config.php:202
#: views/config.php:206
msgid "Privacy"
msgstr "Integritet"
#. translators: %s: Akismet privacy URL
#: class.akismet.php:1925
#: class.akismet.php:1917
msgid "This site uses Akismet to reduce spam. <a href=\"%s\" target=\"_blank\" rel=\"nofollow noopener\">Learn how your comment data is processed.</a>"
msgstr "Denna webbplats använder Akismet för att minska skräppost. <a href=\"%s\" target=\"_blank\" rel=\"nofollow noopener\">Lär dig om hur din kommentarsdata bearbetas</a>."
#: class.akismet-admin.php:106
#: class.akismet-admin.php:108
msgid "We collect information about visitors who comment on Sites that use our Akismet Anti-spam service. The information we collect depends on how the User sets up Akismet for the Site, but typically includes the commenter's IP address, user agent, referrer, and Site URL (along with other information directly provided by the commenter such as their name, username, email address, and the comment itself)."
msgstr "Vi samlar in information om besökare som kommenterar på webbplatser som använder vår tjänst Akismet Anti-spam. Informationen vi samlar in beror på hur användaren konfigurerar Akismet för webbplatsen, men brukar omfatta kommentatorns IP-adress, användaragent, hänvisande sida och webbplats-URL (tillsammans med annan information som tillhandahålls direkt av kommentatorn, såsom hens namn, användarnamn, e-postadress och själva kommentaren)."
@ -338,7 +342,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:284
#: class.akismet-admin.php:275
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."
@ -347,7 +351,7 @@ msgstr "På denna sida kan du uppdatera dina inställningar för Akismet och se
msgid "Used by millions, Akismet is quite possibly the best way in the world to <strong>protect your blog from spam</strong>. Akismet Anti-spam 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."
msgstr "Akismet används av miljontals personer och är kanske världens bästa sätt att <strong>skydda din blogg mot skräppost</strong>. Akismet Anti-spam skyddar din webbplats t.o.m. medan du sover. För att komma igång behöver du aktivera tillägget Akismet och sedan gå till inställningssidan för Akismet och konfigurera din API-nyckel."
#: class.akismet-admin.php:133 class.akismet-admin.php:135
#: class.akismet-admin.php:135 class.akismet-admin.php:137
msgid "Akismet Anti-spam"
msgstr "Akismet Anti-spam"
@ -390,37 +394,37 @@ msgstr "Detaljerad statistik"
msgid "Statistics"
msgstr "Statistik"
#: class.akismet-admin.php:1431
#: class.akismet-admin.php:1448
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:1429
#: class.akismet-admin.php:1446
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. "
#. translators: %s: Number of comments.
#: class.akismet-admin.php:1324
#: class.akismet-admin.php:1326
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:1321
#: class.akismet-admin.php:1323
msgid "No comments were caught as spam."
msgstr "Inga kommentarer bedömdes som skräppost."
#. translators: %s: Number of comments.
#: class.akismet-admin.php:1317
#: class.akismet-admin.php:1319
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:1314
#: class.akismet-admin.php:1316
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.php:810
#: class.akismet.php:808
msgid "Comment not found."
msgstr "Kommentaren kunde inte hittas."
@ -501,28 +505,28 @@ msgid "Please update your payment information."
msgstr "Uppdatera din betalningsinformation."
#. translators: %s: Number of minutes.
#: class.akismet-admin.php:1224
#: class.akismet-admin.php:1226
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!"
#. translators: %s: Number of hours.
#: class.akismet-admin.php:1221
#: class.akismet-admin.php:1223
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!"
#. translators: %s: Number of days.
#: class.akismet-admin.php:1218
#: class.akismet-admin.php:1220
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:233 class.akismet-admin.php:271
#: class.akismet-admin.php:283
#: class.akismet-admin.php:224 class.akismet-admin.php:262
#: class.akismet-admin.php:274
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."
@ -535,39 +539,39 @@ msgstr "Anslutningen till aksimet.com misslyckades. Se <a href=\"%s\" target=\"_
msgid "The API key you entered could not be verified."
msgstr "API-nyckeln du angav kunde inte verifieras."
#: views/config.php:117
#: views/config.php:121
msgid "All systems functional."
msgstr "Alla system funktionella."
#: views/config.php:116
#: views/config.php:120
msgid "Enabled."
msgstr "Aktiverat."
#: views/config.php:114
#: views/config.php:118
msgid "Akismet encountered a problem with a previous SSL request and disabled it temporarily. It will begin using SSL for requests again shortly."
msgstr "Akismet stötte på ett problem med tidigare SSL-förfrågan och inaktiverade stödet tillfälligt. SSL-förfrågningar kommer att upptas inom kort igen."
#: views/config.php:113
#: views/config.php:117
msgid "Temporarily disabled."
msgstr "Temporärt inaktiverat."
#: views/config.php:108
#: views/config.php:112
msgid "Your Web server cannot make SSL requests; contact your Web host and ask them to add support for SSL requests."
msgstr "Din webbserver kan inte göra SSL-förfrågningar: kontakta ditt webbhotell och be dem lägga till stöd för SSL-förfrågningar."
#: views/config.php:107
#: views/config.php:111
msgid "Disabled."
msgstr "Inaktiverat."
#: views/config.php:104
#: views/config.php:108
msgid "SSL status"
msgstr "SSL-status"
#: class.akismet-admin.php:729
#: class.akismet-admin.php:720
msgid "This comment was reported as not spam."
msgstr "Denna kommentar rapporterades som ”inte skräppost”."
#: class.akismet-admin.php:721
#: class.akismet-admin.php:712
msgid "This comment was reported as spam."
msgstr "Denna kommentar rapporterades som skräppost."
@ -661,63 +665,63 @@ msgstr "Några kommentarer har ännu inte kontrollerats för skräppost av Akism
msgid "Akismet has detected a problem."
msgstr "Akismet har upptäckt ett problem."
#: views/config.php:308
#: views/config.php:312
msgid "Change"
msgstr "Ändra"
#: views/config.php:308
#: views/config.php:312
msgid "Upgrade"
msgstr "Uppgradera"
#: views/config.php:289
#: views/config.php:293
msgid "Next billing date"
msgstr "Nästa faktureringsdatum"
#: views/config.php:282
#: views/config.php:286
msgid "Active"
msgstr "Aktiv"
#: views/config.php:280
#: views/config.php:284
msgid "No subscription found"
msgstr "Ingen prenumeration hittades"
#: views/config.php:278
#: views/config.php:282
msgid "Missing"
msgstr "Saknas"
#: views/config.php:276
#: views/config.php:280
msgid "Suspended"
msgstr "Avstängd"
#: views/config.php:274
#: views/config.php:278
msgid "Cancelled"
msgstr "Avslutad"
#: views/config.php:245
#: views/config.php:249
msgid "Save changes"
msgstr "Spara ändringar"
#: views/config.php:237
#: views/config.php:241
msgid "Disconnect this account"
msgstr "Koppla från detta konto"
#: views/config.php:176
#: views/config.php:180
msgid "Note:"
msgstr "Observera:"
#: views/config.php:169
#: views/config.php:173
msgid "Always put spam in the Spam folder for review."
msgstr "Placera alltid skräppost i skräppostmappen för granskning."
#: views/config.php:161
#: views/config.php:165
msgid "Silently discard the worst and most pervasive spam so I never see it."
msgstr "Förkasta tyst den mest genomgripande skräpposten så att jag slipper se den."
#: views/config.php:155
#: views/config.php:159
msgid "Akismet Anti-spam strictness"
msgstr "Akismet strikthet för antispam-åtgärder"
#: views/config.php:142
#: views/config.php:146
msgid "Show the number of approved comments beside each comment author."
msgstr "Visa antalet godkända kommentarer bredvid varje kommentarsförfattare."
@ -740,173 +744,173 @@ msgid "Past six months"
msgstr "Senaste sex månaderna"
#. translators: 1: WordPress documentation URL, 2: Akismet download URL.
#: class.akismet.php:1740
#: class.akismet.php:1732
msgid "Please <a href=\"%1$s\">upgrade WordPress</a> to a current version, or <a href=\"%2$s\">downgrade to version 2.4 of the Akismet plugin</a>."
msgstr "<a href=\"%1$s\">Uppgradera WordPress</a> till en aktuell version eller <a href=\"%2$s\">nedgradera till version 2.4 av tillägget Akismet</a>."
#. translators: 1: Current Akismet version number, 2: Minimum WordPress version
#. number required.
#: class.akismet.php:1738
#: class.akismet.php:1730
msgid "Akismet %1$s requires WordPress %2$s or higher."
msgstr "Akismet %1$s kräver WordPress %2$s eller senare"
#: class.akismet-admin.php:736
#: class.akismet-admin.php:727
msgid "Akismet cleared this comment during an automatic retry."
msgstr "Akismet godkände denna kommentar vid en automatisk förnyad körning."
#: class.akismet-admin.php:733
#: class.akismet-admin.php:724
msgid "Akismet caught this comment as spam during an automatic retry."
msgstr "Akismet flaggade denna kommentar som skräppost vid en automatisk körning."
#. translators: The placeholder is a username.
#: class.akismet-admin.php:727
#: class.akismet-admin.php:718
msgid "%s reported this comment as not spam."
msgstr "%s rapporterade denna kommentar som ”inte skräppost”."
#. translators: The placeholder is a username.
#: class.akismet-admin.php:719
#: class.akismet-admin.php:710
msgid "%s reported this comment as spam."
msgstr "%s rapporterade denna kommentar som skräppost."
#. translators: %1$s is a username; %2$s is a short string (like 'spam' or
#. 'approved') denoting the new comment status.
#: class.akismet-admin.php:784
#: class.akismet-admin.php:775
msgid "%1$s changed the comment status to %2$s."
msgstr "%1$s ändrade status för kommentaren till %2$s."
#. translators: The placeholder is an error response returned by the API
#. server.
#: class.akismet-admin.php:741
#: class.akismet-admin.php:732
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:706
#: class.akismet-admin.php:697
msgid "Akismet cleared this comment."
msgstr "Akismet godkände denna kommentar."
#. translators: The placeholder is a short string (like 'spam' or 'approved')
#. denoting the new comment status.
#: class.akismet-admin.php:778
#: class.akismet-admin.php:769
msgid "Comment status was changed to %s"
msgstr "Kommentarsstatus ändrades till %s"
#: class.akismet-admin.php:700
#: class.akismet-admin.php:691
msgid "Akismet caught this comment as spam."
msgstr "Akismet markerade denna kommentar som skräppost."
#. translators: The placeholder is the number of pieces of spam blocked by
#. Akismet.
#: class.akismet-widget.php:137
#: class.akismet-widget.php:135
msgid "<strong class=\"count\">%1$s spam</strong> blocked by <strong>Akismet</strong>"
msgid_plural "<strong class=\"count\">%1$s spam</strong> blocked by <strong>Akismet</strong>"
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-widget.php:101
#: class.akismet-widget.php:99
msgid "Title:"
msgstr "Rubrik:"
#: class.akismet-widget.php:96 class.akismet-widget.php:118
#: class.akismet-widget.php:94 class.akismet-widget.php:116
msgid "Spam Blocked"
msgstr "Skräppost blockerad"
#: class.akismet-widget.php:19
#: class.akismet-widget.php:17
msgid "Display the number of spam comments Akismet has caught"
msgstr "Visa antalet skräpkommentarer som Akismet har fångat"
#: class.akismet-widget.php:18
#: class.akismet-widget.php:16
msgid "Akismet Widget"
msgstr "Akismet-widget"
#: class.akismet-admin.php:1214
#: class.akismet-admin.php:1216
msgid "Cleaning up spam takes time."
msgstr "Att rensa upp skräppost tar tid."
#. translators: The Akismet configuration page URL.
#: class.akismet-admin.php:1097
#: class.akismet-admin.php:1088
msgid "Please check your <a href=\"%s\">Akismet configuration</a> and contact your web host if problems persist."
msgstr "Kontrollera din <a href=\"%s\">konfiguration av Akismet</a> och kontakta ditt webbhotell om problemen kvarstår."
#. translators: The placeholder is an amount of time, like "7 seconds" or "3
#. days" returned by the function human_time_diff().
#: class.akismet-admin.php:798
#: class.akismet-admin.php:789
msgid "%s ago"
msgstr "%s sedan"
#. translators: %s: Number of comments.
#: class.akismet-admin.php:673
#: class.akismet-admin.php:664
msgid "%s approved"
msgid_plural "%s approved"
msgstr[0] "%s godkänd"
msgstr[1] "%s godkända"
#: class.akismet-admin.php:647
#: class.akismet-admin.php:638
msgid "History"
msgstr "Historik"
#: class.akismet-admin.php:647 class.akismet-admin.php:655
#: class.akismet-admin.php:638 class.akismet-admin.php:646
msgid "View comment history"
msgstr "Visa kommentarshistorik"
#. translators: %s: Username.
#: class.akismet-admin.php:634
#: class.akismet-admin.php:625
msgid "Un-spammed by %s"
msgstr "Avmarkerat som skräppost av %s"
#. translators: %s: Username.
#: class.akismet-admin.php:631
#: class.akismet-admin.php:622
msgid "Flagged as spam by %s"
msgstr "Flaggat som skräppost av %s"
#: class.akismet-admin.php:625
#: class.akismet-admin.php:616
msgid "Cleared by Akismet"
msgstr "Godkänd av Akismet"
#: class.akismet-admin.php:623
#: class.akismet-admin.php:614
msgid "Flagged as spam by Akismet"
msgstr "Flaggat som skräppost av Akismet"
#: class.akismet-admin.php:619
#: class.akismet-admin.php:610
msgid "Awaiting spam check"
msgstr "Inväntar skräppostkontroll"
#. translators: The placeholder is an error response returned by the API
#. server.
#: class.akismet-admin.php:749
#: class.akismet-admin.php:740
msgid "Akismet was unable to recheck this comment (response: %s)."
msgstr "Akismet kunde inte kontrollera denna kommentar igen (svar: %s)."
#: class.akismet-admin.php:703
#: class.akismet-admin.php:694
msgid "Akismet re-checked and cleared this comment."
msgstr "Akismet kontrollerade denna kommentar igen och godkände den."
#: class.akismet-admin.php:697
#: class.akismet-admin.php:688
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:507
#: class.akismet-admin.php:498
msgid "Check for Spam"
msgstr "Kolla efter skräppost"
#. translators: %s: Comments page URL.
#: class.akismet-admin.php:449
#: class.akismet-admin.php:440
msgid "There&#8217;s nothing in your <a href='%s'>spam queue</a> at the moment."
msgstr "Din <a href='%s'>skräppost-kö</a> är för tillfället tom."
#. translators: 1: Number of comments, 2: Comments page URL.
#: class.akismet-admin.php:438
#: class.akismet-admin.php:429
msgid "There&#8217;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> i din skräppost-kö just nu."
msgstr[1] "Det finns <a href=\"%2$s\">%1$s kommentarer</a> i din skräppost-kö just nu."
#. translators: %s: Akismet website URL.
#: class.akismet-admin.php:430
#: class.akismet-admin.php:421
msgid "<a href=\"%s\">Akismet</a> blocks spam from getting to your blog. "
msgstr "<a href=\"%s\">Akismet</a> blockerar skräppost från att nå din blogg. "
#. translators: 1: Akismet website URL, 2: Number of spam comments.
#: class.akismet-admin.php:419
#: class.akismet-admin.php:410
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. "
@ -914,162 +918,162 @@ msgstr[1] "<a href=\"%1$s\">Akismet</a> har redan skyddat din webbplats från %2
#. translators: 1: Akismet website URL, 2: Comments page URL, 3: Number of spam
#. comments.
#: class.akismet-admin.php:402
#: class.akismet-admin.php:393
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:398
#: class.akismet-admin.php:389
msgctxt "comments"
msgid "Spam"
msgstr "Skräppost"
#: class.akismet-admin.php:325
#: class.akismet-admin.php:316
msgid "Cheatin&#8217; uh?"
msgstr "Fuskar du va?"
#: class.akismet-admin.php:319
#: class.akismet-admin.php:310
msgid "Akismet Support"
msgstr "Support för Akismet"
#: class.akismet-admin.php:318
#: class.akismet-admin.php:309
msgid "Akismet FAQ"
msgstr "Vanliga frågor för Akismet"
#: class.akismet-admin.php:317
#: class.akismet-admin.php:308
msgid "For more information:"
msgstr "För mer information:"
#: class.akismet-admin.php:308
#: class.akismet-admin.php:299
msgid "The subscription status - active, cancelled or suspended"
msgstr "Prenumerationsstatus aktiv, avslutad eller avstängd"
#: class.akismet-admin.php:308 views/config.php:270
#: class.akismet-admin.php:299 views/config.php:274
msgid "Status"
msgstr "Status"
#: class.akismet-admin.php:307
#: class.akismet-admin.php:298
msgid "The Akismet subscription plan"
msgstr "Akismets prenumerationspaket"
#: class.akismet-admin.php:307
#: class.akismet-admin.php:298
msgid "Subscription Type"
msgstr "Prenumerationstyp"
#: class.akismet-admin.php:304 views/config.php:256
#: class.akismet-admin.php:295 views/config.php:260
msgid "Account"
msgstr "Konto"
#: class.akismet-admin.php:296
#: class.akismet-admin.php:287
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."
#: class.akismet-admin.php:296
#: class.akismet-admin.php:287
msgid "Strictness"
msgstr "Strikthet"
#: class.akismet-admin.php:295
#: class.akismet-admin.php:286
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:295 views/config.php:127
#: class.akismet-admin.php:286 views/config.php:131
msgid "Comments"
msgstr "Kommentarer"
#: class.akismet-admin.php:294
#: class.akismet-admin.php:285
msgid "Enter/remove an API key."
msgstr "Ange/ta bort en API-nyckel."
#: class.akismet-admin.php:294
#: class.akismet-admin.php:285
msgid "API Key"
msgstr "API-nyckel"
#: class.akismet-admin.php:282 class.akismet-admin.php:293
#: class.akismet-admin.php:306
#: class.akismet-admin.php:273 class.akismet-admin.php:284
#: class.akismet-admin.php:297
msgid "Akismet Configuration"
msgstr "Konfigurera Akismet"
#: class.akismet-admin.php:272
#: class.akismet-admin.php:263
msgid "On this page, you are able to view stats on spam filtered on your site."
msgstr "På denna sida kan du se statistik över filtreringen av skräppost på din webbplats."
#: class.akismet-admin.php:270
#: class.akismet-admin.php:261
msgid "Akismet Stats"
msgstr "Statistik för Akismet"
#: class.akismet-admin.php:259
#: class.akismet-admin.php:250
msgid "Click the Use this Key button."
msgstr "Klicka på knappen ”Använd denna nyckel”."
#: class.akismet-admin.php:258
#: class.akismet-admin.php:249
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:256
#: class.akismet-admin.php:247
msgid "If you already have an API key"
msgstr "Om du redan har en API-nyckel"
#: class.akismet-admin.php:253
#: class.akismet-admin.php:244
msgid "Enter an API Key"
msgstr "Ange en API-nyckel"
#. translators: %s: a link to the signup page with the text 'Akismet.com'.
#: class.akismet-admin.php:246
#: class.akismet-admin.php:237
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:244
#: class.akismet-admin.php:235
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:241
#: class.akismet-admin.php:232
msgid "New to Akismet"
msgstr "Ny på Akismet"
#: class.akismet-admin.php:234
#: class.akismet-admin.php:225
msgid "On this page, you are able to set up the Akismet plugin."
msgstr "På denna sida kan du konfigurera tillägget Akismet."
#: class.akismet-admin.php:232 class.akismet-admin.php:243
#: class.akismet-admin.php:255
#: class.akismet-admin.php:223 class.akismet-admin.php:234
#: class.akismet-admin.php:246
msgid "Akismet Setup"
msgstr "Konfiguration för Akismet"
#: class.akismet-admin.php:230 class.akismet-admin.php:268
#: class.akismet-admin.php:280
#: class.akismet-admin.php:221 class.akismet-admin.php:259
#: class.akismet-admin.php:271
msgid "Overview"
msgstr "Översikt"
#: class.akismet-admin.php:199
#: class.akismet-admin.php:190
msgid "Re-adding..."
msgstr "Lägger till igen …"
#: class.akismet-admin.php:198
#: class.akismet-admin.php:189
msgid "(undo)"
msgstr "(ångra)"
#: class.akismet-admin.php:197
#: class.akismet-admin.php:188
msgid "URL removed"
msgstr "URL borttagen"
#: class.akismet-admin.php:196
#: class.akismet-admin.php:187
msgid "Removing..."
msgstr "Tar bort …"
#: class.akismet-admin.php:195
#: class.akismet-admin.php:186
msgid "Remove this URL"
msgstr "Ta bort denna URL"
#: class.akismet-admin.php:105 class.akismet-admin.php:1446
#: class.akismet-admin.php:107 class.akismet-admin.php:1463
msgid "Akismet"
msgstr "Akismet"
#: class.akismet-admin.php:126 class.akismet-admin.php:291
#: class.akismet-admin.php:825 views/config.php:79
#: class.akismet-admin.php:128 class.akismet-admin.php:282
#: class.akismet-admin.php:816 views/config.php:83
msgid "Settings"
msgstr "Inställningar"
#: class.akismet-admin.php:101
#: class.akismet-admin.php:103
msgid "Comment History"
msgstr "Kommentarshistorik"
msgstr "Kommentarshistorik"

View File

@ -1 +1 @@
{"translation-revision-date":"2025-04-21 15:46:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Copy link":["Kopiera l\u00e4nk"],"Copied!":["Kopierad!"]}},"comment":{"reference":"jetpack_vendor\/automattic\/jetpack-post-list\/build\/index.js"}}
{"translation-revision-date":"2025-06-05 13:54:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Copy link":["Kopiera l\u00e4nk"],"Copied!":["Kopierad!"]}},"comment":{"reference":"jetpack_vendor\/automattic\/jetpack-post-list\/build\/index.js"}}

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
{"translation-revision-date":"2025-04-21 15:46:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Go to slide %s":["G\u00e5 till bild %s"]}},"comment":{"reference":"_inc\/blocks\/slideshow\/view.js"}}
{"translation-revision-date":"2025-06-05 13:54:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Go to slide %s":["G\u00e5 till bild %s"]}},"comment":{"reference":"_inc\/blocks\/slideshow\/view.js"}}

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
{"translation-revision-date":"2025-04-21 15:46:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Skip Forward":["Hoppa fram\u00e5t"],"Jump Back":["Hoppa bak\u00e5t"],"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 \u2013 \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":"2025-06-05 13:54:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Skip Forward":["Hoppa fram\u00e5t"],"Jump Back":["Hoppa bak\u00e5t"],"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 \u2013 \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"}}

View File

@ -1 +1 @@
{"translation-revision-date":"2025-04-21 15:46:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Arrow right":["Pil h\u00f6ger"],"Arrow left":["Pil v\u00e4nster"],"Close.":["St\u00e4ng."],"Enable WordAds":["Aktivera WordAds"],"Earn income by allowing Jetpack to display high quality ads.":["Tj\u00e4na pengar genom att till\u00e5ta att Jetpack visar annonser av h\u00f6g kvalitet."],"WordAds":["WordAds"],"Magnifying Glass":["F\u00f6rstoringsglas"],"Error fetching settings\u2026":["Det gick inte att h\u00e4mta inst\u00e4llningar \u2026"],"Error Update settings\u2026":["Det gick inte att uppdatera inst\u00e4llningar \u2026"],"Jetpack Logo":["Jetpack-logga"],"Upgrade your plan to upload audio":["Uppgradera ditt paket f\u00f6r att ladda upp ljud"],"Upgrade your plan to use video covers":["Uppgradera ditt paket f\u00f6r att anv\u00e4nda videocovers"],"Has a video.":["Har en video."],"Tag":["Etikett"],"Post":["Publicera"],"Page":["Sida"],"Has an image.":["Har en bild."],"Has multiple images.":["Har flera bilder."],"Toggle search filters.":["Aktivera s\u00f6kfilter."],"Matching comment.":["Matchande kommentar."],"Show filters":["Visa filter"],"Is a product.":["\u00c4r en produkt."],"Is an event.":["\u00c4r en h\u00e4ndelse."],"Has audio.":["Har ljud."],"Link to learn more about Jetpack.\u0004About":["Om"],"(opens in a new tab)":["(\u00f6ppnas i en ny flik)"],"About Jetpack":["Om Jetpack"],"There was an error testing Jetpack. Error: %s":["Det var ett fel n\u00e4r Jetpack testades. Fel: %s"],"Help":["Hj\u00e4lp"],"An Automattic Airline":["Fr\u00e5n Automattic, naturligtvis"],"Updating settings\u2026":["Uppdaterar inst\u00e4llningar \u2026"],"Updated settings.":["Uppdaterade inst\u00e4llningar."],"WordPress.com Terms of Service":["WordPress.com anv\u00e4ndarvillkor"],"Shorthand for Terms of Service.\u0004Terms":["Villkor"],"Automattic's Privacy Policy":["Automattics sekretesspolicy"],"Shorthand for Privacy Policy.\u0004Privacy":["Integritet"],"Information.":["Information."],"Category":["Kategori"],"Jetpack":["Jetpack"]}},"comment":{"reference":"jetpack_vendor\/automattic\/jetpack-wordads\/build\/dashboard\/jp-wordads-dashboard.js"}}
{"translation-revision-date":"2025-06-05 13:54:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Arrow right":["Pil h\u00f6ger"],"Arrow left":["Pil v\u00e4nster"],"Close.":["St\u00e4ng."],"Enable WordAds":["Aktivera WordAds"],"Earn income by allowing Jetpack to display high quality ads.":["Tj\u00e4na pengar genom att till\u00e5ta att Jetpack visar annonser av h\u00f6g kvalitet."],"WordAds":["WordAds"],"Magnifying Glass":["F\u00f6rstoringsglas"],"Error fetching settings\u2026":["Det gick inte att h\u00e4mta inst\u00e4llningar \u2026"],"Error Update settings\u2026":["Det gick inte att uppdatera inst\u00e4llningar \u2026"],"Jetpack Logo":["Jetpack-logga"],"Upgrade your plan to upload audio":["Uppgradera ditt paket f\u00f6r att ladda upp ljud"],"Upgrade your plan to use video covers":["Uppgradera ditt paket f\u00f6r att anv\u00e4nda videocovers"],"Has a video.":["Har en video."],"Tag":["Etikett"],"Post":["Publicera"],"Page":["Sida"],"Has an image.":["Har en bild."],"Has multiple images.":["Har flera bilder."],"Toggle search filters.":["Aktivera s\u00f6kfilter."],"Matching comment.":["Matchande kommentar."],"Show filters":["Visa filter"],"Is a product.":["\u00c4r en produkt."],"Is an event.":["\u00c4r en h\u00e4ndelse."],"Has audio.":["Har ljud."],"Link to learn more about Jetpack.\u0004About":["Om"],"(opens in a new tab)":["(\u00f6ppnas i en ny flik)"],"About Jetpack":["Om Jetpack"],"There was an error testing Jetpack. Error: %s":["Det var ett fel n\u00e4r Jetpack testades. Fel: %s"],"Help":["Hj\u00e4lp"],"An Automattic Airline":["Fr\u00e5n Automattic, naturligtvis"],"Updating settings\u2026":["Uppdaterar inst\u00e4llningar \u2026"],"Updated settings.":["Uppdaterade inst\u00e4llningar."],"WordPress.com Terms of Service":["WordPress.com anv\u00e4ndarvillkor"],"Shorthand for Terms of Service.\u0004Terms":["Villkor"],"Automattic's Privacy Policy":["Automattics sekretesspolicy"],"Shorthand for Privacy Policy.\u0004Privacy":["Integritet"],"Information.":["Information."],"Category":["Kategori"],"Jetpack":["Jetpack"]}},"comment":{"reference":"jetpack_vendor\/automattic\/jetpack-wordads\/build\/dashboard\/jp-wordads-dashboard.js"}}

View File

@ -1 +1 @@
{"translation-revision-date":"2025-04-21 15:46:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Jetpack Search has encountered an error. Please contact the site administrator if the issue persists. [%s]":["Jetpack Search har st\u00f6tt p\u00e5 ett fel. Kontakta webbplatsadministrat\u00f6ren om problemet kvarst\u00e5r. [%s]"],"Jetpack Search is currently unavailable. Please try again later. [%s]":["Jetpack Search \u00e4r f\u00f6r n\u00e4rvarande inte tillg\u00e4ngligt. F\u00f6rs\u00f6k igen senare. [%s]"],"Magnifying Glass":["F\u00f6rstoringsglas"],"Matches content":["Matchar inneh\u00e5ll"],"Matches comments":["Matchar kommentarer"],"Loading\u2026":["Laddar in \u2026"],"Found %s result":["Hittade %s resultat","Hittade %s resultat"],"Found %1$s result in %2$s":["Hittade %1$s resultat i %2$s","Hittade %1$s resultat i %2$s"],"Filter options":["Filtreringsalternativ"],"Does not have an image":["Har ingen bild"],"%d review":["%d recension","%d recensioner"],"clear":["rensa"],"Sort:":["Sortera:"],"Show search filters":["Visa s\u00f6kfilter"],"Average rating of %1$d out of 5 from %2$d review.":["Genomsnittlig skattning p\u00e5 %1$d av 5 fr\u00e5n %2$d recension.","Genomsnittlig skattning p\u00e5 %1$d av 5 fr\u00e5n %2$d recensioner."],"No title":["Ingen rubrik"],"Showing popular results":["Visar popul\u00e4ra resultat"],"Loading popular results\u2026":["Laddar in popul\u00e4ra resultat \u2026"],"Close search results":["St\u00e4ng s\u00f6kresultat"],"It looks like you're offline. Please reconnect to load the latest results.":["Det verkar som du \u00e4r offline. Anslut igen f\u00f6r att l\u00e4sa in de senaste resultaten."],"No results for \"%s\"":["Inga resultat f\u00f6r \u201d%s\u201d"],"Found %1$s result for \"%2$s\"":["Hittade %1$s resultat f\u00f6r \u201d%2$s\u201d","Hittade %1$s resultat f\u00f6r \u201d%2$s\u201d"],"Searching\u2026":["S\u00f6ker \u2026"],"Clear filters":["Rensa filter"],"Hide filters":["D\u00f6lj filter"],"Filters":["Filter"],"Search\u2026":["S\u00f6k \u2026"],"Search powered by Jetpack":["S\u00f6kning drivs med Jetpack"],"Load more":["Ladda fler"],"Has a video.":["Har en video."],"Tag":["Etikett"],"Post":["Publicera"],"Page":["Sida"],"Has an image.":["Har en bild."],"Has multiple images.":["Har flera bilder."],"Toggle search filters.":["Aktivera s\u00f6kfilter."],"Matching comment.":["Matchande kommentar."],"Show filters":["Visa filter"],"Is a product.":["\u00c4r en produkt."],"Is an event.":["\u00c4r en h\u00e4ndelse."],"Has audio.":["Har ljud."],"No results found":["Inga resultat hittades"],"Image":["Bild"],"Category":["Kategori"],"Search results":["S\u00f6kresultat"],"Sort by:":["Sortera efter:"],"Search":["S\u00f6k"]}},"comment":{"reference":"jetpack_vendor\/automattic\/jetpack-search\/build\/instant-search\/jp-search.chunk-main-payload.js"}}
{"translation-revision-date":"2025-06-05 13:54:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Jetpack Search has encountered an error. Please contact the site administrator if the issue persists. [%s]":["Jetpack Search har st\u00f6tt p\u00e5 ett fel. Kontakta webbplatsadministrat\u00f6ren om problemet kvarst\u00e5r. [%s]"],"Jetpack Search is currently unavailable. Please try again later. [%s]":["Jetpack Search \u00e4r f\u00f6r n\u00e4rvarande inte tillg\u00e4ngligt. F\u00f6rs\u00f6k igen senare. [%s]"],"Magnifying Glass":["F\u00f6rstoringsglas"],"Matches content":["Matchar inneh\u00e5ll"],"Matches comments":["Matchar kommentarer"],"Loading\u2026":["Laddar in \u2026"],"Found %s result":["Hittade %s resultat","Hittade %s resultat"],"Found %1$s result in %2$s":["Hittade %1$s resultat i %2$s","Hittade %1$s resultat i %2$s"],"Filter options":["Filtreringsalternativ"],"Does not have an image":["Har ingen bild"],"%d review":["%d recension","%d recensioner"],"clear":["rensa"],"Sort:":["Sortera:"],"Show search filters":["Visa s\u00f6kfilter"],"Average rating of %1$d out of 5 from %2$d review.":["Genomsnittlig skattning p\u00e5 %1$d av 5 fr\u00e5n %2$d recension.","Genomsnittlig skattning p\u00e5 %1$d av 5 fr\u00e5n %2$d recensioner."],"No title":["Ingen rubrik"],"Showing popular results":["Visar popul\u00e4ra resultat"],"Loading popular results\u2026":["Laddar in popul\u00e4ra resultat \u2026"],"Close search results":["St\u00e4ng s\u00f6kresultat"],"It looks like you're offline. Please reconnect to load the latest results.":["Det verkar som du \u00e4r offline. Anslut igen f\u00f6r att l\u00e4sa in de senaste resultaten."],"No results for \"%s\"":["Inga resultat f\u00f6r \u201d%s\u201d"],"Found %1$s result for \"%2$s\"":["Hittade %1$s resultat f\u00f6r \u201d%2$s\u201d","Hittade %1$s resultat f\u00f6r \u201d%2$s\u201d"],"Searching\u2026":["S\u00f6ker \u2026"],"Clear filters":["Rensa filter"],"Hide filters":["D\u00f6lj filter"],"Filters":["Filter"],"Search\u2026":["S\u00f6k \u2026"],"Search powered by Jetpack":["S\u00f6kning drivs med Jetpack"],"Load more":["Ladda fler"],"Has a video.":["Har en video."],"Tag":["Etikett"],"Post":["Publicera"],"Page":["Sida"],"Has an image.":["Har en bild."],"Has multiple images.":["Har flera bilder."],"Toggle search filters.":["Aktivera s\u00f6kfilter."],"Matching comment.":["Matchande kommentar."],"Show filters":["Visa filter"],"Is a product.":["\u00c4r en produkt."],"Is an event.":["\u00c4r en h\u00e4ndelse."],"Has audio.":["Har ljud."],"No results found":["Inga resultat hittades"],"Image":["Bild"],"Category":["Kategori"],"Search results":["S\u00f6kresultat"],"Sort by:":["Sortera efter:"],"Search":["S\u00f6k"]}},"comment":{"reference":"jetpack_vendor\/automattic\/jetpack-search\/build\/instant-search\/jp-search.chunk-main-payload.js"}}

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

View File

@ -0,0 +1 @@
{"translation-revision-date":"2025-06-05 13:54:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Warning.":["Varning."]}},"comment":{"reference":"jetpack_vendor\/automattic\/jetpack-forms\/dist\/modules\/file-field\/view.js"}}

View File

@ -1 +1 @@
{"translation-revision-date":"2025-04-21 15:46:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Button tooltip text\u0004mute":["st\u00e4ng av ljudet"],"Button tooltip text\u0004unmute":["s\u00e4tt p\u00e5 ljudet"],"Button tooltip text\u0004play":["spela"],"Button tooltip text\u0004pause":["paus"],"Press escape to exit.":["Tryck p\u00e5 Esc f\u00f6r att avsluta."],"Press space to play.":["Tryck p\u00e5 mellanslagstangenten f\u00f6r att spela upp."],"Press space to pause.":["Tryck p\u00e5 mellanslagstangenten f\u00f6r att pausa."],"You are currently playing a story.":["Du spelar f\u00f6r n\u00e4rvarande upp en ber\u00e4ttelse."],"Play story":["Spela upp ber\u00e4ttelse"],"Slide %d, currently selected":["Bild %d, vald f\u00f6r n\u00e4rvarande"],"Upgrade your plan to upload audio":["Uppgradera ditt paket f\u00f6r att ladda upp ljud"],"Upgrade your plan to use video covers":["Uppgradera ditt paket f\u00f6r att anv\u00e4nda videocovers"],"Exit Fullscreen":["Avsluta fullsk\u00e4rmsl\u00e4ge"],"Go to slide %d":["G\u00e5 till bild %d"],"Previous Slide":["N\u00e4sta bild"],"Next Slide":["N\u00e4sta bild"],"Site icon":["Webbplatsikon"]}},"comment":{"reference":"_inc\/blocks\/story\/view.js"}}
{"translation-revision-date":"2025-06-05 13:54:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Button tooltip text\u0004mute":["st\u00e4ng av ljudet"],"Button tooltip text\u0004unmute":["s\u00e4tt p\u00e5 ljudet"],"Button tooltip text\u0004play":["spela"],"Button tooltip text\u0004pause":["paus"],"Press escape to exit.":["Tryck p\u00e5 Esc f\u00f6r att avsluta."],"Press space to play.":["Tryck p\u00e5 mellanslagstangenten f\u00f6r att spela upp."],"Press space to pause.":["Tryck p\u00e5 mellanslagstangenten f\u00f6r att pausa."],"You are currently playing a story.":["Du spelar f\u00f6r n\u00e4rvarande upp en ber\u00e4ttelse."],"Play story":["Spela upp ber\u00e4ttelse"],"Slide %d, currently selected":["Bild %d, vald f\u00f6r n\u00e4rvarande"],"Upgrade your plan to upload audio":["Uppgradera ditt paket f\u00f6r att ladda upp ljud"],"Upgrade your plan to use video covers":["Uppgradera ditt paket f\u00f6r att anv\u00e4nda videocovers"],"Exit Fullscreen":["Avsluta fullsk\u00e4rmsl\u00e4ge"],"Go to slide %d":["G\u00e5 till bild %d"],"Previous Slide":["N\u00e4sta bild"],"Next Slide":["N\u00e4sta bild"],"Site icon":["Webbplatsikon"]}},"comment":{"reference":"_inc\/blocks\/story\/view.js"}}

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

View File

@ -1 +1 @@
{"translation-revision-date":"2025-04-21 15:46:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Whoops! There was an error and we couldn't process your subscription. Please reload the page and try again.":["Hoppsan! Det var ett fel och vi kunde inte bearbeta din prenumeration. Ladda om sidan och f\u00f6rs\u00f6k igen."],"Success! You're on the list.":["Klart! Du \u00e4r med p\u00e5 listan."],"Processing\u2026":["Bearbetar \u2026"],"By clicking submit, you agree to share your email address with the site owner and Mailchimp to receive marketing, updates, and other emails from the site owner. Use the unsubscribe link in those emails to opt out at any time.":["Genom att klicka p\u00e5 skicka in s\u00e5 g\u00e5r du med p\u00e5 att dela din e-postadress med webbplatsens \u00e4gare och Mailchimp f\u00f6r att ta emot marknadsf\u00f6ring, uppdateringar och andra e-postmeddelanden fr\u00e5n webbplatsens \u00e4gare. Du kan n\u00e4r som helst anv\u00e4nda l\u00e4nken i e-postmeddelandena f\u00f6r att s\u00e4ga upp prenumerationen."],"Enter your email":["Ange din e-post"]}},"comment":{"reference":"_inc\/blocks\/mailchimp\/view.js"}}
{"translation-revision-date":"2025-06-05 13:54:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Whoops! There was an error and we couldn't process your subscription. Please reload the page and try again.":["Hoppsan! Det var ett fel och vi kunde inte bearbeta din prenumeration. Ladda om sidan och f\u00f6rs\u00f6k igen."],"Success! You're on the list.":["Klart! Du \u00e4r med p\u00e5 listan."],"Processing\u2026":["Bearbetar \u2026"],"By clicking submit, you agree to share your email address with the site owner and Mailchimp to receive marketing, updates, and other emails from the site owner. Use the unsubscribe link in those emails to opt out at any time.":["Genom att klicka p\u00e5 skicka in s\u00e5 g\u00e5r du med p\u00e5 att dela din e-postadress med webbplatsens \u00e4gare och Mailchimp f\u00f6r att ta emot marknadsf\u00f6ring, uppdateringar och andra e-postmeddelanden fr\u00e5n webbplatsens \u00e4gare. Du kan n\u00e4r som helst anv\u00e4nda l\u00e4nken i e-postmeddelandena f\u00f6r att s\u00e4ga upp prenumerationen."],"Enter your email":["Ange din e-post"]}},"comment":{"reference":"_inc\/blocks\/mailchimp\/view.js"}}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
{"translation-revision-date":"2025-04-21 15:46:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Ask a question about this site":["St\u00e4ll en fr\u00e5ga om denna webbplats"],"There was an error while generating the answer. Please try again later.":["Det uppstod ett fel n\u00e4r svaret skulle genereras. F\u00f6rs\u00f6k igen senare."],"What didn't you like about it? How could it be improved?":["Vad tyckte du inte om med den? Hur kan vi f\u00f6rb\u00e4ttra den?"],"What did you like about it?":["Vad tyckte du om med den?"],"Thumbs down":["Tumme ner"],"Thumbs up":["Tumme upp"],"Was this helpful?":["Var detta anv\u00e4ndbart?"],"Thanks for your feedback!":["Tack f\u00f6r din feedback!"],"Copy to clipboard.\u0004Copy Response":["Kopiera svar"],"Copied to clipboard\u0004Copied!":["Kopierad!"],"Copy Response":["Kopiera svar"],"Additional resources:":["Ytterligare resurser:"],"Ask":["Fr\u00e5ga"],"\ud83e\udd14 Thinking, thinking, will be back with an answer soon":["\ud83e\udd14 T\u00e4nker, t\u00e4nker, \u00e5terkommer med ett svar snart"],"Let me work out the answer to that, back soon!":["L\u00e5t mig t\u00e4nka ut svaret p\u00e5 det, \u00e5terkommer snart."],"Good question, give me a moment to think about that \ud83e\udd14":["Bra fr\u00e5ga, ge mig ett \u00f6gonblick att fundera p\u00e5 det \ud83e\udd14"],"Submit":["Skicka"]}},"comment":{"reference":"_inc\/blocks\/ai-chat\/view.js"}}
{"translation-revision-date":"2025-06-05 13:54:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Ask a question about this site":["St\u00e4ll en fr\u00e5ga om denna webbplats"],"There was an error while generating the answer. Please try again later.":["Det uppstod ett fel n\u00e4r svaret skulle genereras. F\u00f6rs\u00f6k igen senare."],"What didn't you like about it? How could it be improved?":["Vad tyckte du inte om med den? Hur kan vi f\u00f6rb\u00e4ttra den?"],"What did you like about it?":["Vad tyckte du om med den?"],"Thumbs down":["Tumme ner"],"Thumbs up":["Tumme upp"],"Was this helpful?":["Var detta anv\u00e4ndbart?"],"Thanks for your feedback!":["Tack f\u00f6r din feedback!"],"Copy to clipboard.\u0004Copy Response":["Kopiera svar"],"Copied to clipboard\u0004Copied!":["Kopierad!"],"Copy Response":["Kopiera svar"],"Additional resources:":["Ytterligare resurser:"],"Ask":["Fr\u00e5ga"],"\ud83e\udd14 Thinking, thinking, will be back with an answer soon":["\ud83e\udd14 T\u00e4nker, t\u00e4nker, \u00e5terkommer med ett svar snart"],"Let me work out the answer to that, back soon!":["L\u00e5t mig t\u00e4nka ut svaret p\u00e5 det, \u00e5terkommer snart."],"Good question, give me a moment to think about that \ud83e\udd14":["Bra fr\u00e5ga, ge mig ett \u00f6gonblick att fundera p\u00e5 det \ud83e\udd14"],"Submit":["Skicka"]}},"comment":{"reference":"_inc\/blocks\/ai-chat\/view.js"}}

View File

@ -1 +1 @@
{"translation-revision-date":"2025-04-21 15:46:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"VideoPress Video Block":["VideoPress-videoblock"],"Attempt VideoPress Block Recovery":["F\u00f6rs\u00f6k med VideoPress-block\u00e5terst\u00e4llning"],"This block contains unexpected or invalid content, and it seems to be a <moreAboutVideoPressLink>VideoPress video block<\/moreAboutVideoPressLink> instance.":["Det h\u00e4r blocket inneh\u00e5ller ov\u00e4ntat eller ogiltigt inneh\u00e5ll, och det verkar vara en <moreAboutVideoPressLink>VideoPress-videoblock<\/moreAboutVideoPressLink>-instans."],"Skip":["Hoppa \u00f6ver"]}},"comment":{"reference":"jetpack_vendor\/automattic\/jetpack-videopress\/build\/block-editor\/index.js"}}
{"translation-revision-date":"2025-06-05 13:54:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"VideoPress Video Block":["VideoPress-videoblock"],"Attempt VideoPress Block Recovery":["F\u00f6rs\u00f6k med VideoPress-block\u00e5terst\u00e4llning"],"This block contains unexpected or invalid content, and it seems to be a <moreAboutVideoPressLink>VideoPress video block<\/moreAboutVideoPressLink> instance.":["Det h\u00e4r blocket inneh\u00e5ller ov\u00e4ntat eller ogiltigt inneh\u00e5ll, och det verkar vara en <moreAboutVideoPressLink>VideoPress-videoblock<\/moreAboutVideoPressLink>-instans."],"Skip":["Hoppa \u00f6ver"]}},"comment":{"reference":"jetpack_vendor\/automattic\/jetpack-videopress\/build\/block-editor\/index.js"}}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{"translation-revision-date":"2025-06-05 13:54:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"No data available":["Inga data tillg\u00e4ngliga"],"Paid: %s":["Betalande: %s"],"All: %s":["Alla: %s"],"Newsletter settings":["Nyhetsbrevsinst\u00e4llningar"],"Manage subscribers":["Hantera prenumeranter"],"View subscriber stats":["Visa prenumerantstatistik"],"Publish your next post":["Publicera ditt n\u00e4sta inl\u00e4gg"],"Quick Links":["Snabbl\u00e4nkar"],"Effortlessly turn posts into emails with our Newsletter feature. Expand your reach, engage readers, and monetize your writing. No coding required. <link>Learn more<\/link>":["F\u00f6rvandla enkelt dina inl\u00e4gg till e-postmeddelanden med v\u00e5r kraftfulla nyhetsbrevsfunktion. Ut\u00f6ka din r\u00e4ckvidd, engagera dina l\u00e4sare och tj\u00e4na pengar p\u00e5 ditt skrivande. Ingen kodning kr\u00e4vs. <link>L\u00e4s mer<\/link>"],"Total Subscribers":["Totalt antal prenumeranter"],"%1$s subscriber (%2$s via email)":["%1$s prenumerant (%2$s via e-post)","%1$s prenumeranter (%2$s via e-post)"],"Import subscribers":["Importera prenumeranter"],"Monetize":["Tj\u00e4na pengar"],"%s paid subscriber":["%s betalprenumerant","%s betalprenumeranter"],"Upgrade your plan to upload audio":["Uppgradera ditt paket f\u00f6r att ladda upp ljud"],"Upgrade your plan to use video covers":["Uppgradera ditt paket f\u00f6r att anv\u00e4nda videocovers"],"Paid":["Betald"],"All":["Alla"]}},"comment":{"reference":"_inc\/build\/newsletter-widget.js"}}

View File

@ -1 +1 @@
{"translation-revision-date":"2025-04-21 15:46:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Hello world!":["Hej v\u00e4rlden!"]}},"comment":{"reference":"jetpack_vendor\/automattic\/jetpack-subscribers-dashboard\/build\/index.js"}}
{"translation-revision-date":"2025-06-05 13:54:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Hello world!":["Hej v\u00e4rlden!"]}},"comment":{"reference":"jetpack_vendor\/automattic\/jetpack-subscribers-dashboard\/build\/index.js"}}

View File

@ -1 +1 @@
{"translation-revision-date":"2025-04-21 15:46:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Jetpack is currently powering features on your site. Once you deactivate Jetpack, these features will no longer be available.":["Jetpack driver f\u00f6r tillf\u00e4llet funktioner p\u00e5 din webbplats. Om du inaktiverar Jetpack kommer dessa funktioner inte l\u00e4ngre att vara tillg\u00e4ngliga."],"Grow your traffic with automated social <ExternalLink>publishing and sharing<\/ExternalLink>":["\u00d6ka din trafik med automatiserad <ExternalLink>publicering och delning<\/ExternalLink> p\u00e5 sociala medier"],"Block <ExternalLink>brute force attacks<\/ExternalLink> and get immediate notifications if your site is down":["Blockera <ExternalLink>brute force-attacker<\/ExternalLink> och bli meddelad omedelbart om din webbplats ligger nere"],"Speed up your site and provide mobile-ready images with <ExternalLink>our CDN<\/ExternalLink>":["G\u00f6r din webbplats snabbare och tillhandah\u00e5ll bilder som \u00e4r mobilredo med <ExternalLink>v\u00e5rt CDN<\/ExternalLink>"],"Jetpack encountered an error and was unable to display the Dashboard. Please try refreshing the page.":["Jetpack st\u00f6tte p\u00e5 ett fel och kunde inte visa adminpanelen. Prova att uppdatera sidan."],"There seems to be a problem with your website.":["Det verkar finnas ett problem med din webbplats."],"There seems to be a problem with your connection to WordPress.com. If the problem persists, try reconnecting.":["Det verkar vara ett problem med din anslutning till WordPress.com. Om problemet kvarst\u00e5r, prova att ansluta igen."],"Are you sure you want to deactivate?":["\u00c4r du s\u00e4ker p\u00e5 att du vill inaktivera?"],"Jetpack has many powerful tools that can help you achieve your goals":["Jetpack har flera kraftfulla verktyg som kan hj\u00e4lpa dig att uppn\u00e5 dina m\u00e5l"],"Jetpack is currently powering features on your site. Once you disconnect Jetpack, these features will no longer be available and your site may no longer function the same way.":["Jetpack driver f\u00f6r tillf\u00e4llet funktioner p\u00e5 din webbplats. N\u00e4r du kopplar fr\u00e5n Jetpack, kommer de h\u00e4r funktionerna inte l\u00e4ngre att vara tillg\u00e4ngliga och din webbplats kanske inte l\u00e4ngre fungerar p\u00e5 samma s\u00e4tt."],"Deactivate Jetpack":["Inaktivera Jetpack"]}},"comment":{"reference":"_inc\/build\/plugins-page.js"}}
{"translation-revision-date":"2025-06-05 13:54:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Jetpack is currently powering features on your site. Once you deactivate Jetpack, these features will no longer be available.":["Jetpack driver f\u00f6r tillf\u00e4llet funktioner p\u00e5 din webbplats. Om du inaktiverar Jetpack kommer dessa funktioner inte l\u00e4ngre att vara tillg\u00e4ngliga."],"Grow your traffic with automated social <ExternalLink>publishing and sharing<\/ExternalLink>":["\u00d6ka din trafik med automatiserad <ExternalLink>publicering och delning<\/ExternalLink> p\u00e5 sociala medier"],"Block <ExternalLink>brute force attacks<\/ExternalLink> and get immediate notifications if your site is down":["Blockera <ExternalLink>brute force-attacker<\/ExternalLink> och bli meddelad omedelbart om din webbplats ligger nere"],"Speed up your site and provide mobile-ready images with <ExternalLink>our CDN<\/ExternalLink>":["G\u00f6r din webbplats snabbare och tillhandah\u00e5ll bilder som \u00e4r mobilredo med <ExternalLink>v\u00e5rt CDN<\/ExternalLink>"],"Jetpack encountered an error and was unable to display the Dashboard. Please try refreshing the page.":["Jetpack st\u00f6tte p\u00e5 ett fel och kunde inte visa adminpanelen. Prova att uppdatera sidan."],"There seems to be a problem with your website.":["Det verkar finnas ett problem med din webbplats."],"There seems to be a problem with your connection to WordPress.com. If the problem persists, try reconnecting.":["Det verkar vara ett problem med din anslutning till WordPress.com. Om problemet kvarst\u00e5r, prova att ansluta igen."],"Are you sure you want to deactivate?":["\u00c4r du s\u00e4ker p\u00e5 att du vill inaktivera?"],"Jetpack has many powerful tools that can help you achieve your goals":["Jetpack har flera kraftfulla verktyg som kan hj\u00e4lpa dig att uppn\u00e5 dina m\u00e5l"],"Jetpack is currently powering features on your site. Once you disconnect Jetpack, these features will no longer be available and your site may no longer function the same way.":["Jetpack driver f\u00f6r tillf\u00e4llet funktioner p\u00e5 din webbplats. N\u00e4r du kopplar fr\u00e5n Jetpack, kommer de h\u00e4r funktionerna inte l\u00e4ngre att vara tillg\u00e4ngliga och din webbplats kanske inte l\u00e4ngre fungerar p\u00e5 samma s\u00e4tt."],"Deactivate Jetpack":["Inaktivera Jetpack"]}},"comment":{"reference":"_inc\/build\/plugins-page.js"}}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
{"translation-revision-date":"2025-04-21 15:46:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"The form you are trying to submit is empty.":["Formul\u00e4ret som du f\u00f6rs\u00f6ker skicka \u00e4r tomt."],"You need to fix %d error.":["Du m\u00e5ste \u00e5tg\u00e4rda %d fel.","Du m\u00e5ste \u00e5tg\u00e4rda %d fel."],"Please correct this field":["\u00c5tg\u00e4rda detta f\u00e4lt"],"Submitting form":["Skickar formul\u00e4r"],"The date is not valid.":["Ogiltigt datum."],"Please select at least one option.":["V\u00e4lj minst ett alternativ."],"Please make sure all fields are valid.":["Se till att alla f\u00e4lt \u00e4r giltiga."],"Warning.":["Varning."]}},"comment":{"reference":"jetpack_vendor\/automattic\/jetpack-forms\/dist\/contact-form\/js\/accessible-form.js"}}
{"translation-revision-date":"2025-06-05 13:54:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"A file is required.":["En fil kr\u00e4vs."],"The form you are trying to submit is empty.":["Formul\u00e4ret som du f\u00f6rs\u00f6ker skicka \u00e4r tomt."],"You need to fix %d error.":["Du m\u00e5ste \u00e5tg\u00e4rda %d fel.","Du m\u00e5ste \u00e5tg\u00e4rda %d fel."],"Please correct this field":["\u00c5tg\u00e4rda detta f\u00e4lt"],"Submitting form":["Skickar formul\u00e4r"],"The date is not valid.":["Ogiltigt datum."],"Please select at least one option.":["V\u00e4lj minst ett alternativ."],"Please make sure all fields are valid.":["Se till att alla f\u00e4lt \u00e4r giltiga."],"Warning.":["Varning."]}},"comment":{"reference":"jetpack_vendor\/automattic\/jetpack-forms\/dist\/contact-form\/js\/accessible-form.js"}}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
{"translation-revision-date":"2025-04-21 15:46:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Warning.":["Varning."]}},"comment":{"reference":"jetpack_vendor\/automattic\/jetpack-forms\/dist\/contact-form\/js\/form-errors.js"}}
{"translation-revision-date":"2025-06-05 13:54:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Warning.":["Varning."]}},"comment":{"reference":"jetpack_vendor\/automattic\/jetpack-forms\/dist\/contact-form\/js\/form-errors.js"}}

View File

@ -1 +1 @@
{"translation-revision-date":"2025-04-21 15:46:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Price: high to low":["Pris: h\u00f6gt till l\u00e5gt"],"Price: low to high":["Pris: l\u00e5gt till h\u00f6gt"],"Oldest":["\u00c4ldsta"],"Relevance":["Relevans"],"Rating":["Betyg"],"Newest":["Senaste"]}},"comment":{"reference":"jetpack_vendor\/automattic\/jetpack-search\/build\/instant-search\/jp-search.js"}}
{"translation-revision-date":"2025-06-05 13:54:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Price: high to low":["Pris: h\u00f6gt till l\u00e5gt"],"Price: low to high":["Pris: l\u00e5gt till h\u00f6gt"],"Oldest":["\u00c4ldsta"],"Relevance":["Relevans"],"Rating":["Betyg"],"Newest":["Senaste"]}},"comment":{"reference":"jetpack_vendor\/automattic\/jetpack-search\/build\/instant-search\/jp-search.js"}}

View File

@ -1 +1 @@
{"translation-revision-date":"2025-04-21 15:46:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Request submitted successfully.":["Returbeg\u00e4ran har skickats."],"An error occurred while sharing your post.":["Ett fel uppstod vid delningen av ditt inl\u00e4gg."],"Sharing\u2026":["Delar \u2026"],"Please select at least one connection to share with.":["V\u00e4lj minst en anslutning att dela till."],"Share now":["Dela nu"],"You need a featured image to share to Instagram. Use the block editor for more advanced media features! <a href=\"%s\" rel=\"noopener noreferrer\" target=\"_blank\">Learn more<\/a>.":["Du beh\u00f6ver en aktuell bild f\u00f6r att dela till Instagram. Anv\u00e4nd blockredigeraren f\u00f6r mer avancerade mediafunktioner! <a href=\"%s\" rel=\"noopener noreferrer\" target=\"_blank\">L\u00e4s mer<\/a>."],"Twitter is not supported anymore. <a href=\"%s\" rel=\"noopener noreferrer\" target=\"_blank\">Learn more<\/a>.":["Twitter st\u00f6ds inte l\u00e4ngre. <a href=\"%s\" rel=\"noopener noreferrer\" target=\"_blank\">L\u00e4r dig mer<\/a>."],"You need a featured image to share to Instagram. <a href=\"%s\" rel=\"noopener noreferrer\" target=\"_blank\">Learn more<\/a>.":["Du beh\u00f6ver en aktuell bild f\u00f6r att dela till Instagram. <a href=\"%s\" rel=\"noopener noreferrer\" target=\"_blank\">L\u00e4s mer<\/a>."],"One of your social connections needs attention. You can fix it on the <a href=\"%s\" rel=\"noopener noreferrer\" target=\"_blank\">connection management<\/a> page.":["En av dina sociala anslutningar kr\u00e4ver uppm\u00e4rksamhet. Du kan \u00e5tg\u00e4rda den p\u00e5 sidan <a href=\"%s\" rel=\"noopener noreferrer\" target=\"_blank\">Anslutningshantering<\/a>.","N\u00e5gra av dina sociala anslutningar kr\u00e4ver uppm\u00e4rksamhet. Du kan \u00e5tg\u00e4rda dem p\u00e5 sidan <a href=\"%s\" rel=\"noopener noreferrer\" target=\"_blank\">Anslutningshantering<\/a>."]}},"comment":{"reference":"jetpack_vendor\/automattic\/jetpack-publicize\/build\/classic-editor-connections.js"}}
{"translation-revision-date":"2025-06-05 13:54:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Request submitted successfully.":["Returbeg\u00e4ran har skickats."],"An error occurred while sharing your post.":["Ett fel uppstod vid delningen av ditt inl\u00e4gg."],"Sharing\u2026":["Delar \u2026"],"Please select at least one connection to share with.":["V\u00e4lj minst en anslutning att dela till."],"Share now":["Dela nu"],"You need a featured image to share to Instagram. Use the block editor for more advanced media features! <a href=\"%s\" rel=\"noopener noreferrer\" target=\"_blank\">Learn more<\/a>.":["Du beh\u00f6ver en aktuell bild f\u00f6r att dela till Instagram. Anv\u00e4nd blockredigeraren f\u00f6r mer avancerade mediafunktioner! <a href=\"%s\" rel=\"noopener noreferrer\" target=\"_blank\">L\u00e4s mer<\/a>."],"Twitter is not supported anymore. <a href=\"%s\" rel=\"noopener noreferrer\" target=\"_blank\">Learn more<\/a>.":["Twitter st\u00f6ds inte l\u00e4ngre. <a href=\"%s\" rel=\"noopener noreferrer\" target=\"_blank\">L\u00e4r dig mer<\/a>."],"You need a featured image to share to Instagram. <a href=\"%s\" rel=\"noopener noreferrer\" target=\"_blank\">Learn more<\/a>.":["Du beh\u00f6ver en aktuell bild f\u00f6r att dela till Instagram. <a href=\"%s\" rel=\"noopener noreferrer\" target=\"_blank\">L\u00e4s mer<\/a>."],"One of your social connections needs attention. You can fix it on the <a href=\"%s\" rel=\"noopener noreferrer\" target=\"_blank\">connection management<\/a> page.":["En av dina sociala anslutningar kr\u00e4ver uppm\u00e4rksamhet. Du kan \u00e5tg\u00e4rda den p\u00e5 sidan <a href=\"%s\" rel=\"noopener noreferrer\" target=\"_blank\">Anslutningshantering<\/a>.","N\u00e5gra av dina sociala anslutningar kr\u00e4ver uppm\u00e4rksamhet. Du kan \u00e5tg\u00e4rda dem p\u00e5 sidan <a href=\"%s\" rel=\"noopener noreferrer\" target=\"_blank\">Anslutningshantering<\/a>."]}},"comment":{"reference":"jetpack_vendor\/automattic\/jetpack-publicize\/build\/classic-editor-connections.js"}}

View File

@ -1 +1 @@
{"translation-revision-date":"2025-04-21 15:46:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Please select the top level block of this widget to apply visibility rules.":["V\u00e4lj widgetens toppniv\u00e5block f\u00f6r att till\u00e4mpa synlighetsreglerna."],"Match all rules":["Matcha alla regler"],"Hide this block":["D\u00f6lj detta block"],"Show this block":["Visa detta block"],"Action":["\u00c5tg\u00e4rd"],"Add new rule":["L\u00e4gg till ny regel"],"No visibility rules yet. Add at least one rule to use this feature.":["Inga synlighetsregler \u00e4n. L\u00e4gg till minst en regel f\u00f6r att anv\u00e4nda den h\u00e4r funktionen."],"Delete this visibility rule\u0004Remove":["Ta bort"],"Minor Rule":["Underordnad regel"],"Major Rule":["Huvudregel"],"Widget Visibility: If {Rule Major [Page]} is {Rule Minor [Search results]}\u0004If":["Om"],"Author":["F\u00f6rfattare"],"-- Select --":["-- V\u00e4lj --"],"Role":["Roll"],"User":["Anv\u00e4ndare"],"Upgrade your plan to upload audio":["Uppgradera ditt paket f\u00f6r att ladda upp ljud"],"Upgrade your plan to use video covers":["Uppgradera ditt paket f\u00f6r att anv\u00e4nda videocovers"],"Tag":["Etikett"],"Page":["Sida"],"Taxonomy":["Taxonomi"],"Widget Visibility: {Rule Major [Page]} is {Rule Minor [Search results]}\u0004is":["\u00e4r"],"Category":["Kategori"],"Visibility":["Synlighet"],"Date":["Datum"]}},"comment":{"reference":"_inc\/build\/widget-visibility\/editor\/index.js"}}
{"translation-revision-date":"2025-06-05 13:54:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Please select the top level block of this widget to apply visibility rules.":["V\u00e4lj widgetens toppniv\u00e5block f\u00f6r att till\u00e4mpa synlighetsreglerna."],"Match all rules":["Matcha alla regler"],"Hide this block":["D\u00f6lj detta block"],"Show this block":["Visa detta block"],"Action":["\u00c5tg\u00e4rd"],"Add new rule":["L\u00e4gg till ny regel"],"No visibility rules yet. Add at least one rule to use this feature.":["Inga synlighetsregler \u00e4n. L\u00e4gg till minst en regel f\u00f6r att anv\u00e4nda den h\u00e4r funktionen."],"Delete this visibility rule\u0004Remove":["Ta bort"],"Minor Rule":["Underordnad regel"],"Major Rule":["Huvudregel"],"Widget Visibility: If {Rule Major [Page]} is {Rule Minor [Search results]}\u0004If":["Om"],"Author":["F\u00f6rfattare"],"-- Select --":["-- V\u00e4lj --"],"Role":["Roll"],"User":["Anv\u00e4ndare"],"Upgrade your plan to upload audio":["Uppgradera ditt paket f\u00f6r att ladda upp ljud"],"Upgrade your plan to use video covers":["Uppgradera ditt paket f\u00f6r att anv\u00e4nda videocovers"],"Tag":["Etikett"],"Page":["Sida"],"Taxonomy":["Taxonomi"],"Widget Visibility: {Rule Major [Page]} is {Rule Minor [Search results]}\u0004is":["\u00e4r"],"Category":["Kategori"],"Visibility":["Synlighet"],"Date":["Datum"]}},"comment":{"reference":"_inc\/build\/widget-visibility\/editor\/index.js"}}

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

View File

@ -1 +1 @@
{"translation-revision-date":"2025-04-21 15:46:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Blaze this product":["Marknadsf\u00f6r den h\u00e4r produkten med Blaze"],"Blaze this post":["Marknadsf\u00f6r det h\u00e4r inl\u00e4gget med Blaze"],"Blaze this page":["Marknadsf\u00f6r den h\u00e4r sidan med Blaze"],"Reach a larger audience boosting the content to the WordPress.com community of blogs and sites.":["N\u00e5 en st\u00f6rre publik genom att marknadsf\u00f6ra ditt inneh\u00e5ll i WordPress.com-communityt av bloggar och webbplatser."],"Promote with Blaze":["Marknadsf\u00f6r med Blaze"],"Upgrade your plan to upload audio":["Uppgradera ditt paket f\u00f6r att ladda upp ljud"],"Upgrade your plan to use video covers":["Uppgradera ditt paket f\u00f6r att anv\u00e4nda videocovers"]}},"comment":{"reference":"jetpack_vendor\/automattic\/jetpack-blaze\/build\/editor.js"}}
{"translation-revision-date":"2025-06-05 13:54:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Blaze this product":["Marknadsf\u00f6r den h\u00e4r produkten med Blaze"],"Blaze this post":["Marknadsf\u00f6r det h\u00e4r inl\u00e4gget med Blaze"],"Blaze this page":["Marknadsf\u00f6r den h\u00e4r sidan med Blaze"],"Reach a larger audience boosting the content to the WordPress.com community of blogs and sites.":["N\u00e5 en st\u00f6rre publik genom att marknadsf\u00f6ra ditt inneh\u00e5ll i WordPress.com-communityt av bloggar och webbplatser."],"Promote with Blaze":["Marknadsf\u00f6r med Blaze"],"Upgrade your plan to upload audio":["Uppgradera ditt paket f\u00f6r att ladda upp ljud"],"Upgrade your plan to use video covers":["Uppgradera ditt paket f\u00f6r att anv\u00e4nda videocovers"]}},"comment":{"reference":"jetpack_vendor\/automattic\/jetpack-blaze\/build\/editor.js"}}

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

View File

@ -1 +1 @@
{"translation-revision-date":"2025-03-28 20:52:50+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"The suggested policy text has been copied to your clipboard.":["Den f\u00f6reslagna policytexten har kopierats till urklipp."],"This user&#8217;s personal data export file was downloaded.":["Anv\u00e4ndarens exportfil med personuppgifter har laddats ned."],"This user&#8217;s personal data export link was sent.":["Anv\u00e4ndarens l\u00e4nk f\u00f6r export av personuppgifter har skickats."],"An error occurred while attempting to find and erase personal data.":["Ett fel uppstod vid f\u00f6rs\u00f6ket att hitta och radera personuppgifter."],"Personal data was found for this user but some of the personal data found was not erased.":["Personuppgifter hittades f\u00f6r den h\u00e4r anv\u00e4ndaren men en del av de hittade personuppgifterna raderades inte."],"All of the personal data found for this user was erased.":["Alla personuppgifter som hittades f\u00f6r den h\u00e4r anv\u00e4ndaren raderades."],"Personal data was found for this user but was not erased.":["Personuppgifter hittades f\u00f6r den h\u00e4r anv\u00e4ndaren men raderades inte."],"No personal data was found for this user.":["Inga personuppgifter hittades f\u00f6r denna anv\u00e4ndare."],"An error occurred while attempting to export personal data.":["Ett fel uppstod vid f\u00f6rs\u00f6ket att exportera personuppgifter."],"No personal data export file was generated.":["Ingen fil f\u00f6r export av personuppgifter genererades."]}},"comment":{"reference":"wp-admin\/js\/privacy-tools.js"}}
{"translation-revision-date":"2025-04-25 20:25:55+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"The suggested policy text has been copied to your clipboard.":["Den f\u00f6reslagna policytexten har kopierats till urklipp."],"This user&#8217;s personal data export file was downloaded.":["Anv\u00e4ndarens exportfil med personuppgifter har laddats ned."],"This user&#8217;s personal data export link was sent.":["Anv\u00e4ndarens l\u00e4nk f\u00f6r export av personuppgifter har skickats."],"An error occurred while attempting to find and erase personal data.":["Ett fel uppstod vid f\u00f6rs\u00f6ket att hitta och radera personuppgifter."],"Personal data was found for this user but some of the personal data found was not erased.":["Personuppgifter hittades f\u00f6r den h\u00e4r anv\u00e4ndaren men en del av de hittade personuppgifterna raderades inte."],"All of the personal data found for this user was erased.":["Alla personuppgifter som hittades f\u00f6r den h\u00e4r anv\u00e4ndaren raderades."],"Personal data was found for this user but was not erased.":["Personuppgifter hittades f\u00f6r den h\u00e4r anv\u00e4ndaren men raderades inte."],"No personal data was found for this user.":["Inga personuppgifter hittades f\u00f6r denna anv\u00e4ndare."],"An error occurred while attempting to export personal data.":["Ett fel uppstod vid f\u00f6rs\u00f6ket att exportera personuppgifter."],"No personal data export file was generated.":["Ingen fil f\u00f6r export av personuppgifter genererades."]}},"comment":{"reference":"wp-admin\/js\/privacy-tools.js"}}

View File

@ -1 +1 @@
{"translation-revision-date":"2025-03-28 20:52:50+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"%1$s is deprecated since version %2$s! Use %3$s instead. Please consider writing more inclusive code.":["%1$s \u00e4r taget ur bruk sedan version %2$s! Anv\u00e4nd %3$s i st\u00e4llet. \u00d6verv\u00e4g att skriva mer inkluderande kod."]}},"comment":{"reference":"wp-admin\/js\/password-strength-meter.js"}}
{"translation-revision-date":"2025-04-25 20:25:55+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"%1$s is deprecated since version %2$s! Use %3$s instead. Please consider writing more inclusive code.":["%1$s \u00e4r taget ur bruk sedan version %2$s! Anv\u00e4nd %3$s i st\u00e4llet. \u00d6verv\u00e4g att skriva mer inkluderande kod."]}},"comment":{"reference":"wp-admin\/js\/password-strength-meter.js"}}

View File

@ -1 +1 @@
{"translation-revision-date":"2025-03-28 20:52:50+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Submitted on:":["Skickat den:"],"%1$s %2$s, %3$s at %4$s:%5$s":["%2$s %1$s, %3$s kl. %4$s:%5$s"]}},"comment":{"reference":"wp-admin\/js\/comment.js"}}
{"translation-revision-date":"2025-04-25 20:25:55+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Submitted on:":["Skickat den:"],"%1$s %2$s, %3$s at %4$s:%5$s":["%2$s %1$s, %3$s kl. %4$s:%5$s"]}},"comment":{"reference":"wp-admin\/js\/comment.js"}}

View File

@ -1 +1 @@
{"translation-revision-date":"2025-03-28 20:52:50+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Selected crop ratio exceeds the boundaries of the image. Try a different ratio.":["Det valda bildf\u00f6rh\u00e5llandet \u00f6verskrider bildens format. Prova ett annat f\u00f6rh\u00e5llande."],"Could not load the preview image.":["Kunde inte ladda f\u00f6rhandsgranskningsbilden."],"Could not load the preview image. Please reload the page and try again.":["Kunde inte ladda f\u00f6rhandsgranskningsbilden. Ladda om sidan och f\u00f6rs\u00f6k igen."],"Image updated.":["Bilden uppdaterad."]}},"comment":{"reference":"wp-admin\/js\/image-edit.js"}}
{"translation-revision-date":"2025-04-25 20:25:55+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Selected crop ratio exceeds the boundaries of the image. Try a different ratio.":["Det valda bildf\u00f6rh\u00e5llandet \u00f6verskrider bildens format. Prova ett annat f\u00f6rh\u00e5llande."],"Could not load the preview image.":["Kunde inte ladda f\u00f6rhandsgranskningsbilden."],"Could not load the preview image. Please reload the page and try again.":["Kunde inte ladda f\u00f6rhandsgranskningsbilden. Ladda om sidan och f\u00f6rs\u00f6k igen."],"Image updated.":["Bilden uppdaterad."]}},"comment":{"reference":"wp-admin\/js\/image-edit.js"}}

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
{"translation-revision-date":"2025-03-28 20:52:50+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Running additional tests... please wait.":["K\u00f6r ytterligare tester \u2026 v\u00e4nta."],"All site health tests have finished running. There are items that should be addressed.":["Alla h\u00e4lsotester f\u00f6r webbplatsen har slutf\u00f6rts. Det finns saker som b\u00f6r \u00e5tg\u00e4rdas."],"All site health tests have finished running. Your site is looking good.":["Alla h\u00e4lsotester f\u00f6r webbplatsen har slutf\u00f6rts. Din webbplats ser bra ut."],"Unavailable":["Inte tillg\u00e4ngligt"],"No details available":["Inga uppgifter tillg\u00e4ngliga"],"A test is unavailable":["Ett test \u00e4r inte tillg\u00e4ngligt"],"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 copied to your clipboard.":["Information om webbplatsen har kopierats till ditt urklipp."]}},"comment":{"reference":"wp-admin\/js\/site-health.js"}}
{"translation-revision-date":"2025-04-25 20:25:55+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Running additional tests... please wait.":["K\u00f6r ytterligare tester \u2026 v\u00e4nta."],"All site health tests have finished running. There are items that should be addressed.":["Alla h\u00e4lsotester f\u00f6r webbplatsen har slutf\u00f6rts. Det finns saker som b\u00f6r \u00e5tg\u00e4rdas."],"All site health tests have finished running. Your site is looking good.":["Alla h\u00e4lsotester f\u00f6r webbplatsen har slutf\u00f6rts. Din webbplats ser bra ut."],"Unavailable":["Inte tillg\u00e4ngligt"],"No details available":["Inga uppgifter tillg\u00e4ngliga"],"A test is unavailable":["Ett test \u00e4r inte tillg\u00e4ngligt"],"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 copied to your clipboard.":["Information om webbplatsen har kopierats till ditt urklipp."]}},"comment":{"reference":"wp-admin\/js\/site-health.js"}}

View File

@ -1 +1 @@
{"translation-revision-date":"2025-03-28 20:52:50+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Use as featured image":["Anv\u00e4nd som utvald bild"],"Saving\u2026":["Sparar \u2026"],"Could not set that as the thumbnail image. Try a different attachment.":["Kunde inte ange den som miniatyrbild. F\u00f6rs\u00f6k med n\u00e5gon annan bilaga."],"Done":["Klart"]}},"comment":{"reference":"wp-admin\/js\/set-post-thumbnail.js"}}
{"translation-revision-date":"2025-04-25 20:25:55+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Use as featured image":["Anv\u00e4nd som utvald bild"],"Saving\u2026":["Sparar \u2026"],"Could not set that as the thumbnail image. Try a different attachment.":["Kunde inte ange den som miniatyrbild. F\u00f6rs\u00f6k med n\u00e5gon annan bilaga."],"Done":["Klart"]}},"comment":{"reference":"wp-admin\/js\/set-post-thumbnail.js"}}

View File

@ -1 +1 @@
{"translation-revision-date":"2025-03-28 20:52:50+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Screen Options updated.":["Sk\u00e4rmalternativen har uppdaterats."],"Drag boxes here":["Dra paneler hit"],"Add boxes from the Screen Options menu":["L\u00e4gg till paneler fr\u00e5n menyn \u201dSk\u00e4rmalternativ\u201d"],"The boxes order has been saved.":["Panelernas ordning har sparats."],"The box is on the last position":["Panelen \u00e4r i den sista positionen"],"The box is on the first position":["Panelen \u00e4r i den f\u00f6rsta positionen"]}},"comment":{"reference":"wp-admin\/js\/postbox.js"}}
{"translation-revision-date":"2025-04-25 20:25:55+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Screen Options updated.":["Sk\u00e4rmalternativen har uppdaterats."],"Drag boxes here":["Dra paneler hit"],"Add boxes from the Screen Options menu":["L\u00e4gg till paneler fr\u00e5n menyn \u201dSk\u00e4rmalternativ\u201d"],"The boxes order has been saved.":["Panelernas ordning har sparats."],"The box is on the last position":["Panelen \u00e4r i den sista positionen"],"The box is on the first position":["Panelen \u00e4r i den f\u00f6rsta positionen"]}},"comment":{"reference":"wp-admin\/js\/postbox.js"}}

View File

@ -1 +1 @@
{"translation-revision-date":"2025-03-28 20:52:50+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Widget has been added to the selected sidebar":["Widget har lagts till i den valda sidopanelen"],"Saved":["Sparat"],"The changes you made will be lost if you navigate away from this page.":["De \u00e4ndringar du gjort kommer att g\u00e5 f\u00f6rlorade om du navigerar bort fr\u00e5n den h\u00e4r sidan."],"Save":["Spara"]}},"comment":{"reference":"wp-admin\/js\/widgets.js"}}
{"translation-revision-date":"2025-04-25 20:25:55+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Widget has been added to the selected sidebar":["Widget har lagts till i den valda sidopanelen"],"Saved":["Sparat"],"The changes you made will be lost if you navigate away from this page.":["De \u00e4ndringar du gjort kommer att g\u00e5 f\u00f6rlorade om du navigerar bort fr\u00e5n den h\u00e4r sidan."],"Save":["Spara"]}},"comment":{"reference":"wp-admin\/js\/widgets.js"}}

View File

@ -1 +1 @@
{"translation-revision-date":"2025-03-28 20:52:50+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"All application passwords revoked.":["Alla applikationsl\u00f6senord \u00e5terkallade."],"Are you sure you want to revoke all passwords? This action cannot be undone.":["\u00c4r du s\u00e4ker p\u00e5 att du vill \u00e5terkalla alla l\u00f6senord? Denna \u00e5tg\u00e4rd kan inte \u00e5ngras."],"Application password revoked.":["Applikationsl\u00f6senord \u00e5terkallad."],"Are you sure you want to revoke this password? This action cannot be undone.":["\u00c4r du s\u00e4ker p\u00e5 att du vill \u00e5terkalla detta l\u00f6senord? \u00c5tg\u00e4rden kan inte \u00e5ngras."],"Dismiss this notice.":["Avf\u00e4rda denna notis."]}},"comment":{"reference":"wp-admin\/js\/application-passwords.js"}}
{"translation-revision-date":"2025-04-25 20:25:55+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"All application passwords revoked.":["Alla applikationsl\u00f6senord \u00e5terkallade."],"Are you sure you want to revoke all passwords? This action cannot be undone.":["\u00c4r du s\u00e4ker p\u00e5 att du vill \u00e5terkalla alla l\u00f6senord? Denna \u00e5tg\u00e4rd kan inte \u00e5ngras."],"Application password revoked.":["Applikationsl\u00f6senord \u00e5terkallad."],"Are you sure you want to revoke this password? This action cannot be undone.":["\u00c4r du s\u00e4ker p\u00e5 att du vill \u00e5terkalla detta l\u00f6senord? \u00c5tg\u00e4rden kan inte \u00e5ngras."],"Dismiss this notice.":["Avf\u00e4rda denna notis."]}},"comment":{"reference":"wp-admin\/js\/application-passwords.js"}}

View File

@ -1 +1 @@
{"translation-revision-date":"2025-03-28 20:52:50+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"URL Slug":["URL-slug"],"Permalink saved":["Permal\u00e4nk sparad"],"Published on:":["Publicerat den:"],"Publish on:":["Publicera den:"],"Schedule for:":["Tidsinst\u00e4ll f\u00f6r:"],"Saving Draft\u2026":["Sparar utkast \u2026"],"No more comments found.":["Inga fler kommentarer hittades."],"Show more comments":["Visa fler kommentarer"],"post action\/button label\u0004Schedule":["Tidsinst\u00e4ll"],"%1$s %2$s, %3$s at %4$s:%5$s":["%2$s %1$s, %3$s kl. %4$s:%5$s"],"Public, Sticky":["Offentlig, klistrat"],"Privately Published":["Privat publicerad"],"Save as Pending":["Spara som v\u00e4ntande"],"Password Protected":["L\u00f6senordsskyddat"],"The file URL has been copied to your clipboard":["Filens URL har kopierats till ditt urklipp"],"Could not set that as the thumbnail image. Try a different attachment.":["Kunde inte ange den som miniatyrbild. F\u00f6rs\u00f6k med n\u00e5gon annan bilaga."],"The changes you made will be lost if you navigate away from this page.":["De \u00e4ndringar du gjort kommer att g\u00e5 f\u00f6rlorade om du navigerar bort fr\u00e5n den h\u00e4r sidan."],"Update":["Uppdatera"],"Public":["Offentlig"],"Private":["Privat"],"OK":["OK"],"Save Draft":["Spara utkast"],"Cancel":["Avbryt"],"Publish":["Publicera"],"Published":["Publicerat"]}},"comment":{"reference":"wp-admin\/js\/post.js"}}
{"translation-revision-date":"2025-04-25 20:25:55+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"URL Slug":["URL-slug"],"Permalink saved":["Permal\u00e4nk sparad"],"Published on:":["Publicerat den:"],"Publish on:":["Publicera den:"],"Schedule for:":["Tidsinst\u00e4ll f\u00f6r:"],"Saving Draft\u2026":["Sparar utkast \u2026"],"No more comments found.":["Inga fler kommentarer hittades."],"Show more comments":["Visa fler kommentarer"],"post action\/button label\u0004Schedule":["Tidsinst\u00e4ll"],"%1$s %2$s, %3$s at %4$s:%5$s":["%2$s %1$s, %3$s kl. %4$s:%5$s"],"Public, Sticky":["Offentlig, klistrat"],"Privately Published":["Privat publicerad"],"Save as Pending":["Spara som v\u00e4ntande"],"Password Protected":["L\u00f6senordsskyddat"],"The file URL has been copied to your clipboard":["Filens URL har kopierats till ditt urklipp"],"Could not set that as the thumbnail image. Try a different attachment.":["Kunde inte ange den som miniatyrbild. F\u00f6rs\u00f6k med n\u00e5gon annan bilaga."],"The changes you made will be lost if you navigate away from this page.":["De \u00e4ndringar du gjort kommer att g\u00e5 f\u00f6rlorade om du navigerar bort fr\u00e5n den h\u00e4r sidan."],"Update":["Uppdatera"],"Public":["Offentlig"],"Private":["Privat"],"OK":["OK"],"Save Draft":["Spara utkast"],"Cancel":["Avbryt"],"Publish":["Publicera"],"Published":["Publicerat"]}},"comment":{"reference":"wp-admin\/js\/post.js"}}

View File

@ -1 +1 @@
{"translation-revision-date":"2025-03-28 20:52:50+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Are you sure you want to do this?\nThe comment changes you made will be lost.":["\u00c4r du s\u00e4ker p\u00e5 att du vill g\u00f6ra det h\u00e4r?\n\u00c4ndringarna f\u00f6r kommentaren du gjorde kommer att f\u00f6rloras."],"Are you sure you want to edit this comment?\nThe changes you made will be lost.":["\u00c4r du s\u00e4ker p\u00e5 att du vill redigera den h\u00e4r kommentaren? \nDe \u00e4ndringar du har gjort kommer att f\u00f6rloras."],"Approve and Reply":["Godk\u00e4nn och svara"],"Comments (%s)":["Kommentarer (%s)"],"Reply":["Svara"],"Comments":["Kommentarer"]}},"comment":{"reference":"wp-admin\/js\/edit-comments.js"}}
{"translation-revision-date":"2025-04-25 20:25:55+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Are you sure you want to do this?\nThe comment changes you made will be lost.":["\u00c4r du s\u00e4ker p\u00e5 att du vill g\u00f6ra det h\u00e4r?\n\u00c4ndringarna f\u00f6r kommentaren du gjorde kommer att f\u00f6rloras."],"Are you sure you want to edit this comment?\nThe changes you made will be lost.":["\u00c4r du s\u00e4ker p\u00e5 att du vill redigera den h\u00e4r kommentaren? \nDe \u00e4ndringar du har gjort kommer att f\u00f6rloras."],"Approve and Reply":["Godk\u00e4nn och svara"],"Comments (%s)":["Kommentarer (%s)"],"Reply":["Svara"],"Comments":["Kommentarer"]}},"comment":{"reference":"wp-admin\/js\/edit-comments.js"}}

View File

@ -1 +1 @@
{"translation-revision-date":"2025-03-28 20:52:50+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Plugin details":["Uppgifter om till\u00e4gget"],"Plugin: %s":["Till\u00e4gg: %s"]}},"comment":{"reference":"wp-admin\/js\/plugin-install.js"}}
{"translation-revision-date":"2025-04-25 20:25:55+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Plugin details":["Uppgifter om till\u00e4gget"],"Plugin: %s":["Till\u00e4gg: %s"]}},"comment":{"reference":"wp-admin\/js\/plugin-install.js"}}

View File

@ -1 +1 @@
{"translation-revision-date":"2025-03-28 20:52:50+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Screen Options updated.":["Sk\u00e4rmalternativen har uppdaterats."],"%1$s is deprecated since version %2$s with no alternative available.":["Egenskapen %1$s \u00e4r markerad som f\u00f6r\u00e5ldrad sedan version %2$s utan n\u00e5got ers\u00e4ttningsalternativ."],"%1$s is deprecated since version %2$s! Use %3$s instead.":["Egenskapen %1$s \u00e4r markerad som f\u00f6r\u00e5ldrad sedan version %2$s! Anv\u00e4nd %3$s i st\u00e4llet."],"Please select at least one item to perform this action on.":["V\u00e4lj minst ett objekt att utf\u00f6ra denna \u00e5tg\u00e4rd p\u00e5."],"Expand Main menu":["Expandera huvudmenyn"],"Dismiss this notice.":["Avf\u00e4rda denna notis."],"You are about to permanently delete these items from your site.\nThis action cannot be undone.\n'Cancel' to stop, 'OK' to delete.":["Du h\u00e5ller p\u00e5 att ta bort dessa objekt permanent fr\u00e5n din webbplats.\nDenna \u00e5tg\u00e4rd kan inte \u00e5ngras.\n\u201dAvbryt\u201d f\u00f6r att stoppa, \u201dOK\u201d f\u00f6r att ta bort."],"Collapse Main menu":["Minimera huvudmenyn"]}},"comment":{"reference":"wp-admin\/js\/common.js"}}
{"translation-revision-date":"2025-04-25 20:25:55+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Screen Options updated.":["Sk\u00e4rmalternativen har uppdaterats."],"%1$s is deprecated since version %2$s with no alternative available.":["Egenskapen %1$s \u00e4r markerad som f\u00f6r\u00e5ldrad sedan version %2$s utan n\u00e5got ers\u00e4ttningsalternativ."],"%1$s is deprecated since version %2$s! Use %3$s instead.":["Egenskapen %1$s \u00e4r markerad som f\u00f6r\u00e5ldrad sedan version %2$s! Anv\u00e4nd %3$s i st\u00e4llet."],"Please select at least one item to perform this action on.":["V\u00e4lj minst ett objekt att utf\u00f6ra denna \u00e5tg\u00e4rd p\u00e5."],"Expand Main menu":["Expandera huvudmenyn"],"Dismiss this notice.":["Avf\u00e4rda denna notis."],"You are about to permanently delete these items from your site.\nThis action cannot be undone.\n'Cancel' to stop, 'OK' to delete.":["Du h\u00e5ller p\u00e5 att ta bort dessa objekt permanent fr\u00e5n din webbplats.\nDenna \u00e5tg\u00e4rd kan inte \u00e5ngras.\n\u201dAvbryt\u201d f\u00f6r att stoppa, \u201dOK\u201d f\u00f6r att ta bort."],"Collapse Main menu":["Minimera huvudmenyn"]}},"comment":{"reference":"wp-admin\/js\/common.js"}}

View File

@ -1 +1 @@
{"translation-revision-date":"2025-03-28 20:52:50+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Hide":["D\u00f6lj"],"Hide password":["D\u00f6lj l\u00f6senord"],"Show password":["Visa l\u00f6senord"],"Show":["Visa"]}},"comment":{"reference":"wp-admin\/js\/password-toggle.js"}}
{"translation-revision-date":"2025-04-25 20:25:55+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Hide":["D\u00f6lj"],"Hide password":["D\u00f6lj l\u00f6senord"],"Show password":["Visa l\u00f6senord"],"Show":["Visa"]}},"comment":{"reference":"wp-admin\/js\/password-toggle.js"}}

View File

@ -1 +1 @@
{"translation-revision-date":"2025-03-28 20:52:50+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"%d result found. Use up and down arrow keys to navigate.":["%d resultat hittades. Anv\u00e4nd piltangenterna upp och ner f\u00f6r att navigera.","%d resultat hittades. Anv\u00e4nd piltangenterna upp och ner f\u00f6r att navigera."],"Term selected.":["Term vald."],"tag delimiter\u0004,":[","],"No results found.":["Inga resultat hittades."]}},"comment":{"reference":"wp-admin\/js\/tags-suggest.js"}}
{"translation-revision-date":"2025-04-25 20:25:55+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"%d result found. Use up and down arrow keys to navigate.":["%d resultat hittades. Anv\u00e4nd piltangenterna upp och ner f\u00f6r att navigera.","%d resultat hittades. Anv\u00e4nd piltangenterna upp och ner f\u00f6r att navigera."],"Term selected.":["Term vald."],"tag delimiter\u0004,":[","],"No results found.":["Inga resultat hittades."]}},"comment":{"reference":"wp-admin\/js\/tags-suggest.js"}}

View File

@ -1 +1 @@
{"translation-revision-date":"2025-03-28 20:52:50+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Application password has been copied to your clipboard.":["Applikationsl\u00f6senord har kopierats till ditt urklipp."],"Your new password has not been saved.":["Ditt nya l\u00f6senord har inte sparats."],"Hide":["D\u00f6lj"],"Confirm use of weak password":["Bekr\u00e4fta anv\u00e4ndning av svagt l\u00f6senord"],"Hide password":["D\u00f6lj l\u00f6senord"],"Show password":["Visa l\u00f6senord"],"Show":["Visa"],"The changes you made will be lost if you navigate away from this page.":["De \u00e4ndringar du gjort kommer att g\u00e5 f\u00f6rlorade om du navigerar bort fr\u00e5n den h\u00e4r sidan."]}},"comment":{"reference":"wp-admin\/js\/user-profile.js"}}
{"translation-revision-date":"2025-04-25 20:25:55+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Application password has been copied to your clipboard.":["Applikationsl\u00f6senord har kopierats till ditt urklipp."],"Your new password has not been saved.":["Ditt nya l\u00f6senord har inte sparats."],"Hide":["D\u00f6lj"],"Confirm use of weak password":["Bekr\u00e4fta anv\u00e4ndning av svagt l\u00f6senord"],"Hide password":["D\u00f6lj l\u00f6senord"],"Show password":["Visa l\u00f6senord"],"Show":["Visa"],"The changes you made will be lost if you navigate away from this page.":["De \u00e4ndringar du gjort kommer att g\u00e5 f\u00f6rlorade om du navigerar bort fr\u00e5n den h\u00e4r sidan."]}},"comment":{"reference":"wp-admin\/js\/user-profile.js"}}

View File

@ -1 +1 @@
{"translation-revision-date":"2025-03-28 20:52:50+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"An error occurred while saving your changes. Please try again. If the problem persists, you may need to manually update the file via FTP.":["Ett fel intr\u00e4ffade n\u00e4r dina \u00e4ndringar skulle sparas. F\u00f6rs\u00f6k igen. Om problemet kvarst\u00e5r kan du beh\u00f6va uppdatera filen manuellt via FTP."],"There is %s error which must be fixed before you can update this file.":["Det finns %s fel som m\u00e5ste \u00e5tg\u00e4rdas innan du kan uppdatera den h\u00e4r filen.","Det finns %s fel som m\u00e5ste \u00e5tg\u00e4rdas innan du kan uppdatera den h\u00e4r filen."],"The changes you made will be lost if you navigate away from this page.":["De \u00e4ndringar du gjort kommer att g\u00e5 f\u00f6rlorade om du navigerar bort fr\u00e5n den h\u00e4r sidan."]}},"comment":{"reference":"wp-admin\/js\/theme-plugin-editor.js"}}
{"translation-revision-date":"2025-04-25 20:25:55+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"An error occurred while saving your changes. Please try again. If the problem persists, you may need to manually update the file via FTP.":["Ett fel intr\u00e4ffade n\u00e4r dina \u00e4ndringar skulle sparas. F\u00f6rs\u00f6k igen. Om problemet kvarst\u00e5r kan du beh\u00f6va uppdatera filen manuellt via FTP."],"There is %s error which must be fixed before you can update this file.":["Det finns %s fel som m\u00e5ste \u00e5tg\u00e4rdas innan du kan uppdatera den h\u00e4r filen.","Det finns %s fel som m\u00e5ste \u00e5tg\u00e4rdas innan du kan uppdatera den h\u00e4r filen."],"The changes you made will be lost if you navigate away from this page.":["De \u00e4ndringar du gjort kommer att g\u00e5 f\u00f6rlorade om du navigerar bort fr\u00e5n den h\u00e4r sidan."]}},"comment":{"reference":"wp-admin\/js\/theme-plugin-editor.js"}}

View File

@ -1 +1 @@
{"translation-revision-date":"2025-03-28 20:52:50+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Some selected posts have this category":["N\u00e5gra valda inl\u00e4gg har denna kategori"],"All selected items have been removed. Select new items to use Bulk Actions.":["Alla markerade objekt har tagits bort. V\u00e4lj nya objekt f\u00f6r att kunna anv\u00e4nda mass\u00e5tg\u00e4rder."],"Remove &#8220;%s&#8221; from Bulk Edit":["Ta bort \u201d%s\u201d fr\u00e5n massredigering"],"Error while saving the changes.":["Ett fel intr\u00e4ffade n\u00e4r \u00e4ndringarna sparades."],"Changes saved.":["\u00c4ndringar sparade."],"Item removed.":["Objekt borttaget."],"tag delimiter\u0004,":[","],"(no title)":["(ingen rubrik)"]}},"comment":{"reference":"wp-admin\/js\/inline-edit-post.js"}}
{"translation-revision-date":"2025-04-25 20:25:55+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Some selected posts have this category":["N\u00e5gra valda inl\u00e4gg har denna kategori"],"All selected items have been removed. Select new items to use Bulk Actions.":["Alla markerade objekt har tagits bort. V\u00e4lj nya objekt f\u00f6r att kunna anv\u00e4nda mass\u00e5tg\u00e4rder."],"Remove &#8220;%s&#8221; from Bulk Edit":["Ta bort \u201d%s\u201d fr\u00e5n massredigering"],"Error while saving the changes.":["Ett fel intr\u00e4ffade n\u00e4r \u00e4ndringarna sparades."],"Changes saved.":["\u00c4ndringar sparade."],"Item removed.":["Objekt borttaget."],"tag delimiter\u0004,":[","],"(no title)":["(ingen rubrik)"]}},"comment":{"reference":"wp-admin\/js\/inline-edit-post.js"}}

View File

@ -1 +1 @@
{"translation-revision-date":"2025-03-28 20:52:50+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Clear color":["Rensa f\u00e4rg"],"Select default color":["V\u00e4lj standardf\u00e4rg"],"Color value":["F\u00e4rgv\u00e4rde"],"Select Color":["V\u00e4lj f\u00e4rg"],"Clear":["Rensa"],"Default":["Standard"]}},"comment":{"reference":"wp-admin\/js\/color-picker.js"}}
{"translation-revision-date":"2025-04-25 20:25:55+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Clear color":["Rensa f\u00e4rg"],"Select default color":["V\u00e4lj standardf\u00e4rg"],"Color value":["F\u00e4rgv\u00e4rde"],"Select Color":["V\u00e4lj f\u00e4rg"],"Clear":["Rensa"],"Default":["Standard"]}},"comment":{"reference":"wp-admin\/js\/color-picker.js"}}

View File

@ -1 +1 @@
{"translation-revision-date":"2025-03-28 20:52:50+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Term added.":["Term tillagd."],"Term removed.":["Term borttagen."],"Remove term:":["Ta bort term:"],"tag delimiter\u0004,":[","]}},"comment":{"reference":"wp-admin\/js\/tags-box.js"}}
{"translation-revision-date":"2025-04-25 20:25:55+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Term added.":["Term tillagd."],"Term removed.":["Term borttagen."],"Remove term:":["Ta bort term:"],"tag delimiter\u0004,":[","]}},"comment":{"reference":"wp-admin\/js\/tags-box.js"}}

View File

@ -1 +1 @@
{"translation-revision-date":"2025-03-28 20:52:50+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"part of a total number of menu items\u0004%1$s of %2$s":["%1$s av %2$s"],"menu item without a parent in navigation menu\u0004No Parent":["Ingen \u00f6verordnad"],"You are about to permanently delete this menu.\n'Cancel' to stop, 'OK' to delete.":["Du \u00e4r p\u00e5 v\u00e4g att ta bort denna meny permanent.\n\u201dAvbryt\u201d f\u00f6r att stoppa, \u201dOK\u201d f\u00f6r att ta bort."],"missing menu item navigation label\u0004(no label)":["(saknar etikett)"],"The changes you made will be lost if you navigate away from this page.":["De \u00e4ndringar du gjort kommer att g\u00e5 f\u00f6rlorade om du navigerar bort fr\u00e5n den h\u00e4r sidan."],"No results found.":["Inga resultat hittades."]}},"comment":{"reference":"wp-admin\/js\/nav-menu.js"}}
{"translation-revision-date":"2025-04-25 20:25:55+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"part of a total number of menu items\u0004%1$s of %2$s":["%1$s av %2$s"],"menu item without a parent in navigation menu\u0004No Parent":["Ingen \u00f6verordnad"],"You are about to permanently delete this menu.\n'Cancel' to stop, 'OK' to delete.":["Du \u00e4r p\u00e5 v\u00e4g att ta bort denna meny permanent.\n\u201dAvbryt\u201d f\u00f6r att stoppa, \u201dOK\u201d f\u00f6r att ta bort."],"missing menu item navigation label\u0004(no label)":["(saknar etikett)"],"The changes you made will be lost if you navigate away from this page.":["De \u00e4ndringar du gjort kommer att g\u00e5 f\u00f6rlorade om du navigerar bort fr\u00e5n den h\u00e4r sidan."],"No results found.":["Inga resultat hittades."]}},"comment":{"reference":"wp-admin\/js\/nav-menu.js"}}

View File

@ -1 +1 @@
{"translation-revision-date":"2025-03-28 20:52:50+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Your new password for %s is:":["Ditt nya l\u00f6senord f\u00f6r %s \u00e4r:"],"Be sure to save this in a safe location. You will not be able to retrieve it.":["Se till att spara det p\u00e5 en s\u00e4ker plats. Du kommer inte att kunna h\u00e4mta det senare."]}},"comment":{"reference":"wp-admin\/js\/auth-app.js"}}
{"translation-revision-date":"2025-04-25 20:25:55+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Your new password for %s is:":["Ditt nya l\u00f6senord f\u00f6r %s \u00e4r:"],"Be sure to save this in a safe location. You will not be able to retrieve it.":["Se till att spara det p\u00e5 en s\u00e4ker plats. Du kommer inte att kunna h\u00e4mta det senare."]}},"comment":{"reference":"wp-admin\/js\/auth-app.js"}}

View File

@ -1 +1 @@
{"translation-revision-date":"2025-03-28 20:52:50+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Error while saving the changes.":["Ett fel intr\u00e4ffade n\u00e4r \u00e4ndringarna sparades."],"Changes saved.":["\u00c4ndringar sparade."]}},"comment":{"reference":"wp-admin\/js\/inline-edit-tax.js"}}
{"translation-revision-date":"2025-04-25 20:25:55+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Error while saving the changes.":["Ett fel intr\u00e4ffade n\u00e4r \u00e4ndringarna sparades."],"Changes saved.":["\u00c4ndringar sparade."]}},"comment":{"reference":"wp-admin\/js\/inline-edit-tax.js"}}

View File

@ -1 +1 @@
{"translation-revision-date":"2025-03-28 20:52:50+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Screen Options updated.":["Sk\u00e4rmalternativen har uppdaterats."],"Attend an upcoming event near you.":["Bes\u00f6k ett kommande evenemang i din n\u00e4rhet."],"Events widget offset prefix\u0004GMT":["GMT"],"%1$s %2$d \u2013 %3$s %4$d, %5$d":["%2$d %1$s \u2013 %4$d %3$s %5$d"],"upcoming events year format\u0004Y":["Y"],"upcoming events day format\u0004j":["j"],"%1$s %2$d\u2013%3$d, %4$d":["%2$d\u2013%3$d %1$s %4$d"],"upcoming events month format\u0004F":["F"],"City updated. Listing events near %s.":["Staden har uppdaterats. Nu visas evenemang i n\u00e4rheten av %s."],"We couldn\u2019t locate %s. Please try another nearby city. For example: Kansas City; Springfield; Portland.":["Vi hittade inte %s. F\u00f6rs\u00f6k med n\u00e5gon annan stad i din n\u00e4rhet, t.ex. Stockholm, Lule\u00e5 eller Tomelilla."],"An error occurred. Please try again.":["Ett fel uppstod. F\u00f6rs\u00f6k igen."],"Enter your closest city to find nearby events.":["Skriv in din n\u00e4rmaste stad f\u00f6r att h\u00e5lla koll p\u00e5 evenemang din n\u00e4rhet."],"l, M j, Y":["D j M Y"]}},"comment":{"reference":"wp-admin\/js\/dashboard.js"}}
{"translation-revision-date":"2025-04-25 20:25:55+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Screen Options updated.":["Sk\u00e4rmalternativen har uppdaterats."],"Attend an upcoming event near you.":["Bes\u00f6k ett kommande evenemang i din n\u00e4rhet."],"Events widget offset prefix\u0004GMT":["GMT"],"%1$s %2$d \u2013 %3$s %4$d, %5$d":["%2$d %1$s \u2013 %4$d %3$s %5$d"],"upcoming events year format\u0004Y":["Y"],"upcoming events day format\u0004j":["j"],"%1$s %2$d\u2013%3$d, %4$d":["%2$d\u2013%3$d %1$s %4$d"],"upcoming events month format\u0004F":["F"],"City updated. Listing events near %s.":["Staden har uppdaterats. Nu visas evenemang i n\u00e4rheten av %s."],"We couldn\u2019t locate %s. Please try another nearby city. For example: Kansas City; Springfield; Portland.":["Vi hittade inte %s. F\u00f6rs\u00f6k med n\u00e5gon annan stad i din n\u00e4rhet, t.ex. Stockholm, Lule\u00e5 eller Tomelilla."],"An error occurred. Please try again.":["Ett fel uppstod. F\u00f6rs\u00f6k igen."],"Enter your closest city to find nearby events.":["Skriv in din n\u00e4rmaste stad f\u00f6r att h\u00e5lla koll p\u00e5 evenemang din n\u00e4rhet."],"l, M j, Y":["D j M Y"]}},"comment":{"reference":"wp-admin\/js\/dashboard.js"}}

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -2,7 +2,7 @@
# This file is distributed under the same license as the Themes - HitMag package.
msgid ""
msgstr ""
"PO-Revision-Date: 2024-10-02 13:54:32+0000\n"
"PO-Revision-Date: 2025-05-31 21:07:11+0000\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -17,6 +17,26 @@ msgstr ""
msgid "HitMag"
msgstr "HitMag"
#: inc/widgets/popular-posts.php:44
msgid "Category"
msgstr "Kategori"
#: inc/customizer/customizer.php:168
msgid "After Site Header"
msgstr "Efter sidhuvud för webbplats"
#: inc/customizer/customizer.php:167
msgid "Before Entry Header"
msgstr "Före sidhuvud för inlägg"
#: inc/customizer/customizer.php:156
msgid "RankMath Breadcrumbs"
msgstr "RankMath synlig sökväg"
#: inc/customizer/customizer.php:155
msgid "Breadcrumb NavXT"
msgstr "Breadcrumb NavXT"
#: inc/customizer/customizer.php:149
msgid "Breadcrumb Source"
msgstr "Källa för synlig sökväg"
@ -61,23 +81,23 @@ msgstr "CSS-standard"
msgid "by %s"
msgstr "av %s"
#: inc/customizer/customizer.php:710
#: inc/customizer/customizer.php:720
msgid "Color value"
msgstr "Färgvärde"
#: inc/customizer/customizer.php:709
#: inc/customizer/customizer.php:719
msgid "Select Color"
msgstr "Välj färg"
#: inc/customizer/customizer.php:708
#: inc/customizer/customizer.php:718
msgid "Select default color"
msgstr "Välj standardfärg"
#: inc/customizer/customizer.php:706
#: inc/customizer/customizer.php:716
msgid "Clear color"
msgstr "Rensa färg"
#: inc/customizer/customizer.php:705
#: inc/customizer/customizer.php:715
msgid "Clear"
msgstr "Rensa"
@ -234,7 +254,7 @@ msgstr "Google Fonts"
msgid "Standard Fonts"
msgstr "Standardtypsnitt"
#: inc/customizer/customizer.php:707
#: inc/customizer/customizer.php:717
#: inc/kirki/controls/php/class-kirki-control-base.php:134
#: inc/kirki/controls/views/image.php:36
#: inc/kirki/field/class-kirki-field-image.php:49
@ -258,15 +278,15 @@ msgstr "Skaffa HitMag Pro"
msgid "Ready for more?"
msgstr "Redo för mer?"
#: inc/customizer/customizer.php:610 inc/customizer/customizer.php:612
#: inc/customizer/customizer.php:620 inc/customizer/customizer.php:622
msgid "Theme Details"
msgstr "Detaljer för tema"
#: inc/customizer/customizer.php:604
#: inc/customizer/customizer.php:614
msgid "Read the documentation"
msgstr "Läs dokumentationen"
#: inc/customizer/customizer.php:602
#: inc/customizer/customizer.php:612
msgid "Theme Setup Guide"
msgstr "Inställningsguide för tema"
@ -881,35 +901,35 @@ msgstr "Bakgrundsfärg"
msgid "Theme Primary Color"
msgstr "Temats primära färg"
#: inc/customizer/customizer.php:573
#: inc/customizer/customizer.php:583
msgid "Tags list after the post."
msgstr "Etikettlista efter inlägget."
#: inc/customizer/customizer.php:560
#: inc/customizer/customizer.php:570
msgid "Related posts after the post."
msgstr "Relaterade inlägg efter inlägget."
#: inc/customizer/customizer.php:534
#: inc/customizer/customizer.php:544
msgid "Posts navigation after the post."
msgstr "Inläggsnavigering efter inlägget."
#: inc/customizer/customizer.php:513
#: inc/customizer/customizer.php:523
msgid "Use lightbox feature."
msgstr "Använd lightbox-funktion."
#: inc/customizer/customizer.php:497
#: inc/customizer/customizer.php:507
msgid "Link featured image to full size image."
msgstr "Länka utvald bild till fullstor bild."
#: inc/customizer/customizer.php:484
#: inc/customizer/customizer.php:494
msgid "Featured image inside the single post."
msgstr "Utvald bild inuti det enskilda inlägget."
#: inc/customizer/customizer.php:474
#: inc/customizer/customizer.php:484
msgid "Categories List"
msgstr "Kategorilista"
#: inc/customizer/customizer.php:469
#: inc/customizer/customizer.php:479
msgid "What post meta to display in single post?"
msgstr "Vilka metadata för inlägg ska visas i enskilda inlägg?"
@ -929,15 +949,15 @@ msgstr "Visa knappen ”Läs mer”."
msgid "Excerpt Length"
msgstr "Utdragslängd"
#: inc/customizer/customizer.php:369 inc/customizer/customizer.php:477
#: inc/customizer/customizer.php:369 inc/customizer/customizer.php:487
msgid "Comments Link"
msgstr "Länk till kommentarer"
#: inc/customizer/customizer.php:368 inc/customizer/customizer.php:476
#: inc/customizer/customizer.php:368 inc/customizer/customizer.php:486
msgid "Author"
msgstr "Författare"
#: inc/customizer/customizer.php:367 inc/customizer/customizer.php:475
#: inc/customizer/customizer.php:367 inc/customizer/customizer.php:485
msgid "Date"
msgstr "Datum"
@ -981,8 +1001,8 @@ msgstr "2 inlägg i rad."
msgid "2 Columns Grid"
msgstr "2 kolumn rutnät"
#: inc/customizer/customizer.php:317 inc/customizer/customizer.php:453
#: inc/customizer/customizer.php:586
#: inc/customizer/customizer.php:317 inc/customizer/customizer.php:463
#: inc/customizer/customizer.php:596
msgid "Content and Sidebar Alignment"
msgstr "Justering av innehåll och sidopanel"
@ -1027,16 +1047,16 @@ msgid "Show search icon on Main Navigation."
msgstr "Visa sökikon i huvudnavigering."
#: inc/customizer/customizer.php:182 inc/customizer/customizer.php:382
#: inc/customizer/customizer.php:430 inc/customizer/customizer.php:490
#: inc/customizer/customizer.php:540 inc/customizer/customizer.php:553
#: inc/customizer/customizer.php:566 inc/customizer/customizer.php:579
#: inc/customizer/customizer.php:430 inc/customizer/customizer.php:500
#: inc/customizer/customizer.php:550 inc/customizer/customizer.php:563
#: inc/customizer/customizer.php:576 inc/customizer/customizer.php:589
msgid "Hide"
msgstr "Dölj"
#: inc/customizer/customizer.php:181 inc/customizer/customizer.php:381
#: inc/customizer/customizer.php:429 inc/customizer/customizer.php:489
#: inc/customizer/customizer.php:539 inc/customizer/customizer.php:552
#: inc/customizer/customizer.php:565 inc/customizer/customizer.php:578
#: inc/customizer/customizer.php:429 inc/customizer/customizer.php:499
#: inc/customizer/customizer.php:549 inc/customizer/customizer.php:562
#: inc/customizer/customizer.php:575 inc/customizer/customizer.php:588
msgid "Show"
msgstr "Visa"
@ -1136,40 +1156,40 @@ msgstr "Välj layout"
msgid "Skip to content"
msgstr "Hoppa till innehåll"
#: functions.php:274
#: functions.php:282
msgid "Footer Right Sidebar"
msgstr "Sidfot höger sidopanel"
#: functions.php:265
#: functions.php:273
msgid "Footer Mid Sidebar"
msgstr "Sidfotens mittersta sidopanel"
#: functions.php:256
#: functions.php:264
msgid "Footer Left Sidebar"
msgstr "Sidfot vänster sidopanel"
#: functions.php:231
#: functions.php:239
msgid "Add widgets here."
msgstr "Lägg till widgetar här."
#: functions.php:229
#: functions.php:237
msgid "Main Sidebar"
msgstr "Primär sidopanel"
#: functions.php:191
#: functions.php:199
msgid "Social Links Menu"
msgstr "Meny för sociala länkar"
#: functions.php:54
#: functions.php:62
msgid "Social Media Menu"
msgstr "Social mediameny"
#: functions.php:53 functions.php:182 header.php:53
#: functions.php:61 functions.php:190 header.php:53
#: inc/customizer/customizer.php:200
msgid "Top Menu"
msgstr "Toppmeny"
#: functions.php:52 functions.php:173 header.php:147
#: functions.php:60 functions.php:181 header.php:147
#: inc/customizer/customizer.php:209
msgid "Main Menu"
msgstr "Huvudmeny"

View File

@ -2423,4 +2423,4 @@ msgstr "WordPress-teamet"
#: style.css
#, gp-priority: low
msgid "https://wordpress.org/themes/twentytwentyfive/"
msgstr "https://sv.wordpress.org/themes/twentytwentyfive/"
msgstr "https://sv.wordpress.org/themes/twentytwentyfive/"

View File

@ -19,3 +19,4 @@ function checkTheThumbnail($post)
}
add_filter('has_post_thumbnail', 'checkTheThumbnail');
add_filter( 'wp_prevent_unsupported_mime_type_uploads', '__return_false' );

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 MiB

View File

@ -458,19 +458,21 @@ function wp_admin_bar_site_menu( $wp_admin_bar ) {
* @since 5.9.0
* @since 6.3.0 Added `$_wp_current_template_id` global for editing of current template directly from the admin bar.
* @since 6.6.0 Added the `canvas` query arg to the Site Editor link.
* @since 6.8.0 Removed the query args to ensure that the link opens the starting screen of the Site Editor.
*
* @global string $_wp_current_template_id
*
* @param WP_Admin_Bar $wp_admin_bar The WP_Admin_Bar instance.
*/
function wp_admin_bar_edit_site_menu( $wp_admin_bar ) {
global $_wp_current_template_id;
// Don't show if a block theme is not activated.
if ( ! wp_is_block_theme() ) {
return;
}
// Don't show for users who can't edit theme options.
if ( ! current_user_can( 'edit_theme_options' ) ) {
// Don't show for users who can't edit theme options or when in the admin.
if ( ! current_user_can( 'edit_theme_options' ) || is_admin() ) {
return;
}
@ -478,7 +480,14 @@ function wp_admin_bar_edit_site_menu( $wp_admin_bar ) {
array(
'id' => 'site-editor',
'title' => __( 'Edit Site' ),
'href' => admin_url( 'site-editor.php' ),
'href' => add_query_arg(
array(
'postType' => 'wp_template',
'postId' => $_wp_current_template_id,
'canvas' => 'edit',
),
admin_url( 'site-editor.php' )
),
)
);
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1248,8 +1248,25 @@ function apply_block_hooks_to_content_from_post_object( $content, $post = null,
$content
);
/*
* We need to avoid inserting any blocks hooked into the `before` and `after` positions
* of the temporary wrapper block that we create to wrap the content.
* See https://core.trac.wordpress.org/ticket/63287 for more details.
*/
$suppress_blocks_from_insertion_before_and_after_wrapper_block = static function ( $hooked_block_types, $relative_position, $anchor_block_type ) use ( $wrapper_block_type ) {
if (
$wrapper_block_type === $anchor_block_type &&
in_array( $relative_position, array( 'before', 'after' ), true )
) {
return array();
}
return $hooked_block_types;
};
// Apply Block Hooks.
add_filter( 'hooked_block_types', $suppress_blocks_from_insertion_before_and_after_wrapper_block, PHP_INT_MAX, 3 );
$content = apply_block_hooks_to_content( $content, $post, $callback );
remove_filter( 'hooked_block_types', $suppress_blocks_from_insertion_before_and_after_wrapper_block, PHP_INT_MAX );
// Finally, we need to remove the temporary wrapper block.
$content = remove_serialized_parent_block( $content );

View File

@ -26,7 +26,7 @@ function render_block_core_post_author_name( $attributes, $content, $block ) {
return '';
}
if ( ! post_type_supports( $block->context['postType'], 'author' ) ) {
if ( isset( $block->context['postType'] ) && ! post_type_supports( $block->context['postType'], 'author' ) ) {
return '';
}

View File

@ -26,7 +26,7 @@ function render_block_core_post_author( $attributes, $content, $block ) {
return '';
}
if ( ! post_type_supports( $block->context['postType'], 'author' ) ) {
if ( isset( $block->context['postType'] ) && ! post_type_supports( $block->context['postType'], 'author' ) ) {
return '';
}

View File

@ -1396,7 +1396,7 @@ final class _WP_Editors {
'Apply' => __( 'Apply' ), // Tooltip for the 'apply' button in the inline link dialog.
'Link options' => __( 'Link options' ), // Tooltip for the 'link options' button in the inline link dialog.
'Visual' => _x( 'Visual', 'Name for the Visual editor tab' ), // Editor switch tab label.
'Code' => _x( 'Code', 'Name for the Code editor tab (formerly Text)' ), // Editor switch tab label.
'Code|tab' => _x( 'Code', 'Name for the Code editor tab (formerly Text)' ), // Editor switch tab label.
'Add Media' => array( __( 'Add Media' ), 'accessM' ), // Tooltip for the 'Add Media' button in the block editor Classic block.
// Shortcuts help modal.

View File

@ -175,7 +175,12 @@
clear:both;
}
.has-metaboxes .editor-visual-editor{
.has-metaboxes .interface-interface-skeleton__content:has(.edit-post-meta-boxes-main) .editor-visual-editor{
flex-basis:0%;
flex-shrink:1;
}
.has-metaboxes .editor-visual-editor.is-iframed{
isolation:isolate;
}

File diff suppressed because one or more lines are too long

View File

@ -175,7 +175,12 @@
clear:both;
}
.has-metaboxes .editor-visual-editor{
.has-metaboxes .interface-interface-skeleton__content:has(.edit-post-meta-boxes-main) .editor-visual-editor{
flex-basis:0%;
flex-shrink:1;
}
.has-metaboxes .editor-visual-editor.is-iframed{
isolation:isolate;
}

File diff suppressed because one or more lines are too long

View File

@ -810,7 +810,7 @@ body.is-fullscreen-mode .interface-interface-skeleton{
}
.editor-visual-editor{
flex:1 1 0%;
flex:1 0 auto;
}
.components-editor-notices__dismissible,.components-editor-notices__pinned{
@ -2427,7 +2427,6 @@ textarea.editor-post-text-editor:-ms-input-placeholder{
align-items:center;
background-color:#ddd;
display:flex;
overflow:hidden;
position:relative;
}
.editor-visual-editor iframe[name=editor-canvas]{
@ -2439,6 +2438,9 @@ textarea.editor-post-text-editor:-ms-input-placeholder{
.editor-visual-editor.has-padding{
padding:24px 24px 0;
}
.editor-visual-editor.is-iframed{
overflow:hidden;
}
.editor-visual-editor .components-button{
font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;
font-size:13px;
@ -2447,22 +2449,6 @@ textarea.editor-post-text-editor:-ms-input-placeholder{
.editor-visual-editor .components-button.has-icon,.editor-visual-editor .components-button.is-tertiary{
padding:6px;
}
.editor-visual-editor.is-scrollable .block-editor-block-canvas{
overflow:auto;
}
.editor-visual-editor.is-scrollable .block-editor-block-canvas>.block-editor-writing-flow{
box-sizing:border-box;
display:flow-root;
min-height:100%;
}
.editor-visual-editor.is-scrollable .block-editor-block-canvas>.block-editor-iframe__container{
display:flex;
flex-direction:column;
}
.editor-visual-editor.is-scrollable .block-editor-block-canvas>.block-editor-iframe__container>.block-editor-iframe__scale-container{
display:flow-root;
flex:1 0 fit-content;
}
.editor-fields-content-preview{
border-radius:4px;

File diff suppressed because one or more lines are too long

View File

@ -810,7 +810,7 @@ body.is-fullscreen-mode .interface-interface-skeleton{
}
.editor-visual-editor{
flex:1 1 0%;
flex:1 0 auto;
}
.components-editor-notices__dismissible,.components-editor-notices__pinned{
@ -2427,7 +2427,6 @@ textarea.editor-post-text-editor:-ms-input-placeholder{
align-items:center;
background-color:#ddd;
display:flex;
overflow:hidden;
position:relative;
}
.editor-visual-editor iframe[name=editor-canvas]{
@ -2439,6 +2438,9 @@ textarea.editor-post-text-editor:-ms-input-placeholder{
.editor-visual-editor.has-padding{
padding:24px 24px 0;
}
.editor-visual-editor.is-iframed{
overflow:hidden;
}
.editor-visual-editor .components-button{
font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;
font-size:13px;
@ -2447,22 +2449,6 @@ textarea.editor-post-text-editor:-ms-input-placeholder{
.editor-visual-editor .components-button.has-icon,.editor-visual-editor .components-button.is-tertiary{
padding:6px;
}
.editor-visual-editor.is-scrollable .block-editor-block-canvas{
overflow:auto;
}
.editor-visual-editor.is-scrollable .block-editor-block-canvas>.block-editor-writing-flow{
box-sizing:border-box;
display:flow-root;
min-height:100%;
}
.editor-visual-editor.is-scrollable .block-editor-block-canvas>.block-editor-iframe__container{
display:flex;
flex-direction:column;
}
.editor-visual-editor.is-scrollable .block-editor-block-canvas>.block-editor-iframe__container>.block-editor-iframe__scale-container{
display:flow-root;
flex:1 0 fit-content;
}
.editor-fields-content-preview{
border-radius:4px;

File diff suppressed because one or more lines are too long

Some files were not shown because too many files have changed in this diff Show More