-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstrings.js
776 lines (735 loc) · 44.2 KB
/
strings.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
export const strings = {
en: {
appTitle1: 'Pareto',
email: 'Email',
login: 'Sign In',
logout: 'Logout',
loggingIn: 'Signing In...',
signup: 'Sign Up',
signingUp: 'Now Registering...',
password: 'Password',
oldPassword: 'Old Password',
newPassword: 'New Password',
confirm: 'Confirm Password',
confirmationCode: 'Confirmation Code',
checkEmail: 'Please check your email for the code.',
resetPassword: 'Reset Password',
lowerArena: 'The Arena',
// landing copy
firstLanding: `Learn to code socially, with friends and mentors.`,
secondLanding: `Structure, accountability and friendly competition will keep you motivated while you train for a new
career.`,
thirdLanding: `Learn how to use the tools of a developer, build your first product for your portfolio, and learn essential computer
science to ace the technical interview.`,
//profile
saving: 'Saving...',
saveProfile: 'Save Profile',
firstName: 'First Name',
lastName: 'Last Name',
github: 'GitHub Username',
city: 'City',
country: 'Country',
phone: 'Phone',
// interface
createNewUser: 'Create New User',
userDirectory: 'User Directory',
matchUsers: 'Match Users',
mentorshipList: 'View Mentorships & Sprint Templates',
sandbox: 'Sandbox',
promoteUser: 'Upgrade User',
basicTraining: 'Full-Stack JS',
technicalTraining: 'Dev Onboarding',
findingWork: 'Finding Work',
cityByCity: 'City Guides',
training: 'Training',
// producto o applicacion
product: 'Build your Product',
interviewing: 'Tech Interviews',
arena: 'The Arena',
arenaSprints: 'Arena Sprints',
mentorship: 'Mentorships',
// tournament: torneo,
achievement: 'Achievement',
viewDailyAchievements: '',
neuroProfile: 'Neuro Athletic Profile',
completionPercentage: 'Completion Percentage',
leaderboard: 'Leaderboard',
position: 'Rank',
library: 'Library of Context',
verify: 'Verify',
nowVerifying: 'Now Verifying..',
sending: 'Sending...',
sendConfirmation: 'Send Confirmation',
startSprint: 'Start a Sprint',
sprintDescription:
'Sprints are 5-Day events where you measure your ability to perform at the highest level. Currently, sprints must start on a Monday and Finish on a Friday.',
create: 'Create',
pageNoExist: "Sorry, this page doesn't exist!",
returnToHome: 'here to go back to the home page.',
markAsComplete: 'Click here to submit',
reviewWork: 'Review Work',
seeTheProof: 'Press to See Proof',
// Tuesday's Work
experienceModule: 'Experience Module',
coachDashboard: 'MyCoach Athletes',
pickSprint: 'Select Sprint',
starts: 'Starts',
finishes: 'Finishes',
close: 'Close',
delete: 'Delete',
weeklyPerformanceAnalytics: 'Weekly Performance Analytics',
back: 'Back',
next: 'Next',
submitProof: 'Submit Proof of Completion',
notesForCoach: 'Notes for Coach',
coachesNotes: "Coach's Notes",
submitLink: 'Link (GitHub, etc)',
attachment: 'Attachment for Proof of Completion',
messaging: 'Pareto League Chat',
enterMessage: 'Type your message here',
achievements: 'Achievements',
points: 'Points',
viewExperience: 'View Progress',
resources: 'Resources',
openLink: 'Open Link in a New Tab',
confirmation: 'Confirmation',
rank: 'Rank',
name: 'Name',
score: 'Score',
viewProfile: 'View Profile',
creating: 'Creating...',
reviewFor: 'Review for',
description: 'Description',
clickToDownload: 'Click here to Download',
requestRevisions: 'Request Revisions',
confirmAchievement: 'Confirm Achievement',
dailyPoints: 'Daily Points',
daily: 'Daily',
weekly: 'Weekly',
weeklyPoints: 'Weekly Points',
upcomingMission: 'Daily Achievements',
finishedMissions: 'Finished Achievements',
goodWork: 'Good Work',
// tours
appFirst:
'It starts with the Pareto Training Camp - an online training program where you will complete achievements, and send them to your mentor for review.',
appSecond:
'The Pareto Arena is where you can test your work ethic and habits. Success in a field like the tech industry can be demanding, and it requires a lifestyle that you can maintain in the long term. By engaging in "sprints", you can track your work and lifestyle habits over the course of 5 days - and see how consistently you are able to maintain a schedule that of a top-performer in your field.',
appThird: `The Library of Context is a place for you to learn the 20% of knowledge that will give you 80% of context in the tech industry, specifically full-stack development. In the Library you'll find curated resources on React, Node, Amazon Web Services and specific packages that you need for enterprise level software and scrappy startups alike.`,
appFourth:
'A simple Pomodoro timer to help you track the time you spend on work - in the future, we will add features to track your pomodoros over time.',
appFifth:
'The Pareto Instant Messenger allows you to message the members of the Pareto community, to ask questions, and to joke around. We will be adding in direct messages soon.',
appSixth:
"Every page has it's own tour - click on the red question mark icon next to each modules header to learn more.",
homeFirst: 'Here you can edit your name, profile picture and bio that is available publicly.',
homeThird:
'Here you can add details about the projects you are working on, to build towards your public profile and let your mentor understand what you are working towards. They can also be concepts or pure ideas.',
expFirst:
'This is one of the assignments within this particular module! You can click or tap one of them, to have the full details displayed on the right hand side.',
expSecond:
'This checkbox represents whether the item has not been started, has been submitted for review, or is completed.',
expThird:
'This is how many EXP this assignment is worth - to achieve the rank of "Advanced Beginner" you must earn 2000EXP. To become a "Jr. Developer" you must earn 6500 EXP. To become an engineer, you must earn 10000EXP for 100% completion.',
expFourth:
'These are the full instructions for completing the assignment. They usually contain some valuable information to provide context for why you are doing them, and at the bottom include detailed instructions for what you must submit to your mentor.',
expFifth:
'This is the button that you click to submit your work. There are three parts - first, writing notes for your coach to explain any issues or positives that came up, then including a link to a related GitHub repository/online website, and finally a space to upload a document (such as a PDF, screenshot, etc.). Do not, in general, upload videos to the platform. Instead, please make a YouTube account, upload any videos there, and then send a link to the video in the submission modal.',
expSixth:
'There are three total modules - Onboarding & Training Camp, Building a Product, and Interviewing for Full-Time Work.',
libraryFirst:
"There are three parts of our public, crowd-sourced Library of Context - curated resources on React, Node.js and Amazon Web Services in 'Technical Training'. In 'Finding Work', these resources will give you insights into popular job boards, how to effectively conduct a job search, start a new start-up, or learn about digital nomadism. The final is the 'City Guide', where we lay out information about the tech scene in a given city or region- for example, what start-up incubators, Meetups, venture capital firms, coding bootcamps and companies are located there? To switch between the cateogories, simply tap on each one.",
librarySecond:
'This is one of the sub-categories that contain curated tutorials and resources - by tapping or clicking it, you will open a modal that will have a list of items. Click on one of them top read a summary, and then open a link to view it in full. Inside each sub-category, you can suggest resources yourself that will be of help to the community and earn Pareto Credits.',
libraryThird:
'Our community is stronger when we each contribute - clicking this icon will open a modal for you upload your own resource that you believe can add value to members in our community. In the future, you will earn Pareto Credits that you can trade in for prizes, products or who knows what. Knowledge is power!',
arenaFirst:
'This screen shows the progress of your current sprint - these boxes show you the current Daily & Weekly Points score, as well as your completion percentages for the Sprint. At the end of the Sprint, the completion percentages are calculated towards your career averages - showing who is on the top of the leaderboard in your community or group of friends.',
arenaSecond: `This is one of your daily objectives - you can read the instructions, and when you are ready - submit proof that you accomplished it! That could be a selfie, audio file - or even just checking that it's done on the honor system. Keep in mind, that all submissions have timestamps - if you check in more than 10 minutes after your daily wake-up time, it may not count and will be audited by your coach and Pareto League members.`,
arenaThird: 'Below here will be a list of the missions you have already completed for the day.',
arenaFourth:
'You can click this link to start another sprint for the following-week! Keep in mind that you need to start it the Sunday before.',
// new for Primrose
createTemplate: 'Create Sprint Template',
editTemplateName: 'Edit the Template Name',
startNewSprint: 'Start New Sprint',
editName: 'Edit Name',
changePicture: 'Change Profile Picture',
cancel: 'Cancel',
organization: 'Organization',
bio: 'Public Bio',
school: 'School',
pleaseChooseAnOption: 'Please Choose an Option',
projects: 'Projects',
projectName: 'Project Name',
projectIdeas: 'Project Notes & Ideas',
noIdeasYet: 'No project ideas yet? Please click the button below to add one.',
noProjectsYet: 'No active project yet? Please click the button below to add one.',
enterNewProjectIdea: 'Enter New Project Idea',
save: 'Save',
githubRepository: 'GitHub Repository',
ifNoSprints: 'Start a new sprint by clicking on the link above!',
viewSprint: 'View Sprint',
myMentees: 'My Mentees',
options: 'Options',
morning: 'Morning',
workday: 'Workday',
evening: 'Evening',
sabbath: 'Sabbath',
weekend: 'Weekend',
loading: 'Loading',
selectTemplate: 'Choose Your Sprint Template',
selectPlayers: 'Choose Your Competitors',
trashTalkPSA: 'Optional: Trash talk. Send a motivating, or withering, message to your competition.',
viewProof: 'View Proof',
noProof: 'No proof was submitted',
arenaNav: 'Arena',
learnNav: 'Learn',
libraryNav: 'Library',
chatNav: 'Chat',
profileNav: 'Profile',
chatroom: 'League Chat',
createEvent: 'Create Event',
eventName: 'Event Name',
eventDescription: 'Event Description',
eventLink: 'Event Link',
eventDate: 'Event Date',
eventStart: 'Event Start',
eventEnd: 'Event End',
eventType: 'Event Type',
dashboard: 'Dashboard',
landingText: 'What people are saying',
fullStackDev: 'Full Stack Dev',
localCommunities: 'Local Communities & Meetups',
suggestResources: 'Click here to suggest a resource into our community knowledge base',
incubators: 'Start-up incubators & Venture Capital Investors',
startups: 'Interesting Start-Ups and Hiring Companies',
localNews: 'Local News & Industry Trends',
fullName: 'Full Name',
streetAddress: 'Street Address',
creditCardInfo: 'Credit Card Info',
myMentors: 'My Mentors',
apprenticeship: 'Full-Stack Apprenticehsip',
myCareer: 'MyCareer',
cheatsheets: "14 laminated cheat sheets, with the 20% of knowledge needed to achieve 80% of the results you are looking for.",
flashcards: "52 flash-cards, which doubles as a deck of cards, to learn the core JavaScript methods & API's.",
stickers: "Workflow stickers, helping you memorize crucial terminal commands using Git, AWS Amplify & Bash.",
workbooks: "Interactive, physical workbook to help you ideate your capstone portfolio project/product, design wireframe mockups, model the information to store in your database, create an architecture diagram, and more.",
support: "Priority support & first access to new features.",
lifetime: "Lifetime access to the Knowledge Base & Arena",
purchase: "Purchase",
morningTitle: 'Morning Routine for Success',
morningSummary: 'Start your day with the right intentions - re-write your goals, verbalize positive affirmations & express gratitude. Eat food. Calisthenic exercises.',
dailyExcerciseTitle: 'Daily Exercise',
exerciseSummary: '20 minutes of intense excercises or 30 minutes of moderate excercise within one hour of waking up.',
meditation: 'Meditation',
meditationSummary: 'Right after lunch, around 1 or 2, meditate to avoid hitting the performance trough.',
eveningTitle: 'Evening Routine for Success',
eveningSummary: "Disconnect from electronics (Kindle E-Ink exception). Reflect & journal on the day's events, what you did right, what you could improve, what you are thankful for. Sleep 8 hours, if possible. 7 minimum.",
consistencyTitle: 'Consistency is King',
consistencySummary: 'Wake up at the same time each day, and check-in with the Pareto app within 5 minutes.',
deepWork: '3 hours of deep work',
deepWorkSummary: "Clock in, and clock out. There is no substitute for putting in the work, whether it's at your 9-5, you art, or your craft.",
eveningCreativity: "Evening Creativity",
creativitySummary: "Whether it's playing a musical instrument, reading, writing or anything in between - do something special, creative and relaxing at night.",
noSmoking: 'No Smoking or Nicotine',
noSmokingSummary: 'It creates short-term dopamine addiction that cripples your ability to perform at a world-class level. Respond to this shortly before your night-time routine.',
noDrinking: 'No Alcohol on Weeknight',
noDrinkingSummary: 'To perform at a world-class level, you need to focus all of your focus and energy. Abstaining from alcohol during the work week helps you have better sleep and more energy the next day.',
eatTheFrog: 'Eat the Frog',
frogSummary: 'This is an expression that means to accomplish your primary daily objective. Each day, there is something that is truly important. Have you finished that thing?',
secondGoal: 'Eat another frog',
secondFrogSummary: 'There is an item that is second in importance, after eating the frog. Have you finished it?'
},
es: {
appTitle1: 'Pareto',
email: 'Correo Electrónico',
login: 'Ingresar',
logout: 'Cerrar Sesión',
loggingIn: 'Ahora Ingresando',
signup: 'Iniciar Sesión',
signingUp: 'Registrarse...',
password: 'Contraseña',
oldPassword: 'Contraseña Vieja',
newPassword: 'Contraseña Nueva',
confirm: 'Confirmar Contraseña',
confirming: 'Ahora Confirmando...',
confirmationCode: 'Código de Confirmación',
checkEmail: 'Por favor revise su correo electrónico para obtener el código.',
resetPassword: 'Restablecer Contraseña',
// landing copy
firstLanding: `Learn to code socially, with friends and mentors.`,
secondLanding: `Structure, accountability and friendly competition will keep you motivated while you train for a new
career.`,
thirdLanding: `Learn how to use the tools of a developer, build your first product for your portfolio, and learn essential computer
science to ace the technical interview.`,
//interface
createNewUser: 'Crear Nuevo Usuario',
userDirectory: 'Directorio de Usuarios',
matchUsers: 'Emparejar Usuarios',
mentorshipList: 'Lista de Mentores & Templados',
sandbox: 'Salvadera',
promoteUser: 'Promover Usuario',
// profile
saving: 'Ahorrando...',
saveProfile: 'Ahorrar Perfil',
firstName: 'Primer Nombre',
lastName: 'Appelido',
github: 'Nombre de Usuario de GitHub',
city: 'Ciudad',
country: 'País',
phone: 'Teléfono',
basicTraining: 'Entrenamiento',
technicalTraining: 'Entrenamiento Tecnico',
findingWork: 'Buscando Trabajo',
cityByCity: 'Guía de Ciudades',
training: 'Entrenamiento',
// producto o applicacion
product: 'Producto',
interviewing: 'Entrevistando',
lowerArena: 'El Estadio',
arena: 'Estadio',
arenaSprints: 'Sprints del Estadio',
mentorship: 'Tutorias',
// tournament: torneo,
neuroProfile: 'Perfil Neuro-Athlético',
completionPercentage: 'Porcentaje de Finalización',
achievement: 'Rango',
viewDailyAchievements: '',
leaderboard: 'Tabla de Posicion',
position: 'Rango',
library: 'Biblioteca Contexto',
verify: 'Verificar',
nowVerifying: 'Ahora Verificando..',
sending: 'Ahora Enviando',
sendConfirmation: 'Enviar Confirmación',
startSprint: 'Iniciar un Sprint',
sprintDescription:
'Los sprints son eventos de 5 días en los que mides tu capacidad para desempeñarte al más alto nivel. Actualmente, los sprints deben comenzar un lunes y terminar un viernes.',
create: 'Crear',
pageNoExist: '¡Lo sentimos, esta página no existe!',
returnToHome: 'aquí para volver a la página de inicio.',
markAsComplete: 'Marcar como Completo',
reviewWork: 'Revisa Trabajo',
seeTheProof: 'Ver la Prueba',
// tuesday work
experienceModule: 'Módulo de Experiencia',
coachDashboard: 'MiEntrenador Atletos',
pickSprint: 'Seleccione un Sprint para Ver',
starts: 'Empieza',
finishes: 'Termina',
close: 'Cerrar',
delete: 'Eliminar',
weeklyPerformanceAnalytics: 'Análisis de Rendimiento Semanal',
back: 'Espalda',
next: 'Siguiente',
submitProof: 'Envié Prueba de Finalización',
notesForCoach: 'Notas Para El Entrenador',
coachesNotes: 'Notas del Entrenador',
submitLink: 'Link (GitHub, etc)',
attachment: 'Adjunto para Prueba de Finalización',
messaging: 'Mensajería Instantánea',
enterMessage: 'Escriba el Mensaje Aquí',
achievements: 'Rangos',
points: 'Puntos',
viewExperience: 'Ver Experiencia',
resources: 'Recursos',
openLink: 'Abrir Enlace en una Pestaña Nueva',
confirmation: 'Confirmación',
rank: 'Rango',
name: 'Nombre',
score: 'Puntuación',
viewProfile: 'Ver Perfil',
creating: 'Creando...',
reviewFor: 'Revisión para',
description: 'Descripción',
clickToDownload: 'Haga click aquí para descargar',
requestRevisions: 'Solicitar Revisiones',
confirmAchievement: 'Confirmar Logro',
// wednesday
dailyPoints: 'Puntos Diarios',
daily: 'Diario',
weekly: 'Semanal',
weeklyPoints: 'Puntos Semanales',
upcomingMission: 'Diarios Misiones',
finishedMissions: 'Misiones Terminas',
goodWork: 'Buen Trabajo',
// tours
appFirst:
'Todo comienza con el Pareto Training Camp, un programa de entrenamiento en línea donde cumplirás tus metas y las enviarás a tu mentor para que los revise.',
appSecond:
'El Estadio es donde puedes poner a prueba tu ética y hábitos de trabajo. El éxito en un campo como la industria de la tecnología puede ser exigente y requiere un estilo de vida que puedas mantener a largo plazo. Al participar en "sprints", puedes realizar un seguimiento de tus hábitos de trabajo y estilo de vida en el transcurso de 5 días. Puedes ver con qué regularidad puedes mantener un horario como el de un profesional de alto rendimiento en tu campo.',
appThird:
'La Biblioteca de Contexto es un lugar donde puedes aprender el 20% del conocimiento que te dará el 80% del contexto de la industria de la tecnología, específicamente en el desarrollo software. En la biblioteca, encontrarás recursos strategicos sobre React.js, Node, Amazon Web Services y paquetes de software específicos que necesitarás tanto para software de nivel empresarial como para startups.',
appFourth:
'Tendrás un simple temporizador Pomodoro para ayudarte a rastrear el tiempo que dedicas al trabajo. En el futuro, agregaremos funciones para rastrear tus pomodoros a lo largo del tiempo.',
appFifth:
'Pareto Instant Messenger te permite enviar mensajes a los miembros de la comunidad, hacer preguntas y bromear. Pronto agregaremos mensajes directos ',
appSixth:
'Cada página tiene su propio recorrido: haz clic en el ícono de signo de interrogación gris junto al encabezado de cada módulo para obtener más información.',
homeFirst: 'Aquí puedes editar tu nombre, foto de perfil y biografía que está disponible públicamente.',
homeThird:
'Aquí puedes agregar detalles sobre los proyectos en los que estás trabajando, para construir tu perfil público y dejar que tu mentor comprenda en qué estás trabajando. También puedes escribir conceptos o ideas .',
expFirst:
'¡Esta es una de las asignaciones dentro de este módulo en particular! Puedes hacer clic o tocar uno de ellos para que se muestren todos los detalles en el lado derecho.',
expSecond:
'Esta casilla de verificación representa si el elemento no se inició, se envió para revisión o si se completó.',
expThird:
'Esta es la cantidad de EXP que vale esta asignación: para alcanzar el rango de "Principiante avanzado" debes ganar 2000EXP. Para convertirse en un "Desarrollador Jr.", debes ganar 6500 EXP. Para convertirse en "Ingeniero", debes ganar 10000 EXP por completar al 100%.',
expFourth:
'Estas son las instrucciones completas para finalizar la tarea. Por lo general, contienen información valiosa para proporcionar un contexto de por qué los estás haciendo. En la parte inferior incluyen instrucciones detalladas sobre lo que debes enviar a su mentor.',
expFifth:
'Este es el botón en el que haces clic para enviar tu trabajo. Hay tres partes: primero, escribir notas para que tu entrenador explique cualquier problema o aspecto positivo que haya surgido. Luego incluir un enlace a un repositorio de GitHub / sitio web en línea relacionado. Finalmente, tendrás un espacio para cargar un documento (como un PDF, captura de pantalla , etc.). En general, no subas videos a la plataforma. En su lugar, crea una cuenta de YouTube, carga cualquier video allí y luego envía el enlace.',
expSixth:
'Hay tres módulos en total: Campamento de incorporación y capacitación, Creación de un producto y Entrevistas para trabajo a tiempo completo.',
libraryFirst: `Hay tres partes de la Biblioteca de contexto: recursos strategicos sobre React, Node.js y Amazon Web Services en 'Capacitación técnica'. En 'Encontrar trabajo', estos recursos te darán información sobre las bolsas de empleo populares, cómo realizar una búsqueda de trabajo de manera efectiva, comenzar una nueva empresa o aprender sobre el nomadismo digital. La final es 'Ciudad por ciudad', donde presentaremos información sobre la escena tecnológica de una ciudad determinada; por ejemplo, cuales start ups, incubadoras, Meetups, firmas de capital de riesgo, campamentos de programación de programación y empresas se encuentran cerca de vos. Para cambiar entre las categorías, simplemente toca en cada una.`,
librarySecond:
'Esta es una de las subcategorías que contienen tutoriales y recursos strategicos; al tocarla o hacer clic en ella, se abrirá un módulo que tendrá una lista de elementos. Haz clic en uno de ellos para leer un resumen y luego abre un enlace para verlo en su totalidad.',
libraryThird:
'Nuestra comunidad es más fuerte cuando cada uno de nosotros contribuye; al hacer clic en este icono, se abrirá un modo para que cargue su propio recurso que cree que puede agregar valor a los miembros de nuestra comunidad. En el futuro, obtendrá Créditos Pareto que podrá canjear por premios, productos o quién sabe qué. ¡El conocimiento es poder!',
arenaFirst:
'Esta pantalla muestra el progreso de tu Sprint actual: estos cuadros le muestran la puntuación actual de puntos diarios y semanales, así como tus porcentajes de finalización del Sprint. Al final del Sprint, los porcentajes de finalización se calculan en función de los promedios de su carrera, lo que muestra quién está en la cima de la tabla de clasificación en su comunidad o grupo de amigos.',
arenaSecond:
'Este es uno de tus objetivos diarios: puedes leer las instrucciones y, cuando esté listo, envíes una prueba de que lo logró. Eso podría ser una selfie, un archivo de audio o incluso simplemente verificar que esté hecho en el sistema de honor. Tenga en cuenta que todas las presentaciones tienen marcas de tiempo: si se registra más de 10 minutos después de su hora diaria de despertarse, es posible que no cuenten y serán auditadas por su entrenador y los miembros de la Liga Pareto.',
arenaThird: 'A continuación, encontrará una lista de las misiones que ya ha completado durante el día.',
arenaFourth:
'¡Puedes haz clic en este enlace para comenzar otro sprint para la semana siguiente! Tenga en cuenta que debe iniciarlo el domingo anterior.',
// new for translation
// new for Primrose
createTemplate: 'Create Sprint Template',
editTemplateName: 'Edit the Template Name',
startNewSprint: 'Start New Sprint',
editName: 'Edit Name',
changePicture: 'Change Profile Picture',
cancel: 'Cancel',
organization: 'Organization',
bio: 'Public Bio',
school: 'School',
pleaseChooseAnOption: 'Please Choose an Option',
projects: 'Projects',
projectName: 'Project Name',
projectIdeas: 'Project Notes & Ideas',
noIdeasYet: 'No project ideas yet? Please click the button below to add one.',
noProjectsYet: 'No active project yet? Please click the button below to add one.',
enterNewProjectIdea: 'Enter New Project Idea',
save: 'Save',
githubRepository: 'GitHub Repository',
ifNoSprints: 'Start a new sprint by clicking on the link above!',
viewSprint: 'View Sprint',
myMentees: 'My Mentees',
options: 'Options',
morning: 'Morning',
workday: 'Workday',
evening: 'Evening',
sabbath: 'Sabbath',
weekend: 'Weekend',
loading: 'Loading',
selectTemplate: 'Choose Your Sprint Template',
selectPlayers: 'Choose Your Competitors',
trashTalkPSA: 'Optional: Trash talk. Send a motivating, or withering, message to your competition.',
viewProof: 'View Proof',
noProof: 'No proof was submitted',
arenaNav: 'Arena',
learnNav: 'Learn',
libraryNav: 'Library',
chatNav: 'Chat',
profileNav: 'Profile',
chatroom: 'League Chat',
createEvent: 'Create Event',
eventName: 'Event Name',
eventDescription: 'Event Description',
eventLink: 'Event Link',
eventDate: 'Event Date',
eventStart: 'Event Start',
eventEnd: 'Event End',
eventType: 'Event Type',
dashboard: 'Dashboard',
landingText: 'What people are saying',
fullStackDev: 'Full Stack Dev',
localCommunities: 'Local Communities & Meetups',
suggestResources: 'Click here to suggest a resource into our community knowledge base',
incubators: 'Start-up incubators & Venture Capital Investors',
startups: 'Interesting Start-Ups and Hiring Companies',
localNews: 'Local News & Industry Trends',
fullName: 'Full Name',
streetAddress: 'Street Address',
creditCardInfo: 'Credit Card Info',
myMentors: 'My Mentors',
apprenticeship: 'Full-Stack Apprenticehsip',
myCareer: 'MyCareer',
cheatsheets: "14 laminated cheat sheets, with the 20% of knowledge needed to achieve 80% of the results you are looking for.",
flashcards: "52 flash-cards, which doubles as a deck of cards, to learn the core JavaScript methods & API's.",
stickers: "Workflow stickers, helping you memorize crucial terminal commands using Git, AWS Amplify & Bash.",
workbooks: "Interactive, physical workbook to help you ideate your capstone portfolio project/product, design wireframe mockups, model the information to store in your database, create an architecture diagram, and more.",
support: "Priority support & first access to new features.",
lifetime: "Lifetime access to the Knowledge Base & Arena",
purchase: "Purchase",
morningTitle: 'Morning Routine for Success',
morningSummary: 'Start your day with the right intentions - re-write your goals, verbalize positive affirmations & express gratitude. Eat food. Calisthenic exercises.',
dailyExcerciseTitle: 'Daily Exercise',
exerciseSummary: '20 minutes of intense excercises or 30 minutes of moderate excercise within one hour of waking up.',
meditation: 'Meditation',
meditationSummary: 'Right after lunch, around 1 or 2, meditate to avoid hitting the performance trough.',
eveningTitle: 'Evening Routine for Success',
eveningSummary: "Disconnect from electronics (Kindle E-Ink exception). Reflect & journal on the day's events, what you did right, what you could improve, what you are thankful for. Sleep 8 hours, if possible. 7 minimum.",
consistencyTitle: 'Consistency is King',
consistencySummary: 'Wake up at the same time each day, and check-in with the Pareto app within 5 minutes.',
deepWork: '3 hours of deep work',
deepWorkSummary: "Clock in, and clock out. There is no substitute for putting in the work, whether it's at your 9-5, you art, or your craft.",
eveningCreativity: "Evening Creativity",
creativitySummary: "Whether it's playing a musical instrument, reading, writing or anything in between - do something special, creative and relaxing at night.",
noSmoking: 'No Smoking or Nicotine',
noSmokingSummary: 'It creates short-term dopamine addiction that cripples your ability to perform at a world-class level. Respond to this shortly before your night-time routine.',
noDrinking: 'No Alcohol on Weeknight',
noDrinkingSummary: 'To perform at a world-class level, you need to focus all of your focus and energy. Abstaining from alcohol during the work week helps you have better sleep and more energy the next day.',
eatTheFrog: 'Eat the Frog',
frogSummary: 'This is an expression that means to accomplish your primary daily objective. Each day, there is something that is truly important. Have you finished that thing?',
secondGoal: 'Eat another frog',
secondFrogSummary: 'There is an item that is second in importance, after eating the frog. Have you finished it?'
},
ug: {
appTitle1: 'Pareto',
email: 'imeyilo yo okugeza nga gmail',
login: 'weyunge ku mukutu',
logout: 'Logout',
loggingIn: "otandiisse okw'eyunga ku mukutu...",
signup: 'Wewandise ku mukutu',
signingUp: 'Otandise okwewanddisa...',
password: 'Pasiwaddi',
oldPassword: 'Pasiwaddi enkadde',
newPassword: 'Pasiwaddi empya',
confirm: 'kaatiliza pasiwaddi',
confirmationCode: 'koodi ekaatiliza',
checkEmail: 'kebela imeyilo yo osobole okulaba koodi ekaatiliza',
resetPassword: 'Ssetinga pasiwaddi empya',
lowerArena: 'The Arena',
// landing copy
firstLanding: "Yiiga okuziimba pulogulaamu ku byuma bikalimagezi ngoli n'abemikwano wamu n'abasomesa.",
secondLanding: "Nga wetegekera omulimu gwo omupya ng'omuziimbi wa pulogulaamu z'okubyuma bikalimagezi, embalilila n'empaka bigya kuyamba osigala kumulamwa.",
thirdLanding: "Yiiga engeri y'okokozesezamu ebikozesebwa abawandiisi ba pulogulaamu z'ebyuma bikalimagezi era owandiike pulogulaamu yo esose osobole okuzimba portifolio yo,ela oyiige n'ebyenkizo mu ssomo lya computer science osobole okuyiita technical yintaviyu.",
//profile
saving: 'Okusseviinga...',
saveProfile: 'Sseviinga Profile',
firstName: 'Elinya enzungu',
lastName: 'Elinya enganda',
github: 'GitHub Username',
city: 'ekibuga',
country: 'ensi',
phone: "enamba y'esiimu",
// interface
createNewUser: 'Create New User',
userDirectory: 'User Directory',
matchUsers: 'Match Users',
mentorshipList: 'View Mentorships & Sprint Templates',
sandbox: 'Sandbox',
promoteUser: 'Upgrade User',
basicTraining: 'Full-Stack JS',
technicalTraining: 'Dev Onboarding',
findingWork: 'Finding Work',
cityByCity: 'City Guides',
training: 'Training',
// producto o applicacion
product: 'Build your Product',
interviewing: 'Tech Interviews',
arena: 'The Arena',
arenaSprints: 'Arena Sprints',
mentorship: 'Mentorships',
// tournament: torneo,
achievement: "By'okuzze wo",
viewDailyAchievements: "Laba by'osobodde okoola mw'olwo olunaku",
neuroProfile: 'Neuro Athletic Profile',
completionPercentage: 'Completion Percentage',
leaderboard: 'Abasukulumye',
position: 'lanka',
library: 'Library of Context',
verify: 'Kakasa',
nowVerifying: 'otandise okakasa.',
sending: 'osiindika...',
sendConfirmation: 'Wereeza confirmation',
startSprint: 'Tandiika Sprint',
sprintDescription:
"Sprint bibeela ebivuulu ebimala enaaku taano ebigezesa obumanyi byo. Sprints zino zakutandiika nga kulunaku olwa Monday nezikomezekebwa kulw'okutaano.",
create: 'Create',
pageNoExist: "Eno peegi teliiyo!",
returnToHome: 'Nyiga wano kuda ku peegi esooka.',
markAsComplete: 'Nyiga wano okuwaayo',
reviewWork: 'Yisaamu eliiso evayuma',
seeTheProof: 'Nyiga wano okulaba obukakafu',
// Tuesday's Work
experienceModule: 'Experience Module',
coachDashboard: 'MyCoach Athletes',
pickSprint: 'Londa Sprint',
starts: 'Entandika',
finishes: 'Enkomekeleza',
close: 'Galawo',
delete: 'Sazaamu',
weeklyPerformanceAnalytics: 'okwekennenya Enkola ya wiiki ',
back: 'Emabega',
next: 'Ekiddako',
submitProof: "Waayo obukakafu obulaga nti omazze",
notesForCoach: 'Notes ezakuwebwa kooki',
coachesNotes: "Notes kooki zaakoze",
submitLink: 'Link (GitHub, etc)',
attachment: 'Attachment for Proof of Completion',
messaging: 'Pareto League Chat',
enterMessage: 'Wandiika mesegiyo wano',
achievements: "By'osobodde okola",
points: 'Obuboneero',
viewExperience: 'View Progress',
resources: 'Resources',
openLink: 'Open Link in a New Tab',
confirmation: 'Okukakasa',
rank: 'Lanka',
name: 'Elinya',
score: 'Obuboneero',
viewProfile: 'Laba Profile',
creating: 'Creating...',
reviewFor: 'Review for',
description: 'Description',
clickToDownload: 'Click here to Download',
requestRevisions: 'Request Revisions',
confirmAchievement: 'Confirm Achievement',
dailyPoints: 'Obuboneero obufunidwa mu lunaku',
daily: 'Ebya bulinaku',
weekly: 'Ebya wiiki',
weeklyPoints: 'Obuboneero bwa wiiki',
upcomingMission: "By'olubililwa okola o'lwo olunaku",
finishedMissions: "Ebilubililwa by'osobodde otuukirizza",
goodWork: 'Omulimu omulungi',
// tours
appFirst:
'byona bitandiika ne Pareto Training Camp - esomo elitegekedwa kumukutu ogwa yintaneeti,nga buli kumutendela ekyenkizo kyokola, omusomeso wo ekisomamu nakuwabula.',
appSecond:
"Pareto Arena kyekifo kyosobola okwegezesezamu enkolayo.Okusunkuluma mu industry eya tekinologiya kisoomoza nnyo ela wetanga enkola etedilila. Kino kisoboka nga wetanila zi 'sprints', osobole okwekanya enkola yo mw'ezo enaku entano.",
appThird:
"Library of Context kyekifo mwosobola okuyigila ebitundu 20 ku buli kikuumi, amageezi agagya okuuwa obuyigilize ebitundu 80 ku buli 100 mu industry eno eya tekinologiya, okusingila ndala essoma lya full-stack development. Mw'eno industry, ojakusanga ebisomesa esomo lya React, React, Node, Amazon Web Services kw'osa ne zi pakeegi ez'enkizo mukwetandikilawo kampuni eyiyo kwosa n'okuwandika software asobola okuntudibwa mwattu nofunawo kukassente",
appFourth:
"kano ka Pomodoro timer kaliwo kuyamba kwe'keneenya kumanya ebiseela by'omanze ku milimu gy'okola - Mu maaso, tugya kw'ongelamu akawiyilo akakuyamba o'trankinga pomodoros zo.",
appFifth:
"Pareto Instant Messenger gwe'mukuutu ogukuyambako osobola okw'ogelagazanya ne ba memba ba Pareto community, okuubuza ebibuzo, wamu n'okusanga sanga mu. Mesegi eza muntu ku muntu ziyitte direct message, zija kw'ongelwamu mumaaso.",
appSixth:
"Buli peegi elina enambula yaayo - koona kuka question mark akali mu laangi ya red osobole okumanya ebisiingawo",
homeFirst:
"Wano osobola ocusaa eliinya lyo, profile picture yo wamu n'ebikwatako ebilabibwa buli'omu",
homeThird:
"Onsobola okwongela byono ebikwata ku pulojekiti gyoba okolako mw'ekyoekiseela, okusobola ozimba profile yo ela n'okuyamba omusomesa wo okuteegela by'olubililwa. Bino bisobola n'okuba ebiteeso byo",
expFirst:
"kino kyekimu kubigeezo ebili mu module eno! Osobola okunyiga ekimu kubyo okusobola okulaba byona ebigyikwaatako ela bino bija kulabikila ku mukono gwo ogwa dyo.",
expSecond:
"Kano akabokisi keeyimiliddewo nga kategeza oba ekintu kyona tekyinatandika, oba kiweewebwayo okugololwa, oba kimaliidwa",
expThird:
"Kino kikulaga ekigeezo kilimu EXP meeka - okusobola okufana lanka eya 'Advanced Beginner' olina okufuna EXP2000. EXP6500 okufuka 'Jr. Developer', okufuuka engineer olina okufuna EXP10000 ela osobole okubeela nga omazze yo ebitundu 100 ku 100.",
expFourth:
"Bino bye bilina okugobelelwa okusobola okumaliliza ekigeezo.Mulimu ebyamakulu ebiyamba o'kwongela okutegela lwaki okola ebigeezo, kwosa na'biki byolina okuwaayo eli omusomesa",
expFifth:
"Kano kekapesa k'onyiga okuwaayo waaka wo. Waliyo ebitundu saatu - esooka, okuwanddika notes ezokuwa kooki okunyoyola ebikutawanyiiza oba ebikwanguyidde, ekitundu ekilala kye kyo kugata mu link eya GitHub repository/online website, ekinsembayo, akabanga kwonotteka ebiwandiko(biyinza obeela PDF, screenshot. etc).Mubufunzi, towaayo butambi bwa vidiyo to mukutu guno, wabula, osobola okugulawo account ku mukutu gwa YouTube n'oteka eyo zi vidiyo, naye bwokola ekyo, tekka link yavidiyo eyo, mu waako wo/ebiwandiiko byo mu submission modal.",
expSixth:
"waliyo zi module saatu - Onboarding & Training Camp, Building a Product, ne Interviewing kulw'omulimu.",
libraryFirst:
"Library yaffe eyabuly'omu elina ebitundu bisaatu, elina ekitundu kyetuyita crowd-sourced Library of Context - ejudde ebiyigiliza emisomo gya React, Node.js kwosa Amazon Web Services mu 'Technical Training'. Mu 'Finding Work' kiyitte okufuna emilimu, ela ebiyigiliza bino biyitte 'resources' bigya kulaga emilimu egye jawulo, engeri y'okunonyaamu omulimu n'engeeri y'okutandikawo kampuni yo. Ekitundu ekisembayo tukiyitta 'City Guide' ela wano tukulaga tekinologiya wayimilidde mu bibuga ebyegyawulo - okugeza Meetup ki, Venture capital firms eziliwa, coding bootcamps meka ela nazikampuni ki, ekiliyo? Okukyusa omutendera/category gy'olimu, kona bukonyi ku'ndala gyoyagala.",
librarySecond:
"Eno y'emu kumitendela ejijudde ebiyigiliza n'ebwokusoma - bw'okoonako, ojakuba ogudde modal elina olukalala lw'ebintu. Kona kukimu ku kyo osobole okusoma ebikikwatako mubunfunze, bwomala oggule link okusobola okusoma ebijikwatako mubujuvu. Buli munda wo'mutendela,osobola okuteesa ebikozesebwa mukuyiga gwe kenyini, by'osuubila nti bijakuyamba ba memba bejinbinja kyaffe, nga ela mukola'ekyo, oja kufuna Pareto Credits.",
libraryThird:
"Akabinja kaffe kakuula nga feena tulina kyetukola - okunyiiga kano akantu kija kugulawo modal empya kwosobola okuweereza ebiyigiliza bwo bw'okiliza nti bija kuyambako ba'memba ba'kabinja kaffe. Ela mu maaso, oja kufanayo Pareto Credits zo'sobola okuwanyisamu n'ofuna ebilabo oba ebya'maguzi. Amagezi, g'emanyi!",
arenaFirst:
"Luno olutimbe lukulaga wotuuse ku sprint - buno obubokisi buukulaga obuboneero bwofuna buli lunaku ne buli wiiki, ela nebintuddu ku buli 100 kwob'otusse kw'eyo sprint. Sprint eyo bw'ogimaliliza, ebitudutundu ku buli kikumi bibalilwa nga binvuunisibwamu obubonnero obwa career yo - kino kiba kilaaga ab'alidde mu banne akkendo mw'ekyo ekitundu kyo oba mu b'emikwano. ",
arenaSecond:
"Kino kyekimu ku bigendelelwa byolina okumaliliza leero - osobola okusoma endagilira, atte bwobela wetegesa, waayo obukakafu nti ddala omaliliza ekyo ekigendelelwa kyolunaku! Eno esobola okubeel selfie, oba akatambi oba okukakasa nti omanze ku honor system. Wabula tewelabira nti bulu luwayo lubeela nesaawo yayo n'olwekyo okuzuuka nga wayisa eddakika 10 kwezzo z'olina okuzuukuka, kiyinza obutabalilwa kooki wo kw'osa ba memba ba Pareto League. ",
arenaThird:
"Wano wansi wogya okusanga olukalala lwa zi mission zona z'onobeela omazze okukola kw'olwo olunaku.",
arenaFourth:
"Bwoba oyagala okutandiika sprint ya wiiki egya, osobola okunyiiga kw'eno link! Naye tewelabira nti ob'olina okutanddika ku Sunday nga Monday tenatuuka.",
// new for primrose
// new for Primrose
createTemplate: 'Zzimba Sprint Template',
editTemplateName: "Kyusa elinya lya Template",
startNewSprint: "Tandika Sprink empya",
editName: 'Kyusa elinya',
changePicture: 'Kyusa Profile Picture',
cancel: 'Sazaamu',
organization: 'Organization',
bio: 'Public Bio',
school: 'Ensomeero',
pleaseChooseAnOption: 'Londako',
projects: 'Pulojekiti',
projectName: "Elinnya lya pulojekiti",
projectIdeas: 'Ebilowoozo ebikwata ku pulojekiti',
noIdeasYet: "Tonafuuna kilowoozo kya pulojekiti? Nyiga akapeesa kano okugatako ekilowozo kyo ",
noProjectsYet: 'Tolina pulojekiti engenda maaso? Nyiiga kano akapeesa okugato pulojekiti',
enterNewProjectIdea: "Tekaamu ekilowoozo kyo ekya pulojekiti empya",
save: 'Ssevinga',
githubRepository: 'GitHub Repository',
ifNoSprints: "okutandiika Sprint empya, koona ku Link eli wagulu awo",
viewSprint: 'Laba Sprint',
myMentees: 'Mbenjigiliza',
options: 'ebyokulondako',
morning: 'kumakya',
workday: "Enaaku za wiiki ez'okola",
evening: 'Akawungenzi',
sabbath: 'Sabaata',
weekend: 'Weekendi',
loading: 'Loading',
selectTemplate: 'Londa Sprint Template',
selectPlayers: "Londa ab'okuvuganya nabo",
trashTalkPSA: "cikyateenka: Juubisa b'ovuganya nabo.",
viewProof: 'Laba obukakafu',
noProof: 'Obukakafu tebwawelebwayo',
arenaNav: 'Arena',
learnNav: 'Yiiga',
libraryNav: 'Library',
chatNav: 'Chat',
profileNav: 'Profile',
chatroom: 'League Chat',
createEvent: 'Tandikawo event',
eventName: 'Eliinya lya event',
eventDescription: 'Ebinyonyola ku event',
eventLink: 'Link ya event',
eventDate: "enaku z'omwenzi event lw'enabaayo",
eventStart: "Event lwentandika",
eventEnd: "Event lw'egwaa",
eventType: "Ekika kya event",
dashboard: 'Dashboard',
landingText: "Ebilowoozo by'abantu",
fullStackDev: 'Full Stack Dev',
localCommunities: 'Local Communities & Meetups',
suggestResources: "Nyiiga wan'okuwaayo ebiloowozo ku resource gy'olowoza elina okugatibwa to community knowledge base",
incubators: 'Start-up incubators & Venture Capital Investors',
startups: 'Interesting Start-Ups and Hiring Companies',
localNews: 'Local News & Industry Trends',
fullName: 'Eliinya lyo',
streetAddress: "Endagililoo gy'obeera",
creditCardInfo: 'Credit Card Info',
myMentors: 'Abaasomesa bange',
apprenticeship: 'Full-Stack Apprenticehsip',
myCareer: 'MyCareer',
cheatsheets: "empapula okuliko kasasi(cheat sheets) 14, ezilina eby'okuyiga ebituuka ku bintu 20 kubuli 100 gewetaga okufuna bitundu 80 ku buli 100 eby'ezo result ziweetaga.",
flashcards: "Mataatu 52,okuyiga eby'ekinzo bya Javascript methods ne API's.",
stickers: "Workflow stickers ezi nakuyamba o'kujukira terminal commands ng'okozsa Git,AWS Amplify ne Bash",
workbooks: "Workbook ezinakuyamba okutukiliza pulojekiti ey'okusa ku potifoliyo,zimba wireframe mockups,teggeka bwiino agenda mu database yo, zimba architecture diagram, wamu n'ebilala bingi",
support: "Priority support & first access to new features.",
lifetime:"Okweganzanyiza mu Knowledge Base ne Arena okutagwawo",
purchase: 'Gguula',
morningTitle: "Routine ey'okumakya enakuwaanguza",
morningSummary: "Ntandika olunaku lwo nebigendelelwa ebituuffu - wandiika by'olubililwa, lago'kusiima wekisanidde. Lya'bulungi emeere yo",
dailyExcerciseTitle: "duyilo",
exerciseSummary: "mu ssawa emu ng'ozukuse, kola duyilo okumala edikkika 20 oba 30",
meditation: 'Meditation',
meditationSummary: "bwomala okulya emeere okugeza essawa musaavu oba munaanaa,ssilikilila mu wewumuzze ko(meditate),obwongo budebujya enkolayo'eleme kukona",
eveningTitle: "Routine ey'olwengulo enakuwaanguza",
eveningSummary: "Wewaale mu ko eby'empuliziganya(okugyako Kindle E-Ink exception).Fumitiliza mu'kubibaddewo o'lwolunaku,by'okooze obulungi,wewetanga okwongela'manyi, webake okumaala essawa 8, ekitono enyo 7",
consistencyTitle: "Obutadilila y'esonga enkulu",
consistencySummary: "zzukuka esaawa zzezimu buli lunaku, okeebele Pareto app yo mu dakiika taano ng'ozuukuse",
deepWork: "Ssawa satu ezokola ng'atodililiza",
deepWorkSummary: "Clock in, and clock out.Teli kwewwala kkola n'akutekamu manyi mubulikimu ky'osalawo okukola",
eveningCreativity: "Evening Creativity",
creativitySummary: "Nga toneebaka, kolaayo ekikuwuumuza ebilowozo, osobola okusoma oba okuwandiika ebikunyumila oba okukuba ku bivuuga okugeza enaaga.",
noSmoking: 'Teli kufuuwa sigala oba taaba',
noSmokingSummary:"sigala aleetawo dopamine addiction ow'ekisela, kino ne kikulemesa okukola emilimu gy'obulungi.Nga tonebaka, kino kiseeko ebiloowozo",
noDrinking: "Teli kunywa mwenge ku naku oz'okola",
noDrinkingSummary: "Okufuuka omukozi ow'akilaasi eyawangulu, weetega okutekay'omwoyo.Okwewala omwenge ku naku ezokola kikuyamba okuuma amanyi go wamu n'okwebaka obulungi",
eatTheFrog: "Ly'ekikere",
frogSummary: "Eno gyogela evvunulwa nti koola ekiluubililwa byo, eky'olunaku. Buli lunaku lulina ekyo ekyokolebwa eky'ensonga, waakiikoze?",
secondGoal: "Ly'ekikere ekilala",
secondFrogSummary: "bwomala okuly'ekikere,Waliyo ekintu eky'okubili eky'esonga,waakiikoze?"
}
};