PluginProbe
Extendify / trunk
Extendify vtrunk
3.2.1 3.2.0 3.1.6 3.1.5 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.6 3.0.5 3.0.4 trunk 0.1.0 0.10.0 0.10.1 0.10.2 0.11.0 0.11.1 0.2.0 0.3.0 0.3.1 0.4.0 0.5.0 0.6.0 All 127 releases
← All changes | src/AutoLaunch/fetchers/get-pages.js +2 -2 3.1.6 → trunk View file →
@@ -4,12 +4,12 @@
4 4 fetchWithTimeout,
5 5 retryTwice,
6 6 setStatus,
7 7 } from '@auto-launch/functions/helpers';
8 +import { launchStrings } from '@auto-launch/strings';
8 9 import { PATTERNS_HOST } from '@constants';
9 10 import { reqDataBasics } from '@shared/lib/data';
10 11 import { siteImageUrls } from '@shared/lib/site-images';
11 -import { __ } from '@wordpress/i18n';
12 12 import { z } from 'zod';
13 13
14 14 const url = `${PATTERNS_HOST}/api/page-templates`;
15 15 const method = 'POST';
@@ -30,9 +30,9 @@
30 30 return { pages: [] };
31 31 }
32 32
33 33 // translators: this is for a action log UI. Keep it short
34 - setStatus(__('Preparing your pages', 'extendify-local'));
34 + setStatus(launchStrings().statusPages);
35 35
36 36 const body = JSON.stringify({
37 37 ...reqDataBasics,
38 38 siteProfile,