@anime.club/translations 1.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE ADDED
@@ -0,0 +1,25 @@
1
+ MIT License
2
+
3
+ Copyright (c) Anime.club and its affiliates.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ You need to place the following link to our website somewhere in your project
13
+ where your visitors can see it, for example in your About page.
14
+ - We use translations from <a href="https://anime.club">Anime.club</a>
15
+
16
+ The above copyright notice and this permission notice shall be included in all
17
+ copies or substantial portions of the Software.
18
+
19
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25
+ SOFTWARE.
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "@anime.club/translations",
3
+ "license": "MIT",
4
+ "publishConfig": {
5
+ "access": "public"
6
+ },
7
+ "version": "1.1.5",
8
+ "type": "module",
9
+ "files": [
10
+ "src",
11
+ "types"
12
+ ],
13
+ "devDependencies": {
14
+ "@10stars/config": "^7.0.1"
15
+ }
16
+ }
package/readme.md ADDED
@@ -0,0 +1,76 @@
1
+ # Anime.club - Translations 🌐
2
+
3
+ This repository contains all translations for the [Anime.club](https://anime.club) website 😉
4
+
5
+ Thank you for taking a look at the translations ❣️
6
+ By making our translations available to everyone, we hope you could kindly help us to improve our translation efforts 🙏
7
+
8
+ ## Quick links (Contents)
9
+
10
+ - [How to edit a translation](#how-to-edit-a-translation)
11
+ - [Project structure](#project-structure)
12
+ - [Use of translations from this repository in your project](#use-of-translations-from-this-repository-in-your-project)
13
+
14
+ ## How to edit a translation
15
+
16
+ The process is easy as 1-2-3:
17
+
18
+ ![GIF on How to Edit a Translation](https://github.com/anime-club/translations/raw/main/.github/how-to-edit-a-translation.gif)
19
+
20
+ 1. Press on the language you would like to edit below
21
+ 2. Another page would open, make changes there
22
+ 3. Submit changes by pressing a green button at the bottom of the page where you edit
23
+
24
+ - [🇸🇦 Arabic (Modern standard)](https://github.com/anime-club/translations/edit/main/src/arabic-standard.ts)
25
+ - [🇨🇳 Chinese (Simplified)](https://github.com/anime-club/translations/edit/main/src/chinese-simplified.ts)
26
+ - [🇺🇸 English](https://github.com/anime-club/translations/edit/main/src/english.ts)
27
+ - [🇫🇷 French](https://github.com/anime-club/translations/edit/main/src/french.ts)
28
+ - [🇩🇪 German](https://github.com/anime-club/translations/edit/main/src/german.ts)
29
+ - [🇮🇳 Hindi](https://github.com/anime-club/translations/edit/main/src/hindi.ts)
30
+ - [🇮🇩 Indonesian](https://github.com/anime-club/translations/edit/main/src/indonesian.ts)
31
+ - [🇯🇵 Japanese](https://github.com/anime-club/translations/edit/main/src/japanese.ts)
32
+ - [🇰🇷 Korean](https://github.com/anime-club/translations/edit/main/src/korean.ts)
33
+ - [🇵🇹 Portuguese](https://github.com/anime-club/translations/edit/main/src/portuguese.ts)
34
+ - [🇷🇺 Russian](https://github.com/anime-club/translations/edit/main/src/russian.ts)
35
+ - [🇪🇸 Spanish](https://github.com/anime-club/translations/edit/main/src/spanish.ts)
36
+ - [🇹🇭 Thai](https://github.com/anime-club/translations/edit/main/src/thai.ts)
37
+ - [🇻🇳 Vietnamese](https://github.com/anime-club/translations/edit/main/src/vietnamese.ts)
38
+
39
+ ## Project structure
40
+
41
+ - all languages are available in [/src](/src) directory
42
+ - if a translation phrase is **not translated yet**:
43
+
44
+ - it has a prefix `"(en) "`
45
+
46
+ - for example if you see in [/src/japanese.ts](/src/japanese.ts):
47
+
48
+ ```ts
49
+ deleteArt: `(en) Delete art`,
50
+ ```
51
+
52
+ - it means we have **not** translated this phrase yet
53
+
54
+ - the translation phrase might be either:
55
+
56
+ - a static value:
57
+
58
+ ```ts
59
+ addBlog: `Add blog`,
60
+ ```
61
+
62
+ - or a value that changes (`n` will be replaced on the website):
63
+
64
+ ```ts
65
+ addedNAgo: (n) => `Added ${n} ago`,
66
+ ```
67
+
68
+ ## Use of translations from this repository in your project
69
+
70
+ If you place the following link to our website somewhere in your project where your visitors can see it, for example in your About page:
71
+
72
+ ```md
73
+ We use translations from <a href="https://anime.club">Anime.club</a>
74
+ ```
75
+
76
+ - if you do so, you are welcome to use our translations from this repository
@@ -0,0 +1,309 @@
1
+ export const text: text = {
2
+ _colon: `: `,
3
+ _comma: `، `,
4
+ _dot: `. `,
5
+ _exclamation: `! `,
6
+ _question: `؟ `,
7
+ _space: ` `,
8
+ about: `حول المستخدم`,
9
+ accept: `قبول`,
10
+ account: `(en) Account`,
11
+ accountActivation: `تفعيل الحساب`,
12
+ accountAlreadyExists: `يوجد حساب مسجّل بالفعل`,
13
+ accountDoesNotExist: `الحساب غير مسجّل`,
14
+ add: `إضافة`,
15
+ addArt: `اضف عمل فني`,
16
+ addBlog: `اضف منشور كتابي`,
17
+ additionalResources: `(en) Additional resources`,
18
+ addMore: `(en) Add more`,
19
+ addNewArt: `أضف عمل فني جديد`,
20
+ addPreview: `أضف معاينة`,
21
+ addSignInVia: `إضافة تسجيل الدخول عبر`,
22
+ advancedOptions: `(en) Advanced options`,
23
+ all: `الكل`,
24
+ alreadySignedIn: `تم تسجيل الدخول بالفعل`,
25
+ amount: `(en) Amount`,
26
+ amountShouldNotBeLessThan: (...v) =>
27
+ `(en) Amount should not be less than ${v[0]}`,
28
+ animeArtByArtistsFromAllOverTheWorld: `أعمال فنية من جميع أنحاء العالم. أعمال فنية مختارة من عالم الأنمي. اختيارنا الفني عبارة عن قائمة لا نهاية لها من أفضل الأعمال الفنية للأنمي.`,
29
+ animeArtSubscribeToArtistsLikeAndCreate: `أعمال أنمي فنية - تابع مختلف الفنانين, أبدي إعجابك وأنشئ مجموعاتك`,
30
+ animeClubTheFirstPlatformToOfferArtistsPaymentsFromViews: `أنمي.كلوب - أول موقع يقدم للفنانين أرباح من مشاهدات قوقل آد-سينس. ادعم الفنانين بمشاهدة محتواهم أو أبدأ الربح من خلال المشاهدات`,
31
+ animeClubViewPostAndEarnFromAnimeContent: `أنمي.كلوب - شاهد وانشر واربح من محتوى عالم الأنمي`,
32
+ animeCommunity: `مجتمع الأنمي`,
33
+ animeDotclubNeverAsksForYourPrivateInformation: `(en) Anime.club never asks for your private information`,
34
+ animeSocialNetwork: `(en) Anime
35
+ Social Network`,
36
+ announcements: `(en) Announcements`,
37
+ apply: `تطبيق`,
38
+ appSettings: `(en) App settings`,
39
+ appsVersionIs: `نسخة التطبيق`,
40
+ areYouSureYouWantTo: `هل أنت متأكد من`,
41
+ art: `أعمال فنية`,
42
+ artAssociatedWithAnime: `أعمال فنية متعلقة بالأنمي`,
43
+ artBy: `العمل الفني من قبل`,
44
+ artCannotBeChanged: `العمل الفني لا يمكن تغييره`,
45
+ authenticationFailed: `فشلت المصادقة`,
46
+ autoPublishingToInstagramIsOnlyAvailableToInstagramBusinessAccounts: `(en) Auto publishing to Instagram is only available to Instagram business accounts`,
47
+ back: `الرجوع`,
48
+ blog: `المدونة`,
49
+ bookmarks: `العلامات المرجعية`,
50
+ browseArt: `تصفح الأعمال`,
51
+ cancel: `إلغاء`,
52
+ cannotStartWithChars: `لا يمكن البدء بـs{:"^$*[]{}()?-"!@#%&/,><':;|~\`"`,
53
+ change: `(en) Change`,
54
+ changeArt: `تغيير العمل الفني`,
55
+ changeAvatar: `تغيير الصورة الشخصية`,
56
+ changeEmail: `(en) Change email`,
57
+ changePassword: `تغيير كلمة السر`,
58
+ chooseExistingChatOrStartANewOne: `اختر محادثةً موجودة أو ابدأ دردشة جديدة`,
59
+ city: `المدينة`,
60
+ clearAll: `امسح الكل`,
61
+ close: `أغلق`,
62
+ colorTheme: `(en) Color theme`,
63
+ comingSoon: `قريبًا...`,
64
+ community: `المجتمع`,
65
+ confirmAccount: `تأكيد الحساب`,
66
+ confirmPassword: `تأكيد كلمة السر`,
67
+ connectWithUsOn: `(en) Connect with us on`,
68
+ contactInformation: `(en) Contact information`,
69
+ continue: `(en) Continue`,
70
+ contractTitle: `(en) Contract Title`,
71
+ copyLink: `نسخ الرابط`,
72
+ couldNotCreateANewRecord: `تعذر إنشاء سجل جديد`,
73
+ country: `الدولة`,
74
+ createANewAccountFailed: `فشل إنشاء حساب جديد`,
75
+ createNewAccount: `إنشاء حساب جديد`,
76
+ currentPassword: `(en) Current password`,
77
+ daily: `(en) Daily`,
78
+ darkDefault: `(en) Dark default`,
79
+ darkHighContrast: `(en) Dark high contrast`,
80
+ dayTheme: `(en) Day theme`,
81
+ delete: `حذف`,
82
+ deleteArt: `حذف الرسم`,
83
+ deletePost: `حذف المنشور`,
84
+ description: `الوصف`,
85
+ details: `التفاصيل`,
86
+ didntReceiveEmail: `لم تتلقى البريد؟`,
87
+ donations: `التبرعات`,
88
+ done: `انتهاء`,
89
+ dragAndDropOrSelectFiles: `(en) Drag & Drop or Select file(s)`,
90
+ drawingContest: `مسابقة الرسم`,
91
+ dueDate: `(en) Due date`,
92
+ earlier: `(en) Earlier`,
93
+ earningFromArts: `الربح من خلال نشر أعمالك الفنية`,
94
+ edit: `تعديل`,
95
+ editPost: `تعديل المنشور`,
96
+ editProfile: `تعديل الملف الشخصي`,
97
+ editTranslations: `تعديل الترجمات`,
98
+ email: `البريد الإلكتروني`,
99
+ emailAlreadyUsedByAnotherAccount: `البريد الإلكتروني قيد الاستخدام من قبل حساب آخر`,
100
+ emailNotifications: `(en) Email Notifications`,
101
+ enterOrPasteALink: `أدخل أو ألصق رابطًا`,
102
+ enterTheAddressAssociatedWithYourAccount: `(en) Enter the address associated with your account, and we'll email you a link to reset your password`,
103
+ enterYourPassword: `(en) Enter your password`,
104
+ error: `(en) Error`,
105
+ errorPleaseContactCustomerSupport: `خطأ! الرجاء التواصل مع دعم العملاء...`,
106
+ exitEditor: `الخروج من وضع التحرير`,
107
+ extensions: `امتدادات الملف`,
108
+ fileSizeIsTooBig: `حجم الملف أكبر من المطلوب`,
109
+ filter: `تصفية`,
110
+ filterBy: `تصفية على حسب`,
111
+ findUser: `البحث عن مستخدم`,
112
+ follow: `متابعة`,
113
+ followers: `متابعون`,
114
+ following: `تُتابع`,
115
+ followMeOn: `تابعني على`,
116
+ follows: `(en) Follows`,
117
+ forAllOtherInquiriesPleaseContactUsAt: `لباقي الاستفسارات, اتصل بنا على:`,
118
+ forgotPassword: `نسيت كلمة السر`,
119
+ forNewMasterpieces: `لأعمال فنية مميزة جديدة`,
120
+ fromAnimeDotClub: `(en) From anime.club`,
121
+ getDetails: `الحصول على تفاصيل`,
122
+ guestView: `وضع الضيف`,
123
+ hire: `(en) Hire`,
124
+ homepage: `الصفحة الرئيسية`,
125
+ howToContactYou: `(en) How to contact you`,
126
+ howToFindYouOnOtherSocialNetworks: `(en) How to find you on other social networks`,
127
+ iAgreeWith: `أتفق على`,
128
+ id: `المُعرف`,
129
+ imgHeightNeedsToBeBiggerThanOrEqualTo: `ارتفاع الصورة يحتاج أن يكون أكبر من أو يساوي`,
130
+ imgWidthNeedsToBeBiggerThanOrEqualTo: `عرض الصورة يحتاج أن يكون أكبر من أو يساوي`,
131
+ introduction: `مقدمة`,
132
+ invalidCode: `رمز غير صحيح`,
133
+ invalidDate: `(en) Invalid date`,
134
+ invalidPartAfterAt: `جزء غير صالح بعد @`,
135
+ invalidPartBeforeAt: `جزء غير صالح قبل @`,
136
+ jobDetails: `(en) Job Details`,
137
+ joinAnimeClubCommunity: `(en) Join Anime.club community with thousands of active creators and cool anime art everyday`,
138
+ joinChat: `الانضمام للمحادثة`,
139
+ joinUsOnFacebook: `انضم معنا على الفيسبوك`,
140
+ language: `(en) Language`,
141
+ languages: `اللغات`,
142
+ letEveryoneKnowHowToDonateToYou: `(en) Let everyone know how to donate to you`,
143
+ letOthersKnowAboutYou: `(en) Let others know about you`,
144
+ lightDefault: `(en) Light default`,
145
+ lightHighContrast: `(en) Light high contrast`,
146
+ likes: `إعجابات`,
147
+ linkCopiedToClipboard: `تم نسخ الرابط إلى الحافظة`,
148
+ livesIn: `أعيش في`,
149
+ location: `(en) Location`,
150
+ logInOrSignUp: `(en) Log in or sign up`,
151
+ logOut: `(en) Log out`,
152
+ maximumNChars: (...v) => `الحد الأقصى للأحرف ${v[0]}`,
153
+ maxSize: `الحجم الأقصى`,
154
+ menu: `القائمة`,
155
+ message: `رسالة`,
156
+ messages: `الرسائل`,
157
+ minHeight: `الارتفاع الأدنى`,
158
+ minimumNChars: (...v) => `الحد الأدنى ${v[0]} حرف`,
159
+ minWidth: `العرض الأدنى`,
160
+ monthly: `(en) Monthly`,
161
+ moreFrom: (...v) => `المزيد من خلال ${v[0]}`,
162
+ mustBeNChars: (...v) => `لا بد أن تكون ${v[0]} حرف`,
163
+ myPayments: `(en) My payments`,
164
+ myProfile: `(en) My profile`,
165
+ mySettings: `(en) My settings`,
166
+ need1Lowercase: `يلزم 1 حرف صغير`,
167
+ need1Number: `يلزم 1 رقم`,
168
+ need1Uppercase: `يلزم 1 حرف كبير`,
169
+ needAtLeast1CharacterFromN: (...v) =>
170
+ `يلزم على الأقل 1 حرف كبير من [${v[0]}]`,
171
+ needNCharacter: (...v) => `يلزم ${v[0]} حرف`,
172
+ newAccount: `حساب جديد`,
173
+ newArt: `عمل فني جديد`,
174
+ newArtworks: `(en) New artworks`,
175
+ newBlog: `منشور جديد`,
176
+ newPassword: `كلمة سر جديدة`,
177
+ newsFeed: `شريط الأخبار`,
178
+ nextTimeYouAuthenticateYouCouldUseThe: `(en) Next time you authenticate, you could use the connected account, instead of the login and password`,
179
+ nightTheme: `(en) Night theme`,
180
+ no: `لا`,
181
+ noAddedFavoriteArts: `لا توجد أي رسومات مُفضلة تمت إضافتها`,
182
+ noInternetConnection: `لا يوجد اتصال بالانترنت!`,
183
+ none: `(en) None`,
184
+ noNotifications: `(en) No notifications`,
185
+ noResults: `(en) No results`,
186
+ notifications: `الإشعارات`,
187
+ nsfwContent18Plus: `محتوى للبالغين (18+)`,
188
+ online: `متصل`,
189
+ onlyLatinLettersNumbersOrSpecialSymbols: `أرقام لاتنية فقط وأرقام ورموز خاصة`,
190
+ onlyNumbers: `أرقام فقط`,
191
+ open: `(en) Open`,
192
+ openGuestView: `افتح وضع الضيف`,
193
+ openingSoon: `قريبًا الافتتاح!`,
194
+ openToWork: `(en) Open to work`,
195
+ optional: `(en) Optional`,
196
+ or: `أو`,
197
+ pageNotFound: `(en) Page not found`,
198
+ password: `كلمة السر`,
199
+ payments: `المدفوعات`,
200
+ personal: `(en) Personal`,
201
+ pleaseCheckYour: (...v) => `(en) Please check your ${v[0]}`,
202
+ pleaseDoNotShareYourPrivateInformationToOthers: `(en) Please do not share your private information to others`,
203
+ pleaseDropOnlyOneImage: `الرجاء إضافة صورة واحدة فقط`,
204
+ pleaseEnterAtLeastNChars: (...v) => `الرجاء إدخال ${v[0]} أحرف على الأقل`,
205
+ pleaseFillOutYourDetails: `الرجاء تعبئة بياناتك`,
206
+ pleaseSignInToYourAccount: `الرجاء تسجيل الدخول لحسابك`,
207
+ pleaseTryAgainOrClick: (...v) =>
208
+ `يرجى المحاولة مرة أخرى أو النقر فوق ${v[0]}`,
209
+ pleaseVerifyYourAccount: `الرجاء تأكيد حسابك`,
210
+ pressHereTo: `أضغط هنا من أجل`,
211
+ privacyPolicy: `سياسة الخصوصية`,
212
+ privateInformation: `(en) Private information`,
213
+ profile: `ملف التعريف`,
214
+ promotions: `(en) Promotions`,
215
+ publicInformation: `(en) Public information`,
216
+ publishOn: (...v) => `(en) Publish on ${v[0]}`,
217
+ rankings: `(en) Rankings`,
218
+ report: `(en) Report`,
219
+ save: `حفظ`,
220
+ saveAvatar: `حفظ الصورة الشخصية`,
221
+ saveChanges: `حفظ التغييرات`,
222
+ selectAnime: `اختر أنمي`,
223
+ selectASingleThemeOrSyncWithYourSystemAndAutomaticallySwitchBetweenDayAndNightThemes: `(en) Select a single theme, or sync with your system and automatically switch between day and night themes`,
224
+ selectAvatar: `اختر صورة شخصية`,
225
+ selectCharacters: `اختر شخصية`,
226
+ selectFile: `اختر ملف`,
227
+ selectTheme: `(en) Select theme`,
228
+ selectThumbnail: `اختر صورة مصغرة`,
229
+ sendEmail: `ارسل رسالة بريد`,
230
+ settings: `الإعدادات`,
231
+ share: `(en) Share`,
232
+ shareYourArtWithTheWorld: `(en) Share your art with the world`,
233
+ shareYourStory: `شارك قصتك!`,
234
+ shop: `تسوق`,
235
+ showLess: `عرض أقل`,
236
+ showMore: `عرض أكثر`,
237
+ signIn: `تسجيل دخول`,
238
+ singleTheme: `(en) Single theme`,
239
+ size: `(en) Size`,
240
+ skip: `تخطى`,
241
+ socialMedia: `وسائل التواصل الاجتماعي`,
242
+ spaceCharacterIsNotAllowed: `غير مسموح بالمسافة`,
243
+ subscribeToTalentsToKeepUpWithTheirProgress: `اشترك في صفحات المواهب لمتابعة إنجازاتهم`,
244
+ successChangedPasswordPleaseSignIn: `تم بنجاح تم تغيير كلمة السر. الرجاء تسجيل الدخول`,
245
+ successCreatedRecord: `تم بنجاح إنشاء السجل!`,
246
+ successUpdatedRecord: `تم بنجاح تحديث السجل!`,
247
+ supportMeOn: `ادعمني على`,
248
+ syncWithSystem: `(en) Sync with system`,
249
+ tellUsAboutYourself: `اخبرنا عن نفسك`,
250
+ termsAndConditions: `الأحكام والشروط`,
251
+ termsOfUse: `شروط الاستخدام`,
252
+ theLinkIsBrokenOrPageHasBeenRemoved: `(en) The link is broken or page has been removed`,
253
+ themeMode: `(en) Theme mode`,
254
+ thisIsThePriceYouPropose: `(en) This is the price you propose`,
255
+ title: `العنوان`,
256
+ today: `(en) Today`,
257
+ toGetWorkRelatedNotifications: `(en) To get work-related notifications`,
258
+ typeYourTextHere: `ادخل النص هنا...`,
259
+ upload: `(en) Upload`,
260
+ uploadAnotherArt: `تحميل عمل فني آخر`,
261
+ uploadAnotherAvatar: `تحميل صورة شخصية أخرى`,
262
+ uploadArtNow: `قم بتحميل عمل فني الآن!`,
263
+ uploadNew: `تحميل جديد`,
264
+ uploadNewArt: `تحميل عمل فني جديد`,
265
+ uploadNewPost: `تحميل منشور جديد`,
266
+ username: `اسم المستخدم`,
267
+ usernameAlreadyExists: `اسم المستخدم مستخدم من قبل`,
268
+ usernameAndXMoreFollowYou: (...v) =>
269
+ `(en) <b>${v[0]}</b> and ${v[1]} more follow you`,
270
+ usernameAndXMoreLikeYourArtwork: (...v) =>
271
+ `(en) <b>${v[0]}</b> and ${v[1]} more like your artwork`,
272
+ usernameFollowsYou: (...v) => `(en) <b>${v[0]}</b> follows you`,
273
+ usernameLikesYourArt: (...v) => `(en) <b>${v[0]}</b> likes your art`,
274
+ useThisEmailTo: `(en) Use this email to: authenticate, receive notifications`,
275
+ valueIsNotTheSame: `القيمة ليست هي نفسها`,
276
+ verificationCode: `رمز التأكيد`,
277
+ verifyCode: `أكد الرمز`,
278
+ visitOurDiscordChannelToGetMoreDetails: `قم بزيارة قناتنا في ديسكورد للحصول على مزيد من التفاصيل`,
279
+ weAreOnInstagram: `تجدنا على انستقرام`,
280
+ weAreWorkingOnIt: `نعمل على الأمر`,
281
+ weDoNotDisplayNSFWContentYet: `لا نعرض محتوى للبالغين بعد`,
282
+ weekly: `(en) Weekly`,
283
+ weHaveSentTooManyEmails: `(en) We have sent too many emails, please try again later or contact customer support`,
284
+ welcomeToAnimeClub: `أهلًا بك في أنمي.كلوب!`,
285
+ weSentAnEmailTo: `أرسلنا بريد إلكتروني إلى:`,
286
+ weSentYouANewVerificationEmailPleaseEnterTheCode: `قمنا بإرسال رسالة تأكيد جديدة على البريد. الرجاء إدخال رمز التأكيد`,
287
+ weSupportOnlyTheFollowingFileExtensions: `ندعم فقط امتدادات الملفات التالية:`,
288
+ work: `(en) Work`,
289
+ workDescription: `(en) Work description`,
290
+ wrongEmailOrPassword: `البريد الإلكتروني أو كلمة المرور غير صحيحين`,
291
+ yes: `نعم`,
292
+ yesterday: `(en) Yesterday`,
293
+ youAreAlreadyAuthenticated: `سبق وقمنا بالتحقق من حسابك`,
294
+ youCanAutoPublishToYourSocialMediaAccount: `(en) You can auto publish to your social media account`,
295
+ youCanModifyTheTypesOfNotificationsYouReceiveViaEmail: `(en) You can modify the types of notifications you receive via email`,
296
+ youCanStillNavigateToThePreviouslyOpenedPages: `لا يزال بإمكانك التنقل للصفحات المفتوحة مسبقًا`,
297
+ youDidNotSelectAnyChats: `لم تُحدد أي محادثات`,
298
+ youDidNotUpdateAnyValues: `لم تقم بتحديث أي قيم`,
299
+ youDoNotHaveAnyChats: `ليس لديك أي محادثات`,
300
+ youHaveNotSavedAnyChanges: `لم تقم بحفظ أي تغييرات, الخروج؟`,
301
+ youHaveNotSetAPassword: `(en) You have not set a password`,
302
+ yourAccountIsVerifiedPleaseSignIn: `تم التحقق من حسابك. الرجاء تسجيل الدخول`,
303
+ yourArts: `أعمالك الفنية`,
304
+ yourAvatar: `صورتك الشخصية`,
305
+ yourBlog: `مدونتك`,
306
+ yourFansAreWaiting: `معجبيك في انتظارك`,
307
+ yourFeedIsEmpty: `شريطك الإخباري فارغ`,
308
+ yourSessionHasExpiredPleaseSignInAgain: `انتهت جلستك, الرجاء تسجيل الدخول مجددًا`,
309
+ }