PluginProbe
Extendify / 2.2.0
Extendify v2.2.0
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 0.7.0 All 126 releases
extendify / src / Shared / lib / pages.js

pages.js in Extendify 2.2.0, at src/Shared/lib/pages.js

167 lines 15.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import { __ } from '@wordpress/i18n';
2
3 export const pageNames = {
4 about: {
5 // translators: This string represents the title of an "About" page on a website that provides information about the website or organization. Please translate it in a way that fits the standard phrasing for an "About" page in the target language, considering the common usage in websites for that language.
6 title: __('About', 'extendify-local'),
7 // translators: This string represents the slug of an "About" page on a website that provides information about the website or organization. Please translate it in a way that fits a slug for an "About" page in the target language, considering the common usage in websites for that language.
8 slug: __('about', 'extendify-local'),
9 alias: ['about', 'about-us', 'recognition', 'stats'],
10 },
11 blog: {
12 // translators: This string represents the title of a "Blog" page on a website that shows recent blog posts. Please translate it in a way that fits the standard phrasing for a "Blog" page in the target language, considering the common usage in websites for that language.
13 title: __('Blog', 'extendify-local'),
14 // translators: This string represents the slug of a "Blog" page on a website that shows recent blog posts. Please translate it in a way that fits a slug for a "Blog" page in the target language, considering the common usage in websites for that language.
15 slug: __('blog', 'extendify-local'),
16 alias: ['blog', 'blog-categories', 'blog-section'],
17 },
18 book: {
19 // translators: This string represents the title of a "Book" page on a website that is meant for booking something. Please translate it in a way that fits the standard phrasing for a "Book" page in the target language, considering the common usage in websites for that language.
20 title: __('Book Now', 'extendify-local'),
21 // translators: This string represents the slug of a "Book" page on a website that is meant for booking something. Please translate it in a way that fits a slug for a "Book" page in the target language, considering the common usage in websites for that language. Make sure to keep the slug lowercase and url-friendly.
22 slug: __('book-now', 'extendify-local'),
23 alias: ['book', 'booking'],
24 },
25 careers: {
26 // translators: This string represents the title of a "Careers" page on a website that is meant for listing available careers. Please translate it in a way that fits the standard phrasing for a "Careers" page in the target language, considering the common usage in websites for that language.
27 title: __('Careers', 'extendify-local'),
28 // translators: This string represents the slug of a "Careers" page on a website that is meant for listing available careers. Please translate it in a way that fits a slug for a "Careers" page in the target language, considering the common usage in websites for that language. Make sure to keep the slug lowercase and url-friendly.
29 slug: __('careers', 'extendify-local'),
30 alias: ['careers', 'career', 'career-with-opening'],
31 },
32 contact: {
33 // translators: This string represents the title of a "Contact" page on a website that gives information for visitors on how to contact the website or organization. Please translate it in a way that fits the standard phrasing for a "Contact" page in the target language, considering the common usage in websites for that language.
34 title: __('Contact', 'extendify-local'),
35 // translators: This string represents the slug of a "Contact" page on a website that gives information for visitors on how to contact the website or organization. Please translate it in a way that fits a slug for a "Contact" page in the target language, considering the common usage in websites for that language. Make sure to keep the slug lowercase and url-friendly.
36 slug: __('contact', 'extendify-local'),
37 alias: ['contact', 'contact-form', 'contact-in-person'],
38 },
39 events: {
40 // translators: This string represents the title of an "Events" page on a website that lists events of any kind. Please translate it in a way that fits the standard phrasing for an "Events" page in the target language, considering the common usage in websites for that language.
41 title: __('Events', 'extendify-local'),
42 // translators: This string represents the slug of an "Events" page on a website that lists events of any kind. Please translate it in a way that fits a slug for an "Events" page in the target language, considering the common usage in websites for that language. Make sure to keep the slug lowercase and url-friendly.
43 slug: __('events', 'extendify-local'),
44 alias: ['events', 'events-section'],
45 },
46 faq: {
47 // translators: This string represents the title of a "FAQ" page on a website that gives information related to frequently asked questions. Please translate it in a way that fits the standard phrasing for a "FAQ" page in the target language, considering the common usage in websites for that language.
48 title: __('FAQ', 'extendify-local'),
49 // translators: This string represents the slug of a "FAQ" page on a website that gives information related to frequently asked questions. Please translate it in a way that fits a slug for a "FAQ" page in the target language, considering the common usage in websites for that language. Make sure to keep the slug lowercase and url-friendly.
50 slug: __('faq', 'extendify-local'),
51 alias: ['faq'],
52 },
53 features: {
54 // translators: This string represents the title of a "Features" page on a website that lists features of a product or service. Please translate it in a way that fits the standard phrasing for a "Features" page in the target language, considering the common usage in websites for that language.
55 title: __('Features', 'extendify-local'),
56 // translators: This string represents the slug of a "Features" page on a website that lists features of a product or service. Please translate it in a way that fits a slug for a "Features" page in the target language, considering the common usage in websites for that language. Make sure to keep the slug lowercase and url-friendly.
57 slug: __('features', 'extendify-local'),
58 alias: ['features'],
59 },
60 gallery: {
61 // translators: This string represents the title of a "Gallery" page on a website that shows a collection of images. Please translate it in a way that fits the standard phrasing for a "Gallery" page in the target language, considering the common usage in websites for that language.
62 title: __('Gallery', 'extendify-local'),
63 // translators: This string represents the slug of a "Gallery" page on a website that shows a collection of images. Please translate it in a way that fits a slug for a "Gallery" page in the target language, considering the common usage in websites for that language. Make sure to keep the slug lowercase and url-friendly.
64 slug: __('gallery', 'extendify-local'),
65 alias: ['gallery'],
66 },
67 home: {
68 // translators: This string represents the title of an "Home" page on a website. Please translate it in a way that fits the standard phrasing for a "Home" page in the target language, considering the common usage in websites for that language.
69 title: __('Home', 'extendify-local'),
70 alias: ['home'],
71 },
72 menu: {
73 // translators: This string represents the title of a "Menu" page on a website that lists food or drink items. Please translate it in a way that fits the standard phrasing for a "Menu" page in the target language, considering the common usage in websites for that language.
74 title: __('Menu', 'extendify-local'),
75 // translators: This string represents the slug of a "Menu" page on a website that lists food or drink items. Please translate it in a way that fits a slug for a "Menu" page in the target language, considering the common usage in websites for that language. Make sure to keep the slug lowercase and url-friendly.
76 slug: __('menu', 'extendify-local'),
77 alias: ['menu'],
78 },
79 portfolio: {
80 // translators: This string represents the title of a "Portfolio" page on a website that showcases a collection of work. Please translate it in a way that fits the standard phrasing for a "Portfolio" page in the target language, considering the common usage in websites for that language.
81 title: __('Portfolio', 'extendify-local'),
82 // translators: This string represents the slug of a "Portfolio" page on a website that showcases a collection of work. Please translate it in a way that fits a slug for a "Portfolio" page in the target language, considering the common usage in websites for that language. Make sure to keep the slug lowercase and url-friendly.
83 slug: __('portfolio', 'extendify-local'),
84 alias: ['portfolio'],
85 },
86 pricing: {
87 // translators: This string represents the title of a "Pricing" page on a website that lists the pricing of products or services. Please translate it in a way that fits the standard phrasing for a "Pricing" page in the target language, considering the common usage in websites for that language.
88 title: __('Pricing', 'extendify-local'),
89 // translators: This string represents the slug of a "Pricing" page on a website that lists the pricing of products or services. Please translate it in a way that fits a slug for a "Pricing" page in the target language, considering the common usage in websites for that language. Make sure to keep the slug lowercase and url-friendly.
90 slug: __('pricing', 'extendify-local'),
91 alias: ['pricing'],
92 },
93 products: {
94 // translators: This string represents the title of a "Products" page on a website that lists products. Please translate it in a way that fits the standard phrasing for a "Products" page in the target language, considering the common usage in websites for that language.
95 title: __('Products', 'extendify-local'),
96 // translators: This string represents the slug of a "Products" page on a website that lists products. Please translate it in a way that fits a slug for a "Products" page in the target language, considering the common usage in websites for that language. Make sure to keep the slug lowercase and url-friendly.
97 slug: __('products', 'extendify-local'),
98 alias: [
99 'products',
100 'best-sellers-products',
101 'featured-products',
102 'new-arrivals-product',
103 'on-sale-products',
104 'product-section',
105 'products-by-category',
106 'products-categories',
107 'top-rated-products',
108 ],
109 },
110 quote: {
111 // translators: This string represents the title of a "Quote" page on a website that allows visitors to request a quote. Please translate it in a way that fits the standard phrasing for a "Quote" page in the target language, considering the common usage in websites for that language.
112 title: __('Quote', 'extendify-local'),
113 // translators: This string represents the slug of a "Quote" page on a website that allows visitors to request a quote. Please translate it in a way that fits a slug for a "Quote" page in the target language, considering the common usage in websites for that language. Make sure to keep the slug lowercase and url-friendly.
114 slug: __('quote', 'extendify-local'),
115 alias: ['quote'],
116 },
117 reservation: {
118 // translators: This string represents the title of a "Reservation" page on a website that allows visitors to make a reservation. Please translate it in a way that fits the standard phrasing for a "Reservation" page in the target language, considering the common usage in websites for that language.
119 title: __('Reservation', 'extendify-local'),
120 // translators: This string represents the slug of a "Reservation" page on a website that allows visitors to make a reservation. Please translate it in a way that fits a slug for a "Reservation" page in the target language, considering the common usage in websites for that language. Make sure to keep the slug lowercase and url-friendly.
121 slug: __('reservation', 'extendify-local'),
122 alias: ['reservation'],
123 },
124 resources: {
125 // translators: This string represents the title of a "Resources" page on a website that provides resources. Please translate it in a way that fits the standard phrasing for a "Resources" page in the target language, considering the common usage in websites for that language.
126 title: __('Resources', 'extendify-local'),
127 // translators: This string represents the slug of a "Resources" page on a website that provides resources. Please translate it in a way that fits a slug for a "Resources" page in the target language, considering the common usage in websites for that language. Make sure to keep the slug lowercase and url-friendly.
128 slug: __('resources', 'extendify-local'),
129 alias: ['resources', 'resource'],
130 },
131 serviceArea: {
132 // translators: This string represents the title of a "Service Area" page on a website that shows the service area of a business, including a map. Please translate it in a way that fits the standard phrasing for a "Service Area" page in the target language, considering the common usage in websites for that language.
133 title: __('Service Area', 'extendify-local'),
134 // translators: This string represents the slug of a "Service Area" page on a website that shows the service area of a business, including a map. Please translate it in a way that fits a slug for a "Service Area" page in the target language, considering the common usage in websites for that language. Make sure to keep the slug lowercase and url-friendly.
135 slug: __('service-area', 'extendify-local'),
136 alias: ['service-area'],
137 },
138 services: {
139 // translators: This string represents the title of a "Services" page on a website that lists services. Please translate it in a way that fits the standard phrasing for a "Services" page in the target language, considering the common usage in websites for that language.
140 title: __('Services', 'extendify-local'),
141 // translators: This string represents the slug of a "Services" page on a website that lists services. Please translate it in a way that fits a slug for a "Services" page in the target language, considering the common usage in websites for that language. Make sure to keep the slug lowercase and url-friendly.
142 slug: __('services', 'extendify-local'),
143 alias: ['services'],
144 },
145 specials: {
146 // translators: This string represents the title of a "Specials" page on a website that lists special offers. Please translate it in a way that fits the standard phrasing for a "Specials" page in the target language, considering the common usage in websites for that language.
147 title: __('Specials', 'extendify-local'),
148 // translators: This string represents the slug of a "Specials" page on a website that lists special offers. Please translate it in a way that fits a slug for a "Specials" page in the target language, considering the common usage in websites for that language. Make sure to keep the slug lowercase and url-friendly.
149 slug: __('specials', 'extendify-local'),
150 alias: ['specials'],
151 },
152 team: {
153 // translators: This string represents the title of a "Team" page on a website that introduces the team members. Please translate it in a way that fits the standard phrasing for a "Team" page in the target language, considering the common usage in websites for
154 title: __('Team', 'extendify-local'),
155 // translators: This string represents the slug of a "Team" page on a website that introduces the team members. Please translate it in a way that fits a slug for a "Team" page in the target language, considering the common usage in websites for that language. Make sure to keep the slug lowercase and url-friendly.
156 slug: __('team', 'extendify-local'),
157 alias: ['team'],
158 },
159 testimonials: {
160 // translators: This string represents the title of a "Testimonials" page on a website that showcases testimonials from customers. Please translate it in a way that fits the standard phrasing for a "Testimonials" page in the target language, considering the common usage in websites for that language.
161 title: __('Testimonials', 'extendify-local'),
162 // translators: This string represents the slug of a "Testimonials" page on a website that showcases testimonials from customers. Please translate it in a way that fits a slug for a "Testimonials" page in the target language, considering the common usage in websites for that language. Make sure to keep the slug lowercase and url-friendly.
163 slug: __('testimonials', 'extendify-local'),
164 alias: ['testimonials', 'testimonial'],
165 },
166 };
167