diff --git a/Makefile b/Makefile index 864c8f0d..a1a9761e 100644 --- a/Makefile +++ b/Makefile @@ -108,7 +108,7 @@ LIBS = -lssl -lcrypto -lpthread -lrt -lmysqlclient -lz -L/usr/lib64/mysql -lm -l # CFLAGS = -Wall -Wextra -mtune=native -O2 -s CFLAGS = -Wall -Wextra -mtune=native -O2 -all: swad_ca swad_de swad_en swad_es swad_fr swad_gn swad_it swad_pl swad_pt +all: swad_ca swad_de swad_en swad_es swad_fr swad_gn swad_it swad_pl swad_pt swad_tr swad_ca: $(OBJS) $(SOAPOBJS) $(SHAOBJS) $(CC) $(CFLAGS) -c -D L=1 swad_help_URL.c swad_text.c swad_text_action.c swad_text_no_html.c @@ -155,7 +155,12 @@ swad_pt: $(OBJS) $(SOAPOBJS) $(CC) $(CFLAGS) -o $@ $(OBJS) swad_help_URL.o swad_text.o swad_text_action.o swad_text_no_html.o $(SOAPOBJS) $(SHAOBJS) $(LIBS) chmod a+x $@ +swad_tr: $(OBJS) $(SOAPOBJS) + $(CC) $(CFLAGS) -c -D L=10 swad_help_URL.c swad_text.c swad_text_action.c swad_text_no_html.c + $(CC) $(CFLAGS) -o $@ $(OBJS) swad_help_URL.o swad_text.o swad_text_action.o swad_text_no_html.o $(SOAPOBJS) $(SHAOBJS) $(LIBS) + chmod a+x $@ + .PHONY: clean clean: - rm -f swad swad_ca swad_de swad_en swad_es swad_fr swad_gn swad_it swad_pl swad_pt swad_help_URL.o swad_text.o swad_text_no_html.o swad_text_action.o $(OBJS) + rm -f swad swad_ca swad_de swad_en swad_es swad_fr swad_gn swad_it swad_pl swad_pt swad_tr swad_help_URL.o swad_text.o swad_text_no_html.o swad_text_action.o $(OBJS) diff --git a/sha2/sha2.o b/sha2/sha2.o index cdc8304e..f512fe77 100644 Binary files a/sha2/sha2.o and b/sha2/sha2.o differ diff --git a/sql/swad.sql b/sql/swad.sql index 06201b48..88e77d29 100644 --- a/sql/swad.sql +++ b/sql/swad.sql @@ -431,6 +431,7 @@ CREATE TABLE IF NOT EXISTS cty_countrs ( Name_it VARCHAR(767) NOT NULL, Name_pl VARCHAR(767) NOT NULL, Name_pt VARCHAR(767) NOT NULL, + Name_tr VARCHAR(767) NOT NULL, WWW_ca VARCHAR(255) NOT NULL, WWW_de VARCHAR(255) NOT NULL, WWW_en VARCHAR(255) NOT NULL, @@ -440,6 +441,7 @@ CREATE TABLE IF NOT EXISTS cty_countrs ( WWW_it VARCHAR(255) NOT NULL, WWW_pl VARCHAR(255) NOT NULL, WWW_pt VARCHAR(255) NOT NULL, + WWW_tr VARCHAR(255) NOT NULL, UNIQUE INDEX(CtyCod), UNIQUE INDEX(Alpha2), INDEX(Name_ca), @@ -450,7 +452,8 @@ CREATE TABLE IF NOT EXISTS cty_countrs ( INDEX(Name_gn), INDEX(Name_it), INDEX(Name_pl), - INDEX(Name_pt)); + INDEX(Name_pt), + INDEX(Name_tr)); -- -- Table dbg_debug: used for debugging purposes -- diff --git a/swad_button.h b/swad_button.h index dd9a64cd..2dd74797 100644 --- a/swad_button.h +++ b/swad_button.h @@ -48,6 +48,5 @@ void Btn_PutConfirmButton (const char *TxtButton); void Btn_PutConfirmButtonInline (const char *TxtButton); void Btn_PutRemoveButton (const char *TxtButton); void Btn_PutRemoveButtonInline (const char *TxtButton); -// void Btn_PutCloseTabButton (const char *TxtButton); #endif diff --git a/swad_changelog.h b/swad_changelog.h index 7305fdad..39c83157 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -606,10 +606,17 @@ TODO: Fix bug: error al enviar un mensaje a dos recipientes, error on duplicate TODO: Attach pdf files in multimedia. */ -#define Log_PLATFORM_VERSION "SWAD 21.98.6 (2022-06-21)" +#define Log_PLATFORM_VERSION "SWAD 21.99 (2022-06-22)" #define CSS_FILE "swad21.97.1.css" #define JS_FILE "swad21.97.4.js" /* + Version 21.99: Jun 22, 2022 New language: Turkish. (331259 lines) + 2 changes necessary in database: +ALTER TABLE cty_countrs ADD COLUMN Name_tr VARCHAR(767) NOT NULL AFTER Name_pt,ADD INDEX (Name_tr); +ALTER TABLE cty_countrs ADD COLUMN WWW_tr VARCHAR(255) NOT NULL AFTER WWW_pt; + Add Turkish language to Apache config files + Add Turkish language to swad_copy.sh + Version 21.98.6: Jun 21, 2022 Some messages translated. (322554 lines) Version 21.98.5: Jun 21, 2022 Some messages translated. (322554 lines) Version 21.98.4: Jun 21, 2022 Some messages translated. (322555 lines) diff --git a/swad_database.c b/swad_database.c index a2319060..f97246d0 100644 --- a/swad_database.c +++ b/swad_database.c @@ -958,7 +958,7 @@ mysql> DESCRIBE cty_countrs; +----------------+--------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +----------------+--------------+------+-----+---------+-------+ -| CtyCod | int(11) | NO | PRI | NULL | | +| CtyCod | int | NO | PRI | NULL | | | Alpha2 | char(2) | NO | UNI | NULL | | | MapAttribution | text | NO | | NULL | | | Name_ca | varchar(767) | NO | MUL | NULL | | @@ -970,6 +970,7 @@ mysql> DESCRIBE cty_countrs; | Name_it | varchar(767) | NO | MUL | NULL | | | Name_pl | varchar(767) | NO | MUL | NULL | | | Name_pt | varchar(767) | NO | MUL | NULL | | +| Name_tr | varchar(767) | NO | MUL | NULL | | | WWW_ca | varchar(255) | NO | | NULL | | | WWW_de | varchar(255) | NO | | NULL | | | WWW_en | varchar(255) | NO | | NULL | | @@ -979,8 +980,9 @@ mysql> DESCRIBE cty_countrs; | WWW_it | varchar(255) | NO | | NULL | | | WWW_pl | varchar(255) | NO | | NULL | | | WWW_pt | varchar(255) | NO | | NULL | | +| WWW_tr | varchar(255) | NO | | NULL | | +----------------+--------------+------+-----+---------+-------+ -21 rows in set (0,00 sec) +23 rows in set (0,00 sec) */ DB_CreateTable ("CREATE TABLE IF NOT EXISTS cty_countrs (" "CtyCod INT NOT NULL," @@ -995,6 +997,7 @@ mysql> DESCRIBE cty_countrs; "Name_it VARCHAR(767) NOT NULL," // Cty_MAX_BYTES_NAME "Name_pl VARCHAR(767) NOT NULL," // Cty_MAX_BYTES_NAME "Name_pt VARCHAR(767) NOT NULL," // Cty_MAX_BYTES_NAME + "Name_tr VARCHAR(767) NOT NULL," // Cty_MAX_BYTES_NAME "WWW_ca VARCHAR(255) NOT NULL," // Cns_MAX_BYTES_WWW "WWW_de VARCHAR(255) NOT NULL," // Cns_MAX_BYTES_WWW "WWW_en VARCHAR(255) NOT NULL," // Cns_MAX_BYTES_WWW @@ -1004,6 +1007,7 @@ mysql> DESCRIBE cty_countrs; "WWW_it VARCHAR(255) NOT NULL," // Cns_MAX_BYTES_WWW "WWW_pl VARCHAR(255) NOT NULL," // Cns_MAX_BYTES_WWW "WWW_pt VARCHAR(255) NOT NULL," // Cns_MAX_BYTES_WWW + "WWW_tr VARCHAR(255) NOT NULL," // Cns_MAX_BYTES_WWW "UNIQUE INDEX(CtyCod),UNIQUE INDEX(Alpha2)," "INDEX(Name_ca)," "INDEX(Name_de)," @@ -1013,7 +1017,8 @@ mysql> DESCRIBE cty_countrs; "INDEX(Name_gn)," "INDEX(Name_it)," "INDEX(Name_pl)," - "INDEX(Name_pt))"); // ISO 3166-1 country codes + "INDEX(Name_pt)," + "INDEX(Name_tr))"); // ISO 3166-1 country codes /***** Table deg_types *****/ /* diff --git a/swad_help_URL.c b/swad_help_URL.c index 223d0f4f..dc3b0390 100644 --- a/swad_help_URL.c +++ b/swad_help_URL.c @@ -48,6 +48,8 @@ const char *Hlp_Multimedia = "Multimedia.en"; #elif L==9 "Multimedia.en"; +#elif L==10 // tr + "Multimedia.en"; #endif /***** START tab *****/ @@ -71,6 +73,8 @@ const char *Hlp_START_Search = "START.Search.en"; #elif L==9 "START.Search.en"; +#elif L==10 // tr + "START.Search.en"; #endif const char *Hlp_START_Timeline = @@ -92,6 +96,8 @@ const char *Hlp_START_Timeline = "START.Timeline.en"; #elif L==9 "START.Timeline.en"; +#elif L==10 // tr + "START.Timeline.en"; #endif const char *Hlp_START_Profiles_view_public_profile = @@ -113,6 +119,8 @@ const char *Hlp_START_Profiles_view_public_profile = "START.Profiles.en#view-public-profile"; #elif L==9 "START.Profiles.en#view-public-profile"; +#elif L==10 // tr + "START.Profiles.en#view-public-profile"; #endif const char *Hlp_START_Profiles_who_to_follow = @@ -134,6 +142,8 @@ const char *Hlp_START_Profiles_who_to_follow = "START.Profiles.en#who-to-follow"; #elif L==9 "START.Profiles.en#who-to-follow"; +#elif L==10 // tr + "START.Profiles.en#who-to-follow"; #endif const char *Hlp_START_Calendar = @@ -155,6 +165,8 @@ const char *Hlp_START_Calendar = "START.Calendar.en"; #elif L==9 "START.Calendar.en"; +#elif L==10 // tr + "START.Calendar.en"; #endif const char *Hlp_START_Notifications = @@ -176,6 +188,8 @@ const char *Hlp_START_Notifications = "START.Notifications.en"; #elif L==9 "START.Notifications.en"; +#elif L==10 // tr + "START.Notifications.en"; #endif const char *Hlp_START_Domains = @@ -197,6 +211,8 @@ const char *Hlp_START_Domains = "START.Domains.en"; #elif L==9 "START.Domains.en"; +#elif L==10 // tr + "START.Domains.en"; #endif const char *Hlp_START_Domains_edit = @@ -218,6 +234,8 @@ const char *Hlp_START_Domains_edit = "START.Domains.en#edit"; #elif L==9 "START.Domains.en#edit"; +#elif L==10 // tr + "START.Domains.en#edit"; #endif /***** SYSTEM tab *****/ @@ -241,6 +259,8 @@ const char *Hlp_SYSTEM_Information = "SYSTEM.Information.en"; #elif L==9 "SYSTEM.Information.en"; +#elif L==10 // tr + "SYSTEM.Information.en"; #endif const char *Hlp_SYSTEM_Countries = @@ -262,6 +282,8 @@ const char *Hlp_SYSTEM_Countries = "SYSTEM.Countries.en"; #elif L==9 "SYSTEM.Countries.en"; +#elif L==10 // tr + "SYSTEM.Countries.en"; #endif const char *Hlp_SYSTEM_Pending = @@ -283,6 +305,8 @@ const char *Hlp_SYSTEM_Pending = "SYSTEM.Pending.en"; #elif L==9 "SYSTEM.Pending.en"; +#elif L==10 // tr + "SYSTEM.Pending.en"; #endif const char *Hlp_SYSTEM_Maintenance_eliminate_old_courses = @@ -304,6 +328,8 @@ const char *Hlp_SYSTEM_Maintenance_eliminate_old_courses = "SYSTEM.Maintenance.en#eliminate-old-courses"; #elif L==9 "SYSTEM.Maintenance.en#eliminate-old-courses"; +#elif L==10 // tr + "SYSTEM.Maintenance.en#eliminate-old-courses"; #endif const char *Hlp_SYSTEM_Banners = @@ -325,6 +351,8 @@ const char *Hlp_SYSTEM_Banners = "SYSTEM.Banners.en"; #elif L==9 "SYSTEM.Banners.en"; +#elif L==10 // tr + "SYSTEM.Banners.en"; #endif const char *Hlp_SYSTEM_Banners_edit = @@ -346,6 +374,8 @@ const char *Hlp_SYSTEM_Banners_edit = "SYSTEM.Banners.en#edit"; #elif L==9 "SYSTEM.Banners.en#edit"; +#elif L==10 // tr + "SYSTEM.Banners.en#edit"; #endif const char *Hlp_SYSTEM_Links = @@ -367,6 +397,8 @@ const char *Hlp_SYSTEM_Links = "SYSTEM.Links.en"; #elif L==9 "SYSTEM.Links.en"; +#elif L==10 // tr + "SYSTEM.Links.en"; #endif const char *Hlp_SYSTEM_Links_edit = @@ -388,6 +420,8 @@ const char *Hlp_SYSTEM_Links_edit = "SYSTEM.Links.en#edit"; #elif L==9 "SYSTEM.Links.en#edit"; +#elif L==10 // tr + "SYSTEM.Links.en#edit"; #endif /***** COUNTRY tab *****/ @@ -411,6 +445,8 @@ const char *Hlp_COUNTRY_Information = "COUNTRY.Information.en"; #elif L==9 "COUNTRY.Information.en"; +#elif L==10 // tr + "COUNTRY.Information.en"; #endif const char *Hlp_COUNTRY_Institutions = @@ -432,6 +468,8 @@ const char *Hlp_COUNTRY_Institutions = "COUNTRY.Institutions.en"; #elif L==9 "COUNTRY.Institutions.en"; +#elif L==10 // tr + "COUNTRY.Institutions.en"; #endif /***** INSTITUTION tab *****/ @@ -455,6 +493,8 @@ const char *Hlp_INSTITUTION_Information = "INSTITUTION.Information.en"; #elif L==9 "INSTITUTION.Information.en"; +#elif L==10 // tr + "INSTITUTION.Information.en"; #endif const char *Hlp_INSTITUTION_Centers = @@ -476,6 +516,8 @@ const char *Hlp_INSTITUTION_Centers = "INSTITUTION.Centers.en"; #elif L==9 "INSTITUTION.Centers.en"; +#elif L==10 // tr + "INSTITUTION.Centers.en"; #endif const char *Hlp_INSTITUTION_Departments = @@ -497,6 +539,8 @@ const char *Hlp_INSTITUTION_Departments = "INSTITUTION.Departments.en"; #elif L==9 "INSTITUTION.Departments.en"; +#elif L==10 // tr + "INSTITUTION.Departments.en"; #endif const char *Hlp_INSTITUTION_Departments_edit = @@ -518,6 +562,8 @@ const char *Hlp_INSTITUTION_Departments_edit = "INSTITUTION.Departments.en#edit"; #elif L==9 "INSTITUTION.Departments.en#edit"; +#elif L==10 // tr + "INSTITUTION.Departments.en#edit"; #endif const char *Hlp_INSTITUTION_Places = @@ -539,6 +585,8 @@ const char *Hlp_INSTITUTION_Places = "INSTITUTION.Places.en"; #elif L==9 "INSTITUTION.Places.en"; +#elif L==10 // tr + "INSTITUTION.Places.en"; #endif const char *Hlp_INSTITUTION_Places_edit = @@ -560,6 +608,8 @@ const char *Hlp_INSTITUTION_Places_edit = "INSTITUTION.Places.en#edit"; #elif L==9 "INSTITUTION.Places.en#edit"; +#elif L==10 // tr + "INSTITUTION.Places.en#edit"; #endif const char *Hlp_INSTITUTION_Holidays = @@ -581,6 +631,8 @@ const char *Hlp_INSTITUTION_Holidays = "INSTITUTION.Holidays.en"; #elif L==9 "INSTITUTION.Holidays.en"; +#elif L==10 // tr + "INSTITUTION.Holidays.en"; #endif const char *Hlp_INSTITUTION_Holidays_edit = @@ -602,6 +654,8 @@ const char *Hlp_INSTITUTION_Holidays_edit = "INSTITUTION.Holidays.en#edit"; #elif L==9 "INSTITUTION.Holidays.en#edit"; +#elif L==10 // tr + "INSTITUTION.Holidays.en#edit"; #endif /***** CENTER tab *****/ @@ -625,6 +679,8 @@ const char *Hlp_CENTER_Information = "CENTER.Information.en"; #elif L==9 "CENTER.Information.en"; +#elif L==10 // tr + "CENTER.Information.en"; #endif const char *Hlp_CENTER_DegreeTypes = @@ -646,6 +702,8 @@ const char *Hlp_CENTER_DegreeTypes = "CENTER.DegreeTypes.en"; #elif L==9 "CENTER.DegreeTypes.en"; +#elif L==10 // tr + "CENTER.DegreeTypes.en"; #endif const char *Hlp_CENTER_DegreeTypes_edit = @@ -667,6 +725,8 @@ const char *Hlp_CENTER_DegreeTypes_edit = "CENTER.DegreeTypes.en#edit"; #elif L==9 "CENTER.DegreeTypes.en#edit"; +#elif L==10 // tr + "CENTER.DegreeTypes.en#edit"; #endif const char *Hlp_CENTER_Degrees = @@ -688,6 +748,8 @@ const char *Hlp_CENTER_Degrees = "CENTER.Degrees.en"; #elif L==9 "CENTER.Degrees.en"; +#elif L==10 // tr + "CENTER.Degrees.en"; #endif const char *Hlp_CENTER_Buildings = @@ -709,6 +771,8 @@ const char *Hlp_CENTER_Buildings = "CENTER.Buildings.en"; #elif L==9 "CENTER.Buildings.en"; +#elif L==10 // tr + "CENTER.Buildings.en"; #endif const char *Hlp_CENTER_Buildings_edit = @@ -730,6 +794,8 @@ const char *Hlp_CENTER_Buildings_edit = "CENTER.Buildings.en#edit-buildings"; #elif L==9 "CENTER.Buildings.en#edit-buildings"; +#elif L==10 // tr + "CENTER.Buildings.en#edit-buildings"; #endif const char *Hlp_CENTER_Rooms = @@ -751,6 +817,8 @@ const char *Hlp_CENTER_Rooms = "CENTER.Rooms.en"; #elif L==9 "CENTER.Rooms.en"; +#elif L==10 // tr + "CENTER.Rooms.en"; #endif const char *Hlp_CENTER_Rooms_edit = @@ -772,6 +840,8 @@ const char *Hlp_CENTER_Rooms_edit = "CENTER.Rooms.en#edit-rooms"; #elif L==9 "CENTER.Rooms.en#edit-rooms"; +#elif L==10 // tr + "CENTER.Rooms.en#edit-rooms"; #endif /***** DEGREE tab *****/ @@ -795,6 +865,8 @@ const char *Hlp_DEGREE_Information = "DEGREE.Information.en"; #elif L==9 "DEGREE.Information.en"; +#elif L==10 // tr + "DEGREE.Information.en"; #endif const char *Hlp_DEGREE_Courses = @@ -816,6 +888,8 @@ const char *Hlp_DEGREE_Courses = "DEGREE.Courses.en"; #elif L==9 "DEGREE.Courses.en"; +#elif L==10 // tr + "DEGREE.Courses.en"; #endif /***** COURSE tab *****/ @@ -839,6 +913,8 @@ const char *Hlp_COURSE_Information = "COURSE.Information.en"; #elif L==9 "COURSE.Information.en"; +#elif L==10 // tr + "COURSE.Information.en"; #endif const char *Hlp_COURSE_Information_textual_information = @@ -860,6 +936,8 @@ const char *Hlp_COURSE_Information_textual_information = "COURSE.Information.en#textual-information"; #elif L==9 "COURSE.Information.en#textual-information"; +#elif L==10 // tr + "COURSE.Information.en#textual-information"; #endif const char *Hlp_COURSE_Information_edit = @@ -881,6 +959,8 @@ const char *Hlp_COURSE_Information_edit = "COURSE.Information.en#edit"; #elif L==9 "COURSE.Information.en#edit"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_COURSE_Program = @@ -902,6 +982,8 @@ const char *Hlp_COURSE_Program = "COURSE.Program.en"; #elif L==9 "COURSE.Program.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_COURSE_Program_new_item = @@ -923,6 +1005,8 @@ const char *Hlp_COURSE_Program_new_item = "COURSE.Program.en#new-item"; #elif L==9 "COURSE.Program.en#new-item"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_COURSE_Program_edit_item = @@ -944,6 +1028,8 @@ const char *Hlp_COURSE_Program_edit_item = "COURSE.Program.en#edit-item"; #elif L==9 "COURSE.Program.en#edit-item"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_COURSE_Guide = @@ -965,6 +1051,8 @@ const char *Hlp_COURSE_Guide = "COURSE.Guide.en"; #elif L==9 "COURSE.Guide.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_COURSE_Guide_edit = @@ -986,6 +1074,8 @@ const char *Hlp_COURSE_Guide_edit = "COURSE.Guide.en#edit"; #elif L==9 "COURSE.Guide.en#edit"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_COURSE_Syllabus = @@ -1007,6 +1097,8 @@ const char *Hlp_COURSE_Syllabus = "COURSE.Syllabus.en"; #elif L==9 "COURSE.Syllabus.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_COURSE_Syllabus_edit = @@ -1028,6 +1120,8 @@ const char *Hlp_COURSE_Syllabus_edit = "COURSE.Syllabus.en#edit"; #elif L==9 "COURSE.Syllabus.en#edit"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_COURSE_Timetable = @@ -1049,6 +1143,8 @@ const char *Hlp_COURSE_Timetable = "COURSE.Timetable.en"; #elif L==9 "COURSE.Timetable.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_COURSE_Bibliography = @@ -1070,6 +1166,8 @@ const char *Hlp_COURSE_Bibliography = "COURSE.Bibliography.en"; #elif L==9 "COURSE.Bibliography.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_COURSE_Bibliography_edit = @@ -1091,6 +1189,8 @@ const char *Hlp_COURSE_Bibliography_edit = "COURSE.Bibliography.en#edit"; #elif L==9 "COURSE.Bibliography.en#edit"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_COURSE_FAQ = @@ -1112,6 +1212,8 @@ const char *Hlp_COURSE_FAQ = "COURSE.FAQ.en"; #elif L==9 "COURSE.FAQ.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_COURSE_FAQ_edit = @@ -1133,6 +1235,8 @@ const char *Hlp_COURSE_FAQ_edit = "COURSE.FAQ.en#edit"; #elif L==9 "COURSE.FAQ.en#edit"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_COURSE_Links = @@ -1154,6 +1258,8 @@ const char *Hlp_COURSE_Links = "COURSE.Links.en"; #elif L==9 "COURSE.Links.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_COURSE_Links_edit = @@ -1175,6 +1281,8 @@ const char *Hlp_COURSE_Links_edit = "COURSE.Links.en#edit"; #elif L==9 "COURSE.Links.en#edit"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif /***** ASSESSMENT tab *****/ @@ -1198,6 +1306,8 @@ const char *Hlp_ASSESSMENT_System = "ASSESSMENT.System.en"; #elif L==9 "ASSESSMENT.System.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ASSESSMENT_System_edit = @@ -1219,6 +1329,8 @@ const char *Hlp_ASSESSMENT_System_edit = "ASSESSMENT.System.en#edit"; #elif L==9 "ASSESSMENT.System.en#edit"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ASSESSMENT_Assignments = @@ -1240,6 +1352,8 @@ const char *Hlp_ASSESSMENT_Assignments = "ASSESSMENT.Assignments.en"; #elif L==9 "ASSESSMENT.Assignments.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ASSESSMENT_Assignments_new_assignment = @@ -1261,6 +1375,8 @@ const char *Hlp_ASSESSMENT_Assignments_new_assignment = "ASSESSMENT.Assignments.en#new-assignment"; #elif L==9 "ASSESSMENT.Assignments.en#new-assignment"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ASSESSMENT_Assignments_edit_assignment = @@ -1282,6 +1398,8 @@ const char *Hlp_ASSESSMENT_Assignments_edit_assignment = "ASSESSMENT.Assignments.en#edit-assignment"; #elif L==9 "ASSESSMENT.Assignments.en#edit-assignment"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif @@ -1304,6 +1422,8 @@ const char *Hlp_ASSESSMENT_Projects = "ASSESSMENT.Projects.en"; #elif L==9 "ASSESSMENT.Projects.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ASSESSMENT_Projects_new_project = @@ -1325,6 +1445,8 @@ const char *Hlp_ASSESSMENT_Projects_new_project = "ASSESSMENT.Projects.en#new-project"; #elif L==9 "ASSESSMENT.Projects.en#new-project"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ASSESSMENT_Projects_edit_project = @@ -1346,6 +1468,8 @@ const char *Hlp_ASSESSMENT_Projects_edit_project = "ASSESSMENT.Projects.en#edit-project"; #elif L==9 "ASSESSMENT.Projects.en#edit-project"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ASSESSMENT_Projects_add_user = @@ -1367,6 +1491,8 @@ const char *Hlp_ASSESSMENT_Projects_add_user = "ASSESSMENT.Projects.en#add-user"; #elif L==9 "ASSESSMENT.Projects.en#add-user"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ASSESSMENT_Questions_editing_questions = @@ -1388,6 +1514,8 @@ const char *Hlp_ASSESSMENT_Questions_editing_questions = "ASSESSMENT.Questions.en#editing-questions"; #elif L==9 "ASSESSMENT.Questions.en#editing-questions"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ASSESSMENT_Questions_writing_a_question = @@ -1409,6 +1537,8 @@ const char *Hlp_ASSESSMENT_Questions_writing_a_question = "ASSESSMENT.Questions.en#writing-a-question"; #elif L==9 "ASSESSMENT.Questions.en#writing-a-question"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ASSESSMENT_Questions_editing_tags = @@ -1430,6 +1560,8 @@ const char *Hlp_ASSESSMENT_Questions_editing_tags = "ASSESSMENT.Questions.en#editing-tags"; #elif L==9 "ASSESSMENT.Questions.en#editing-tags"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ASSESSMENT_Tests = @@ -1451,6 +1583,8 @@ const char *Hlp_ASSESSMENT_Tests = "ASSESSMENT.Tests.en"; #elif L==9 "ASSESSMENT.Tests.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ASSESSMENT_Tests_configuring_tests = @@ -1472,6 +1606,8 @@ const char *Hlp_ASSESSMENT_Tests_configuring_tests = "ASSESSMENT.Tests.en#configuring-tests"; #elif L==9 "ASSESSMENT.Tests.en#configuring-tests"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ASSESSMENT_Tests_results = @@ -1493,6 +1629,8 @@ const char *Hlp_ASSESSMENT_Tests_results = "ASSESSMENT.Tests.en#results"; #elif L==9 "ASSESSMENT.Tests.en#results"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ASSESSMENT_Exams = @@ -1514,6 +1652,8 @@ const char *Hlp_ASSESSMENT_Exams = "ASSESSMENT.Exams.en"; #elif L==9 "ASSESSMENT.Exams.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ASSESSMENT_Exams_edit_exam = @@ -1535,6 +1675,8 @@ const char *Hlp_ASSESSMENT_Exams_edit_exam = "ASSESSMENT.Exams.en#edit-exam"; #elif L==9 "ASSESSMENT.Exams.en#edit-exam"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ASSESSMENT_Exams_question_sets = @@ -1556,6 +1698,8 @@ const char *Hlp_ASSESSMENT_Exams_question_sets = "ASSESSMENT.Exams.en#question-set"; #elif L==9 "ASSESSMENT.Exams.en#question-set"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ASSESSMENT_Exams_sessions = @@ -1577,6 +1721,8 @@ const char *Hlp_ASSESSMENT_Exams_sessions = "ASSESSMENT.Exams.en#sessions"; #elif L==9 "ASSESSMENT.Exams.en#sessions"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ASSESSMENT_Exams_new_exam = @@ -1598,6 +1744,8 @@ const char *Hlp_ASSESSMENT_Exams_new_exam = "ASSESSMENT.Exams.en#new-exam"; #elif L==9 "ASSESSMENT.Exams.en#new-exam"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ASSESSMENT_Exams_questions = @@ -1619,6 +1767,8 @@ const char *Hlp_ASSESSMENT_Exams_questions = "ASSESSMENT.Exams.en#questions"; #elif L==9 "ASSESSMENT.Exams.en#questions"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ASSESSMENT_Exams_answer_exam = @@ -1640,6 +1790,8 @@ const char *Hlp_ASSESSMENT_Exams_answer_exam = "ASSESSMENT.Exams.en#answer-exam"; #elif L==9 "ASSESSMENT.Exams.en#answer-exam"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ASSESSMENT_Exams_results = @@ -1661,6 +1813,8 @@ const char *Hlp_ASSESSMENT_Exams_results = "ASSESSMENT.Exams.en#results"; #elif L==9 "ASSESSMENT.Exams.en#results"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ASSESSMENT_Games = @@ -1682,6 +1836,8 @@ const char *Hlp_ASSESSMENT_Games = "ASSESSMENT.Games.en"; #elif L==9 "ASSESSMENT.Games.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ASSESSMENT_Games_edit_game = @@ -1703,6 +1859,8 @@ const char *Hlp_ASSESSMENT_Games_edit_game = "ASSESSMENT.Games.en#edit-game"; #elif L==9 "ASSESSMENT.Games.en#edit-game"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ASSESSMENT_Games_matches = @@ -1724,6 +1882,8 @@ const char *Hlp_ASSESSMENT_Games_matches = "ASSESSMENT.Games.en#matches"; #elif L==9 "ASSESSMENT.Games.en#matches"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ASSESSMENT_Games_new_game = @@ -1745,6 +1905,8 @@ const char *Hlp_ASSESSMENT_Games_new_game = "ASSESSMENT.Games.en#new-game"; #elif L==9 "ASSESSMENT.Games.en#new-game"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ASSESSMENT_Games_questions = @@ -1766,6 +1928,8 @@ const char *Hlp_ASSESSMENT_Games_questions = "ASSESSMENT.Games.en#questions"; #elif L==9 "ASSESSMENT.Games.en#questions"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ASSESSMENT_Games_results = @@ -1787,6 +1951,8 @@ const char *Hlp_ASSESSMENT_Games_results = "ASSESSMENT.Games.en#results"; #elif L==9 "ASSESSMENT.Games.en#results"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ASSESSMENT_Surveys = @@ -1808,6 +1974,8 @@ const char *Hlp_ASSESSMENT_Surveys = "ASSESSMENT.Surveys.en"; #elif L==9 "ASSESSMENT.Surveys.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ASSESSMENT_Surveys_new_survey = @@ -1829,6 +1997,8 @@ const char *Hlp_ASSESSMENT_Surveys_new_survey = "ASSESSMENT.Surveys.en#new-survey"; #elif L==9 "ASSESSMENT.Surveys.en#new-survey"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ASSESSMENT_Surveys_edit_survey = @@ -1850,6 +2020,8 @@ const char *Hlp_ASSESSMENT_Surveys_edit_survey = "ASSESSMENT.Surveys.en#edit-survey"; #elif L==9 "ASSESSMENT.Surveys.en#edit-survey"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ASSESSMENT_Surveys_questions = @@ -1871,6 +2043,8 @@ const char *Hlp_ASSESSMENT_Surveys_questions = "ASSESSMENT.Surveys.en#questions"; #elif L==9 "ASSESSMENT.Surveys.en#questions"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ASSESSMENT_Calls_for_exams = @@ -1892,6 +2066,8 @@ const char *Hlp_ASSESSMENT_Calls_for_exams = "ASSESSMENT.Calls_for_exams.en"; #elif L==9 "ASSESSMENT.Calls_for_exams.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ASSESSMENT_Calls_for_exam_new_call = @@ -1913,6 +2089,8 @@ const char *Hlp_ASSESSMENT_Calls_for_exam_new_call = "ASSESSMENT.Calls_for_exams.en#new-call"; #elif L==9 "ASSESSMENT.Calls_for_exams.en#new-call"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ASSESSMENT_Announcements_edit_announcement = @@ -1934,6 +2112,8 @@ const char *Hlp_ASSESSMENT_Announcements_edit_announcement = "ASSESSMENT.Calls_for_exams.en#edit-call"; #elif L==9 "ASSESSMENT.Calls_for_exams.en#edit-call"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif /***** FILES tab *****/ @@ -1957,6 +2137,8 @@ const char *Hlp_FILES_Documents = "FILES.Documents.en"; #elif L==9 "FILES.Documents.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_FILES_Private = @@ -1978,6 +2160,8 @@ const char *Hlp_FILES_Private = "FILES.Private.en"; #elif L==9 "FILES.Private.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_FILES_Shared = @@ -1999,6 +2183,8 @@ const char *Hlp_FILES_Shared = "FILES.Shared.en"; #elif L==9 "FILES.Shared.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_FILES_Homework_for_students = @@ -2020,6 +2206,8 @@ const char *Hlp_FILES_Homework_for_students = "FILES.Homework.en#for-students"; #elif L==9 "FILES.Homework.en#for-students"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_FILES_Homework_for_teachers = @@ -2041,6 +2229,8 @@ const char *Hlp_FILES_Homework_for_teachers = "FILES.Homework.en#for-teachers"; #elif L==9 "FILES.Homework.en#for-teachers"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_FILES_Marks = @@ -2062,6 +2252,8 @@ const char *Hlp_FILES_Marks = "FILES.Marks.en"; #elif L==9 "FILES.Marks.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_FILES_Briefcase = @@ -2083,6 +2275,8 @@ const char *Hlp_FILES_Briefcase = "FILES.Briefcase.en"; #elif L==9 "FILES.Briefcase.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif /***** USERS tab *****/ @@ -2106,6 +2300,8 @@ const char *Hlp_USERS_Groups = "USERS.Groups.en"; #elif L==9 "USERS.Groups.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_USERS_Students = @@ -2127,6 +2323,8 @@ const char *Hlp_USERS_Students = "USERS.Students.en"; #elif L==9 "USERS.Students.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_USERS_Students_shared_record_card = @@ -2148,6 +2346,8 @@ const char *Hlp_USERS_Students_shared_record_card = "USERS.Students.en#shared-record-card"; #elif L==9 "USERS.Students.en#shared-record-card"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_USERS_Students_course_record_card = @@ -2169,6 +2369,8 @@ const char *Hlp_USERS_Students_course_record_card = "USERS.Students.en#course-record-card"; #elif L==9 "USERS.Students.en#course-record-card"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_USERS_Administration_administer_one_user = @@ -2190,6 +2392,8 @@ const char *Hlp_USERS_Administration_administer_one_user = "USERS.Administration.en#administer-one-user"; #elif L==9 "USERS.Administration.en#administer-one-user"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_USERS_Administration_administer_multiple_users = @@ -2211,6 +2415,8 @@ const char *Hlp_USERS_Administration_administer_multiple_users = "USERS.Administration.en#administer-multiple-users"; #elif L==9 "USERS.Administration.en#administer-multiple-users"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_USERS_Administration_remove_all_students = @@ -2232,6 +2438,8 @@ const char *Hlp_USERS_Administration_remove_all_students = "USERS.Administration.en#remove-all-students"; #elif L==9 "USERS.Administration.en#remove-all-students"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_USERS_Teachers = @@ -2253,6 +2461,8 @@ const char *Hlp_USERS_Teachers = "USERS.Teachers.en"; #elif L==9 "USERS.Teachers.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_USERS_Teachers_shared_record_card = @@ -2274,6 +2484,8 @@ const char *Hlp_USERS_Teachers_shared_record_card = "USERS.Teachers.en#shared-record-card"; #elif L==9 "USERS.Teachers.en#shared-record-card"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_USERS_Teachers_timetable = @@ -2295,6 +2507,8 @@ const char *Hlp_USERS_Teachers_timetable = "USERS.Teachers.en#timetable"; #elif L==9 "USERS.Teachers.en#timetable"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_USERS_Administrators = @@ -2316,6 +2530,8 @@ const char *Hlp_USERS_Administrators = "USERS.Administrators.en"; #elif L==9 "USERS.Administrators.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_USERS_Guests = @@ -2337,6 +2553,8 @@ const char *Hlp_USERS_Guests = "USERS.Guests.en"; #elif L==9 "USERS.Guests.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_USERS_Duplicates_possibly_duplicate_users = @@ -2358,6 +2576,8 @@ const char *Hlp_USERS_Duplicates_possibly_duplicate_users = "USERS.Duplicates.en#possibly-duplicate-users"; #elif L==9 "USERS.Duplicates.en#possibly-duplicate-users"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_USERS_Duplicates_similar_users = @@ -2379,6 +2599,8 @@ const char *Hlp_USERS_Duplicates_similar_users = "USERS.Duplicates.en#similar-users"; #elif L==9 "USERS.Duplicates.en#similar-users"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_USERS_Attendance = @@ -2400,6 +2622,8 @@ const char *Hlp_USERS_Attendance = "USERS.Attendance.en"; #elif L==9 "USERS.Attendance.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_USERS_Attendance_new_event = @@ -2421,6 +2645,8 @@ const char *Hlp_USERS_Attendance_new_event = "USERS.Attendance.en#new-event"; #elif L==9 "USERS.Attendance.en#new-event"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_USERS_Attendance_edit_event = @@ -2442,6 +2668,8 @@ const char *Hlp_USERS_Attendance_edit_event = "USERS.Attendance.en#edit-event"; #elif L==9 "USERS.Attendance.en#edit-event"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_USERS_Attendance_attendance_list = @@ -2463,6 +2691,8 @@ const char *Hlp_USERS_Attendance_attendance_list = "USERS.Attendance.en#attendance-list"; #elif L==9 "USERS.Attendance.en#attendance-list"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_USERS_SignUp = @@ -2484,6 +2714,8 @@ const char *Hlp_USERS_SignUp = "USERS.SignUp.en"; #elif L==9 "USERS.SignUp.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_USERS_SignUp_confirm_enrolment = @@ -2505,6 +2737,8 @@ const char *Hlp_USERS_SignUp_confirm_enrolment = "USERS.SignUp.en#confirm_enrolment"; #elif L==9 "USERS.SignUp.en#confirm_enrolment"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_USERS_Requests = @@ -2526,6 +2760,8 @@ const char *Hlp_USERS_Requests = "USERS.Requests.en"; #elif L==9 "USERS.Requests.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_USERS_Connected = @@ -2547,6 +2783,8 @@ const char *Hlp_USERS_Connected = "USERS.Connected.en"; #elif L==9 "USERS.Connected.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_USERS_Connected_last_clicks = @@ -2568,6 +2806,8 @@ const char *Hlp_USERS_Connected_last_clicks = "USERS.Connected.en#last-clicks"; #elif L==9 "USERS.Connected.en#last-clicks"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif /***** COMMUNICATION tab *****/ @@ -2591,6 +2831,8 @@ const char *Hlp_COMMUNICATION_Announcements = "COMMUNICATION.Announcements.en"; #elif L==9 "COMMUNICATION.Announcements.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_COMMUNICATION_Notices = @@ -2612,6 +2854,8 @@ const char *Hlp_COMMUNICATION_Notices = "COMMUNICATION.Notices.en"; #elif L==9 "COMMUNICATION.Notices.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_COMMUNICATION_Forums = @@ -2633,6 +2877,8 @@ const char *Hlp_COMMUNICATION_Forums = "COMMUNICATION.Forums.en"; #elif L==9 "COMMUNICATION.Forums.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_COMMUNICATION_Forums_threads = @@ -2654,6 +2900,8 @@ const char *Hlp_COMMUNICATION_Forums_threads = "COMMUNICATION.Forums.en#threads"; #elif L==9 "COMMUNICATION.Forums.en#threads"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_COMMUNICATION_Forums_new_thread = @@ -2675,6 +2923,8 @@ const char *Hlp_COMMUNICATION_Forums_new_thread = "COMMUNICATION.Forums.en#new-thread"; #elif L==9 "COMMUNICATION.Forums.en#new-thread"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_COMMUNICATION_Forums_posts = @@ -2696,6 +2946,8 @@ const char *Hlp_COMMUNICATION_Forums_posts = "COMMUNICATION.Forums.en#posts"; #elif L==9 "COMMUNICATION.Forums.en#posts"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_COMMUNICATION_Forums_new_post = @@ -2717,6 +2969,8 @@ const char *Hlp_COMMUNICATION_Forums_new_post = "COMMUNICATION.Forums.en#new-post"; #elif L==9 "COMMUNICATION.Forums.en#new-post"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_COMMUNICATION_Messages_write = @@ -2738,6 +2992,8 @@ const char *Hlp_COMMUNICATION_Messages_write = "COMMUNICATION.Write.en"; #elif L==9 "COMMUNICATION.Write.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_COMMUNICATION_Messages_received = @@ -2759,6 +3015,8 @@ const char *Hlp_COMMUNICATION_Messages_received = "COMMUNICATION.Received.en"; #elif L==9 "COMMUNICATION.Received.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_COMMUNICATION_Messages_received_filter = @@ -2780,6 +3038,8 @@ const char *Hlp_COMMUNICATION_Messages_received_filter = "COMMUNICATION.Received.en#filter"; #elif L==9 "COMMUNICATION.Received.en#filter"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_COMMUNICATION_Messages_sent = @@ -2801,6 +3061,8 @@ const char *Hlp_COMMUNICATION_Messages_sent = "COMMUNICATION.Sent.en"; #elif L==9 "COMMUNICATION.Sent.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_COMMUNICATION_Messages_sent_filter = @@ -2822,6 +3084,8 @@ const char *Hlp_COMMUNICATION_Messages_sent_filter = "COMMUNICATION.Sent.en#filter"; #elif L==9 "COMMUNICATION.Sent.en#filter"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_COMMUNICATION_Email = @@ -2843,6 +3107,8 @@ const char *Hlp_COMMUNICATION_Email = "COMMUNICATION.Email.en"; #elif L==9 "COMMUNICATION.Email.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif /***** ANALYTICS tab *****/ @@ -2866,6 +3132,8 @@ const char *Hlp_ANALYTICS_Figures = "ANALYTICS.Figures.en"; #elif L==9 "ANALYTICS.Figures.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Figures_users = @@ -2887,6 +3155,8 @@ const char *Hlp_ANALYTICS_Figures_users = "ANALYTICS.Figures.en#users"; #elif L==9 "ANALYTICS.Figures.en#users"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Figures_ranking = @@ -2908,6 +3178,8 @@ const char *Hlp_ANALYTICS_Figures_ranking = "ANALYTICS.Figures.en#ranking"; #elif L==9 "ANALYTICS.Figures.en#ranking"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Figures_hierarchy = @@ -2929,6 +3201,8 @@ const char *Hlp_ANALYTICS_Figures_hierarchy = "ANALYTICS.Figures.en#hierarchy"; #elif L==9 "ANALYTICS.Figures.en#hierarchy"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Figures_institutions = @@ -2950,6 +3224,8 @@ const char *Hlp_ANALYTICS_Figures_institutions = "ANALYTICS.Figures.en#institutions"; #elif L==9 "ANALYTICS.Figures.en#institutions"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Figures_types_of_degree = @@ -2971,6 +3247,8 @@ const char *Hlp_ANALYTICS_Figures_types_of_degree = "ANALYTICS.Figures.en#types-of-degree"; #elif L==9 "ANALYTICS.Figures.en#types-of-degree"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Figures_folders_and_files = @@ -2992,6 +3270,8 @@ const char *Hlp_ANALYTICS_Figures_folders_and_files = "ANALYTICS.Figures.en#folders-and-files"; #elif L==9 "ANALYTICS.Figures.en#folders-and-files"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Figures_open_educational_resources_oer = @@ -3013,6 +3293,8 @@ const char *Hlp_ANALYTICS_Figures_open_educational_resources_oer = "ANALYTICS.Figures.en#open-educational-resources-oer"; #elif L==9 "ANALYTICS.Figures.en#open-educational-resources-oer"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Figures_course_programs = @@ -3034,6 +3316,8 @@ const char *Hlp_ANALYTICS_Figures_course_programs = "ANALYTICS.Figures.en#course-programs"; #elif L==9 "ANALYTICS.Figures.en#course-programs"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Figures_assignments = @@ -3055,6 +3339,8 @@ const char *Hlp_ANALYTICS_Figures_assignments = "ANALYTICS.Figures.en#assignments"; #elif L==9 "ANALYTICS.Figures.en#assignments"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Figures_projects = @@ -3076,6 +3362,8 @@ const char *Hlp_ANALYTICS_Figures_projects = "ANALYTICS.Figures.en#projects"; #elif L==9 "ANALYTICS.Figures.en#projects"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Figures_tests = @@ -3097,6 +3385,8 @@ const char *Hlp_ANALYTICS_Figures_tests = "ANALYTICS.Figures.en#tests"; #elif L==9 "ANALYTICS.Figures.en#tests"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Figures_exams = @@ -3118,6 +3408,8 @@ const char *Hlp_ANALYTICS_Figures_exams = "ANALYTICS.Figures.en#exams"; #elif L==9 "ANALYTICS.Figures.en#exams"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Figures_games = @@ -3139,6 +3431,8 @@ const char *Hlp_ANALYTICS_Figures_games = "ANALYTICS.Figures.en#games"; #elif L==9 "ANALYTICS.Figures.en#games"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Figures_surveys = @@ -3160,6 +3454,8 @@ const char *Hlp_ANALYTICS_Figures_surveys = "ANALYTICS.Figures.en#surveys"; #elif L==9 "ANALYTICS.Figures.en#surveys"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Figures_timeline = @@ -3181,6 +3477,8 @@ const char *Hlp_ANALYTICS_Figures_timeline = "ANALYTICS.Figures.en#timeline"; #elif L==9 "ANALYTICS.Figures.en#timeline"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Figures_followed_followers = @@ -3202,6 +3500,8 @@ const char *Hlp_ANALYTICS_Figures_followed_followers = "ANALYTICS.Figures.en#followed--followers"; #elif L==9 "ANALYTICS.Figures.en#followed--followers"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Figures_forums = @@ -3223,6 +3523,8 @@ const char *Hlp_ANALYTICS_Figures_forums = "ANALYTICS.Figures.en#forums"; #elif L==9 "ANALYTICS.Figures.en#forums"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Figures_notifications = @@ -3244,6 +3546,8 @@ const char *Hlp_ANALYTICS_Figures_notifications = "ANALYTICS.Figures.en#notifications"; #elif L==9 "ANALYTICS.Figures.en#notifications"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Figures_notices = @@ -3265,6 +3569,8 @@ const char *Hlp_ANALYTICS_Figures_notices = "ANALYTICS.Figures.en#notices"; #elif L==9 "ANALYTICS.Figures.en#notices"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Figures_messages = @@ -3286,6 +3592,8 @@ const char *Hlp_ANALYTICS_Figures_messages = "ANALYTICS.Figures.en#messages"; #elif L==9 "ANALYTICS.Figures.en#messages"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Figures_agendas = @@ -3307,6 +3615,8 @@ const char *Hlp_ANALYTICS_Figures_agendas = "ANALYTICS.Figures.en#agendas"; #elif L==9 "ANALYTICS.Figures.en#agendas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Figures_webs_social_networks = @@ -3328,6 +3638,8 @@ const char *Hlp_ANALYTICS_Figures_webs_social_networks = "ANALYTICS.Figures.en#webs--social-networks"; #elif L==9 "ANALYTICS.Figures.en#webs--social-networks"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Figures_language = @@ -3349,6 +3661,8 @@ const char *Hlp_ANALYTICS_Figures_language = "ANALYTICS.Figures.en#language"; #elif L==9 "ANALYTICS.Figures.en#language"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Figures_calendar = @@ -3370,6 +3684,8 @@ const char *Hlp_ANALYTICS_Figures_calendar = "ANALYTICS.Figures.en#calendar"; #elif L==9 "ANALYTICS.Figures.en#calendar"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Figures_dates = @@ -3391,6 +3707,8 @@ const char *Hlp_ANALYTICS_Figures_dates = "ANALYTICS.Figures.en#dates"; #elif L==9 "ANALYTICS.Figures.en#dates"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Figures_icons = @@ -3412,6 +3730,8 @@ const char *Hlp_ANALYTICS_Figures_icons = "ANALYTICS.Figures.en#icons"; #elif L==9 "ANALYTICS.Figures.en#icons"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Figures_menu = @@ -3433,6 +3753,8 @@ const char *Hlp_ANALYTICS_Figures_menu = "ANALYTICS.Figures.en#menu"; #elif L==9 "ANALYTICS.Figures.en#menu"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Figures_theme = @@ -3454,6 +3776,8 @@ const char *Hlp_ANALYTICS_Figures_theme = "ANALYTICS.Figures.en#theme"; #elif L==9 "ANALYTICS.Figures.en#theme"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Figures_columns = @@ -3475,6 +3799,8 @@ const char *Hlp_ANALYTICS_Figures_columns = "ANALYTICS.Figures.en#columns"; #elif L==9 "ANALYTICS.Figures.en#columns"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Figures_user_photos = @@ -3496,6 +3822,8 @@ const char *Hlp_ANALYTICS_Figures_user_photos = "ANALYTICS.Figures.en#user-photos"; #elif L==9 "ANALYTICS.Figures.en#user-photos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Figures_privacy = @@ -3517,6 +3845,8 @@ const char *Hlp_ANALYTICS_Figures_privacy = "ANALYTICS.Figures.en#privacy"; #elif L==9 "ANALYTICS.Figures.en#privacy"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Figures_cookies = @@ -3538,6 +3868,8 @@ const char *Hlp_ANALYTICS_Figures_cookies = "ANALYTICS.Figures.en#cookies"; #elif L==9 "ANALYTICS.Figures.en#cookies"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Degrees = @@ -3559,6 +3891,8 @@ const char *Hlp_ANALYTICS_Degrees = "ANALYTICS.Degrees.en"; #elif L==9 "ANALYTICS.Degrees.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Indicators = @@ -3580,6 +3914,8 @@ const char *Hlp_ANALYTICS_Indicators = "ANALYTICS.Indicators.en"; #elif L==9 "ANALYTICS.Indicators.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Visits_global_visits = @@ -3601,6 +3937,8 @@ const char *Hlp_ANALYTICS_Visits_global_visits = "ANALYTICS.Visits.en#global-visits"; #elif L==9 "ANALYTICS.Visits.en#global-visits"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Visits_visits_to_course = @@ -3622,6 +3960,8 @@ const char *Hlp_ANALYTICS_Visits_visits_to_course = "ANALYTICS.Visits.en#visits-to-course"; #elif L==9 "ANALYTICS.Visits.en#visits-to-course"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Report = @@ -3643,6 +3983,8 @@ const char *Hlp_ANALYTICS_Report = "ANALYTICS.Report.en"; #elif L==9 "ANALYTICS.Report.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_ANALYTICS_Frequent = @@ -3664,6 +4006,8 @@ const char *Hlp_ANALYTICS_Frequent = "ANALYTICS.Frequent.en"; #elif L==9 "ANALYTICS.Frequent.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif /***** PROFILE tab *****/ @@ -3687,6 +4031,8 @@ const char *Hlp_PROFILE_LogIn = "PROFILE.LogIn.en"; #elif L==9 "PROFILE.LogIn.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_PROFILE_SignUp = @@ -3708,6 +4054,8 @@ const char *Hlp_PROFILE_SignUp = "PROFILE.SignUp.en"; #elif L==9 "PROFILE.SignUp.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_PROFILE_Account = @@ -3729,6 +4077,8 @@ const char *Hlp_PROFILE_Account = "PROFILE.Account.en"; #elif L==9 "PROFILE.Account.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif /* const char *Hlp_PROFILE_Account_email = @@ -3750,6 +4100,8 @@ const char *Hlp_PROFILE_Account_email = "PROFILE.Account.en#email"; #elif L==9 "PROFILE.Account.en#email"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif */ const char *Hlp_PROFILE_Session_role = @@ -3771,6 +4123,8 @@ const char *Hlp_PROFILE_Session_role = "PROFILE.Session.en#role"; #elif L==9 "PROFILE.Session.en#role"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_PROFILE_Password = @@ -3792,6 +4146,8 @@ const char *Hlp_PROFILE_Password = "PROFILE.Password.en"; #elif L==9 "PROFILE.Password.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_PROFILE_Courses = @@ -3813,6 +4169,8 @@ const char *Hlp_PROFILE_Courses = "PROFILE.Courses.en"; #elif L==9 "PROFILE.Courses.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_PROFILE_Timetable = @@ -3834,6 +4192,8 @@ const char *Hlp_PROFILE_Timetable = "PROFILE.Timetable.en"; #elif L==9 "PROFILE.Timetable.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_PROFILE_Agenda = @@ -3855,6 +4215,8 @@ const char *Hlp_PROFILE_Agenda = "PROFILE.Agenda.en"; #elif L==9 "PROFILE.Agenda.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_PROFILE_Agenda_new_event = @@ -3876,6 +4238,8 @@ const char *Hlp_PROFILE_Agenda_new_event = "PROFILE.Agenda.en#new-event"; #elif L==9 "PROFILE.Agenda.en#new-event"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_PROFILE_Agenda_edit_event = @@ -3897,6 +4261,8 @@ const char *Hlp_PROFILE_Agenda_edit_event = "PROFILE.Agenda.en#edit-event"; #elif L==9 "PROFILE.Agenda.en#edit-event"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_PROFILE_Agenda_public_agenda = @@ -3918,6 +4284,8 @@ const char *Hlp_PROFILE_Agenda_public_agenda = "PROFILE.Agenda.en#public-agenda"; #elif L==9 "PROFILE.Agenda.en#public-agenda"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_PROFILE_Record = @@ -3939,6 +4307,8 @@ const char *Hlp_PROFILE_Record = "PROFILE.Record.en"; #elif L==9 "PROFILE.Record.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_PROFILE_Institution = @@ -3960,6 +4330,8 @@ const char *Hlp_PROFILE_Institution = "PROFILE.Institution.en"; #elif L==9 "PROFILE.Institution.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_PROFILE_Webs = @@ -3981,6 +4353,8 @@ const char *Hlp_PROFILE_Webs = "PROFILE.Webs.en"; #elif L==9 "PROFILE.Webs.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_PROFILE_Photo = @@ -4002,6 +4376,8 @@ const char *Hlp_PROFILE_Photo = "PROFILE.Photo.en"; #elif L==9 "PROFILE.Photo.en"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_PROFILE_Settings_internationalization = @@ -4023,6 +4399,8 @@ const char *Hlp_PROFILE_Settings_internationalization = "PROFILE.Settings.en#internationalization"; #elif L==9 "PROFILE.Settings.en#internationalization"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_PROFILE_Settings_language = @@ -4044,6 +4422,8 @@ const char *Hlp_PROFILE_Settings_language = "PROFILE.Settings.en#language"; #elif L==9 "PROFILE.Settings.en#language"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_PROFILE_Settings_calendar = @@ -4065,6 +4445,8 @@ const char *Hlp_PROFILE_Settings_calendar = "PROFILE.Settings.en#calendar"; #elif L==9 "PROFILE.Settings.en#calendar"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_PROFILE_Settings_dates = @@ -4086,6 +4468,8 @@ const char *Hlp_PROFILE_Settings_dates = "PROFILE.Settings.en#dates"; #elif L==9 "PROFILE.Settings.en#dates"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_PROFILE_Settings_design = @@ -4107,6 +4491,8 @@ const char *Hlp_PROFILE_Settings_design = "PROFILE.Settings.en#design"; #elif L==9 "PROFILE.Settings.en#design"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_PROFILE_Settings_icons = @@ -4128,6 +4514,8 @@ const char *Hlp_PROFILE_Settings_icons = "PROFILE.Settings.en#icons"; #elif L==9 "PROFILE.Settings.en#icons"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_PROFILE_Settings_theme = @@ -4149,6 +4537,8 @@ const char *Hlp_PROFILE_Settings_theme = "PROFILE.Settings.en#theme"; #elif L==9 "PROFILE.Settings.en#theme"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_PROFILE_Settings_menu = @@ -4170,6 +4560,8 @@ const char *Hlp_PROFILE_Settings_menu = "PROFILE.Settings.en#menu"; #elif L==9 "PROFILE.Settings.en#menu"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_PROFILE_Settings_columns = @@ -4191,6 +4583,8 @@ const char *Hlp_PROFILE_Settings_columns = "PROFILE.Settings.en#columns"; #elif L==9 "PROFILE.Settings.en#columns"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_PROFILE_Settings_user_photos = @@ -4212,6 +4606,8 @@ const char *Hlp_PROFILE_Settings_user_photos = "PROFILE.Settings.en#user-photos"; #elif L==9 "PROFILE.Settings.en#user-photos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_PROFILE_Settings_privacy = @@ -4233,6 +4629,8 @@ const char *Hlp_PROFILE_Settings_privacy = "PROFILE.Settings.en#privacy"; #elif L==9 "PROFILE.Settings.en#privacy"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_PROFILE_Settings_cookies = @@ -4254,6 +4652,8 @@ const char *Hlp_PROFILE_Settings_cookies = "PROFILE.Settings.en#cookies"; #elif L==9 "PROFILE.Settings.en#cookies"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Hlp_PROFILE_Settings_notifications = @@ -4275,4 +4675,6 @@ const char *Hlp_PROFILE_Settings_notifications = "PROFILE.Settings.en#notifications"; #elif L==9 "PROFILE.Settings.en#notifications"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif diff --git a/swad_language.c b/swad_language.c index 57e91fa9..a2d61b5b 100644 --- a/swad_language.c +++ b/swad_language.c @@ -64,6 +64,7 @@ const char *Lan_STR_LANG_ID[1 + Lan_NUM_LANGUAGES] = // ISO 639-1 language codes [Lan_LANGUAGE_IT ] = "it", [Lan_LANGUAGE_PL ] = "pl", [Lan_LANGUAGE_PT ] = "pt", + [Lan_LANGUAGE_TR ] = "tr", }; /*****************************************************************************/ diff --git a/swad_language.h b/swad_language.h index d111c5c0..f3a82dfb 100644 --- a/swad_language.h +++ b/swad_language.h @@ -27,7 +27,7 @@ /***************************** Public constants ******************************/ /*****************************************************************************/ -#define Lan_NUM_LANGUAGES 9 // From 1 to 9. 0 is reserved to unknown language +#define Lan_NUM_LANGUAGES 10 // From 1 to 10. 0 is reserved to unknown language /*****************************************************************************/ /******************************* Public types ********************************/ @@ -35,16 +35,17 @@ typedef enum { - Lan_LANGUAGE_UNKNOWN = 0, - Lan_LANGUAGE_CA = 1, - Lan_LANGUAGE_DE = 2, - Lan_LANGUAGE_EN = 3, - Lan_LANGUAGE_ES = 4, - Lan_LANGUAGE_FR = 5, - Lan_LANGUAGE_GN = 6, - Lan_LANGUAGE_IT = 7, - Lan_LANGUAGE_PL = 8, - Lan_LANGUAGE_PT = 9, + Lan_LANGUAGE_UNKNOWN = 0, + Lan_LANGUAGE_CA = 1, + Lan_LANGUAGE_DE = 2, + Lan_LANGUAGE_EN = 3, + Lan_LANGUAGE_ES = 4, + Lan_LANGUAGE_FR = 5, + Lan_LANGUAGE_GN = 6, + Lan_LANGUAGE_IT = 7, + Lan_LANGUAGE_PL = 8, + Lan_LANGUAGE_PT = 9, + Lan_LANGUAGE_TR = 10, } Lan_Language_t; // ISO 639-1 language codes /*****************************************************************************/ diff --git a/swad_text.c b/swad_text.c index a9b276bb..3106d5c5 100644 --- a/swad_text.c +++ b/swad_text.c @@ -131,6 +131,7 @@ const char *Txt_STR_LANG_NAME[1 + Lan_NUM_LANGUAGES] = [Lan_LANGUAGE_IT ] = "Italiano", [Lan_LANGUAGE_PL ] = "Polski", [Lan_LANGUAGE_PT ] = "Português", + [Lan_LANGUAGE_TR ] = "Türkçe", }; const char *Txt_Do_you_want_to_change_the_language_to_LANGUAGE[1 + Lan_NUM_LANGUAGES] = { @@ -144,6 +145,7 @@ const char *Txt_Do_you_want_to_change_the_language_to_LANGUAGE[1 + Lan_NUM_LANGU [Lan_LANGUAGE_IT ] = "Vuoi cambiare la lingua in italiano?", [Lan_LANGUAGE_PL ] = "Czy chcesz zmienić język na polski?", [Lan_LANGUAGE_PT ] = "Você quer mudar o idioma para português?", + [Lan_LANGUAGE_TR ] = "Dili Türkçe olarak değiştirmek istiyor musunuz?", }; const char *Txt_Do_you_want_to_change_your_language_to_LANGUAGE[1 + Lan_NUM_LANGUAGES] = { @@ -157,6 +159,7 @@ const char *Txt_Do_you_want_to_change_your_language_to_LANGUAGE[1 + Lan_NUM_LANG [Lan_LANGUAGE_IT ] = "Vuoi cambiare la tua lingua in italiano?", [Lan_LANGUAGE_PL ] = "Czy chcesz zmienić język na polski?", [Lan_LANGUAGE_PT ] = "Você quer mudar suo idioma para português?", + [Lan_LANGUAGE_TR ] = "Dilinizi Türkçe olarak değiştirmek ister misiniz?", }; const char *Txt_Switch_to_LANGUAGE[1 + Lan_NUM_LANGUAGES] = { @@ -170,6 +173,7 @@ const char *Txt_Switch_to_LANGUAGE[1 + Lan_NUM_LANGUAGES] = [Lan_LANGUAGE_IT ] = "Passare a italiano", [Lan_LANGUAGE_PL ] = "Przełącz na polski", [Lan_LANGUAGE_PT ] = "Mudar para português", + [Lan_LANGUAGE_TR ] = "Türkçe'ye geç", }; const char *Txt_Switching_to_LANGUAGE[1 + Lan_NUM_LANGUAGES] = { @@ -183,6 +187,7 @@ const char *Txt_Switching_to_LANGUAGE[1 + Lan_NUM_LANGUAGES] = [Lan_LANGUAGE_IT ] = "Passando a italiano…", [Lan_LANGUAGE_PL ] = "Przełącz na polski…", [Lan_LANGUAGE_PT ] = "Mudando para português…", + [Lan_LANGUAGE_TR ] = "Türkçeye geçiş…", }; /***** Messages translated (use HTML entities) *****/ @@ -224,6 +229,8 @@ const char *Txt_A_face_marked_in_green_has_been_detected_ = "Um rosto (marcado em verde) foi detectado em posição frontal" " eo fundo é claro o suficiente.
" "Clique nele para confirmar a atualização da imagem."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_A_face_marked_in_red_has_been_detected_ = @@ -254,6 +261,8 @@ const char *Txt_A_face_marked_in_red_has_been_detected_ = #elif L==9 // pt "Um rosto (marcado em vermelho) foi detectado em posição frontal," " mas o plano de fundo é demasiado escuro."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_A_message_has_been_sent_to_email_address_X_to_confirm_that_address = // Warning: it is very important to include %s in the following sentences @@ -293,6 +302,8 @@ const char *Txt_A_message_has_been_sent_to_email_address_X_to_confirm_that_addre "Uma mensagem foi enviada" " para o endereço de email %s" " para confirmar esse endereço."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_A_question_has_been_added = @@ -314,6 +325,8 @@ const char *Txt_A_question_has_been_added = "Pytanie zostało dodane."; #elif L==9 // pt "Uma pergunta foi adicionada."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_X_questions_have_been_added = // Warning: it is very important to include %u in the following sentences @@ -335,6 +348,8 @@ const char *Txt_X_questions_have_been_added = // Warning: it is very important t "Dodano %u pytań."; #elif L==9 // pt "%u perguntas foram adicionadas."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_A_student_can_belong_to_several_groups = @@ -356,6 +371,8 @@ const char *Txt_A_student_can_belong_to_several_groups = "Kazdy student moze nalezec do wielu grup"; #elif L==9 // pt "Um estudante pode pertencer a vários grupos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_A_student_can_only_belong_to_one_group = @@ -377,6 +394,8 @@ const char *Txt_A_student_can_only_belong_to_one_group = "student moze nalezec tylko do jednej grupy"; #elif L==9 // pt "Um estudante pode pertencer a um grupo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_A_teacher_or_administrator_has_enroled_you_as_X_into_the_course_Y = // Warning: it is very important to include two %s in the following sentences @@ -435,6 +454,8 @@ const char *Txt_A_teacher_or_administrator_has_enroled_you_as_X_into_the_course_ " na disciplina %s." " Você quer para confirmar a inscrição" " ou você prefere para ser removido/a da disciplina?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_A_user_can_not_have_more_than_X_IDs = // Warning: it is very important to include %u in the following sentences @@ -456,6 +477,8 @@ const char *Txt_A_user_can_not_have_more_than_X_IDs = // Warning: it is very imp "Użytkownik nie może mieć więcej niż %u ID."; #elif L==9 // pt "Um usuário não pode ter mais de %u nºs. identif."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_About_X = // Warning: it is very important to include %s in the following sentences @@ -477,6 +500,8 @@ const char *Txt_About_X = // Warning: it is very important to include %s in the "O %s"; #elif L==9 // pt "Sobre %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Absent = @@ -498,6 +523,8 @@ const char *Txt_Absent = "Nieobecny"; #elif L==9 // pt "Assente"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Absents = @@ -519,6 +546,8 @@ const char *Txt_Absents = "Nieobecny"; #elif L==9 // pt "Assentes"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Accept_third_party_cookies_to_view_multimedia_content_from_other_websites = @@ -549,6 +578,8 @@ const char *Txt_Accept_third_party_cookies_to_view_multimedia_content_from_other #elif L==9 // pt "Aceite cookies de terceiros" " para visualizar conteúdo multimídia de outros sites"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_accessible_for_reading_and_writing_by_administrators_of_the_center = @@ -570,6 +601,8 @@ const char *Txt_accessible_for_reading_and_writing_by_administrators_of_the_cent "dostep do odczytu i zapisu przez administratorzy centrum"; #elif L==9 // pt "acessível para leitura e escrita pelos administradores do centro"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_accessible_for_reading_and_writing_by_administrators_of_the_degree = @@ -600,6 +633,8 @@ const char *Txt_accessible_for_reading_and_writing_by_administrators_of_the_degr #elif L==9 // pt "acessível para leitura e escrita" " pelos administradores do grau"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_accessible_for_reading_and_writing_by_administrators_of_the_institution = @@ -621,6 +656,8 @@ const char *Txt_accessible_for_reading_and_writing_by_administrators_of_the_inst "dostep do odczytu i zapisu przez administratorzy instytucji"; #elif L==9 // pt "acessível para leitura e escrita pelos administradores da instituição"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_accessible_for_reading_and_writing_by_project_members = @@ -642,6 +679,8 @@ const char *Txt_accessible_for_reading_and_writing_by_project_members = "dostępne do czytania i pisania przez członków projektu"; #elif L==9 // pt "acessível para leitura e escrita por membros do projeto"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_accessible_for_reading_and_writing_by_project_tutors_and_evaluators = @@ -663,6 +702,8 @@ const char *Txt_accessible_for_reading_and_writing_by_project_tutors_and_evaluat "dostępne do czytania i pisania przez nauczyciele i ewaluatorów projektu"; #elif L==9 // pt "acessível para leitura e escrita por tutores e avaliadores do projeto"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_accessible_for_reading_and_writing_by_students_and_teachers_of_the_center = @@ -684,6 +725,8 @@ const char *Txt_accessible_for_reading_and_writing_by_students_and_teachers_of_t "dostep do odczytu i zapisu przez uczniów i nauczycieli centrum"; #elif L==9 // pt "acessível para leitura e escrita pelos estudantes e professores do centro"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_accessible_for_reading_and_writing_by_students_and_teachers_of_the_course = @@ -705,6 +748,8 @@ const char *Txt_accessible_for_reading_and_writing_by_students_and_teachers_of_t "dostep do odczytu i zapisu przez uczniów i nauczycieli zajec"; #elif L==9 // pt "acessível para leitura e escrita pelos estudantes e professores da disciplina"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_accessible_for_reading_and_writing_by_students_and_teachers_of_the_degree = @@ -735,6 +780,8 @@ const char *Txt_accessible_for_reading_and_writing_by_students_and_teachers_of_t #elif L==9 // pt "acessível para leitura e escrita" " pelos estudantes e professores do grau"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_accessible_for_reading_and_writing_by_students_and_teachers_of_the_institution = @@ -756,6 +803,8 @@ const char *Txt_accessible_for_reading_and_writing_by_students_and_teachers_of_t "dostep do odczytu i zapisu przez uczniów i nauczycieli instytucji"; #elif L==9 // pt "acessível para leitura e escrita pelos estudantes e professores da instituição"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_accessible_for_reading_and_writing_by_students_of_the_group_and_teachers_of_the_course = @@ -777,6 +826,8 @@ const char *Txt_accessible_for_reading_and_writing_by_students_of_the_group_and_ "dostep do odczytu i zapisu przez studentów i nauczycieli, grupy kursu"; #elif L==9 // pt "acessível para leitura e escrita pelos estudantes do grupo e professores da disciplina"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_accessible_for_reading_and_writing_by_teachers_of_the_course = @@ -798,6 +849,8 @@ const char *Txt_accessible_for_reading_and_writing_by_teachers_of_the_course = "dostep do odczytu i zapisu przez nauczycieli zajec"; #elif L==9 // pt "acessível para leitura e escrita pelos professores da disciplina"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_accessible_for_reading_and_writing_by_you_and_the_teachers_of_the_course = @@ -819,6 +872,8 @@ const char *Txt_accessible_for_reading_and_writing_by_you_and_the_teachers_of_th "dostep do odczytu i zapisu przez Ciebie i nauczycieli zajec"; #elif L==9 // pt "acessível para leitura e escrita por você e os professores da disciplina"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_accessible_only_for_reading_by_you_and_the_teachers_of_the_course = @@ -840,6 +895,8 @@ const char *Txt_accessible_only_for_reading_by_you_and_the_teachers_of_the_cours "dostępne tylko do czytania przez Ciebie i nauczycieli prowadzacych ten kurs"; #elif L==9 // pt "acessível apenas para leitura por você e os professores da disciplina"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_accessible_only_for_reading_by_students_and_teachers_of_the_center = @@ -861,6 +918,8 @@ const char *Txt_accessible_only_for_reading_by_students_and_teachers_of_the_cent "dostępne tylko do czytania przez uczniów i nauczycieli centrum"; #elif L==9 // pt "acessível apenas para leitura pelos estudantes e professores do centro"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_accessible_only_for_reading_by_students_and_teachers_of_the_course = @@ -882,6 +941,8 @@ const char *Txt_accessible_only_for_reading_by_students_and_teachers_of_the_cour "dostępne tylko do czytania przez uczniów i nauczycieli zajec"; #elif L==9 // pt "acessível apenas para leitura pelos estudantes e professores da disciplina"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_accessible_only_for_reading_by_students_and_teachers_of_the_degree = @@ -912,6 +973,8 @@ const char *Txt_accessible_only_for_reading_by_students_and_teachers_of_the_degr #elif L==9 // pt "acessível apenas para leitura" " pelos estudantes e professores do grau"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_accessible_only_for_reading_by_students_and_teachers_of_the_institution = @@ -933,6 +996,8 @@ const char *Txt_accessible_only_for_reading_by_students_and_teachers_of_the_inst "dostępne tylko do czytania przez uczniów i nauczycieli instytucji"; #elif L==9 // pt "acessível apenas para leitura pelos estudantes e professores da instituição"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_accessible_only_for_reading_by_students_of_the_group_and_teachers_of_the_course = @@ -954,6 +1019,8 @@ const char *Txt_accessible_only_for_reading_by_students_of_the_group_and_teacher "dostępne tylko do czytania przez uczniów i nauczycieli grupy kursu"; #elif L==9 // pt "acessível apenas para leitura pelos estudantes do grupo e professores da disciplina"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Action = @@ -975,6 +1042,8 @@ const char *Txt_Action = "Działanie"; #elif L==9 // pt "Ação"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Add_questions = @@ -996,6 +1065,8 @@ const char *Txt_Add_questions = "Dodaj pytania"; #elif L==9 // pt "Adicionar perguntas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Add_this_ID = @@ -1017,6 +1088,8 @@ const char *Txt_Add_this_ID = "Dodaj ten ID"; #elif L==9 // pt "Adicionar este nº identif."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Add_USERS = // Warning: it is very important to include %s in the following sentences @@ -1038,6 +1111,8 @@ const char *Txt_Add_USERS = // Warning: it is very important to include %s in th "Dodaj %s"; #elif L==9 // pt "Adicionar %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Administer_me = @@ -1059,6 +1134,8 @@ const char *Txt_Administer_me = "Zarządzaj mnie"; #elif L==9 // pt "Gerenciar me"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Administer_multiple_students = @@ -1080,6 +1157,8 @@ const char *Txt_Administer_multiple_students = "Zarządzaj wielu studenci"; #elif L==9 // pt "Gerenciar vários estudantes"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Administer_multiple_non_editing_teachers = @@ -1101,6 +1180,8 @@ const char *Txt_Administer_multiple_non_editing_teachers = "Zarządzaj wielu nauczycieli nie edytujący"; #elif L==9 // pt "Gerenciar vários professores não editores"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Administer_multiple_teachers = @@ -1122,6 +1203,8 @@ const char *Txt_Administer_multiple_teachers = "Zarządzaj wielu nauczycieli"; #elif L==9 // pt "Gerenciar vários professores"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Administer_one_user = @@ -1143,6 +1226,8 @@ const char *Txt_Administer_one_user = "Zarządzaj użytkownika"; #elif L==9 // pt "Gerenciar um utilizador"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Administer_user = @@ -1164,6 +1249,8 @@ const char *Txt_Administer_user = "Zarządzaj użytkownika"; #elif L==9 // pt "Gerenciar utilizador"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_AGENDA_PAST___FUTURE_EVENTS[2] = @@ -1187,6 +1274,8 @@ const char *Txt_AGENDA_PAST___FUTURE_EVENTS[2] = "Wydarzenia minione i obecne" #elif L==9 // pt "Eventos passados e presentes" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // Agd_FUTURE_EVENTS @@ -1208,6 +1297,8 @@ const char *Txt_AGENDA_PAST___FUTURE_EVENTS[2] = "Obecne i przyszłe wydarzenia" #elif L==9 // pt "Eventos atuais e futuros" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -1232,6 +1323,8 @@ const char *Txt_AGENDA_PRIVAT_PUBLIC_EVENTS[2] = "Prywatne wydarzenia" #elif L==9 // pt "Eventos privados" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // Agd_PUBLIC_EVENTS @@ -1253,6 +1346,8 @@ const char *Txt_AGENDA_PRIVAT_PUBLIC_EVENTS[2] = "Publiczne wydarzenia" #elif L==9 // pt "Eventos públicos" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -1277,6 +1372,8 @@ const char *Txt_AGENDA_HIDDEN_VISIBL_EVENTS[2] = "Ukryte wydarzenia" #elif L==9 // pt "Eventos ocultos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // Agd_VISIBL_EVENTS @@ -1298,6 +1395,8 @@ const char *Txt_AGENDA_HIDDEN_VISIBL_EVENTS[2] = "Widoczne wydarzenia" #elif L==9 // pt "Eventos visíveis" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -1320,6 +1419,8 @@ const char *Txt_all = "wszystko"; #elif L==9 // pt "tudo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_all_degrees = @@ -1341,6 +1442,8 @@ const char *Txt_all_degrees = "wszystkich stopni"; #elif L==9 // pt "todos os graus"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_all_files_inside_the_root_folder = @@ -1362,6 +1465,8 @@ const char *Txt_all_files_inside_the_root_folder = "wszystkie pliki znajdujące się w folderze głównym"; #elif L==9 // pt "todos os arquivos dentro do diretório raiz"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_All_groups = @@ -1383,6 +1488,8 @@ const char *Txt_All_groups = "Wszystkie grupy"; #elif L==9 // pt "Todos os grupos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_All_places = @@ -1404,6 +1511,8 @@ const char *Txt_All_places = "Wszystkie miejsca"; #elif L==9 // pt "Todas as localizaçoes"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_All_questions = @@ -1425,6 +1534,8 @@ const char *Txt_All_questions = "Wszystkie pytania"; #elif L==9 // pt "Todas as perguntas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_All_tags = // Tags used in test @@ -1446,6 +1557,8 @@ const char *Txt_All_tags = // Tags used in test "Wszystkie tagi"; #elif L==9 // pt "Todos os descritores"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_All_types_of_answers = // Answers of a test @@ -1467,6 +1580,8 @@ const char *Txt_All_types_of_answers = // Answers of a test "Wszystkie typy odpowiedzi"; #elif L==9 // pt "Todos os tipos de respostas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Allow_teachers_to_consult_this_test = @@ -1488,6 +1603,8 @@ const char *Txt_Allow_teachers_to_consult_this_test = "Pozwalają nauczycielom skonsultować ten test"; #elif L==9 // pt "Permitir que os professores de consultar este teste"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Alphabetic_BR_code_BR_ISO_3166_1 = @@ -1509,6 +1626,8 @@ const char *Txt_Alphabetic_BR_code_BR_ISO_3166_1 = "Alfabetycznego
kodu
ISO 3166-1"; #elif L==9 // pt "Cód.
alfabético
ISO 3166-1"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Already_existed_a_game_with_the_title_X = // Warning: it is very important to include %s in the following sentences @@ -1530,6 +1649,8 @@ const char *Txt_Already_existed_a_game_with_the_title_X = // Warning: it is very "Było już gra z tytułem %s."; #elif L==9 // pt "Já existe um jogo com o título %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Already_existed_a_project_with_the_folder_X = // Warning: it is very important to include %s in the following sentences @@ -1551,6 +1672,8 @@ const char *Txt_Already_existed_a_project_with_the_folder_X = // Warning: it is "Istniał projekt z folderem %s."; #elif L==9 // pt "Já existe um projeto com o diretório %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Already_existed_a_set_of_questions_in_this_exam_with_the_title_X = // Warning: it is very important to include %s in the following sentences @@ -1572,6 +1695,8 @@ const char *Txt_Already_existed_a_set_of_questions_in_this_exam_with_the_title_X "Na tym egzaminie istniał już zestaw pytań o tytule %s."; #elif L==9 // pt "Já existia um conjunto de perguntas neste exame com o título %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Already_existed_a_survey_with_the_title_X = // Warning: it is very important to include %s in the following sentences @@ -1593,6 +1718,8 @@ const char *Txt_Already_existed_a_survey_with_the_title_X = // Warning: it is ve "Było już ankieta z tytułem %s."; #elif L==9 // pt "Já existe um inquérito com o título %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Already_existed_an_assignment_with_the_folder_X = // Warning: it is very important to include %s in the following sentences @@ -1614,6 +1741,8 @@ const char *Txt_Already_existed_an_assignment_with_the_folder_X = // Warning: it "Jest juz zadanie z folderu %s."; #elif L==9 // pt "Já existe uma atividade com o diretório %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Already_existed_an_assignment_with_the_title_X = // Warning: it is very important to include %s in the following sentences @@ -1635,6 +1764,8 @@ const char *Txt_Already_existed_an_assignment_with_the_title_X = // Warning: it "Istniala juz przydzialu z tytulu %s."; #elif L==9 // pt "Já existe uma atividade com o título %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Already_existed_an_event_with_the_title_X = // Warning: it is very important to include %s in the following sentences @@ -1656,6 +1787,8 @@ const char *Txt_Already_existed_an_event_with_the_title_X = // Warning: it is ve "Istniala juz wydarzenie z tytulu %s."; #elif L==9 // pt "Já existe um evento com o título %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Already_existed_an_exam_with_the_title_X = // Warning: it is very important to include %s in the following sentences @@ -1677,6 +1810,8 @@ const char *Txt_Already_existed_an_exam_with_the_title_X = // Warning: it is ver "Istniala juz egzamin z tytulu %s."; #elif L==9 // pt "Já existe um exame com o título %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Altitude = @@ -1698,6 +1833,8 @@ const char *Txt_Altitude = "Wysokość bezwzględna"; #elif L==9 // pt "Altitude"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_and = @@ -1719,6 +1856,8 @@ const char *Txt_and = "i"; #elif L==9 // pt "e"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_and_X_other_recipients = // Warning: it is very important to include %u in the following sentences @@ -1740,6 +1879,8 @@ const char *Txt_and_X_other_recipients = // Warning: it is very important to inc "…i %u innych odbiorców"; #elif L==9 // pt "…e %u outros destinatários"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Announcements = @@ -1761,6 +1902,8 @@ const char *Txt_Announcements = "Ogłoszenia"; #elif L==9 // pt "Anúncios"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Another_building = @@ -1782,6 +1925,8 @@ const char *Txt_Another_building = "Kolejna budynek"; #elif L==9 // pt "Outro edifício"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Another_center = @@ -1803,6 +1948,8 @@ const char *Txt_Another_center = "Innym centrum"; #elif L==9 // pt "Outro centro"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Another_room = @@ -1824,6 +1971,8 @@ const char *Txt_Another_room = "Kolejna klasa"; #elif L==9 // pt "Outra sala"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Another_country = @@ -1845,6 +1994,8 @@ const char *Txt_Another_country = "Kolejny kraj"; #elif L==9 // pt "Outro país"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Another_department = @@ -1866,6 +2017,8 @@ const char *Txt_Another_department = "Kolejny dział"; #elif L==9 // pt "Outro departamento"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Another_ID = @@ -1887,6 +2040,8 @@ const char *Txt_Another_ID = "Another ID"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Outro nº de identif."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Another_institution = @@ -1908,6 +2063,8 @@ const char *Txt_Another_institution = "Kolejna instytucja"; #elif L==9 // pt "Outra instituição"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Another_place = @@ -1929,6 +2086,8 @@ const char *Txt_Another_place = "Innym miejscem"; #elif L==9 // pt "Outra localização"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Another_user_s_profile = @@ -1950,6 +2109,8 @@ const char *Txt_Another_user_s_profile = "Profil innego użytkownika"; #elif L==9 // pt "Perfil de outro usuário"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Announcement_created = @@ -1971,6 +2132,8 @@ const char *Txt_Announcement_created = "Ogłoszenia stworzony."; #elif L==9 // pt "Anúncio criado."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Announcement_removed = @@ -1992,6 +2155,8 @@ const char *Txt_Announcement_removed = "Ogłoszenia usuniete."; #elif L==9 // pt "Anúncio removido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Answer_survey = @@ -2013,6 +2178,8 @@ const char *Txt_Answer_survey = "Badanie odpowiedzi"; #elif L==9 // pt "Responder inquérito"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Answers = // Answers of test @@ -2034,6 +2201,8 @@ const char *Txt_Answers = // Answers of test "Odpowiedzi"; #elif L==9 // pt "Respostas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_ANSWERS_blank = @@ -2055,6 +2224,8 @@ const char *Txt_ANSWERS_blank = "puste"; #elif L==9 // pt "em branco"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_ANSWERS_correct = @@ -2076,6 +2247,8 @@ const char *Txt_ANSWERS_correct = "prawidłowe"; #elif L==9 // pt "corretas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_ANSWERS_non_blank = @@ -2097,6 +2270,8 @@ const char *Txt_ANSWERS_non_blank = "niepustych"; #elif L==9 // pt "respondidas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_ANSWERS_wrong = @@ -2118,6 +2293,8 @@ const char *Txt_ANSWERS_wrong = "złe"; #elif L==9 // pt "erradas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Any_action = @@ -2139,6 +2316,8 @@ const char *Txt_Any_action = "Wszystkie działania"; #elif L==9 // pt "Qualquer ação"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_any_course = @@ -2160,6 +2339,8 @@ const char *Txt_any_course = "kurs"; #elif L==9 // pt "qualquer disciplina"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Any_department = @@ -2181,6 +2362,8 @@ const char *Txt_Any_department = "Wszystkie działy"; #elif L==9 // pt "Qualquer departamento"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Any_type_of_degree = @@ -2202,6 +2385,8 @@ const char *Txt_Any_type_of_degree = "Dowolny rodzaj stopnia"; #elif L==9 // pt "Qualquer tipo de grau"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_any_user = @@ -2223,6 +2408,8 @@ const char *Txt_any_user = "wszystkich uzytkowników"; #elif L==9 // pt "qualquer utilizador"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Application_key = @@ -2244,6 +2431,8 @@ const char *Txt_Application_key = "Klawisz aplikacji"; #elif L==9 // pt "Chave de aplicação"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Assessment_criteria = @@ -2265,6 +2454,8 @@ const char *Txt_Assessment_criteria = "Kryteria oceny"; #elif L==9 // pt "Critérios de avaliação"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Assigned_QUESTION = @@ -2286,6 +2477,8 @@ const char *Txt_Assigned_QUESTION = "Zadany?"; #elif L==9 // pt "Atribuído?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Assignment = @@ -2307,6 +2500,8 @@ const char *Txt_Assignment = "Przyporzadkowanie"; #elif L==9 // pt "Atividade"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Assignment_X_removed = // Warning: it is very important to include %s in the following sentences @@ -2328,6 +2523,8 @@ const char *Txt_Assignment_X_removed = // Warning: it is very important to inclu "Zadanie %s usuniete."; #elif L==9 // pt "Atividade %s removida."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Assignments = @@ -2349,6 +2546,8 @@ const char *Txt_Assignments = "Zadania"; #elif L==9 // pt "Atividades"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Assignments_and_other_works = @@ -2370,6 +2569,8 @@ const char *Txt_Assignments_and_other_works = "Assignments and other works"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Atividades e outros trabalhos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_START_END_TIME_HELP[Dat_NUM_START_END_TIME] = @@ -2393,6 +2594,8 @@ const char *Txt_START_END_TIME_HELP[Dat_NUM_START_END_TIME] = "Sortuj wedlug daty rozpoczecia" #elif L==9 // pt "Classificar por data de início" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Dat_END_TIME] = @@ -2414,6 +2617,8 @@ const char *Txt_START_END_TIME_HELP[Dat_NUM_START_END_TIME] = "Sortuj wedlug daty zakonczenia" #elif L==9 // pt "Classificar por data de término" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -2438,6 +2643,8 @@ const char *Txt_START_END_TIME[Dat_NUM_START_END_TIME] = "Początek" #elif L==9 // pt "Início" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Dat_END_TIME] = @@ -2459,6 +2666,8 @@ const char *Txt_START_END_TIME[Dat_NUM_START_END_TIME] = "Koniec" #elif L==9 // pt "Fim" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -2481,6 +2690,8 @@ const char *Txt_Assignments_area = "Obszarze Zadania"; #elif L==9 // pt "Zona de atividades"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_assignments_area = @@ -2502,6 +2713,8 @@ const char *Txt_assignments_area = "obszarze zadan"; #elif L==9 // pt "zona de atividades"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Attendance = // Number of times a students has attended to face-to-face class @@ -2523,6 +2736,8 @@ const char *Txt_Attendance = // Number of times a students has attended to face- "Bytność"; #elif L==9 // pt "Presença"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Attendance_list = @@ -2544,6 +2759,8 @@ const char *Txt_Attendance_list = "Lista obecności"; #elif L==9 // pt "Lista assiduidade"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Availability = @@ -2565,6 +2782,8 @@ const char *Txt_Availability = "Dostępność"; #elif L==9 // pt "Disponibilidade"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_average = @@ -2586,6 +2805,8 @@ const char *Txt_average = "średnia"; #elif L==9 // pt "média"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Average_number_BR_of_ASSIG_BR_per_course = @@ -2607,6 +2828,8 @@ const char *Txt_Average_number_BR_of_ASSIG_BR_per_course = "Średnia liczba
zadania
na kurs"; #elif L==9 // pt "N.º medio
de atividades
por disciplina"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Average_number_BR_of_exams_BR_per_course = @@ -2628,6 +2851,8 @@ const char *Txt_Average_number_BR_of_exams_BR_per_course = "Średnia liczba
egzaminów
na kurs"; #elif L==9 // pt "N.º medio
de exames
por disciplina"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Average_number_BR_of_games_BR_per_course = @@ -2649,6 +2874,8 @@ const char *Txt_Average_number_BR_of_games_BR_per_course = "Średnia liczba
gry
na kurs"; #elif L==9 // pt "N.º medio
de jogos
por disciplina"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Average_number_BR_of_items_BR_per_course = @@ -2670,6 +2897,8 @@ const char *Txt_Average_number_BR_of_items_BR_per_course = "Średnia liczba
pozycji
na kurs"; #elif L==9 // pt "N.º medio
de itens
por disciplina"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Average_number_BR_of_projects_BR_per_course = @@ -2691,6 +2920,8 @@ const char *Txt_Average_number_BR_of_projects_BR_per_course = "Średnia liczba
projekty
na kurs"; #elif L==9 // pt "N.º medio
de projetos
por disciplina"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Average_number_BR_of_questions_BR_per_survey = @@ -2712,6 +2943,8 @@ const char *Txt_Average_number_BR_of_questions_BR_per_survey = "Średnia liczba
pytań
na ankiety"; #elif L==9 // pt "N.º medio
de perguntas
por inquérito"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Average_BR_number_BR_of_test_BR_questions_BR_per_course = @@ -2733,6 +2966,8 @@ const char *Txt_Average_BR_number_BR_of_test_BR_questions_BR_per_course = "Średnia liczba
pytań
testowych
na kurs"; #elif L==9 // pt "N.º medio
de perguntas
de test por
disciplina"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Average_number_BR_of_surveys_BR_per_course = @@ -2754,6 +2989,8 @@ const char *Txt_Average_number_BR_of_surveys_BR_per_course = "Średnia liczba
badania
na kurs"; #elif L==9 // pt "N.º medio
de inquéritos
por disciplina"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Average_number_of_courses_to_which_a_user_belongs = @@ -2775,6 +3012,8 @@ const char *Txt_Average_number_of_courses_to_which_a_user_belongs = "Średnia liczba kursów do której nalezy uzytkownik"; #elif L==9 // pt "N.º medio de disciplinas em que cada utilizador pertence"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Average_BR_number_of_BR_times_that_BR_a_question_BR_has_been_BR_responded = @@ -2796,6 +3035,8 @@ const char *Txt_Average_BR_number_of_BR_times_that_BR_a_question_BR_has_been_BR_ "Średnia
liczba
odpowiedzi
na pytanie"; #elif L==9 // pt "N.º médio
de vezes
que uma
pergunta
foi respondida"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Average_BR_number_of_BR_times_that_BR_questions_BR_have_been_BR_responded_BR_per_course = @@ -2817,6 +3058,8 @@ const char *Txt_Average_BR_number_of_BR_times_that_BR_questions_BR_have_been_BR_ "Średnia
liczba
odpowiedzi
na pytanie
na kurs"; #elif L==9 // pt "N.º médio
de vezes
que uma
pergunta
foi respondida
por disciplina"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Average_number_of_users_belonging_to_a_course = @@ -2838,6 +3081,8 @@ const char *Txt_Average_number_of_users_belonging_to_a_course = "Średnia liczba uzytkowników nalezacych do kursu"; #elif L==9 // pt "N.º medio de utilizadores que pertencem a uma disciplina"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_AVERAGE_PHOTO_TYPES[Pho_NUM_AVERAGE_PHOTO_TYPES] = @@ -2861,6 +3106,8 @@ const char *Txt_AVERAGE_PHOTO_TYPES[Pho_NUM_AVERAGE_PHOTO_TYPES] = "mediana wszystkich zdjec" #elif L==9 // pt "mediana de todas as fotos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Pho_PHOTO_AVERAGE_ALL] = @@ -2882,6 +3129,8 @@ const char *Txt_AVERAGE_PHOTO_TYPES[Pho_NUM_AVERAGE_PHOTO_TYPES] = "średnia arytmetyczna wszystkich zdjec" #elif L==9 // pt "média aritmética de todas as fotos" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -2904,6 +3153,8 @@ const char *Txt_Average_BR_score_BR_per_question = "Średnia
ocena
za pytanie"; #elif L==9 // pt "Pontuação
média por
pergunta"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Average_type = @@ -2925,6 +3176,8 @@ const char *Txt_Average_type = "Średnia typu"; #elif L==9 // pt "Tipo de média"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Banned_users = @@ -2946,6 +3199,8 @@ const char *Txt_Banned_users = "Zablokowani użytkownicy"; #elif L==9 // pt "Usuários banidos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Banner = @@ -2967,6 +3222,8 @@ const char *Txt_Banner = "Banner"; #elif L==9 // pt "Banner"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Banner_X_removed = // Warning: it is very important to include %s in the following sentences @@ -2988,6 +3245,8 @@ const char *Txt_Banner_X_removed = // Warning: it is very important to include % "Banner %s usuniety."; #elif L==9 // pt "Banner %s removido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Banners = @@ -3009,6 +3268,8 @@ const char *Txt_Banners = "Banners"; #elif L==9 // pt "Banners"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Basic_public_profile = @@ -3030,6 +3291,8 @@ const char *Txt_Basic_public_profile = "Podstawowy profil publiczny"; #elif L==9 // pt "Perfil público básico"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Before_creating_a_new_account_check_if_you_have_been_already_registered = @@ -3060,6 +3323,8 @@ const char *Txt_Before_creating_a_new_account_check_if_you_have_been_already_reg #elif L==9 // pt "Antes de criar uma nova conta," " verifique se você já foi registrado/a"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Before_going_to_any_other_option_you_must_fill_your_nickname = @@ -3090,6 +3355,8 @@ const char *Txt_Before_going_to_any_other_option_you_must_fill_your_nickname = #elif L==9 // pt "Antes de ir para qualquer outra opção" " você deve criar sua alcunha."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Before_going_to_any_other_option_you_must_create_your_password = @@ -3120,6 +3387,8 @@ const char *Txt_Before_going_to_any_other_option_you_must_create_your_password = #elif L==9 // pt "Antes de ir para qualquer outra opção" "você deve criar sua senha."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Before_going_to_any_other_option_you_must_fill_in_your_email_address = @@ -3150,6 +3419,8 @@ const char *Txt_Before_going_to_any_other_option_you_must_fill_in_your_email_add #elif L==9 // pt "Antes de ir para qualquer outra opção" "você deve preencher seu endereço de email."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Briefcase_of_THE_USER_X_has_been_removed = // Warning: it is very important to include %s in the following sentences @@ -3171,6 +3442,8 @@ const char *Txt_Briefcase_of_THE_USER_X_has_been_removed = // Warning: it is ver "Teczka %s została usunięta."; #elif L==9 // pt "Pasta de %s foi removida."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Briefcases = @@ -3192,6 +3465,8 @@ const char *Txt_Briefcases = "Briefcases"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Pasta"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Building = @@ -3213,6 +3488,8 @@ const char *Txt_Building = "Budynek"; #elif L==9 // pt "Edifício"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Building_X_removed = // Warning: it is very important to include %s in the following sentences @@ -3234,6 +3511,8 @@ const char *Txt_Building_X_removed = // Warning: it is very important to include "Budynek %s usuniete."; #elif L==9 // pt "Edifício %s removido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_BUILDINGS_HELP_ORDER[Bld_NUM_ORDERS] = @@ -3257,6 +3536,8 @@ const char *Txt_BUILDINGS_HELP_ORDER[Bld_NUM_ORDERS] = "Sortuj według krótkiej nazwy" #elif L==9 // pt "Classificar por nome abreviado" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Bld_ORDER_BY_FULL_NAME] = @@ -3278,6 +3559,8 @@ const char *Txt_BUILDINGS_HELP_ORDER[Bld_NUM_ORDERS] = "Sortuj według pełna nazwa" #elif L==9 // pt "Classificar por nome completo" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Bld_ORDER_BY_LOCATION] = @@ -3299,6 +3582,8 @@ const char *Txt_BUILDINGS_HELP_ORDER[Bld_NUM_ORDERS] = "Sortuj według lokacja" #elif L==9 // pt "Classificar por localização" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -3323,6 +3608,8 @@ const char *Txt_BUILDINGS_ORDER[Bld_NUM_ORDERS] = "Krótkiej nazwy" #elif L==9 // pt "Nome abreviado" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Bld_ORDER_BY_FULL_NAME] = @@ -3344,6 +3631,8 @@ const char *Txt_BUILDINGS_ORDER[Bld_NUM_ORDERS] = "Pełna nazwa" #elif L==9 // pt "Nome completo" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Bld_ORDER_BY_LOCATION] = @@ -3365,6 +3654,8 @@ const char *Txt_BUILDINGS_ORDER[Bld_NUM_ORDERS] = "Lokacja" #elif L==9 // pt "Localização" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -3387,6 +3678,8 @@ const char *Txt_Buildings = "Budynki"; #elif L==9 // pt "Edifícios"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Calculate = @@ -3408,6 +3701,8 @@ const char *Txt_Calculate = "Obliczać"; #elif L==9 // pt "Calcular"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Calculate_average_photo_of_THE_DEGREE_X = // Warning: should end in space @@ -3429,6 +3724,8 @@ const char *Txt_Calculate_average_photo_of_THE_DEGREE_X = // Warning: should end "Obliczyc średnia zdjecie "; #elif L==9 // pt "Calcular a foto média de "; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Calendar = @@ -3450,6 +3747,8 @@ const char *Txt_Calendar = "Kalendarz"; #elif L==9 // pt "Calendário"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_CALL_FOR_EXAM = @@ -3471,6 +3770,8 @@ const char *Txt_CALL_FOR_EXAM = "OGLOSZENIE egzaminu"; #elif L==9 // pt "CHAMADA DE EXAME"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_CALL_FOR_EXAM_Approximate_duration = @@ -3492,6 +3793,8 @@ const char *Txt_CALL_FOR_EXAM_Approximate_duration = "Przyblizony czas trwania"; #elif L==9 // pt "Duração aproximada"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_CALL_FOR_EXAM_Course = @@ -3513,6 +3816,8 @@ const char *Txt_CALL_FOR_EXAM_Course = "Kurs"; #elif L==9 // pt "Disciplina"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_CALL_FOR_EXAM_Documentation_required = @@ -3534,6 +3839,8 @@ const char *Txt_CALL_FOR_EXAM_Documentation_required = "ID wymagane"; #elif L==9 // pt "Documentação necessária"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_CALL_FOR_EXAM_Exam_date = @@ -3555,6 +3862,8 @@ const char *Txt_CALL_FOR_EXAM_Exam_date = "Termin egzaminu"; #elif L==9 // pt "Exame data"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_CALL_FOR_EXAM_Material_allowed = @@ -3576,6 +3885,8 @@ const char *Txt_CALL_FOR_EXAM_Material_allowed = "Material dozwolone"; #elif L==9 // pt "Material autorizado"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_CALL_FOR_EXAM_Material_required = @@ -3597,6 +3908,8 @@ const char *Txt_CALL_FOR_EXAM_Material_required = "Materialy niezbedne do"; #elif L==9 // pt "Material obrigatório"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_CALL_FOR_EXAM_Mode = @@ -3618,6 +3931,8 @@ const char *Txt_CALL_FOR_EXAM_Mode = "Tryb
(pisemnej, ustnej,…)"; #elif L==9 // pt "Modalidade
(escrita, oral,…)"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_CALL_FOR_EXAM_Other_information = @@ -3639,6 +3954,8 @@ const char *Txt_CALL_FOR_EXAM_Other_information = "Inne informacje"; #elif L==9 // pt "Outras informações"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_CALL_FOR_EXAM_Place_of_exam = @@ -3660,6 +3977,8 @@ const char *Txt_CALL_FOR_EXAM_Place_of_exam = "Miejsce egzaminu"; #elif L==9 // pt "Local do exame"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_CALL_FOR_EXAM_Session = @@ -3681,6 +4000,8 @@ const char *Txt_CALL_FOR_EXAM_Session = "Sesja
(czerwiec, wrzesien,…)"; #elif L==9 // pt "Período
(junho, setembro,…)"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_CALL_FOR_EXAM_Start_time = @@ -3702,6 +4023,8 @@ const char *Txt_CALL_FOR_EXAM_Start_time = "Czas rozpoczecia"; #elif L==9 // pt "Hora de início"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_CALL_FOR_EXAM_Structure_of_the_exam = @@ -3723,6 +4046,8 @@ const char *Txt_CALL_FOR_EXAM_Structure_of_the_exam = "Struktura egzaminu"; #elif L==9 // pt "Estrutura do exame"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_CALL_FOR_EXAM_Year_or_semester = // 1, 2, 3..., not 1984, 2038... @@ -3744,6 +4069,8 @@ const char *Txt_CALL_FOR_EXAM_Year_or_semester = // 1, 2, 3..., not 1984, 2038.. "Rok lub semestr"; #elif L==9 // pt "Ano ou semestre"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Call_for_exam_removed = @@ -3765,6 +4092,8 @@ const char *Txt_Call_for_exam_removed = "Ogloszenie egzamin usuniete."; #elif L==9 // pt "Chamada para exame removida."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Call_the_roll = @@ -3786,6 +4115,8 @@ const char *Txt_Call_the_roll = "Imienne"; #elif L==9 // pt "Lista de presença"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Calls_for_exams = @@ -3807,6 +4138,8 @@ const char *Txt_Calls_for_exams = "Ogloszenia egzaminów"; #elif L==9 // pt "Chamadas para exames"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Can_not_create_the_folder_X_because_it_would_exceed_the_disk_quota = // Warning: it is very important to include %s in the following sentences @@ -3837,6 +4170,8 @@ const char *Txt_Can_not_create_the_folder_X_because_it_would_exceed_the_disk_quo #elif L==9 // pt "Não é possível criar o diretório %s" " porque iria exceder a cota de disco."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Can_not_create_the_folder_X_because_there_is_already_a_folder_or_a_file_with_that_name = // Warning: it is very important to include %s in the following sentences @@ -3867,6 +4202,8 @@ const char *Txt_Can_not_create_the_folder_X_because_there_is_already_a_folder_or #elif L==9 // pt "Não é possível criar o diretório %s" " porque já existe um diretório ou um arquivo com esse nome."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Can_not_create_the_link_X_because_it_would_exceed_the_disk_quota = // Warning: it is very important to include %s in the following sentences @@ -3897,6 +4234,8 @@ const char *Txt_Can_not_create_the_link_X_because_it_would_exceed_the_disk_quota #elif L==9 // pt "Não é possível criar a ligação %s" " porque iria exceder a cota de disco."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Can_not_create_the_link_X_because_there_is_already_a_folder_or_a_link_with_that_name = // Warning: it is very important to include %s in the following sentences @@ -3927,6 +4266,8 @@ const char *Txt_Can_not_create_the_link_X_because_there_is_already_a_folder_or_a #elif L==9 // pt "Não é possível criar a ligação %s" " porque já existe um diretório ou uma ligação com esse nome."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Can_not_rename_a_folder_of_assignment = @@ -3948,6 +4289,8 @@ const char *Txt_Can_not_rename_a_folder_of_assignment = "Nie mozna zmienic nazwy folderu zadania."; #elif L==9 // pt "Não é possível renomear um diretório de actividade."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Capacity_OF_A_ROOM = @@ -3969,6 +4312,8 @@ const char *Txt_Capacity_OF_A_ROOM = "Pojemność"; #elif L==9 // pt "Capacidade"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Center = @@ -3990,6 +4335,8 @@ const char *Txt_Center = "Centrum"; #elif L==9 // pt "Centro"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_center = @@ -4011,6 +4358,8 @@ const char *Txt_center = "centrum"; #elif L==9 // pt "centro"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Center_X_removed = // Warning: it is very important to include %s in the following sentences @@ -4032,6 +4381,8 @@ const char *Txt_Center_X_removed = // Warning: it is very important to include % "Centrum %s usuniete."; #elif L==9 // pt "Centro %s removido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_CENTER_STATUS[Hie_NUM_STATUS_TXT] = @@ -4055,6 +4406,8 @@ const char *Txt_CENTER_STATUS[Hie_NUM_STATUS_TXT] = "Nieznany" #elif L==9 // pt "Desconhecido" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Hie_STATUS_ACTIVE] = @@ -4076,6 +4429,8 @@ const char *Txt_CENTER_STATUS[Hie_NUM_STATUS_TXT] = "Aktywne" #elif L==9 // pt "Ativo" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Hie_STATUS_PENDING] = @@ -4097,6 +4452,8 @@ const char *Txt_CENTER_STATUS[Hie_NUM_STATUS_TXT] = "Nowy" #elif L==9 // pt "Novo" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Hie_STATUS_REMOVED] = @@ -4118,6 +4475,8 @@ const char *Txt_CENTER_STATUS[Hie_NUM_STATUS_TXT] = "Usuniete" #elif L==9 // pt "Suprimido" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -4140,6 +4499,8 @@ const char *Txt_Centers = "Centra"; #elif L==9 // pt "Centros"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Centers_ABBREVIATION = @@ -4161,6 +4522,8 @@ const char *Txt_Centers_ABBREVIATION = "Cent."; #elif L==9 // pt "Cent."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_centers = @@ -4182,6 +4545,8 @@ const char *Txt_centers = "centra"; #elif L==9 // pt "centros"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_CENTERS_HELP_ORDER[Ctr_NUM_ORDERS] = @@ -4205,6 +4570,8 @@ const char *Txt_CENTERS_HELP_ORDER[Ctr_NUM_ORDERS] = "Sortuj centrum" #elif L==9 // pt "Classificar por centro" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ctr_ORDER_BY_NUM_USRS] = @@ -4226,6 +4593,8 @@ const char *Txt_CENTERS_HELP_ORDER[Ctr_NUM_ORDERS] = "Sortuj wedlug liczby uzytkownikow" #elif L==9 // pt "Classificar por nº de utilizadores" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -4248,6 +4617,8 @@ const char *Txt_Centers_of_INSTITUTION_X = // Warning: it is very important to i "Centra %s"; #elif L==9 // pt "Centros de %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_CENTERS_ORDER[Ctr_NUM_ORDERS] = @@ -4271,6 +4642,8 @@ const char *Txt_CENTERS_ORDER[Ctr_NUM_ORDERS] = "Centrum" #elif L==9 // pt "Centro" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ctr_ORDER_BY_NUM_USRS] = @@ -4292,6 +4665,8 @@ const char *Txt_CENTERS_ORDER[Ctr_NUM_ORDERS] = "Użytkownicy centrum" #elif L==9 // pt "Utilizadores do centro" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -4314,6 +4689,8 @@ const char *Txt_Centers_with_map = "Centra z mapą"; #elif L==9 // pt "Centros com mapa"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Centers_with_pending_degrees = @@ -4335,6 +4712,8 @@ const char *Txt_Centers_with_pending_degrees = "Centra z stopnie oczekujący"; #elif L==9 // pt "Centros com graus pendentes"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Change_account = @@ -4356,6 +4735,8 @@ const char *Txt_Change_account = "Zmień konto"; #elif L==9 // pt "Alterar conta"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Change_email = @@ -4377,6 +4758,8 @@ const char *Txt_Change_email = "Zmień email"; #elif L==9 // pt "Alterar email"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Change_IDs = @@ -4398,6 +4781,8 @@ const char *Txt_Change_IDs = "Zmień ID"; #elif L==9 // pt "Alterar nºs. identif."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Change_image_video = @@ -4419,6 +4804,8 @@ const char *Txt_Change_image_video = "Zmień obraz / wideo"; #elif L==9 // pt "Alterar imagem / vídeo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Change_logo = @@ -4440,6 +4827,8 @@ const char *Txt_Change_logo = "Zmień logo"; #elif L==9 // pt "Alterar logotipo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Change_my_groups = @@ -4461,6 +4850,8 @@ const char *Txt_Change_my_groups = "Zmieńmoje grupy"; #elif L==9 // pt "Alterar meus grupos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Change_nickname = @@ -4482,6 +4873,8 @@ const char *Txt_Change_nickname = "Zmień nick"; #elif L==9 // pt "Alterar alcunha"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Change_password = @@ -4503,6 +4896,8 @@ const char *Txt_Change_password = "Zmień hasło"; #elif L==9 // pt "Alterar senha"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Change_photo = @@ -4524,6 +4919,8 @@ const char *Txt_Change_photo = "Zmień zdjecie"; #elif L==9 // pt "Alterar foto"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_CHAT_Room = @@ -4545,6 +4942,8 @@ const char *Txt_CHAT_Room = "Pokój"; #elif L==9 // pt "Room"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_CHAT_Room_code = @@ -4566,6 +4965,8 @@ const char *Txt_CHAT_Room_code = "Kod pokoju"; #elif L==9 // pt "Código de room"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Chat_rooms = @@ -4587,6 +4988,8 @@ const char *Txt_Chat_rooms = "Czat"; #elif L==9 // pt "Chat rooms"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Check = @@ -4608,6 +5011,8 @@ const char *Txt_Check = "Sprawdź"; #elif L==9 // pt "Verificar"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Check_another_ID = @@ -4629,6 +5034,8 @@ const char *Txt_Check_another_ID = "Sprawdzić inny ID?"; #elif L==9 // pt "Verificar outra ID?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Check_marks_in_the_file = @@ -4650,6 +5057,8 @@ const char *Txt_Check_marks_in_the_file = "Sprawdź oceny w pliku"; #elif L==9 // pt "Verifique as notas no arquivo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Click = @@ -4671,6 +5080,8 @@ const char *Txt_Click = "Kliknij"; #elif L==9 // pt "Clique"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Clicks = @@ -4692,6 +5103,8 @@ const char *Txt_Clicks = "Kliknięcia"; #elif L==9 // pt "Cliques"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_clicks = @@ -4713,6 +5126,8 @@ const char *Txt_clicks = "kliknięcia"; #elif L==9 // pt "cliques"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Clicks_per_day = @@ -4734,6 +5149,8 @@ const char *Txt_Clicks_per_day = "Kliknięć dziennie"; #elif L==9 // pt "Cliques por dia"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Close = @@ -4755,6 +5172,8 @@ const char *Txt_Close = "Zamknij"; #elif L==9 // pt "Fechar"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Closed_survey = @@ -4776,6 +5195,8 @@ const char *Txt_Closed_survey = "Zamkniete badania"; #elif L==9 // pt "Inquérito fechado"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Code = @@ -4797,6 +5218,8 @@ const char *Txt_Code = "Kod"; #elif L==9 // pt "Cód."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Color_of_the_graphic = @@ -4818,6 +5241,8 @@ const char *Txt_Color_of_the_graphic = "Kolor grafiki"; #elif L==9 // pt "Cor do gráfico"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_column = @@ -4839,6 +5264,8 @@ const char *Txt_column = "kolumna"; #elif L==9 // pt "coluna"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Columns = @@ -4860,6 +5287,8 @@ const char *Txt_Columns = "Kolumny"; #elif L==9 // pt "Colunas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_columns = @@ -4881,6 +5310,8 @@ const char *Txt_columns = "kolumny"; #elif L==9 // pt "colunas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Comment = // As a verb @@ -4902,6 +5333,8 @@ const char *Txt_Comment = // As a verb "Komentować"; #elif L==9 // pt "Comentar"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Comment_removed = @@ -4923,6 +5356,8 @@ const char *Txt_Comment_removed = "Komentarz usuniety."; #elif L==9 // pt "Comentário removido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Comments = @@ -4944,6 +5379,8 @@ const char *Txt_Comments = "Komentarze"; #elif L==9 // pt "Comentários"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Configure = @@ -4965,6 +5402,8 @@ const char *Txt_Configure = "Konfiguracja"; #elif L==9 // pt "Configurar"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Configure_projects = @@ -4986,6 +5425,8 @@ const char *Txt_Configure_projects = "Projekty konfiguracja"; #elif L==9 // pt "Configurar projetos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Configure_tests = @@ -5007,6 +5448,8 @@ const char *Txt_Configure_tests = "Test konfiguracja"; #elif L==9 // pt "Configurar testes"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Confirm = @@ -5028,6 +5471,8 @@ const char *Txt_Confirm = "Potwierdzenie"; #elif L==9 // pt "Confirmar"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Confirm_email = @@ -5049,6 +5494,8 @@ const char *Txt_Confirm_email = "Potwierdzenie email"; #elif L==9 // pt "Confirmar email"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Confirm_ID = @@ -5070,6 +5517,8 @@ const char *Txt_Confirm_ID = "Potwierdzenie ID"; #elif L==9 // pt "Confirmar ID"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Confirm_my_enrolment = @@ -5091,6 +5540,8 @@ const char *Txt_Confirm_my_enrolment = "Potwierdzenie mojej rejestracji"; #elif L==9 // pt "Confirmar o meu registo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Congratulations_You_have_created_your_account_X_Now_Y_will_request_you_ = // Warning: it is very important to include two %s in the following sentences @@ -5157,6 +5608,8 @@ const char *Txt_Congratulations_You_have_created_your_account_X_Now_Y_will_reque " Se uma disciplina não existir," " você pode criá-lo antes de solicitar a inscrição do mesmo" " (o mesmo se aplica às instituições, centros e graus)."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_connected_PLURAL = @@ -5178,6 +5631,8 @@ const char *Txt_connected_PLURAL = "online"; #elif L==9 // pt "conectados"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_connected_SINGULAR = @@ -5199,6 +5654,8 @@ const char *Txt_connected_SINGULAR = "online"; #elif L==9 // pt "conectado"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Connected_users = @@ -5220,6 +5677,8 @@ const char *Txt_Connected_users = "Użytkownicy online"; #elif L==9 // pt "Utilizadores conectados"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Continue = @@ -5241,6 +5700,8 @@ const char *Txt_Continue = "Kontynuuj"; #elif L==9 // pt "Continuar"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Contract = // As a verb @@ -5262,6 +5723,8 @@ const char *Txt_Contract = // As a verb "Umowy"; #elif L==9 // pt "Contrair"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Control_of_class_attendance = @@ -5283,6 +5746,8 @@ const char *Txt_Control_of_class_attendance = "Kontrola obecnosc na zajeciach"; #elif L==9 // pt "Controlo de assiduidade de classe"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Cookies = @@ -5304,6 +5769,8 @@ const char *Txt_Cookies = "Cookies"; #elif L==9 // pt "Cookies"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Copy = @@ -5325,6 +5792,8 @@ const char *Txt_Copy = "Kopia"; #elif L==9 // pt "Copiar"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Copy_not_allowed = @@ -5346,6 +5815,8 @@ const char *Txt_Copy_not_allowed = "Kopiowanie nie wolno"; #elif L==9 // pt "Copia não permitida"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Copy_source = @@ -5367,6 +5838,8 @@ const char *Txt_Copy_source = "Kopiowanie zródla"; #elif L==9 // pt "Origem da copia"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Could_not_detect_any_face_in_front_position_ = @@ -5388,6 +5861,8 @@ const char *Txt_Could_not_detect_any_face_in_front_position_ = "Nie wykryto zadnej twarzy w przednim."; #elif L==9 // pt "Não foi possível detectar nenhum rosto na posição frontal."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Countdown = @@ -5409,6 +5884,8 @@ const char *Txt_Countdown = "Odliczanie"; #elif L==9 // pt "Contagem regressiva"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Countries = @@ -5430,6 +5907,8 @@ const char *Txt_Countries = "Kraje"; #elif L==9 // pt "Países"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_countries = @@ -5451,6 +5930,8 @@ const char *Txt_countries = "kraje"; #elif L==9 // pt "países"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_COUNTRIES_HELP_ORDER[Cty_NUM_ORDERS] = @@ -5474,6 +5955,8 @@ const char *Txt_COUNTRIES_HELP_ORDER[Cty_NUM_ORDERS] = "Sortuj wedlug kraju" #elif L==9 // pt "Classificar por país" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Cty_ORDER_BY_NUM_USRS] = @@ -5495,6 +5978,8 @@ const char *Txt_COUNTRIES_HELP_ORDER[Cty_NUM_ORDERS] = "Sortuj wedlug liczby uzytkownikow" #elif L==9 // pt "Classificar por nº de utilizadores" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -5517,6 +6002,8 @@ const char *Txt_Countries_with_pending_institutions = "Kraje z instytucje oczekujący"; #elif L==9 // pt "Países com instituções pendentes"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_COUNTRIES_ORDER[Cty_NUM_ORDERS] = @@ -5540,6 +6027,8 @@ const char *Txt_COUNTRIES_ORDER[Cty_NUM_ORDERS] = "Kraj" #elif L==9 // pt "País" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Cty_ORDER_BY_NUM_USRS] = @@ -5561,6 +6050,8 @@ const char *Txt_COUNTRIES_ORDER[Cty_NUM_ORDERS] = "Użytkownicy kraju" #elif L==9 // pt "Utilizadores do país" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -5583,6 +6074,8 @@ const char *Txt_Country = "Kraj"; #elif L==9 // pt "País"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_country = @@ -5604,6 +6097,8 @@ const char *Txt_country = "kraj"; #elif L==9 // pt "país"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Country_unspecified = @@ -5625,6 +6120,8 @@ const char *Txt_Country_unspecified = "Kraj nieokreslony"; #elif L==9 // pt "País indeterminado"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Country_X_removed = // Warning: it is very important to include %s in the following sentences @@ -5646,6 +6143,8 @@ const char *Txt_Country_X_removed = // Warning: it is very important to include "Kraj %s usuniete."; #elif L==9 // pt "País %s removido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Course = @@ -5667,6 +6166,8 @@ const char *Txt_Course = "Kurs"; #elif L==9 // pt "Disciplina"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_course = @@ -5688,6 +6189,8 @@ const char *Txt_course = "kurs"; #elif L==9 // pt "disciplina"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Course_program = @@ -5709,6 +6212,8 @@ const char *Txt_Course_program = "Program kursu"; #elif L==9 // pt "Programa da disciplina"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_COURSE_STATUS[Hie_NUM_STATUS_TXT] = @@ -5732,6 +6237,8 @@ const char *Txt_COURSE_STATUS[Hie_NUM_STATUS_TXT] = "Nieznany" #elif L==9 // pt "Desconhecido" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Hie_STATUS_ACTIVE] = @@ -5753,6 +6260,8 @@ const char *Txt_COURSE_STATUS[Hie_NUM_STATUS_TXT] = "Aktywne" #elif L==9 // pt "Ativa" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Hie_STATUS_PENDING] = @@ -5774,6 +6283,8 @@ const char *Txt_COURSE_STATUS[Hie_NUM_STATUS_TXT] = "Nowy" #elif L==9 // pt "Nova" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Hie_STATUS_REMOVED] = @@ -5795,6 +6306,8 @@ const char *Txt_COURSE_STATUS[Hie_NUM_STATUS_TXT] = "Usuniete" #elif L==9 // pt "Suprimida" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -5817,6 +6330,8 @@ const char *Txt_COURSE_With_users = "Z uzytkownikow"; #elif L==9 // pt "Com utilizadores"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_COURSE_Without_users = @@ -5838,6 +6353,8 @@ const char *Txt_COURSE_Without_users = "Bez uzytkownikow"; #elif L==9 // pt "Sem utilizadores"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Course_X_removed = // Warning: it is very important to include %s in the following sentences @@ -5859,6 +6376,8 @@ const char *Txt_Course_X_removed = // Warning: it is very important to include % "Kurs %s usuniete."; #elif L==9 // pt "Disciplina %s removida."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Courses = @@ -5880,6 +6399,8 @@ const char *Txt_Courses = "Kursów"; #elif L==9 // pt "Disciplinas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Courses_ABBREVIATION = @@ -5901,6 +6422,8 @@ const char *Txt_Courses_ABBREVIATION = "Kurs."; #elif L==9 // pt "Disc."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_courses = @@ -5922,6 +6445,8 @@ const char *Txt_courses = "kursów"; #elif L==9 // pt "disciplinas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_courses_ABBREVIATION = @@ -5943,6 +6468,8 @@ const char *Txt_courses_ABBREVIATION = "kurs."; #elif L==9 // pt "disc."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_X_courses_have_been_eliminated = // Warning: it is very important to include %u in the following sentences @@ -5964,6 +6491,8 @@ const char *Txt_X_courses_have_been_eliminated = // Warning: it is very importan "%u kursów zostało wyeliminowanych."; #elif L==9 // pt "%u disciplina(s) foram eliminadas."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Courses_of_DEGREE_X = // Warning: it is very important to include %s in the following sentences @@ -5985,6 +6514,8 @@ const char *Txt_Courses_of_DEGREE_X = // Warning: it is very important to includ "Kursów %s"; #elif L==9 // pt "Disciplinas de %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_account = @@ -6006,6 +6537,8 @@ const char *Txt_Create_account = "Załóż konto"; #elif L==9 // pt "Criar conta"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_announcement = @@ -6027,6 +6560,8 @@ const char *Txt_Create_announcement = "Stwórz ogłoszenia"; #elif L==9 // pt "Criar anúncio"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_another_center = @@ -6048,6 +6583,8 @@ const char *Txt_Create_another_center = "Utwórz inny centrum"; #elif L==9 // pt "Criar outro centro"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_another_course = @@ -6069,6 +6606,8 @@ const char *Txt_Create_another_course = "Utwórz inny kursu"; #elif L==9 // pt "Criar outra disciplina"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_another_degree = @@ -6090,6 +6629,8 @@ const char *Txt_Create_another_degree = "Utwórz inny stopnia"; #elif L==9 // pt "Criar outro grau"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_another_institution = @@ -6111,6 +6652,8 @@ const char *Txt_Create_another_institution = "Utwórz inny instytucji"; #elif L==9 // pt "Criar outra institução"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_another_type_of_degree = @@ -6132,6 +6675,8 @@ const char *Txt_Create_another_type_of_degree = "Utwórz inny typu stopnia"; #elif L==9 // pt "Criar outro tipo de grau"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_assignment = @@ -6153,6 +6698,8 @@ const char *Txt_Create_assignment = "Utwórz zadanie"; #elif L==9 // pt "Criar atividade"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_banner = @@ -6174,6 +6721,8 @@ const char *Txt_Create_banner = "Utwórz banner"; #elif L==9 // pt "Criar banner"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_building = @@ -6195,6 +6744,8 @@ const char *Txt_Create_building = "Utwórz budynek"; #elif L==9 // pt "Criar edifício"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_center = @@ -6216,6 +6767,8 @@ const char *Txt_Create_center = "Utwórz centrum"; #elif L==9 // pt "Criar centro"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_country = @@ -6237,6 +6790,8 @@ const char *Txt_Create_country = "Utwórz kraju"; #elif L==9 // pt "Criar país"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_course = @@ -6258,6 +6813,8 @@ const char *Txt_Create_course = "Utwórz kursu"; #elif L==9 // pt "Criar disciplina"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_degree = @@ -6279,6 +6836,8 @@ const char *Txt_Create_degree = "Utwórz stopnia"; #elif L==9 // pt "Criar grau"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_department = @@ -6300,6 +6859,8 @@ const char *Txt_Create_department = "Utwórz działu"; #elif L==9 // pt "Criar departamento"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_email_domain = @@ -6321,6 +6882,8 @@ const char *Txt_Create_email_domain = "Utwórz domeny mail"; #elif L==9 // pt "Criar domínio de email"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_email_message = @@ -6342,6 +6905,8 @@ const char *Txt_Create_email_message = "Utwórz wiadomosci email"; #elif L==9 // pt "Criar uma mensagem de email"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_event = @@ -6363,6 +6928,8 @@ const char *Txt_Create_event = "Utwórz wydarzenie"; #elif L==9 // pt "Criar evento"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_exam = @@ -6384,6 +6951,8 @@ const char *Txt_Create_exam = "Utwórz egzamin"; #elif L==9 // pt "Criar exame"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_folder = @@ -6405,6 +6974,8 @@ const char *Txt_Create_folder = "Utwórz folder"; #elif L==9 // pt "Criar diretório"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_game = @@ -6426,6 +6997,8 @@ const char *Txt_Create_game = "Utwórz gra"; #elif L==9 // pt "Criar jogo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_group = @@ -6447,6 +7020,8 @@ const char *Txt_Create_group = "Utwórz grupę"; #elif L==9 // pt "Criar grupo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_holiday = @@ -6468,6 +7043,8 @@ const char *Txt_Create_holiday = "Utwórz wakacje"; #elif L==9 // pt "Criar féria"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_institution = @@ -6489,6 +7066,8 @@ const char *Txt_Create_institution = "Utwórz instytucji"; #elif L==9 // pt "Criar institução"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_item = @@ -6510,6 +7089,8 @@ const char *Txt_Create_item = "Utwórz przedmiot"; #elif L==9 // pt "Criar item"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_link = @@ -6531,6 +7112,8 @@ const char *Txt_Create_link = "Utwórz link"; #elif L==9 // pt "Criar ligação"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_notice = @@ -6552,6 +7135,8 @@ const char *Txt_Create_notice = "Utwórz powiadomienie"; #elif L==9 // pt "Criar aviso"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_BR_notification = @@ -6573,6 +7158,8 @@ const char *Txt_Create_BR_notification = "Utwórz
powiadomienie"; #elif L==9 // pt "Criar
notificação"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_password = @@ -6594,6 +7181,8 @@ const char *Txt_Create_password = "Utwórz hasło"; #elif L==9 // pt "Criar senha"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_place = @@ -6615,6 +7204,8 @@ const char *Txt_Create_place = "Utwórz miejsce"; #elif L==9 // pt "Criar localização"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_plugin = @@ -6636,6 +7227,8 @@ const char *Txt_Create_plugin = "Utwórz plugin"; #elif L==9 // pt "Criar plugin"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_project = @@ -6657,6 +7250,8 @@ const char *Txt_Create_project = "Utwórz projekt"; #elif L==9 // pt "Criar projeto"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_question = @@ -6678,6 +7273,8 @@ const char *Txt_Create_question = "Utwórz pytanie"; #elif L==9 // pt "Criar pergunta"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_record_field = @@ -6699,6 +7296,8 @@ const char *Txt_Create_record_field = "Utwórz rekord pola"; #elif L==9 // pt "Criar campo de cartão"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_room = @@ -6720,6 +7319,8 @@ const char *Txt_Create_room = "Utwórz klasa"; #elif L==9 // pt "Criar sala"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_set_of_questions = @@ -6741,6 +7342,8 @@ const char *Txt_Create_set_of_questions = "Utwórz zestaw pytań"; #elif L==9 // pt "Criar conjunto de perguntas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_session = @@ -6762,6 +7365,8 @@ const char *Txt_Create_session = "Utwórz sesji"; #elif L==9 // pt "Criar sessão"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_survey = @@ -6783,6 +7388,8 @@ const char *Txt_Create_survey = "Utwórz ankiety"; #elif L==9 // pt "Criar inquérito"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_type_of_degree = @@ -6804,6 +7411,8 @@ const char *Txt_Create_type_of_degree = "Utwórz typu stopnia"; #elif L==9 // pt "Criar tipo de grau"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_type_of_group = @@ -6825,6 +7434,8 @@ const char *Txt_Create_type_of_group = "Utwórz typu grupy"; #elif L==9 // pt "Criar tipo de grupo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Create_ZIP_file = @@ -6846,6 +7457,8 @@ const char *Txt_Create_ZIP_file = "Utwórz pliku ZIP"; #elif L==9 // pt "Criar arquivo ZIP"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Created_new_assignment_X = // Warning: it is very important to include %s in the following sentences @@ -6867,6 +7480,8 @@ const char *Txt_Created_new_assignment_X = // Warning: it is very important to i "Utworzono nowa zadania %s."; #elif L==9 // pt "Criada nova atividade %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Created_new_banner_X = // Warning: it is very important to include %s in the following sentences @@ -6888,6 +7503,8 @@ const char *Txt_Created_new_banner_X = // Warning: it is very important to inclu "Utworzono nowy banner %s."; #elif L==9 // pt "Criado novo banner %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Created_new_building_X = // Warning: it is very important to include %s in the following sentences @@ -6909,6 +7526,8 @@ const char *Txt_Created_new_building_X = // Warning: it is very important to inc "Utworzono nowe budynek %s."; #elif L==9 // pt "Criado novo edifício %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Created_new_call_for_exam = @@ -6930,6 +7549,8 @@ const char *Txt_Created_new_call_for_exam = "Utworzono nowe ogloszenie egzamin."; #elif L==9 // pt "Criado nova chamada para exame."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Created_new_center_X = // Warning: it is very important to include %s in the following sentences @@ -6951,6 +7572,8 @@ const char *Txt_Created_new_center_X = // Warning: it is very important to inclu "Utworzono nowe centrum %s."; #elif L==9 // pt "Criado novo centro %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Created_new_country_X = // Warning: it is very important to include %s in the following sentences @@ -6972,6 +7595,8 @@ const char *Txt_Created_new_country_X = // Warning: it is very important to incl "Utworzono nowa kraju %s."; #elif L==9 // pt "Criado novo país %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Created_new_course_X = // Warning: it is very important to include %s in the following sentences @@ -6993,6 +7618,8 @@ const char *Txt_Created_new_course_X = // Warning: it is very important to inclu "Utworzono nowa oczywiscie %s."; #elif L==9 // pt "Criada nova disciplina %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Created_new_degree_X = // Warning: it is very important to include %s in the following sentences @@ -7014,6 +7641,8 @@ const char *Txt_Created_new_degree_X = // Warning: it is very important to inclu "Utworzono nowy poziom %s."; #elif L==9 // pt "Criada novo grau %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Created_new_department_X = // Warning: it is very important to include %s in the following sentences @@ -7035,6 +7664,8 @@ const char *Txt_Created_new_department_X = // Warning: it is very important to i "Utworzono nowy dział %s."; #elif L==9 // pt "Criado novo departamento %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Created_new_email_domain_X = // Warning: it is very important to include %s in the following sentences @@ -7056,6 +7687,8 @@ const char *Txt_Created_new_email_domain_X = // Warning: it is very important to "Utworzono nowa domena mail %s."; #elif L==9 // pt "Criado novo domínio de email %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Created_new_event_X = // Warning: it is very important to include %s in the following sentences @@ -7077,6 +7710,8 @@ const char *Txt_Created_new_event_X = // Warning: it is very important to includ "Utworzono nowe wydarzenie %s."; #elif L==9 // pt "Criado novo evento %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Created_new_exam_X = // Warning: it is very important to include %s in the following sentences @@ -7098,6 +7733,8 @@ const char *Txt_Created_new_exam_X = // Warning: it is very important to include "Utworzono nowe egzaminu %s."; #elif L==9 // pt "Criado novo exame %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Created_new_game_X = // Warning: it is very important to include %s in the following sentences @@ -7119,6 +7756,8 @@ const char *Txt_Created_new_game_X = // Warning: it is very important to include "Utworzono nowe gra %s."; #elif L==9 // pt "Criado novo jogo %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Created_new_group_X = // Warning: it is very important to include %s in the following sentences @@ -7140,6 +7779,8 @@ const char *Txt_Created_new_group_X = // Warning: it is very important to includ "Stworzyl nowa grupe %s."; #elif L==9 // pt "Criado novo grupo %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Created_new_holiday_X = // Warning: it is very important to include %s in the following sentences @@ -7161,6 +7802,8 @@ const char *Txt_Created_new_holiday_X = // Warning: it is very important to incl "Utworzono nowe swieto %s."; #elif L==9 // pt "Criado nova féria %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Created_new_institution_X = // Warning: it is very important to include %s in the following sentences @@ -7182,6 +7825,8 @@ const char *Txt_Created_new_institution_X = // Warning: it is very important to "Utworzono nowa instytucje %s."; #elif L==9 // pt "Criada nova institução %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Created_new_link_X = // Warning: it is very important to include %s in the following sentences @@ -7203,6 +7848,8 @@ const char *Txt_Created_new_link_X = // Warning: it is very important to include "Utworzono nowy link %s."; #elif L==9 // pt "Criado nova ligação %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Created_new_place_X = // Warning: it is very important to include %s in the following sentences @@ -7224,6 +7871,8 @@ const char *Txt_Created_new_place_X = // Warning: it is very important to includ "Utworzono nowe miejsce %s."; #elif L==9 // pt "Criado nova localização %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Created_new_plugin_X = // Warning: it is very important to include %s in the following sentences @@ -7245,6 +7894,8 @@ const char *Txt_Created_new_plugin_X = // Warning: it is very important to inclu "Utworzono nowy plugin %s."; #elif L==9 // pt "Criado novo plugin %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Created_new_project_X = // Warning: it is very important to include %s in the following sentences @@ -7266,6 +7917,8 @@ const char *Txt_Created_new_project_X = // Warning: it is very important to incl "Utworzono nowe projekt %s."; #elif L==9 // pt "Criado novo projeto %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Created_new_record_field_X = // Warning: it is very important to include %s in the following sentences @@ -7287,6 +7940,8 @@ const char *Txt_Created_new_record_field_X = // Warning: it is very important to "Utworzono nowe pola rekordu %s."; #elif L==9 // pt "Criado novo campo de cartão %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Created_new_room_X = // Warning: it is very important to include %s in the following sentences @@ -7308,6 +7963,8 @@ const char *Txt_Created_new_room_X = // Warning: it is very important to include "Utworzono nowe klasa %s."; #elif L==9 // pt "Criada nova sala %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Created_new_set_of_questions_X = // Warning: it is very important to include %s in the following sentences @@ -7329,6 +7986,8 @@ const char *Txt_Created_new_set_of_questions_X = // Warning: it is very importan "Utworzono nowe zestaw pytań %s."; #elif L==9 // pt "Criado novo conjunto de perguntas %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Created_new_survey_X = // Warning: it is very important to include %s in the following sentences @@ -7350,6 +8009,8 @@ const char *Txt_Created_new_survey_X = // Warning: it is very important to inclu "Utworzono nowe badania %s."; #elif L==9 // pt "Criado novo inquérito %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Created_new_type_of_degree_X = // Warning: it is very important to include %s in the following sentences @@ -7371,6 +8032,8 @@ const char *Txt_Created_new_type_of_degree_X = // Warning: it is very important "Stworzyl nowy typ stopnia %s."; #elif L==9 // pt "Criado novo tipo de grau %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Created_new_type_of_group_X = // Warning: it is very important to include %s in the following sentences @@ -7392,6 +8055,8 @@ const char *Txt_Created_new_type_of_group_X = // Warning: it is very important t "Stworzyl nowy typ grupy %s."; #elif L==9 // pt "Criado novo tipo de grupo %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Created_tables_in_the_database_that_did_not_exist = @@ -7413,6 +8078,8 @@ const char *Txt_Created_tables_in_the_database_that_did_not_exist = "Wykonawca tabel w bazie danych, które nie istnialy."; #elif L==9 // pt "Criadas tabelas no banco de dados que não existiam."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Creating_database_tables_if_they_do_not_exist = @@ -7434,6 +8101,8 @@ const char *Txt_Creating_database_tables_if_they_do_not_exist = "Utwórz tabel bazy danych, jesli ich nie ma …"; #elif L==9 // pt "Criando tabelas da base de dados, se elas não existirem…"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Current_email = @@ -7455,6 +8124,8 @@ const char *Txt_Current_email = "Obecny email"; #elif L==9 // pt "Email atual"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Current_image_video = @@ -7476,6 +8147,8 @@ const char *Txt_Current_image_video = "Bieżący obraz / wideo"; #elif L==9 // pt "Imagem / vídeo atual"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Current_nickname = @@ -7497,6 +8170,8 @@ const char *Txt_Current_nickname = "Obecny pseudonim"; #elif L==9 // pt "Alcunha atual"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Current_password = @@ -7518,6 +8193,8 @@ const char *Txt_Current_password = "Obecne hasło"; #elif L==9 // pt "Senha atual"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Cut = // First part of "Cut-Paste" @@ -7539,6 +8216,8 @@ const char *Txt_Cut = // First part of "Cut-Paste" "Wytnij"; #elif L==9 // pt "Cortar"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Data = // Project data @@ -7560,6 +8239,8 @@ const char *Txt_Data = // Project data "Dane"; #elif L==9 // pt "Dados"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_DATA_PROTECTION_POLICY = @@ -7581,6 +8262,8 @@ const char *Txt_DATA_PROTECTION_POLICY = "Polityka ochrony danych"; #elif L==9 // pt "Política de proteção de dados"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Date = @@ -7602,6 +8285,8 @@ const char *Txt_Date = "Data"; #elif L==9 // pt "Data"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Date_and_time = @@ -7623,6 +8308,8 @@ const char *Txt_Date_and_time = "Data i godzina"; #elif L==9 // pt "Data e hora"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Date_of_birth = @@ -7644,6 +8331,8 @@ const char *Txt_Date_of_birth = "Data urodzenia"; #elif L==9 // pt "Data nascimento"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Date_of_creation = @@ -7665,6 +8354,8 @@ const char *Txt_Date_of_creation = "Data utworzenia"; #elif L==9 // pt "Data da criação"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Dates = @@ -7686,6 +8377,8 @@ const char *Txt_Dates = "Daty"; #elif L==9 // pt "Datas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Day = @@ -7707,6 +8400,8 @@ const char *Txt_Day = "Dzien"; #elif L==9 // pt "Dia"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_day = @@ -7728,6 +8423,8 @@ const char *Txt_day = "dzień"; #elif L==9 // pt "dia"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_days = @@ -7749,6 +8446,8 @@ const char *Txt_days = "dni;"; #elif L==9 // pt "dias"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_DAYS_CAPS[7] = @@ -7771,6 +8470,8 @@ const char *Txt_DAYS_CAPS[7] = "Poniedzialek" #elif L==9 // pt "SEGUNDA-FEIRA" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -7791,6 +8492,8 @@ const char *Txt_DAYS_CAPS[7] = "Wtorek" #elif L==9 // pt "TERÇA-FEIRA" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -7811,6 +8514,8 @@ const char *Txt_DAYS_CAPS[7] = "Sroda" #elif L==9 // pt "QUARTA-FEIRA" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -7831,6 +8536,8 @@ const char *Txt_DAYS_CAPS[7] = "Czwartek" #elif L==9 // pt "QUINTA-FEIRA" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -7851,6 +8558,8 @@ const char *Txt_DAYS_CAPS[7] = "Piatek" #elif L==9 // pt "SEXTA-FEIRA" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -7871,6 +8580,8 @@ const char *Txt_DAYS_CAPS[7] = "Sobota" #elif L==9 // pt "SABADO" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -7891,6 +8602,8 @@ const char *Txt_DAYS_CAPS[7] = "Niedziela" #elif L==9 // pt "DOMINGO" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -7914,6 +8627,8 @@ const char *Txt_DAYS_SMALL[7] = "Poniedzialek" #elif L==9 // pt "Segunda-feira" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -7934,6 +8649,8 @@ const char *Txt_DAYS_SMALL[7] = "Wtorek" #elif L==9 // pt "Terça-feira" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -7954,6 +8671,8 @@ const char *Txt_DAYS_SMALL[7] = "Sroda" #elif L==9 // pt "Quarta-feira" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -7974,6 +8693,8 @@ const char *Txt_DAYS_SMALL[7] = "Czwartek" #elif L==9 // pt "Quinta-feira" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -7994,6 +8715,8 @@ const char *Txt_DAYS_SMALL[7] = "Piatek" #elif L==9 // pt "Sexta-feira" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -8014,6 +8737,8 @@ const char *Txt_DAYS_SMALL[7] = "Sobota" #elif L==9 // pt "Sabado" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -8034,6 +8759,8 @@ const char *Txt_DAYS_SMALL[7] = "Niedziela" #elif L==9 // pt "Domingo" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -8056,6 +8783,8 @@ const char *Txt_Decrease_level_of_X = // Warning: it is very important to includ "Spadek poziomu %s"; #elif L==9 // pt "Diminuir o nível de %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_default = @@ -8077,6 +8806,8 @@ const char *Txt_default = "Domyslnie"; #elif L==9 // pt "padrão"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Degree = @@ -8098,6 +8829,8 @@ const char *Txt_Degree = "Stopien"; #elif L==9 // pt "Grau"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_degree = @@ -8119,6 +8852,8 @@ const char *Txt_degree = "stopien"; #elif L==9 // pt "grau"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_DEGREE_STATUS[Hie_NUM_STATUS_TXT] = @@ -8142,6 +8877,8 @@ const char *Txt_DEGREE_STATUS[Hie_NUM_STATUS_TXT] = "Nieznany" #elif L==9 // pt "Desconhecido" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Hie_STATUS_ACTIVE] = @@ -8163,6 +8900,8 @@ const char *Txt_DEGREE_STATUS[Hie_NUM_STATUS_TXT] = "Aktywne" #elif L==9 // pt "Ativa" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Hie_STATUS_PENDING] = @@ -8184,6 +8923,8 @@ const char *Txt_DEGREE_STATUS[Hie_NUM_STATUS_TXT] = "Nowy" #elif L==9 // pt "Nova" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Hie_STATUS_REMOVED] = @@ -8205,6 +8946,8 @@ const char *Txt_DEGREE_STATUS[Hie_NUM_STATUS_TXT] = "Usuniete" #elif L==9 // pt "Suprimida" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -8229,6 +8972,8 @@ const char *Txt_DEGREE_TYPES_HELP_ORDER[DegTyp_NUM_ORDERS] = "Sortuj według rodzaju stopnia" #elif L==9 // pt "Classificar por tipo de grau" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [DegTyp_ORDER_BY_NUM_DEGREES] = @@ -8250,6 +8995,8 @@ const char *Txt_DEGREE_TYPES_HELP_ORDER[DegTyp_NUM_ORDERS] = "Sortuj wedlug stopni" #elif L==9 // pt "Classificar por nº de graus" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -8274,6 +9021,8 @@ const char *Txt_DEGREE_TYPES_ORDER[DegTyp_NUM_ORDERS] = "Rodzaje stopni" #elif L==9 // pt "Tipos de grau" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [DegTyp_ORDER_BY_NUM_DEGREES] = @@ -8295,6 +9044,8 @@ const char *Txt_DEGREE_TYPES_ORDER[DegTyp_NUM_ORDERS] = "Stopnie" #elif L==9 // pt "Graus" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -8317,6 +9068,8 @@ const char *Txt_DEGREE_With_courses = "Z kursów"; #elif L==9 // pt "Com disciplinas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_DEGREE_Without_courses = @@ -8338,6 +9091,8 @@ const char *Txt_DEGREE_Without_courses = "Bez kursów"; #elif L==9 // pt "Sem disciplinas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Degree_X_removed = // Warning: it is very important to include %s in the following sentences @@ -8359,6 +9114,8 @@ const char *Txt_Degree_X_removed = // Warning: it is very important to include % "Studia %s usuniete."; #elif L==9 // pt "Grau %s removido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Degrees = @@ -8380,6 +9137,8 @@ const char *Txt_Degrees = "Stopnie"; #elif L==9 // pt "Graus"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Degrees_ABBREVIATION = @@ -8401,6 +9160,8 @@ const char *Txt_Degrees_ABBREVIATION = "Stopni"; #elif L==9 // pt "Titul."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_degrees = @@ -8422,6 +9183,8 @@ const char *Txt_degrees = "stopnie"; #elif L==9 // pt "graus"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Degrees_of_CENTER_X = // Warning: it is very important to include %s in the following sentences @@ -8443,6 +9206,8 @@ const char *Txt_Degrees_of_CENTER_X = // Warning: it is very important to includ "Stopnie %s"; #elif L==9 // pt "Graus de %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Degrees_with_pending_courses = @@ -8464,6 +9229,8 @@ const char *Txt_Degrees_with_pending_courses = "Stopnie z kursõw oczekujący"; #elif L==9 // pt "Graus com disciplinas pendentes"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Delete_messages_received = @@ -8485,6 +9252,8 @@ const char *Txt_Delete_messages_received = "Usuń wiadomości otrzymane"; #elif L==9 // pt "Eliminar mensagens recebidas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Delete_messages_sent = @@ -8506,6 +9275,8 @@ const char *Txt_Delete_messages_sent = "Usuń wiadomości wyslanych"; #elif L==9 // pt "Eliminar mensagens enviadas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Delete_my_answer = @@ -8527,6 +9298,8 @@ const char *Txt_Delete_my_answer = "Usuń moją odpowiedź"; #elif L==9 // pt "Excluir minha resposta"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Department = @@ -8548,6 +9321,8 @@ const char *Txt_Department = "Wydział"; #elif L==9 // pt "Departamento"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Department_X_removed = // Warning: it is very important to include %s in the following sentences @@ -8569,6 +9344,8 @@ const char *Txt_Department_X_removed = // Warning: it is very important to inclu "Zaklad %s usuniete."; #elif L==9 // pt "Departamento %s removido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Department_unspecified = @@ -8590,6 +9367,8 @@ const char *Txt_Department_unspecified = "Departament nieokreslone"; #elif L==9 // pt "Departamento indeterminado"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Departments = @@ -8611,6 +9390,8 @@ const char *Txt_Departments = "Wydziały"; #elif L==9 // pt "Departamentos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Departments_of_INSTITUTION_X = // Warning: it is very important to include %s in the following sentences @@ -8632,6 +9413,8 @@ const char *Txt_Departments_of_INSTITUTION_X = // Warning: it is very important "Wydziały %s"; #elif L==9 // pt "Departamentos de %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Departments_ABBREVIATION = @@ -8653,6 +9436,8 @@ const char *Txt_Departments_ABBREVIATION = "Wydzialy"; #elif L==9 // pt "Depar."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_DEPARTMENTS_HELP_ORDER[Dpt_NUM_ORDERS] = @@ -8676,6 +9461,8 @@ const char *Txt_DEPARTMENTS_HELP_ORDER[Dpt_NUM_ORDERS] = "Sortuj wedlug dzialów" #elif L==9 // pt "Classificar por departamento" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Dpt_ORDER_BY_NUM_TCHS] = @@ -8697,6 +9484,8 @@ const char *Txt_DEPARTMENTS_HELP_ORDER[Dpt_NUM_ORDERS] = "Sortuj wedlug liczby nauczycieli" #elif L==9 // pt "Classificar por nº de professores" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -8721,6 +9510,8 @@ const char *Txt_DEPARTMENTS_ORDER[Dpt_NUM_ORDERS] = "Wydział" #elif L==9 // pt "Departamento" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Dpt_ORDER_BY_NUM_TCHS] = @@ -8742,6 +9533,8 @@ const char *Txt_DEPARTMENTS_ORDER[Dpt_NUM_ORDERS] = "Nauczycieli" #elif L==9 // pt "Professores" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -8764,6 +9557,8 @@ const char *Txt_Description = "Opis"; #elif L==9 // pt "Descrição"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Design = @@ -8785,6 +9580,8 @@ const char *Txt_Design = "Design"; #elif L==9 // pt "Design"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Details = @@ -8806,6 +9603,8 @@ const char *Txt_Details = "Szczegóły"; #elif L==9 // pt "Detalhes"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Disclaimer_the_files_hosted_here_ = // Warning: it is very important to include two %s in the following sentences @@ -8889,6 +9688,8 @@ const char *Txt_Disclaimer_the_files_hosted_here_ = // Warning: it is very impor " Se você acha conveniente remover qualquer arquivo" " cujo conteúdo pertença a você" " ou que viole a lei, entre em contato com %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Display_photos = @@ -8910,6 +9711,8 @@ const char *Txt_Display_photos = "Wyswietlanie zdjec"; #elif L==9 // pt "Incluir fotos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_distributed_by = @@ -8931,6 +9734,8 @@ const char *Txt_distributed_by = "wyplacanych przez"; #elif L==9 // pt "distribuído por"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_not_show_again = @@ -8952,6 +9757,8 @@ const char *Txt_Do_not_show_again = "Nie pokazuj ponownie"; #elif L==9 // pt "Não mostrar novamente"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_be_removed_as_an_administrator_of_X = // Warning: it is very important to include %s in the following sentences @@ -8982,6 +9789,8 @@ const char *Txt_Do_you_really_want_to_be_removed_as_an_administrator_of_X = // W #elif L==9 // pt "Você realmente quer ser removido/a como administrador/a" " de %s?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_be_removed_from_the_course_X = // Warning: it is very important to include %s in the following sentences @@ -9012,6 +9821,8 @@ const char *Txt_Do_you_really_want_to_be_removed_from_the_course_X = // Warning: #elif L==9 // pt "Você realmente quer ser removido/a da disciplina %s" " (removendo seus trabalhos, inscrição em grupos, etc.)?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_be_removed_as_a_X_from_the_project_Y = // Warning: it is very important to include two %s in the following sentences @@ -9042,6 +9853,8 @@ const char *Txt_Do_you_really_want_to_be_removed_as_a_X_from_the_project_Y = // #elif L==9 // pt "Você realmente quer ser removido" " como %s do projeto %s?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_completely_eliminate_the_following_user = @@ -9063,6 +9876,8 @@ const char *Txt_Do_you_really_want_to_completely_eliminate_the_following_user = "Czy na pewno chcesz, aby calkowicie wyeliminowac nastepujacych uzytkowników?"; #elif L==9 // pt "Você realmente quer eliminar completamente o seguinte usuário/a?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_completely_eliminate_your_user_account = @@ -9084,6 +9899,8 @@ const char *Txt_Do_you_really_want_to_completely_eliminate_your_user_account = "Czy na pewno chcesz, aby calkowicie wyeliminowac konta uzytkownika?"; #elif L==9 // pt "Você realmente quer eliminar completamente sua conta de usuário?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_delete_all_messages_received_from_USER_X_from_COURSE_Y = // Warning: it is very important to include two %s in the following sentences @@ -9105,6 +9922,8 @@ const char *Txt_Do_you_really_want_to_delete_all_messages_received_from_USER_X_f "Czy na pewno chcesz usunac wszystkie wiadomosci otrzymane od %s z %s?"; #elif L==9 // pt "Você realmente deseja eliminar todas as mensagens recebidas de %s de %s?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_delete_all_messages_received_from_USER_X_from_COURSE_Y_related_to_CONTENT_Z = // Warning: it is very important to include three %s in the following sentences @@ -9135,6 +9954,8 @@ const char *Txt_Do_you_really_want_to_delete_all_messages_received_from_USER_X_f #elif L==9 // pt "Você realmente deseja eliminar todas as mensagens" " recebidas de %s de %s relacionadas com %s?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_delete_all_messages_sent_to_USER_X_from_COURSE_Y = // Warning: it is very important to include two %s in the following sentences @@ -9156,6 +9977,8 @@ const char *Txt_Do_you_really_want_to_delete_all_messages_sent_to_USER_X_from_CO "Czy na pewno chcesz usunac wszystkie wiadomosci wyslane do %s z %s?"; #elif L==9 // pt "Você realmente deseja eliminar todas as mensagens enviadas para %s de %s?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_delete_all_messages_sent_to_USER_X_from_COURSE_Y_related_to_CONTENT_Z = // Warning: it is very important to include three %s in the following sentences @@ -9177,6 +10000,8 @@ const char *Txt_Do_you_really_want_to_delete_all_messages_sent_to_USER_X_from_CO "Czy na pewno chcesz usunac wszystkie wiadomosci wyslane do %s z %s podobne do %s?"; #elif L==9 // pt "Você realmente deseja eliminar todas as mensagens enviadas para %s de %s relacionadas com %s?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_delete_the_unread_messages_received_from_USER_X_from_COURSE_Y = // Warning: it is very important to include two %s in the following sentences @@ -9198,6 +10023,8 @@ const char *Txt_Do_you_really_want_to_delete_the_unread_messages_received_from_U "Czy na pewno chcesz usunac nieprzeczytanych wiadomosci otrzymane od %s z %s?"; #elif L==9 // pt "Você realmente deseja eliminar as mensagens não lidas recebidas de %s de %s?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_delete_the_unread_messages_received_from_USER_X_from_COURSE_Y_related_to_CONTENT_Z = // Warning: it is very important to include three %s in the following sentences @@ -9228,6 +10055,8 @@ const char *Txt_Do_you_really_want_to_delete_the_unread_messages_received_from_U #elif L==9 // pt "Você realmente deseja eliminar as mensagens não lidas" " recebidas de %s de %s relacionadas com %s?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_register_the_following_user_as_an_administrator_of_X = // Warning: it is very important to include %s in the following sentences @@ -9258,6 +10087,8 @@ const char *Txt_Do_you_really_want_to_register_the_following_user_as_an_administ #elif L==9 // pt "Você realmente deseja registrar o seguinte usuário/a" " como administrador/a de %s?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_reject_the_enrolment_request_ = // Warning: it is very important to include three %s in the following sentences @@ -9297,6 +10128,8 @@ const char *Txt_Do_you_really_want_to_reject_the_enrolment_request_ = // Warning "Você realmente quer rejeitar a solicitação de inscrição" " de %s como %s" " na disciplina %s?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_remove_the_X_students_from_the_course_Y_ = // Warning: it is very important to include %u and %s in the following sentences @@ -9363,6 +10196,8 @@ const char *Txt_Do_you_really_want_to_remove_the_X_students_from_the_course_Y_ = " e também serão removidos todos os trabalhos enviados por eles nesta disciplina," " suos cartões para esta disciplina," " e sua inscrição em grupos desta disciplina."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_remove_the_assignment_X = // Warning: it is very important to include %s in the following sentences @@ -9384,6 +10219,8 @@ const char *Txt_Do_you_really_want_to_remove_the_assignment_X = // Warning: it i "Czy na pewno chcesz usunac przypisanie %s?"; #elif L==9 // pt "Você realmente deseja remover a atividade %s?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_remove_the_entire_thread = @@ -9405,6 +10242,8 @@ const char *Txt_Do_you_really_want_to_remove_the_entire_thread = "Czy na pewno chcesz usunac caly watek?"; #elif L==9 // pt "Você realmente deseja remover toda a discussão?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_remove_the_entire_thread_X = // Warning: it is very important to include %s in the following sentences @@ -9426,6 +10265,8 @@ const char *Txt_Do_you_really_want_to_remove_the_entire_thread_X = // Warning: i "Czy na pewno chcesz usunac caly watek %s?"; #elif L==9 // pt "Você realmente deseja remover toda a discussão %s?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_remove_the_event_X = // Warning: it is very important to include %s in the following sentences @@ -9447,6 +10288,8 @@ const char *Txt_Do_you_really_want_to_remove_the_event_X = // Warning: it is ver "Czy na pewno chcesz usunac wydarzenie %s?"; #elif L==9 // pt "Você realmente deseja remover o evento %s?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_remove_the_exam_X = // Warning: it is very important to include %s in the following sentences @@ -9468,6 +10311,8 @@ const char *Txt_Do_you_really_want_to_remove_the_exam_X = // Warning: it is very "Czy na pewno chcesz usunac egzaminu %s?"; #elif L==9 // pt "Você realmente deseja remover o exame %s?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_remove_the_field_X_from_the_records_of_Y_Z_ = // Warning: it is very important to include two %s and one %u in the following sentences @@ -9507,6 +10352,8 @@ const char *Txt_Do_you_really_want_to_remove_the_field_X_from_the_records_of_Y_Z "Você realmente quer remover o campo %s" " dos cartões de %s" " (este campo é preenchido nos cartões de %u estudante(s))?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_remove_FILE_OR_LINK_X = // Warning: it is very important to include %s in the following sentences @@ -9528,6 +10375,8 @@ const char *Txt_Do_you_really_want_to_remove_FILE_OR_LINK_X = // Warning: it is "Czy na pewno chcesz usunac %s?"; #elif L==9 // pt "Você realmente deseja remover %s?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_remove_the_folder_X = // Warning: it is very important to include %s in the following sentences @@ -9558,6 +10407,8 @@ const char *Txt_Do_you_really_want_to_remove_the_folder_X = // Warning: it is ve #elif L==9 // pt "Você realmente deseja remover" " o diretório %s e todo o seu conteúdo?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_remove_the_following_call_for_exam = @@ -9579,6 +10430,8 @@ const char *Txt_Do_you_really_want_to_remove_the_following_call_for_exam = "Czy na pewno chcesz usunąć następującą zapowiedź egzaminu?"; #elif L==9 // pt "Você realmente deseja remover a seguinte chamada para exame?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_remove_the_following_notice = @@ -9600,6 +10453,8 @@ const char *Txt_Do_you_really_want_to_remove_the_following_notice = "Czy na pewno chcesz usunac nastepujace obwieszczenie?"; #elif L==9 // pt "Você realmente deseja remover o seguinte aviso?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_remove_the_following_comment = @@ -9621,6 +10476,8 @@ const char *Txt_Do_you_really_want_to_remove_the_following_comment = "Czy na pewno chcesz usunac nastepujace komentarz?"; #elif L==9 // pt "Você realmente deseja remover o seguinte comentário?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_remove_the_following_post = @@ -9642,6 +10499,8 @@ const char *Txt_Do_you_really_want_to_remove_the_following_post = "Czy na pewno chcesz usunac nastepujace post?"; #elif L==9 // pt "Você realmente deseja remover o seguinte post?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_remove_the_following_user_as_an_administrator_of_X = // Warning: it is very important to include %s in the following sentences @@ -9672,6 +10531,8 @@ const char *Txt_Do_you_really_want_to_remove_the_following_user_as_an_administra #elif L==9 // pt "Você realmente deseja remover o seguinte usuário" " como administrador de %s?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_remove_the_following_user_from_the_course_X = // Warning: it is very important to include %s in the following sentences @@ -9702,6 +10563,8 @@ const char *Txt_Do_you_really_want_to_remove_the_following_user_from_the_course_ #elif L==9 // pt "Você deseja realmente remover o seguinte usuário da disciplina %s" " (removendo seus trabalhos, inscrição em grupos, etc.)?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_remove_the_following_user_as_a_X_from_the_project_Y = // Warning: it is very important to include two %s in the following sentences @@ -9732,6 +10595,8 @@ const char *Txt_Do_you_really_want_to_remove_the_following_user_as_a_X_from_the_ #elif L==9 // pt "Você deseja realmente remover o seguinte usuário" " como %s do projeto %s?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_remove_the_game_X = // Warning: it is very important to include %s in the following sentences @@ -9753,6 +10618,8 @@ const char *Txt_Do_you_really_want_to_remove_the_game_X = // Warning: it is very "Czy na pewno chcesz usunac gra %s?"; #elif L==9 // pt "Você realmente deseja remover o jogo %s?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_remove_the_group_X = // Warning: it is very important to include %s in the following sentences @@ -9774,6 +10641,8 @@ const char *Txt_Do_you_really_want_to_remove_the_group_X = // Warning: it is ver "Czy na pewno chcesz usunac grupe %s?"; #elif L==9 // pt "Você realmente quer remover o grupo %s?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_remove_the_group_X_1_student_ = // Warning: it is very important to include %s in the following sentences @@ -9804,6 +10673,8 @@ const char *Txt_Do_you_really_want_to_remove_the_group_X_1_student_ = // Warning #elif L==9 // pt "Você realmente quer remover o grupo %s?
" "Ao fazer isso, você removerá um estudante desse grupo."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_remove_the_group_X_Y_students_ = // Warning: it is very important to include %s and %u in the following sentences @@ -9834,6 +10705,8 @@ const char *Txt_Do_you_really_want_to_remove_the_group_X_Y_students_ = // Warnin #elif L==9 // pt "Você realmente quer remover o grupo %s?
" "Ao fazer isso, você removerá %u estudantes desse grupo."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_remove_the_item_X = // Warning: it is very important to include %s in the following sentences @@ -9855,6 +10728,8 @@ const char *Txt_Do_you_really_want_to_remove_the_item_X = // Warning: it is very "Czy na pewno chcesz usunac przedmiot %s?"; #elif L==9 // pt "Você realmente deseja remover o item %s?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_remove_the_match_X = // Warning: it is very important to include %s in the following sentences @@ -9876,6 +10751,8 @@ const char *Txt_Do_you_really_want_to_remove_the_match_X = // Warning: it is ver "Czy na pewno chcesz usunac mecz %s?"; #elif L==9 // pt "Você realmente deseja remover o jogo %s?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_remove_the_photo_of_X = // Warning: it is very important to include %s in the following sentences @@ -9897,6 +10774,8 @@ const char *Txt_Do_you_really_want_to_remove_the_photo_of_X = // Warning: it is "Czy na pewno chcesz usunąć zdjęcie %s?"; #elif L==9 // pt "Você realmente deseja remover la foto de %s?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_remove_the_project_X = // Warning: it is very important to include %s in the following sentences @@ -9918,6 +10797,8 @@ const char *Txt_Do_you_really_want_to_remove_the_project_X = // Warning: it is v "Czy na pewno chcesz usunac projekt %s?"; #elif L==9 // pt "Você realmente deseja remover o projeto %s?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_remove_the_question_X = // Warning: it is very important to include %ld in the following sentences @@ -9939,6 +10820,8 @@ const char *Txt_Do_you_really_want_to_remove_the_question_X = // Warning: it is "Czy na pewno chcesz usunac pytanie %ld?"; #elif L==9 // pt "Você realmente deseja remover a pergunta %ld?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_remove_the_selected_questions = @@ -9960,6 +10843,8 @@ const char *Txt_Do_you_really_want_to_remove_the_selected_questions = "Czy na pewno chcesz usunąć wybrane pytania?"; #elif L==9 // pt "Você realmente deseja remover as perguntas selecionadas?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_remove_the_session_X = // Warning: it is very important to include %s in the following sentences @@ -9981,6 +10866,8 @@ const char *Txt_Do_you_really_want_to_remove_the_session_X = // Warning: it is v "Czy na pewno chcesz usunac sesji %s?"; #elif L==9 // pt "Você realmente deseja remover a sessão %s?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_remove_the_set_of_questions_X = // Warning: it is very important to include %s in the following sentences @@ -10002,6 +10889,8 @@ const char *Txt_Do_you_really_want_to_remove_the_set_of_questions_X = // Warning "Czy na pewno chcesz usunac zestaw pytań %s?"; #elif L==9 // pt "Você realmente deseja remover o conjunto de perguntas %s?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_remove_the_survey_X = // Warning: it is very important to include %s in the following sentences @@ -10023,6 +10912,8 @@ const char *Txt_Do_you_really_want_to_remove_the_survey_X = // Warning: it is ve "Czy na pewno chcesz usunac badania %s?"; #elif L==9 // pt "Você realmente deseja remover o inquérito %s?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_remove_the_type_of_group_X_1_group_ = // Warning: it is very important to include %s in the following sentences @@ -10053,6 +10944,8 @@ const char *Txt_Do_you_really_want_to_remove_the_type_of_group_X_1_group_ = // W #elif L==9 // pt "Você realmente quer remover o tipo de grupo %s?
" "Isso também removerá um grupo desse tipo."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_remove_the_type_of_group_X_Y_groups_ = // Warning: it is very important to include %s and %u in the following sentences @@ -10083,6 +10976,8 @@ const char *Txt_Do_you_really_want_to_remove_the_type_of_group_X_Y_groups_ = // #elif L==9 // pt "Você realmente quer remover o tipo de grupo %s?
" "Isso também removerá %u grupos desse tipo."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_remove_your_photo = @@ -10104,6 +10999,8 @@ const char *Txt_Do_you_really_want_to_remove_your_photo = "Czy na pewno chcesz usunąć swoje zdjęcie?"; #elif L==9 // pt "Você realmente deseja remover a sua foto?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_really_want_to_reset_the_survey_X = // Warning: it is very important to include %s in the following sentences @@ -10125,6 +11022,8 @@ const char *Txt_Do_you_really_want_to_reset_the_survey_X = // Warning: it is ver "Czy na pewno chcesz zresetowac badania %s?"; #elif L==9 // pt "Você realmente deseja reiniciar o inquérito %s?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_think_you_are_one_of_these_users = @@ -10146,6 +11045,8 @@ const char *Txt_Do_you_think_you_are_one_of_these_users = "Myślisz, że jesteś jednym z tych użytkowników?"; #elif L==9 // pt "Você acha que você é um desses usuários?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_think_you_are_this_user = @@ -10167,6 +11068,8 @@ const char *Txt_Do_you_think_you_are_this_user = "Czy uważasz, że ta osoba?"; #elif L==9 // pt "Você acha que você é deste usuário?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_want_to_follow_the_selected_user_whom_you_do_not_follow_yet = @@ -10188,6 +11091,8 @@ const char *Txt_Do_you_want_to_follow_the_selected_user_whom_you_do_not_follow_y "Czy chcesz śledzić wybranego użytkownika, którego jeszcze nie śledzisz?"; #elif L==9 // pt "Você quer seguir o usuário selecionado que você não segue ainda?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_want_to_follow_the_X_selected_users_whom_you_do_not_follow_yet = // Warning: it is very important to include %u in the following sentences @@ -10209,6 +11114,8 @@ const char *Txt_Do_you_want_to_follow_the_X_selected_users_whom_you_do_not_follo "Czy chcesz śledzić %u wybranych użytkowników, których jeszcze nie śledzisz?"; #elif L==9 // pt "Você quer seguir os %u usuários selecionados que você não segue ainda?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_want_to_lock_the_editing_of_the_X_selected_projects = // Warning: it is very important to include %u in the following sentences @@ -10230,6 +11137,8 @@ const char *Txt_Do_you_want_to_lock_the_editing_of_the_X_selected_projects = // "Czy chcesz zablokować edycję %u wybranych projektów?"; #elif L==9 // pt "Você quer bloquear a edição dos %u projetos selecionados?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_want_to_stop_following_the_selected_user_whom_you_follow = @@ -10251,6 +11160,8 @@ const char *Txt_Do_you_want_to_stop_following_the_selected_user_whom_you_follow "Czy chcesz przestać śledzić wybranego użytkownika, którego śledzisz?"; #elif L==9 // pt "Você quer parar de seguir o usuário selecionado que você segue?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_want_to_stop_following_the_X_selected_users_whom_you_follow = // Warning: it is very important to include %u in the following sentences @@ -10272,6 +11183,8 @@ const char *Txt_Do_you_want_to_stop_following_the_X_selected_users_whom_you_foll "Czy chcesz przestać śledzić %u wybranych użytkowników, których śledzisz?"; #elif L==9 // pt "Você quer parar de seguir os %u usuários selecionados que você segue?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Do_you_want_to_unlock_the_editing_of_the_X_selected_projects = // Warning: it is very important to include %u in the following sentences @@ -10293,6 +11206,8 @@ const char *Txt_Do_you_want_to_unlock_the_editing_of_the_X_selected_projects = / "Czy chcesz odblokować edycję %u wybranych projektów?"; #elif L==9 // pt "Você quer desbloquear a edição dos %u projetos selecionados?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Document = @@ -10314,6 +11229,8 @@ const char *Txt_Document = "Document"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Documento"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_document_in_my_courses = @@ -10335,6 +11252,8 @@ const char *Txt_document_in_my_courses = "dokument w moich kursach"; #elif L==9 // pt "documento em minha disciplinas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Documents = @@ -10356,6 +11275,8 @@ const char *Txt_Documents = "Documents"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Documentos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_document_from_me = @@ -10377,6 +11298,8 @@ const char *Txt_document_from_me = "dokument ode mnie"; #elif L==9 // pt "documento de mim"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_documents_from_me = @@ -10398,6 +11321,8 @@ const char *Txt_documents_from_me = "dokumenty ode mnie"; #elif L==9 // pt "documentos de mim"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_documents_in_my_courses = @@ -10419,6 +11344,8 @@ const char *Txt_documents_in_my_courses = "dokumenty w moich kursach"; #elif L==9 // pt "documentos em minha disciplinas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Documents_area = @@ -10440,6 +11367,8 @@ const char *Txt_Documents_area = "Obszar Dokumentów"; #elif L==9 // pt "Zona de documentos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Documents_management_area = @@ -10461,6 +11390,8 @@ const char *Txt_Documents_management_area = "Obszar zarzadzania Dokumenty"; #elif L==9 // pt "Zona de gestão de documentos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_documents_management_area = @@ -10482,6 +11413,8 @@ const char *Txt_documents_management_area = "obszaru zarzadzania dokumentami"; #elif L==9 // pt "zona de gestão de documentos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Domains = @@ -10503,6 +11436,8 @@ const char *Txt_Domains = "Domen"; #elif L==9 // pt "Domínios"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Done = @@ -10524,6 +11459,8 @@ const char *Txt_Done = "Gotowe"; #elif L==9 // pt "Feito"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Download = // As a verb @@ -10545,6 +11482,8 @@ const char *Txt_Download = // As a verb "Pobierz"; #elif L==9 // pt "Baixar"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_download = // As a noun @@ -10566,6 +11505,8 @@ const char *Txt_download = // As a noun "pobrania"; #elif L==9 // pt "download"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Downloads = // As a noun @@ -10587,6 +11528,8 @@ const char *Txt_Downloads = // As a noun "Pobrania"; #elif L==9 // pt "Downloads"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_downloads = // As a noun @@ -10608,6 +11551,8 @@ const char *Txt_downloads = // As a noun "pobrania"; #elif L==9 // pt "downloads"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Duplicate_USERS = @@ -10629,6 +11574,8 @@ const char *Txt_Duplicate_USERS = "Duplikaty"; #elif L==9 // pt "Duplicados"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Edit = @@ -10650,6 +11597,8 @@ const char *Txt_Edit = "Edytuj"; #elif L==9 // pt "Editar"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Edit_assignment = @@ -10671,6 +11620,8 @@ const char *Txt_Edit_assignment = "Edytuj zadanie"; #elif L==9 // pt "Editar atividade"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Edit_event = @@ -10692,6 +11643,8 @@ const char *Txt_Edit_event = "Edytuj wydarzenie"; #elif L==9 // pt "Editar evento"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Edit_exam = @@ -10713,6 +11666,8 @@ const char *Txt_Edit_exam = "Editar exam"; #elif L==9 // pt "Editar exam"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Edit_game = @@ -10734,6 +11689,8 @@ const char *Txt_Edit_game = "Edycja gra"; #elif L==9 // pt "Editar jogo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Edit_item = @@ -10755,6 +11712,8 @@ const char *Txt_Edit_item = "Edycja przedmiot"; #elif L==9 // pt "Editar item"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Edit_my_personal_data = @@ -10776,6 +11735,8 @@ const char *Txt_Edit_my_personal_data = "Edycja moich danych osobowych"; #elif L==9 // pt "Editar os meus dados pessoais"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Edit_plain_text = @@ -10797,6 +11758,8 @@ const char *Txt_Edit_plain_text = "Edycja tekstu zwykły"; #elif L==9 // pt "Editar texto simples"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Edit_project = @@ -10818,6 +11781,8 @@ const char *Txt_Edit_project = "Edycja projekt"; #elif L==9 // pt "Editar projeto"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Edit_record_fields = @@ -10839,6 +11804,8 @@ const char *Txt_Edit_record_fields = "Edycja rekord w dziedzinie"; #elif L==9 // pt "Editar campos cartões"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Edit_set_of_questions = @@ -10860,6 +11827,8 @@ const char *Txt_Edit_set_of_questions = "Edycja zestaw pytań"; #elif L==9 // pt "Editar conjunto de perguntas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Edit_survey = @@ -10881,6 +11850,8 @@ const char *Txt_Edit_survey = "Edycja ankiety"; #elif L==9 // pt "Editar inquérito"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Edit_rich_text = @@ -10902,6 +11873,8 @@ const char *Txt_Edit_rich_text = "Edycja tekstu sformatowany"; #elif L==9 // pt "Editar texto rico"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Edit_tags = @@ -10923,6 +11896,8 @@ const char *Txt_Edit_tags = "Edycja tagów"; #elif L==9 // pt "Editar descritores"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Editable = @@ -10944,6 +11919,8 @@ const char *Txt_Editable = "Edytowalne"; #elif L==9 // pt "Editáveis"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Editable_by_non_editing_teachers = @@ -10965,6 +11942,8 @@ const char *Txt_Editable_by_non_editing_teachers = "Edytowalne przez nauczycieli, którzy nie dokonali edycji"; #elif L==9 // pt "Editáveis por professores não editores"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_eg_A_B = @@ -10986,6 +11965,8 @@ const char *Txt_eg_A_B = "np. A, B, …"; #elif L==9 // pt "ex.: A, B,…"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_eg_Lectures_Practicals = @@ -11007,6 +11988,8 @@ const char *Txt_eg_Lectures_Practicals = "np. Wyklady, Praktyki …"; #elif L==9 // pt "ex.: Teoria, Prática,…"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_ELAPSED_TIME = @@ -11028,6 +12011,8 @@ const char *Txt_ELAPSED_TIME = "Temu"; #elif L==9 // pt "Atrás"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Eliminate = @@ -11049,6 +12034,8 @@ const char *Txt_Eliminate = "Wyeliminowac"; #elif L==9 // pt "Eliminar"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Eliminate_all_courses_whithout_users_PART_1_OF_2 = @@ -11070,6 +12057,8 @@ const char *Txt_Eliminate_all_courses_whithout_users_PART_1_OF_2 = "Wyeliminuj wszystkie kursy bez użytkowników i bez dostępu w ciągu ostatnich"; #elif L==9 // pt "Eliminar todas as disciplinas sem usuários e sem acessos nos últimos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Eliminate_all_courses_whithout_users_PART_2_OF_2 = @@ -11091,6 +12080,8 @@ const char *Txt_Eliminate_all_courses_whithout_users_PART_2_OF_2 = "miesięcy."; #elif L==9 // pt "meses."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Eliminate_all_users_who_are_not_enroled_on_any_courses_PART_1_OF_2 = @@ -11130,6 +12121,8 @@ const char *Txt_Eliminate_all_users_who_are_not_enroled_on_any_courses_PART_1_OF "Eliminar todos os usuários" " que nã,o estão matriculados em nenhuma disciplina" " e com mais de"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Eliminate_all_users_who_are_not_enroled_on_any_courses_PART_2_OF_2 = // Warning: it is very important to include %s in the following sentences @@ -11151,14 +12144,17 @@ const char *Txt_Eliminate_all_users_who_are_not_enroled_on_any_courses_PART_2_OF "miesiące bez dostępu do %s."; #elif L==9 // pt "meses sem acesso a %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Eliminate_from_the_platform_the_users_indicated_in_step_1 = #if L==1 // ca - "Eliminar completamente de la plataforma" - " los usuarios indicados en el paso 1"; // Necessita traducció + "Eliminar completament de la plataforma" + " els usuaris indicats al pas 1"; #elif L==2 // de - "Die Benutzer auf der Liste aus dem System entfernen"; + "Entfernen Sie die in Schritt 1 angegebenen" + " Benutzer vollständig von der Plattform"; #elif L==3 // en "Eliminate from the platform" " the users indicated on step 1"; @@ -11180,6 +12176,8 @@ const char *Txt_Eliminate_from_the_platform_the_users_indicated_in_step_1 = #elif L==9 // pt "Eliminar da plataforma" " os utilizadores que estão na lista"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Eliminate_old_courses = @@ -11201,6 +12199,8 @@ const char *Txt_Eliminate_old_courses = "Wyeleminuj starych kursów"; #elif L==9 // pt "Eliminar antigas disciplinas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Eliminate_old_users = @@ -11222,6 +12222,8 @@ const char *Txt_Eliminate_old_users = "Usuń starych uzytkowników"; #elif L==9 // pt "Eliminar antigos utilizadores"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Eliminating_X_courses_whithout_users_and_with_more_than_Y_months_without_access = // Warning: it is very important to include %lu and %u in the following sentences @@ -11252,6 +12254,8 @@ const char *Txt_Eliminating_X_courses_whithout_users_and_with_more_than_Y_months #elif L==9 // pt "Eliminando %lu disciplina(s) sem usuários" " e com mais de %u meses sem acesso."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Eliminate_my_user_account = @@ -11273,6 +12277,8 @@ const char *Txt_Eliminate_my_user_account = "Usuń moje konto użytkownika"; #elif L==9 // pt "Remover minha conta de usuário"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Eliminate_user_account = @@ -11294,6 +12300,8 @@ const char *Txt_Eliminate_user_account = "Usuń konto użytkownika"; #elif L==9 // pt "Remover conta de usuário"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Eliminating_X_users_who_were_not_enroled_in_any_course_and_with_more_than_Y_months_without_access_to_Z = // Warning: it is very important to include %lu, %u and %s in the following sentences @@ -11324,6 +12332,8 @@ const char *Txt_Eliminating_X_users_who_were_not_enroled_in_any_course_and_with_ #elif L==9 // pt "Eliminando %lu usuário(s) que não estavam matriculados em nenhuma disciplina" " e com mais de %u meses sem acesso a %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Email = @@ -11345,6 +12355,8 @@ const char *Txt_Email = "Email"; #elif L==9 // pt "Email"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Email_addresses = @@ -11366,11 +12378,13 @@ const char *Txt_Email_addresses = "Adresy e-mail"; #elif L==9 // pt "Endereços de email"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Email_domain_X_removed = // Warning: it is very important to include %s in the following sentences #if L==1 // ca - "Dominio de correo %s eliminado."; // Necessita traducció + "Domini de correu %s eliminat."; #elif L==2 // de "E-Mail-Domäne %s entfernt."; #elif L==3 // en @@ -11387,11 +12401,13 @@ const char *Txt_Email_domain_X_removed = // Warning: it is very important to inc "Domeny poczty %s usuniete."; #elif L==9 // pt "Domínio de email %s removido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Email_domains_allowed_for_notifications = #if L==1 // ca - "Dominios de correo permitidos para notificaciones"; // Necessita traducció + "Dominis de correu permesos per a notificacions"; #elif L==2 // de "E-Mail-Domänen, an die Benachrichtigungen gesendet werden können"; #elif L==3 // en @@ -11408,6 +12424,8 @@ const char *Txt_Email_domains_allowed_for_notifications = "Mail domen dozwolone powiadomien"; #elif L==9 // pt "Domínios de email permitidos para notificações"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_EMAIL_DOMAIN_HELP_ORDER[Mai_NUM_ORDERS] = @@ -11431,6 +12449,8 @@ const char *Txt_EMAIL_DOMAIN_HELP_ORDER[Mai_NUM_ORDERS] = "Sortuj wedlug domeny poczty" #elif L==9 // pt "Classificar por domínio de email" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Mai_ORDER_BY_INFO] = @@ -11452,6 +12472,8 @@ const char *Txt_EMAIL_DOMAIN_HELP_ORDER[Mai_NUM_ORDERS] = "Sortuj wedlug informacji" #elif L==9 // pt "Classificar por informação" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Mai_ORDER_BY_USERS] = @@ -11473,6 +12495,8 @@ const char *Txt_EMAIL_DOMAIN_HELP_ORDER[Mai_NUM_ORDERS] = "Sortuj wedlug numerow uzytkownikow" #elif L==9 // pt "Classificar por nº de utilizadores" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -11497,6 +12521,8 @@ const char *Txt_EMAIL_DOMAIN_ORDER[Mai_NUM_ORDERS] = "Domeny poczty" #elif L==9 // pt "Domínio de email" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Mai_ORDER_BY_INFO] = @@ -11518,6 +12544,8 @@ const char *Txt_EMAIL_DOMAIN_ORDER[Mai_NUM_ORDERS] = "Informacja" #elif L==9 // pt "Informação" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Mai_ORDER_BY_USERS] = @@ -11539,6 +12567,8 @@ const char *Txt_EMAIL_DOMAIN_ORDER[Mai_NUM_ORDERS] = "Uzytkownikow" #elif L==9 // pt "Utilizadores" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -11561,6 +12591,8 @@ const char *Txt_Email_X_confirmed = // Warning: it is very important to include "E-mail %s potwierdzony"; #elif L==9 // pt "Email %s confirmado"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Email_X_has_already_been_confirmed_before = // Warning: it is very important to include %s in the following sentences @@ -11591,6 +12623,8 @@ const char *Txt_Email_X_has_already_been_confirmed_before = // Warning: it is ve #elif L==9 // pt "Email %s" " já foi confirmado antes."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Email_X_removed = // Warning: it is very important to include %s in the following sentences @@ -11612,6 +12646,8 @@ const char *Txt_Email_X_removed = // Warning: it is very important to include %s "Email %s usuniete."; #elif L==9 // pt "Email %s removido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_End_date = @@ -11633,6 +12669,8 @@ const char *Txt_End_date = "Data koncowa"; #elif L==9 // pt "Data final"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Enrol_in_groups = @@ -11654,6 +12692,8 @@ const char *Txt_Enrol_in_groups = "Zarejestruj mnie w grupach"; #elif L==9 // pt "Inscreva-me em grupos "; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Enrolment = @@ -11675,6 +12715,8 @@ const char *Txt_Enrolment = "Rejestracja"; #elif L==9 // pt "Inscrição"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Enrolment_confirmed = @@ -11696,6 +12738,8 @@ const char *Txt_Enrolment_confirmed = "Rejestracja potwierdzona"; #elif L==9 // pt "Inscrição confirmada"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Enrolment_of_X_rejected = // Warning: it is very important to include %s in the following sentences @@ -11717,6 +12761,8 @@ const char *Txt_Enrolment_of_X_rejected = // Warning: it is very important to in "Rejestracja %s została odrzucona."; #elif L==9 // pt "Inscrição de %s rejeitada."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Enrolment_not_confirmed = @@ -11738,6 +12784,8 @@ const char *Txt_Enrolment_not_confirmed = "Rejestracja nie potwierdzona"; #elif L==9 // pt "Inscrição não confirmada"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Enrolment_requests = @@ -11759,6 +12807,8 @@ const char *Txt_Enrolment_requests = "Prośby o rejestracji"; #elif L==9 // pt "Pedidos de inscrição"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Enter_a_new_item_here = @@ -11780,6 +12830,8 @@ const char *Txt_Enter_a_new_item_here = "Wpisz nowy element o"; #elif L==9 // pt "Escreva aqui uma nova rubrica"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Enter_from_X = // Warning: it is very important to include %s in the following sentences @@ -11801,6 +12853,8 @@ const char *Txt_Enter_from_X = // Warning: it is very important to include %s in "Wprowadzić z %s"; #elif L==9 // pt "Digite partir %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Equation_centered = @@ -11822,6 +12876,8 @@ const char *Txt_Equation_centered = "Równanie centered"; #elif L==9 // pt "equação centrado"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Error_getting_data_from_a_recipient = @@ -11843,6 +12899,8 @@ const char *Txt_Error_getting_data_from_a_recipient = "Blad podczas pobierania danych z odbiorca."; #elif L==9 // pt "Erro ao obter dados de um destinatário."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Error_sending_or_processing_image_video = @@ -11864,6 +12922,8 @@ const char *Txt_Error_sending_or_processing_image_video = "Błąd podczas wysyłania lub przetwarzania obrazu / wideo."; #elif L==9 // pt "Erro ao enviar ou processar imagem / vídeo."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Event = @@ -11885,6 +12945,8 @@ const char *Txt_Event = "Wydarzenie"; #elif L==9 // pt "Evento"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Event_X_is_now_private = // Warning: it is very important to include %s in the following sentences @@ -11906,6 +12968,8 @@ const char *Txt_Event_X_is_now_private = // Warning: it is very important to inc "Wydarzenie %s jest obecnie prywatne."; #elif L==9 // pt "O evento %s é agora privado."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Event_X_is_now_visible_to_users_of_your_courses = // Warning: it is very important to include %s in the following sentences @@ -11936,6 +13000,8 @@ const char *Txt_Event_X_is_now_visible_to_users_of_your_courses = // Warning: it #elif L==9 // pt "O evento %s é agora visível" " para os usuários de as suas disciplinas."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Event_private_click_to_make_it_visible_to_the_users_of_your_courses = @@ -11957,6 +13023,8 @@ const char *Txt_Event_private_click_to_make_it_visible_to_the_users_of_your_cour "Event privat, kliknij aby był on widoczny dla użytkowników swoich kursach"; #elif L==9 // pt "Evento privat, clique para torná-lo visível para os usuários de as suas disciplinas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Event_X_removed = // Warning: it is very important to include %s in the following sentences @@ -11978,6 +13046,8 @@ const char *Txt_Event_X_removed = // Warning: it is very important to include %s "Wydarzenie %s usuniete."; #elif L==9 // pt "Evento %s removido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Event_visible_to_the_users_of_your_courses_click_to_make_it_private = @@ -11999,6 +13069,8 @@ const char *Txt_Event_visible_to_the_users_of_your_courses_click_to_make_it_priv "Event widoczny dla użytkowników swoich kursów, kliknij, aby prywatne"; #elif L==9 // pt "Evento visível para os usuários de as suas disciplinas, clique para torná-lo privat"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Events = @@ -12020,6 +13092,8 @@ const char *Txt_Events = "Wydarzen"; #elif L==9 // pt "Eventos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Exam = @@ -12041,6 +13115,8 @@ const char *Txt_Exam = "Egzamin"; #elif L==9 // pt "Exame"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_EXAM_LOG_ACTIONS[ExaLog_NUM_ACTIONS] = @@ -12064,6 +13140,8 @@ const char *Txt_EXAM_LOG_ACTIONS[ExaLog_NUM_ACTIONS] = "Nieznana akcja" #elif L==9 // pt "Ação desconhecida" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ExaLog_START_EXAM] = @@ -12085,6 +13163,8 @@ const char *Txt_EXAM_LOG_ACTIONS[ExaLog_NUM_ACTIONS] = "Rozpoczął egzamin" #elif L==9 // pt "Iniciou o exame" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ExaLog_RESUME_EXAM] = @@ -12106,6 +13186,8 @@ const char *Txt_EXAM_LOG_ACTIONS[ExaLog_NUM_ACTIONS] = "Wznowił egzamin" #elif L==9 // pt "Retomou o exame" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ExaLog_ANSWER_QUESTION] = @@ -12127,6 +13209,8 @@ const char *Txt_EXAM_LOG_ACTIONS[ExaLog_NUM_ACTIONS] = "Odpowiedział na pytanie" #elif L==9 // pt "Respondeu a uma pergunta" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ExaLog_FINISH_EXAM] = @@ -12148,6 +13232,8 @@ const char *Txt_EXAM_LOG_ACTIONS[ExaLog_NUM_ACTIONS] = "Zakończył egzamin" #elif L==9 // pt "Terminou o exame" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -12170,6 +13256,8 @@ const char *Txt_Exam_of_X = // Warning: it is very important to include %s in th "Egzamin z %s"; #elif L==9 // pt "Exame de %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_EXAM_Open = @@ -12191,6 +13279,8 @@ const char *Txt_EXAM_Open = "otwarte"; #elif L==9 // pt "Aberta"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Exam_X_removed = // Warning: it is very important to include %s in the following sentences @@ -12212,6 +13302,8 @@ const char *Txt_Exam_X_removed = // Warning: it is very important to include %s "Egzamin %s usuniete."; #elif L==9 // pt "Exame %s removido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Exams = @@ -12233,6 +13325,8 @@ const char *Txt_Exams = "Egzaminy"; #elif L==9 // pt "Exames"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_EXAMS_ORDER[Exa_NUM_ORDERS] = @@ -12256,6 +13350,8 @@ const char *Txt_EXAMS_ORDER[Exa_NUM_ORDERS] = "Początek" #elif L==9 // pt "Início" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Exa_ORDER_BY_END_DATE] = @@ -12277,6 +13373,8 @@ const char *Txt_EXAMS_ORDER[Exa_NUM_ORDERS] = "Koniec" #elif L==9 // pt "Fim" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Exa_ORDER_BY_TITLE] = @@ -12298,6 +13396,8 @@ const char *Txt_EXAMS_ORDER[Exa_NUM_ORDERS] = "Egzamin" #elif L==9 // pt "Exame" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -12322,6 +13422,8 @@ const char *Txt_EXAMS_ORDER_HELP[Gam_NUM_ORDERS] = "Sortuj wedlug daty rozpoczecia" #elif L==9 // pt "Classificar por data de início" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Exa_ORDER_BY_END_DATE] = @@ -12343,6 +13445,8 @@ const char *Txt_EXAMS_ORDER_HELP[Gam_NUM_ORDERS] = "Sortuj wedlug daty zakonczenia" #elif L==9 // pt "Classificar por data de término" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Exa_ORDER_BY_TITLE] = @@ -12364,6 +13468,8 @@ const char *Txt_EXAMS_ORDER_HELP[Gam_NUM_ORDERS] = "Sortuj według tytułu egzamin" #elif L==9 // pt "Classificar por título do exame" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -12386,6 +13492,8 @@ const char *Txt_Existing_question = "Istniejąca pytanie"; #elif L==9 // pt "Pergunta existente"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Expand = @@ -12407,6 +13515,8 @@ const char *Txt_Expand = "Rozwin"; #elif L==9 // pt "Expandir"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Export_questions = @@ -12428,6 +13538,8 @@ const char *Txt_Export_questions = "Eksportuj pytania"; #elif L==9 // pt "Exportar perguntas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Extended_public_profile = @@ -12449,6 +13561,8 @@ const char *Txt_Extended_public_profile = "Rozszerzony profil publiczny"; #elif L==9 // pt "Perfil público estendido"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_X_faces_have_been_detected_in_front_position_1_Z_ = // Warning: it is very important to include two %u in the following sentences @@ -12497,6 +13611,8 @@ const char *Txt_X_faces_have_been_detected_in_front_position_1_Z_ = // Warning: "1 com o fundo claro o suficiente (marcado em verde),
" "%u com o fundo muito escuro (marcado em vermelho).
" "Se você quiser escolher o rosto marcado em verde, clique nele."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_X_faces_have_been_detected_in_front_position_Y_Z_ = // Warning: it is very important to include three %u in the following sentences @@ -12545,6 +13661,8 @@ const char *Txt_X_faces_have_been_detected_in_front_position_Y_Z_ = // Warning: "%u com o fundo claro o suficiente (marcado em verde),
" "%u com o fundo muito escuro (marcado em vermelho).
" "Se você quiser escolher um dos rostos marcados em verde, clique nele."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_X_faces_marked_in_green_have_been_detected_ = // Warning: it is very important to include %u in the following sentences @@ -12584,6 +13702,8 @@ const char *Txt_X_faces_marked_in_green_have_been_detected_ = // Warning: it is "%u faces foram detectados (indicado em verde) na posição frontal" " e com fundo suficientemente claro.
" "Se você quer escolher um daqueles rostos, clique sobre ele."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_X_faces_marked_in_red_have_been_detected_ = // Warning: it is very important to include %u in the following sentences @@ -12614,6 +13734,8 @@ const char *Txt_X_faces_marked_in_red_have_been_detected_ = // Warning: it is ve #elif L==9 // pt "%u rostos foram detectados (mostrados em vermelho) na posição frontal," " mas o fundo é muito escuro."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Faces_detected = @@ -12635,6 +13757,8 @@ const char *Txt_Faces_detected = "Wykryto twarze"; #elif L==9 // pt "Rostos detectados"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Failed_email_confirmation_key = @@ -12656,6 +13780,8 @@ const char *Txt_Failed_email_confirmation_key = "Niepowodzenie klucza potwierdzającego e-mail."; #elif L==9 // pt "Erro na chave de confirmação de email."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Feedback = @@ -12677,6 +13803,8 @@ const char *Txt_Feedback = "Opinie"; #elif L==9 // pt "Feedback"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Field_BR_name = @@ -12698,6 +13826,8 @@ const char *Txt_Field_BR_name = "Nazwa
pola"; #elif L==9 // pt "Nome
do campo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Figures = @@ -12719,6 +13849,8 @@ const char *Txt_Figures = "Cyfry"; #elif L==9 // pt "Números"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_File = @@ -12740,6 +13872,8 @@ const char *Txt_File = "Plik"; #elif L==9 // pt "Arquivo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_file = @@ -12761,6 +13895,8 @@ const char *Txt_file = "Plik"; #elif L==9 // pt "arquivo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_X_file = // Warning: it is very important to include %s in the following sentences @@ -12782,6 +13918,8 @@ const char *Txt_X_file = // Warning: it is very important to include %s in the f "Plik %s"; #elif L==9 // pt "Arquivo %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_File_not_found = @@ -12803,6 +13941,8 @@ const char *Txt_File_not_found = "Nie znaleziono pliku"; #elif L==9 // pt "Arquivo não encontrado"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_FILE_uncompressed = @@ -12824,6 +13964,8 @@ const char *Txt_FILE_uncompressed = "nieskompresowane"; #elif L==9 // pt "descompactado"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Filename = @@ -12845,6 +13987,8 @@ const char *Txt_Filename = "Nazwa"; #elif L==9 // pt "Nome do arquivo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_file_folder = @@ -12866,6 +14010,8 @@ const char *Txt_file_folder = "Plik/folder"; #elif L==9 // pt "arquivo/diretório"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_FILE_X_removed = // Warning: it is very important to include %s in the following sentences @@ -12887,6 +14033,8 @@ const char *Txt_FILE_X_removed = // Warning: it is very important to include %s "%s usuniety."; #elif L==9 // pt "%s removido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_File_size = @@ -12908,6 +14056,8 @@ const char *Txt_File_size = "Rozmiar pliku"; #elif L==9 // pt "Tamanho do arquivo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_File_with_the_logo = @@ -12929,6 +14079,8 @@ const char *Txt_File_with_the_logo = "Plik ze logo"; #elif L==9 // pt "Arquivo com o logotipo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_File_with_the_photo = @@ -12950,6 +14102,8 @@ const char *Txt_File_with_the_photo = "Plik ze zdjeciem"; #elif L==9 // pt "Arquivo com a foto"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_File_zone = @@ -12971,6 +14125,8 @@ const char *Txt_File_zone = "Strefa plików"; #elif L==9 // pt "Zona de arquivos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_File_zones = @@ -12992,6 +14148,8 @@ const char *Txt_File_zones = "Plik obszarów"; #elif L==9 // pt "Zonas de arquivos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_File_zones_disabled = @@ -13013,6 +14171,8 @@ const char *Txt_File_zones_disabled = "Plik strefy niedostepnej"; #elif L==9 // pt "Zonas de arquivos desativadas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_File_zones_of_the_group_X_are_now_disabled = // Warning: it is very important to include %s in the following sentences @@ -13034,6 +14194,8 @@ const char *Txt_File_zones_of_the_group_X_are_now_disabled = // Warning: it is v "Plik strefy grupy %s jest teraz niedostepny."; #elif L==9 // pt "As zonas de arquivos do grupo %s estão agora desativadas."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_File_zones_of_the_group_X_are_now_enabled = // Warning: it is very important to include %s in the following sentences @@ -13055,6 +14217,8 @@ const char *Txt_File_zones_of_the_group_X_are_now_enabled = // Warning: it is ve "Plik strefy grupa %s sa obecnie dostępne."; #elif L==9 // pt "As zonas de arquivos do grupo %s estão agora ativadas."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_File_zones_of_the_group_X_enabled_click_to_disable_them = // Warning: it is very important to include %s in the following sentences @@ -13076,6 +14240,8 @@ const char *Txt_File_zones_of_the_group_X_enabled_click_to_disable_them = // War "Plik strefy grupy %s aktywny, kliknij, aby je wylaczyc"; #elif L==9 // pt "Zonas de arquivos do grupo %s ativadas, clique para desativá-las"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_File_zones_of_the_group_X_disabled_click_to_enable_them = // Warning: it is very important to include %s in the following sentences @@ -13097,6 +14263,8 @@ const char *Txt_File_zones_of_the_group_X_disabled_click_to_enable_them = // War "Plik strefy grupy %s jes niedostepny, kliknij aby wlaczyc"; #elif L==9 // pt "Zonas de arquivos do grupo %s desativadas, clique para ativá-las"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Files = @@ -13118,6 +14286,8 @@ const char *Txt_Files = "Pliki"; #elif L==9 // pt "Arquivos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_files = @@ -13139,6 +14309,8 @@ const char *Txt_files = "pliki"; #elif L==9 // pt "arquivos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Files_assignments = @@ -13160,6 +14332,8 @@ const char *Txt_Files_assignments = "Pliki zadan"; #elif L==9 // pt "Arquivos atividades"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Files_copied = @@ -13181,6 +14355,8 @@ const char *Txt_Files_copied = "Pliki kopiowane"; #elif L==9 // pt "Arquivos copiados"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Files_uploaded = @@ -13202,6 +14378,8 @@ const char *Txt_Files_uploaded = "Pliki dodane"; #elif L==9 // pt "Arquivos enviados"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Files_of_marks_must_contain_a_table_in_HTML_format_ = @@ -13291,6 +14469,8 @@ const char *Txt_Files_of_marks_must_contain_a_table_in_HTML_format_ = " Um estudante verá uma tabela com linhas de cabeçalho," " seguida pela linha com suas notas," " e linhas de rodapé."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Files_removed = @@ -13312,6 +14492,8 @@ const char *Txt_Files_removed = "Pliki usunięte"; #elif L==9 // pt "Arquivos removidos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Files_works = @@ -13333,6 +14515,8 @@ const char *Txt_Files_works = "Pliki domowe"; #elif L==9 // pt "Arquivos trabalhos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Filter = // As a noun @@ -13354,6 +14538,8 @@ const char *Txt_Filter = // As a noun "Filtr"; #elif L==9 // pt "Filtro"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_First_day_of_the_week_X = // Warning: it is very important to include %s in the following sentences @@ -13375,6 +14561,8 @@ const char *Txt_First_day_of_the_week_X = // Warning: it is very important to in "Pierwszy dzień tygodnia: %s"; #elif L==9 // pt "Primeiro dia da semana: %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_First_name = @@ -13396,6 +14584,8 @@ const char *Txt_First_name = "Imię"; #elif L==9 // pt "Nome"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Floor = @@ -13417,6 +14607,8 @@ const char *Txt_Floor = "Piętrze"; #elif L==9 // pt "Andar"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Folder = @@ -13438,6 +14630,8 @@ const char *Txt_Folder = "Folder"; #elif L==9 // pt "Diretório"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_folder = @@ -13459,6 +14653,8 @@ const char *Txt_folder = "folder"; #elif L==9 // pt "diretório"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Folder_X_and_all_its_contents_removed = // Warning: it is very important to include %s in the following sentences @@ -13480,6 +14676,8 @@ const char *Txt_Folder_X_and_all_its_contents_removed = // Warning: it is very i "Folder %s i cala jego zawartosc usunieta."; #elif L==9 // pt "Diretório %s e todo o seu conteúdo removidos."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Folder_X_removed = // Warning: it is very important to include %s in the following sentences @@ -13501,6 +14699,8 @@ const char *Txt_Folder_X_removed = // Warning: it is very important to include % "Folder %s usuniety."; #elif L==9 // pt "Diretório %s removido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Folders = @@ -13522,6 +14722,8 @@ const char *Txt_Folders = "Foldery"; #elif L==9 // pt "Diretórios"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_folders = @@ -13543,6 +14745,8 @@ const char *Txt_folders = "foldery"; #elif L==9 // pt "diretórios"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Folders_copied = @@ -13564,6 +14768,8 @@ const char *Txt_Folders_copied = "foldery skopiowane"; #elif L==9 // pt "Diretórios copiados"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Folders_renamed = @@ -13585,6 +14791,8 @@ const char *Txt_Folders_renamed = "Foldery zmienione"; #elif L==9 // pt "Diretórios renomeados"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Folders_removed = @@ -13606,6 +14814,8 @@ const char *Txt_Folders_removed = "Foldery usunięte"; #elif L==9 // pt "Diretórios removidos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Folders_not_renamed = @@ -13627,6 +14837,8 @@ const char *Txt_Folders_not_renamed = "Foldery nie zmienione"; #elif L==9 // pt "Diretórios não renomeados"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Follow = @@ -13648,6 +14860,8 @@ const char *Txt_Follow = "Śledź"; #elif L==9 // pt "Seguir"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_FollowPerFollow[2] = @@ -13670,6 +14884,8 @@ const char *Txt_FollowPerFollow[2] = "Średnia liczba obserwowani za obserwują" #elif L==9 // pt "Média por seguidos por seguidor" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -13690,6 +14906,8 @@ const char *Txt_FollowPerFollow[2] = "Średnia liczba obserwują za obserwowani" #elif L==9 // pt "Média por seguidores por seguido" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -13712,6 +14930,8 @@ const char *Txt_Followed = "Obserwowani"; #elif L==9 // pt "Seguidos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Followers = @@ -13733,6 +14953,8 @@ const char *Txt_Followers = "Obserwują"; #elif L==9 // pt "Seguidores"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Following = @@ -13754,6 +14976,8 @@ const char *Txt_Following = "Następujący"; #elif L==9 // pt "Seguinte"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Following_unfollow = @@ -13775,6 +14999,8 @@ const char *Txt_Following_unfollow = "Następujący, nie obserwuj"; #elif L==9 // pt "Seguinte, deixar de seguir"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_FOLLOWS_YOU = @@ -13796,6 +15022,8 @@ const char *Txt_FOLLOWS_YOU = "OBSERWUJE CIĘ"; #elif L==9 // pt "SEGUE VOCÊ"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_For_security_enter_your_password = @@ -13817,6 +15045,8 @@ const char *Txt_For_security_enter_your_password = "Dla bezpieczeństwa, wprowadź hasło"; #elif L==9 // pt "Por segurança, digite a sua senha"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Force_students_to_read_this_information = @@ -13838,6 +15068,8 @@ const char *Txt_Force_students_to_read_this_information = "Studenci maja przeczytac ta informacje"; #elif L==9 // pt "Forçar os estudantes a ler esta informação"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Forgotten_password = @@ -13859,6 +15091,8 @@ const char *Txt_Forgotten_password = "Zapomniane hasło?"; #elif L==9 // pt "Senha esquecida?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Format = @@ -13880,6 +15114,8 @@ const char *Txt_Format = "Format"; #elif L==9 // pt "Formato"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Forum = @@ -13901,6 +15137,8 @@ const char *Txt_Forum = "Forum"; #elif L==9 // pt "Fórum"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Forum_posts = @@ -13922,6 +15160,8 @@ const char *Txt_Forum_posts = "Forum postow"; #elif L==9 // pt "Posts de fórum"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_FORUM_post = @@ -13943,6 +15183,8 @@ const char *Txt_FORUM_post = "post"; #elif L==9 // pt "post"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_FORUM_posts = @@ -13964,6 +15206,8 @@ const char *Txt_FORUM_posts = "posty"; #elif L==9 // pt "posts"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_FORUM_Post_X_allowed = // Warning: it is very important to include %u in the following sentences @@ -13985,6 +15229,8 @@ const char *Txt_FORUM_Post_X_allowed = // Warning: it is very important to inclu "Post %u dozwolone."; #elif L==9 // pt "Post %u permitido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_FORUM_Post_X_allowed_Click_to_ban_it = // Warning: it is very important to include %u in the following sentences @@ -14006,6 +15252,8 @@ const char *Txt_FORUM_Post_X_allowed_Click_to_ban_it = // Warning: it is very im "Post %u dozwolone. Kliknij, aby to zakazac."; #elif L==9 // pt "Post %u permitido. Clique para censurá-lo."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_FORUM_Post_and_thread_removed = @@ -14027,6 +15275,8 @@ const char *Txt_FORUM_Post_and_thread_removed = "Post watku usuniety."; #elif L==9 // pt "Post e discussão removidos."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_FORUM_Post_banned = @@ -14048,6 +15298,8 @@ const char *Txt_FORUM_Post_banned = "Post zakazany."; #elif L==9 // pt "Post não permitido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_FORUM_Post_X_banned = // Warning: it is very important to include %u in the following sentences @@ -14069,6 +15321,8 @@ const char *Txt_FORUM_Post_X_banned = // Warning: it is very important to includ "Post %u zakazany."; #elif L==9 // pt "Post %u não permitido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_FORUM_Post_X_banned_Click_to_unban_it = // Warning: it is very important to include %u in the following sentences @@ -14090,6 +15344,8 @@ const char *Txt_FORUM_Post_X_banned_Click_to_unban_it = // Warning: it is very i "Post %u zakazany.Kliknij, aby to odbanowac."; #elif L==9 // pt "Post %u não permitido. Clique para permiti-lo."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_FORUM_Post_sent = @@ -14111,6 +15367,8 @@ const char *Txt_FORUM_Post_sent = "Post wyslany."; #elif L==9 // pt "Post enviado."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_FORUM_Post_removed = @@ -14132,6 +15390,8 @@ const char *Txt_FORUM_Post_removed = "Post usuniety."; #elif L==9 // pt "Post removido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_FORUM_Post_unbanned = @@ -14153,6 +15413,8 @@ const char *Txt_FORUM_Post_unbanned = "Post odbanowany"; #elif L==9 // pt "Post permitido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Forum_threads = @@ -14174,6 +15436,8 @@ const char *Txt_Forum_threads = "Watki forum"; #elif L==9 // pt "Discussões de fórum"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_FORUM_THREAD_HELP_ORDER[Dat_NUM_START_END_TIME] = @@ -14197,6 +15461,8 @@ const char *Txt_FORUM_THREAD_HELP_ORDER[Dat_NUM_START_END_TIME] = "Sortuj wedlug daty pierwszej wiadomosci" #elif L==9 // pt "Classificar por data da primeira mensagem" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Dat_END_TIME] = @@ -14218,6 +15484,8 @@ const char *Txt_FORUM_THREAD_HELP_ORDER[Dat_NUM_START_END_TIME] = "Sortuj wedlug daty ostatniego komunikatu" #elif L==9 // pt "Classificar pela data da última mensagem" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -14242,6 +15510,8 @@ const char *Txt_FORUM_THREAD_ORDER[Dat_NUM_START_END_TIME] = "Pierwsza post" #elif L==9 // pt "Primeira post" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Dat_END_TIME] = @@ -14263,6 +15533,8 @@ const char *Txt_FORUM_THREAD_ORDER[Dat_NUM_START_END_TIME] = "Ostatnia post" #elif L==9 // pt "Última post" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -14287,6 +15559,8 @@ const char *Txt_FORUM_WHICH_FORUM[For_NUM_FORUM_SETS] = "Forum tej lokalizacji" #elif L==9 // pt "Fóruns deste site" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [For_ALL_MY_FORUMS] = @@ -14308,6 +15582,8 @@ const char *Txt_FORUM_WHICH_FORUM[For_NUM_FORUM_SETS] = "Wszystkie moje forum" #elif L==9 // pt "Todos os meus fóruns" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -14330,6 +15606,8 @@ const char *Txt_Forums = "Forum"; #elif L==9 // pt "Fóruns"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Found_an_index_html_file = @@ -14351,6 +15629,8 @@ const char *Txt_Found_an_index_html_file = "Znaleziono index.htm/index.html plik."; #elif L==9 // pt "Um arquivo index.htm/index.html foi encontrado."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Frequent_ACTIONS = // Check that this sentence fits within the allocated space @@ -14372,6 +15652,8 @@ const char *Txt_Frequent_ACTIONS = // Check that this sentence fits within the a "Częste"; #elif L==9 // pt "Freqüentes"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_from = @@ -14393,6 +15675,8 @@ const char *Txt_from = "z"; #elif L==9 // pt "de"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_From_now_on_the_number_of_editing_lines_of_the_field_X_is_Y = // Warning: it is very important to include %s and %u (in this order) in the following sentences @@ -14432,6 +15716,8 @@ const char *Txt_From_now_on_the_number_of_editing_lines_of_the_field_X_is_Y = // "A partir de agora" " o número de linhas de edição no campo %s" " é %u."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_from_this_course = @@ -14453,6 +15739,8 @@ const char *Txt_from_this_course = "z tego kursu"; #elif L==9 // pt "desta disciplina"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_From_this_time_you_can_receive_messages_from_X = // Warning: it is very important to include %s in the following sentences @@ -14474,6 +15762,8 @@ const char *Txt_From_this_time_you_can_receive_messages_from_X = // Warning: it "Od tej chwili możesz otrzymywać wiadomości od %s."; #elif L==9 // pt "A partir deste momento, você pode receber mensagens de %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_From_this_time_you_will_not_receive_messages_from_X = // Warning: it is very important to include %s in the following sentences @@ -14495,6 +15785,8 @@ const char *Txt_From_this_time_you_will_not_receive_messages_from_X = // Warning "Od tej chwili nie będziesz otrzymywać wiadomości od %s."; #elif L==9 // pt "A partir deste momento, você não receberá mensagens de %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Full_name = @@ -14516,6 +15808,8 @@ const char *Txt_Full_name = "Pełna nazwa"; #elif L==9 // pt "Nome completo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Full_name_of_the_degree = @@ -14537,6 +15831,8 @@ const char *Txt_Full_name_of_the_degree = "Pełna nazwa stopień"; #elif L==9 // pt "Nome completo do grau"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Full_name_of_the_center = @@ -14558,6 +15854,8 @@ const char *Txt_Full_name_of_the_center = "Pełna nazwa centrum"; #elif L==9 // pt "Nome completo do centro"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Full_name_of_the_course = @@ -14579,6 +15877,8 @@ const char *Txt_Full_name_of_the_course = "Pełna nazwa kurs"; #elif L==9 // pt "Nome completo da disciplina"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Full_name_of_the_institution = @@ -14600,6 +15900,8 @@ const char *Txt_Full_name_of_the_institution = "Pełna nazwa instytucji"; #elif L==9 // pt "Nome completo da instituição"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Function = @@ -14621,6 +15923,8 @@ const char *Txt_Function = "Funkcja"; #elif L==9 // pt "Função"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Game = @@ -14642,6 +15946,8 @@ const char *Txt_Game = "Gra"; #elif L==9 // pt "Jogo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Game_X_removed = // Warning: it is very important to include %s in the following sentences @@ -14663,6 +15969,8 @@ const char *Txt_Game_X_removed = // Warning: it is very important to include %s "Gra %s usunięte."; #elif L==9 // pt "Jogo %s removido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Games = @@ -14684,6 +15992,8 @@ const char *Txt_Games = "Gry"; #elif L==9 // pt "Jogos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_GAMES_ORDER[Gam_NUM_ORDERS] = @@ -14707,6 +16017,8 @@ const char *Txt_GAMES_ORDER[Gam_NUM_ORDERS] = "Początek" #elif L==9 // pt "Início" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Gam_ORDER_BY_END_DATE] = @@ -14728,6 +16040,8 @@ const char *Txt_GAMES_ORDER[Gam_NUM_ORDERS] = "Koniec" #elif L==9 // pt "Fim" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Gam_ORDER_BY_TITLE] = @@ -14749,6 +16063,8 @@ const char *Txt_GAMES_ORDER[Gam_NUM_ORDERS] = "Gra" #elif L==9 // pt "Jogo" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -14773,6 +16089,8 @@ const char *Txt_GAMES_ORDER_HELP[Gam_NUM_ORDERS] = "Sortuj wedlug daty rozpoczecia" #elif L==9 // pt "Classificar por data de início" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Gam_ORDER_BY_END_DATE] = @@ -14794,6 +16112,8 @@ const char *Txt_GAMES_ORDER_HELP[Gam_NUM_ORDERS] = "Sortuj wedlug daty zakonczenia" #elif L==9 // pt "Classificar por data de término" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Gam_ORDER_BY_TITLE] = @@ -14815,6 +16135,8 @@ const char *Txt_GAMES_ORDER_HELP[Gam_NUM_ORDERS] = "Sortuj według tytułu gry" #elif L==9 // pt "Classificar por título do jogo" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -14837,6 +16159,8 @@ const char *Txt_General = "Ogolne"; #elif L==9 // pt "Geral"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_general_topics = @@ -14858,6 +16182,8 @@ const char *Txt_general_topics = "ogólne tematy"; #elif L==9 // pt "temas gerais"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Generate_report = @@ -14879,6 +16205,8 @@ const char *Txt_Generate_report = "Wygeneruj raport"; #elif L==9 // pt "Gerar relatório"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Generate_test = @@ -14900,6 +16228,8 @@ const char *Txt_Generate_test = "Wygeneruj test"; #elif L==9 // pt "Gerar teste"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Get_a_new_password = @@ -14921,6 +16251,8 @@ const char *Txt_Get_a_new_password = "Uzyskaj nowe hasło"; #elif L==9 // pt "Obter uma nova senha"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Global_visits = @@ -14942,6 +16274,8 @@ const char *Txt_Global_visits = "Globalne wizyty"; #elif L==9 // pt "Visitas globais"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Go_back = @@ -14963,6 +16297,8 @@ const char *Txt_Go_back = "Wracać"; #elif L==9 // pt "Voltar"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Go_forward = @@ -14984,6 +16320,8 @@ const char *Txt_Go_forward = "Idź napród"; #elif L==9 // pt "Avançar"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Go_to_X = // Warning: it is very important to include %s in the following sentences @@ -15005,6 +16343,8 @@ const char *Txt_Go_to_X = // Warning: it is very important to include %s in the "Przejdz do %s"; #elif L==9 // pt "Ir para %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Go_to_course_and_reply = @@ -15026,6 +16366,8 @@ const char *Txt_Go_to_course_and_reply = "Idz do kursu i odpowiedz"; #elif L==9 // pt "Ir para a disciplina e responder"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Go_to_course_and_reply_again = @@ -15047,6 +16389,8 @@ const char *Txt_Go_to_course_and_reply_again = "Idz do kursu i odpowiedz ponownie"; #elif L==9 // pt "Ir para a disciplina e responder novamente"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Go_to_one_of_my_courses = @@ -15068,6 +16412,8 @@ const char *Txt_Go_to_one_of_my_courses = "Idź do jednej z moich kursów"; #elif L==9 // pt "Vá para uma das minha disciplinas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Grade = @@ -15089,6 +16435,8 @@ const char *Txt_Grade = "Ocena"; #elif L==9 // pt "Nota"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Group = @@ -15110,6 +16458,8 @@ const char *Txt_Group = "Grupa"; #elif L==9 // pt "Grupo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_group = @@ -15131,6 +16481,8 @@ const char *Txt_group = "grupa"; #elif L==9 // pt "grupo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Group_closed = @@ -15152,6 +16504,8 @@ const char *Txt_Group_closed = "Grupa zamknieta"; #elif L==9 // pt "Grupo fechado"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Group_X_closed = // Warning: it is very important to include %s in the following sentences @@ -15173,6 +16527,8 @@ const char *Txt_Group_X_closed = // Warning: it is very important to include %s "Grupa %s zamknieta"; #elif L==9 // pt "Grupo %s fechado"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Group_X_closed_click_to_open_it = // Warning: it is very important to include %s in the following sentences @@ -15194,6 +16550,8 @@ const char *Txt_Group_X_closed_click_to_open_it = // Warning: it is very importa "Grupa %s zamknieta, kliknij zeby otworzyc"; #elif L==9 // pt "Grupo %s fechado, clique para abri-lo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Group_name = @@ -15215,6 +16573,8 @@ const char *Txt_Group_name = "Nazwa grupy"; #elif L==9 // pt "Nome do grupo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Group_X_open = // Warning: it is very important to include %s in the following sentences @@ -15236,6 +16596,8 @@ const char *Txt_Group_X_open = // Warning: it is very important to include %s in "Grupa %s otwarta"; #elif L==9 // pt "Grupo %s aberto"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Group_X_open_click_to_close_it = // Warning: it is very important to include %s in the following sentences @@ -15257,6 +16619,8 @@ const char *Txt_Group_X_open_click_to_close_it = // Warning: it is very importan "Grupa %s otwarta, kliknij zeby zamknac"; #elif L==9 // pt "Grupo %s aberto, clique para fechá-lo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Group_X_removed = // Warning: it is very important to include %s in the following sentences @@ -15278,6 +16642,8 @@ const char *Txt_Group_X_removed = // Warning: it is very important to include %s "Grupa %s usunieta."; #elif L==9 // pt "Grupo %s removido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_GROUP_WHICH_GROUPS[2] = @@ -15300,6 +16666,8 @@ const char *Txt_GROUP_WHICH_GROUPS[2] = "Tylko moje grupy" #elif L==9 // pt "Apenas os meus grupos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -15320,6 +16688,8 @@ const char *Txt_GROUP_WHICH_GROUPS[2] = "Wszystkie grupy" #elif L==9 // pt "Todos os grupos" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -15342,6 +16712,8 @@ const char *Txt_Groups = "Grupy"; #elif L==9 // pt "Grupos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Groups_OF_A_USER = // Warning: it is very important to include %s in the following sentences @@ -15363,6 +16735,8 @@ const char *Txt_Groups_OF_A_USER = // Warning: it is very important to include % "%s grupy"; #elif L==9 // pt "Grupos de %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Guided_academic_assignments = @@ -15384,6 +16758,8 @@ const char *Txt_Guided_academic_assignments = "Zwiedzanie dyplomowe"; #elif L==9 // pt "Atividades académicas guided"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Happy_birthday_X = // Warning: it is very important to include %s in the following sentences @@ -15405,6 +16781,8 @@ const char *Txt_Happy_birthday_X = // Warning: it is very important to include % "Wszystkiego najlepszego, %s!"; #elif L==9 // pt "Feliz aniversário, %s!"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Help = @@ -15426,6 +16804,8 @@ const char *Txt_Help = "Pomoc"; #elif L==9 // pt "Ajuda"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_HELP_email = @@ -15447,6 +16827,8 @@ const char *Txt_HELP_email = "Przykład: nowak@przykladmail.com"; #elif L==9 // pt "Exemplo: silva@exemplomail.com"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_HELP_nickname = @@ -15468,6 +16850,8 @@ const char *Txt_HELP_nickname = "Przykład: @nowak"; #elif L==9 // pt "Exemplo: @silva"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_HELP_password = @@ -15489,6 +16873,8 @@ const char *Txt_HELP_password = "8 lub więcej znaków"; #elif L==9 // pt "8 ou mais caracteres"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Hidden_MALE_PLURAL = @@ -15510,6 +16896,8 @@ const char *Txt_Hidden_MALE_PLURAL = "Ukryty"; #elif L==9 // pt "Ocultos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_hidden_document = @@ -15531,6 +16919,8 @@ const char *Txt_hidden_document = "hidden document"; // Potrzebujesz tlumaczenie #elif L==9 // pt "documento oculto"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_hidden_documents = @@ -15552,6 +16942,8 @@ const char *Txt_hidden_documents = "hidden documents"; // Potrzebujesz tlumaczenie #elif L==9 // pt "documentos ocultos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Hidden_results = @@ -15573,6 +16965,8 @@ const char *Txt_Hidden_results = "Ukryte wyników"; #elif L==9 // pt "Resultados ocultos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Hidden_survey = @@ -15594,6 +16988,8 @@ const char *Txt_Hidden_survey = "Ukryte badania"; #elif L==9 // pt "Inquérito oculto"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Hide = @@ -15615,6 +17011,8 @@ const char *Txt_Hide = "Ukryj"; #elif L==9 // pt "Ocultar"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Hide_left_column = @@ -15636,6 +17034,8 @@ const char *Txt_Hide_left_column = "Ukryj lewa kolumne"; #elif L==9 // pt "Ocultar coluna da esquerda"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Hide_message = @@ -15657,6 +17057,8 @@ const char *Txt_Hide_message = "Hide message"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Ocultar mensagem"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Hide_right_column = @@ -15678,6 +17080,8 @@ const char *Txt_Hide_right_column = "Ukryj prawa kolumne"; #elif L==9 // pt "Ocultar coluna da direita"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_historical_log = @@ -15699,6 +17103,8 @@ const char *Txt_historical_log = "dziennik historyczny"; #elif L==9 // pt "log histórico"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Hits = // hits = visits, clicks, page views... @@ -15720,6 +17126,8 @@ const char *Txt_Hits = // hits = visits, clicks, page views... "Odsłon"; #elif L==9 // pt "Visitas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Hits_as_a_USER = // hits = visits, clicks, page views... Warning: it is very important to include %s in the following sentences @@ -15741,6 +17149,8 @@ const char *Txt_Hits_as_a_USER = // hits = visits, clicks, page views... Warning "Odsłon (kliknięcia) jako %s"; #elif L==9 // pt "Visitas (cliques) como %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Hits_per_action = // hits = visits, clicks, page views... @@ -15762,6 +17172,8 @@ const char *Txt_Hits_per_action = // hits = visits, clicks, page views... "Odsłon (kliknięcia) działanie"; #elif L==9 // pt "Visitas (cliques) por ação"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Hits_per_year = // hits = visits, clicks, page views... @@ -15783,6 +17195,8 @@ const char *Txt_Hits_per_year = // hits = visits, clicks, page views... "Odsłon (kliknięcia) rocznie"; #elif L==9 // pt "Visitas (cliques) por ano"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Hits_without_course_selected = // hits = visits, clicks, page views... @@ -15804,6 +17218,8 @@ const char *Txt_Hits_without_course_selected = // hits = visits, clicks, page vi "Odsłon (kliknięcia) bez oczywiście wybrana"; #elif L==9 // pt "Visitas (cliques) sem disciplina selecionada"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Holiday = @@ -15825,6 +17241,8 @@ const char *Txt_Holiday = "Wakacje"; #elif L==9 // pt "Féria"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Holiday_X_removed = // Warning: it is very important to include %s in the following sentences @@ -15846,6 +17264,8 @@ const char *Txt_Holiday_X_removed = // Warning: it is very important to include "Wakacje %s usuniete."; #elif L==9 // pt "Festividade %s eliminada."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_HOLIDAY_TYPES[Hld_NUM_TYPES_HOLIDAY] = @@ -15869,6 +17289,8 @@ const char *Txt_HOLIDAY_TYPES[Hld_NUM_TYPES_HOLIDAY] = "wakacje" #elif L==9 // pt "Feriado" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Hld_NON_SCHOOL_PERIOD] = @@ -15890,6 +17312,8 @@ const char *Txt_HOLIDAY_TYPES[Hld_NUM_TYPES_HOLIDAY] = "Okres nauki szkolnej dla" #elif L==9 // pt "Período sem escola" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -15912,6 +17336,8 @@ const char *Txt_Holidays = "Noclegi"; #elif L==9 // pt "Férias"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_HOLIDAYS_HELP_ORDER[Hld_NUM_ORDERS] = @@ -15935,6 +17361,8 @@ const char *Txt_HOLIDAYS_HELP_ORDER[Hld_NUM_ORDERS] = "Sortuj wedlug miejsca" #elif L==9 // pt "Classificar por localização" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Hld_ORDER_BY_START_DATE] = @@ -15956,6 +17384,8 @@ const char *Txt_HOLIDAYS_HELP_ORDER[Hld_NUM_ORDERS] = "Sortuj wedlug daty" #elif L==9 // pt "Classificar por data" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -15980,6 +17410,8 @@ const char *Txt_HOLIDAYS_ORDER[Hld_NUM_ORDERS] = "Miejsce" #elif L==9 // pt "Localização" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Hld_ORDER_BY_START_DATE] = @@ -16001,6 +17433,8 @@ const char *Txt_HOLIDAYS_ORDER[Hld_NUM_ORDERS] = "Data rozpoczecia" #elif L==9 // pt "Data de início" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -16023,6 +17457,8 @@ const char *Txt_Home_PAGE = "Dom"; #elif L==9 // pt "Home"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_hour = @@ -16044,6 +17480,8 @@ const char *Txt_hour = "godzina"; #elif L==9 // pt "hora"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_hours = @@ -16065,6 +17503,8 @@ const char *Txt_hours = "godziny"; #elif L==9 // pt "horas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_hours_ABBREVIATION = // Abbreviation of "hours" @@ -16086,6 +17526,8 @@ const char *Txt_hours_ABBREVIATION = // Abbreviation of "hours" "g"; #elif L==9 // pt "h"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_I_have_read_this_information = @@ -16107,6 +17549,8 @@ const char *Txt_I_have_read_this_information = "Czytalem te informacje"; #elif L==9 // pt "Eu li esta informação"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_I_understand_that_this_action_can_not_be_undone = @@ -16128,6 +17572,8 @@ const char *Txt_I_understand_that_this_action_can_not_be_undone = "Rozumiem, że działanie nie można cofnąć."; #elif L==9 // pt "Eu entendo que esta ação não pode ser desfeita."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_I_have_finished = @@ -16149,6 +17595,8 @@ const char *Txt_I_have_finished = "Skończyłem"; #elif L==9 // pt "Acabei"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Icons = @@ -16170,6 +17618,8 @@ const char *Txt_Icons = "Ikony"; #elif L==9 // pt "Ícones"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_ID = @@ -16191,6 +17641,8 @@ const char *Txt_ID = "Dowód osobisty"; #elif L==9 // pt "N.º identif."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_ID_X_had_already_been_confirmed = // Warning: it is very important to include %s in the following sentences @@ -16212,6 +17664,8 @@ const char *Txt_ID_X_had_already_been_confirmed = // Warning: it is very importa "ID %s została już potwierdzona."; #elif L==9 // pt "O ID %s já havia sido confirmada."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_ID_X_confirmed = // Warning: it is very important to include %s in the following sentences @@ -16233,6 +17687,8 @@ const char *Txt_ID_X_confirmed = // Warning: it is very important to include %s "ID %s potwierdzone"; #elif L==9 // pt "ID %s confirmado"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_ID_X_not_confirmed = // Warning: it is very important to include %s in the following sentences @@ -16254,6 +17710,8 @@ const char *Txt_ID_X_not_confirmed = // Warning: it is very important to include "ID %s nie potwierdzone"; #elif L==9 // pt "ID %s não confirmado"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_ID_X_removed = // Warning: it is very important to include %s in the following sentences @@ -16275,6 +17733,8 @@ const char *Txt_ID_X_removed = // Warning: it is very important to include %s in "ID %s usuniete."; #elif L==9 // pt "Email %s removido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Identified_views = @@ -16296,6 +17756,8 @@ const char *Txt_Identified_views = "Zidentyfikowane odsłon"; #elif L==9 // pt "Acessos identificados"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_If_this_is_a_new_user_in_X_you_should_indicate_her_his_ID = // Warning: it is very important to include %s in the following sentences @@ -16326,6 +17788,8 @@ const char *Txt_If_this_is_a_new_user_in_X_you_should_indicate_her_his_ID = // W #elif L==9 // pt "Se este for um novo usuário em %s," " você deve indicar seu ID."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_If_you_can_not_find_your_institution_your_center_your_degree_or_your_courses_you_can_create_them = @@ -16356,6 +17820,8 @@ const char *Txt_If_you_can_not_find_your_institution_your_center_your_degree_or_ #elif L==9 // pt "Se você não consegue encontrar a sua instituição, o seu centro," " o seu grau ou as suas disciplinas, você pode criá-los."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_If_you_have_an_Android_device_try_SWADroid = @@ -16377,6 +17843,8 @@ const char *Txt_If_you_have_an_Android_device_try_SWADroid = "Jeśli masz telefon z systemem Android, spróbuj SWADroid"; #elif L==9 // pt "Se você tiver um dispositivo Android, tente SWADroid"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_If_you_have_forgotten_your_password_ = @@ -16416,6 +17884,8 @@ const char *Txt_If_you_have_forgotten_your_password_ = "Se você tiver esquecido sua senha," " uma nova será enviada" " para o seu endereço de email."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_If_you_have_written_your_ID_nickname_or_email_correctly_ = @@ -16455,6 +17925,8 @@ const char *Txt_If_you_have_written_your_ID_nickname_or_email_correctly_ = "Se você ter escrito o suo alcunha, email ou nº identif. corretamente," " bem como o endereço de email em seu cartão está correto," " você receberá um email com uma nova senha."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_If_you_think_you_may_have_been_registered_ = @@ -16502,6 +17974,8 @@ const char *Txt_If_you_think_you_may_have_been_registered_ = " por um professor ou administrador," " verifique-o escrevendo uma das suas possíveis IDs" " (identificação, passaporte, etc.)."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Image = @@ -16523,6 +17997,8 @@ const char *Txt_Image = "Obraz"; #elif L==9 // pt "Imagem"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Image_video = @@ -16544,6 +18020,8 @@ const char *Txt_Image_video = "Obraz / wideo"; #elif L==9 // pt "Imagem / vídeo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Import_questions = @@ -16565,6 +18043,8 @@ const char *Txt_Import_questions = "Importuj pytania"; #elif L==9 // pt "Importar perguntas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Imported_questions = @@ -16586,6 +18066,8 @@ const char *Txt_Imported_questions = "Zaimportowane pytania"; #elif L==9 // pt "Perguntas importadas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_SEARCH_X_in_Y = // Search string "in" documentos, users, etc. @@ -16607,6 +18089,8 @@ const char *Txt_SEARCH_X_in_Y = // Search string "in" documentos, users, etc. "w"; #elif L==9 // pt "em"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_In_a_type_of_group_with_single_enrolment_students_can_not_be_registered_in_more_than_one_group = @@ -16637,6 +18121,8 @@ const char *Txt_In_a_type_of_group_with_single_enrolment_students_can_not_be_reg #elif L==9 // pt "Em um tipo de grupo com inscrição única," " os estudantes não podem ser registrados em mais de um grupo."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_In_the_year_X_of_the_degree_Y_already_existed_a_course_with_the_name_Z = // Warning: it is very important to include three %s in the following sentences @@ -16667,6 +18153,8 @@ const char *Txt_In_the_year_X_of_the_degree_Y_already_existed_a_course_with_the_ #elif L==9 // pt "No ano/semestre %s do grau %s" " já existia uma disciplina com o nome %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Incomplete_timetable_for_lack_of_space = @@ -16688,6 +18176,8 @@ const char *Txt_Incomplete_timetable_for_lack_of_space = "Niekompletne harmonogram brak miejsca."; #elif L==9 // pt "Horário incompleto por falta de espaço."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Increase_level_of_X = // Warning: it is very important to include %s in the following sentences @@ -16709,6 +18199,8 @@ const char *Txt_Increase_level_of_X = // Warning: it is very important to includ "Wzrost poziomu %s"; #elif L==9 // pt "Aumentar o nível de %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Indicators = @@ -16730,6 +18222,8 @@ const char *Txt_Indicators = "Wskaźniki"; #elif L==9 // pt "Indocadores"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Indicators_of_courses = @@ -16751,6 +18245,8 @@ const char *Txt_Indicators_of_courses = "Wskaźniki kursów"; #elif L==9 // pt "Indicadores de disciplinas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Info = @@ -16772,6 +18268,8 @@ const char *Txt_Info = "Info"; #elif L==9 // pt "Info"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_INFO_TITLE[Inf_NUM_TYPES] = @@ -16795,6 +18293,8 @@ const char *Txt_INFO_TITLE[Inf_NUM_TYPES] = "Informacja" #elif L==9 // pt "Informação" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Inf_TEACHING_GUIDE] = @@ -16816,6 +18316,8 @@ const char *Txt_INFO_TITLE[Inf_NUM_TYPES] = "Nauczanie przypomnienie" #elif L==9 // pt "Guia de ensino" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Inf_LECTURES] = @@ -16837,6 +18339,8 @@ const char *Txt_INFO_TITLE[Inf_NUM_TYPES] = "Sylabus" #elif L==9 // pt "Conteúdo" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Inf_PRACTICALS] = @@ -16858,6 +18362,8 @@ const char *Txt_INFO_TITLE[Inf_NUM_TYPES] = "Sylabus" #elif L==9 // pt "Conteúdo" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Inf_BIBLIOGRAPHY] = @@ -16879,6 +18385,8 @@ const char *Txt_INFO_TITLE[Inf_NUM_TYPES] = "Bibliografia" #elif L==9 // pt "Bibliografia" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Inf_FAQ] = @@ -16900,6 +18408,8 @@ const char *Txt_INFO_TITLE[Inf_NUM_TYPES] = "FAQ" #elif L==9 // pt "FAQ" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Inf_LINKS] = @@ -16921,6 +18431,8 @@ const char *Txt_INFO_TITLE[Inf_NUM_TYPES] = "Linki" #elif L==9 // pt "Ligações" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Inf_ASSESSMENT] = @@ -16942,6 +18454,8 @@ const char *Txt_INFO_TITLE[Inf_NUM_TYPES] = "System oceniania" #elif L==9 // pt "Sistema de avaliação" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -16966,6 +18480,8 @@ const char *Txt_INFO_SRC_FULL_TEXT[Inf_NUM_SOURCES] = "Nie podawaj zadnych informacji" #elif L==9 // pt "Não dê nenhuma informação" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Inf_EDITOR] = @@ -16987,6 +18503,8 @@ const char *Txt_INFO_SRC_FULL_TEXT[Inf_NUM_SOURCES] = "Wewnetrzny edytor" #elif L==9 // pt "Interno editor" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Inf_PLAIN_TEXT] = @@ -17008,6 +18526,8 @@ const char *Txt_INFO_SRC_FULL_TEXT[Inf_NUM_SOURCES] = "Zwykly tekst" #elif L==9 // pt "Texto plano" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Inf_RICH_TEXT] = @@ -17026,9 +18546,11 @@ const char *Txt_INFO_SRC_FULL_TEXT[Inf_NUM_SOURCES] = #elif L==7 // it "Testo formattato" #elif L==8 // pl - "Rich text" // Potrzebujesz tlumaczenie + "Tekst sformatowany" #elif L==9 // pt "Texto enriquecido" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Inf_PAGE] = @@ -17050,6 +18572,8 @@ const char *Txt_INFO_SRC_FULL_TEXT[Inf_NUM_SOURCES] = "Strona internetowa hostowana tutaj" #elif L==9 // pt "Página Web hospedada aqui" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Inf_URL] = @@ -17071,6 +18595,8 @@ const char *Txt_INFO_SRC_FULL_TEXT[Inf_NUM_SOURCES] = "Strona internetowa umieszczona na innym serwerze" #elif L==9 // pt "Página Web hospedada em outro servidor" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -17097,6 +18623,8 @@ const char *Txt_INFO_SRC_HELP[Inf_NUM_SOURCES] = "Wewnetrzny edytor, tylko program (wyklady i practicals)" #elif L==9 // pt "interno editor, apenas para programas de teoria y prática" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Inf_PLAIN_TEXT] = @@ -17118,6 +18646,8 @@ const char *Txt_INFO_SRC_HELP[Inf_NUM_SOURCES] = "edytor tekstu zwykły" #elif L==9 // pt "editor de texto simples" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Inf_RICH_TEXT] = @@ -17139,6 +18669,8 @@ const char *Txt_INFO_SRC_HELP[Inf_NUM_SOURCES] = "edytor tekstu sformatowany" #elif L==9 // pt "editor de texto rico" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Inf_PAGE] = @@ -17160,6 +18692,8 @@ const char *Txt_INFO_SRC_HELP[Inf_NUM_SOURCES] = "wyslac plik HTML lub plik ZIP zawierajacy plik index.html / index.htm i pliki graficzne" #elif L==9 // pt "enviar um arquivo HTML, ou um arquivo ZIP que contém um arquivo index.html / index.htm e limas da imagem" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Inf_URL] = @@ -17181,6 +18715,8 @@ const char *Txt_INFO_SRC_HELP[Inf_NUM_SOURCES] = "wprowadzic adres strony internetowej, która znajduje sie na innym serwerze" #elif L==9 // pt "introduza o endereço de uma página Web que está hospedada em outro servidor" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -17205,6 +18741,8 @@ const char *Txt_INFO_SRC_SHORT_TEXT[Inf_NUM_SOURCES] = "Brak informacji" #elif L==9 // pt "Sem informação" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Inf_EDITOR] = @@ -17226,6 +18764,8 @@ const char *Txt_INFO_SRC_SHORT_TEXT[Inf_NUM_SOURCES] = "Wewnetrzny edytor" #elif L==9 // pt "Interno editor" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Inf_PLAIN_TEXT] = @@ -17247,6 +18787,8 @@ const char *Txt_INFO_SRC_SHORT_TEXT[Inf_NUM_SOURCES] = "Zwykly tekst" #elif L==9 // pt "Texto plano" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Inf_RICH_TEXT] = @@ -17268,6 +18810,8 @@ const char *Txt_INFO_SRC_SHORT_TEXT[Inf_NUM_SOURCES] = "Tekst sformatowany" #elif L==9 // pt "Texto enriquecido" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Inf_PAGE] = @@ -17289,6 +18833,8 @@ const char *Txt_INFO_SRC_SHORT_TEXT[Inf_NUM_SOURCES] = "Strona wewnetrzna" #elif L==9 // pt "Interna página" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Inf_URL] = @@ -17310,6 +18856,8 @@ const char *Txt_INFO_SRC_SHORT_TEXT[Inf_NUM_SOURCES] = "Strona zewnetrzna" #elif L==9 // pt "Externa página" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -17332,6 +18880,8 @@ const char *Txt_Informants = "informatorów"; #elif L==9 // pt "Informantes"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Inline_math = @@ -17353,6 +18903,8 @@ const char *Txt_Inline_math = "Jazda matematyki"; #elif L==9 // pt "Fórmula"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Institution = @@ -17374,6 +18926,8 @@ const char *Txt_Institution = "Instytucji"; #elif L==9 // pt "Institução"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_institution = @@ -17395,6 +18949,8 @@ const char *Txt_institution = "instytucji"; #elif L==9 // pt "institução"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Institution_center_and_department = @@ -17416,6 +18972,8 @@ const char *Txt_Institution_center_and_department = "Instytucji, centrum i wydział"; #elif L==9 // pt "Institução, centro e departamento"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Institution_X_removed = // Warning: it is very important to include %s in the following sentences @@ -17437,6 +18995,8 @@ const char *Txt_Institution_X_removed = // Warning: it is very important to incl "Instytucja %s usunieta."; #elif L==9 // pt "Instituição %s removida."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif @@ -17461,6 +19021,8 @@ const char *Txt_INSTITUTION_STATUS[Hie_NUM_STATUS_TXT] = "Nieznany" #elif L==9 // pt "Desconhecido" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Hie_STATUS_ACTIVE] = @@ -17482,6 +19044,8 @@ const char *Txt_INSTITUTION_STATUS[Hie_NUM_STATUS_TXT] = "Aktywne" #elif L==9 // pt "Ativa" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Hie_STATUS_PENDING] = @@ -17503,6 +19067,8 @@ const char *Txt_INSTITUTION_STATUS[Hie_NUM_STATUS_TXT] = "Nowy" #elif L==9 // pt "Nova" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Hie_STATUS_REMOVED] = @@ -17524,6 +19090,8 @@ const char *Txt_INSTITUTION_STATUS[Hie_NUM_STATUS_TXT] = "Usuniete" #elif L==9 // pt "Suprimida" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -17546,6 +19114,8 @@ const char *Txt_Institutional_code = "Kod instytucjonalna"; #elif L==9 // pt "Código institutional"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Institutional_BR_code = @@ -17567,6 +19137,8 @@ const char *Txt_Institutional_BR_code = "Kod
instytuc."; #elif L==9 // pt "Código
instituc."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Institutions = @@ -17588,6 +19160,8 @@ const char *Txt_Institutions = "Instytucje"; #elif L==9 // pt "Instituções"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Institutions_ABBREVIATION = @@ -17609,6 +19183,8 @@ const char *Txt_Institutions_ABBREVIATION = "Instyt."; #elif L==9 // pt "Instit."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_institutions = @@ -17630,6 +19206,8 @@ const char *Txt_institutions = "instytucje"; #elif L==9 // pt "instituções"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_INSTITUTIONS_HELP_ORDER[Ins_NUM_ORDERS] = @@ -17653,6 +19231,8 @@ const char *Txt_INSTITUTIONS_HELP_ORDER[Ins_NUM_ORDERS] = "Sortuj wedlug instytucji" #elif L==9 // pt "Classificar por instituição" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ins_ORDER_BY_NUM_USRS] = @@ -17674,6 +19254,8 @@ const char *Txt_INSTITUTIONS_HELP_ORDER[Ins_NUM_ORDERS] = "Sortowanie wedlug liczby uzytkownikow" #elif L==9 // pt "Classificar por nº de utilizadores" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -17696,6 +19278,8 @@ const char *Txt_Institutions_by_number_of_centers = "Instytucje według liczby ośrodków"; #elif L==9 // pt "Instituções por número de centros"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Institutions_by_number_of_degrees = @@ -17717,6 +19301,8 @@ const char *Txt_Institutions_by_number_of_degrees = "Instytucje według liczby stopni"; #elif L==9 // pt "Instituções por número de graus"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Institutions_by_number_of_courses = @@ -17738,6 +19324,8 @@ const char *Txt_Institutions_by_number_of_courses = "Instytucje według liczby kursõw"; #elif L==9 // pt "Instituções por número de disciplinas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Institutions_by_number_of_users_in_courses = @@ -17759,6 +19347,8 @@ const char *Txt_Institutions_by_number_of_users_in_courses = "Instytucje według liczby użytkowników w kursõw"; #elif L==9 // pt "Instituções por número de usuários em disciplinas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Institutions_by_number_of_users_who_claim_to_belong_to_them = @@ -17780,6 +19370,8 @@ const char *Txt_Institutions_by_number_of_users_who_claim_to_belong_to_them = "Instytucje według liczby użytkowników, którzy twierdzą, że należą do nich"; #elif L==9 // pt "Instituções por número de usuários que afirmam pertencer a elas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Institutions_of_COUNTRY_X = // Warning: it is very important to include %s in the following sentences @@ -17801,6 +19393,8 @@ const char *Txt_Institutions_of_COUNTRY_X = // Warning: it is very important to "Instytucje %s"; #elif L==9 // pt "Instituções de %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_INSTITUTIONS_ORDER[Ins_NUM_ORDERS] = @@ -17824,6 +19418,8 @@ const char *Txt_INSTITUTIONS_ORDER[Ins_NUM_ORDERS] = "Instytucji" #elif L==9 // pt "Instituição" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ins_ORDER_BY_NUM_USRS] = @@ -17845,6 +19441,8 @@ const char *Txt_INSTITUTIONS_ORDER[Ins_NUM_ORDERS] = "Użytkownicy instytucji" #elif L==9 // pt "Utilizadores da institução" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -17867,6 +19465,8 @@ const char *Txt_Institutions_with_pending_centers = "Instytucji z centra oczekujący"; #elif L==9 // pt "Instituções com centros pendentes"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Integer_number = @@ -17888,6 +19488,8 @@ const char *Txt_Integer_number = "Liczba calkowita"; #elif L==9 // pt "N.º inteiro"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Internal_code = @@ -17909,6 +19511,8 @@ const char *Txt_Internal_code = "Kod wewnętrzny"; #elif L==9 // pt "Código interno"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Internationalization = @@ -17930,6 +19534,8 @@ const char *Txt_Internationalization = "Umiędzynarodowienie"; #elif L==9 // pt "Internacionalização"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Invalid_question = @@ -17951,6 +19557,8 @@ const char *Txt_Invalid_question = "Pytanie anulowane"; #elif L==9 // pt "Pergunta cancelada"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_IP = // Internet Protocol address @@ -17972,6 +19580,8 @@ const char *Txt_IP = // Internet Protocol address "IP"; #elif L==9 // pt "IP"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_It_is_mandatory_to_choose_a_group = @@ -17993,6 +19603,8 @@ const char *Txt_It_is_mandatory_to_choose_a_group = "Jest to obowiazkowe, aby wybrac grupe"; #elif L==9 // pt "Escolher um grupo é obrigatório"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_It_is_optional_to_choose_a_group = @@ -18014,6 +19626,8 @@ const char *Txt_It_is_optional_to_choose_a_group = "Opcjonalnie mozna wybrac grupe"; #elif L==9 // pt "Escolher um grupo é voluntário"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif /* const char *Txt_Item = @@ -18035,6 +19649,8 @@ const char *Txt_Item = "Pozycja"; #elif L==9 // pt "Item"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif */ const char *Txt_Item_X_removed = // Warning: it is very important to include %s in the following sentences @@ -18056,6 +19672,8 @@ const char *Txt_Item_X_removed = // Warning: it is very important to include %s "Pozycja %s usuniete."; #elif L==9 // pt "Item %s removido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Its_me = @@ -18077,6 +19695,8 @@ const char *Txt_Its_me = "To ja!"; #elif L==9 // pt "Sou eu!"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Language = @@ -18098,6 +19718,8 @@ const char *Txt_Language = "Język"; #elif L==9 // pt "Lingua"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Last_clicks = @@ -18119,6 +19741,8 @@ const char *Txt_Last_clicks = "Ostatnie dwa kliknięcia"; #elif L==9 // pt "Últimos cliques"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Last_clicks_in_real_time = @@ -18140,6 +19764,8 @@ const char *Txt_Last_clicks_in_real_time = "Ostatnie dwa kliknięcia w czasie rzeczywistym"; #elif L==9 // pt "Últimos cliques em tempo real"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Latitude = @@ -18161,6 +19787,8 @@ const char *Txt_Latitude = "Szerokość geograficzna"; #elif L==9 // pt "Latitude"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_LAYOUT_SIDE_COLUMNS[4] = @@ -18183,6 +19811,8 @@ const char *Txt_LAYOUT_SIDE_COLUMNS[4] = "Wyswietl centralnej czesci tylko" #elif L==9 // pt "Somente área central" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -18203,6 +19833,8 @@ const char *Txt_LAYOUT_SIDE_COLUMNS[4] = "Wyswietl prawa kolumne" #elif L==9 // pt "Coluna direita visível" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -18223,6 +19855,8 @@ const char *Txt_LAYOUT_SIDE_COLUMNS[4] = "Wyswietl lewa kolumne" #elif L==9 // pt "Coluna esquerda visível" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -18243,6 +19877,8 @@ const char *Txt_LAYOUT_SIDE_COLUMNS[4] = "Wyswietl lewa i prawa kolumne" #elif L==9 // pt "Colunas esquerda e direita visíveis" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -18265,6 +19901,8 @@ const char *Txt_level = "poziom"; #elif L==9 // pt "nível"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Levels = @@ -18286,6 +19924,8 @@ const char *Txt_Levels = "Poziomy"; #elif L==9 // pt "Níveis"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_levels = @@ -18307,6 +19947,8 @@ const char *Txt_levels = "poziomy"; #elif L==9 // pt "níveis"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_License = @@ -18328,6 +19970,8 @@ const char *Txt_License = "Pozwolenie"; #elif L==9 // pt "Licença"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_LICENSES[Brw_NUM_LICENSES] = @@ -18351,6 +19995,8 @@ const char *Txt_LICENSES[Brw_NUM_LICENSES] = "nieznana / inny" #elif L==9 // pt "desconhecida / outra" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Brw_LICENSE_ALL_RIGHTS_RESERVED] = @@ -18372,6 +20018,8 @@ const char *Txt_LICENSES[Brw_NUM_LICENSES] = "Wszelkie prawa zastrzeżone" // All Rights Reserved #elif L==9 // pt "Todos os direitos reservados" // All Rights Reserved +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Brw_LICENSE_CC_BY] = @@ -18393,6 +20041,8 @@ const char *Txt_LICENSES[Brw_NUM_LICENSES] = "CC Uznanie autorstwa" // CC Attribution License #elif L==9 // pt "CC Atribuição" // CC Attribution License +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Brw_LICENSE_CC_BY_SA] = @@ -18414,6 +20064,8 @@ const char *Txt_LICENSES[Brw_NUM_LICENSES] = "CC Uznanie autorstwa - Na tych samych warunkach" // CC Attribution-ShareAlike License #elif L==9 // pt "CC Atribuição - Compartilha Igual" // CC Attribution-ShareAlike License +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Brw_LICENSE_CC_BY_ND] = @@ -18435,6 +20087,8 @@ const char *Txt_LICENSES[Brw_NUM_LICENSES] = "CC Uznanie autorstwa - Bez utworów zależnych" // CC Attribution-NoDerivs License #elif L==9 // pt "CC Atribuição - Trabalhos Derivados Proíbidos" // CC Attribution-NoDerivs License +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Brw_LICENSE_CC_BY_NC] = @@ -18456,6 +20110,8 @@ const char *Txt_LICENSES[Brw_NUM_LICENSES] = "CC Uznanie autorstwa - Użycie niekomercyjne" // CC Attribution-NonCommercial License #elif L==9 // pt "CC Atribuição - NãoComercial" // CC Attribution-NonCommercial License +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Brw_LICENSE_CC_BY_NC_SA] = @@ -18477,6 +20133,8 @@ const char *Txt_LICENSES[Brw_NUM_LICENSES] = "CC Uznanie autorstwa - Użycie niekomercyjne - Na tych samych warunkach" // CC Attribution-NonCommercial-ShareAlike License #elif L==9 // pt "CC Atribuição - NãoComercial - Compartilha Igual" // CC Attribution-NonCommercial-ShareAlike License +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Brw_LICENSE_CC_BY_NC_ND] = @@ -18498,6 +20156,8 @@ const char *Txt_LICENSES[Brw_NUM_LICENSES] = "CC Uznanie autorstwa - Użycie niekomercyjne - Bez utworów zależnych" // CC Attribution-NonCommercial-NoDerivs License #elif L==9 // pt "CC Atribuição - NãoComercial - Trabalhos Derivados Proíbidos" // CC Attribution-NonCommercial-NoDerivs License +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -18520,6 +20180,8 @@ const char *Txt_Link = "Link"; #elif L==9 // pt "Ligação."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_link = @@ -18541,6 +20203,8 @@ const char *Txt_link = "link"; #elif L==9 // pt "ligação."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Link_X_removed = // Warning: it is very important to include %s in the following sentences @@ -18562,6 +20226,8 @@ const char *Txt_Link_X_removed = // Warning: it is very important to include %s "Link %s usuniety."; #elif L==9 // pt "Ligação %s removida."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Link_to_call_for_exam = @@ -18583,6 +20249,8 @@ const char *Txt_Link_to_call_for_exam = "Link do ogloszenie egzaminu"; #elif L==9 // pt "Link para chamada para exame"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_List_of_detailed_clicks = @@ -18604,6 +20272,8 @@ const char *Txt_List_of_detailed_clicks = "Lista szczegółowych kliknięć"; #elif L==9 // pt "Lista de cliques detalhados"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_List_of_nicks_emails_or_IDs = @@ -18625,6 +20295,8 @@ const char *Txt_List_of_nicks_emails_or_IDs = "List of @nicks, emails or IDs"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Lista de @alcunhas, emails ou nºs. identif."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Links = @@ -18646,6 +20318,8 @@ const char *Txt_Links = "Linki"; #elif L==9 // pt "Ligações"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Links_copied = @@ -18667,6 +20341,8 @@ const char *Txt_Links_copied = "Linki kopiowane"; #elif L==9 // pt "Ligações copiadas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Links_removed = @@ -18688,6 +20364,8 @@ const char *Txt_Links_removed = "Linki usunięte"; #elif L==9 // pt "Ligações removidas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Location = @@ -18709,6 +20387,8 @@ const char *Txt_Location = "Lokacja"; #elif L==9 // pt "Localização"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Locations = @@ -18730,6 +20410,8 @@ const char *Txt_Locations = "Lokalizacje"; #elif L==9 // pt "Localizações"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_LOCKED_UNLOCKED[Prj_NUM_LOCKED_UNLOCKED] = @@ -18753,6 +20435,8 @@ const char *Txt_LOCKED_UNLOCKED[Prj_NUM_LOCKED_UNLOCKED] = "Zamknięta edycja" #elif L==9 // pt "Edição bloqueada" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_UNLOCKED] = @@ -18774,6 +20458,8 @@ const char *Txt_LOCKED_UNLOCKED[Prj_NUM_LOCKED_UNLOCKED] = "Dozwolone wydanie" #elif L==9 // pt "Edição permitida" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -18796,6 +20482,8 @@ const char *Txt_Lock_editing = "Zablokuj edycję"; #elif L==9 // pt "Bloquear edição"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_LOG_More_info = @@ -18817,6 +20505,8 @@ const char *Txt_LOG_More_info = "Wiecej informacji"; #elif L==9 // pt "Mais informação"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Log_in = @@ -18838,6 +20528,8 @@ const char *Txt_Log_in = "Zaloguj się"; #elif L==9 // pt "Entrar"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Log_out = @@ -18859,6 +20551,8 @@ const char *Txt_Log_out = "Wyloguj się"; #elif L==9 // pt "Fechar sessão"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_logged[Usr_NUM_SEXS] = @@ -18882,6 +20576,8 @@ const char *Txt_logged[Usr_NUM_SEXS] = "zalogowany" #elif L==9 // pt "logado/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Usr_SEX_FEMALE] = @@ -18903,6 +20599,8 @@ const char *Txt_logged[Usr_NUM_SEXS] = "zalogowana" #elif L==9 // pt "logada" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Usr_SEX_MALE] = @@ -18924,6 +20622,8 @@ const char *Txt_logged[Usr_NUM_SEXS] = "zalogowany" #elif L==9 // pt "logado" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Usr_SEX_ALL] = @@ -18945,6 +20645,8 @@ const char *Txt_logged[Usr_NUM_SEXS] = "zalogowani" #elif L==9 // pt "logado/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -18967,6 +20669,8 @@ const char *Txt_Logo = "Logo"; #elif L==9 // pt "Logotipo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Longitude = @@ -18988,6 +20692,8 @@ const char *Txt_Longitude = "Długość geograficzna"; #elif L==9 // pt "Longitude"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_MAC_address = @@ -19009,6 +20715,8 @@ const char *Txt_MAC_address = "Adres MAC"; #elif L==9 // pt "Endereço MAC"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Mandatory_enrolment = // (to a type of group) @@ -19030,6 +20738,8 @@ const char *Txt_Mandatory_enrolment = // (to a type of group) "Obowiazkowa rejestracja?"; #elif L==9 // pt "Inscrição obrigatória?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Map = @@ -19051,6 +20761,8 @@ const char *Txt_Map = "Mapa"; #elif L==9 // pt "Mapa"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Mark_all_NOTIFICATIONS_as_read = @@ -19072,6 +20784,8 @@ const char *Txt_Mark_all_NOTIFICATIONS_as_read = "Oznacz wszystko jako czytasz"; #elif L==9 // pt "Marcar todas como lidas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_TIMELINE_Mark_as_favourite = @@ -19093,6 +20807,8 @@ const char *Txt_TIMELINE_Mark_as_favourite = "Oznacz jako ulubiony"; #elif L==9 // pt "Marcar como favorito"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Marks_management_area = @@ -19114,6 +20830,8 @@ const char *Txt_Marks_management_area = "Obszar zarzadzania znaków"; #elif L==9 // pt "Zona de gestão de notas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_marks_management_area = @@ -19135,6 +20853,8 @@ const char *Txt_marks_management_area = "obszar zarzadzania znaków"; #elif L==9 // pt "zona de gestão de notas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Marks_area = @@ -19156,6 +20876,8 @@ const char *Txt_Marks_area = "Powierzchnia znaków"; #elif L==9 // pt "Zona de notas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Match = // of a game @@ -19177,6 +20899,8 @@ const char *Txt_Match = // of a game "Mecz"; #elif L==9 // pt "Jogo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_MATCH_End = @@ -19198,6 +20922,8 @@ const char *Txt_MATCH_End = "Koniec"; #elif L==9 // pt "Fim"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_MATCH_Paused = @@ -19219,6 +20945,8 @@ const char *Txt_MATCH_Paused = "Wstrzymany"; #elif L==9 // pt "Pausado"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_MATCH_QUESTION_Answered = @@ -19240,6 +20968,8 @@ const char *Txt_MATCH_QUESTION_Answered = "Odpowiedziano"; #elif L==9 // pt "Respondida"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_MATCH_QUESTION_Unanswered = @@ -19261,6 +20991,8 @@ const char *Txt_MATCH_QUESTION_Unanswered = "Nie odpowiedziano"; #elif L==9 // pt "Não respondida"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_MATCH_Start = @@ -19282,6 +21014,8 @@ const char *Txt_MATCH_Start = "Początek"; #elif L==9 // pt "Início"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Match_X_removed = // Warning: it is very important to include %s in the following sentences @@ -19303,6 +21037,8 @@ const char *Txt_Match_X_removed = // Warning: it is very important to include %s "Mecz %s usunięte."; #elif L==9 // pt "Jogo %s removido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_MATCH_respond = @@ -19324,6 +21060,8 @@ const char *Txt_MATCH_respond = "odpowiadają"; #elif L==9 // pt "respondem"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Matches = // of a game @@ -19345,6 +21083,8 @@ const char *Txt_Matches = // of a game "Mecze"; #elif L==9 // pt "Partidas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Materials = @@ -19366,6 +21106,8 @@ const char *Txt_Materials = "Materialy"; #elif L==9 // pt "Materiais"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Max_levels = @@ -19387,6 +21129,8 @@ const char *Txt_Max_levels = "Max. poziomów"; #elif L==9 // pt "Máx. níveis"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Max_BR_students = @@ -19408,6 +21152,8 @@ const char *Txt_Max_BR_students = "Max.
stud."; #elif L==9 // pt "Máx.
estu."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_maximum = @@ -19429,6 +21175,8 @@ const char *Txt_maximum = "maksimum"; #elif L==9 // pt "máximo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Maximum_grade = @@ -19450,6 +21198,8 @@ const char *Txt_Maximum_grade = "Maksymalna ocena"; #elif L==9 // pt "Nota máxima"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Members = // Project members @@ -19471,6 +21221,8 @@ const char *Txt_Members = // Project members "Członkowie"; #elif L==9 // pt "Membros"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Menu = @@ -19492,6 +21244,8 @@ const char *Txt_Menu = "Menu"; #elif L==9 // pt "Menu"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_MENU_NAMES[Mnu_NUM_MENUS] = @@ -19515,6 +21269,8 @@ const char *Txt_MENU_NAMES[Mnu_NUM_MENUS] = "Poziomy" #elif L==9 // pt "Horizontal" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Mnu_MENU_VERTICAL] = @@ -19536,6 +21292,8 @@ const char *Txt_MENU_NAMES[Mnu_NUM_MENUS] = "Pionowy" #elif L==9 // pt "Vertical" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -19578,6 +21336,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Zaloguj Się" #elif L==9 // pt "Entrar" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 1: ActReqSch @@ -19599,6 +21359,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Szukaj" #elif L==9 // pt "Procurar" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 2: ActSeeTmlGbl @@ -19620,6 +21382,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Timeline" #elif L==9 // pt "Timeline" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 3: ActSeeSocPrf @@ -19641,6 +21405,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Profile" #elif L==9 // pt "Perfiles" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 4: ActSeeCal @@ -19662,6 +21428,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Kalendarz" #elif L==9 // pt "Calendário" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 5: ActSeeNtf @@ -19683,6 +21451,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Powiadomienia" #elif L==9 // pt "Notificações" +#elif L==10 // tr + "" // Çeviri lazim! #endif , NULL, // 6 @@ -19714,6 +21484,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Informacja" #elif L==9 // pt "Informação" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 1: ActSeeCty @@ -19735,6 +21507,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Kraje" #elif L==9 // pt "Países" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 2: ActSeePen @@ -19756,6 +21530,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Oczekujący" #elif L==9 // pt "Pendentes" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 3: ActSeeLnk @@ -19777,6 +21553,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Linki" #elif L==9 // pt "Ligações" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 4: ActLstPlg @@ -19798,6 +21576,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Pluginów" #elif L==9 // pt "Plugins" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 5: ActMtn @@ -19819,6 +21599,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Utrzymanie" #elif L==9 // pt "Manutenção" +#elif L==10 // tr + "" // Çeviri lazim! #endif , NULL, // 6 @@ -19850,6 +21632,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Informacja" #elif L==9 // pt "Informação" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 1: ActSeeIns @@ -19871,6 +21655,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Instytucje" #elif L==9 // pt "Instituções" +#elif L==10 // tr + "" // Çeviri lazim! #endif , NULL, // 2 @@ -19906,6 +21692,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Informacja" #elif L==9 // pt "Informação" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 1: ActSeeCtr @@ -19927,6 +21715,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Centra" #elif L==9 // pt "Centros" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 2: ActSeePlc @@ -19948,6 +21738,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Miejsca" #elif L==9 // pt "Localizaçoes" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 3: ActSeeDpt @@ -19969,6 +21761,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Wydziały" #elif L==9 // pt "Departamentos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 4: ActSeeHld @@ -19990,6 +21784,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Noclegi" #elif L==9 // pt "Férias" +#elif L==10 // tr + "" // Çeviri lazim! #endif , NULL, // 5 @@ -20022,6 +21818,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Informacja" #elif L==9 // pt "Informação" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 1: ActSeeDeg @@ -20043,6 +21841,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Stopnie" #elif L==9 // pt "Graus" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 2: ActSeeBld @@ -20064,6 +21864,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Budynki" #elif L==9 // pt "Edifícios" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 3: ActSeeRoo @@ -20085,6 +21887,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Sale" #elif L==9 // pt "Salas" +#elif L==10 // tr + "" // Çeviri lazim! #endif , NULL, // 4 @@ -20118,6 +21922,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Informacja" #elif L==9 // pt "Informação" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 1: ActSeeCrs @@ -20139,6 +21945,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Kursów" #elif L==9 // pt "Disciplinas" +#elif L==10 // tr + "" // Çeviri lazim! #endif , NULL, // 2 @@ -20174,6 +21982,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Informacja" #elif L==9 // pt "Informação" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 1: ActSeePrg @@ -20195,6 +22005,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Program" #elif L==9 // pt "Programa" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 2: ActSeeTchGui @@ -20216,6 +22028,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Podręcznik" #elif L==9 // pt "Guia" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 3: ActSeeSyl @@ -20237,6 +22051,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Sylabus" #elif L==9 // pt "Conteúdo" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 4: ActSeeBib @@ -20258,6 +22074,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Bibliografia" #elif L==9 // pt "Bibliografia" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 5: ActSeeFAQ @@ -20279,6 +22097,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "FAQ" #elif L==9 // pt "FAQ" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 6: ActSeeCrsLnk @@ -20300,6 +22120,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Linki" #elif L==9 // pt "Ligações" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 7: ActSeeCrsTT @@ -20321,6 +22143,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Plan" #elif L==9 // pt "Horário" +#elif L==10 // tr + "" // Çeviri lazim! #endif , NULL, // 8 @@ -20350,6 +22174,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "System" #elif L==9 // pt "Sistema" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 1: ActSeeAsg @@ -20371,6 +22197,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Zadania" #elif L==9 // pt "Atividades" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 2: ActSeePrj @@ -20392,6 +22220,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Projekty" #elif L==9 // pt "Projetos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 3: ActSeeAllExaAnn @@ -20413,6 +22243,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Ogloszenia" #elif L==9 // pt "Chamadas" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 4: ActEdiTstQst @@ -20434,6 +22266,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Pytań" #elif L==9 // pt "Perguntas" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 5: ActReqTst @@ -20455,6 +22289,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Testów" #elif L==9 // pt "Testes" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 6: ActSeeAllExa @@ -20476,6 +22312,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Egzaminy" #elif L==9 // pt "Exames" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 7: ActSeeAllGam @@ -20497,6 +22335,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Gry" #elif L==9 // pt "Jogos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 8: ActSeeAllSvy @@ -20518,6 +22358,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Ankiety" #elif L==9 // pt "Inquéritos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , NULL, // 9 @@ -20546,6 +22388,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Dokumentów" #elif L==9 // pt "Documentos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 1: ActAdmShaIns @@ -20567,6 +22411,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Udostępnione" #elif L==9 // pt "Compartilhados" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 2: ActSeeAdmDocCtr @@ -20588,6 +22434,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Dokumentów" #elif L==9 // pt "Documentos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 3: ActAdmShaCtr @@ -20609,6 +22457,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Udostępnione" #elif L==9 // pt "Compartilhados" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 4: ActSeeAdmDocDeg @@ -20630,6 +22480,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Dokumentów" #elif L==9 // pt "Documentos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 5: ActAdmShaDeg @@ -20651,6 +22503,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Udostępnione" #elif L==9 // pt "Compartilhados" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 6: ActSeeAdmDocCrsGrp @@ -20672,6 +22526,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Dokumentów" #elif L==9 // pt "Documentos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 7: ActAdmTchCrsGrp @@ -20693,6 +22549,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Prywatne" #elif L==9 // pt "Privados" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 8: ActAdmShaCrsGrp @@ -20714,6 +22572,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Udostępnione" #elif L==9 // pt "Compartilhados" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 9: ActAdmAsgWrkUsr @@ -20735,6 +22595,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Zadanie" #elif L==9 // pt "Trabalhos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 10: ActReqAsgWrkCrs @@ -20756,6 +22618,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Zadanie" #elif L==9 // pt "Trabalhos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 11: ActSeeMrk @@ -20777,6 +22641,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Marks" #elif L==9 // pt "Notas" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 12: ActAdmBrf @@ -20798,6 +22664,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Teczka" #elif L==9 // pt "Pasta" +#elif L==10 // tr + "" // Çeviri lazim! #endif }, [TabUsr] = @@ -20821,6 +22689,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Grupy" #elif L==9 // pt "Grupos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 1: ActLstStd @@ -20842,6 +22712,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Studentów" #elif L==9 // pt "Estudantes" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 2: ActLstTch @@ -20863,6 +22735,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Nauczyciele" #elif L==9 // pt "Professores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 3: ActLstOth @@ -20884,6 +22758,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Inne" #elif L==9 // pt "Outros" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 4: ActSeeAtt @@ -20905,6 +22781,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Frekwencji" #elif L==9 // pt "Presença" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 5: ActReqSignUp @@ -20926,6 +22804,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Zapisać" #elif L==9 // pt "Inscrever" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 6: ActSeeSignUpReq @@ -20947,6 +22827,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Upraszanie" #elif L==9 // pt "Solicitações" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 7: ActLstCon @@ -20968,6 +22850,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Online" #elif L==9 // pt "Conectados" +#elif L==10 // tr + "" // Çeviri lazim! #endif , NULL, // 8 @@ -20997,6 +22881,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Ogłoszenia" #elif L==9 // pt "Anúncios" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 1: ActSeeAllNot @@ -21018,6 +22904,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Ogloszenia" #elif L==9 // pt "Avisos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 2: ActSeeFor @@ -21039,6 +22927,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Forum" #elif L==9 // pt "Fóruns" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 3: ActSeeChtRms @@ -21060,6 +22950,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Chat" #elif L==9 // pt "Chat" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 4: ActMsgUsr @@ -21081,6 +22973,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Wiadomości" #elif L==9 // pt "Mensagens" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 5: ActReqMaiUsr @@ -21102,6 +22996,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Email" #elif L==9 // pt "Email" +#elif L==10 // tr + "" // Çeviri lazim! #endif , NULL, // 6 @@ -21133,6 +23029,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Cyfry" #elif L==9 // pt "Números" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 1: ActSeePhoDeg @@ -21154,6 +23052,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Stopnie" #elif L==9 // pt "Graus" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 2: ActReqStaCrs @@ -21175,6 +23075,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Wskaźniki" #elif L==9 // pt "Indicadores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 3: ActReqAccGbl @@ -21196,6 +23098,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Logowanie" #elif L==9 // pt "Visitas" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 4: ActReqMyUsgRep @@ -21217,6 +23121,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Raport" #elif L==9 // pt "Relatório" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 5: ActMFUAct @@ -21238,6 +23144,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Częste" #elif L==9 // pt "Freqüentes" +#elif L==10 // tr + "" // Çeviri lazim! #endif , NULL, // 6 @@ -21269,6 +23177,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Sesja" #elif L==9 // pt "Sessão" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 1: ActMyCrs @@ -21290,6 +23200,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Kursów" #elif L==9 // pt "Disciplinas" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 2: ActSeeMyTT @@ -21311,6 +23223,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Plan" #elif L==9 // pt "Horário" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 3: ActSeeMyAgd @@ -21332,6 +23246,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Pamiętnik" #elif L==9 // pt "Agenda" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 4: ActFrmMyAcc @@ -21353,6 +23269,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Konto" #elif L==9 // pt "Conta" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 5: ActReqEdiRecSha @@ -21374,6 +23292,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Karta" #elif L==9 // pt "Cartão" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 6: ActReqEdiSet @@ -21395,6 +23315,8 @@ const char *Txt_MENU_TITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Ustawienia" #elif L==9 // pt "Configuração" +#elif L==10 // tr + "" // Çeviri lazim! #endif , NULL, // 7 @@ -21445,6 +23367,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Rola w tej sesji" #elif L==9 // pt "Papel nesta sessão" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 1: ActReqSch @@ -21466,6 +23390,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Szukaj przedmiotów, nauczycieli i dokumenty" #elif L==9 // pt "Procurar disciplinas, professores e documentos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 2: ActSeeTmlGbl @@ -21487,6 +23413,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Timeline użytkowników śledzę lub wszystkich użytkowników" #elif L==9 // pt "Timeline dos usuários que eu sigo ou de todos os usuários" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 3: ActSeeSocPrf @@ -21508,6 +23436,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Profile publiczne" #elif L==9 // pt "Perfis públicos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 4: ActSeeCal @@ -21529,6 +23459,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Kalendarz akademicki" #elif L==9 // pt "Calendário" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 5: ActSeeNtf @@ -21550,6 +23482,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Ostatnie wydarzenia, które zostaly lub zostana powiadomieni" #elif L==9 // pt "Os recentes acontecimentos que foram ou serão notificados" +#elif L==10 // tr + "" // Çeviri lazim! #endif , NULL, // 6 @@ -21581,6 +23515,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Informacja na temat tej platformy" #elif L==9 // pt "Informação sobre esta plataforma" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 1: ActSeeCty @@ -21602,6 +23538,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Kraje" #elif L==9 // pt "Países" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 2: ActSeePen @@ -21623,6 +23561,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Instytucje, centra, stopnie i kursõw oczekujący" #elif L==9 // pt "Instituções, centros, graus e disciplinas pendentes" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 3: ActSeeLnk @@ -21644,6 +23584,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Instytucjonalne linki" #elif L==9 // pt "Ligações institucionais" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 4: ActLstPlg @@ -21665,6 +23607,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Lista pluginów" #elif L==9 // pt "Lista de plugins" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 5: ActMtn @@ -21686,6 +23630,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Konfiguracja i utrzymanie platformy" #elif L==9 // pt "Instalação e manutenção da plataforma" +#elif L==10 // tr + "" // Çeviri lazim! #endif , NULL, // 6 @@ -21717,6 +23663,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Informacja na ten kraj" #elif L==9 // pt "Informação deste país" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 1: ActSeeIns @@ -21738,6 +23686,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Instytucje" #elif L==9 // pt "Instituções" +#elif L==10 // tr + "" // Çeviri lazim! #endif , NULL, // 2 @@ -21773,6 +23723,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Informacja na ten instytucja" #elif L==9 // pt "Informação desta institução" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 1: ActSeeCtr @@ -21794,6 +23746,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Centra" #elif L==9 // pt "Centros" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 2: ActSeePlc @@ -21824,6 +23778,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = #elif L==9 // pt "Localizaçoes ou sede da instituição" " onde cada um dos centros está localizado." +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 3: ActSeeDpt @@ -21845,6 +23801,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Wydziały" #elif L==9 // pt "Departamentos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 4: ActSeeHld @@ -21866,6 +23824,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Noclegi" #elif L==9 // pt "Férias" +#elif L==10 // tr + "" // Çeviri lazim! #endif , NULL, // 5 @@ -21898,6 +23858,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Informacja na ten centrum" #elif L==9 // pt "Informação deste centro" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 1: ActSeeDeg @@ -21919,6 +23881,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Stopnie" #elif L==9 // pt "Graus" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 2: ActSeeBld @@ -21940,6 +23904,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Budynki centrum edukacyjnego" #elif L==9 // pt "Edifícios do centro educacional" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 3: ActSeeRoo @@ -21961,6 +23927,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Klasy, laboratoria lub inne miejsca, w których odbywają się zajęcia" #elif L==9 // pt "Salas de aula, laboratórios ou outros locais" +#elif L==10 // tr + "" // Çeviri lazim! #endif , NULL, // 4 @@ -21994,6 +23962,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Informacja na ten stopień" #elif L==9 // pt "Informação sobre este grau" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 1: ActSeeCrs @@ -22015,6 +23985,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Kursów w tym stopień" #elif L==9 // pt "Disciplinas deste grau" +#elif L==10 // tr + "" // Çeviri lazim! #endif , NULL, // 2 @@ -22050,6 +24022,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Informacja na ten kurs" #elif L==9 // pt "Informação desta disciplina" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 1: ActSeePrg @@ -22071,6 +24045,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Programowanie dydaktyczne przedmiotu" #elif L==9 // pt "Programação didática da disciplina" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 2: ActSeeTchGui @@ -22092,6 +24068,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Nauczanie przypomnienie" #elif L==9 // pt "Guia de ensino" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 3: ActSeeSyl @@ -22113,6 +24091,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Sylabus" #elif L==9 // pt "Conteúdo" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 4: ActSeeBib @@ -22134,6 +24114,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Bibliografia" // Potrzebujesz tlumaczenie #elif L==9 // pt "Bibliografia" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 5: ActSeeFAQ @@ -22155,6 +24137,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "FAQ (Frequently Asked Questions)" #elif L==9 // pt "FAQ" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 6: ActSeeCrsLnk @@ -22176,6 +24160,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Linki" #elif L==9 // pt "Ligações" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 7: ActSeeCrsTT @@ -22197,6 +24183,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Harmonogram klasy" #elif L==9 // pt "Horário" +#elif L==10 // tr + "" // Çeviri lazim! #endif , NULL, // 8 @@ -22229,6 +24217,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "System oceny" #elif L==9 // pt "Sistema de avaliação" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 1: ActSeeAsg @@ -22250,6 +24240,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Zadania" #elif L==9 // pt "Atividades" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 2: ActSeePrj @@ -22271,6 +24263,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Projekty (projekty końcowe, praca dyplomowa…)" #elif L==9 // pt "Projetos (projetos de fim de grau, tese…)" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 3: ActSeeAllExaAnn @@ -22292,6 +24286,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Ogloszenia egzaminów" #elif L==9 // pt "Chamadas para exames" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 4: ActEdiTstQst @@ -22313,6 +24309,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Zbiór pytań do testów, egzaminów i gier" #elif L==9 // pt "Banco de perguntas para testes, exames e jogos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 5: ActReqTst @@ -22334,6 +24332,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Testów" #elif L==9 // pt "Testes" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 6: ActSeeAllExa @@ -22355,6 +24355,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Egzaminy" #elif L==9 // pt "Exames" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 7: ActSeeAllGam @@ -22376,6 +24378,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Gry (pilot zdalnego sterowania)" #elif L==9 // pt "Jogos (controlo remoto)" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 8: ActSeeAllSvy @@ -22397,6 +24401,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Ankiety" #elif L==9 // pt "Inquéritos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , NULL, // 9 @@ -22425,6 +24431,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Obszar Dokumentów" #elif L==9 // pt "Documentos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 1: ActAdmShaIns @@ -22450,6 +24458,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Pliki udostępnione" #elif L==9 // pt "Arquivos compartilhados" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 2: ActSeeAdmDocCtr @@ -22471,6 +24481,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Obszar Dokumentów" #elif L==9 // pt "Documentos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 3: ActAdmShaCtr @@ -22496,6 +24508,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Pliki udostępnione" #elif L==9 // pt "Arquivos compartilhados" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 4: ActSeeAdmDocDeg @@ -22517,6 +24531,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Obszar Dokumentów" #elif L==9 // pt "Documentos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 5: ActAdmShaDeg @@ -22542,6 +24558,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Pliki udostępnione" #elif L==9 // pt "Arquivos compartilhados" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 6: ActSeeAdmDocCrsGrp @@ -22563,6 +24581,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Obszar Dokumentów" #elif L==9 // pt "Documentos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 7: ActAdmTchCrsGrp @@ -22584,6 +24604,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Pliki prywatne, tylko dla nauczycieli przedmiotu" #elif L==9 // pt "Arquivos privados, apenas para os professores do curso" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 8: ActAdmShaCrsGrp @@ -22609,6 +24631,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Pliki udostępnione" #elif L==9 // pt "Arquivos compartilhados" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 9: ActAdmAsgWrkUsr @@ -22630,6 +24654,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Moje zadanie domowe" #elif L==9 // pt "Os meus trabalhos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 10: ActReqAsgWrkCrs @@ -22651,6 +24677,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Uzytkowników domowych" #elif L==9 // pt "Trabalhos de utilizadores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 11: ActSeeMrk @@ -22681,6 +24709,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = #elif L==9 // pt "Consulta individualizada de notas" " (somente cada estudante vê suas notas)" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 12: ActAdmBrf @@ -22702,6 +24732,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Pendrive wirtualne" #elif L==9 // pt "Pasta" +#elif L==10 // tr + "" // Çeviri lazim! #endif }, [TabUsr] = @@ -22725,6 +24757,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Grupy" #elif L==9 // pt "Grupos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 1: ActLstStd @@ -22746,6 +24780,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Listy i rekordy studentów" #elif L==9 // pt "Lista e cartões estudantes" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 2: ActLstTch @@ -22767,6 +24803,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Lista i rekordy nauczycieli" #elif L==9 // pt "Lista e cartões professores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 3: ActLstOth @@ -22788,6 +24826,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Listy i rekordy innych użytkowników" #elif L==9 // pt "Lista e cartões de outros usuários" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 4: ActSeeAtt @@ -22813,6 +24853,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Kontrola frekwencji" #elif L==9 // pt "Lista de presença" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 5: ActReqSignUp @@ -22834,6 +24876,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Wniosku rejestrację" #elif L==9 // pt "Solicitar inscrição" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 6: ActSeeSignUpReq @@ -22855,6 +24899,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Żądania rejestrowania" #elif L==9 // pt "Solicitações de inscrição" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 7: ActLstCon @@ -22876,6 +24922,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Online" #elif L==9 // pt "Conectados" +#elif L==10 // tr + "" // Çeviri lazim! #endif , NULL, // 8 @@ -22905,6 +24953,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Globalne ogłoszenia widoczne przy logowaniu" #elif L==9 // pt "Anúncios globais visíveis no início da sessão" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 1: ActSeeAllNot @@ -22929,6 +24979,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Ogloszenia" #elif L==9 // pt "Avisos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 2: ActSeeFor @@ -22953,6 +25005,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Forum" #elif L==9 // pt "Fóruns" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 3: ActSeeChtRms @@ -22974,6 +25028,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Chat" #elif L==9 // pt "Chat" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 4: ActMsgUsr @@ -22995,6 +25051,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Wiadomości" #elif L==9 // pt "Mensagens" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 5: ActReqMaiUsr @@ -23022,6 +25080,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Email" #elif L==9 // pt "Email" +#elif L==10 // tr + "" // Çeviri lazim! #endif , NULL, // 6 @@ -23056,6 +25116,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Korzystanie z SWAD" #elif L==9 // pt "Utilização de SWAD" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 1: ActSeePhoDeg @@ -23081,6 +25143,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = #elif L==9 // pt "Estatísticas do número de estudantes em cada grau" " representadas pela m´dia das fotos dos estudantes" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 2: ActReqStaCrs @@ -23102,6 +25166,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Wskaźniki kursów dla umowy programu" #elif L==9 // pt "Indicadores de disciplinas para o contrato programa" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 3: ActReqAccGbl @@ -23123,6 +25189,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Statystyki dostęp do platformy" #elif L==9 // pt "Estatísticas de acesso à plataforma" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 4: ActReqMyUsgRep @@ -23144,6 +25212,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Raport o moim korzystania z platformy" #elif L==9 // pt "Relatório sobre o meu uso da plataforma" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 5: ActMFUAct @@ -23165,6 +25235,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Bezpośredni dostęp do najczęstszych działań" #elif L==9 // pt "Acesso direto das minhas ações mais freqüentes" +#elif L==10 // tr + "" // Çeviri lazim! #endif , NULL, // 6 @@ -23196,6 +25268,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Rola w tej sesji" #elif L==9 // pt "Papel nesta sessão" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 1: ActMyCrs @@ -23217,6 +25291,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Kursy do którego należę" #elif L==9 // pt "Disciplinas a que pertenço" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 2: ActSeeMyTT @@ -23238,6 +25314,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Mój plan lekcji" #elif L==9 // pt "Horário minha disciplinas" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 3: ActSeeMyAgd @@ -23259,6 +25337,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Pamiętnik" #elif L==9 // pt "Agenda" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 4: ActFrmMyAcc @@ -23280,6 +25360,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Utworzyć lub edytować konto użytkownika" #elif L==9 // pt "Criar ou editar minha conta de usuário" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 5: ActReqEdiRecSha @@ -23301,6 +25383,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Karta" #elif L==9 // pt "Cartão" +#elif L==10 // tr + "" // Çeviri lazim! #endif , // 6: ActReqEdiSet @@ -23322,6 +25406,8 @@ const char *Txt_MENU_SUBTITLE[Tab_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = "Moje ustawienia (język, kolory, powiadomienia…)" #elif L==9 // pt "Minhas configurações (idioma, cores, notificações…)" +#elif L==10 // tr + "" // Çeviri lazim! #endif , NULL, // 7 @@ -23352,6 +25438,8 @@ const char *Txt_message = "wiadomosc"; #elif L==9 // pt "mensagem"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Message_deleted = @@ -23373,6 +25461,8 @@ const char *Txt_Message_deleted = "Wiadomość usunieta."; #elif L==9 // pt "Mensagem removida."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_message_not_sent_to_X = // Warning: it is very important to include %s in the following sentences @@ -23394,6 +25484,8 @@ const char *Txt_message_not_sent_to_X = // Warning: it is very important to incl "Wiadomość nie zostala wyslana do %s."; #elif L==9 // pt "Mensagem não enviada para %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_message_sent_to_X_not_notified_by_email = // Warning: it is very important to include %s in the following sentences @@ -23415,6 +25507,8 @@ const char *Txt_message_sent_to_X_not_notified_by_email = // Warning: it is very "Wiadomość wyslana do %s (nie zgloszonych przez email)."; #elif L==9 // pt "Mensagem enviada para %s (não notificada por email)."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_message_sent_to_X_notified_by_email = // Warning: it is very important to include %s in the following sentences @@ -23436,6 +25530,8 @@ const char *Txt_message_sent_to_X_notified_by_email = // Warning: it is very imp "Wiadomość wyslana do %s (zgloszone przez email)."; #elif L==9 // pt "Mensagem enviada para %s (notificada por email)."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Messages = @@ -23457,6 +25553,8 @@ const char *Txt_Messages = "Wiadomości"; #elif L==9 // pt "Mensagens"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_messages = @@ -23478,6 +25576,8 @@ const char *Txt_messages = "wiadomości"; #elif L==9 // pt "mensagens"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_X_messages_have_been_deleted = // Warning: it is very important to include %u in the following sentences @@ -23499,6 +25599,8 @@ const char *Txt_X_messages_have_been_deleted = // Warning: it is very important "wiadomosci% u zostaly usuniete."; #elif L==9 // pt "%u mensagens foram removidas."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Messages_of_THE_USER_X_have_been_deleted = // Warning: it is very important to include %s in the following sentences @@ -23520,6 +25622,8 @@ const char *Txt_Messages_of_THE_USER_X_have_been_deleted = // Warning: it is ver "Wiadomości od %s zostaly usuniete."; #elif L==9 // pt "Mensagens de %s foram removidas."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_message_received = @@ -23541,6 +25645,8 @@ const char *Txt_message_received = "odebranej wiadomości"; #elif L==9 // pt "mensagem recebida"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_messages_received = @@ -23562,6 +25668,8 @@ const char *Txt_messages_received = "wiadomości odebrane"; #elif L==9 // pt "mensagens recebidas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Messages_received_from_A_COURSE = @@ -23583,6 +25691,8 @@ const char *Txt_Messages_received_from_A_COURSE = "Wiadomości odebrane"; #elif L==9 // pt "Mensagens recebidas de"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_message_sent = @@ -23604,6 +25714,8 @@ const char *Txt_message_sent = "wiadomość wysłana"; #elif L==9 // pt "mensagem enviada"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_messages_sent = @@ -23625,6 +25737,8 @@ const char *Txt_messages_sent = "wiadomości wysylane"; #elif L==9 // pt "mensagens enviadas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Messages_sent = @@ -23646,6 +25760,8 @@ const char *Txt_Messages_sent = "Wiadomości wysylane"; #elif L==9 // pt "Mensagens enviadas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Messages_sent_by_teachers = @@ -23667,6 +25783,8 @@ const char *Txt_Messages_sent_by_teachers = "Wiadomości wysylane przez nauczycieli"; #elif L==9 // pt "Mensagens enviadas por professores"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Messages_sent_from_A_COURSE = @@ -23688,6 +25806,8 @@ const char *Txt_Messages_sent_from_A_COURSE = "Wiadomości wyslane z"; #elif L==9 // pt "Mensagens enviadas de"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_minimum = @@ -23709,6 +25829,8 @@ const char *Txt_minimum = "minimum"; #elif L==9 // pt "mínimo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Minimum_time_seconds_per_question_between_two_tests = @@ -23730,6 +25852,8 @@ const char *Txt_Minimum_time_seconds_per_question_between_two_tests = "Minimalny czas (w sekundach)
na pytanie miedzy
dwoma badaniami"; #elif L==9 // pt "Tempo mínimo (segundos)
por pergunta
entre dois testes"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_minute = @@ -23751,6 +25875,8 @@ const char *Txt_minute = "minutę"; #elif L==9 // pt "minuto"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_minutes = @@ -23772,6 +25898,8 @@ const char *Txt_minutes = "minuty"; #elif L==9 // pt "minutos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Modify_me_in_the_course_X = // Warning: it is very important to include %s in the following sentences @@ -23793,6 +25921,8 @@ const char *Txt_Modify_me_in_the_course_X = // Warning: it is very important to "Modyfikacja mnie w kurs %s"; #elif L==9 // pt "Modificar me na disciplina %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Modify_user_in_the_course_X = // Warning: it is very important to include %s in the following sentences @@ -23814,6 +25944,8 @@ const char *Txt_Modify_user_in_the_course_X = // Warning: it is very important t "Modyfikacja użytkownika w kurs %s"; #elif L==9 // pt "Modificar utilizador na disciplina %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Month = @@ -23835,6 +25967,8 @@ const char *Txt_Month = "Miesiąc"; #elif L==9 // pt "Mês"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_month = @@ -23856,6 +25990,8 @@ const char *Txt_month = "miesiąc"; #elif L==9 // pt "mês"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_months = @@ -23877,6 +26013,8 @@ const char *Txt_months = "miesiące"; #elif L==9 // pt "meses"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_MONTHS_SMALL[12] = @@ -23899,6 +26037,8 @@ const char *Txt_MONTHS_SMALL[12] = "Stycznia" #elif L==9 // pt "janeiro" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -23919,6 +26059,8 @@ const char *Txt_MONTHS_SMALL[12] = "Lutego" #elif L==9 // pt "fevereiro" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -23939,6 +26081,8 @@ const char *Txt_MONTHS_SMALL[12] = "Marca" #elif L==9 // pt "março" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -23959,6 +26103,8 @@ const char *Txt_MONTHS_SMALL[12] = "Kwietnia" #elif L==9 // pt "abril" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -23979,6 +26125,8 @@ const char *Txt_MONTHS_SMALL[12] = "Maja" #elif L==9 // pt "maio" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -23999,6 +26147,8 @@ const char *Txt_MONTHS_SMALL[12] = "Czerwca" #elif L==9 // pt "junho" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -24019,6 +26169,8 @@ const char *Txt_MONTHS_SMALL[12] = "Lipca" #elif L==9 // pt "julho" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -24039,6 +26191,8 @@ const char *Txt_MONTHS_SMALL[12] = "Sierpnia" #elif L==9 // pt "agosto" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -24059,6 +26213,8 @@ const char *Txt_MONTHS_SMALL[12] = "Września" #elif L==9 // pt "setembro" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -24079,6 +26235,8 @@ const char *Txt_MONTHS_SMALL[12] = "Października" #elif L==9 // pt "outubro" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -24099,6 +26257,8 @@ const char *Txt_MONTHS_SMALL[12] = "Listopada" #elif L==9 // pt "novembro" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -24119,6 +26279,8 @@ const char *Txt_MONTHS_SMALL[12] = "Grudnia" #elif L==9 // pt "dezembro" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -24142,6 +26304,8 @@ const char *Txt_MONTHS_SMALL_SHORT[12] = "Sty" #elif L==9 // pt "jan" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -24162,6 +26326,8 @@ const char *Txt_MONTHS_SMALL_SHORT[12] = "Lut" #elif L==9 // pt "fev" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -24182,6 +26348,8 @@ const char *Txt_MONTHS_SMALL_SHORT[12] = "Mar" #elif L==9 // pt "mar" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -24202,6 +26370,8 @@ const char *Txt_MONTHS_SMALL_SHORT[12] = "Kwi" #elif L==9 // pt "abr" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -24222,6 +26392,8 @@ const char *Txt_MONTHS_SMALL_SHORT[12] = "Maj" #elif L==9 // pt "mai" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -24242,6 +26414,8 @@ const char *Txt_MONTHS_SMALL_SHORT[12] = "Cze" #elif L==9 // pt "jun" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -24262,6 +26436,8 @@ const char *Txt_MONTHS_SMALL_SHORT[12] = "Lip" #elif L==9 // pt "jul" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -24282,6 +26458,8 @@ const char *Txt_MONTHS_SMALL_SHORT[12] = "Sie" #elif L==9 // pt "ago" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -24302,6 +26480,8 @@ const char *Txt_MONTHS_SMALL_SHORT[12] = "Wrz" #elif L==9 // pt "set" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -24322,6 +26502,8 @@ const char *Txt_MONTHS_SMALL_SHORT[12] = "Paź" #elif L==9 // pt "out" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -24342,6 +26524,8 @@ const char *Txt_MONTHS_SMALL_SHORT[12] = "Lis" #elif L==9 // pt "nov" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -24362,6 +26546,8 @@ const char *Txt_MONTHS_SMALL_SHORT[12] = "Gru" #elif L==9 // pt "dez" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -24384,6 +26570,8 @@ const char *Txt_Move_up_X = // Warning: it is very important to include %s in th "Przesun w góre %s"; #elif L==9 // pt "Mover %s para cima"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Move_up_X_and_its_subsections = // Warning: it is very important to include %s in the following sentences @@ -24405,6 +26593,8 @@ const char *Txt_Move_up_X_and_its_subsections = // Warning: it is very important "Przenies sie %s, a jego podrozdzialy"; #elif L==9 // pt "Mover %s e suas subseções para cima"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Move_down_X = // Warning: it is very important to include %s in the following sentences @@ -24426,6 +26616,8 @@ const char *Txt_Move_down_X = // Warning: it is very important to include %s in "Opuszczac %s"; #elif L==9 // pt "Mover %s para baixo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Move_down_X_and_its_subsections = // Warning: it is very important to include %s in the following sentences @@ -24447,6 +26639,8 @@ const char *Txt_Move_down_X_and_its_subsections = // Warning: it is very importa "Przesun w dól %s, a jego podrozdzialy"; #elif L==9 // pt "Mover %s e suas subseções para baixo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Movement_not_allowed = @@ -24468,6 +26662,8 @@ const char *Txt_Movement_not_allowed = "Ruch nie jest dozwolone"; #elif L==9 // pt "Movimento não permitido"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_MSG_Content = // of a post or message @@ -24489,6 +26685,8 @@ const char *Txt_MSG_Content = // of a post or message "Treść"; #elif L==9 // pt "Conteúdo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_MSG_Deleted_without_opening = @@ -24510,6 +26708,8 @@ const char *Txt_MSG_Deleted_without_opening = "Usuniete bez otwierania"; #elif L==9 // pt "Suprimida sem abrir"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_MSG_From = @@ -24531,6 +26731,8 @@ const char *Txt_MSG_From = "z"; #elif L==9 // pt "De"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_MSG_from = @@ -24552,6 +26754,8 @@ const char *Txt_MSG_from = "z"; #elif L==9 // pt "de"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_MSG_New = @@ -24573,6 +26777,8 @@ const char *Txt_MSG_New = "nowe"; #elif L==9 // pt "Nova"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_MSG_Not_replied = @@ -24594,6 +26800,8 @@ const char *Txt_MSG_Not_replied = "Nie odpowiedzial"; #elif L==9 // pt "Não respondida"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_MSG_Open = @@ -24615,6 +26823,8 @@ const char *Txt_MSG_Open = "otwarte"; #elif L==9 // pt "Aberta"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_MSG_Open_and_deleted = @@ -24636,6 +26846,8 @@ const char *Txt_MSG_Open_and_deleted = "Open i usuniete"; #elif L==9 // pt "Aberta e suprimida"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_MSG_Replied = @@ -24657,6 +26869,8 @@ const char *Txt_MSG_Replied = "Odpowiedziano"; #elif L==9 // pt "Respondida"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_MSG_Sent = @@ -24678,6 +26892,8 @@ const char *Txt_MSG_Sent = "Wyslane"; #elif L==9 // pt "Enviada"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_MSG_Sent_and_deleted = @@ -24699,6 +26915,8 @@ const char *Txt_MSG_Sent_and_deleted = "Wyslane i usuniete"; #elif L==9 // pt "Enviada e suprimida"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_MSG_Subject = @@ -24720,6 +26938,8 @@ const char *Txt_MSG_Subject = "Z zastrzezeniem"; #elif L==9 // pt "Assunto"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_MSG_To = @@ -24741,6 +26961,8 @@ const char *Txt_MSG_To = "Aby"; #elif L==9 // pt "Para"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_MSG_Unopened = @@ -24762,6 +26984,8 @@ const char *Txt_MSG_Unopened = "Otwarte"; #elif L==9 // pt "Fechada"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_MSGS_Deleted = @@ -24783,6 +27007,8 @@ const char *Txt_MSGS_Deleted = "Usuniete"; #elif L==9 // pt "Suprimidas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_MSGS_Not_deleted = @@ -24804,6 +27030,8 @@ const char *Txt_MSGS_Not_deleted = "Nie usuniete"; #elif L==9 // pt "Não suprimidas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_MSGS_Received = @@ -24825,6 +27053,8 @@ const char *Txt_MSGS_Received = "Odebrane"; #elif L==9 // pt "Recebidas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_MSGS_Sent = @@ -24846,6 +27076,8 @@ const char *Txt_MSGS_Sent = "Wyslane"; #elif L==9 // pt "Enviadas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_MSGS_Write = @@ -24867,6 +27099,8 @@ const char *Txt_MSGS_Write = "Napisz"; #elif L==9 // pt "Escrever"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Multimedia = @@ -24888,6 +27122,8 @@ const char *Txt_Multimedia = "Multimedia"; #elif L==9 // pt "Multimédia"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Multiple_enrolment = // (to a type of group) @@ -24909,6 +27145,8 @@ const char *Txt_Multiple_enrolment = // (to a type of group) "Rejestracja wielu elementów?"; #elif L==9 // pt "Inscrição múltiplas?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_My_agenda = @@ -24930,6 +27168,8 @@ const char *Txt_My_agenda = "Moja pamiętnik"; #elif L==9 // pt "Minha agenda"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_My_courses = @@ -24951,6 +27191,8 @@ const char *Txt_My_courses = "Moje kursów"; #elif L==9 // pt "As minha disciplinas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_my_documents = @@ -24972,6 +27214,8 @@ const char *Txt_my_documents = "moje dokumenty"; #elif L==9 // pt "meus documentos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_My_frequent_actions = @@ -24993,6 +27237,8 @@ const char *Txt_My_frequent_actions = "Moi częste działania"; #elif L==9 // pt "Minhas ações freqüentes"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_My_groups = @@ -25014,6 +27260,8 @@ const char *Txt_My_groups = "Moje grupy"; #elif L==9 // pt "Meus grupos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_My_public_profile = @@ -25035,6 +27283,8 @@ const char *Txt_My_public_profile = "Mój profil publiczny"; #elif L==9 // pt "Meu perfil público"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_My_views = @@ -25056,6 +27306,8 @@ const char *Txt_My_views = "Moje odsłon"; #elif L==9 // pt "Meus acessos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Name = @@ -25077,6 +27329,8 @@ const char *Txt_Name = "Nazwa"; #elif L==9 // pt "Nome"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_assignment = @@ -25098,6 +27352,8 @@ const char *Txt_New_assignment = "Nowe zadania"; #elif L==9 // pt "Nova atividade"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_announcement = @@ -25119,6 +27375,8 @@ const char *Txt_New_announcement = "Nowe ogłoszenia"; #elif L==9 // pt "Novo anúncio"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_call_FOR_EXAM = @@ -25140,6 +27398,8 @@ const char *Txt_New_call_FOR_EXAM = "Nowe ogloszenie"; #elif L==9 // pt "Nova chamada"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_banner = @@ -25161,6 +27421,8 @@ const char *Txt_New_banner = "Nowy banner"; #elif L==9 // pt "Novo banner"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_building = @@ -25182,6 +27444,8 @@ const char *Txt_New_building = "Nowe budynek"; #elif L==9 // pt "Novo edifício"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_center = @@ -25203,6 +27467,8 @@ const char *Txt_New_center = "Nowe centrum (wydział, szkoła, uczelnia, podział, budowa...)"; #elif L==9 // pt "Novo centro (faculdade, escola, faculdade, divisão, construção...)"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_country = @@ -25224,6 +27490,8 @@ const char *Txt_New_country = "Nowy kraj"; #elif L==9 // pt "Novo país"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_course = @@ -25245,6 +27513,8 @@ const char *Txt_New_course = "Nowy kurs"; #elif L==9 // pt "Nova disciplina (disciplina, curso...)"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_degree = @@ -25266,6 +27536,8 @@ const char *Txt_New_degree = "Nowy stopień (zawodowe, stopień, dyplom, magisterskie, podyplomowe, magisterskie, cykl, poziom...)"; #elif L==9 // pt "Novo grau (carreira, diploma, grau, pós-grau, mestrado, ciclo, nível...)"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_department = @@ -25287,6 +27559,8 @@ const char *Txt_New_department = "Nowy dział"; #elif L==9 // pt "Novo departamento"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_email = @@ -25308,6 +27582,8 @@ const char *Txt_New_email = "Nowy email"; #elif L==9 // pt "Novo email"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_email_domain = @@ -25329,6 +27605,8 @@ const char *Txt_New_email_domain = "Nowe domeny mail"; #elif L==9 // pt "Novo domínio de email"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_event = @@ -25350,6 +27628,8 @@ const char *Txt_New_event = "Nowe wydarzenie"; #elif L==9 // pt "Novo evento"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_exam = @@ -25371,6 +27651,8 @@ const char *Txt_New_exam = "Nowe egzamin"; #elif L==9 // pt "Novo exame"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_FILE_OR_FOLDER = @@ -25392,6 +27674,8 @@ const char *Txt_New_FILE_OR_FOLDER = "Nowe"; #elif L==9 // pt "Novo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_game = @@ -25413,6 +27697,8 @@ const char *Txt_New_game = "Nowa gra"; #elif L==9 // pt "Novo jogo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_group = @@ -25434,6 +27720,8 @@ const char *Txt_New_group = "Nowa grupa"; #elif L==9 // pt "Novo grupo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_holiday = @@ -25455,6 +27743,8 @@ const char *Txt_New_holiday = "Nowe swieto"; #elif L==9 // pt "Nova féria"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_institution = @@ -25476,6 +27766,8 @@ const char *Txt_New_institution = "Nowa instytucja (uniwersytet, uczelnia, szkoła, akademia, organizacja, firma...)"; #elif L==9 // pt "Nova institução (universidade, faculdade, escola, academia, organização, empresa...)"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_item = @@ -25497,6 +27789,8 @@ const char *Txt_New_item = "Nowa pozycja"; #elif L==9 // pt "Novo item"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_link = @@ -25518,6 +27812,8 @@ const char *Txt_New_link = "Nowy link"; #elif L==9 // pt "Nova ligação"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_match = // of a game @@ -25539,6 +27835,8 @@ const char *Txt_New_match = // of a game "Nowy mecz"; #elif L==9 // pt "Novo jogo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_message = @@ -25560,6 +27858,8 @@ const char *Txt_New_message = "Nowa wiadomosc"; #elif L==9 // pt "Nova mensagem"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_nickname = @@ -25581,6 +27881,8 @@ const char *Txt_New_nickname = "Nowy nick"; #elif L==9 // pt "Nova alcunha"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_notice = @@ -25602,6 +27904,8 @@ const char *Txt_New_notice = "Nowe obwieszczenie"; #elif L==9 // pt "Novo aviso"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_on_PLATFORM_Sign_up = // Warning: it is very important to include %s in the following sentences @@ -25623,6 +27927,8 @@ const char *Txt_New_on_PLATFORM_Sign_up = // Warning: it is very important to in "Pierwszy raz na %s? Zarejestruj się"; #elif L==9 // pt "Novo no %s? Inscreva-se"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_password = @@ -25644,6 +27950,8 @@ const char *Txt_New_password = "Nowe hasło"; #elif L==9 // pt "Nova senha"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_place = @@ -25665,6 +27973,8 @@ const char *Txt_New_place = "Nowe miejsce"; #elif L==9 // pt "Nova localização"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_plugin = @@ -25686,6 +27996,8 @@ const char *Txt_New_plugin = "Nowy plugin"; #elif L==9 // pt "Novo plugin"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_post = @@ -25707,6 +28019,8 @@ const char *Txt_New_post = "Nowy post"; #elif L==9 // pt "Novo post"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_project = @@ -25728,6 +28042,8 @@ const char *Txt_New_project = "Nowy projekt"; #elif L==9 // pt "Novo projeto"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_question = @@ -25749,6 +28065,8 @@ const char *Txt_New_question = "Nowe pytanie"; #elif L==9 // pt "Nova pergunta"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_record_field = @@ -25770,6 +28088,8 @@ const char *Txt_New_record_field = "Nowy rekord pola"; #elif L==9 // pt "Novo campo de cartão"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_room = @@ -25791,6 +28111,8 @@ const char *Txt_New_room = "Nowe klasa"; #elif L==9 // pt "Nova sala"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_session = @@ -25812,6 +28134,8 @@ const char *Txt_New_session = "Nowy sesji"; #elif L==9 // pt "Nova sessão"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_set_of_questions = @@ -25833,6 +28157,8 @@ const char *Txt_New_set_of_questions = "Nowy zestaw pytań"; #elif L==9 // pt "Novo conjunto de perguntas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_TIMELINE_comment = @@ -25854,6 +28180,8 @@ const char *Txt_New_TIMELINE_comment = "Nowy komentarz"; #elif L==9 // pt "Novo comentário"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_TIMELINE_post = @@ -25875,6 +28203,8 @@ const char *Txt_New_TIMELINE_post = "Nowy post"; #elif L==9 // pt "Novo post"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_survey = @@ -25896,6 +28226,8 @@ const char *Txt_New_survey = "Nowe badania"; #elif L==9 // pt "Novo inquérito"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_new_tag = // Tag used in test @@ -25917,6 +28249,8 @@ const char *Txt_new_tag = // Tag used in test "nowy tag"; #elif L==9 // pt "novo descritor"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_thread = @@ -25938,6 +28272,8 @@ const char *Txt_New_thread = "Nowy temat"; #elif L==9 // pt "Nova discussão"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_type_of_degree = @@ -25959,6 +28295,8 @@ const char *Txt_New_type_of_degree = "Nowy rodzaj stopnia"; #elif L==9 // pt "Novo tipo de grau"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_New_type_of_group = @@ -25980,6 +28318,8 @@ const char *Txt_New_type_of_group = "Nowy typ grupy"; #elif L==9 // pt "Novo tipo de grupo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_NEW_YEAR_GREETING = // Warning: it is very important to include %u in the following sentences @@ -26001,6 +28341,8 @@ const char *Txt_NEW_YEAR_GREETING = // Warning: it is very important to include "Happy %u!"; #elif L==9 // pt "Feliz %u!"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_nick_email_or_ID = @@ -26022,6 +28364,8 @@ const char *Txt_nick_email_or_ID = "@pseudonim, email lub ID"; #elif L==9 // pt "@alcunha, email ou nº identif."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_nicks_emails_or_IDs_separated_by_commas = @@ -26043,6 +28387,8 @@ const char *Txt_nicks_emails_or_IDs_separated_by_commas = "@nicks, emails or IDs separated by commas"; // Potrzebujesz tlumaczenie #elif L==9 // pt "@alcunhas, emails ou nºs. identif. separados por vírgulas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Nickname = @@ -26064,6 +28410,8 @@ const char *Txt_Nickname = "Pseudonim"; #elif L==9 // pt "Alcunha"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Nickname_X_removed = // Warning: it is very important to include %s in the following sentences @@ -26085,6 +28433,8 @@ const char *Txt_Nickname_X_removed = // Warning: it is very important to include "Pseudonim @%s usuniete."; #elif L==9 // pt "Alcunha @%s removido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_NO = @@ -26106,6 +28456,8 @@ const char *Txt_NO = "NO"; #elif L==9 // pt "NÃO"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No = @@ -26127,6 +28479,8 @@ const char *Txt_No = "No"; #elif L==9 // pt "Não"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_announcements = @@ -26148,6 +28502,8 @@ const char *Txt_No_announcements = "Brak ogłoszenia"; #elif L==9 // pt "Não há anúncios"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_assigned_building = @@ -26169,6 +28525,8 @@ const char *Txt_No_assigned_building = "Brak przydzielonej budynek lekcyjnej"; #elif L==9 // pt "Nenhum edifício atribuído"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_assigned_room = @@ -26190,6 +28548,8 @@ const char *Txt_No_assigned_room = "Brak przydzielonej sali lekcyjnej"; #elif L==9 // pt "Nenhuma sala atribuída"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_assignments = @@ -26211,6 +28571,8 @@ const char *Txt_No_assignments = "Brak zadania."; #elif L==9 // pt "Não há atividades."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_banners = @@ -26232,6 +28594,8 @@ const char *Txt_No_banners = "Brak banners."; #elif L==9 // pt "Não há banners."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_calls_for_exams_of_X = // Warning: it is very important to include %s in the following sentences @@ -26253,6 +28617,8 @@ const char *Txt_No_calls_for_exams_of_X = // Warning: it is very important to in "Brak ogloszen egzaminów %s."; #elif L==9 // pt "Não chamadas para exame de %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_no_course_of_origin = // Means: "message sent from any course" @@ -26274,6 +28640,8 @@ const char *Txt_no_course_of_origin = // Means: "message sent from any course" "kurs nie pochodzenia"; #elif L==9 // pt "nenhuma disciplina de origem"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_no_course_selected = @@ -26295,6 +28663,8 @@ const char *Txt_no_course_selected = "kurs nie jest wybrany"; #elif L==9 // pt "nenhuma disciplina seleccionada"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_centers = @@ -26316,6 +28686,8 @@ const char *Txt_No_centers = "Brak centra."; #elif L==9 // pt "Não há centros."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_courses = @@ -26337,6 +28709,8 @@ const char *Txt_No_courses = "Brak kursów."; #elif L==9 // pt "Não há disciplinas."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_degrees = @@ -26358,6 +28732,8 @@ const char *Txt_No_degrees = "Brak stopni."; #elif L==9 // pt "Não há graus."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_enrolment_requests = @@ -26379,6 +28755,8 @@ const char *Txt_No_enrolment_requests = "Brak próśb o rejestrację."; #elif L==9 // pt "Não há solicitações de inscrição."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_events = @@ -26400,6 +28778,8 @@ const char *Txt_No_events = "Brak wydarzen."; #elif L==9 // pt "Não há eventos."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_exams = @@ -26421,6 +28801,8 @@ const char *Txt_No_exams = "Brak egzaminów."; #elif L==9 // pt "Não há exames."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_file_index_html_found_within_the_ZIP_file = @@ -26451,6 +28833,8 @@ const char *Txt_No_file_index_html_found_within_the_ZIP_file = #elif L==9 // pt "Um arquivo index.htm/index.html não foi encontrado" " dentro do arquivo ZIP."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_games = @@ -26472,6 +28856,8 @@ const char *Txt_No_games = "Brak gry."; #elif L==9 // pt "Não há jogos."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_groups_have_been_created_in_the_course_X = // Warning: it is very important to include %s in the following sentences @@ -26493,6 +28879,8 @@ const char *Txt_No_groups_have_been_created_in_the_course_X = // Warning: it is "Nr grupy zostaly utworzone w ramach %s."; #elif L==9 // pt "Nenhum grupo foi criado na disciplina %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_groups_have_been_created_in_the_course_X_Therefore_ = // Warning: it is very important to include %s in the following sentences @@ -26532,6 +28920,8 @@ const char *Txt_No_groups_have_been_created_in_the_course_X_Therefore_ = // Warn "Nenhum grupo foi criado na disciplina %s." " Portanto, os usuários especificados" " serão inscritos/removidos da disciplina."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_holidays = @@ -26553,6 +28943,8 @@ const char *Txt_No_holidays = "Żadnych świąt."; #elif L==9 // pt "Não há feriados."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_image_video = // Without any image @@ -26574,6 +28966,8 @@ const char *Txt_No_image_video = // Without any image "Brak obrazka / wideo"; #elif L==9 // pt "Sem imagem / vídeo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_INDEX = // Short version of "Number" (as an index)... @@ -26595,6 +28989,8 @@ const char *Txt_No_INDEX = // Short version of "Number" (as an index)... "Numer"; #elif L==9 // pt "N.º"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_information = @@ -26616,6 +29012,8 @@ const char *Txt_No_information = "Brak informacji."; #elif L==9 // pt "Não há informação."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_institutions = @@ -26637,6 +29035,8 @@ const char *Txt_No_institutions = "Brak instytucje."; #elif L==9 // pt "Não há instituções."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_links = @@ -26658,6 +29058,8 @@ const char *Txt_No_links = "Brak linki."; #elif L==9 // pt "Não há ligações."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_new_posts = @@ -26679,6 +29081,8 @@ const char *Txt_No_new_posts = "Brak nowych postów"; #elif L==9 // pt "Sem posts novos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_notices = @@ -26700,6 +29104,8 @@ const char *Txt_No_notices = "Brak ogloszen."; #elif L==9 // pt "Não há avisos."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_projects = @@ -26721,6 +29127,8 @@ const char *Txt_No_projects = "Brak projekty."; #elif L==9 // pt "Não há projetos."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_questions_found_matching_your_search_criteria = @@ -26742,6 +29150,8 @@ const char *Txt_No_questions_found_matching_your_search_criteria = "Brak pytań spelniajacych zadane kryteria wyszukiwania."; #elif L==9 // pt "Não perguntas com os seus critérios de pesquisa selecionados."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_questions_have_been_added = @@ -26763,6 +29173,8 @@ const char *Txt_No_questions_have_been_added = "Nie dodano żadnych pytań."; #elif L==9 // pt "Nenhuma pergunta foi adicionada."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_results = @@ -26784,6 +29196,8 @@ const char *Txt_No_results = "Brak wyników."; #elif L==9 // pt "Nenhum resultado."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_no_subject = @@ -26805,6 +29219,8 @@ const char *Txt_no_subject = "bez tematu"; #elif L==9 // pt "sem assunto"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_surveys = @@ -26826,6 +29242,8 @@ const char *Txt_No_surveys = "Brak badania."; #elif L==9 // pt "Não há inquéritos."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_no_tags = // Tags used in test @@ -26847,6 +29265,8 @@ const char *Txt_no_tags = // Tags used in test "zadnych tagów"; #elif L==9 // pt "sem descritores"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_teachers_or_students_found = @@ -26868,6 +29288,8 @@ const char *Txt_No_teachers_or_students_found = "Nie znaleziono nauczycieli i uczniów."; #elif L==9 // pt "Nenhum professor ou estudante encontrado."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_test_questions = @@ -26889,6 +29311,8 @@ const char *Txt_No_test_questions = "Brak pytań testowych."; #elif L==9 // pt "Não existem perguntas de test."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_types_of_degree = @@ -26910,6 +29334,8 @@ const char *Txt_No_types_of_degree = "Nie ma rodzajów stopni."; #elif L==9 // pt "Não há tipos de grau."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_user_has_been_eliminated = @@ -26931,6 +29357,8 @@ const char *Txt_No_user_has_been_eliminated = "Zaden uzytkownik nie zostal wyeliminowany."; #elif L==9 // pt "Nenhum usuário foi removido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_user_has_been_enroled = @@ -26952,6 +29380,8 @@ const char *Txt_No_user_has_been_enroled = "Zaden uzytkownik nie zostal zarejestrowany."; #elif L==9 // pt "Nenhum usuário se registrou."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_user_has_been_removed = @@ -26973,6 +29403,8 @@ const char *Txt_No_user_has_been_removed = "Zaden uzytkownik nie zostal usuniety."; #elif L==9 // pt "Nenhum usuário foi removido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_user_to_whom_you_can_follow_Try_again_later = @@ -27003,6 +29435,8 @@ const char *Txt_No_user_to_whom_you_can_follow_Try_again_later = #elif L==9 // pt "Nenhum usuário a quem você pode seguir." " Tente novamente mais tarde."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_No_users_found[Rol_NUM_ROLES] = @@ -27026,6 +29460,8 @@ const char *Txt_No_users_found[Rol_NUM_ROLES] = "Nie znaleziono uzytkowników." #elif L==9 // pt "Nenhum utilizador encontrado." +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_GST] = @@ -27047,6 +29483,8 @@ const char *Txt_No_users_found[Rol_NUM_ROLES] = "Nie znaleziono zaproszeni." #elif L==9 // pt "Nenhum convidado encontrado." +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_USR] = @@ -27068,6 +29506,8 @@ const char *Txt_No_users_found[Rol_NUM_ROLES] = "Nie znaleziono uzytkowników." #elif L==9 // pt "Nenhum utilizador encontrado." +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_STD] = @@ -27089,6 +29529,8 @@ const char *Txt_No_users_found[Rol_NUM_ROLES] = "Nie znaleziono uczniów." #elif L==9 // pt "Nenhum estudante encontrado." +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_NET] = @@ -27110,6 +29552,8 @@ const char *Txt_No_users_found[Rol_NUM_ROLES] = "Nie znaleziono nauczycieli nie edytujący." #elif L==9 // pt "Nenhum professor não editor encontrado." +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_TCH] = @@ -27131,6 +29575,8 @@ const char *Txt_No_users_found[Rol_NUM_ROLES] = "Nie znaleziono nauczycieli." #elif L==9 // pt "Nenhum professor encontrado." +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_DEG_ADM] = @@ -27152,6 +29598,8 @@ const char *Txt_No_users_found[Rol_NUM_ROLES] = "Nie znaleziono administratorów." #elif L==9 // pt "Nenhum administrador encontrado." +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_CTR_ADM] = @@ -27173,6 +29621,8 @@ const char *Txt_No_users_found[Rol_NUM_ROLES] = "Nie znaleziono administratorów." #elif L==9 // pt "Nenhum administrador encontrado." +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_INS_ADM] = @@ -27194,6 +29644,8 @@ const char *Txt_No_users_found[Rol_NUM_ROLES] = "Nie znaleziono administratorów." #elif L==9 // pt "Nenhum administrador encontrado." +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_SYS_ADM] = @@ -27215,6 +29667,8 @@ const char *Txt_No_users_found[Rol_NUM_ROLES] = "Nie znaleziono superużytkownika." #elif L==9 // pt "Nenhum superutilizador encontrado." +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -27237,6 +29691,8 @@ const char *Txt_nobody_else_can_access_this_content = "nikt inny nie moze uzyskac dostepu do tej zawartosci"; #elif L==9 // pt "ninguém mais pode acessar este conteúdo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Not_applicable = @@ -27258,6 +29714,8 @@ const char *Txt_Not_applicable = "Nie dotyczy"; #elif L==9 // pt "Não aplicável"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_not_available = @@ -27279,6 +29737,8 @@ const char *Txt_not_available = "niedostępne"; #elif L==9 // pt "não disponível"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Not_duplicated = @@ -27300,6 +29760,8 @@ const char *Txt_Not_duplicated = "Nie powielać"; #elif L==9 // pt "Não duplicado"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Not_visible = @@ -27321,6 +29783,8 @@ const char *Txt_Not_visible = "Niewidoczne"; #elif L==9 // pt "Não visível"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Nothing_has_been_pasted_because_the_clipboard_is_empty_ = @@ -27351,6 +29815,8 @@ const char *Txt_Nothing_has_been_pasted_because_the_clipboard_is_empty_ = #elif L==9 // pt "Nada foi colado porque a área de transferência está vazia." " Tente copiar e colar novamente."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_NOTICE_Active_BR_notices = @@ -27372,6 +29838,8 @@ const char *Txt_NOTICE_Active_BR_notices = "Active
Ogloszenia"; #elif L==9 // pt "Avisos
ativos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_NOTICE_Deleted_BR_notices = @@ -27393,6 +29861,8 @@ const char *Txt_NOTICE_Deleted_BR_notices = "Usuniete
notices"; #elif L==9 // pt "Avisos
suprimidos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_NOTICE_Obsolete_BR_notices = @@ -27414,6 +29884,8 @@ const char *Txt_NOTICE_Obsolete_BR_notices = "Przestarzaly
Ogloszenia"; #elif L==9 // pt "Avisos
obsoletos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Notice = @@ -27435,6 +29907,8 @@ const char *Txt_Notice = "Informacja"; #elif L==9 // pt "Aviso"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Notice_created = @@ -27456,6 +29930,8 @@ const char *Txt_Notice_created = "Zawiadomienie stworzony."; #elif L==9 // pt "Aviso criado."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Notice_removed = @@ -27477,6 +29953,8 @@ const char *Txt_Notice_removed = "Informacja usuniete."; #elif L==9 // pt "Aviso removido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Notices = @@ -27498,6 +29976,8 @@ const char *Txt_Notices = "Ogloszenia"; #elif L==9 // pt "Avisos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_NOTIF_new_SINGULAR = @@ -27519,6 +29999,8 @@ const char *Txt_NOTIF_new_SINGULAR = "nowy"; #elif L==9 // pt "nova"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_NOTIF_new_PLURAL = @@ -27540,6 +30022,8 @@ const char *Txt_NOTIF_new_PLURAL = "nowy"; #elif L==9 // pt "novas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_NOTIFICATION_STATUS[Ntf_NUM_STATUS_TXT] = @@ -27563,6 +30047,8 @@ const char *Txt_NOTIFICATION_STATUS[Ntf_NUM_STATUS_TXT] = "No" #elif L==9 // pt "Não" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_STATUS_EMAIL_PENDING] = @@ -27584,6 +30070,8 @@ const char *Txt_NOTIFICATION_STATUS[Ntf_NUM_STATUS_TXT] = "Do czasu" #elif L==9 // pt "Pendente" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_STATUS_EMAIL_CANCELLED] = @@ -27605,6 +30093,8 @@ const char *Txt_NOTIFICATION_STATUS[Ntf_NUM_STATUS_TXT] = "Odwolany" #elif L==9 // pt "Cancelado" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_STATUS_EMAIL_SENT] = @@ -27626,6 +30116,8 @@ const char *Txt_NOTIFICATION_STATUS[Ntf_NUM_STATUS_TXT] = "Wyslane" #elif L==9 // pt "Enviada" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -27648,6 +30140,8 @@ const char *Txt_notification = "powiadomienie"; #elif L==9 // pt "notificação"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Notifications = @@ -27669,6 +30163,8 @@ const char *Txt_Notifications = "Powiadomienia"; #elif L==9 // pt "Notificações"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_notifications = @@ -27690,6 +30186,8 @@ const char *Txt_notifications = "powiadomienia"; #elif L==9 // pt "notificações"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_NOTIFY_EVENTS_PLURAL[Ntf_NUM_NOTIFY_EVENTS] = @@ -27713,6 +30211,8 @@ const char *Txt_NOTIFY_EVENTS_PLURAL[Ntf_NUM_NOTIFY_EVENTS] = "Brak wydarzen" #elif L==9 // pt "Eventos desconhecidos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_DOCUMENT_FILE] = @@ -27734,6 +30234,8 @@ const char *Txt_NOTIFY_EVENTS_PLURAL[Ntf_NUM_NOTIFY_EVENTS] = "Nowy plik dokumentu" #elif L==9 // pt "Novos arquivos de documento" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_TEACHERS_FILE] = @@ -27755,6 +30257,8 @@ const char *Txt_NOTIFY_EVENTS_PLURAL[Ntf_NUM_NOTIFY_EVENTS] = "Nowy Nauczyciela plik" #elif L==9 // pt "Novos arquivos dos professores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_SHARED_FILE] = @@ -27776,6 +30280,8 @@ const char *Txt_NOTIFY_EVENTS_PLURAL[Ntf_NUM_NOTIFY_EVENTS] = "Nowy Udostępniony plik" #elif L==9 // pt "Novos arquivos compartilhado" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_ASSIGNMENT] = @@ -27797,6 +30303,8 @@ const char *Txt_NOTIFY_EVENTS_PLURAL[Ntf_NUM_NOTIFY_EVENTS] = "Nowe zadania" #elif L==9 // pt "Novas atividades" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_CALL_FOR_EXAM] = @@ -27818,6 +30326,8 @@ const char *Txt_NOTIFY_EVENTS_PLURAL[Ntf_NUM_NOTIFY_EVENTS] = "Nowe anonse egzamin" #elif L==9 // pt "Novas chamadas para exame" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_MARKS_FILE] = @@ -27839,6 +30349,8 @@ const char *Txt_NOTIFY_EVENTS_PLURAL[Ntf_NUM_NOTIFY_EVENTS] = "Nowe pliki ze znakami" #elif L==9 // pt "Novos arquivos de notas" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_ENROLMENT_STD] = @@ -27860,6 +30372,8 @@ const char *Txt_NOTIFY_EVENTS_PLURAL[Ntf_NUM_NOTIFY_EVENTS] = "Nowe zapisy jako student" #elif L==9 // pt "Novas inscrições como estudante" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_ENROLMENT_TCH] = @@ -27881,6 +30395,8 @@ const char *Txt_NOTIFY_EVENTS_PLURAL[Ntf_NUM_NOTIFY_EVENTS] = "Nowe zapisy jako nauczyciel" #elif L==9 // pt "Novas inscrições como professor" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_ENROLMENT_REQUEST] = @@ -27902,6 +30418,8 @@ const char *Txt_NOTIFY_EVENTS_PLURAL[Ntf_NUM_NOTIFY_EVENTS] = "Nowe prośby o rejestracji" #elif L==9 // pt "Novos pedidos de inscrição" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_TML_COMMENT] = @@ -27923,6 +30441,8 @@ const char *Txt_NOTIFY_EVENTS_PLURAL[Ntf_NUM_NOTIFY_EVENTS] = "Nowe komentarze do moich post społecznej" #elif L==9 // pt "Novos comentário às minhos posts sociais" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_TML_FAV] = @@ -27944,6 +30464,8 @@ const char *Txt_NOTIFY_EVENTS_PLURAL[Ntf_NUM_NOTIFY_EVENTS] = "Nowe ulubiony do moich post społecznej" #elif L==9 // pt "Novos favoritos às minhos posts sociais" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_TML_SHARE] = @@ -27965,6 +30487,8 @@ const char *Txt_NOTIFY_EVENTS_PLURAL[Ntf_NUM_NOTIFY_EVENTS] = "Nowe podzial moich post społecznej" #elif L==9 // pt "Novas partilhas de minhos posts sociais" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_TML_MENTION] = @@ -27986,6 +30510,8 @@ const char *Txt_NOTIFY_EVENTS_PLURAL[Ntf_NUM_NOTIFY_EVENTS] = "Nowe wzmianki" #elif L==9 // pt "Novas menções" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_FOLLOWER] = @@ -28007,6 +30533,8 @@ const char *Txt_NOTIFY_EVENTS_PLURAL[Ntf_NUM_NOTIFY_EVENTS] = "Nowe obserwują" #elif L==9 // pt "Novos seguidores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_FORUM_POST_COURSE] = @@ -28028,6 +30556,8 @@ const char *Txt_NOTIFY_EVENTS_PLURAL[Ntf_NUM_NOTIFY_EVENTS] = "Nowe postów na forum" #elif L==9 // pt "Novos posts em fóruns" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_FORUM_REPLY] = @@ -28049,6 +30579,8 @@ const char *Txt_NOTIFY_EVENTS_PLURAL[Ntf_NUM_NOTIFY_EVENTS] = "Nowe podejscie do moich postów na forum" #elif L==9 // pt "Novas respostas aos meus posts em fóruns" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_NOTICE] = @@ -28070,6 +30602,8 @@ const char *Txt_NOTIFY_EVENTS_PLURAL[Ntf_NUM_NOTIFY_EVENTS] = "Nowe ogloszenia" #elif L==9 // pt "Novos avisos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_MESSAGE] = @@ -28091,6 +30625,8 @@ const char *Txt_NOTIFY_EVENTS_PLURAL[Ntf_NUM_NOTIFY_EVENTS] = "Nowa wiadomosc" #elif L==9 // pt "Novas mensagens" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_SURVEY] = @@ -28112,6 +30648,8 @@ const char *Txt_NOTIFY_EVENTS_PLURAL[Ntf_NUM_NOTIFY_EVENTS] = "Nowe badania" #elif L==9 // pt "Novos inquéritos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_ENROLMENT_NET] = // TODO: Move to users tab (also necessary in database) !!!!!!!!! @@ -28133,6 +30671,8 @@ const char *Txt_NOTIFY_EVENTS_PLURAL[Ntf_NUM_NOTIFY_EVENTS] = "Nowe zapisy jako nauczyciel nie edytujący" #elif L==9 // pt "Novas inscrições como professor/a não editor/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -28157,6 +30697,8 @@ const char *Txt_NOTIFY_EVENTS_SINGULAR[Ntf_NUM_NOTIFY_EVENTS] = "Nieznane zdarzenia" #elif L==9 // pt "Evento desconhecido" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_DOCUMENT_FILE] = @@ -28178,6 +30720,8 @@ const char *Txt_NOTIFY_EVENTS_SINGULAR[Ntf_NUM_NOTIFY_EVENTS] = "Plik dokumentu" #elif L==9 // pt "Arquivo de documento" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_TEACHERS_FILE] = @@ -28199,6 +30743,8 @@ const char *Txt_NOTIFY_EVENTS_SINGULAR[Ntf_NUM_NOTIFY_EVENTS] = "Nauczyciela plik" #elif L==9 // pt "Arquivo dos professores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_SHARED_FILE] = @@ -28220,6 +30766,8 @@ const char *Txt_NOTIFY_EVENTS_SINGULAR[Ntf_NUM_NOTIFY_EVENTS] = "Udostępniony plik" #elif L==9 // pt "Arquivo compartilhado" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_ASSIGNMENT] = @@ -28241,6 +30789,8 @@ const char *Txt_NOTIFY_EVENTS_SINGULAR[Ntf_NUM_NOTIFY_EVENTS] = "Przyporzadkowanie" #elif L==9 // pt "Atividade" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_CALL_FOR_EXAM] = @@ -28262,6 +30812,8 @@ const char *Txt_NOTIFY_EVENTS_SINGULAR[Ntf_NUM_NOTIFY_EVENTS] = "Ogloszenie egzamin" #elif L==9 // pt "Chamada para exame" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_MARKS_FILE] = @@ -28283,6 +30835,8 @@ const char *Txt_NOTIFY_EVENTS_SINGULAR[Ntf_NUM_NOTIFY_EVENTS] = "Plik ze znakami" #elif L==9 // pt "Arquivo de notas" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_ENROLMENT_STD] = @@ -28304,6 +30858,8 @@ const char *Txt_NOTIFY_EVENTS_SINGULAR[Ntf_NUM_NOTIFY_EVENTS] = "Zapisy jako student" #elif L==9 // pt "Inscrição como estudante" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_ENROLMENT_TCH] = @@ -28325,6 +30881,8 @@ const char *Txt_NOTIFY_EVENTS_SINGULAR[Ntf_NUM_NOTIFY_EVENTS] = "Zapisy jako nauczyciel" #elif L==9 // pt "Inscrição como professor/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_ENROLMENT_REQUEST] = @@ -28346,6 +30904,8 @@ const char *Txt_NOTIFY_EVENTS_SINGULAR[Ntf_NUM_NOTIFY_EVENTS] = "Żądanie rejestracji" #elif L==9 // pt "Pedido de inscrição" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_TML_COMMENT] = @@ -28367,6 +30927,8 @@ const char *Txt_NOTIFY_EVENTS_SINGULAR[Ntf_NUM_NOTIFY_EVENTS] = "Komentarz do post społeczna" #elif L==9 // pt "Comentário a um post sociais" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_TML_FAV] = @@ -28388,6 +30950,8 @@ const char *Txt_NOTIFY_EVENTS_SINGULAR[Ntf_NUM_NOTIFY_EVENTS] = "Post społecznej oznaczone jako ulubiony" #elif L==9 // pt "Post sociais marcado como favorito" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_TML_SHARE] = @@ -28409,6 +30973,8 @@ const char *Txt_NOTIFY_EVENTS_SINGULAR[Ntf_NUM_NOTIFY_EVENTS] = "Post społecznej wspólne" #elif L==9 // pt "Post sociais compartido" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_TML_MENTION] = @@ -28430,6 +30996,8 @@ const char *Txt_NOTIFY_EVENTS_SINGULAR[Ntf_NUM_NOTIFY_EVENTS] = "Wzmianka" #elif L==9 // pt "Menção" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_FOLLOWER] = @@ -28451,6 +31019,8 @@ const char *Txt_NOTIFY_EVENTS_SINGULAR[Ntf_NUM_NOTIFY_EVENTS] = "Obserwują" #elif L==9 // pt "Seguidor" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_FORUM_POST_COURSE] = @@ -28472,6 +31042,8 @@ const char *Txt_NOTIFY_EVENTS_SINGULAR[Ntf_NUM_NOTIFY_EVENTS] = "Post na forum" #elif L==9 // pt "Post em um fórum" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_FORUM_REPLY] = @@ -28493,6 +31065,8 @@ const char *Txt_NOTIFY_EVENTS_SINGULAR[Ntf_NUM_NOTIFY_EVENTS] = "Odpowiedz na forum" #elif L==9 // pt "Resposta em um fórum" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_NOTICE] = @@ -28514,6 +31088,8 @@ const char *Txt_NOTIFY_EVENTS_SINGULAR[Ntf_NUM_NOTIFY_EVENTS] = "Informacja" #elif L==9 // pt "Anúncio" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_MESSAGE] = @@ -28535,6 +31111,8 @@ const char *Txt_NOTIFY_EVENTS_SINGULAR[Ntf_NUM_NOTIFY_EVENTS] = "Wiadomość" #elif L==9 // pt "Mensagem" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_SURVEY] = @@ -28556,6 +31134,8 @@ const char *Txt_NOTIFY_EVENTS_SINGULAR[Ntf_NUM_NOTIFY_EVENTS] = "Ankieta" #elif L==9 // pt "Inquérito" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Ntf_EVENT_ENROLMENT_NET] = // TODO: Move to users tab (also necessary in database) !!!!!!!!! @@ -28577,6 +31157,8 @@ const char *Txt_NOTIFY_EVENTS_SINGULAR[Ntf_NUM_NOTIFY_EVENTS] = "Zapisy jako nauczyciel nie edytujący" #elif L==9 // pt "Inscrição como professor/a não editor/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -28599,6 +31181,8 @@ const char *Txt_Notify_me_BR_by_email = "Informuj
mnie emailem"; #elif L==9 // pt "Notifique-me
por email"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Now_each_student_can_belong_to_multiple_groups_of_type_X = // Warning: it is very important to include %s in the following sentences @@ -28620,6 +31204,8 @@ const char *Txt_Now_each_student_can_belong_to_multiple_groups_of_type_X = // Wa "Teraz kazdy student moze nalezec do wielu grup typu %s."; #elif L==9 // pt "Agora cada aluno pode pertencer a vários grupos do tipo %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Now_each_student_can_only_belong_to_a_group_of_type_X = // Warning: it is very important to include %s in the following sentences @@ -28641,6 +31227,8 @@ const char *Txt_Now_each_student_can_only_belong_to_a_group_of_type_X = // Warni "Teraz kazdy student moze nalezec tylko do grupy typu %s."; #elif L==9 // pt "Agora cada aluno só pode pertencer a um grupo do tipo %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_files = @@ -28662,6 +31250,8 @@ const char *Txt_Number_of_files = "Liczba pliki"; #elif L==9 // pt "N.º de arquivos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_files_in_DOCUM_zones = @@ -28683,6 +31273,8 @@ const char *Txt_Number_of_files_in_DOCUM_zones = "Number of files in documents area"; // Potrzebujesz tlumaczenie #elif L==9 // pt "N.º de arquivos em zonas de documentos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_files_in_SHARE_zones = @@ -28704,6 +31296,8 @@ const char *Txt_Number_of_files_in_SHARE_zones = "Liczba pliki udostępnione"; #elif L==9 // pt "N.º de arquivos compartilhados"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_forums = @@ -28725,6 +31319,8 @@ const char *Txt_Number_of_forums = "Liczba forum"; #elif L==9 // pt "N.º de fóruns"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_BR_groups = @@ -28746,6 +31342,8 @@ const char *Txt_Number_of_BR_groups = "Liczba z
grupy"; #elif L==9 // pt "N.º de
grupos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_indicators = @@ -28767,6 +31365,8 @@ const char *Txt_Number_of_indicators = "Liczba z wskazniki"; #elif L==9 // pt "N.º de indocadores"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_BR_lines = @@ -28788,6 +31388,8 @@ const char *Txt_Number_of_BR_lines = "Liczba z
linie"; #elif L==9 // pt "N.º de
linhas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_BR_msgs = @@ -28809,6 +31411,8 @@ const char *Txt_Number_BR_msgs = "Numer
msgs."; #elif L==9 // pt "N.º
mens."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_posts = @@ -28830,6 +31434,8 @@ const char *Txt_Number_of_posts = "Liczba wiadomosci"; #elif L==9 // pt "N.º de posts"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_posts_BR_per_forum = @@ -28851,6 +31457,8 @@ const char *Txt_Number_of_posts_BR_per_forum = "Liczba wiadomosci
per forum"; #elif L==9 // pt "N.º de posts
por fórum"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_posts_BR_per_thread = @@ -28872,6 +31480,8 @@ const char *Txt_Number_of_posts_BR_per_thread = "Liczba wiadomosci
per watku"; #elif L==9 // pt "N.º de posts
por discussão"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_posts_BR_per_user = @@ -28893,6 +31503,8 @@ const char *Txt_Number_of_posts_BR_per_user = "Liczba wiadomosci
per użytkownik"; #elif L==9 // pt "N.º de posts
por utilizador"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_private_files = @@ -28914,6 +31526,8 @@ const char *Txt_Number_of_private_files = "Liczba prywatne pliki"; #elif L==9 // pt "N.º de arquivos privados"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_BR_program_items = @@ -28935,6 +31549,8 @@ const char *Txt_Number_of_BR_program_items = "Liczba
pozycji programu"; #elif L==9 // pt "N.º de
itens de programas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_public_files = @@ -28956,6 +31572,8 @@ const char *Txt_Number_of_public_files = "Liczba publicznych pliki"; #elif L==9 // pt "N.º de arquivos públicos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_questions = @@ -28977,6 +31595,8 @@ const char *Txt_Number_of_questions = "Liczba pytań"; #elif L==9 // pt "Número de perguntas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_questions_to_show = @@ -28998,6 +31618,8 @@ const char *Txt_Number_of_questions_to_show = "Liczba pytań do wyświetlenia"; #elif L==9 // pt "Número de perguntas a mostrar"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_BR_times_that_BR_questions_BR_have_been_BR_responded = @@ -29019,6 +31641,8 @@ const char *Txt_Number_of_BR_times_that_BR_questions_BR_have_been_BR_responded = "Ile razy
udzielono
odpowiedzi
na pytania"; #elif L==9 // pt "N.º de
vezes que
as perguntas
foram
respondidas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_threads = @@ -29040,6 +31664,8 @@ const char *Txt_Number_of_threads = "Liczba watków"; #elif L==9 // pt "N.º de discussões"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_threads_BR_per_forum = @@ -29061,6 +31687,8 @@ const char *Txt_Number_of_threads_BR_per_forum = "Liczba watków
per forum"; #elif L==9 // pt "N.º de discussões
por fórum"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_BR_assignments = @@ -29082,6 +31710,8 @@ const char *Txt_Number_of_BR_assignments = "Number of
assignments"; // Potrzebujesz tlumaczenie #elif L==9 // pt "N.º de
atividades"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_BR_courses_with_BR_assignments = @@ -29103,6 +31733,8 @@ const char *Txt_Number_of_BR_courses_with_BR_assignments = "Liczba
kursów z
zadania"; #elif L==9 // pt "N.º de
disciplinas
com atividades"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_BR_courses_with_BR_exams = @@ -29124,6 +31756,8 @@ const char *Txt_Number_of_BR_courses_with_BR_exams = "Liczba
kursów z
egzaminów"; #elif L==9 // pt "N.º de
disciplinas
com exames"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_BR_courses_with_BR_exportable_BR_test_BR_questions = @@ -29145,6 +31779,8 @@ const char *Txt_Number_of_BR_courses_with_BR_exportable_BR_test_BR_questions = "Liczba
kursów
z eksportowane
pytań
testowych"; #elif L==9 // pt "N.º de
disciplinas
com
perguntas
de test
exportáveis"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_BR_courses_with_BR_games = @@ -29166,6 +31802,8 @@ const char *Txt_Number_of_BR_courses_with_BR_games = "Liczba
kursów z
gry"; #elif L==9 // pt "N.º de
disciplinas
com jogos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_BR_courses_with_BR_program_items = @@ -29187,6 +31825,8 @@ const char *Txt_Number_of_BR_courses_with_BR_program_items = "Liczba
kursów z
pozycji programu"; #elif L==9 // pt "N.º de
disciplinas com
itens de programas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_BR_courses_with_BR_projects = @@ -29208,6 +31848,8 @@ const char *Txt_Number_of_BR_courses_with_BR_projects = "Liczba
kursów z
projekty"; #elif L==9 // pt "N.º de
disciplinas
com projetos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_BR_courses_BR_with_test_BR_questions = @@ -29229,6 +31871,8 @@ const char *Txt_Number_of_BR_courses_BR_with_test_BR_questions = "Liczba
kursów
z pytań
testowych"; #elif L==9 // pt "N.º de
disciplinas
com
perguntas
de test"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_BR_courses_with_BR_surveys = @@ -29250,6 +31894,8 @@ const char *Txt_Number_of_BR_courses_with_BR_surveys = "Liczba
kursów z
badania"; #elif L==9 // pt "N.º de
disciplinas
com inquéritos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_events = @@ -29271,6 +31917,8 @@ const char *Txt_Number_of_events = "Liczba of zdarzenia"; #elif L==9 // pt "Número de eventos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_events_per_user = @@ -29292,6 +31940,8 @@ const char *Txt_Number_of_events_per_user = "Liczba zdarzeń na użytkownika"; #elif L==9 // pt "Número de eventos por utilizador"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_emails = @@ -29313,6 +31963,8 @@ const char *Txt_Number_of_emails = "Liczba email"; #elif L==9 // pt "Número de emails"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_BR_exams = @@ -29334,6 +31986,8 @@ const char *Txt_Number_of_BR_exams = "Liczba
egzaminów"; #elif L==9 // pt "Número de
exames"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_BR_games = @@ -29355,6 +32009,8 @@ const char *Txt_Number_of_BR_games = "Liczba
gier"; #elif L==9 // pt "Número de
jogos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_BR_notifications = @@ -29376,6 +32032,8 @@ const char *Txt_Number_of_BR_notifications = "Liczba
zgloszen"; #elif L==9 // pt "Número de
notificações"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_BR_projects = @@ -29397,6 +32055,8 @@ const char *Txt_Number_of_BR_projects = "Liczba
projektów."; #elif L==9 // pt "Número de
projetos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_students = @@ -29418,6 +32078,8 @@ const char *Txt_Number_of_students = "Liczba studenci"; #elif L==9 // pt "N.º de estudantes"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_BR_surveys = @@ -29439,6 +32101,8 @@ const char *Txt_Number_of_BR_surveys = "Liczba
badania"; #elif L==9 // pt "N.º de
inquéritos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_BR_of_test_BR_questions = @@ -29460,6 +32124,8 @@ const char *Txt_Number_BR_of_test_BR_questions = "Liczba
pytań
testowych"; #elif L==9 // pt "N.º de
perguntas
de test"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Number_of_users = @@ -29481,6 +32147,8 @@ const char *Txt_Number_of_users = "Liczba uzytkowników"; #elif L==9 // pt "N.º de utilizadores"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Numeric_BR_code_BR_ISO_3166_1 = @@ -29502,6 +32170,8 @@ const char *Txt_Numeric_BR_code_BR_ISO_3166_1 = "Nnumerycznych
kod
ISO 3166-1"; #elif L==9 // pt "Cód.
numérico
ISO 3166-1"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_of_PART_OF_A_TOTAL = // Example: transferred 2 of 3 files @@ -29523,6 +32193,8 @@ const char *Txt_of_PART_OF_A_TOTAL = // Example: transferred 2 of 3 files "z"; #elif L==9 // pt "de"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Office = @@ -29544,6 +32216,8 @@ const char *Txt_Office = "Biuro"; #elif L==9 // pt "Gabinete"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_One_message_has_been_deleted = @@ -29565,6 +32239,8 @@ const char *Txt_One_message_has_been_deleted = "Jedna wiadomosc zostala usunieta."; #elif L==9 // pt "Uma mensagem foi removida."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_One_user_has_been_eliminated = @@ -29586,6 +32262,8 @@ const char *Txt_One_user_has_been_eliminated = "Jeden uzytkownik zostal usuniety."; #elif L==9 // pt "Um usuário foi removido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_One_user_has_been_enroled = @@ -29607,6 +32285,8 @@ const char *Txt_One_user_has_been_enroled = "Jeden uzytkownik zostal zarejestrowany."; #elif L==9 // pt "Um usuário se registrou."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_One_user_has_been_removed = @@ -29628,6 +32308,8 @@ const char *Txt_One_user_has_been_removed = "Jeden z uzytkowników zostaly usuniete."; #elif L==9 // pt "Um usuário foi removido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Online_tutoring = @@ -29649,6 +32331,8 @@ const char *Txt_Online_tutoring = "Korepetycje online"; #elif L==9 // pt "Tutoria on-line"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Only_courses_with_more_than_X_clicks_are_shown = // Warning: it is very important to include %u in the following sentences @@ -29670,6 +32354,8 @@ const char *Txt_Only_courses_with_more_than_X_clicks_are_shown = // Warning: it "Tylko kursy z ponad 100 kliknięć są pokazane."; #elif L==9 // pt "Somente disciplinas com mais de %u cliques são mostradas."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_only_if_the_scope_is_X = // Warning: it is very important to include %s in the following sentences @@ -29691,6 +32377,8 @@ const char *Txt_only_if_the_scope_is_X = // Warning: it is very important to inc "tylko wtedy, gdy zakres jest %s"; #elif L==9 // pt "somente se o âmbito é %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_only_students = @@ -29712,6 +32400,8 @@ const char *Txt_only_students = ", tylko studenci"; #elif L==9 // pt ", apenas estudantes"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_only_teachers = @@ -29733,6 +32423,8 @@ const char *Txt_only_teachers = ", nauczycieli"; #elif L==9 // pt ", professores"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_only_unread_messages = @@ -29754,6 +32446,8 @@ const char *Txt_only_unread_messages = "only unread messages"; // Potrzebujesz tlumaczenie #elif L==9 // pt "apenas mensagens não lidas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_open_document = @@ -29775,6 +32469,8 @@ const char *Txt_open_document = "otwarty dokument"; #elif L==9 // pt "documento aberto"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_open_documents = @@ -29796,6 +32492,8 @@ const char *Txt_open_documents = "otwarte dokumenty"; #elif L==9 // pt "documentos abertos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Open_survey = @@ -29817,6 +32515,8 @@ const char *Txt_Open_survey = "Otwarte badania"; #elif L==9 // pt "Inquérito aberta"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Opening_of_groups = @@ -29838,6 +32538,8 @@ const char *Txt_Opening_of_groups = "Otwarcie grup"; #elif L==9 // pt "Abertura de grupos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Option_under_development = @@ -29859,6 +32561,8 @@ const char *Txt_Option_under_development = "Opcja w fazie rozwoju."; #elif L==9 // pt "Opção em desenvolvimento."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_optional = @@ -29880,6 +32584,8 @@ const char *Txt_optional = "do wyboru"; #elif L==9 // pt "opcional"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_or_you_can_create_a_new_link_inside_the_folder_X = // Warning: it is very important to include %s in the following sentences @@ -29910,6 +32616,8 @@ const char *Txt_or_you_can_create_a_new_link_inside_the_folder_X = // Warning: i #elif L==9 // pt "…ou você pode criar uma nova ligação" " dentro do diretório %s:"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_or_you_can_make_a_file_copy_to_the_folder_X = // Warning: it is very important to include %s in the following sentences @@ -29940,6 +32648,8 @@ const char *Txt_or_you_can_make_a_file_copy_to_the_folder_X = // Warning: it is #elif L==9 // pt "…ou você pode fazer uma cópia de arquivo" " na diretório %s:"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_or_you_can_upload_a_new_file_to_the_folder_X = // Warning: it is very important to include %s in the following sentences @@ -29970,6 +32680,8 @@ const char *Txt_or_you_can_upload_a_new_file_to_the_folder_X = // Warning: it is #elif L==9 // pt "…ou você pode enviar um novo arquivo" " para o diretório %s:"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_or_you_can_upload_new_files_to_the_folder_X = // Warning: it is very important to include %s in the following sentences @@ -30000,6 +32712,8 @@ const char *Txt_or_you_can_upload_new_files_to_the_folder_X = // Warning: it is #elif L==9 // pt "…ou você pode enviar novos arquivos" " para o diretório %s:"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Original_message = @@ -30021,6 +32735,8 @@ const char *Txt_Original_message = "Oryginalna wiadomość"; #elif L==9 // pt "Mensagem original"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Other_actions = @@ -30042,6 +32758,8 @@ const char *Txt_Other_actions = "Inne działania"; #elif L==9 // pt "Outras ações"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Other_countries = @@ -30063,6 +32781,8 @@ const char *Txt_Other_countries = "Inne kraje"; #elif L==9 // pt "Outros países"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Other_departments = @@ -30084,6 +32804,8 @@ const char *Txt_Other_departments = "Inne wydzialy"; #elif L==9 // pt "Outros departamentos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Other_emails = @@ -30105,6 +32827,8 @@ const char *Txt_Other_emails = "Inne email"; #elif L==9 // pt "Outros emails"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Other_nicknames = @@ -30126,6 +32850,8 @@ const char *Txt_Other_nicknames = "Inne przydomki"; #elif L==9 // pt "Outras alcunhas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Other_places = @@ -30147,6 +32873,8 @@ const char *Txt_Other_places = "Inne miejsca"; #elif L==9 // pt "Outras localizaçoes"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Other_recipients = @@ -30168,6 +32896,8 @@ const char *Txt_Other_recipients = "Inne odbiorców"; #elif L==9 // pt "Outros destinatários"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_page = @@ -30189,6 +32919,8 @@ const char *Txt_page = "strona"; #elif L==9 // pt "pág."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Page_X_of_Y = // Warning: it is very important to include two %u in the following sentences @@ -30210,6 +32942,8 @@ const char *Txt_Page_X_of_Y = // Warning: it is very important to include two %u "Strona %u z %u"; #elif L==9 // pt "Página %u de %u"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_PAGE1_Page_generated_in = @@ -30231,6 +32965,8 @@ const char *Txt_PAGE1_Page_generated_in = "Strona wygenerowana w"; #elif L==9 // pt "Página gerada em"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_PAGE2_and_sent_in = @@ -30252,6 +32988,8 @@ const char *Txt_PAGE2_and_sent_in = "i wysylane w"; #elif L==9 // pt "e enviada em"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_PAGES_Previous = @@ -30273,6 +33011,8 @@ const char *Txt_PAGES_Previous = "Poprzedni"; #elif L==9 // pt "Anteriores"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_PAGES_Next = @@ -30294,6 +33034,8 @@ const char *Txt_PAGES_Next = "Nastepny"; #elif L==9 // pt "Seguintes"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Password = @@ -30315,6 +33057,8 @@ const char *Txt_Password = "Hasło"; #elif L==9 // pt "Senha"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_password = @@ -30336,6 +33080,8 @@ const char *Txt_password = "hasło"; #elif L==9 // pt "senha"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Paste = @@ -30357,6 +33103,8 @@ const char *Txt_Paste = "Wklej"; #elif L==9 // pt "Colar"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Pause = @@ -30378,6 +33126,8 @@ const char *Txt_Pause = "Wstrzymać"; #elif L==9 // pt "Pausar"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_PERCENT_of_users = @@ -30399,6 +33149,8 @@ const char *Txt_PERCENT_of_users = "% uzytkowników"; #elif L==9 // pt "% de utilizadores"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Permalink = @@ -30420,6 +33172,8 @@ const char *Txt_Permalink = "Odnośnik bezpośredni"; #elif L==9 // pt "Ligação permanente"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Personal_information = @@ -30441,6 +33195,8 @@ const char *Txt_Personal_information = "Informacje osobiste"; #elif L==9 // pt "Informação pessoal"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Phone = @@ -30462,6 +33218,8 @@ const char *Txt_Phone = "Telefon"; #elif L==9 // pt "Telefone"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Photo = @@ -30483,6 +33241,8 @@ const char *Txt_Photo = "Zdjęcie"; #elif L==9 // pt "Foto"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Photo_has_been_updated = @@ -30504,6 +33264,8 @@ const char *Txt_Photo_has_been_updated = "Zdjecie zostalo zaktualizowane."; #elif L==9 // pt "A fotografia foi atualizada."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Photo_of_THE_USER_X_has_been_removed = // Warning: it is very important to include %s in the following sentences @@ -30525,6 +33287,8 @@ const char *Txt_Photo_of_THE_USER_X_has_been_removed = // Warning: it is very im "Zdjecie %s zostalo usuniete."; #elif L==9 // pt "A foto de %s foi removida."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_PHOTO_PROCESSING_CAPTIONS[3] = @@ -30547,6 +33311,8 @@ const char *Txt_PHOTO_PROCESSING_CAPTIONS[3] = "Twarze wybranych" #elif L==9 // pt "Rosto selecionado" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -30567,6 +33333,8 @@ const char *Txt_PHOTO_PROCESSING_CAPTIONS[3] = "Zwiekszenie kontrastu i nasycenia" #elif L==9 // pt "Contraste e saturação aprimorados" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -30587,6 +33355,8 @@ const char *Txt_PHOTO_PROCESSING_CAPTIONS[3] = "Balans bieli sie" #elif L==9 // pt "Balanço de branco realizado" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -30610,6 +33380,8 @@ const char *Txt_PHOTO_SHAPES[PhoSha_NUM_SHAPES] = "Koło" #elif L==9 // pt "Círculo" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -30630,6 +33402,8 @@ const char *Txt_PHOTO_SHAPES[PhoSha_NUM_SHAPES] = "Elipsa" #elif L==9 // pt "Elipse" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -30650,6 +33424,8 @@ const char *Txt_PHOTO_SHAPES[PhoSha_NUM_SHAPES] = "Owalny" #elif L==9 // pt "Ovalo" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -30670,6 +33446,8 @@ const char *Txt_PHOTO_SHAPES[PhoSha_NUM_SHAPES] = "Prostokąt" #elif L==9 // pt "Retângulo" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -30692,6 +33470,8 @@ const char *Txt_Photo_removed = "Zdjecie usuniete."; #elif L==9 // pt "Fotografia removida."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_photos = @@ -30713,6 +33493,8 @@ const char *Txt_photos = "zdjecia"; #elif L==9 // pt "fotos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_XxY_pixels_or_higher = @@ -30734,6 +33516,8 @@ const char *Txt_XxY_pixels_or_higher = "pikseli lub wyższej"; #elif L==9 // pt "pixels ou superior"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Place = // A particular spot or area @@ -30755,6 +33539,8 @@ const char *Txt_Place = // A particular spot or area "Miejsce"; #elif L==9 // pt "Localização"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Place_X_removed = // Warning: it is very important to include %s in the following sentences @@ -30776,6 +33562,8 @@ const char *Txt_Place_X_removed = // Warning: it is very important to include %s "Miejsce %s usuniete."; #elif L==9 // pt "Lugar %s removido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Place_unspecified = @@ -30797,6 +33585,8 @@ const char *Txt_Place_unspecified = "Miejsce nieokreslone"; #elif L==9 // pt "Localização indeterminada"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Places = @@ -30818,6 +33608,8 @@ const char *Txt_Places = "Miejsca"; #elif L==9 // pt "Localizaçoes"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_PLACES_HELP_ORDER[Plc_NUM_ORDERS] = @@ -30841,6 +33633,8 @@ const char *Txt_PLACES_HELP_ORDER[Plc_NUM_ORDERS] = "Sortuj wedlug miejsca" #elif L==9 // pt "Classificar por localização" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Plc_ORDER_BY_NUM_CTRS] = @@ -30862,6 +33656,8 @@ const char *Txt_PLACES_HELP_ORDER[Plc_NUM_ORDERS] = "Sortuj wedlug stopni" #elif L==9 // pt "Classificar por número de graus" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -30886,6 +33682,8 @@ const char *Txt_PLACES_ORDER[Plc_NUM_ORDERS] = "Miejsce" #elif L==9 // pt "Localização" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Plc_ORDER_BY_NUM_CTRS] = @@ -30907,6 +33705,8 @@ const char *Txt_PLACES_ORDER[Plc_NUM_ORDERS] = "Centra" #elif L==9 // pt "Centros" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -30929,6 +33729,8 @@ const char *Txt_Platform = "Platforma"; #elif L==9 // pt "Plataforma"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Play = // To play a game match @@ -30950,6 +33752,8 @@ const char *Txt_Play = // To play a game match "Grać"; #elif L==9 // pt "Jogar"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Players = // Match players @@ -30971,6 +33775,8 @@ const char *Txt_Players = // Match players "Gracze"; #elif L==9 // pt "Jogadores"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Please_check_your_email_address = @@ -30992,6 +33798,8 @@ const char *Txt_Please_check_your_email_address = "Proszę sprawdź swój adres email."; #elif L==9 // pt "Por favor, verifique seu endereço de email."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Please_confirm_your_email_address = @@ -31013,6 +33821,8 @@ const char *Txt_Please_confirm_your_email_address = "Proszę potwierdzić swój adres email."; #elif L==9 // pt "Por favor, confirme seu endereço de email."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Please_enter_your_ID = @@ -31034,6 +33844,8 @@ const char *Txt_Please_enter_your_ID = "Proszę, podać swoje zmień ID."; #elif L==9 // pt "Por favor, digite nº de identificação."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Please_fill_in_your_ID = @@ -31090,6 +33902,8 @@ const char *Txt_Please_fill_in_your_ID = " mas é recomendável que você preenchê-lo," " pois facilita o processo de registro" " de usuários nas disciplinas."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Please_fill_in_your_record_card_including_your_country_nationality = @@ -31119,6 +33933,8 @@ const char *Txt_Please_fill_in_your_record_card_including_your_country_nationali #elif L==9 // pt "Por favor, preencha o seu cartão," " incluindo seu país (nacionalidade)."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Please_fill_in_your_record_card_including_your_name = @@ -31149,6 +33965,8 @@ const char *Txt_Please_fill_in_your_record_card_including_your_name = #elif L==9 // pt "Por favor, preencha o cartão," " incluindo seu nome."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Please_fill_in_your_record_card_including_your_sex = @@ -31179,6 +33997,8 @@ const char *Txt_Please_fill_in_your_record_card_including_your_sex = #elif L==9 // pt "Por favor, preencha o cartão," " incluindo o seu sexo."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Please_check_your_privacy_settings = @@ -31200,6 +34020,8 @@ const char *Txt_Please_check_your_privacy_settings = "Sprawdź ustawienia prywatności."; #elif L==9 // pt "Por favor, verifique suas configurações de privacidade."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Please_review_your_answers_before_submitting_the_exam = @@ -31221,6 +34043,8 @@ const char *Txt_Please_review_your_answers_before_submitting_the_exam = "Przejrzyj swoje odpowiedzi przed przesłaniem egzaminu."; #elif L==9 // pt "Por favor, revise suas respostas antes de enviar o exame."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Please_select_the_country_of_your_institution = @@ -31242,6 +34066,8 @@ const char *Txt_Please_select_the_country_of_your_institution = "Proszę, wybrać kraj swojej instytucji."; #elif L==9 // pt "Por favor, selecione o país da sua instituição."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Please_select_your_center = @@ -31263,6 +34089,8 @@ const char *Txt_Please_select_your_center = "Proszę, wybrać swoje tym centrum."; #elif L==9 // pt "Por favor, selecione seu centro."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Please_select_your_department = @@ -31284,6 +34112,8 @@ const char *Txt_Please_select_your_department = "Proszę, wybrać swoje tym działu."; #elif L==9 // pt "Por favor, selecione seu departamento."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Please_select_your_institution = @@ -31305,6 +34135,8 @@ const char *Txt_Please_select_your_institution = "Proszę, wybrać swoją instytucję."; #elif L==9 // pt "Por favor, selecione sua instituição."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Please_specify_if_you_allow_downloading_the_question_bank_from_other_applications = @@ -31326,6 +34158,8 @@ const char *Txt_Please_specify_if_you_allow_downloading_the_question_bank_from_o "Określ, czy zezwalasz na pobieranie banku pytań z innych aplikacji."; #elif L==9 // pt "Por favor, especifique se você deseja baixar o banco de perguntas de outros aplicativos."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Please_wait_ = @@ -31347,6 +34181,8 @@ const char *Txt_Please_wait_ = "Proszę czekać…"; #elif L==9 // pt "Espere, por favor…"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Plugin = @@ -31368,6 +34204,8 @@ const char *Txt_Plugin = "Wtyczka"; #elif L==9 // pt "Plugin"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Plugin_X_removed = // Warning: it is very important to include %s in the following sentences @@ -31389,6 +34227,8 @@ const char *Txt_Plugin_X_removed = // Warning: it is very important to include % "Wtyczka %s usunieta."; #elif L==9 // pt "Plugin %s removido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Plugins = @@ -31410,6 +34250,8 @@ const char *Txt_Plugins = "wtyczki"; #elif L==9 // pt "Plugins"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Possibly_duplicate_users = @@ -31431,6 +34273,8 @@ const char *Txt_Possibly_duplicate_users = "Możliwe duplikaty użytkowników"; #elif L==9 // pt "Usuários possivelmente duplicados"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif @@ -31453,6 +34297,8 @@ const char *Txt_Post = // Publish (verb) "Publikować"; #elif L==9 // pt "Publicar"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Present = @@ -31474,6 +34320,8 @@ const char *Txt_Present = "Obecny"; #elif L==9 // pt "Presente"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Presents = @@ -31495,6 +34343,8 @@ const char *Txt_Presents = "Obecny"; #elif L==9 // pt "Presentes"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Print = @@ -31516,6 +34366,8 @@ const char *Txt_Print = "Wydrukuj"; #elif L==9 // pt "Imprimir"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Privacy = @@ -31537,6 +34389,8 @@ const char *Txt_Privacy = "Prywatność"; #elif L==9 // pt "Privacidade"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_PRIVACY_OPTIONS[Pri_NUM_OPTIONS_PRIVACY] = @@ -31560,6 +34414,8 @@ const char *Txt_PRIVACY_OPTIONS[Pri_NUM_OPTIONS_PRIVACY] = "Nieznany" #elif L==9 // pt "Desconhecida" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Pri_VISIBILITY_USER] = @@ -31581,6 +34437,8 @@ const char *Txt_PRIVACY_OPTIONS[Pri_NUM_OPTIONS_PRIVACY] = "Widoczne przeze mnie i moich nauczycieli / moich uczniów" #elif L==9 // pt "Visível por mim e meus professores / meus estudantes" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Pri_VISIBILITY_COURSE] = @@ -31602,6 +34460,8 @@ const char *Txt_PRIVACY_OPTIONS[Pri_NUM_OPTIONS_PRIVACY] = "Widoczne dla użytkowników, z którymi dzielę się kursami" #elif L==9 // pt "Visível por usuários com quem compartilho disciplinas" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Pri_VISIBILITY_SYSTEM] = @@ -31623,6 +34483,8 @@ const char *Txt_PRIVACY_OPTIONS[Pri_NUM_OPTIONS_PRIVACY] = "Widoczne dla każdego zalogowanego użytkownika" #elif L==9 // pt "Visível por qualquer usuário logado" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Pri_VISIBILITY_WORLD] = @@ -31644,6 +34506,8 @@ const char *Txt_PRIVACY_OPTIONS[Pri_NUM_OPTIONS_PRIVACY] = "Widoczne dla wszystkich" #elif L==9 // pt "Visível em todo o mundo" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -31666,6 +34530,8 @@ const char *Txt_Private_available_to_certain_users_identified = "Prywatne, dostępne dla określonych użytkowników zidentyfikowanych"; #elif L==9 // pt "Privado, disponível para alguns usuários identificados"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_project = @@ -31687,6 +34553,8 @@ const char *Txt_project = "projektowe"; #elif L==9 // pt "projeto"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Project_assessment = @@ -31708,6 +34576,8 @@ const char *Txt_Project_assessment = "Ocena projektowe"; #elif L==9 // pt "Avaliação do projeto"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_project_assessment = @@ -31729,6 +34599,8 @@ const char *Txt_project_assessment = "ocena projektowe"; #elif L==9 // pt "avaliação do projeto"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Project_documents = @@ -31750,6 +34622,8 @@ const char *Txt_Project_documents = "Dokumenty projektowe"; #elif L==9 // pt "Documentos do projeto"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_project_documents = @@ -31771,6 +34645,8 @@ const char *Txt_project_documents = "dokumenty projektowe"; #elif L==9 // pt "documentos do projeto"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Project_files = @@ -31792,6 +34668,8 @@ const char *Txt_Project_files = "Pliki projektowe"; #elif L==9 // pt "Arquivos do projeto"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_PROJECT_ORDER[Prj_NUM_ORDERS] = @@ -31815,6 +34693,8 @@ const char *Txt_PROJECT_ORDER[Prj_NUM_ORDERS] = "Data utworzenia" #elif L==9 // pt "Data da criação" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_ORDER_END_TIME] = @@ -31836,6 +34716,8 @@ const char *Txt_PROJECT_ORDER[Prj_NUM_ORDERS] = "Ostatnie wydanie" #elif L==9 // pt "Última edição" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_ORDER_TITLE] = @@ -31857,6 +34739,8 @@ const char *Txt_PROJECT_ORDER[Prj_NUM_ORDERS] = "Tytuł" #elif L==9 // pt "Título" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_ORDER_DEPARTMENT] = @@ -31878,6 +34762,8 @@ const char *Txt_PROJECT_ORDER[Prj_NUM_ORDERS] = "Wydział" #elif L==9 // pt "Departamento" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -31902,6 +34788,8 @@ const char *Txt_PROJECT_ORDER_HELP[Prj_NUM_ORDERS] = "Sortuj według daty utworzenia" #elif L==9 // pt "Classificar por data de criação" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_ORDER_END_TIME] = @@ -31923,6 +34811,8 @@ const char *Txt_PROJECT_ORDER_HELP[Prj_NUM_ORDERS] = "Sortuj według daty ostatniej edycji" #elif L==9 // pt "Classificar por data da última edição" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_ORDER_TITLE] = @@ -31944,6 +34834,8 @@ const char *Txt_PROJECT_ORDER_HELP[Prj_NUM_ORDERS] = "Sortuj wedlug tytuł" #elif L==9 // pt "Classificar por título" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_ORDER_DEPARTMENT] = @@ -31965,6 +34857,8 @@ const char *Txt_PROJECT_ORDER_HELP[Prj_NUM_ORDERS] = "Sortuj wedlug wydział" #elif L==9 // pt "Classificar por departamento" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -31987,6 +34881,8 @@ const char *Txt_Project_X_removed = // Warning: it is very important to include "Projekt %s usuniety."; #elif L==9 // pt "Projeto %s removido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_PROJECT_ROLES_SINGUL_Abc[Prj_NUM_ROLES_IN_PROJECT] = @@ -32010,6 +34906,8 @@ const char *Txt_PROJECT_ROLES_SINGUL_Abc[Prj_NUM_ROLES_IN_PROJECT] = "Nieznany" #elif L==9 // pt "Desconhecido/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_ROLE_STD] = @@ -32031,6 +34929,8 @@ const char *Txt_PROJECT_ROLES_SINGUL_Abc[Prj_NUM_ROLES_IN_PROJECT] = "Student" #elif L==9 // pt "Estudante" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_ROLE_TUT] = @@ -32052,6 +34952,8 @@ const char *Txt_PROJECT_ROLES_SINGUL_Abc[Prj_NUM_ROLES_IN_PROJECT] = "Nauczyciel" #elif L==9 // pt "Tutor/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_ROLE_EVL] = @@ -32073,6 +34975,8 @@ const char *Txt_PROJECT_ROLES_SINGUL_Abc[Prj_NUM_ROLES_IN_PROJECT] = "Ewaluator" #elif L==9 // pt "Avaliador/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -32097,6 +35001,8 @@ const char *Txt_PROJECT_ROLES_SINGUL_abc[Prj_NUM_ROLES_IN_PROJECT][Usr_NUM_SEXS] "nieznany" #elif L==9 // pt "desconhecido/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_ROLE_UNK][Usr_SEX_FEMALE] = @@ -32118,6 +35024,8 @@ const char *Txt_PROJECT_ROLES_SINGUL_abc[Prj_NUM_ROLES_IN_PROJECT][Usr_NUM_SEXS] "nieznany" #elif L==9 // pt "desconhecida" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_ROLE_UNK][Usr_SEX_MALE] = @@ -32139,6 +35047,8 @@ const char *Txt_PROJECT_ROLES_SINGUL_abc[Prj_NUM_ROLES_IN_PROJECT][Usr_NUM_SEXS] "nieznany" #elif L==9 // pt "desconhecido" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_ROLE_UNK][Usr_SEX_ALL] = @@ -32160,6 +35070,8 @@ const char *Txt_PROJECT_ROLES_SINGUL_abc[Prj_NUM_ROLES_IN_PROJECT][Usr_NUM_SEXS] "nieznany" #elif L==9 // pt "desconhecido/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_ROLE_STD][Usr_SEX_UNKNOWN] = @@ -32181,6 +35093,8 @@ const char *Txt_PROJECT_ROLES_SINGUL_abc[Prj_NUM_ROLES_IN_PROJECT][Usr_NUM_SEXS] "student" #elif L==9 // pt "estudante" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_ROLE_STD][Usr_SEX_FEMALE] = @@ -32202,6 +35116,8 @@ const char *Txt_PROJECT_ROLES_SINGUL_abc[Prj_NUM_ROLES_IN_PROJECT][Usr_NUM_SEXS] "student" #elif L==9 // pt "estudante" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_ROLE_STD][Usr_SEX_MALE] = @@ -32223,6 +35139,8 @@ const char *Txt_PROJECT_ROLES_SINGUL_abc[Prj_NUM_ROLES_IN_PROJECT][Usr_NUM_SEXS] "student" #elif L==9 // pt "estudante" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_ROLE_STD][Usr_SEX_ALL] = @@ -32244,6 +35162,8 @@ const char *Txt_PROJECT_ROLES_SINGUL_abc[Prj_NUM_ROLES_IN_PROJECT][Usr_NUM_SEXS] "student" #elif L==9 // pt "estudante" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_ROLE_TUT][Usr_SEX_UNKNOWN] = @@ -32265,6 +35185,8 @@ const char *Txt_PROJECT_ROLES_SINGUL_abc[Prj_NUM_ROLES_IN_PROJECT][Usr_NUM_SEXS] "nauczyciel" #elif L==9 // pt "tutor/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_ROLE_TUT][Usr_SEX_FEMALE] = @@ -32286,6 +35208,8 @@ const char *Txt_PROJECT_ROLES_SINGUL_abc[Prj_NUM_ROLES_IN_PROJECT][Usr_NUM_SEXS] "nauczyciel" #elif L==9 // pt "tutora" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_ROLE_TUT][Usr_SEX_MALE] = @@ -32307,6 +35231,8 @@ const char *Txt_PROJECT_ROLES_SINGUL_abc[Prj_NUM_ROLES_IN_PROJECT][Usr_NUM_SEXS] "nauczyciel" #elif L==9 // pt "tutor" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_ROLE_TUT][Usr_SEX_ALL] = @@ -32328,6 +35254,8 @@ const char *Txt_PROJECT_ROLES_SINGUL_abc[Prj_NUM_ROLES_IN_PROJECT][Usr_NUM_SEXS] "nauczyciel" #elif L==9 // pt "tutor/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_ROLE_EVL][Usr_SEX_UNKNOWN] = @@ -32349,6 +35277,8 @@ const char *Txt_PROJECT_ROLES_SINGUL_abc[Prj_NUM_ROLES_IN_PROJECT][Usr_NUM_SEXS] "ewaluator" #elif L==9 // pt "avaliador/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_ROLE_EVL][Usr_SEX_FEMALE] = @@ -32370,6 +35300,8 @@ const char *Txt_PROJECT_ROLES_SINGUL_abc[Prj_NUM_ROLES_IN_PROJECT][Usr_NUM_SEXS] "ewaluator" #elif L==9 // pt "avaliadora" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_ROLE_EVL][Usr_SEX_MALE] = @@ -32391,6 +35323,8 @@ const char *Txt_PROJECT_ROLES_SINGUL_abc[Prj_NUM_ROLES_IN_PROJECT][Usr_NUM_SEXS] "ewaluator" #elif L==9 // pt "avaliador" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_ROLE_EVL][Usr_SEX_ALL] = @@ -32412,6 +35346,8 @@ const char *Txt_PROJECT_ROLES_SINGUL_abc[Prj_NUM_ROLES_IN_PROJECT][Usr_NUM_SEXS] "ewaluator" #elif L==9 // pt "avaliador/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -32436,6 +35372,8 @@ const char *Txt_PROJECT_ROLES_PLURAL_Abc[Prj_NUM_ROLES_IN_PROJECT] = "Nieznany" #elif L==9 // pt "Desconhecidos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_ROLE_STD] = @@ -32457,6 +35395,8 @@ const char *Txt_PROJECT_ROLES_PLURAL_Abc[Prj_NUM_ROLES_IN_PROJECT] = "Studenci" #elif L==9 // pt "Estudantes" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_ROLE_TUT] = @@ -32478,6 +35418,8 @@ const char *Txt_PROJECT_ROLES_PLURAL_Abc[Prj_NUM_ROLES_IN_PROJECT] = "Nauczyciele" #elif L==9 // pt "Tutores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_ROLE_EVL] = @@ -32499,6 +35441,8 @@ const char *Txt_PROJECT_ROLES_PLURAL_Abc[Prj_NUM_ROLES_IN_PROJECT] = "Ewaluatorów" #elif L==9 // pt "Avaliadores" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -32523,6 +35467,8 @@ const char *Txt_PROJECT_ROLES_PLURAL_abc[Prj_NUM_ROLES_IN_PROJECT] = "nieznany" #elif L==9 // pt "desconhecidos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_ROLE_STD] = @@ -32544,6 +35490,8 @@ const char *Txt_PROJECT_ROLES_PLURAL_abc[Prj_NUM_ROLES_IN_PROJECT] = "studenci" #elif L==9 // pt "estudantes" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_ROLE_TUT] = @@ -32565,6 +35513,8 @@ const char *Txt_PROJECT_ROLES_PLURAL_abc[Prj_NUM_ROLES_IN_PROJECT] = "nauczyciele" #elif L==9 // pt "tutores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_ROLE_EVL] = @@ -32586,6 +35536,8 @@ const char *Txt_PROJECT_ROLES_PLURAL_abc[Prj_NUM_ROLES_IN_PROJECT] = "ewaluatorów" #elif L==9 // pt "avaliadores" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -32610,6 +35562,8 @@ const char *Txt_PROJECT_STATUS[Prj_NUM_PROPOSAL_TYPES] = "Nowy projekt" #elif L==9 // pt "Projeto novo" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_PROPOSAL_MODIFIED] = @@ -32631,6 +35585,8 @@ const char *Txt_PROJECT_STATUS[Prj_NUM_PROPOSAL_TYPES] = "Proponowany projekt we wcześniejszych rozmowach z modyfikacjami" #elif L==9 // pt "Projeto proposto em chamadas anteriores, com modificações" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_PROPOSAL_UNMODIFIED] = @@ -32652,6 +35608,8 @@ const char *Txt_PROJECT_STATUS[Prj_NUM_PROPOSAL_TYPES] = "Proponowany projekt we wcześniejszych rozmowach bez modyfikacji" #elif L==9 // pt "Projeto proposto em chamadas anteriores, sem modificações" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -32676,6 +35634,8 @@ const char *Txt_PROJECT_FAULTY_FAULTLESS_PROJECTS[Prj_NUM_FAULTINESS] = "Wadliwe projekty" #elif L==9 // pt "Projetos defeituosos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_FAULTLESS] = @@ -32697,6 +35657,8 @@ const char *Txt_PROJECT_FAULTY_FAULTLESS_PROJECTS[Prj_NUM_FAULTINESS] = "Bezbłędne projekty" #elif L==9 // pt "Projetos sem falhas" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -32721,6 +35683,8 @@ const char *Txt_PROJECT_ASSIGNED_NONASSIGNED_PLURAL[Prj_NUM_ASSIGNED_NONASSIG] = "Zadany projekty" #elif L==9 // pt "Projetos atribuídos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_NONASSIG] = @@ -32742,6 +35706,8 @@ const char *Txt_PROJECT_ASSIGNED_NONASSIGNED_PLURAL[Prj_NUM_ASSIGNED_NONASSIG] = "Nieprzypisane projekty" #elif L==9 // pt "Projetos não atribuídos" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -32766,6 +35732,8 @@ const char *Txt_PROJECT_ASSIGNED_NONASSIGNED_SINGUL[Prj_NUM_ASSIGNED_NONASSIG] = "Zadany projekt" #elif L==9 // pt "Projeto atribuído" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_NONASSIG] = @@ -32787,6 +35755,8 @@ const char *Txt_PROJECT_ASSIGNED_NONASSIGNED_SINGUL[Prj_NUM_ASSIGNED_NONASSIG] = "Nieprzypisane projekt" #elif L==9 // pt "Projeto não atribuído" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -32811,6 +35781,8 @@ const char *Txt_PROJECT_HIDDEN_VISIBL_PROJECTS[Prj_NUM_HIDDEN_VISIBL] = "Ukryte projekty" #elif L==9 // pt "Projetos ocultos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Prj_VISIBL] = @@ -32832,6 +35804,8 @@ const char *Txt_PROJECT_HIDDEN_VISIBL_PROJECTS[Prj_NUM_HIDDEN_VISIBL] = "Widoczne projekty" #elif L==9 // pt "Projetos visíveis" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -32854,6 +35828,8 @@ const char *Txt_Projects = "Projekty (projekty końcowe, praca dyplomowa…)"; #elif L==9 // pt "Projetos (projetos de fim de grau, tese…)"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Proposal = @@ -32875,6 +35851,8 @@ const char *Txt_Proposal = "Wniosek"; #elif L==9 // pt "Proposta"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Public_agenda_USER = // Warning: it is very important to include %s in the following sentences @@ -32896,6 +35874,8 @@ const char *Txt_Public_agenda_USER = // Warning: it is very important to include "Pamiętnik publiczny %s"; #elif L==9 // pt "Agenda pública de %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_public_FILES = @@ -32917,6 +35897,8 @@ const char *Txt_public_FILES = "publicznych"; #elif L==9 // pt "públicos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Public_open_educational_resource_OER_for_everyone = @@ -32938,6 +35920,8 @@ const char *Txt_Public_open_educational_resource_OER_for_everyone = "Publiczne, otwarte zasoby edukacyjne (OER) dla każdego"; #elif L==9 // pt "Público, recurso educacional aberto (OER) para todos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Public_views = @@ -32959,6 +35943,8 @@ const char *Txt_Public_views = "Publiczne odsłon"; #elif L==9 // pt "Acessos públicos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Publish_call_FOR_EXAM = @@ -32980,6 +35966,8 @@ const char *Txt_Publish_call_FOR_EXAM = "Publikuje zaproszenie"; #elif L==9 // pt "Publicar chamada"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_QR_code = @@ -33001,6 +35989,8 @@ const char *Txt_QR_code = "QR Code"; #elif L==9 // pt "Código QR"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_question = @@ -33022,6 +36012,8 @@ const char *Txt_question = "pytanie"; #elif L==9 // pt "pergunta"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Question = @@ -33043,6 +36035,8 @@ const char *Txt_Question = "Pytanie"; #elif L==9 // pt "Pergunta"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Question_bank = @@ -33064,6 +36058,8 @@ const char *Txt_Question_bank = "Bank pytań"; #elif L==9 // pt "Banco de perguntas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Question_code_X = // Warning: it is very important to include %ld in the following sentences @@ -33085,6 +36081,8 @@ const char *Txt_Question_code_X = // Warning: it is very important to include %l "Kodeks pytanie %ld"; #elif L==9 // pt "Pergunta com código %ld"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Question_modified = @@ -33106,6 +36104,8 @@ const char *Txt_Question_modified = "Pytanie zmodyfikowane."; #elif L==9 // pt "Pergunta modificada."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Question_removed = @@ -33127,6 +36127,8 @@ const char *Txt_Question_removed = "Pytanie usuniete."; #elif L==9 // pt "Pergunta removida."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_questions = @@ -33148,6 +36150,8 @@ const char *Txt_questions = "pytania"; #elif L==9 // pt "perguntas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Questions = @@ -33169,6 +36173,8 @@ const char *Txt_Questions = "Pytań"; #elif L==9 // pt "Perguntas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Questions_and_problems = @@ -33190,6 +36196,8 @@ const char *Txt_Questions_and_problems = "Pytania i problemy"; #elif L==9 // pt "Perguntas e problemas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_QUESTIONS_invalid = @@ -33211,6 +36219,8 @@ const char *Txt_QUESTIONS_invalid = "anulowane"; #elif L==9 // pt "canceladas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Questions_removed_X = // Warning: it is very important to include %u in the following sentences @@ -33232,6 +36242,8 @@ const char *Txt_Questions_removed_X = // Warning: it is very important to includ "Pytania usuniete: %u."; #elif L==9 // pt "Perguntas removidas: %u."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_QUESTIONS_valid = @@ -33253,6 +36265,8 @@ const char *Txt_QUESTIONS_valid = "ważne"; #elif L==9 // pt "válidas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Quota_exceeded = @@ -33274,6 +36288,8 @@ const char *Txt_Quota_exceeded = "Przekroczono przydzial!"; #elif L==9 // pt "Quota excedida!"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_ReaBRders = @@ -33295,6 +36311,8 @@ const char *Txt_ReaBRders = "Czytel-
ników"; #elif L==9 // pt "Lei-
tores"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Real_number_between_A_and_B_1 = @@ -33316,6 +36334,8 @@ const char *Txt_Real_number_between_A_and_B_1 = "Prawdziwa liczbe miedzy"; #elif L==9 // pt "N.º real entre"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Real_number_between_A_and_B_2 = // Must start by space @@ -33337,6 +36357,8 @@ const char *Txt_Real_number_between_A_and_B_2 = // Must start by space " i"; #elif L==9 // pt " e"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Recommended_aspect_ratio = @@ -33358,6 +36380,8 @@ const char *Txt_Recommended_aspect_ratio = "Zalecane proporcje obrazu"; #elif L==9 // pt "Proporção recomendada"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Recommended_resolution = @@ -33379,6 +36403,8 @@ const char *Txt_Recommended_resolution = "Zalecana rozdzielczość"; #elif L==9 // pt "Resolução recomendada"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Record_card_of_THE_USER_X_has_been_removed = // Warning: it is very important to include %s in the following sentences @@ -33400,6 +36426,8 @@ const char *Txt_Record_card_of_THE_USER_X_has_been_removed = // Warning: it is v "Karta Rekord %s zostala usunieta."; #elif L==9 // pt "Cartão de registro de %s foi removido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_record_cards_per_page = @@ -33421,6 +36449,8 @@ const char *Txt_record_cards_per_page = "karty zapisu na stronie"; #elif L==9 // pt "cartões por página"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Record_field_X_removed = // Warning: it is very important to include %s in the following sentences @@ -33442,6 +36472,8 @@ const char *Txt_Record_field_X_removed = // Warning: it is very important to inc "Pole rekordu %s usuniete."; #elif L==9 // pt "Campo de cartão %s removido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_RECORD_FIELD_VISIBILITY_MENU[Rec_NUM_TYPES_VISIBILITY] = @@ -33465,6 +36497,8 @@ const char *Txt_RECORD_FIELD_VISIBILITY_MENU[Rec_NUM_TYPES_VISIBILITY] = "Ukryty" #elif L==9 // pt "Oculto" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rec_VISIBLE_FIELD] = @@ -33486,6 +36520,8 @@ const char *Txt_RECORD_FIELD_VISIBILITY_MENU[Rec_NUM_TYPES_VISIBILITY] = "Widoczne, ale nie mozna edytować" #elif L==9 // pt "Visível, mas não editável" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rec_EDITABLE_FIELD] = @@ -33507,6 +36543,8 @@ const char *Txt_RECORD_FIELD_VISIBILITY_MENU[Rec_NUM_TYPES_VISIBILITY] = "Widzialne i mozna edytować" #elif L==9 // pt "Visível e editável" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -33540,6 +36578,8 @@ const char *Txt_RECORD_FIELD_VISIBILITY_MSG[Rec_NUM_TYPES_VISIBILITY] = // Warni #elif L==9 // pt "De agora em diante," " os estudantes não podem ver o campo %s dos cartões." +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rec_VISIBLE_FIELD] = @@ -33570,6 +36610,8 @@ const char *Txt_RECORD_FIELD_VISIBILITY_MSG[Rec_NUM_TYPES_VISIBILITY] = // Warni #elif L==9 // pt "De agora em diante," " os estudantes podem visualizar, mas não editar o campo %s dos cartões." +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rec_EDITABLE_FIELD] = @@ -33600,6 +36642,8 @@ const char *Txt_RECORD_FIELD_VISIBILITY_MSG[Rec_NUM_TYPES_VISIBILITY] = // Warni #elif L==9 // pt "De agora em diante," " os estudantes podem visualizar e editar o campo %s dos cartões." +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -33624,6 +36668,8 @@ const char *Txt_RECORD_FIELD_VISIBILITY_RECORD[Rec_NUM_TYPES_VISIBILITY] = "ukryty" #elif L==9 // pt "oculto" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rec_VISIBLE_FIELD] = @@ -33645,6 +36691,8 @@ const char *Txt_RECORD_FIELD_VISIBILITY_RECORD[Rec_NUM_TYPES_VISIBILITY] = "widoczny" #elif L==9 // pt "visível" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rec_EDITABLE_FIELD] = @@ -33666,6 +36714,8 @@ const char *Txt_RECORD_FIELD_VISIBILITY_RECORD[Rec_NUM_TYPES_VISIBILITY] = "edytowalne" #elif L==9 // pt "editável" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -33688,6 +36738,8 @@ const char *Txt_Record_fields = "Rekord w dziedzinie"; #elif L==9 // pt "Campos de cartões"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Recipients = @@ -33709,6 +36761,8 @@ const char *Txt_Recipients = "Odbiorcy"; #elif L==9 // pt "Destinatários"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Register = @@ -33730,6 +36784,8 @@ const char *Txt_Register = "Zarejestruj sie"; #elif L==9 // pt "Registrar"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Register_students = @@ -33751,6 +36807,8 @@ const char *Txt_Register_students = "Rejestracja studentów"; #elif L==9 // pt "Registrar estudantes"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Register_students_in_COURSE_X = // Warning: it is very important to include %s in the following sentences @@ -33772,6 +36830,8 @@ const char *Txt_Register_students_in_COURSE_X = // Warning: it is very important "Rejestracja studentów w %s"; #elif L==9 // pt "Registrar estudantes em %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Register_the_users_indicated_in_step_1 = @@ -33793,6 +36853,8 @@ const char *Txt_Register_the_users_indicated_in_step_1 = "Rejestracja uzytkowników, którzy sa na liscie"; #elif L==9 // pt "Registrar os utilizadores que estão na lista"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Register_the_users_indicated_in_step_1_and_remove_the_users_not_indicated = @@ -33823,6 +36885,8 @@ const char *Txt_Register_the_users_indicated_in_step_1_and_remove_the_users_not_ #elif L==9 // pt "Tirar os utilizadores que não estão na lista," " e registrar os utilizadores que estão na lista"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Register_teacher = @@ -33844,6 +36908,8 @@ const char *Txt_Register_teacher = "Rejestracja nauczyciel"; #elif L==9 // pt "Registrar professor/a"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Register_user_IN_A_COURSE_OR_DEGREE = @@ -33865,6 +36931,8 @@ const char *Txt_Register_user_IN_A_COURSE_OR_DEGREE = "Rejestracja użytkownika"; #elif L==9 // pt "Registrar utilizador/a"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Register_me_in_X = // Warning: it is very important to include %s in the following sentences @@ -33886,6 +36954,8 @@ const char *Txt_Register_me_in_X = // Warning: it is very important to include % "Rejestracja mnie w %s"; #elif L==9 // pt "Registrar me em %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Register_USER_in_the_course_X = // Warning: it is very important to include %s in the following sentences @@ -33907,6 +36977,8 @@ const char *Txt_Register_USER_in_the_course_X = // Warning: it is very important "Rejestracja w kurs %s"; #elif L==9 // pt "Registrar na disciplina %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Register_USER_as_an_administrator_of_the_center_X = // Warning: it is very important to include %s in the following sentences @@ -33937,6 +37009,8 @@ const char *Txt_Register_USER_as_an_administrator_of_the_center_X = // Warning: #elif L==9 // pt "Registrar como administrador" " do centro %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Register_USER_as_an_administrator_of_the_degree_X = // Warning: it is very important to include %s in the following sentences @@ -33967,6 +37041,8 @@ const char *Txt_Register_USER_as_an_administrator_of_the_degree_X = // Warning: #elif L==9 // pt "Registrar como administrador" " do grau %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Register_USER_as_an_administrator_of_the_institution_X = // Warning: it is very important to include %s in the following sentences @@ -33997,6 +37073,8 @@ const char *Txt_Register_USER_as_an_administrator_of_the_institution_X = // Warn #elif L==9 // pt "Registrar como administrador" " da instituição %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Reject = @@ -34018,6 +37096,8 @@ const char *Txt_Reject = "Odrzucać"; #elif L==9 // pt "Rejeitar"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Removal_not_allowed = @@ -34039,6 +37119,8 @@ const char *Txt_Removal_not_allowed = "Usuwanie nie wolno"; #elif L==9 // pt "Remoção não permitida"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove = @@ -34060,6 +37142,8 @@ const char *Txt_Remove = "Usuń"; #elif L==9 // pt "Remover"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_account = @@ -34081,6 +37165,8 @@ const char *Txt_Remove_account = "Usuń konto"; #elif L==9 // pt "Remover conta"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_all_students = @@ -34102,6 +37188,8 @@ const char *Txt_Remove_all_students = "Usuń wszystkich studentów"; #elif L==9 // pt "Tirar todos estudantes"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_assignment = @@ -34123,6 +37211,8 @@ const char *Txt_Remove_assignment = "Usuń przypisanie"; #elif L==9 // pt "Remover atividade"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_event = @@ -34144,6 +37234,8 @@ const char *Txt_Remove_event = "Usuń wydarzenie"; #elif L==9 // pt "Remover evento"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_exam = @@ -34165,6 +37257,8 @@ const char *Txt_Remove_exam = "Usuń egzamin"; #elif L==9 // pt "Remover exame"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_file = @@ -34186,6 +37280,8 @@ const char *Txt_Remove_file = "Usuń plik"; #elif L==9 // pt "Remover arquivo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_files_older_than_PART_1_OF_2 = @@ -34207,6 +37303,8 @@ const char *Txt_Remove_files_older_than_PART_1_OF_2 = "Remove files older than"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Remover arquivos com mais de"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_files_older_than_PART_2_OF_2 = @@ -34228,6 +37326,8 @@ const char *Txt_Remove_files_older_than_PART_2_OF_2 = "months."; // Potrzebujesz tlumaczenie #elif L==9 // pt "meses."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_folder = @@ -34249,6 +37349,8 @@ const char *Txt_Remove_folder = "Usuń folder"; #elif L==9 // pt "Remover diretório"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_game = @@ -34270,6 +37372,8 @@ const char *Txt_Remove_game = "Usuń gra"; #elif L==9 // pt "Remover jogo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_group = @@ -34291,6 +37395,8 @@ const char *Txt_Remove_group = "Usuń gruper"; #elif L==9 // pt "Remover grupo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_item = @@ -34312,6 +37418,8 @@ const char *Txt_Remove_item = "Usuń przedmiot"; #elif L==9 // pt "Remover item"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_link = @@ -34333,6 +37441,8 @@ const char *Txt_Remove_link = "Usuń link"; #elif L==9 // pt "Remover ligação"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_logo = @@ -34354,6 +37464,8 @@ const char *Txt_Remove_logo = "Usuń logo"; #elif L==9 // pt "Remover logotipo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_match = // of a game @@ -34375,6 +37487,8 @@ const char *Txt_Remove_match = // of a game "Usuń mecz"; #elif L==9 // pt "Remover jogo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_me = @@ -34396,6 +37510,8 @@ const char *Txt_Remove_me = "Usuñ"; #elif L==9 // pt "Tirar me"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_me_as_an_administrator = @@ -34417,6 +37533,8 @@ const char *Txt_Remove_me_as_an_administrator = "Usuń mnie jako administrator"; #elif L==9 // pt "Tirar me como administrador"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_me_as_an_administrator_of_the_center_X = // Warning: it is very important to include %s in the following sentences @@ -34447,6 +37565,8 @@ const char *Txt_Remove_me_as_an_administrator_of_the_center_X = // Warning: it i #elif L==9 // pt "Tirar me como administrador" " do centro %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_me_as_an_administrator_of_the_degree_X = // Warning: it is very important to include %s in the following sentences @@ -34477,6 +37597,8 @@ const char *Txt_Remove_me_as_an_administrator_of_the_degree_X = // Warning: it i #elif L==9 // pt "Tirar me como administrador" " do grau %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_me_as_an_administrator_of_the_institution_X = // Warning: it is very important to include %s in the following sentences @@ -34507,6 +37629,8 @@ const char *Txt_Remove_me_as_an_administrator_of_the_institution_X = // Warning: #elif L==9 // pt "Tirar me como administrador" " da institução %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_me_from_this_course = @@ -34528,6 +37652,8 @@ const char *Txt_Remove_me_from_this_course = "Usuñ z kursu"; #elif L==9 // pt "Tirar me desta disciplina"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_me_from_THE_COURSE_X = // Warning: it is very important to include %s in the following sentences @@ -34549,6 +37675,8 @@ const char *Txt_Remove_me_from_THE_COURSE_X = // Warning: it is very important t "Usuń mnie w %s"; #elif L==9 // pt "Tirar me de %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_old_files = @@ -34570,6 +37698,8 @@ const char *Txt_Remove_old_files = "Usuń stare pliki"; #elif L==9 // pt "Remover arquivos antigos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_photo = @@ -34591,6 +37721,8 @@ const char *Txt_Remove_photo = "Usuń zdjecie"; #elif L==9 // pt "Remover foto"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_project = @@ -34612,6 +37744,8 @@ const char *Txt_Remove_project = "Usuń projekt"; #elif L==9 // pt "Remover projeto"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_question = @@ -34633,6 +37767,8 @@ const char *Txt_Remove_question = "Usuń pytanie"; #elif L==9 // pt "Remover pergunta"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_questions = @@ -34654,6 +37790,8 @@ const char *Txt_Remove_questions = "Usuń pytania"; #elif L==9 // pt "Remover perguntas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_record_field = @@ -34675,6 +37813,8 @@ const char *Txt_Remove_record_field = "Usuń pola rekordu"; #elif L==9 // pt "Remover campo de cartão"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_session = @@ -34696,6 +37836,8 @@ const char *Txt_Remove_session = "Usuń sesji"; #elif L==9 // pt "Remover sessão"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_set_of_questions = @@ -34717,6 +37859,8 @@ const char *Txt_Remove_set_of_questions = "Usuń zestaw pytań"; #elif L==9 // pt "Remover conjunto de perguntas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_survey = @@ -34738,6 +37882,8 @@ const char *Txt_Remove_survey = "Usuń badania"; #elif L==9 // pt "Remover inquérito"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_thread = @@ -34759,6 +37905,8 @@ const char *Txt_Remove_thread = "Usuń watkek"; #elif L==9 // pt "Remover discussão"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_the_users_not_indicated_in_step_1 = @@ -34780,6 +37928,8 @@ const char *Txt_Remove_the_users_not_indicated_in_step_1 = "Usuń użytkownikami, którzy sa nie na liscie"; #elif L==9 // pt "Tirar os utilizadores que não estão na lista"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_the_users_indicated_in_step_1 = @@ -34801,6 +37951,8 @@ const char *Txt_Remove_the_users_indicated_in_step_1 = "Usuń użytkownikami, którzy sa na liscie"; #elif L==9 // pt "Tirar os utilizadores que estão na lista"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_type_of_group = @@ -34822,6 +37974,8 @@ const char *Txt_Remove_type_of_group = "Usuń typ grupy"; #elif L==9 // pt "Remover tipo de grupo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_user_from_this_course = @@ -34843,6 +37997,8 @@ const char *Txt_Remove_user_from_this_course = "Usuñ użytkownika z kursu"; #elif L==9 // pt "Tirar utilizador desta disciplina"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_USER_from_this_project = // Warning: it is very important to include %s in the following sentences @@ -34864,6 +38020,8 @@ const char *Txt_Remove_USER_from_this_project = // Warning: it is very important "Usuñ %s z projekt"; #elif L==9 // pt "Tirar %s deste projeto"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_USER_as_an_administrator = @@ -34885,6 +38043,8 @@ const char *Txt_Remove_USER_as_an_administrator = "Usuń jako administrator"; #elif L==9 // pt "Tirar como administrador"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_USER_as_an_administrator_of_the_center_X = // Warning: it is very important to include %s in the following sentences @@ -34915,6 +38075,8 @@ const char *Txt_Remove_USER_as_an_administrator_of_the_center_X = // Warning: it #elif L==9 // pt "Tirar como administrador" " do centro %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_USER_as_an_administrator_of_the_degree_X = // Warning: it is very important to include %s in the following sentences @@ -34945,6 +38107,8 @@ const char *Txt_Remove_USER_as_an_administrator_of_the_degree_X = // Warning: it #elif L==9 // pt "Tirar como administrador" " do grau %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_USER_as_an_administrator_of_the_institution_X = // Warning: it is very important to include %s in the following sentences @@ -34975,6 +38139,8 @@ const char *Txt_Remove_USER_as_an_administrator_of_the_institution_X = // Warnin #elif L==9 // pt "Tirar como administrador" " da institução %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Remove_USER_from_THE_COURSE_X = // Warning: it is very important to include %s in the following sentences @@ -34996,6 +38162,8 @@ const char *Txt_Remove_USER_from_THE_COURSE_X = // Warning: it is very important "Usuń w %s"; #elif L==9 // pt "Tirar de %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Reply = @@ -35017,6 +38185,8 @@ const char *Txt_Reply = "Odpowiedz"; #elif L==9 // pt "Responder"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Reply_again = @@ -35038,6 +38208,8 @@ const char *Txt_Reply_again = "Odpowiedz ponownie"; #elif L==9 // pt "Responder novamente"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Reply_message = // "Reply" as a noun, not as a verb @@ -35059,6 +38231,8 @@ const char *Txt_Reply_message = // "Reply" as a noun, not as a verb "Wiadomość odpowiedz"; #elif L==9 // pt "Mensagem de resposta"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Report = @@ -35080,6 +38254,8 @@ const char *Txt_Report = "Raport"; #elif L==9 // pt "Relatório"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Report_of_use_of_PLATFORM = // Warning: it is very important to include %s in the following sentences @@ -35101,6 +38277,8 @@ const char *Txt_Report_of_use_of_PLATFORM = // Warning: it is very important to "Sprawozdanie z wykorzystaniem %s"; #elif L==9 // pt "Relatório de utilização de %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Report_possible_duplicate_user = @@ -35122,6 +38300,8 @@ const char *Txt_Report_possible_duplicate_user = "Zgłoś możliwy duplikat użytkownika"; #elif L==9 // pt "Denunciar possível usuário duplicado"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Requester = @@ -35143,6 +38323,8 @@ const char *Txt_Requester = "Żądającego"; #elif L==9 // pt "Requerente"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Required_knowledge = @@ -35164,6 +38346,8 @@ const char *Txt_Required_knowledge = "Niezbędna wiedza"; #elif L==9 // pt "Conhecimento necessário"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Required_materials = @@ -35185,6 +38369,8 @@ const char *Txt_Required_materials = "Potrzebne materiały"; #elif L==9 // pt "Materiais necessários"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Required_reading = @@ -35206,6 +38392,8 @@ const char *Txt_Required_reading = "Obowiązkowa lektura"; #elif L==9 // pt "Leitura obrigatória"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Reset = @@ -35227,6 +38415,8 @@ const char *Txt_Reset = "Reset"; #elif L==9 // pt "Reiniciar"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Reset_survey = @@ -35248,6 +38438,8 @@ const char *Txt_Reset_survey = "Reset badania"; #elif L==9 // pt "Reiniciar inquérito"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Result = @@ -35269,6 +38461,8 @@ const char *Txt_Result = "Wynik"; #elif L==9 // pt "Resultado"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Result_visibility = @@ -35290,6 +38484,8 @@ const char *Txt_Result_visibility = "Widoczność wyników"; #elif L==9 // pt "Visibilidade dos resultados"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Results = @@ -35311,6 +38507,8 @@ const char *Txt_Results = "Wyniki"; #elif L==9 // pt "Resultados"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Results_of_game_X = // Warning: it is very important to include %s in the following sentences @@ -35332,6 +38530,8 @@ const char *Txt_Results_of_game_X = // Warning: it is very important to include "Wyniki gry "%s""; #elif L==9 // pt "Resultados do jogo "%s""; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Results_of_exam_X = // Warning: it is very important to include %s in the following sentences @@ -35353,6 +38553,8 @@ const char *Txt_Results_of_exam_X = // Warning: it is very important to include "Wyniki egzamin "%s""; #elif L==9 // pt "Resultados do exame "%s""; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Results_of_match_X = // Warning: it is very important to include %s in the following sentences @@ -35374,6 +38576,8 @@ const char *Txt_Results_of_match_X = // Warning: it is very important to include "Wyniki mecz "%s""; #elif L==9 // pt "Resultados do jogo "%s""; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Results_of_session_X = // Warning: it is very important to include %s in the following sentences @@ -35395,6 +38599,8 @@ const char *Txt_Results_of_session_X = // Warning: it is very important to inclu "Wyniki sesji "%s""; #elif L==9 // pt "Resultados da sessão "%s""; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_results_per_page = @@ -35416,6 +38622,8 @@ const char *Txt_results_per_page = "wyników na stronie"; #elif L==9 // pt "resultados por página"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Resume = @@ -35437,6 +38645,8 @@ const char *Txt_Resume = "Wznów"; #elif L==9 // pt "Retomar"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Retype_new_password = @@ -35458,6 +38668,8 @@ const char *Txt_Retype_new_password = "Powtórz nowe hasło"; #elif L==9 // pt "Redigite a nova senha"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Role = @@ -35479,6 +38691,8 @@ const char *Txt_Role = "Rolę"; #elif L==9 // pt "Papel"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_ROLE_STATS[Sta_NUM_ROLES_STAT] = @@ -35502,6 +38716,8 @@ const char *Txt_ROLE_STATS[Sta_NUM_ROLES_STAT] = "zidentyfikowane" #elif L==9 // pt "identificados" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_ROLE_ALL_USRS] = @@ -35523,6 +38739,8 @@ const char *Txt_ROLE_STATS[Sta_NUM_ROLES_STAT] = "zidentyfikowanej lub nieznane" #elif L==9 // pt "identificados ou desconhecidos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_ROLE_INS_ADMINS] = @@ -35544,6 +38762,8 @@ const char *Txt_ROLE_STATS[Sta_NUM_ROLES_STAT] = "Administratorzy instytucje" #elif L==9 // pt "administradores de instituções" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_ROLE_CTR_ADMINS] = @@ -35565,6 +38785,8 @@ const char *Txt_ROLE_STATS[Sta_NUM_ROLES_STAT] = "Administratorzy centra" #elif L==9 // pt "administradores de centros" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_ROLE_DEG_ADMINS] = @@ -35586,6 +38808,8 @@ const char *Txt_ROLE_STATS[Sta_NUM_ROLES_STAT] = "Administratorzy stopni" #elif L==9 // pt "administradores de graus" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_ROLE_TEACHERS] = @@ -35607,6 +38831,8 @@ const char *Txt_ROLE_STATS[Sta_NUM_ROLES_STAT] = "nauczycieli" #elif L==9 // pt "professores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_ROLE_NON_EDITING_TEACHERS] = @@ -35628,6 +38854,8 @@ const char *Txt_ROLE_STATS[Sta_NUM_ROLES_STAT] = "nauczyciele nie edytujący" #elif L==9 // pt "professores não editores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_ROLE_STUDENTS] = @@ -35649,6 +38877,8 @@ const char *Txt_ROLE_STATS[Sta_NUM_ROLES_STAT] = "studenci" #elif L==9 // pt "estudantes" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_ROLE_USERS] = @@ -35670,6 +38900,8 @@ const char *Txt_ROLE_STATS[Sta_NUM_ROLES_STAT] = "użytkownicy" #elif L==9 // pt "utilizadores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_ROLE_GUESTS] = @@ -35691,6 +38923,8 @@ const char *Txt_ROLE_STATS[Sta_NUM_ROLES_STAT] = "zaproszeny (bez kursów)" #elif L==9 // pt "convidados (sem disciplinas)" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_ROLE_UNKNOWN_USRS] = @@ -35712,6 +38946,8 @@ const char *Txt_ROLE_STATS[Sta_NUM_ROLES_STAT] = "nieznany" #elif L==9 // pt "desconhecidos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_ROLE_ME] = @@ -35733,6 +38969,8 @@ const char *Txt_ROLE_STATS[Sta_NUM_ROLES_STAT] = "ja" #elif L==9 // pt "eu" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -35757,6 +38995,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Nieznany" #elif L==9 // pt "Desconhecido/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_UNK][Usr_SEX_FEMALE] = @@ -35778,6 +39018,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Nieznana" #elif L==9 // pt "Desconhecida" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_UNK][Usr_SEX_MALE] = @@ -35799,6 +39041,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Nieznany" #elif L==9 // pt "Desconhecido" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_UNK][Usr_SEX_ALL] = @@ -35820,6 +39064,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Nieznani" #elif L==9 // pt "Desconhecido/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_GST][Usr_SEX_UNKNOWN] = @@ -35841,6 +39087,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Gość" #elif L==9 // pt "Convidado/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_GST][Usr_SEX_FEMALE] = @@ -35862,6 +39110,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Opinia" #elif L==9 // pt "Convidada" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_GST][Usr_SEX_MALE] = @@ -35883,6 +39133,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Opinia" #elif L==9 // pt "Convidado" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_GST][Usr_SEX_ALL] = @@ -35904,6 +39156,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Opinie" #elif L==9 // pt "Convidado/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_USR][Usr_SEX_UNKNOWN] = @@ -35925,6 +39179,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Użytkownika" #elif L==9 // pt "Utilizador/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_USR][Usr_SEX_FEMALE] = @@ -35946,6 +39202,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Użytkownika" #elif L==9 // pt "Utilizadora" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_USR][Usr_SEX_MALE] = @@ -35967,6 +39225,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Użytkownika" #elif L==9 // pt "Utilizador" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_USR][Usr_SEX_ALL] = @@ -35988,6 +39248,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Użytkownika" #elif L==9 // pt "Utilizador/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_STD][Usr_SEX_UNKNOWN] = @@ -36009,6 +39271,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Student" #elif L==9 // pt "Estudante" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_STD][Usr_SEX_FEMALE] = @@ -36030,6 +39294,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Studentka" #elif L==9 // pt "Estudante" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_STD][Usr_SEX_MALE] = @@ -36051,6 +39317,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Student" #elif L==9 // pt "Estudante" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_STD][Usr_SEX_ALL] = @@ -36072,6 +39340,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Studenci" #elif L==9 // pt "Estudante" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_NET][Usr_SEX_UNKNOWN] = @@ -36093,6 +39363,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Nauczyciel nie edytujący" #elif L==9 // pt "Professor/a não editor/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_NET][Usr_SEX_FEMALE] = @@ -36114,6 +39386,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Nauczycielka nie edytujący" #elif L==9 // pt "Professora não editora" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_NET][Usr_SEX_MALE] = @@ -36135,6 +39409,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Nauczyciel nie edytujący" #elif L==9 // pt "Professor não editor" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_NET][Usr_SEX_ALL] = @@ -36156,6 +39432,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Nauczyciele nie edytujący" #elif L==9 // pt "Professor/a não editor/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_TCH][Usr_SEX_UNKNOWN] = @@ -36177,6 +39455,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Nauczyciel" #elif L==9 // pt "Professor/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_TCH][Usr_SEX_FEMALE] = @@ -36198,6 +39478,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Nauczycielka" #elif L==9 // pt "Professora" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_TCH][Usr_SEX_MALE] = @@ -36219,6 +39501,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Nauczyciel" #elif L==9 // pt "Professor" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_TCH][Usr_SEX_ALL] = @@ -36240,6 +39524,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Nauczyciele" #elif L==9 // pt "Professor/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_DEG_ADM][Usr_SEX_UNKNOWN] = @@ -36261,6 +39547,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Admin. stopien" #elif L==9 // pt "Admin. grau" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_DEG_ADM][Usr_SEX_FEMALE] = @@ -36282,6 +39570,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Admin. stopien" #elif L==9 // pt "Admin. grau" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_DEG_ADM][Usr_SEX_MALE] = @@ -36303,6 +39593,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Admin. stopien" #elif L==9 // pt "Admin. grau" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_DEG_ADM][Usr_SEX_ALL] = @@ -36324,6 +39616,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Admin. stopien" #elif L==9 // pt "Admin. grau" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_CTR_ADM][Usr_SEX_UNKNOWN] = @@ -36345,6 +39639,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Admin. centrum" #elif L==9 // pt "Admin. centro" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_CTR_ADM][Usr_SEX_FEMALE] = @@ -36366,6 +39662,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Admin. centrum" #elif L==9 // pt "Admin. centro" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_CTR_ADM][Usr_SEX_MALE] = @@ -36387,6 +39685,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Admin. centrum" #elif L==9 // pt "Admin. centro" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_CTR_ADM][Usr_SEX_ALL] = @@ -36408,6 +39708,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Admin. centrum" #elif L==9 // pt "Admin. centro" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_INS_ADM][Usr_SEX_UNKNOWN] = @@ -36429,6 +39731,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Admin. instytucji" #elif L==9 // pt "Admin. institução" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_INS_ADM][Usr_SEX_FEMALE] = @@ -36450,6 +39754,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Admin. instytucji" #elif L==9 // pt "Admin. institução" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_INS_ADM][Usr_SEX_MALE] = @@ -36471,6 +39777,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Admin. instytucji" #elif L==9 // pt "Admin. institução" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_INS_ADM][Usr_SEX_ALL] = @@ -36492,6 +39800,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Admin. instytucji" #elif L==9 // pt "Admin. institução" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_SYS_ADM][Usr_SEX_UNKNOWN] = @@ -36513,6 +39823,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Superuzytkownik" #elif L==9 // pt "Superutilizador/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_SYS_ADM][Usr_SEX_FEMALE] = @@ -36534,6 +39846,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Superuzytkownik" #elif L==9 // pt "Superutilizadora" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_SYS_ADM][Usr_SEX_MALE] = @@ -36555,6 +39869,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Superuzytkownik" #elif L==9 // pt "Superutilizador" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_SYS_ADM][Usr_SEX_ALL] = @@ -36576,6 +39892,8 @@ const char *Txt_ROLES_SINGUL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Superuzytkownicy" #elif L==9 // pt "Superutilizador/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -36600,6 +39918,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "nieznany" #elif L==9 // pt "desconhecido/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_UNK][Usr_SEX_FEMALE] = @@ -36621,6 +39941,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "nieznana" #elif L==9 // pt "desconhecida" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_UNK][Usr_SEX_MALE] = @@ -36642,6 +39964,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "nieznany" #elif L==9 // pt "desconhecido" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_UNK][Usr_SEX_ALL] = @@ -36663,6 +39987,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "nieznani" #elif L==9 // pt "desconhecido/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_GST][Usr_SEX_UNKNOWN] = @@ -36684,6 +40010,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "gość" #elif L==9 // pt "convidado/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_GST][Usr_SEX_FEMALE] = @@ -36705,6 +40033,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "goscinna" #elif L==9 // pt "convidada" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_GST][Usr_SEX_MALE] = @@ -36726,6 +40056,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "goscinny" #elif L==9 // pt "convidado" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_GST][Usr_SEX_ALL] = @@ -36747,6 +40079,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "goscinni" #elif L==9 // pt "convidado/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_USR][Usr_SEX_UNKNOWN] = @@ -36768,6 +40102,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "użytkownika" #elif L==9 // pt "utilizador/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_USR][Usr_SEX_FEMALE] = @@ -36789,6 +40125,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "użytkownika" #elif L==9 // pt "utilizadora" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_USR][Usr_SEX_MALE] = @@ -36810,6 +40148,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "użytkownika" #elif L==9 // pt "utilizador" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_USR][Usr_SEX_ALL] = @@ -36831,6 +40171,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "użytkownika" #elif L==9 // pt "utilizador/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_STD][Usr_SEX_UNKNOWN] = @@ -36852,6 +40194,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "student" #elif L==9 // pt "estudante" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_STD][Usr_SEX_FEMALE] = @@ -36873,6 +40217,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "studentka" #elif L==9 // pt "estudante" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_STD][Usr_SEX_MALE] = @@ -36894,6 +40240,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "student" #elif L==9 // pt "estudante" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_STD][Usr_SEX_ALL] = @@ -36915,6 +40263,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "studenci" #elif L==9 // pt "estudante" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_NET][Usr_SEX_UNKNOWN] = @@ -36936,6 +40286,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "nauczyciel nie edytujący" #elif L==9 // pt "professor/a não editor/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_NET][Usr_SEX_FEMALE] = @@ -36957,6 +40309,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "nauczycielka nie edytujący" #elif L==9 // pt "professora não editora" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_NET][Usr_SEX_MALE] = @@ -36978,6 +40332,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "nauczyciel nie edytujący" #elif L==9 // pt "professor não editor" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_NET][Usr_SEX_ALL] = @@ -36999,6 +40355,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "nauczyciele nie edytujący" #elif L==9 // pt "professor/a não editor/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_TCH][Usr_SEX_UNKNOWN] = @@ -37020,6 +40378,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "nauczyciel" #elif L==9 // pt "professor/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_TCH][Usr_SEX_FEMALE] = @@ -37041,6 +40401,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "nauczycielka" #elif L==9 // pt "professora" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_TCH][Usr_SEX_MALE] = @@ -37062,6 +40424,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "nauczyciel" #elif L==9 // pt "professor" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_TCH][Usr_SEX_ALL] = @@ -37083,6 +40447,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "nauczyciele" #elif L==9 // pt "professor/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_DEG_ADM][Usr_SEX_UNKNOWN] = @@ -37104,6 +40470,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "admin. stopien" #elif L==9 // pt "admin. grau" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_DEG_ADM][Usr_SEX_FEMALE] = @@ -37125,6 +40493,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "admin. stopien" #elif L==9 // pt "admin. grau" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_DEG_ADM][Usr_SEX_MALE] = @@ -37146,6 +40516,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "admin. stopien" #elif L==9 // pt "admin. grau" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_DEG_ADM][Usr_SEX_ALL] = @@ -37167,6 +40539,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "admin. stopien" #elif L==9 // pt "admin. grau" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_CTR_ADM][Usr_SEX_UNKNOWN] = @@ -37188,6 +40562,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "admin. centrum" #elif L==9 // pt "admin. centro" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_CTR_ADM][Usr_SEX_FEMALE] = @@ -37209,6 +40585,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "admin. centrum" #elif L==9 // pt "admin. centro" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_CTR_ADM][Usr_SEX_MALE] = @@ -37230,6 +40608,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "admin. centrum" #elif L==9 // pt "admin. centro" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_CTR_ADM][Usr_SEX_ALL] = @@ -37251,6 +40631,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "admin. centrum" #elif L==9 // pt "admin. centro" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_INS_ADM][Usr_SEX_UNKNOWN] = @@ -37272,6 +40654,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "admin. instytucji" #elif L==9 // pt "admin. institução" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_INS_ADM][Usr_SEX_FEMALE] = @@ -37293,6 +40677,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "admin. instytucji" #elif L==9 // pt "admin. institução" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_INS_ADM][Usr_SEX_MALE] = @@ -37314,6 +40700,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "admin. instytucji" #elif L==9 // pt "admin. institução" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_INS_ADM][Usr_SEX_ALL] = @@ -37335,6 +40723,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "admin. instytucji" #elif L==9 // pt "admin. institução" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_SYS_ADM][Usr_SEX_UNKNOWN] = @@ -37356,6 +40746,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "superuzytkownik" #elif L==9 // pt "superutilizador/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_SYS_ADM][Usr_SEX_FEMALE] = @@ -37377,6 +40769,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "superuzytkowniczka" #elif L==9 // pt "superutilizadora" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_SYS_ADM][Usr_SEX_MALE] = @@ -37398,6 +40792,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "superużytkownika" #elif L==9 // pt "superutilizador" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_SYS_ADM][Usr_SEX_ALL] = @@ -37419,6 +40815,8 @@ const char *Txt_ROLES_SINGUL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "superuzytkownicy" #elif L==9 // pt "superutilizador/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -37443,6 +40841,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Nieznany" #elif L==9 // pt "Desconhecidos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_UNK][Usr_SEX_FEMALE] = @@ -37464,6 +40864,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Nieznana" #elif L==9 // pt "Desconhecidas" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_UNK][Usr_SEX_MALE] = @@ -37485,6 +40887,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Nieznany" #elif L==9 // pt "Desconhecidos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_UNK][Usr_SEX_ALL] = @@ -37506,6 +40910,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Nieznani" #elif L==9 // pt "Desconhecidos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_GST][Usr_SEX_UNKNOWN] = @@ -37527,6 +40933,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Zaproszenie" #elif L==9 // pt "Convidados" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_GST][Usr_SEX_FEMALE] = @@ -37548,6 +40956,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Zaproszona" #elif L==9 // pt "Convidadas" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_GST][Usr_SEX_MALE] = @@ -37569,6 +40979,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Zaproszony" #elif L==9 // pt "Convidados" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_GST][Usr_SEX_ALL] = @@ -37590,6 +41002,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Zaproszeni" #elif L==9 // pt "Convidados" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_USR][Usr_SEX_UNKNOWN] = @@ -37611,6 +41025,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Użytkownicy" #elif L==9 // pt "Utilizadores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_USR][Usr_SEX_FEMALE] = @@ -37632,6 +41048,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Użytkownicy" #elif L==9 // pt "Utilizadoras" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_USR][Usr_SEX_MALE] = @@ -37653,6 +41071,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Użytkownicy" #elif L==9 // pt "Utilizadores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_USR][Usr_SEX_ALL] = @@ -37674,6 +41094,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Użytkownicy" #elif L==9 // pt "Utilizadores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_STD][Usr_SEX_UNKNOWN] = @@ -37695,6 +41117,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Studenci" #elif L==9 // pt "Estudantes" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_STD][Usr_SEX_FEMALE] = @@ -37716,6 +41140,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Studentki" #elif L==9 // pt "Estudantes" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_STD][Usr_SEX_MALE] = @@ -37737,6 +41163,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Studenci" #elif L==9 // pt "Estudantes" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_STD][Usr_SEX_ALL] = @@ -37758,6 +41186,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Studenci" #elif L==9 // pt "Estudantes" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_NET][Usr_SEX_UNKNOWN] = @@ -37779,6 +41209,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Nauczyciele nie edytujący" #elif L==9 // pt "Professores não editores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_NET][Usr_SEX_FEMALE] = @@ -37800,6 +41232,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Nauczycielki nie edytujący" #elif L==9 // pt "Professoras não editoras" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_NET][Usr_SEX_MALE] = @@ -37821,6 +41255,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Nauczyciele nie edytujący" #elif L==9 // pt "Professores não editores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_NET][Usr_SEX_ALL] = @@ -37842,6 +41278,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Nauczyciele nie edytujący" #elif L==9 // pt "Professores não editores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_TCH][Usr_SEX_UNKNOWN] = @@ -37863,6 +41301,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Nauczyciele" #elif L==9 // pt "Professores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_TCH][Usr_SEX_FEMALE] = @@ -37884,6 +41324,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Nauczycielki" #elif L==9 // pt "Professoras" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_TCH][Usr_SEX_MALE] = @@ -37905,6 +41347,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Nauczyciele" #elif L==9 // pt "Professores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_TCH][Usr_SEX_ALL] = @@ -37926,6 +41370,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Nauczyciele" #elif L==9 // pt "Professores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_DEG_ADM][Usr_SEX_UNKNOWN] = @@ -37947,6 +41393,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Administratorzy" #elif L==9 // pt "Administradores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_DEG_ADM][Usr_SEX_FEMALE] = @@ -37968,6 +41416,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Administratorki" #elif L==9 // pt "Administradoras" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_DEG_ADM][Usr_SEX_MALE] = @@ -37989,6 +41439,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Administratorzy" #elif L==9 // pt "Administradores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_DEG_ADM][Usr_SEX_ALL] = @@ -38010,6 +41462,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Administratorzy" #elif L==9 // pt "Administradores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_CTR_ADM][Usr_SEX_UNKNOWN] = @@ -38031,6 +41485,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Administratorzy" #elif L==9 // pt "Administradores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_CTR_ADM][Usr_SEX_FEMALE] = @@ -38052,6 +41508,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Administratorki" #elif L==9 // pt "Administradoras" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_CTR_ADM][Usr_SEX_MALE] = @@ -38073,6 +41531,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Administratorzy" #elif L==9 // pt "Administradores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_CTR_ADM][Usr_SEX_ALL] = @@ -38094,6 +41554,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Administratorzy" #elif L==9 // pt "Administradores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_INS_ADM][Usr_SEX_UNKNOWN] = @@ -38115,6 +41577,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Administratorzy" #elif L==9 // pt "Administradores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_INS_ADM][Usr_SEX_FEMALE] = @@ -38136,6 +41600,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Administratorki" #elif L==9 // pt "Administradoras" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_INS_ADM][Usr_SEX_MALE] = @@ -38157,6 +41623,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Administratorzy" #elif L==9 // pt "Administradores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_INS_ADM][Usr_SEX_ALL] = @@ -38178,6 +41646,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Administratorzy" #elif L==9 // pt "Administradores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_SYS_ADM][Usr_SEX_UNKNOWN] = @@ -38199,6 +41669,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Superużytkownika" #elif L==9 // pt "Superutilizadores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_SYS_ADM][Usr_SEX_FEMALE] = @@ -38220,6 +41692,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Superuzytkowniczka" #elif L==9 // pt "Superutilizadoras" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_SYS_ADM][Usr_SEX_MALE] = @@ -38241,6 +41715,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Superuzytkownik" #elif L==9 // pt "Superutilizadores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_SYS_ADM][Usr_SEX_ALL] = @@ -38262,6 +41738,8 @@ const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "Superuzytkownicy" #elif L==9 // pt "Superutilizadores" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -38286,6 +41764,8 @@ const char *Txt_ROLES_PLURAL_BRIEF_Abc[Rol_NUM_ROLES] = "Niez." #elif L==9 // pt "Desc." +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_GST] = @@ -38307,6 +41787,8 @@ const char *Txt_ROLES_PLURAL_BRIEF_Abc[Rol_NUM_ROLES] = "Zapr." #elif L==9 // pt "Conv." +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_USR] = @@ -38328,6 +41810,8 @@ const char *Txt_ROLES_PLURAL_BRIEF_Abc[Rol_NUM_ROLES] = "Użyt." #elif L==9 // pt "Util." +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_STD] = @@ -38349,6 +41833,8 @@ const char *Txt_ROLES_PLURAL_BRIEF_Abc[Rol_NUM_ROLES] = "Stud." #elif L==9 // pt "Estu." +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_NET] = @@ -38370,6 +41856,8 @@ const char *Txt_ROLES_PLURAL_BRIEF_Abc[Rol_NUM_ROLES] = "Nauc.n.e." #elif L==9 // pt "Prof.n.e." +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_TCH] = @@ -38391,6 +41879,8 @@ const char *Txt_ROLES_PLURAL_BRIEF_Abc[Rol_NUM_ROLES] = "Nauc." #elif L==9 // pt "Prof." +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_DEG_ADM] = @@ -38412,6 +41902,8 @@ const char *Txt_ROLES_PLURAL_BRIEF_Abc[Rol_NUM_ROLES] = "Admi." #elif L==9 // pt "Admi." +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_CTR_ADM] = @@ -38433,6 +41925,8 @@ const char *Txt_ROLES_PLURAL_BRIEF_Abc[Rol_NUM_ROLES] = "Admi." #elif L==9 // pt "Admi." +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_INS_ADM] = @@ -38454,6 +41948,8 @@ const char *Txt_ROLES_PLURAL_BRIEF_Abc[Rol_NUM_ROLES] = "Admi." #elif L==9 // pt "Admi." +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_SYS_ADM] = @@ -38475,6 +41971,8 @@ const char *Txt_ROLES_PLURAL_BRIEF_Abc[Rol_NUM_ROLES] = "Supe." #elif L==9 // pt "Supe." +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -38499,6 +41997,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "nieznany" #elif L==9 // pt "desconhecidos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_UNK][Usr_SEX_FEMALE] = @@ -38520,6 +42020,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "nieznana" #elif L==9 // pt "desconhecidas" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_UNK][Usr_SEX_MALE] = @@ -38541,6 +42043,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "nieznany" #elif L==9 // pt "desconhecidos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_UNK][Usr_SEX_ALL] = @@ -38562,6 +42066,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "nieznani" #elif L==9 // pt "desconhecidos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_GST][Usr_SEX_UNKNOWN] = @@ -38583,6 +42089,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "zaproszenie" #elif L==9 // pt "convidados" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_GST][Usr_SEX_FEMALE] = @@ -38604,6 +42112,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "zaproszona" #elif L==9 // pt "convidadas" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_GST][Usr_SEX_MALE] = @@ -38625,6 +42135,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "zaproszony" #elif L==9 // pt "convidados" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_GST][Usr_SEX_ALL] = @@ -38646,6 +42158,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "zaproszeni" #elif L==9 // pt "convidados" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_USR][Usr_SEX_UNKNOWN] = @@ -38667,6 +42181,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "użytkownicy" #elif L==9 // pt "utilizadores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_USR][Usr_SEX_FEMALE] = @@ -38688,6 +42204,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "użytkownicy" #elif L==9 // pt "utilizadoras" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_USR][Usr_SEX_MALE] = @@ -38709,6 +42227,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "użytkownicy" #elif L==9 // pt "utilizadores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_USR][Usr_SEX_ALL] = @@ -38730,6 +42250,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "użytkownicy" #elif L==9 // pt "utilizadores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_STD][Usr_SEX_UNKNOWN] = @@ -38751,6 +42273,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "studenci" #elif L==9 // pt "estudantes" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_STD][Usr_SEX_FEMALE] = @@ -38772,6 +42296,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "studenka" #elif L==9 // pt "estudantes" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_STD][Usr_SEX_MALE] = @@ -38793,6 +42319,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "studentci" #elif L==9 // pt "estudantes" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_STD][Usr_SEX_ALL] = @@ -38814,6 +42342,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "studentci" #elif L==9 // pt "estudantes" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_NET][Usr_SEX_UNKNOWN] = @@ -38835,6 +42365,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "nauczyciele nie edytujący" #elif L==9 // pt "professores não editores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_NET][Usr_SEX_FEMALE] = @@ -38856,6 +42388,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "nauczycielki nie edytujący" #elif L==9 // pt "professoras não editoras" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_NET][Usr_SEX_MALE] = @@ -38877,6 +42411,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "nauczyciele nie edytujący" #elif L==9 // pt "professores não editores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_NET][Usr_SEX_ALL] = @@ -38898,6 +42434,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "nauczyciele nie edytujący" #elif L==9 // pt "professores não editores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_TCH][Usr_SEX_UNKNOWN] = @@ -38919,6 +42457,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "nauczyciele" #elif L==9 // pt "professores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_TCH][Usr_SEX_FEMALE] = @@ -38940,6 +42480,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "nauczycielki" #elif L==9 // pt "professoras" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_TCH][Usr_SEX_MALE] = @@ -38961,6 +42503,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "nauczyciele" #elif L==9 // pt "professores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_TCH][Usr_SEX_ALL] = @@ -38982,6 +42526,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "nauczyciele" #elif L==9 // pt "professores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_DEG_ADM][Usr_SEX_UNKNOWN] = @@ -39003,6 +42549,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "administratorzy" #elif L==9 // pt "administradores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_DEG_ADM][Usr_SEX_FEMALE] = @@ -39024,6 +42572,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "administratorki" #elif L==9 // pt "administradoras" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_DEG_ADM][Usr_SEX_MALE] = @@ -39045,6 +42595,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "administratorzy" #elif L==9 // pt "administradores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_DEG_ADM][Usr_SEX_ALL] = @@ -39066,6 +42618,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "administratorzy" #elif L==9 // pt "administradores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_CTR_ADM][Usr_SEX_UNKNOWN] = @@ -39087,6 +42641,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "administratorzy" #elif L==9 // pt "administradores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_CTR_ADM][Usr_SEX_FEMALE] = @@ -39108,6 +42664,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "administratorki" #elif L==9 // pt "administradoras" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_CTR_ADM][Usr_SEX_MALE] = @@ -39129,6 +42687,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "administratorzy" #elif L==9 // pt "administradores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_CTR_ADM][Usr_SEX_ALL] = @@ -39150,6 +42710,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "administratorzy" #elif L==9 // pt "administradores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_INS_ADM][Usr_SEX_UNKNOWN] = @@ -39171,6 +42733,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "administratorzy" #elif L==9 // pt "administradores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_INS_ADM][Usr_SEX_FEMALE] = @@ -39192,6 +42756,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "administratorki" #elif L==9 // pt "administradoras" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_INS_ADM][Usr_SEX_MALE] = @@ -39213,6 +42779,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "administratorzy" #elif L==9 // pt "administradores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_INS_ADM][Usr_SEX_ALL] = @@ -39234,6 +42802,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "administratorzy" #elif L==9 // pt "administradores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_SYS_ADM][Usr_SEX_UNKNOWN] = @@ -39255,6 +42825,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "superusers" // Potrzebujesz tlumaczenie #elif L==9 // pt "superutilizadores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_SYS_ADM][Usr_SEX_FEMALE] = @@ -39276,6 +42848,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "superusers" // Potrzebujesz tlumaczenie #elif L==9 // pt "superutilizadoras" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_SYS_ADM][Usr_SEX_MALE] = @@ -39297,6 +42871,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "superusers" // Potrzebujesz tlumaczenie #elif L==9 // pt "superutilizadores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Rol_SYS_ADM][Usr_SEX_ALL] = @@ -39318,6 +42894,8 @@ const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = "superusers" // Potrzebujesz tlumaczenie #elif L==9 // pt "superutilizadores" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -39340,6 +42918,8 @@ const char *Txt_Room = "Klasa"; #elif L==9 // pt "Sala"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Room_X_removed = // Warning: it is very important to include %s in the following sentences @@ -39361,6 +42941,8 @@ const char *Txt_Room_X_removed = // Warning: it is very important to include %s "Klasa %s usuniete."; #elif L==9 // pt "Sala %s removida."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_ROOMS_HELP_ORDER[Roo_NUM_ORDERS] = @@ -39384,6 +42966,8 @@ const char *Txt_ROOMS_HELP_ORDER[Roo_NUM_ORDERS] = "Sortuj według budynek" #elif L==9 // pt "Classificar por edifício" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Roo_ORDER_BY_FLOOR] = @@ -39405,6 +42989,8 @@ const char *Txt_ROOMS_HELP_ORDER[Roo_NUM_ORDERS] = "Sortuj według piętrze" #elif L==9 // pt "Classificar por andar" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Roo_ORDER_BY_TYPE] = @@ -39426,6 +43012,8 @@ const char *Txt_ROOMS_HELP_ORDER[Roo_NUM_ORDERS] = "Sortuj według typ" #elif L==9 // pt "Classificar por tipo" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Roo_ORDER_BY_SHRT_NAME] = @@ -39447,6 +43035,8 @@ const char *Txt_ROOMS_HELP_ORDER[Roo_NUM_ORDERS] = "Sortuj według krótkiej nazwy" #elif L==9 // pt "Classificar por nome abreviado" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Roo_ORDER_BY_FULL_NAME] = @@ -39468,6 +43058,8 @@ const char *Txt_ROOMS_HELP_ORDER[Roo_NUM_ORDERS] = "Sortuj według pełna nazwa" #elif L==9 // pt "Classificar por nome completo" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Roo_ORDER_BY_CAPACITY] = @@ -39489,6 +43081,8 @@ const char *Txt_ROOMS_HELP_ORDER[Roo_NUM_ORDERS] = "Sortuj wed&lsgtrok;ug pojemności miejsc" #elif L==9 // pt "Ordenar por capacidade" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -39513,6 +43107,8 @@ const char *Txt_ROOMS_ORDER[Roo_NUM_ORDERS] = "Budynek" #elif L==9 // pt "Edifício" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Roo_ORDER_BY_FLOOR] = @@ -39534,6 +43130,8 @@ const char *Txt_ROOMS_ORDER[Roo_NUM_ORDERS] = "Piętrze" #elif L==9 // pt "Andar" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Roo_ORDER_BY_TYPE] = @@ -39555,6 +43153,8 @@ const char *Txt_ROOMS_ORDER[Roo_NUM_ORDERS] = "Typ" #elif L==9 // pt "Tipo" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Roo_ORDER_BY_SHRT_NAME] = @@ -39576,6 +43176,8 @@ const char *Txt_ROOMS_ORDER[Roo_NUM_ORDERS] = "Krótkiej nazwy" #elif L==9 // pt "Nome abreviado" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Roo_ORDER_BY_FULL_NAME] = @@ -39597,6 +43199,8 @@ const char *Txt_ROOMS_ORDER[Roo_NUM_ORDERS] = "Pełna nazwa" #elif L==9 // pt "Nome completo" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Roo_ORDER_BY_CAPACITY] = @@ -39618,6 +43222,8 @@ const char *Txt_ROOMS_ORDER[Roo_NUM_ORDERS] = "Pojemność" #elif L==9 // pt "Capacidade" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -39642,6 +43248,8 @@ const char *Txt_ROOM_TYPES[Roo_NUM_TYPES] = "" #elif L==9 // pt "" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Roo_ADMINISTRATION] = @@ -39663,6 +43271,8 @@ const char *Txt_ROOM_TYPES[Roo_NUM_TYPES] = "" #elif L==9 // pt "" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Roo_AUDITORIUM] = @@ -39684,6 +43294,8 @@ const char *Txt_ROOM_TYPES[Roo_NUM_TYPES] = "" #elif L==9 // pt "" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Roo_CAFETERIA] = @@ -39705,6 +43317,8 @@ const char *Txt_ROOM_TYPES[Roo_NUM_TYPES] = "" #elif L==9 // pt "" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Roo_CANTEEN] = @@ -39726,6 +43340,8 @@ const char *Txt_ROOM_TYPES[Roo_NUM_TYPES] = "" #elif L==9 // pt "" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Roo_CLASSROOM] = @@ -39747,6 +43363,8 @@ const char *Txt_ROOM_TYPES[Roo_NUM_TYPES] = "" #elif L==9 // pt "" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Roo_CONCIERGE] = @@ -39768,6 +43386,8 @@ const char *Txt_ROOM_TYPES[Roo_NUM_TYPES] = "" #elif L==9 // pt "" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Roo_CORRIDOR] = @@ -39789,6 +43409,8 @@ const char *Txt_ROOM_TYPES[Roo_NUM_TYPES] = "" #elif L==9 // pt "" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Roo_GYM] = @@ -39810,6 +43432,8 @@ const char *Txt_ROOM_TYPES[Roo_NUM_TYPES] = "" #elif L==9 // pt "" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Roo_HALL] = @@ -39831,6 +43455,8 @@ const char *Txt_ROOM_TYPES[Roo_NUM_TYPES] = "" #elif L==9 // pt "" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Roo_KINDERGARTEN] = @@ -39852,6 +43478,8 @@ const char *Txt_ROOM_TYPES[Roo_NUM_TYPES] = "" #elif L==9 // pt "" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Roo_LABORATORY] = @@ -39873,6 +43501,8 @@ const char *Txt_ROOM_TYPES[Roo_NUM_TYPES] = "" #elif L==9 // pt "" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Roo_LIBRARY] = @@ -39894,6 +43524,8 @@ const char *Txt_ROOM_TYPES[Roo_NUM_TYPES] = "" #elif L==9 // pt "" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Roo_OFFICE] = @@ -39915,6 +43547,8 @@ const char *Txt_ROOM_TYPES[Roo_NUM_TYPES] = "" #elif L==9 // pt "" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Roo_OUTDOORS] = @@ -39936,6 +43570,8 @@ const char *Txt_ROOM_TYPES[Roo_NUM_TYPES] = "" #elif L==9 // pt "" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Roo_PARKING] = @@ -39957,6 +43593,8 @@ const char *Txt_ROOM_TYPES[Roo_NUM_TYPES] = "" #elif L==9 // pt "" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Roo_PAVILION] = @@ -39978,6 +43616,8 @@ const char *Txt_ROOM_TYPES[Roo_NUM_TYPES] = "" #elif L==9 // pt "" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Roo_ROOM] = @@ -39999,6 +43639,8 @@ const char *Txt_ROOM_TYPES[Roo_NUM_TYPES] = "Klasa" #elif L==9 // pt "Sala" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Roo_SECRETARIAT] = @@ -40020,6 +43662,8 @@ const char *Txt_ROOM_TYPES[Roo_NUM_TYPES] = "" #elif L==9 // pt "" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Roo_SEMINAR] = @@ -40041,6 +43685,8 @@ const char *Txt_ROOM_TYPES[Roo_NUM_TYPES] = "" #elif L==9 // pt "" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Roo_SHOP] = @@ -40062,6 +43708,8 @@ const char *Txt_ROOM_TYPES[Roo_NUM_TYPES] = "" #elif L==9 // pt "" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Roo_STORE] = @@ -40083,6 +43731,8 @@ const char *Txt_ROOM_TYPES[Roo_NUM_TYPES] = "" #elif L==9 // pt "" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Roo_TOILETS] = @@ -40104,6 +43754,8 @@ const char *Txt_ROOM_TYPES[Roo_NUM_TYPES] = "" #elif L==9 // pt "" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Roo_VIRTUAL] = @@ -40125,6 +43777,8 @@ const char *Txt_ROOM_TYPES[Roo_NUM_TYPES] = "" #elif L==9 // pt "" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Roo_YARD] = @@ -40146,6 +43800,8 @@ const char *Txt_ROOM_TYPES[Roo_NUM_TYPES] = "" #elif L==9 // pt "" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -40168,6 +43824,8 @@ const char *Txt_Rooms = "Klasy"; #elif L==9 // pt "Salas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Rooms_with_users = @@ -40189,6 +43847,8 @@ const char *Txt_Rooms_with_users = "Rooms with users"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Salas com usuários"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_ROOT_FOLDER_EXTERNAL_NAMES[Brw_NUM_TYPES_FILE_BROWSER] = @@ -40214,6 +43874,8 @@ const char *Txt_ROOT_FOLDER_EXTERNAL_NAMES[Brw_NUM_TYPES_FILE_BROWSER] = "dokumenty" #elif L==9 // pt "documentos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Brw_SHOW_MRK_CRS] = @@ -40235,6 +43897,8 @@ const char *Txt_ROOT_FOLDER_EXTERNAL_NAMES[Brw_NUM_TYPES_FILE_BROWSER] = "marks" // Potrzebujesz tlumaczenie #elif L==9 // pt "notas" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Brw_ADMI_DOC_CRS] = @@ -40256,6 +43920,8 @@ const char *Txt_ROOT_FOLDER_EXTERNAL_NAMES[Brw_NUM_TYPES_FILE_BROWSER] = "dokumenty" #elif L==9 // pt "documentos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Brw_ADMI_SHR_CRS] = @@ -40277,6 +43943,8 @@ const char *Txt_ROOT_FOLDER_EXTERNAL_NAMES[Brw_NUM_TYPES_FILE_BROWSER] = "shared" // Potrzebujesz tlumaczenie #elif L==9 // pt "comum" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Brw_ADMI_SHR_GRP] = @@ -40298,6 +43966,8 @@ const char *Txt_ROOT_FOLDER_EXTERNAL_NAMES[Brw_NUM_TYPES_FILE_BROWSER] = "shared" // Potrzebujesz tlumaczenie #elif L==9 // pt "comum" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Brw_ADMI_WRK_USR] = @@ -40319,6 +43989,8 @@ const char *Txt_ROOT_FOLDER_EXTERNAL_NAMES[Brw_NUM_TYPES_FILE_BROWSER] = "homework" // Potrzebujesz tlumaczenie #elif L==9 // pt "trabalhos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Brw_ADMI_WRK_CRS] = @@ -40340,6 +44012,8 @@ const char *Txt_ROOT_FOLDER_EXTERNAL_NAMES[Brw_NUM_TYPES_FILE_BROWSER] = "homework" // Potrzebujesz tlumaczenie #elif L==9 // pt "trabalhos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Brw_ADMI_MRK_CRS] = @@ -40361,6 +44035,8 @@ const char *Txt_ROOT_FOLDER_EXTERNAL_NAMES[Brw_NUM_TYPES_FILE_BROWSER] = "marks" // Potrzebujesz tlumaczenie #elif L==9 // pt "notas" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Brw_ADMI_BRF_USR] = @@ -40382,6 +44058,8 @@ const char *Txt_ROOT_FOLDER_EXTERNAL_NAMES[Brw_NUM_TYPES_FILE_BROWSER] = "briefcase" // Potrzebujesz tlumaczenie #elif L==9 // pt "pasta" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Brw_SHOW_DOC_GRP] = @@ -40403,6 +44081,8 @@ const char *Txt_ROOT_FOLDER_EXTERNAL_NAMES[Brw_NUM_TYPES_FILE_BROWSER] = "dokumenty" #elif L==9 // pt "documentos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Brw_ADMI_DOC_GRP] = @@ -40424,6 +44104,8 @@ const char *Txt_ROOT_FOLDER_EXTERNAL_NAMES[Brw_NUM_TYPES_FILE_BROWSER] = "dokumenty" #elif L==9 // pt "documentos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Brw_SHOW_MRK_GRP] = @@ -40445,6 +44127,8 @@ const char *Txt_ROOT_FOLDER_EXTERNAL_NAMES[Brw_NUM_TYPES_FILE_BROWSER] = "marks" // Potrzebujesz tlumaczenie #elif L==9 // pt "notas" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Brw_ADMI_MRK_GRP] = @@ -40466,6 +44150,8 @@ const char *Txt_ROOT_FOLDER_EXTERNAL_NAMES[Brw_NUM_TYPES_FILE_BROWSER] = "marks" // Potrzebujesz tlumaczenie #elif L==9 // pt "notas" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Brw_ADMI_ASG_USR] = @@ -40487,6 +44173,8 @@ const char *Txt_ROOT_FOLDER_EXTERNAL_NAMES[Brw_NUM_TYPES_FILE_BROWSER] = "assignments" // Potrzebujesz tlumaczenie #elif L==9 // pt "atividades" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Brw_ADMI_ASG_CRS] = @@ -40508,6 +44196,8 @@ const char *Txt_ROOT_FOLDER_EXTERNAL_NAMES[Brw_NUM_TYPES_FILE_BROWSER] = "assignments" // Potrzebujesz tlumaczenie #elif L==9 // pt "atividades" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Brw_SHOW_DOC_DEG] = @@ -40529,6 +44219,8 @@ const char *Txt_ROOT_FOLDER_EXTERNAL_NAMES[Brw_NUM_TYPES_FILE_BROWSER] = "dokumenty" #elif L==9 // pt "documentos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Brw_ADMI_DOC_DEG] = @@ -40550,6 +44242,8 @@ const char *Txt_ROOT_FOLDER_EXTERNAL_NAMES[Brw_NUM_TYPES_FILE_BROWSER] = "dokumenty" #elif L==9 // pt "documentos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Brw_SHOW_DOC_CTR] = @@ -40571,6 +44265,8 @@ const char *Txt_ROOT_FOLDER_EXTERNAL_NAMES[Brw_NUM_TYPES_FILE_BROWSER] = "dokumenty" #elif L==9 // pt "documentos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Brw_ADMI_DOC_CTR] = @@ -40592,6 +44288,8 @@ const char *Txt_ROOT_FOLDER_EXTERNAL_NAMES[Brw_NUM_TYPES_FILE_BROWSER] = "dokumenty" #elif L==9 // pt "documentos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Brw_SHOW_DOC_INS] = @@ -40613,6 +44311,8 @@ const char *Txt_ROOT_FOLDER_EXTERNAL_NAMES[Brw_NUM_TYPES_FILE_BROWSER] = "dokumenty" #elif L==9 // pt "documentos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Brw_ADMI_DOC_INS] = @@ -40634,6 +44334,8 @@ const char *Txt_ROOT_FOLDER_EXTERNAL_NAMES[Brw_NUM_TYPES_FILE_BROWSER] = "dokumenty" #elif L==9 // pt "documentos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Brw_ADMI_SHR_DEG] = @@ -40655,6 +44357,8 @@ const char *Txt_ROOT_FOLDER_EXTERNAL_NAMES[Brw_NUM_TYPES_FILE_BROWSER] = "shared" // Potrzebujesz tlumaczenie #elif L==9 // pt "comum" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Brw_ADMI_SHR_CTR] = @@ -40676,6 +44380,8 @@ const char *Txt_ROOT_FOLDER_EXTERNAL_NAMES[Brw_NUM_TYPES_FILE_BROWSER] = "shared" // Potrzebujesz tlumaczenie #elif L==9 // pt "comum" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Brw_ADMI_SHR_INS] = @@ -40697,6 +44403,8 @@ const char *Txt_ROOT_FOLDER_EXTERNAL_NAMES[Brw_NUM_TYPES_FILE_BROWSER] = "shared" // Potrzebujesz tlumaczenie #elif L==9 // pt "comum" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Brw_ADMI_TCH_CRS] = @@ -40718,6 +44426,8 @@ const char *Txt_ROOT_FOLDER_EXTERNAL_NAMES[Brw_NUM_TYPES_FILE_BROWSER] = "prywatne" #elif L==9 // pt "privados" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Brw_ADMI_TCH_GRP] = @@ -40739,6 +44449,8 @@ const char *Txt_ROOT_FOLDER_EXTERNAL_NAMES[Brw_NUM_TYPES_FILE_BROWSER] = "prywatne" #elif L==9 // pt "privados" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Brw_ADMI_DOC_PRJ] = @@ -40760,6 +44472,8 @@ const char *Txt_ROOT_FOLDER_EXTERNAL_NAMES[Brw_NUM_TYPES_FILE_BROWSER] = "dokumenty" #elif L==9 // pt "documentos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Brw_ADMI_ASS_PRJ] = @@ -40781,6 +44495,8 @@ const char *Txt_ROOT_FOLDER_EXTERNAL_NAMES[Brw_NUM_TYPES_FILE_BROWSER] = "ocena" #elif L==9 // pt "avaliacao" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -40803,6 +44519,8 @@ const char *Txt_Save_as = "Zapisz jako"; #elif L==9 // pt "Salvar como"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Save_changes = @@ -40824,6 +44542,8 @@ const char *Txt_Save_changes = "Zapisz zmiany"; #elif L==9 // pt "Salvar alterações"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Save_file_properties = @@ -40845,6 +44565,8 @@ const char *Txt_Save_file_properties = "Zapisz właściwości pliku"; #elif L==9 // pt "Salvar as propriedades do arquivo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Scope = @@ -40866,6 +44588,8 @@ const char *Txt_Scope = "Scope"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Âmbito"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Score = @@ -40887,6 +44611,8 @@ const char *Txt_Score = "Score"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Pontuação"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Search = @@ -40908,6 +44634,8 @@ const char *Txt_Search = "Szukaj"; #elif L==9 // pt "Procurar"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Search_courses = @@ -40929,6 +44657,8 @@ const char *Txt_Search_courses = "Szukaj kursów"; #elif L==9 // pt "Procurar disciplinas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_See_full_notice = @@ -40950,6 +44680,8 @@ const char *Txt_See_full_notice = "Wiadomości cały obwieszczenie"; #elif L==9 // pt "Ver aviso completo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_See_less = @@ -40971,6 +44703,8 @@ const char *Txt_See_less = "Zobacz mniej"; #elif L==9 // pt "Ver menos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_See_message = @@ -40992,6 +44726,8 @@ const char *Txt_See_message = "See message"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Ver mensagem"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_See_messages_received = @@ -41013,6 +44749,8 @@ const char *Txt_See_messages_received = "Wiadomości odebrane"; #elif L==9 // pt "Ver mensagens recebidas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_See_more = @@ -41034,6 +44772,8 @@ const char *Txt_See_more = "Zobacz więcej"; #elif L==9 // pt "Ver mais"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_See_new_activity = @@ -41055,6 +44795,8 @@ const char *Txt_See_new_activity = "Zobacz nową aktywność"; #elif L==9 // pt "Ver nova atividade"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_See_notifications = @@ -41076,6 +44818,8 @@ const char *Txt_See_notifications = "See notifications"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Ver notificações"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_See_only_the_latest_X_COMMENTS = // Warning: it is very important to include %u in the following sentences @@ -41097,6 +44841,8 @@ const char *Txt_See_only_the_latest_X_COMMENTS = // Warning: it is very importan "Zobacz tylko najnowsze %u"; #elif L==9 // pt "Ver apenas os %u últimos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_See_the_previous_X_COMMENTS = // Warning: it is very important to include %u in the following sentences @@ -41118,6 +44864,8 @@ const char *Txt_See_the_previous_X_COMMENTS = // Warning: it is very important t "Zobacz poprzednie %u"; #elif L==9 // pt "Ver os %u anteriores"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Select_another_country = @@ -41139,6 +44887,8 @@ const char *Txt_Select_another_country = "Wybierz inny kraj"; #elif L==9 // pt "Selecionar outro país"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Select_one_country = @@ -41160,6 +44910,8 @@ const char *Txt_Select_one_country = "Wybierz jeden kraj"; #elif L==9 // pt "Selecionar um país"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Select_or_create_another_center_in_X = // Warning: it is very important to include %s in the following sentences @@ -41181,6 +44933,8 @@ const char *Txt_Select_or_create_another_center_in_X = // Warning: it is very im "Select or create another center in the institution %s"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Selecionar ou criar um outro centro da institução %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Select_create_course_in_X = // Warning: it is very important to include %s in the following sentences @@ -41202,6 +44956,8 @@ const char *Txt_Select_create_course_in_X = // Warning: it is very important to "Select/create course in %s"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Selecionar/criar disciplina de %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Select_or_create_another_degree_in_X = // Warning: it is very important to include %s in the following sentences @@ -41223,6 +44979,8 @@ const char *Txt_Select_or_create_another_degree_in_X = // Warning: it is very im "Select or create another degree in %s"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Selecionar ou criar outro grau de %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Select_or_create_another_institution_in_X = // Warning: it is very important to include %s in the following sentences @@ -41244,6 +45002,8 @@ const char *Txt_Select_or_create_another_institution_in_X = // Warning: it is ve "Select or create another institution in %s"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Selecionar ou criar outra institução de %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Select_or_create_one_center_in_X = // Warning: it is very important to include %s in the following sentences @@ -41265,6 +45025,8 @@ const char *Txt_Select_or_create_one_center_in_X = // Warning: it is very import "Select or create one degree in %s"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Selecionar ou criar um centro de %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Select_or_create_one_course_in_X = // Warning: it is very important to include %s in the following sentences @@ -41286,6 +45048,8 @@ const char *Txt_Select_or_create_one_course_in_X = // Warning: it is very import "Select or create one course in %s"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Selecionar ou criar uma disciplina de %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Select_or_create_one_degree_in_X = // Warning: it is very important to include %s in the following sentences @@ -41307,6 +45071,8 @@ const char *Txt_Select_or_create_one_degree_in_X = // Warning: it is very import "Select or create one degree in %s"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Selecionar ou criar um grau de %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Select_or_create_one_institution_in_X = // Warning: it is very important to include %s in the following sentences @@ -41328,6 +45094,8 @@ const char *Txt_Select_or_create_one_institution_in_X = // Warning: it is very i "Select or create one institution in %s"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Selecionar ou criar uma institução de %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Select_one_or_more_files_from_your_computer_or_drag_and_drop_here = @@ -41358,6 +45126,8 @@ const char *Txt_Select_one_or_more_files_from_your_computer_or_drag_and_drop_her #elif L==9 // pt "Selecione um ou mais arquivos de seu computador
" "ou arrastar e soltar aqui"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Select_questions = @@ -41379,6 +45149,8 @@ const char *Txt_Select_questions = "Wybierz pytania"; #elif L==9 // pt "Selecionar perguntas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Select_the_groups_in_from_which_you_want_to_register_remove_users_ = @@ -41435,6 +45207,8 @@ const char *Txt_Select_the_groups_in_from_which_you_want_to_register_remove_user " ou removidos dos grupos selecionados, mas não da disciplina.
" "Se você não selecionar nenhum grupo, os usuários serão inscritos na disciplina, mas não em grupos específicos," " ou serão removidos da disciplina e de todos os grupos."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Select_users = @@ -41456,6 +45230,8 @@ const char *Txt_Select_users = "Wybierz użytkowników"; #elif L==9 // pt "Selecione usuários"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Selected_users_X_Followed_Y_Not_followed_Z = // Warning: it is very important to include three %u in the following sentences @@ -41495,6 +45271,8 @@ const char *Txt_Selected_users_X_Followed_Y_Not_followed_Z = // Warning: it is v "Usuários selecionados: %u
" "• Seguidos: %u
" "• Não seguidos: %u"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Send = @@ -41516,6 +45294,8 @@ const char *Txt_Send = "Wyślij"; #elif L==9 // pt "Enviar"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Send_message = @@ -41537,6 +45317,8 @@ const char *Txt_Send_message = "Wyślij wiadomość"; #elif L==9 // pt "Enviar mensagem"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Send_survey = @@ -41558,6 +45340,8 @@ const char *Txt_Send_survey = "Send survey"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Enviar inquérito"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Send_URL = @@ -41579,6 +45363,8 @@ const char *Txt_Send_URL = "Wyślij URL"; #elif L==9 // pt "Enviar URL"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Sender_banned_click_to_unban_him = @@ -41600,6 +45386,8 @@ const char *Txt_Sender_banned_click_to_unban_him = "Nadawca zbanowany; kliknij, aby odblokować ją/jego"; #elif L==9 // pt "Remetente banido; clique para desbanir ela/ele"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Sender_permitted_click_to_ban_him = @@ -41621,6 +45409,8 @@ const char *Txt_Sender_permitted_click_to_ban_him = "Nadawca dozwolony; kliknij, aby zbanować ją/jego"; #elif L==9 // pt "Remetente permitido; clique para banir ela/ele"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Session = @@ -41642,6 +45432,8 @@ const char *Txt_Session = "Sesja"; #elif L==9 // pt "Sessão"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_session = @@ -41663,6 +45455,8 @@ const char *Txt_session = "sesja"; #elif L==9 // pt "sessão"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Session_X_removed = // Warning: it is very important to include %s in the following sentences @@ -41684,6 +45478,8 @@ const char *Txt_Session_X_removed = // Warning: it is very important to include "Sesja %s usunięte."; #elif L==9 // pt "Sessão %s removida."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Sessions = @@ -41705,6 +45501,8 @@ const char *Txt_Sessions = "Sesje"; #elif L==9 // pt "Sessões"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_sessions = @@ -41726,6 +45524,8 @@ const char *Txt_sessions = "sesje"; #elif L==9 // pt "sessões"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Set_of_questions = @@ -41747,6 +45547,8 @@ const char *Txt_Set_of_questions = "Zestaw pytań"; #elif L==9 // pt "Conjunto de perguntas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Set_of_questions_removed = @@ -41768,6 +45570,8 @@ const char *Txt_Set_of_questions_removed = "Zestaw pytań usuniete."; #elif L==9 // pt "Conjunto de perguntas removido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Set_password = @@ -41789,6 +45593,8 @@ const char *Txt_Set_password = "Ustaw hasło"; #elif L==9 // pt "Definir senha"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Set_up = @@ -41810,6 +45616,8 @@ const char *Txt_Set_up = "Set up"; #elif L==9 // pt "Instalar"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Sets_of_questions = @@ -41831,6 +45639,8 @@ const char *Txt_Sets_of_questions = "Zestawów pytań"; #elif L==9 // pt "Conjuntos de perguntas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Settings = @@ -41852,6 +45662,8 @@ const char *Txt_Settings = "Ustawienia"; #elif L==9 // pt "Configuração"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Sex = @@ -41873,6 +45685,8 @@ const char *Txt_Sex = "Pleć"; #elif L==9 // pt "Sexo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_SEX_PLURAL_Abc[Usr_NUM_SEXS] = @@ -41896,6 +45710,8 @@ const char *Txt_SEX_PLURAL_Abc[Usr_NUM_SEXS] = "Nieznany" #elif L==9 // pt "Desconhecidos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Usr_SEX_FEMALE] = @@ -41917,6 +45733,8 @@ const char *Txt_SEX_PLURAL_Abc[Usr_NUM_SEXS] = "Kobiety" #elif L==9 // pt "Mulheres" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Usr_SEX_MALE] = @@ -41938,6 +45756,8 @@ const char *Txt_SEX_PLURAL_Abc[Usr_NUM_SEXS] = "Mezczyzni" #elif L==9 // pt "Homens" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Usr_SEX_ALL] = @@ -41959,6 +45779,8 @@ const char *Txt_SEX_PLURAL_Abc[Usr_NUM_SEXS] = "Wszyscy" #elif L==9 // pt "Todos" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -41983,6 +45805,8 @@ const char *Txt_SEX_PLURAL_abc[Usr_NUM_SEXS] = "nieznany" #elif L==9 // pt "desconhecidos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Usr_SEX_FEMALE] = @@ -42004,6 +45828,8 @@ const char *Txt_SEX_PLURAL_abc[Usr_NUM_SEXS] = "kobiety" #elif L==9 // pt "mulheres" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Usr_SEX_MALE] = @@ -42025,6 +45851,8 @@ const char *Txt_SEX_PLURAL_abc[Usr_NUM_SEXS] = "mezczyzni" #elif L==9 // pt "homens" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Usr_SEX_ALL] = @@ -42046,6 +45874,8 @@ const char *Txt_SEX_PLURAL_abc[Usr_NUM_SEXS] = "wszyscy" #elif L==9 // pt "todos" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -42070,6 +45900,8 @@ const char *Txt_SEX_SINGULAR_Abc[Usr_NUM_SEXS] = "Nieznany" #elif L==9 // pt "Desconhecido" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Usr_SEX_FEMALE] = @@ -42091,6 +45923,8 @@ const char *Txt_SEX_SINGULAR_Abc[Usr_NUM_SEXS] = "Kobieta" #elif L==9 // pt "Mulher" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Usr_SEX_MALE] = @@ -42112,6 +45946,8 @@ const char *Txt_SEX_SINGULAR_Abc[Usr_NUM_SEXS] = "Mężczyzna" #elif L==9 // pt "Homem" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Usr_SEX_ALL] = @@ -42133,6 +45969,8 @@ const char *Txt_SEX_SINGULAR_Abc[Usr_NUM_SEXS] = "Wwszyscy" #elif L==9 // pt "Todos" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -42155,6 +45993,8 @@ const char *Txt_Shared_files_area = "Wspólnej dla"; #elif L==9 // pt "Zona comum"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_shared_files_area = @@ -42176,6 +46016,8 @@ const char *Txt_shared_files_area = "Powierzchnia udostępnionych plików"; #elif L==9 // pt "zona de arquivos compartilhados"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Short_name = @@ -42197,6 +46039,8 @@ const char *Txt_Short_name = "Nazwa skrócona"; #elif L==9 // pt "Nome abreviado"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Short_name_of_the_degree = @@ -42218,6 +46062,8 @@ const char *Txt_Short_name_of_the_degree = "Skrócona nazwa stopień"; #elif L==9 // pt "Nome abreviado do grau"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Short_name_of_the_center = @@ -42239,6 +46085,8 @@ const char *Txt_Short_name_of_the_center = "Skrócona nazwa centrum"; #elif L==9 // pt "Nome abreviado do centro"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Short_name_of_the_course = @@ -42260,6 +46108,8 @@ const char *Txt_Short_name_of_the_course = "Skrócona nazwa kurs"; #elif L==9 // pt "Nome abreviado da disciplina"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Short_name_of_the_institution = @@ -42281,6 +46131,8 @@ const char *Txt_Short_name_of_the_institution = "Skrócona nazwa instytucji"; #elif L==9 // pt "Nome abreviado da instituição"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Shortcut = @@ -42302,6 +46154,8 @@ const char *Txt_Shortcut = "Bezpośredni dostęp"; #elif L==9 // pt "Acesso directo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Show = @@ -42323,6 +46177,8 @@ const char *Txt_Show = "Pokazać"; #elif L==9 // pt "Mostrar"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Show_all_data_in_a_table = @@ -42344,6 +46200,8 @@ const char *Txt_Show_all_data_in_a_table = "Pokaż wszystkie dane w tabeli"; #elif L==9 // pt "Mostrar todos os dados em uma tabela"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Show_all_files = @@ -42365,6 +46223,8 @@ const char *Txt_Show_all_files = "Pokaż wszystkie pliki"; #elif L==9 // pt "Mostrar todos os arquivos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Show_all_NOTIFICATIONS = @@ -42386,6 +46246,8 @@ const char *Txt_Show_all_NOTIFICATIONS = "Pokaż wszystkie"; #elif L==9 // pt "Mostrar todas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Show_all_notifications = @@ -42407,6 +46269,8 @@ const char *Txt_Show_all_notifications = "Pokaż wszystkie powiadomienia"; #elif L==9 // pt "Mostrar todas as notificações"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Show_agenda = @@ -42428,6 +46292,8 @@ const char *Txt_Show_agenda = "Pokaż pamiętnik"; #elif L==9 // pt "Mostrar agenda"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Show_anyway = @@ -42449,6 +46315,8 @@ const char *Txt_Show_anyway = "Show anyway"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Mostrar de qualquer maneira"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Show_calendar = @@ -42470,6 +46338,8 @@ const char *Txt_Show_calendar = "Pokaż kalendarz"; #elif L==9 // pt "Mostrar calendário"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Show_hits = // hits = visits, clicks, page views... @@ -42491,6 +46361,8 @@ const char *Txt_Show_hits = // hits = visits, clicks, page views... "Show hits"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Mostrar visitas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Show_more_details = @@ -42512,6 +46384,8 @@ const char *Txt_Show_more_details = "Pokaż więcej szczegółów"; #elif L==9 // pt "Mostrar mais detalhes"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Show_more_recipients = @@ -42533,6 +46407,8 @@ const char *Txt_Show_more_recipients = "Pokaż więcej odbiorców"; #elif L==9 // pt "Ver mais destinatários"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Show_next_X_clicks = // Warning: it is very important to include %u in the following sentences @@ -42554,6 +46430,8 @@ const char *Txt_Show_next_X_clicks = // Warning: it is very important to include "Pokaż następne %u kliknięć"; #elif L==9 // pt "Mostrar %u cliques subsequentes"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Show_previous_X_clicks = // Warning: it is very important to include %u in the following sentences @@ -42575,6 +46453,8 @@ const char *Txt_Show_previous_X_clicks = // Warning: it is very important to inc "Pokaż poprzednie %u kliknięcia"; #elif L==9 // pt "Mostrar %u cliques anteriores"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Show_questions = @@ -42596,6 +46476,8 @@ const char *Txt_Show_questions = "Pokaż pytania"; #elif L==9 // pt "Mostrar perguntas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Show_statistic = @@ -42617,6 +46499,8 @@ const char *Txt_Show_statistic = "Pokaż statystykę"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Mostrar estatística"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Show_tutoring_hours = @@ -42638,6 +46522,8 @@ const char *Txt_Show_tutoring_hours = "Pokaż godzin pracy biura"; #elif L==9 // pt "Mostrar horários tutor"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Shuffle = @@ -42659,6 +46545,8 @@ const char *Txt_Shuffle = "Człapać"; #elif L==9 // pt "Baralhar"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Sign_up = @@ -42680,6 +46568,8 @@ const char *Txt_Sign_up = "Wniosku rejestrację"; #elif L==9 // pt "Solicitar inscrição"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Similar_users = @@ -42701,6 +46591,8 @@ const char *Txt_Similar_users = "Podobne użytkowników"; #elif L==9 // pt "Usuários similares"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Size = // ...of a file zone @@ -42722,6 +46614,8 @@ const char *Txt_Size = // ...of a file zone "Rozmiar"; #elif L==9 // pt "Tamanho"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Size_of_photos = @@ -42743,6 +46637,8 @@ const char *Txt_Size_of_photos = "Rozmiar zdjęć"; #elif L==9 // pt "Tamanho das fotos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Skip_this_step = @@ -42764,6 +46660,8 @@ const char *Txt_Skip_this_step = "Pomiń ten krok"; #elif L==9 // pt "Pule esta etapa"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Sort_degrees_by = @@ -42785,6 +46683,8 @@ const char *Txt_Sort_degrees_by = "Sortuj stopni według"; #elif L==9 // pt "Classificar graus por"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Source_of_information = @@ -42806,6 +46706,8 @@ const char *Txt_Source_of_information = "Źródło informacji"; #elif L==9 // pt "Fonte de informação"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_STAT_CLICKS_GROUPED_BY[Sta_NUM_CLICKS_GROUPED_BY] = @@ -42829,6 +46731,8 @@ const char *Txt_STAT_CLICKS_GROUPED_BY[Sta_NUM_CLICKS_GROUPED_BY] = "szczegółowe kliknięć" #elif L==9 // pt "detalhadamente cliques" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_CLICKS_CRS_PER_USR] = @@ -42850,6 +46754,8 @@ const char *Txt_STAT_CLICKS_GROUPED_BY[Sta_NUM_CLICKS_GROUPED_BY] = "użytkownik" #elif L==9 // pt "utilizador" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_CLICKS_CRS_PER_DAY] = @@ -42871,6 +46777,8 @@ const char *Txt_STAT_CLICKS_GROUPED_BY[Sta_NUM_CLICKS_GROUPED_BY] = "dzień" #elif L==9 // pt "dia" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_CLICKS_CRS_PER_DAY_AND_HOUR] = @@ -42892,6 +46800,8 @@ const char *Txt_STAT_CLICKS_GROUPED_BY[Sta_NUM_CLICKS_GROUPED_BY] = "dzień i godzinę" #elif L==9 // pt "dia e hora" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_CLICKS_CRS_PER_WEEK] = @@ -42913,6 +46823,8 @@ const char *Txt_STAT_CLICKS_GROUPED_BY[Sta_NUM_CLICKS_GROUPED_BY] = "tydzień" #elif L==9 // pt "semana" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_CLICKS_CRS_PER_MONTH] = @@ -42934,6 +46846,8 @@ const char *Txt_STAT_CLICKS_GROUPED_BY[Sta_NUM_CLICKS_GROUPED_BY] = "miesiąc" #elif L==9 // pt "mês" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_CLICKS_CRS_PER_YEAR] = @@ -42955,6 +46869,8 @@ const char *Txt_STAT_CLICKS_GROUPED_BY[Sta_NUM_CLICKS_GROUPED_BY] = "rok" #elif L==9 // pt "ano" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_CLICKS_CRS_PER_HOUR] = @@ -42976,6 +46892,8 @@ const char *Txt_STAT_CLICKS_GROUPED_BY[Sta_NUM_CLICKS_GROUPED_BY] = "godzina" #elif L==9 // pt "hora" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_CLICKS_CRS_PER_MINUTE] = @@ -42997,6 +46915,8 @@ const char *Txt_STAT_CLICKS_GROUPED_BY[Sta_NUM_CLICKS_GROUPED_BY] = "minutę" #elif L==9 // pt "minuto" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_CLICKS_CRS_PER_ACTION] = @@ -43018,6 +46938,8 @@ const char *Txt_STAT_CLICKS_GROUPED_BY[Sta_NUM_CLICKS_GROUPED_BY] = "działanie" #elif L==9 // pt "ação" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_CLICKS_GBL_PER_DAY] = @@ -43039,6 +46961,8 @@ const char *Txt_STAT_CLICKS_GROUPED_BY[Sta_NUM_CLICKS_GROUPED_BY] = "dzień" #elif L==9 // pt "dia" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_CLICKS_GBL_PER_DAY_AND_HOUR] = @@ -43060,6 +46984,8 @@ const char *Txt_STAT_CLICKS_GROUPED_BY[Sta_NUM_CLICKS_GROUPED_BY] = "dzień i godzinę" #elif L==9 // pt "dia e hora" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_CLICKS_GBL_PER_WEEK] = @@ -43081,6 +47007,8 @@ const char *Txt_STAT_CLICKS_GROUPED_BY[Sta_NUM_CLICKS_GROUPED_BY] = "tydzień" #elif L==9 // pt "semana" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_CLICKS_GBL_PER_MONTH] = @@ -43102,6 +47030,8 @@ const char *Txt_STAT_CLICKS_GROUPED_BY[Sta_NUM_CLICKS_GROUPED_BY] = "miesiąc" #elif L==9 // pt "mês" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_CLICKS_GBL_PER_YEAR] = @@ -43123,6 +47053,8 @@ const char *Txt_STAT_CLICKS_GROUPED_BY[Sta_NUM_CLICKS_GROUPED_BY] = "rok" #elif L==9 // pt "ano" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_CLICKS_GBL_PER_HOUR] = @@ -43144,6 +47076,8 @@ const char *Txt_STAT_CLICKS_GROUPED_BY[Sta_NUM_CLICKS_GROUPED_BY] = "godzina" #elif L==9 // pt "hora" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_CLICKS_GBL_PER_MINUTE] = @@ -43165,6 +47099,8 @@ const char *Txt_STAT_CLICKS_GROUPED_BY[Sta_NUM_CLICKS_GROUPED_BY] = "minutę" #elif L==9 // pt "minuto" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_CLICKS_GBL_PER_ACTION] = @@ -43186,6 +47122,8 @@ const char *Txt_STAT_CLICKS_GROUPED_BY[Sta_NUM_CLICKS_GROUPED_BY] = "działanie" #elif L==9 // pt "ação" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_CLICKS_GBL_PER_PLUGIN] = @@ -43207,6 +47145,8 @@ const char *Txt_STAT_CLICKS_GROUPED_BY[Sta_NUM_CLICKS_GROUPED_BY] = "wtyczka" #elif L==9 // pt "plugin" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_CLICKS_GBL_PER_API_FUNCTION] = @@ -43228,6 +47168,8 @@ const char *Txt_STAT_CLICKS_GROUPED_BY[Sta_NUM_CLICKS_GROUPED_BY] = "funkcja" #elif L==9 // pt "função" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_CLICKS_GBL_PER_BANNER] = @@ -43249,6 +47191,8 @@ const char *Txt_STAT_CLICKS_GROUPED_BY[Sta_NUM_CLICKS_GROUPED_BY] = "banner" #elif L==9 // pt "banner" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_CLICKS_GBL_PER_COUNTRY] = @@ -43270,6 +47214,8 @@ const char *Txt_STAT_CLICKS_GROUPED_BY[Sta_NUM_CLICKS_GROUPED_BY] = "kraj" #elif L==9 // pt "país" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_CLICKS_GBL_PER_INSTITUTION] = @@ -43291,6 +47237,8 @@ const char *Txt_STAT_CLICKS_GROUPED_BY[Sta_NUM_CLICKS_GROUPED_BY] = "instytucji" #elif L==9 // pt "institução" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_CLICKS_GBL_PER_CENTER] = @@ -43312,6 +47260,8 @@ const char *Txt_STAT_CLICKS_GROUPED_BY[Sta_NUM_CLICKS_GROUPED_BY] = "centrum" #elif L==9 // pt "centro" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_CLICKS_GBL_PER_DEGREE] = @@ -43333,6 +47283,8 @@ const char *Txt_STAT_CLICKS_GROUPED_BY[Sta_NUM_CLICKS_GROUPED_BY] = "stopień" #elif L==9 // pt "grau" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_CLICKS_GBL_PER_COURSE] = @@ -43354,6 +47306,8 @@ const char *Txt_STAT_CLICKS_GROUPED_BY[Sta_NUM_CLICKS_GROUPED_BY] = "kurs" #elif L==9 // pt "disciplina" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -43378,6 +47332,8 @@ const char *Txt_STAT_COLOR_TYPES[Sta_NUM_COLOR_TYPES] = "kolor" #elif L==9 // pt "cor" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_BLACK_TO_WHITE] = @@ -43399,6 +47355,8 @@ const char *Txt_STAT_COLOR_TYPES[Sta_NUM_COLOR_TYPES] = "czarny na biały" #elif L==9 // pt "do preto ao branco" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_WHITE_TO_BLACK] = @@ -43420,6 +47378,8 @@ const char *Txt_STAT_COLOR_TYPES[Sta_NUM_COLOR_TYPES] = "biały do czarny" #elif L==9 // pt "do branco ao preto" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -43444,6 +47404,8 @@ const char *Txt_STAT_COURSE_FILE_ZONES[Fig_NUM_STAT_CRS_FILE_ZONES] = // Use &nb "Dokumenty (kurs)" #elif L==9 // pt "Documentos (crs.)" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [1] = @@ -43465,6 +47427,8 @@ const char *Txt_STAT_COURSE_FILE_ZONES[Fig_NUM_STAT_CRS_FILE_ZONES] = // Use &nb "Dokumenty (grp.)" #elif L==9 // pt "Documentos (grp.)" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [2] = @@ -43486,6 +47450,8 @@ const char *Txt_STAT_COURSE_FILE_ZONES[Fig_NUM_STAT_CRS_FILE_ZONES] = // Use &nb "Prywatne (kurs)" #elif L==9 // pt "Privadoss (crs.)" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [3] = @@ -43507,6 +47473,8 @@ const char *Txt_STAT_COURSE_FILE_ZONES[Fig_NUM_STAT_CRS_FILE_ZONES] = // Use &nb "Prywatne (grp)" #elif L==9 // pt "Privadoss (grp.)" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [4] = @@ -43528,6 +47496,8 @@ const char *Txt_STAT_COURSE_FILE_ZONES[Fig_NUM_STAT_CRS_FILE_ZONES] = // Use &nb "Wspólna (kurs)" #elif L==9 // pt "Compartilhados (crs.)" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [5] = @@ -43549,6 +47519,8 @@ const char *Txt_STAT_COURSE_FILE_ZONES[Fig_NUM_STAT_CRS_FILE_ZONES] = // Use &nb "Wspólna (grp.)" #elif L==9 // pt "Compartilhados (grp.)" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [6] = @@ -43570,6 +47542,8 @@ const char *Txt_STAT_COURSE_FILE_ZONES[Fig_NUM_STAT_CRS_FILE_ZONES] = // Use &nb "Marks (crs.)" // Potrzebujesz tlumaczenie #elif L==9 // pt "Notas (crs.)" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [7] = @@ -43591,6 +47565,8 @@ const char *Txt_STAT_COURSE_FILE_ZONES[Fig_NUM_STAT_CRS_FILE_ZONES] = // Use &nb "Marks (grp.)" // Potrzebujesz tlumaczenie #elif L==9 // pt "Notas (grp.)" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [8] = @@ -43612,6 +47588,8 @@ const char *Txt_STAT_COURSE_FILE_ZONES[Fig_NUM_STAT_CRS_FILE_ZONES] = // Use &nb "Zadania" #elif L==9 // pt "Atividades" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [9] = @@ -43633,6 +47611,8 @@ const char *Txt_STAT_COURSE_FILE_ZONES[Fig_NUM_STAT_CRS_FILE_ZONES] = // Use &nb "Praca domowa" #elif L==9 // pt "Trabalhos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [10] = @@ -43654,6 +47634,8 @@ const char *Txt_STAT_COURSE_FILE_ZONES[Fig_NUM_STAT_CRS_FILE_ZONES] = // Use &nb "Całkowity" #elif L==9 // pt "Total" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [11] = @@ -43675,6 +47657,8 @@ const char *Txt_STAT_COURSE_FILE_ZONES[Fig_NUM_STAT_CRS_FILE_ZONES] = // Use &nb "Aktówki" #elif L==9 // pt "Pasta" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -43699,6 +47683,8 @@ const char *Txt_STAT_DEGREE_PHOTO_SIZE[Pho_NUM_HOW_COMPUTE_PHOTO_SIZES] = "proporcjonalna do liczby studentów" #elif L==9 // pt "proporcional ao número de estudantes" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Pho_PROPORTIONAL_TO_NUMBER_OF_PHOTOS] = @@ -43720,6 +47706,8 @@ const char *Txt_STAT_DEGREE_PHOTO_SIZE[Pho_NUM_HOW_COMPUTE_PHOTO_SIZES] = "proporcjonalna do liczby uczniów ze zdjęciem" #elif L==9 // pt "proporcional ao número de estudantes com foto" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Pho_PROPORTIONAL_TO_PERCENT] = @@ -43741,6 +47729,8 @@ const char *Txt_STAT_DEGREE_PHOTO_SIZE[Pho_NUM_HOW_COMPUTE_PHOTO_SIZES] = "proporcjonalna do odsetka uczniów ze zdjęciem" #elif L==9 // pt "proporcional ao porcentagem de estudantes com foto" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Pho_UNIQUE_SIZE] = @@ -43762,6 +47752,8 @@ const char *Txt_STAT_DEGREE_PHOTO_SIZE[Pho_NUM_HOW_COMPUTE_PHOTO_SIZES] = "to samo dla wszystkich stopni" #elif L==9 // pt "mesmo para todos os graus" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -43786,6 +47778,8 @@ const char *Txt_STAT_DEGREE_PHOTO_ORDER[Pho_NUM_HOW_ORDER_DEGREES] = "liczba studentów" #elif L==9 // pt "número de estudantes" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Pho_PROPORTIONAL_TO_NUMBER_OF_PHOTOS] = @@ -43807,6 +47801,8 @@ const char *Txt_STAT_DEGREE_PHOTO_ORDER[Pho_NUM_HOW_ORDER_DEGREES] = "liczba studentów ze zdjęciem" #elif L==9 // pt "número de estudantes com foto" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Pho_PROPORTIONAL_TO_PERCENT] = @@ -43828,6 +47824,8 @@ const char *Txt_STAT_DEGREE_PHOTO_ORDER[Pho_NUM_HOW_ORDER_DEGREES] = "odsetek uczniów ze zdjęciem" #elif L==9 // pt "porcentagem de estudantes com foto" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Pho_UNIQUE_SIZE] = @@ -43849,6 +47847,8 @@ const char *Txt_STAT_DEGREE_PHOTO_ORDER[Pho_NUM_HOW_ORDER_DEGREES] = "nazwa stopnia" #elif L==9 // pt "nome do grau" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -43873,6 +47873,8 @@ const char *Txt_STAT_TYPE_COUNT_CAPS[Sta_NUM_COUNT_TYPES] = "Całkowita liczba kliknięć" #elif L==9 // pt "Número total de cliques" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_DISTINCT_USRS] = @@ -43894,6 +47896,8 @@ const char *Txt_STAT_TYPE_COUNT_CAPS[Sta_NUM_COUNT_TYPES] = "Liczba różnych użytkowników" #elif L==9 // pt "Número de utilizadores diferentes" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_CLICKS_PER_USR] = @@ -43915,6 +47919,8 @@ const char *Txt_STAT_TYPE_COUNT_CAPS[Sta_NUM_COUNT_TYPES] = "Liczba kliknięć na użytkownika" #elif L==9 // pt "Número de cliques por utilizador" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_GENERATION_TIME] = @@ -43936,6 +47942,8 @@ const char *Txt_STAT_TYPE_COUNT_CAPS[Sta_NUM_COUNT_TYPES] = "Czas wygenerować stronę" #elif L==9 // pt "Tempo para gerar página" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_SEND_TIME] = @@ -43957,6 +47965,8 @@ const char *Txt_STAT_TYPE_COUNT_CAPS[Sta_NUM_COUNT_TYPES] = "Czas wysłać stronę" #elif L==9 // pt "Tempo para enviar a página" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -43981,6 +47991,8 @@ const char *Txt_STAT_TYPE_COUNT_SMALL[Sta_NUM_COUNT_TYPES] = "całkowita liczba kliknięć" #elif L==9 // pt "número total de cliques" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_DISTINCT_USRS] = @@ -44002,6 +48014,8 @@ const char *Txt_STAT_TYPE_COUNT_SMALL[Sta_NUM_COUNT_TYPES] = "liczba różnych użytkowników" #elif L==9 // pt "número de utilizadores diferentes" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_CLICKS_PER_USR] = @@ -44023,6 +48037,8 @@ const char *Txt_STAT_TYPE_COUNT_SMALL[Sta_NUM_COUNT_TYPES] = "liczba kliknięć na użytkownika" #elif L==9 // pt "número de cliques por utilizador" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_GENERATION_TIME] = @@ -44044,6 +48060,8 @@ const char *Txt_STAT_TYPE_COUNT_SMALL[Sta_NUM_COUNT_TYPES] = "czas na wygenerowanie" #elif L==9 // pt "tempo para gerar" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Sta_SEND_TIME] = @@ -44065,6 +48083,8 @@ const char *Txt_STAT_TYPE_COUNT_SMALL[Sta_NUM_COUNT_TYPES] = "czas wysłać" #elif L==9 // pt "Tempo para enviar" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -44089,6 +48109,8 @@ const char *Txt_FIGURE_TYPES[Fig_NUM_FIGURES] = "Użytkownicy" #elif L==9 // pt "Utilizadores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Fig_USERS_RANKING] = @@ -44110,6 +48132,8 @@ const char *Txt_FIGURE_TYPES[Fig_NUM_FIGURES] = "Ranking" #elif L==9 // pt "Posição" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Fig_HIERARCHY] = @@ -44131,6 +48155,8 @@ const char *Txt_FIGURE_TYPES[Fig_NUM_FIGURES] = "Hierarchia" #elif L==9 // pt "Hierarquia" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Fig_INSTITS] = @@ -44152,6 +48178,8 @@ const char *Txt_FIGURE_TYPES[Fig_NUM_FIGURES] = "Instytucje" #elif L==9 // pt "Instituções" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Fig_DEGREE_TYPES] = @@ -44173,6 +48201,8 @@ const char *Txt_FIGURE_TYPES[Fig_NUM_FIGURES] = "Rodzaje stopni" #elif L==9 // pt "Tipos de grau" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Fig_FOLDERS_AND_FILES] = @@ -44194,6 +48224,8 @@ const char *Txt_FIGURE_TYPES[Fig_NUM_FIGURES] = "Foldery i pliki" #elif L==9 // pt "Diretórios e arquivos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Fig_OER] = @@ -44215,6 +48247,8 @@ const char *Txt_FIGURE_TYPES[Fig_NUM_FIGURES] = "Otwarte Zasoby Edukacyjne (OER)" #elif L==9 // pt "Recursos Educacionais Abertos (OER)" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Fig_COURSE_PROGRAMS] = @@ -44236,6 +48270,8 @@ const char *Txt_FIGURE_TYPES[Fig_NUM_FIGURES] = "Program" #elif L==9 // pt "Programa" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Fig_ASSIGNMENTS] = @@ -44257,6 +48293,8 @@ const char *Txt_FIGURE_TYPES[Fig_NUM_FIGURES] = "Zadania" #elif L==9 // pt "Atividades" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Fig_PROJECTS] = @@ -44278,6 +48316,8 @@ const char *Txt_FIGURE_TYPES[Fig_NUM_FIGURES] = "Projekty" #elif L==9 // pt "Projetos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Fig_TESTS] = @@ -44299,6 +48339,8 @@ const char *Txt_FIGURE_TYPES[Fig_NUM_FIGURES] = "Testy" #elif L==9 // pt "Testes" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Fig_EXAMS] = @@ -44320,6 +48362,8 @@ const char *Txt_FIGURE_TYPES[Fig_NUM_FIGURES] = "Egzaminy" #elif L==9 // pt "Exames" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Fig_GAMES] = @@ -44341,6 +48385,8 @@ const char *Txt_FIGURE_TYPES[Fig_NUM_FIGURES] = "Gry" #elif L==9 // pt "Jogos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Fig_SURVEYS] = @@ -44362,6 +48408,8 @@ const char *Txt_FIGURE_TYPES[Fig_NUM_FIGURES] = "Ankieta" #elif L==9 // pt "Inquéritos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Fig_TIMELINE] = @@ -44383,6 +48431,8 @@ const char *Txt_FIGURE_TYPES[Fig_NUM_FIGURES] = "Timeline" #elif L==9 // pt "Timeline" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Fig_FOLLOW] = @@ -44404,6 +48454,8 @@ const char *Txt_FIGURE_TYPES[Fig_NUM_FIGURES] = "Obserwowani / Obserwują" #elif L==9 // pt "Seguidos / Seguidores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Fig_FORUMS] = @@ -44425,6 +48477,8 @@ const char *Txt_FIGURE_TYPES[Fig_NUM_FIGURES] = "Forums" // Potrzebujesz tlumaczenie #elif L==9 // pt "Fóruns" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Fig_NOTIFY_EVENTS] = @@ -44446,6 +48500,8 @@ const char *Txt_FIGURE_TYPES[Fig_NUM_FIGURES] = "Powiadomienia wysyłane przez email" #elif L==9 // pt "Notificações enviadas por email" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Fig_NOTICES] = @@ -44467,6 +48523,8 @@ const char *Txt_FIGURE_TYPES[Fig_NUM_FIGURES] = "Ogloszenia" #elif L==9 // pt "Avisos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Fig_MESSAGES] = @@ -44488,6 +48546,8 @@ const char *Txt_FIGURE_TYPES[Fig_NUM_FIGURES] = "Wiadomości" #elif L==9 // pt "Mensagens" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Fig_AGENDAS] = @@ -44509,6 +48569,8 @@ const char *Txt_FIGURE_TYPES[Fig_NUM_FIGURES] = "Pamiętnik" #elif L==9 // pt "Agendas" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Fig_SOCIAL_NETWORKS] = @@ -44530,6 +48592,8 @@ const char *Txt_FIGURE_TYPES[Fig_NUM_FIGURES] = "Webs / sieci społeczne" #elif L==9 // pt "Webs / redes sociais" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Fig_LANGUAGES] = @@ -44551,6 +48615,8 @@ const char *Txt_FIGURE_TYPES[Fig_NUM_FIGURES] = "Language" // Potrzebujesz tlumaczenie #elif L==9 // pt "Lingua" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Fig_FIRST_DAY_OF_WEEK] = @@ -44572,6 +48638,8 @@ const char *Txt_FIGURE_TYPES[Fig_NUM_FIGURES] = "Kalendarz" #elif L==9 // pt "Calendário" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Fig_DATE_FORMAT] = @@ -44593,6 +48661,8 @@ const char *Txt_FIGURE_TYPES[Fig_NUM_FIGURES] = "Daty" #elif L==9 // pt "Datas" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Fig_ICON_SETS] = @@ -44614,6 +48684,8 @@ const char *Txt_FIGURE_TYPES[Fig_NUM_FIGURES] = "Ikony" #elif L==9 // pt "Ícones" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Fig_MENUS] = @@ -44635,6 +48707,8 @@ const char *Txt_FIGURE_TYPES[Fig_NUM_FIGURES] = "Menu" #elif L==9 // pt "Menu" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Fig_THEMES] = @@ -44656,6 +48730,8 @@ const char *Txt_FIGURE_TYPES[Fig_NUM_FIGURES] = "Temat" #elif L==9 // pt "Skin" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Fig_SIDE_COLUMNS] = @@ -44677,6 +48753,8 @@ const char *Txt_FIGURE_TYPES[Fig_NUM_FIGURES] = "Kolumny" #elif L==9 // pt "Colunas" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Fig_PHOTO_SHAPES] = @@ -44698,6 +48776,8 @@ const char *Txt_FIGURE_TYPES[Fig_NUM_FIGURES] = "Zdjęcia użytkownika " #elif L==9 // pt "Fotos de utilizadores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Fig_PRIVACY] = @@ -44719,6 +48799,8 @@ const char *Txt_FIGURE_TYPES[Fig_NUM_FIGURES] = "Prywatność" #elif L==9 // pt "Privacidade" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Fig_COOKIES] = @@ -44740,6 +48822,8 @@ const char *Txt_FIGURE_TYPES[Fig_NUM_FIGURES] = "Cookies" #elif L==9 // pt "Cookies" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -44762,6 +48846,8 @@ const char *Txt_Start = // As a verb "Rozpocznij"; #elif L==9 // pt "Começar"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Statistic = @@ -44783,6 +48869,8 @@ const char *Txt_Statistic = "Statystyki"; #elif L==9 // pt "Estatísticas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Statistics_of_all_visits = @@ -44804,6 +48892,8 @@ const char *Txt_Statistics_of_all_visits = "Statystyki wszystkich wizyt"; #elif L==9 // pt "Estatísticas de todas as visitas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Statistics_of_visits_to_the_course_X = // Warning: it is very important to include %s in the following sentences @@ -44825,6 +48915,8 @@ const char *Txt_Statistics_of_visits_to_the_course_X = // Warning: it is very im "Statystyki odwiedzin kursu %s"; #elif L==9 // pt "Estatísticas de visitas à disciplina %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Status = @@ -44846,6 +48938,8 @@ const char *Txt_Status = "Status"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Status"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Stay_connected_with_SWADroid = @@ -44867,6 +48961,8 @@ const char *Txt_Stay_connected_with_SWADroid = "Pozostań w kontakcie z SWADroid."; #elif L==9 // pt "Fique ligado/a com SWADroid."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Step_1_Provide_a_list_of_users = @@ -44888,6 +48984,8 @@ const char *Txt_Step_1_Provide_a_list_of_users = "Krok 1: Podaj listę użytkowników"; #elif L==9 // pt "Etapa 1: Forneça uma lista de usuários"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Step_2_Select_the_desired_action = @@ -44909,6 +49007,8 @@ const char *Txt_Step_2_Select_the_desired_action = "Krok 2: Wybierz żądaną akcję"; #elif L==9 // pt "Etapa 2: Selecione a ação desejada"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Step_3_Optionally_select_groups = @@ -44930,6 +49030,8 @@ const char *Txt_Step_3_Optionally_select_groups = "Krok 3: Opcjonalnie wybierz grupy"; #elif L==9 // pt "Etapa 3: Opcionalmente, selecione grupos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Step_4_Confirm_the_enrolment_removing = @@ -44951,6 +49053,8 @@ const char *Txt_Step_4_Confirm_the_enrolment_removing = "Krok 4: Potwierdź rejestrację / usunięcie"; #elif L==9 // pt "Etapa 4: Confirmar a inscrição / remoção"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Student_comment = @@ -44972,6 +49076,8 @@ const char *Txt_Student_comment = "Komentarz studenta"; #elif L==9 // pt "Comentário do estudante"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_students_ABBREVIATION = // Abbreviation of "students" @@ -44993,6 +49099,8 @@ const char *Txt_students_ABBREVIATION = // Abbreviation of "students" "stud."; // Potrzebujesz tlumaczenie #elif L==9 // pt "estu."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Student_record_card_in_this_course_has_been_updated = @@ -45014,6 +49122,8 @@ const char *Txt_Student_record_card_in_this_course_has_been_updated = "Karta ewidencyjna ucznia na tym kursie została zaktualizowana."; #elif L==9 // pt "O cartão do estudante nesta disciplina foi atualizado."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Students_are_no_longer_obliged_to_read_this_information = @@ -45035,6 +49145,8 @@ const char *Txt_Students_are_no_longer_obliged_to_read_this_information = "Studenci nie są już zobowiązani do czytania tych informacji."; #elif L==9 // pt "Os estudantes não precisam mais ler essas informações."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Students_now_are_required_to_read_this_information = @@ -45056,6 +49168,8 @@ const char *Txt_Students_now_are_required_to_read_this_information = "Uczniowie są teraz zobowiązani do przeczytania tych informacji."; #elif L==9 // pt "Os estudantes agora precisam ler essas informações."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Surname_1 = @@ -45077,6 +49191,8 @@ const char *Txt_Surname_1 = "Nazwisko 1"; #elif L==9 // pt "Primeiro apelido"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Surname_2 = @@ -45098,6 +49214,8 @@ const char *Txt_Surname_2 = "Nazwisko 2"; #elif L==9 // pt "Segundo apelido"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Survey = @@ -45119,6 +49237,8 @@ const char *Txt_Survey = "Ankieta"; #elif L==9 // pt "Inquérito"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_SURVEY_You_belong_to_the_scope_of_the_survey = @@ -45140,6 +49260,8 @@ const char *Txt_SURVEY_You_belong_to_the_scope_of_the_survey = "Należysz do zakresu badania"; #elif L==9 // pt "Você pertence ao âmbito do inquérito"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_SURVEY_You_dont_belong_to_the_scope_of_the_survey = @@ -45161,6 +49283,8 @@ const char *Txt_SURVEY_You_dont_belong_to_the_scope_of_the_survey = "Nie należą do zakresu badania"; #elif L==9 // pt "Você não pertence ao âmbito do inquérito"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_SURVEY_You_have_already_answered = @@ -45182,6 +49306,8 @@ const char *Txt_SURVEY_You_have_already_answered = "Już odpowiedziałeś"; #elif L==9 // pt "Você já respondeu"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_SURVEY_You_have_not_answered = @@ -45203,6 +49329,8 @@ const char *Txt_SURVEY_You_have_not_answered = "Nie odpowiedziałeś"; #elif L==9 // pt "Você não respondeu"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_SURVEY_Type_of_user_allowed = @@ -45224,6 +49352,8 @@ const char *Txt_SURVEY_Type_of_user_allowed = "Dozwolony typ użytkownika"; #elif L==9 // pt "Tipo de usuário permitido"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_SURVEY_Type_of_user_not_allowed = @@ -45245,6 +49375,8 @@ const char *Txt_SURVEY_Type_of_user_not_allowed = "Niedozwolony typ użytkownika"; #elif L==9 // pt "Tipo de usuário não permitido"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Survey_X_removed = // Warning: it is very important to include %s in the following sentences @@ -45266,6 +49398,8 @@ const char *Txt_Survey_X_removed = // Warning: it is very important to include % "Ankieta %s usunięte."; #elif L==9 // pt "Inquérito %s removido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Survey_X_reset = // Warning: it is very important to include %s in the following sentences @@ -45287,6 +49421,8 @@ const char *Txt_Survey_X_reset = // Warning: it is very important to include %s "Ankieta %s zresetowane."; #elif L==9 // pt "Inquérito %s fixado em zero."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_SURVEY_STR_ANSWER_TYPES[Svy_NUM_ANS_TYPES] = @@ -45310,6 +49446,8 @@ const char *Txt_SURVEY_STR_ANSWER_TYPES[Svy_NUM_ANS_TYPES] = "Unikalny wybór" #elif L==9 // pt "Única escolha" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Svy_ANS_MULTIPLE_CHOICE] = @@ -45331,6 +49469,8 @@ const char *Txt_SURVEY_STR_ANSWER_TYPES[Svy_NUM_ANS_TYPES] = "Wielokrotny wybór" #elif L==9 // pt "Múltipla escolha" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -45353,6 +49493,8 @@ const char *Txt_Surveys = "Ankiety"; #elif L==9 // pt "Inquéritos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Syllabus = @@ -45374,6 +49516,8 @@ const char *Txt_Syllabus = "Program"; #elif L==9 // pt "Programa"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Syllabus_of_the_course = @@ -45395,6 +49539,8 @@ const char *Txt_Syllabus_of_the_course = "Program kursu"; #elif L==9 // pt "Programa da disciplina"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_SYLLABUS_WHICH_SYLLABUS[Syl_NUM_WHICH_SYLLABUS] = @@ -45418,6 +49564,8 @@ const char *Txt_SYLLABUS_WHICH_SYLLABUS[Syl_NUM_WHICH_SYLLABUS] = "Wyklady" #elif L==9 // pt "Teoria" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Syl_PRACTICALS] = @@ -45439,6 +49587,8 @@ const char *Txt_SYLLABUS_WHICH_SYLLABUS[Syl_NUM_WHICH_SYLLABUS] = "Praktyki" #elif L==9 // pt "Prática" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -45461,6 +49611,8 @@ const char *Txt_System = "System"; #elif L==9 // pt "Sistema"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_TABLE_Footer = @@ -45482,6 +49634,8 @@ const char *Txt_TABLE_Footer = "Stopka"; #elif L==9 // pt "Pé"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_TABLE_Header = @@ -45503,6 +49657,8 @@ const char *Txt_TABLE_Header = "Nagłówek"; #elif L==9 // pt "Cabeçalho"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Table_not_found_in_the_file_of_marks = @@ -45524,6 +49680,8 @@ const char *Txt_Table_not_found_in_the_file_of_marks = "Nie znaleziono tabeli w teczce znaków."; #elif L==9 // pt "Não há tabela no arquivo de classificações."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_TABS_TXT[Tab_NUM_TABS] = @@ -45550,6 +49708,8 @@ const char *Txt_TABS_TXT[Tab_NUM_TABS] = "Start" #elif L==9 // pt "Inicio" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [TabSys] = @@ -45571,6 +49731,8 @@ const char *Txt_TABS_TXT[Tab_NUM_TABS] = "System" #elif L==9 // pt "Sistema" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [TabCty] = @@ -45592,6 +49754,8 @@ const char *Txt_TABS_TXT[Tab_NUM_TABS] = "Kraj" #elif L==9 // pt "País" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [TabIns] = @@ -45613,6 +49777,8 @@ const char *Txt_TABS_TXT[Tab_NUM_TABS] = "Instytucji" #elif L==9 // pt "Institução" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [TabCtr] = @@ -45634,6 +49800,8 @@ const char *Txt_TABS_TXT[Tab_NUM_TABS] = "Centrum" #elif L==9 // pt "Centro" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [TabDeg] = @@ -45655,6 +49823,8 @@ const char *Txt_TABS_TXT[Tab_NUM_TABS] = "Stopien" #elif L==9 // pt "Grau" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [TabCrs] = @@ -45676,6 +49846,8 @@ const char *Txt_TABS_TXT[Tab_NUM_TABS] = "Kurs" #elif L==9 // pt "Disciplina" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [TabAss] = @@ -45697,6 +49869,8 @@ const char *Txt_TABS_TXT[Tab_NUM_TABS] = "Ocena" #elif L==9 // pt "Avaliação" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [TabFil] = @@ -45718,6 +49892,8 @@ const char *Txt_TABS_TXT[Tab_NUM_TABS] = "Pliki" #elif L==9 // pt "Arquivos" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [TabUsr] = @@ -45739,6 +49915,8 @@ const char *Txt_TABS_TXT[Tab_NUM_TABS] = "Użytkownicy" #elif L==9 // pt "Utilizadores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [TabMsg] = @@ -45760,6 +49938,8 @@ const char *Txt_TABS_TXT[Tab_NUM_TABS] = "Wiadomości" #elif L==9 // pt "Mensagens" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [TabAna] = @@ -45781,6 +49961,8 @@ const char *Txt_TABS_TXT[Tab_NUM_TABS] = "Analizy" #elif L==9 // pt "Análises" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [TabPrf] = @@ -45802,6 +49984,8 @@ const char *Txt_TABS_TXT[Tab_NUM_TABS] = "Profil" #elif L==9 // pt "Perfil" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -45824,6 +50008,8 @@ const char *Txt_Tag_allowed = "Tag allowed"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Descritor permitido"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Tag_X_allowed_Click_to_disable_it = // Warning: it is very important to include %s in the following sentences @@ -45845,6 +50031,8 @@ const char *Txt_Tag_X_allowed_Click_to_disable_it = // Warning: it is very impor "Tag %s dozwolony. Kliknij, aby go wyłączyć."; #elif L==9 // pt "Descritor %s permitido. Clique para proibir."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Tag_not_allowed = @@ -45866,6 +50054,8 @@ const char *Txt_Tag_not_allowed = "Tag niedozwolony"; #elif L==9 // pt "Descritor não permitido"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Tag_X_not_allowed_Click_to_allow_it = // Warning: it is very important to include %s in the following sentences @@ -45887,183 +50077,201 @@ const char *Txt_Tag_X_not_allowed_Click_to_allow_it = // Warning: it is very imp "Tag %s jest niedozwolony. Kliknij, aby na to zezwolić."; #elif L==9 // pt "Descritor %s não permitido. Clique para permitir."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif #if defined LOCALHOST_UBUNTU // localhost (Ubuntu) ***************** const char *Txt_TAGLINE = -# if L==1 +#if L==1 "plataforma educativa"; -# elif L==2 +#elif L==2 "Bildungsplattform"; -# elif L==3 +#elif L==3 "social learning platform"; -# elif L==4 +#elif L==4 "plataforma educativa"; -# elif L==5 +#elif L==5 "plate-forme éducative"; -# elif L==6 +#elif L==6 "plataforma educativa"; // Okoteve traducción -# elif L==7 +#elif L==7 "piattaforma educativa"; -# elif L==8 +#elif L==8 "platforma edukacyjna"; -# elif L==9 +#elif L==9 "plataforma educacional"; -# endif +#elif L==10 // tr + ""; // Çeviri lazim! +#endif const char *Txt_TAGLINE_BR = -# if L==1 +#if L==1 "plataforma
educativa"; -# elif L==2 +#elif L==2 "Bildungs-
plattform"; -# elif L==3 +#elif L==3 "social learning
platform"; -# elif L==4 +#elif L==4 "plataforma
educativa"; -# elif L==5 +#elif L==5 "plate-forme
éducative"; -# elif L==6 +#elif L==6 "plataforma
educativa"; // Okoteve traducción -# elif L==7 +#elif L==7 "piattaforma
educativa"; -# elif L==8 +#elif L==8 "platforma
edukacyjna"; -# elif L==9 +#elif L==9 "plataforma
educacional"; -# endif +#elif L==10 // tr + ""; // Çeviri lazim! +#endif #elif defined OPENSWAD_ORG // openswad.org *********************** const char *Txt_TAGLINE = -# if L==1 +#if L==1 "plataforma educativa"; -# elif L==2 +#elif L==2 "Bildungsplattform"; -# elif L==3 +#elif L==3 "social learning platform"; -# elif L==4 +#elif L==4 "plataforma educativa"; -# elif L==5 +#elif L==5 "plate-forme éducative"; -# elif L==6 +#elif L==6 "plataforma educativa"; // Okoteve traducción -# elif L==7 +#elif L==7 "piattaforma educativa"; -# elif L==8 +#elif L==8 "platforma edukacyjna"; -# elif L==9 +#elif L==9 "plataforma educacional"; -# endif +#elif L==10 // tr + ""; // Çeviri lazim! +#endif const char *Txt_TAGLINE_BR = -# if L==1 +#if L==1 "plataforma
educativa"; -# elif L==2 +#elif L==2 "Bildungs-
plattform"; -# elif L==3 +#elif L==3 "social learning
platform"; -# elif L==4 +#elif L==4 "plataforma
educativa"; -# elif L==5 +#elif L==5 "plate-forme
éducative"; -# elif L==6 +#elif L==6 "plataforma
educativa"; // Okoteve traducción -# elif L==7 +#elif L==7 "piattaforma
educativa"; -# elif L==8 +#elif L==8 "platforma
edukacyjna"; -# elif L==9 +#elif L==9 "plataforma
educacional"; -# endif +#elif L==10 // tr + ""; // Çeviri lazim! +#endif #elif defined SWAD_UGR_ES // swad.ugr.es ************************ const char *Txt_TAGLINE = -# if L==1 +#if L==1 "plataforma de suport a la docència / UGR /"; -# elif L==2 +#elif L==2 "Plattform zur Unterstützung der Lehre / UGR /"; -# elif L==3 +#elif L==3 "platform to support teaching / UGR /"; -# elif L==4 +#elif L==4 "plataforma de apoyo a la docencia / UGR /"; -# elif L==5 +#elif L==5 "plate-forme pour appuyer l'enseignement / UGR /"; -# elif L==6 +#elif L==6 "plataforma de apoyo a la docencia / UGR /"; // Okoteve traducción -# elif L==7 +#elif L==7 "piattaforma per sostenere l'insegnamento / UGR /"; -# elif L==8 +#elif L==8 "platforma do wspierania nauczania / UGR /"; -# elif L==9 +#elif L==9 "plataforma de apoio ao ensino / UGR /"; -# endif +#elif L==10 // tr + ""; // Çeviri lazim! +#endif const char *Txt_TAGLINE_BR = -# if L==1 +#if L==1 "/ UGR / plataforma de
suport a la docència"; -# elif L==2 +#elif L==2 "/ UGR / Plattform zur
Unterstützung der Lehre"; -# elif L==3 +#elif L==3 "/ UGR / platform to
support teaching"; -# elif L==4 +#elif L==4 "/ UGR / plataforma de
apoyo a la docencia"; -# elif L==5 +#elif L==5 "/ UGR / plate-forme pour
appuyer l'enseignement"; -# elif L==6 +#elif L==6 "/ UGR / plataforma de
apoyo a la docencia"; // Okoteve traducción -# elif L==7 +#elif L==7 "/ UGR / piattaforma per
sostenere l'insegnamento"; -# elif L==8 +#elif L==8 "/ UGR / platforma do
wspierania nauczania"; -# elif L==9 +#elif L==9 "/ UGR / plataforma
de apoio ao ensino"; -# endif +#elif L==10 // tr + ""; // Çeviri lazim! +#endif #elif defined SWADBERRY_UGR_ES // swadberry.ugr.es ******************* const char *Txt_TAGLINE = -# if L==1 +#if L==1 "plataforma de suport a la docència (Raspberry Pi)"; -# elif L==2 +#elif L==2 "Plattform zur Unterstützung der Lehre (Raspberry Pi)"; -# elif L==3 +#elif L==3 "platform to support teaching (Raspberry Pi)"; -# elif L==4 +#elif L==4 "plataforma de apoyo a la docencia (Raspberry Pi)"; -# elif L==5 +#elif L==5 "plate-forme pour appuyer l'enseignement (Raspberry Pi)"; -# elif L==6 +#elif L==6 "plataforma de apoyo a la docencia (Raspberry Pi)"; // Okoteve traducción -# elif L==7 +#elif L==7 "piattaforma per sostenere l'insegnamento (Raspberry Pi)"; -# elif L==8 +#elif L==8 "platforma do wspierania nauczania (Raspberry Pi)"; -# elif L==9 +#elif L==9 "plataforma de apoio ao ensino (Raspberry Pi)"; -# endif +#elif L==10 // tr + ""; // Çeviri lazim! +#endif const char *Txt_TAGLINE_BR = -# if L==1 +#if L==1 "plataforma de suport a la
docència (Raspberry Pi)"; -# elif L==2 +#elif L==2 "Plattform zur Unterstützung
der Lehre (Raspberry Pi)"; -# elif L==3 +#elif L==3 "platform to support
teaching (Raspberry Pi)"; -# elif L==4 +#elif L==4 "plataforma de apoyo a la
docencia (Raspberry Pi)"; -# elif L==5 +#elif L==5 "plate-forme pour appuyer
l'enseignement (Raspberry Pi)"; -# elif L==6 +#elif L==6 "plataforma de apoyo a la
docencia (Raspberry Pi)"; // Okoteve traducción -# elif L==7 +#elif L==7 "piattaforma per sostenere
l'insegnamento (Raspberry Pi)"; -# elif L==8 +#elif L==8 "platforma do wspierania
nauczania (Raspberry Pi)"; -# elif L==9 +#elif L==9 "plataforma de apoio
ao ensino (Raspberry Pi)"; -# endif +#elif L==10 // tr + ""; // Çeviri lazim! +#endif #endif @@ -46086,6 +50294,8 @@ const char *Txt_Tags = // Tags used in test "Tags"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Descritores"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_teachers_ABBREVIATION = // Abbreviation of "Teachers" @@ -46107,6 +50317,8 @@ const char *Txt_teachers_ABBREVIATION = // Abbreviation of "Teachers" "nauc."; #elif L==9 // pt "prof."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Teachers_comment = @@ -46128,6 +50340,8 @@ const char *Txt_Teachers_comment = "Komentarz nauczycieli"; #elif L==9 // pt "Comentário dos professores"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Teachers_files_area = @@ -46149,6 +50363,8 @@ const char *Txt_Teachers_files_area = "Nauczyciela udostępnionych plików"; #elif L==9 // pt "Zona de arquivos dos professores"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_teachers_files_area = @@ -46170,6 +50386,8 @@ const char *Txt_teachers_files_area = "nauczyciela udostępnionych plików"; #elif L==9 // pt "zona de arquivos dos professores"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Teaching_platform = @@ -46191,6 +50409,8 @@ const char *Txt_Teaching_platform = "Platforma nauczania"; #elif L==9 // pt "Plataforma de ensino"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Temporary_private_storage_area = @@ -46212,6 +50432,8 @@ const char *Txt_Temporary_private_storage_area = "Prywatny magazyn"; #elif L==9 // pt "Zona privada de armazenamento"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_temporary_private_storage_area = @@ -46233,6 +50455,8 @@ const char *Txt_temporary_private_storage_area = "obszar prywatnego przechowywania"; #elif L==9 // pt "zona privada de armazenamento"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Test = @@ -46254,6 +50478,8 @@ const char *Txt_Test = "Test"; #elif L==9 // pt "Teste"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Test_No_X_that_you_make_in_this_course = // Warning: it is very important to include %u in the following sentences @@ -46275,6 +50501,8 @@ const char *Txt_Test_No_X_that_you_make_in_this_course = // Warning: it is very "Test nr %u który przeprowadzasz na ten kurs"; #elif L==9 // pt "Teste nº %u que você faz nesta disciplina"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Text = @@ -46296,6 +50524,8 @@ const char *Txt_Text = "Tekst"; #elif L==9 // pt "Texto"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_TEXT_plain = @@ -46317,6 +50547,8 @@ const char *Txt_TEXT_plain = "zwykly"; #elif L==9 // pt "plano"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Thank_you_for_reporting_a_possible_duplicate_user = @@ -46338,6 +50570,8 @@ const char *Txt_Thank_you_for_reporting_a_possible_duplicate_user = "Dziękujemy za zgłoszenie ewentualnego duplikat użytkownika."; #elif L==9 // pt "Obrigado por relatar um possível usuário duplicado."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Thanks_for_answering_the_survey = @@ -46359,6 +50593,8 @@ const char *Txt_Thanks_for_answering_the_survey = "Thanks for answering the survey."; // Potrzebujesz tlumaczenie #elif L==9 // pt "Obrigado por responder o inquérito."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_alphabetical_code_X_already_exists = // Warning: it is very important to include %s in the following sentences @@ -46380,6 +50616,8 @@ const char *Txt_The_alphabetical_code_X_already_exists = // Warning: it is very "Kod alfabetyczny ISO 3166-1 %s już istnieje."; #elif L==9 // pt "O código alfabético ISO 3166-1 %s já existe."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_alphabetical_code_X_is_not_correct = // Warning: it is very important to include %s in the following sentences @@ -46401,6 +50639,8 @@ const char *Txt_The_alphabetical_code_X_is_not_correct = // Warning: it is very "Kod alfabetyczny ISO 3166-1 %s jest nieprawidłowy."; #elif L==9 // pt "O código alfabético ISO 3166-1 %s não está correto."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_answers_of_the_question_with_code_X_will_appear_shuffled = // Warning: it is very important to include %ld in the following sentences @@ -46431,6 +50671,8 @@ const char *Txt_The_answers_of_the_question_with_code_X_will_appear_shuffled = / #elif L==9 // pt "As respostas da pergunta com o código %ld" " aparecerão embaralhadas."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_answers_of_the_question_with_code_X_will_appear_without_shuffling = // Warning: it is very important to include %ld in the following sentences @@ -46461,6 +50703,8 @@ const char *Txt_The_answers_of_the_question_with_code_X_will_appear_without_shuf #elif L==9 // pt "As respostas da pergunta com o código %ld" " aparecerão sem embaralhar."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_assignment_has_been_modified = @@ -46482,6 +50726,8 @@ const char *Txt_The_assignment_has_been_modified = "Działanie zostało zmodyfikowane."; #elif L==9 // pt "A atividade foi modificada."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_banner_X_already_exists = // Warning: it is very important to include %s in the following sentences @@ -46503,6 +50749,8 @@ const char *Txt_The_banner_X_already_exists = // Warning: it is very important t "Baner %s już istnieje."; #elif L==9 // pt "O banner %s já existe."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_banner_X_has_been_renamed_as_Y = // Warning: it is very important to include two %s in the following sentences @@ -46524,6 +50772,8 @@ const char *Txt_The_banner_X_has_been_renamed_as_Y = // Warning: it is very impo "Baner %s został przemianowany na %s."; #elif L==9 // pt "O banner %s foi renomeado como %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_building_X_already_exists = // Warning: it is very important to include %s in the following sentences @@ -46545,6 +50795,8 @@ const char *Txt_The_building_X_already_exists = // Warning: it is very important "Budynek %s już istnieje."; #elif L==9 // pt "O edifício %s já existe."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_building_X_has_been_renamed_as_Y = // Warning: it is very important to include two %s in the following sentences @@ -46566,6 +50818,8 @@ const char *Txt_The_building_X_has_been_renamed_as_Y = // Warning: it is very im "Budynek %s zostało przemianowane na %s."; #elif L==9 // pt "O edifício %s foi renomeado como %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_building_of_room_X_has_not_changed = // Warning: it is very important to include %s in the following sentences @@ -46587,6 +50841,8 @@ const char *Txt_The_building_of_room_X_has_not_changed = // Warning: it is very "Budynek klasy %s nie uległa zmianie."; #elif L==9 // pt "O edifício da sala %s não mudou."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_building_of_room_X_is_now_Y = // Warning: it is very important to include two %s in the following sentences @@ -46608,6 +50864,8 @@ const char *Txt_The_building_of_room_X_is_now_Y = // Warning: it is very importa "Budynek klasy %s wynosi teraz %s."; #elif L==9 // pt "O edifício da sala %s é agora %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_call_for_exam_has_been_successfully_updated = @@ -46629,6 +50887,8 @@ const char *Txt_The_call_for_exam_has_been_successfully_updated = "Ogloszenie egzamin został pomyślnie zaktualizowany."; #elif L==9 // pt "A chamada para exame foi atualizada com sucesso."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_capacity_of_room_X_has_not_changed = // Warning: it is very important to include %s in the following sentences @@ -46650,6 +50910,8 @@ const char *Txt_The_capacity_of_room_X_has_not_changed = // Warning: it is very "Pojemność klasy %s nie uległa zmianie."; #elif L==9 // pt "A capacidade da sala %s não mudou."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_capacity_of_room_X_is_now_Y = // Warning: it is very important to include %s and %u in the following sentences @@ -46671,6 +50933,8 @@ const char *Txt_The_capacity_of_room_X_is_now_Y = // Warning: it is very importa "Pojemność klasy %s wynosi teraz %u."; #elif L==9 // pt "A capacidade da sala %s é agora %u."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_center_X_already_exists = // Warning: it is very important to include %s in the following sentences @@ -46692,6 +50956,8 @@ const char *Txt_The_center_X_already_exists = // Warning: it is very important t "Centrum %s już istnieje."; #elif L==9 // pt "O centro %s já existe."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_center_X_has_been_moved_to_the_institution_Y = // Warning: it is very important to include two %s in the following sentences @@ -46722,6 +50988,8 @@ const char *Txt_The_center_X_has_been_moved_to_the_institution_Y = // Warning: i #elif L==9 // pt "O centro %s foi transferido" " para a instituição %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_center_X_has_been_renamed_as_Y = // Warning: it is very important to include two %s in the following sentences @@ -46743,6 +51011,8 @@ const char *Txt_The_center_X_has_been_renamed_as_Y = // Warning: it is very impo "Centrum %s zostało przemianowane na %s."; #elif L==9 // pt "O centro %s foi renomeado como %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_configuration_of_the_projects_has_been_updated = @@ -46764,6 +51034,8 @@ const char *Txt_The_configuration_of_the_projects_has_been_updated = "Konfiguracja projektów została zaktualizowana."; #elif L==9 // pt "A configuração dos projetos foi atualizada."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_contents_of_the_folder_are_too_big = @@ -46785,6 +51057,8 @@ const char *Txt_The_contents_of_the_folder_are_too_big = "Zawartość folderu są zbyt duże."; #elif L==9 // pt "O conteúdo do diretório é muito grande."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_copy_has_been_successful = @@ -46806,6 +51080,8 @@ const char *Txt_The_copy_has_been_successful = "The copy has been successful."; // Potrzebujesz tlumaczenie #elif L==9 // pt "A cópia foi feita com sucesso."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_copy_has_stopped_when_trying_to_paste_the_file_X_because_it_would_exceed_the_disk_quota = // Warning: it is very important to include %s in the following sentences @@ -46836,6 +51112,8 @@ const char *Txt_The_copy_has_stopped_when_trying_to_paste_the_file_X_because_it_ #elif L==9 // pt "A cópia parou ao tentar colar o arquivo %s" " porque ele excederia a cota de disco."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_copy_has_stopped_when_trying_to_paste_the_folder_X_because_it_would_exceed_the_disk_quota = // Warning: it is very important to include %s in the following sentences @@ -46866,6 +51144,8 @@ const char *Txt_The_copy_has_stopped_when_trying_to_paste_the_folder_X_because_i #elif L==9 // pt "A cópia parou ao tentar colar a pasta %s" " porque ele excederia a cota de disco."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_copy_has_stopped_when_trying_to_paste_the_link_X_because_it_would_exceed_the_disk_quota = // Warning: it is very important to include %s in the following sentences @@ -46896,6 +51176,8 @@ const char *Txt_The_copy_has_stopped_when_trying_to_paste_the_link_X_because_it_ #elif L==9 // pt "A cópia parou ao tentar colar o link %s" " porque ele excederia a cota de disco."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_copy_has_stopped_when_trying_to_paste_the_file_X_because_it_would_exceed_the_maximum_allowed_number_of_levels = // Warning: it is very important to include %s in the following sentences @@ -46926,6 +51208,8 @@ const char *Txt_The_copy_has_stopped_when_trying_to_paste_the_file_X_because_it_ #elif L==9 // pt "A cópia parou ao tentar colar o arquivo %s" " porque ele excederia o número máximo permitido de níveis."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_copy_has_stopped_when_trying_to_paste_the_folder_X_because_it_would_exceed_the_maximum_allowed_number_of_levels = // Warning: it is very important to include %s in the following sentences @@ -46956,6 +51240,8 @@ const char *Txt_The_copy_has_stopped_when_trying_to_paste_the_folder_X_because_i #elif L==9 // pt "A cópia parou ao tentar colar o arquivo %s" " porque ele excederia o número máximo permitido de níveis."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_copy_has_stopped_when_trying_to_paste_the_link_X_because_it_would_exceed_the_maximum_allowed_number_of_levels = // Warning: it is very important to include %s in the following sentences @@ -46986,6 +51272,8 @@ const char *Txt_The_copy_has_stopped_when_trying_to_paste_the_link_X_because_it_ #elif L==9 // pt "A cópia parou ao tentar colar o link %s" " porque ele excederia o número m&aaxute;ximo permitido de níveis."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_copy_has_stopped_when_trying_to_paste_the_file_X_because_there_is_already_an_object_with_that_name = // Warning: it is very important to include %s in the following sentences @@ -47016,6 +51304,8 @@ const char *Txt_The_copy_has_stopped_when_trying_to_paste_the_file_X_because_the #elif L==9 // pt "A cópia parou ao tentar colar o arquivo %s" " porque já existe um objeto com esse nome."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_copy_has_stopped_when_trying_to_paste_the_link_X_because_there_is_already_an_object_with_that_name = // Warning: it is very important to include %s in the following sentences @@ -47046,6 +51336,8 @@ const char *Txt_The_copy_has_stopped_when_trying_to_paste_the_link_X_because_the #elif L==9 // pt "A cópia parou ao tentar colar o link %s" " porque já existe um objeto com esse nome."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_copy_has_stopped_when_trying_to_paste_the_file_X_because_you_can_not_paste_a_file_here_of_a_type_other_than_HTML = // Warning: it is very important to include %s in the following sentences @@ -47076,6 +51368,8 @@ const char *Txt_The_copy_has_stopped_when_trying_to_paste_the_file_X_because_you #elif L==9 // pt "A cópia parou ao tentar colar o arquivo %s" " porque você não pode colar um arquivo aqui de um tipo diferente de HTML."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_country_X_already_exists = // Warning: it is very important to include %s in the following sentences @@ -47097,6 +51391,8 @@ const char *Txt_The_country_X_already_exists = // Warning: it is very important "The country %s already exists."; // Potrzebujesz tlumaczenie #elif L==9 // pt "O país %s já existe."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_country_X_has_been_renamed_as_Y = // Warning: it is very important to include two %s in the following sentences @@ -47118,6 +51414,8 @@ const char *Txt_The_country_X_has_been_renamed_as_Y = // Warning: it is very imp "Kraj %s został przemianowany na %s."; #elif L==9 // pt "O país %s foi renomeado como %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_country_of_the_institution_X_has_changed_to_Y = // Warning: it is very important to include two %s in the following sentences @@ -47148,6 +51446,8 @@ const char *Txt_The_country_of_the_institution_X_has_changed_to_Y = // Warning: #elif L==9 // pt "The country of the institution %s" " has changed to %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_course_X_already_exists = // Warning: it is very important to include %s in the following sentences @@ -47169,6 +51469,8 @@ const char *Txt_The_course_X_already_exists = // Warning: it is very important t "Kurs %s już istnieje."; #elif L==9 // pt "A disciplina %s já existe."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_course_X_already_exists_in_year_Y = // Warning: it is very important to include two %s in the following sentences @@ -47190,6 +51492,8 @@ const char *Txt_The_course_X_already_exists_in_year_Y = // Warning: it is very i "Kurs %s istnieje już na roku/semestrze %s."; #elif L==9 // pt "A disciplina %s já existe no ano/semestre %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_course_X_has_been_moved_to_the_degree_Y = // Warning: it is very important to include two %s in the following sentences @@ -47220,6 +51524,8 @@ const char *Txt_The_course_X_has_been_moved_to_the_degree_Y = // Warning: it is #elif L==9 // pt "A disciplina curso %s foi movida" " para o grau %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_course_X_has_been_renamed_as_Y = // Warning: it is very important to include two %s in the following sentences @@ -47250,6 +51556,8 @@ const char *Txt_The_course_X_has_been_renamed_as_Y = // Warning: it is very impo #elif L==9 // pt "A disciplina %s" " foi renomeada como %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_date_of_the_holiday_X_has_changed_to_Y = // Warning: it is very important to include two %s in the following sentences @@ -47271,6 +51579,8 @@ const char *Txt_The_date_of_the_holiday_X_has_changed_to_Y = // Warning: it is v "Data święta %s zmieniła się na %s."; #elif L==9 // pt "A data do feriado %s mudou para %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_date_range_must_be_less_than_or_equal_to_X_days = // Warning: it is very important to include %u in the following sentences @@ -47292,6 +51602,8 @@ const char *Txt_The_date_range_must_be_less_than_or_equal_to_X_days = // Warning "Zakres dat musi być krótszy lub równy %u dniom."; #elif L==9 // pt "O intervalo de datas deve ser menor ou igual a %u dias."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_date_time_of_opening_of_groups_has_changed = @@ -47313,6 +51625,8 @@ const char *Txt_The_date_time_of_opening_of_groups_has_changed = "The date/time of opening of groups has changed."; // Potrzebujesz tlumaczenie #elif L==9 // pt "A data/hora de abertura dos grupos foi alterada."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_degree_X_already_exists = // Warning: it is very important to include %s in the following sentences @@ -47334,6 +51648,8 @@ const char *Txt_The_degree_X_already_exists = // Warning: it is very important t "Stopień %s już istnieje."; #elif L==9 // pt "O grau %s já existe."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_degree_X_has_been_moved_to_the_center_Y = // Warning: it is very important to include two %s in the following sentences @@ -47364,6 +51680,8 @@ const char *Txt_The_degree_X_has_been_moved_to_the_center_Y = // Warning: it is #elif L==9 // pt "O grau %s foi movido" " para o centro %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_degree_X_has_been_renamed_as_Y = // Warning: it is very important to include two %s in the following sentences @@ -47394,6 +51712,8 @@ const char *Txt_The_degree_X_has_been_renamed_as_Y = // Warning: it is very impo #elif L==9 // pt "O grau %s" " foi renomeado como %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_department_X_already_exists = // Warning: it is very important to include %s in the following sentences @@ -47415,6 +51735,8 @@ const char *Txt_The_department_X_already_exists = // Warning: it is very importa "The department %s already exists."; // Potrzebujesz tlumaczenie #elif L==9 // pt "O departamento %s já existe."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_department_X_has_been_renamed_as_Y = // Warning: it is very important to include two %s in the following sentences @@ -47445,6 +51767,8 @@ const char *Txt_The_department_X_has_been_renamed_as_Y = // Warning: it is very #elif L==9 // pt "O departamento %s" " foi renomeado como %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_email_X_has_been_confirmed = // Warning: it is very important to include %s in the following sentences @@ -47466,6 +51790,8 @@ const char *Txt_The_email_X_has_been_confirmed = // Warning: it is very importan "E-mail %s został potwierdzony."; #elif L==9 // pt "O email %s foi confirmado."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_email_address_entered_X_is_not_valid = // Warning: it is very important to include %s in the following sentences @@ -47496,6 +51822,8 @@ const char *Txt_The_email_address_entered_X_is_not_valid = // Warning: it is ver #elif L==9 // pt "O endereço de email inserido" " %s não é válido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_email_address_X_had_been_registered_by_another_user = // Warning: it is very important to include %s in the following sentences @@ -47526,6 +51854,8 @@ const char *Txt_The_email_address_X_had_been_registered_by_another_user = // War #elif L==9 // pt "O endereço de email %s" " foi registrado por outro usuário."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_email_address_X_has_been_registered_successfully = // Warning: it is very important to include %s in the following sentences @@ -47556,6 +51886,8 @@ const char *Txt_The_email_address_X_has_been_registered_successfully = // Warnin #elif L==9 // pt "O endereço de email %s" " foi registrado com sucesso."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_email_address_X_matches_one_previously_registered = // Warning: it is very important to include %s in the following sentences @@ -47586,6 +51918,8 @@ const char *Txt_The_email_address_X_matches_one_previously_registered = // Warni #elif L==9 // pt "O endereço de email %s" " corresponde a um registrado anteriormente."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_email_domain_X_already_exists = @@ -47607,6 +51941,8 @@ const char *Txt_The_email_domain_X_already_exists = "Domena poczty e-mail już istnieje."; #elif L==9 // pt "O domínio de email já existe."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_email_domain_X_has_been_renamed_as_Y = // Warning: it is very important to include two %s in the following sentences @@ -47637,6 +51973,8 @@ const char *Txt_The_email_domain_X_has_been_renamed_as_Y = // Warning: it is ver #elif L==9 // pt "O domínio de email %s" " foi renomeado como %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_email_domain_X_has_not_changed = // Warning: it is very important to include %s in the following sentences @@ -47658,6 +51996,8 @@ const char *Txt_The_email_domain_X_has_not_changed = // Warning: it is very impo "Domena poczty e-mail %s nie uległa zmianie."; #elif L==9 // pt "O domínio de email %s não foi alterado."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_enrolment_of_students_into_groups_of_type_X_is_now_mandatory = // Warning: it is very important to include %s in the following sentences @@ -47679,6 +52019,8 @@ const char *Txt_The_enrolment_of_students_into_groups_of_type_X_is_now_mandatory "Zapis uczniów do grup typu %s jest teraz obowiązkowy."; #elif L==9 // pt "A inscrição de alunos em grupos do tipo %s é agora obrigatória."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_enrolment_of_students_into_groups_of_type_X_is_now_voluntary = // Warning: it is very important to include %s in the following sentences @@ -47700,6 +52042,8 @@ const char *Txt_The_enrolment_of_students_into_groups_of_type_X_is_now_voluntary "Zapisy uczniów do grup typu %s są teraz dobrowolne."; #elif L==9 // pt "A inscrição de estudantes em grupos do tipo %s é agora voluntária."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_event_has_been_modified = @@ -47721,6 +52065,8 @@ const char *Txt_The_event_has_been_modified = "Wydarzenie zostało zmodyfikowane."; #elif L==9 // pt "O evento foi modificado."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_exam_has_been_modified = @@ -47742,6 +52088,8 @@ const char *Txt_The_exam_has_been_modified = "Egzamin został zmodyfikowany."; #elif L==9 // pt "O exame foi modificado."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_file_could_not_be_processed_successfully = @@ -47763,6 +52111,8 @@ const char *Txt_The_file_could_not_be_processed_successfully = "Plik nie mógł zostać pomyślnie przetworzony."; #elif L==9 // pt "O arquivo não pôde ser processado com sucesso."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_file_X_has_been_placed_inside_the_folder_Y = // Warning: it is very important to include %s in the following sentences @@ -47793,6 +52143,8 @@ const char *Txt_The_file_X_has_been_placed_inside_the_folder_Y = // Warning: it #elif L==9 // pt "O arquivo %s foi colocado" " dentro do diretório %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_file_is_not_X = // Warning: it is very important to include %s in the following sentences @@ -47814,6 +52166,8 @@ const char *Txt_The_file_is_not_X = // Warning: it is very important to include "Plik nie jest w formacie %s."; #elif L==9 // pt "O arquivo não é %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_file_of_folder_no_longer_exists_or_is_now_hidden = @@ -47835,6 +52189,8 @@ const char *Txt_The_file_of_folder_no_longer_exists_or_is_now_hidden = "Plik lub folder już nie istnieje lub jest ukryte."; #elif L==9 // pt "O arquivo ou diretório não existe mais ou está escondido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_file_type_is_X_and_should_be_HTML_or_ZIP = // Warning: it is very important to include %s in the following sentences @@ -47856,6 +52212,8 @@ const char *Txt_The_file_type_is_X_and_should_be_HTML_or_ZIP = // Warning: it is "Typ pliku to %s i powinien to być HTML lub ZIP."; #elif L==9 // pt "O tipo de arquivo é %s e deve ser HTML ou ZIP."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_file_type_should_be_HTML_or_ZIP = @@ -47877,6 +52235,8 @@ const char *Txt_The_file_type_should_be_HTML_or_ZIP = "Typ pliku powinien być HTML lub ZIP."; #elif L==9 // pt "O tipo de arquivo deve ser HTML ou ZIP."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_floor_of_room_X_has_not_changed = // Warning: it is very important to include %s in the following sentences @@ -47898,6 +52258,8 @@ const char *Txt_The_floor_of_room_X_has_not_changed = // Warning: it is very imp "Piętrze klasy %s nie uległa zmianie."; #elif L==9 // pt "O andar da sala %s não mudou."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_floor_of_room_X_is_now_Y = // Warning: it is very important to include %s and %d in the following sentences @@ -47919,6 +52281,8 @@ const char *Txt_The_floor_of_room_X_is_now_Y = // Warning: it is very important "Piętrze klasy %s wynosi teraz %d."; #elif L==9 // pt "O andar da sala %s é agora %d."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_folder_X_has_been_created_inside_the_folder_Y = // Warning: it is very important to include two %s in the following sentences @@ -47940,6 +52304,8 @@ const char *Txt_The_folder_X_has_been_created_inside_the_folder_Y = // Warning: "The folder %s has been created inside the folder %s."; // Potrzebujesz tlumaczenie #elif L==9 // pt "O diretório %s foi criado dentro do diretório %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_folder_is_empty = @@ -47961,6 +52327,8 @@ const char *Txt_The_folder_is_empty = "Folder jest pusty."; #elif L==9 // pt "O diretório está vazio."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_folder_X_has_been_renamed_as_Y = // Warning: it is very important to include two %s in the following sentences @@ -47982,6 +52350,8 @@ const char *Txt_The_folder_X_has_been_renamed_as_Y = // Warning: it is very impo "The folder %s has been renamed as %s."; // Potrzebujesz tlumaczenie #elif L==9 // pt "A pasta %s foi renomeada como %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_folder_name_X_has_not_changed_because_there_is_already_a_folder_or_a_file_with_the_name_Y = // Warning: it is very important to include two %s in the following sentences @@ -48012,6 +52382,8 @@ const char *Txt_The_folder_name_X_has_not_changed_because_there_is_already_a_fol #elif L==9 // pt "O nome da pasta %s não foi alterado" " porque já existe uma pasta ou um arquivo com o nome %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_game_has_been_modified = @@ -48033,6 +52405,8 @@ const char *Txt_The_game_has_been_modified = "Gra zostało zmodyfikowane."; #elif L==9 // pt "O jogo foi modificado."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_group_X_already_exists = // Warning: it is very important to include %s in the following sentences @@ -48054,6 +52428,8 @@ const char *Txt_The_group_X_already_exists = // Warning: it is very important to "Grupa %s już istnieje."; #elif L==9 // pt "O grupo %s já existe."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_group_X_has_been_renamed_as_Y = // Warning: it is very important to include two %s in the following sentences @@ -48084,6 +52460,8 @@ const char *Txt_The_group_X_has_been_renamed_as_Y = // Warning: it is very impor #elif L==9 // pt "O grupo %s" " foi renomeado como %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_group_X_is_now_closed = // Warning: it is very important to include %s in the following sentences @@ -48105,6 +52483,8 @@ const char *Txt_The_group_X_is_now_closed = // Warning: it is very important to "Grupa %s jest teraz zamknięta."; #elif L==9 // pt "O grupo %s está agora fechado."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_group_X_is_now_open = // Warning: it is very important to include %s in the following sentences @@ -48126,6 +52506,8 @@ const char *Txt_The_group_X_is_now_open = // Warning: it is very important to in "Grupa %s jest teraz otwarta."; #elif L==9 // pt "O grupo %s está agora aberto."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_group_X_does_not_have_a_student_limit_now = // Warning: it is very important to include %s in the following sentences @@ -48147,6 +52529,8 @@ const char *Txt_The_group_X_does_not_have_a_student_limit_now = // Warning: it i "Grupa %s nie ma teraz żadnych limitów uczniów."; #elif L==9 // pt "O grupo %s não tem limite de estudantes agora."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_groups_will_automatically_open = @@ -48168,6 +52552,8 @@ const char *Txt_The_groups_will_automatically_open = "Grupy otworzą się automatycznie."; #elif L==9 // pt "Os grupos serão abertos automaticamente."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_groups_will_not_automatically_open = @@ -48189,6 +52575,8 @@ const char *Txt_The_groups_will_not_automatically_open = "Grupy nie otworzą się automatycznie."; #elif L==9 // pt "Os grupos não serão abertos automaticamente."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_holiday_X_has_been_renamed_as_Y = // Warning: it is very important to include two %s in the following sentences @@ -48219,6 +52607,8 @@ const char *Txt_The_holiday_X_has_been_renamed_as_Y = // Warning: it is very imp #elif L==9 // pt "O feriado %s" " foi renomeado como %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_HTML_file_has_been_received_successfully = @@ -48240,6 +52630,8 @@ const char *Txt_The_HTML_file_has_been_received_successfully = "Plik HTML został pomyślnie odebrany."; #elif L==9 // pt "O arquivo HTML foi recebido com sucesso."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_ID_X_has_been_confirmed = // Warning: it is very important to include %s in the following sentences @@ -48269,6 +52661,8 @@ const char *Txt_The_ID_X_has_been_confirmed = // Warning: it is very important t #elif L==9 // pt "O ID %s" " foi confirmado."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_ID_X_has_been_registered_successfully = // Warning: it is very important to include %s in the following sentences @@ -48299,6 +52693,8 @@ const char *Txt_The_ID_X_has_been_registered_successfully = // Warning: it is ve #elif L==9 // pt "O ID %s" " foi registrado com sucesso."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_ID_X_is_not_valid = // Warning: it is very important to include %s in the following sentences @@ -48329,6 +52725,8 @@ const char *Txt_The_ID_X_is_not_valid = // Warning: it is very important to incl #elif L==9 // pt "O ID %s não é válido." " Só pode conter números (pelo menos um) e letras."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_ID_is_used_in_order_to_facilitate_ = @@ -48395,6 +52793,8 @@ const char *Txt_The_ID_is_used_in_order_to_facilitate_ = " Se houver várias versões do nº de identificação" " (eg., com ou sem letra)," " escreva todas as versões."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_ID_nickname_or_email_X_is_not_valid = // Warning: it is very important to include %s in the following sentences @@ -48416,6 +52816,8 @@ const char *Txt_The_ID_nickname_or_email_X_is_not_valid = // Warning: it is very "@nick, e-mail lub ID %s jest nieprawidłowy."; #elif L==9 // pt "O @nick, email ou ID %s não é válido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_ID_X_matches_one_of_the_existing = // Warning: it is very important to include %s in the following sentences @@ -48446,6 +52848,8 @@ const char *Txt_The_ID_X_matches_one_of_the_existing = // Warning: it is very im #elif L==9 // pt "O ID %s" " corresponde a um dos existentes."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_institution_X_already_exists = // Warning: it is very important to include %s in the following sentences @@ -48467,6 +52871,8 @@ const char *Txt_The_institution_X_already_exists = // Warning: it is very import "The institution %s already exists."; // Potrzebujesz tlumaczenie #elif L==9 // pt "A instituição %s já existe."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_institution_X_has_been_renamed_as_Y = // Warning: it is very important to include two %s in the following sentences @@ -48488,6 +52894,8 @@ const char *Txt_The_institution_X_has_been_renamed_as_Y = // Warning: it is very "Instytucja %s została przemianowana na %s."; #elif L==9 // pt "A instituição %s foi renomeada como %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_institution_of_the_center_has_changed = @@ -48509,6 +52917,8 @@ const char *Txt_The_institution_of_the_center_has_changed = "Zmieniła się instytucja ośrodka."; #elif L==9 // pt "A instituição do centro mudou."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_institution_of_the_department_has_changed = @@ -48530,6 +52940,8 @@ const char *Txt_The_institution_of_the_department_has_changed = "Zmieniła się instytucja wydziału."; #elif L==9 // pt "A instituição do departamento mudou."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_institutional_code_of_the_course_X_has_changed_to_Y = // Warning: it is very important to include two %s in the following sentences @@ -48560,6 +52972,8 @@ const char *Txt_The_institutional_code_of_the_course_X_has_changed_to_Y = // War #elif L==9 // pt "O código institucional da disciplina %s" " mudou para %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_institutional_code_of_the_course_X_has_not_changed = // Warning: it is very important to include %s in the following sentences @@ -48581,6 +52995,8 @@ const char *Txt_The_institutional_code_of_the_course_X_has_not_changed = // Warn "Kod instytucjonalny kursu %s nie uległ zmianie."; #elif L==9 // pt "O código institucional da disciplina %s não mudou."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_integrated_editor_is_not_yet_available = @@ -48602,6 +53018,8 @@ const char *Txt_The_integrated_editor_is_not_yet_available = "Zintegrowany edytor nie jest jeszcze dostępny."; #elif L==9 // pt "O editor integrado ainda não está disponível."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_link_X_already_exists = // Warning: it is very important to include %s in the following sentences @@ -48623,6 +53041,8 @@ const char *Txt_The_link_X_already_exists = // Warning: it is very important to "Link %s już istnieje."; #elif L==9 // pt "O link %s já existe."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_link_X_has_been_placed_inside_the_folder_Y = // Warning: it is very important to include %s in the following sentences @@ -48653,6 +53073,8 @@ const char *Txt_The_link_X_has_been_placed_inside_the_folder_Y = // Warning: it #elif L==9 // pt "A ligação %s foi colocado" " dentro do diretório %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_link_X_has_been_renamed_as_Y = // Warning: it is very important to include two %s in the following sentences @@ -48674,6 +53096,8 @@ const char *Txt_The_link_X_has_been_renamed_as_Y = // Warning: it is very import "Link %s został przemianowany na %s."; #elif L==9 // pt "O link %s foi renomeado como %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_list_of_X_courses_is_too_large_to_be_displayed = // Warning: it is very important to include %u in the following sentences @@ -48695,6 +53119,8 @@ const char *Txt_The_list_of_X_courses_is_too_large_to_be_displayed = // Warning: "Lista %u kursów jest za duża, aby można ją było wyświetlić."; #elif L==9 // pt "A lista de %u disciplinas é muito grande para ser exibida."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_list_of_X_users_is_too_large_to_be_displayed = // Warning: it is very important to include %u in the following sentences @@ -48716,6 +53142,8 @@ const char *Txt_The_list_of_X_users_is_too_large_to_be_displayed = // Warning: i "Lista %u użytkowników jest za duża, aby można ją było wyświetlić."; #elif L==9 // pt "A lista de %u usuários é muito grande para ser exibida."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_location_of_the_building_X_has_changed_to_Y = // Warning: it is very important to include two %s in the following sentences @@ -48746,6 +53174,8 @@ const char *Txt_The_location_of_the_building_X_has_changed_to_Y = // Warning: it #elif L==9 // pt "A localização do edifício %s" " mudou para %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_location_of_the_building_X_has_not_changed = // Warning: it is very important to include %s in the following sentences @@ -48776,6 +53206,8 @@ const char *Txt_The_location_of_the_building_X_has_not_changed = // Warning: it #elif L==9 // pt "A localização do edifício %s" " não foi alterada."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_lower_limit_of_correct_answers_must_be_less_than_or_equal_to_the_upper_limit = @@ -48806,6 +53238,8 @@ const char *Txt_The_lower_limit_of_correct_answers_must_be_less_than_or_equal_to #elif L==9 // pt "O limite inferior de respostas corretas" " deve ser menor ou igual ao limite superior."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_the_marks_of_a_student_chosen_at_random_ = @@ -48836,6 +53270,8 @@ const char *Txt_the_marks_of_a_student_chosen_at_random_ = #elif L==9 // pt "vai mostrar as notas de um estudante da disciplina escolhido ao acaso;
" " se você vir mais de um estudante, isso significa que o número de cabeça ou pé linhas não está correto"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_maximum_number_of_students_in_group_X_has_not_changed = // Warning: it is very important to include %s in the following sentences @@ -48866,6 +53302,8 @@ const char *Txt_The_maximum_number_of_students_in_group_X_has_not_changed = // W #elif L==9 // pt "O número máximo de estudantes" " no grupo %s não foi alterado."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_maximum_number_of_students_in_group_X_is_now_Y = // Warning: it is very important to include %s and %u in the following sentences @@ -48896,6 +53334,8 @@ const char *Txt_The_maximum_number_of_students_in_group_X_is_now_Y = // Warning: #elif L==9 // pt "O número máximo de estudantes" " no grupo %s é agora %u."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_message_has_not_been_sent_to_any_recipient = @@ -48917,6 +53357,8 @@ const char *Txt_The_message_has_not_been_sent_to_any_recipient = "Wiadomość nie została wysłana do żadnego adresata."; #elif L==9 // pt "A mensagem não foi enviada para nenhum destinatário."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_message_has_been_sent_to_1_recipient = @@ -48938,6 +53380,8 @@ const char *Txt_The_message_has_been_sent_to_1_recipient = "Wiadomość została wysłana do 1 odbiorców."; #elif L==9 // pt "A mensagem foi enviada para 1 destinatário."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_message_has_been_sent_to_X_recipients = // Warning: it is very important to include %u in the following sentences @@ -48959,6 +53403,8 @@ const char *Txt_The_message_has_been_sent_to_X_recipients = // Warning: it is ve "Wiadomość została wysłana do %u odbiorców."; #elif L==9 // pt "A mensagem foi enviada para %u destinatários."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_name_X_has_not_changed = // Warning: it is very important to include %s in the following sentences @@ -48980,6 +53426,8 @@ const char *Txt_The_name_X_has_not_changed = // Warning: it is very important to "Nazwa %s nie uległa zmianie."; #elif L==9 // pt "O nome %s não foi alterado."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_new_application_key_is_X = // Warning: it is very important to include %s in the following sentences @@ -49001,6 +53449,8 @@ const char *Txt_The_new_application_key_is_X = // Warning: it is very important "Nowy klucz aplikacji to %s."; #elif L==9 // pt "A nova chave do aplicativo é %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_new_IP_address_is_X = // Warning: it is very important to include %s in the following sentences @@ -49022,6 +53472,8 @@ const char *Txt_The_new_IP_address_is_X = // Warning: it is very important to in "Nowy adres IP to %s."; #elif L==9 // pt "O novo endereço IP é %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_new_logo_is_X = // Warning: it is very important to include %s in the following sentences @@ -49043,6 +53495,8 @@ const char *Txt_The_new_logo_is_X = // Warning: it is very important to include "Nowe logo to %s."; #elif L==9 // pt "O novo logotipo é %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_nickname_has_been_registered_successfully = @@ -49064,6 +53518,8 @@ const char *Txt_The_nickname_has_been_registered_successfully = "Pseudonim został pomyślnie zarejestrowany."; #elif L==9 // pt "A alcunha foi registrada com sucesso."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_nickname_is_not_valid_ = @@ -49108,6 +53564,8 @@ const char *Txt_The_nickname_is_not_valid_ = "Sua alcunha deve ter um tamanho entre %u e %u caracteres (sem incluir o inicial @).
" "Cada caractere após inicial @ pode ser uma letra (a-z, A-Z)," " um dígito (0-9) ou "_"."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_notice_will_appear_as_a_yellow_note_ = @@ -49210,6 +53668,8 @@ const char *Txt_The_notice_will_appear_as_a_yellow_note_ = " você pode usar o fórum do curso," " enviar uma mensagem para todos" " ou enviar um arquivo com o texto para a área de documentos."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_new_web_address_is_X = // Warning: it is very important to include %s in the following sentences @@ -49231,6 +53691,8 @@ const char *Txt_The_new_web_address_is_X = // Warning: it is very important to i "Nowy adres internetowy to %s."; #elif L==9 // pt "O novo endereço web é %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_new_description_is_X = // Warning: it is very important to include %s in the following sentences @@ -49252,6 +53714,8 @@ const char *Txt_The_new_description_is_X = // Warning: it is very important to i "Nowy opis to %s."; #elif L==9 // pt "A nova descrição é %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_new_image_is_X = // Warning: it is very important to include %s in the following sentences @@ -49273,6 +53737,8 @@ const char *Txt_The_new_image_is_X = // Warning: it is very important to include "Nowy obraz to %s."; #elif L==9 // pt "A nova imagem é %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_new_URL_is_X = // Warning: it is very important to include %s in the following sentences @@ -49294,6 +53760,8 @@ const char *Txt_The_new_URL_is_X = // Warning: it is very important to include % "Nowy adres URL to %s."; #elif L==9 // pt "O novo URL é %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_nickname_had_been_registered_by_another_user = @@ -49315,6 +53783,8 @@ const char *Txt_The_nickname_had_been_registered_by_another_user = "Pseudonim został zarejestrowany przez innego użytkownika."; #elif L==9 // pt "A alcunha foi registrada por outro usuário."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_nickname_matches_the_one_you_had_previously_registered = @@ -49336,6 +53806,8 @@ const char *Txt_The_nickname_matches_the_one_you_had_previously_registered = "Pseudonim jest zgodny z tym, który wcześniej zarejestrowałeś."; #elif L==9 // pt "A alcunha corresponde àquela que você registrou anteriormente."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_number_of_editing_lines_in_the_record_field_X_has_not_changed = // Warning: it is very important to include %s in the following sentences @@ -49366,6 +53838,8 @@ const char *Txt_The_number_of_editing_lines_in_the_record_field_X_has_not_change #elif L==9 // pt "O número de linhas de edição" " no campo de cartão %s não foi alterado."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_number_of_questions_must_be_in_the_interval_X = // Warning: it is very important to include two %u in the following sentences @@ -49387,6 +53861,8 @@ const char *Txt_The_number_of_questions_must_be_in_the_interval_X = // Warning: "The number of questions must be in the interval [%u,%u]."; // Potrzebujesz tlumaczenie #elif L==9 // pt "O número de perguntas deve estar no intervalo [%u,%u]."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_number_of_rows_is_now_X = // Warning: it is very important to include %u in the following sentences @@ -49408,6 +53884,8 @@ const char *Txt_The_number_of_rows_is_now_X = // Warning: it is very important t "The number of rows is now %u."; // Potrzebujesz tlumaczenie #elif L==9 // pt "O número de linhas agora é %u."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_numerical_code_X_already_exists = // Warning: it is very important to include %03lu in the following sentences @@ -49429,6 +53907,8 @@ const char *Txt_The_numerical_code_X_already_exists = // Warning: it is very imp "Kod numeryczny %03ld ISO 3166-1 już istnieje."; #elif L==9 // pt "O código numérico %03ld da ISO 3166-1 já existe."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_photo_no_longer_exists = @@ -49450,6 +53930,8 @@ const char *Txt_The_photo_no_longer_exists = "Zdjęcie już nie istnieje."; #elif L==9 // pt "La foto não existe mais."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_post_no_longer_exists = @@ -49471,6 +53953,8 @@ const char *Txt_The_post_no_longer_exists = "Publikacja już nie istnieje."; #elif L==9 // pt "A publicação não existe mais."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_password_can_not_consist_only_of_digits = @@ -49501,6 +53985,8 @@ const char *Txt_The_password_can_not_consist_only_of_digits = #elif L==9 // pt "A senha não pode consistir" " apenas em dígitos."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_password_can_not_contain_spaces = @@ -49522,6 +54008,8 @@ const char *Txt_The_password_can_not_contain_spaces = "Hasło nie może zawierać spacji."; #elif L==9 // pt "A senha não pode conter espaços."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_password_is_too_trivial_ = @@ -49552,6 +54040,8 @@ const char *Txt_The_password_is_too_trivial_ = #elif L==9 // pt "A senha é muito trivial." " Use outro mais difícil de adivinhar."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_password_must_be_at_least_X_characters = // Warning: it is very important to include %u in the following sentences @@ -49573,6 +54063,8 @@ const char *Txt_The_password_must_be_at_least_X_characters = // Warning: it is v "Hasło musi mieć co najmniej %u znaków."; #elif L==9 // pt "A senha deve ter pelo menos %u caracteres."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_password_has_been_changed_successfully = @@ -49594,6 +54086,8 @@ const char *Txt_The_password_has_been_changed_successfully = "Hasło zostało pomyślnie zmienione."; #elif L==9 // pt "A senha foi alterada com sucesso."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_place_X_already_exists = // Warning: it is very important to include %s in the following sentences @@ -49615,6 +54109,8 @@ const char *Txt_The_place_X_already_exists = // Warning: it is very important to "Miejsce %s już istnieje."; #elif L==9 // pt "A localização %s já existe."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_place_X_has_been_renamed_as_Y = // Warning: it is very important to include two %s in the following sentences @@ -49636,6 +54132,8 @@ const char *Txt_The_place_X_has_been_renamed_as_Y = // Warning: it is very impor "Miejsce %s zostało przemianowane na %s."; #elif L==9 // pt "A localização %s foi renomeada como %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_place_of_the_center_has_changed = @@ -49657,6 +54155,8 @@ const char *Txt_The_place_of_the_center_has_changed = "Zmieniło się miejsce centrum."; #elif L==9 // pt "A localização do centro mudou."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_place_of_the_holiday_X_has_changed_to_Y = // Warning: it is very important to include two %s in the following sentences @@ -49678,6 +54178,8 @@ const char *Txt_The_place_of_the_holiday_X_has_changed_to_Y = // Warning: it is "Miejsce święta %s zmieniło się na %s."; #elif L==9 // pt "A localização do feriado %s mudou para %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_plugin_X_already_exists = // Warning: it is very important to include %s in the following sentences @@ -49699,6 +54201,8 @@ const char *Txt_The_plugin_X_already_exists = // Warning: it is very important t "The plugin %s already exists."; // Potrzebujesz tlumaczenie #elif L==9 // pt "O plugin %s já existe."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_plugin_X_has_been_renamed_as_Y = // Warning: it is very important to include two %s in the following sentences @@ -49720,6 +54224,8 @@ const char *Txt_The_plugin_X_has_been_renamed_as_Y = // Warning: it is very impo "Wtyczka %s została przemianowana na %s."; #elif L==9 // pt "O plugin %s foi renomeado como %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_project_has_been_modified = @@ -49741,6 +54247,8 @@ const char *Txt_The_project_has_been_modified = "Projekt został zmodyfikowany."; #elif L==9 // pt "O projeto foi modificado."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_properties_of_file_X_have_been_saved = // Warning: it is very important to include %s in the following sentences @@ -49762,6 +54270,8 @@ const char *Txt_The_properties_of_file_X_have_been_saved = // Warning: it is ver "Właściwości pliku %s zostały zapisane."; #elif L==9 // pt "As propriedades do arquivo %s foram salvas."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_record_field_X_already_exists = // Warning: it is very important to include %s in the following sentences @@ -49783,6 +54293,8 @@ const char *Txt_The_record_field_X_already_exists = // Warning: it is very impor "The record field %s already exists."; // Potrzebujesz tlumaczenie #elif L==9 // pt "O campo de cartão %s já existe."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_record_field_X_has_been_renamed_as_Y = // Warning: it is very important to include two %s in the following sentences @@ -49804,6 +54316,8 @@ const char *Txt_The_record_field_X_has_been_renamed_as_Y = // Warning: it is ver "Nazwa pola rekordu %s została zmieniona na %s."; #elif L==9 // pt "O campo de cartão %s foi renomeado como %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_requested_group_changes_were_successful = @@ -49825,6 +54339,8 @@ const char *Txt_The_requested_group_changes_were_successful = "Żądane zmiany grupy powiodły się."; #elif L==9 // pt "As alterações do grupo solicitadas foram bem sucedidas."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_role_of_THE_USER_X_in_the_course_Y_has_changed_from_A_to_B = // Warning: it is very important to include four %s in the following sentences @@ -49864,6 +54380,8 @@ const char *Txt_The_role_of_THE_USER_X_in_the_course_Y_has_changed_from_A_to_B = "O papel de %s" " na disciplina %s" " mudou de %s para %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_room_X_already_exists = // Warning: it is very important to include %s in the following sentences @@ -49885,6 +54403,8 @@ const char *Txt_The_room_X_already_exists = // Warning: it is very important to "Klasa %s już istnieje."; #elif L==9 // pt "A sala %s já existe."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_room_X_does_not_have_a_limited_capacity_now = // Warning: it is very important to include %s in the following sentences @@ -49906,6 +54426,8 @@ const char *Txt_The_room_X_does_not_have_a_limited_capacity_now = // Warning: it "Klasa %s nie ma teraz ograniczonej pojemności."; #elif L==9 // pt "A sala %s não tem capacidade limitada agora."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_room_X_has_been_renamed_as_Y = // Warning: it is very important to include two %s in the following sentences @@ -49927,6 +54449,8 @@ const char *Txt_The_room_X_has_been_renamed_as_Y = // Warning: it is very import "Klasa %s zostało przemianowane na %s."; #elif L==9 // pt "A sala %s foi renomeada como %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_room_assigned_to_the_group_X_has_changed = @@ -49948,6 +54472,8 @@ const char *Txt_The_room_assigned_to_the_group_X_has_changed = "Klasa przypisana do grupy %s uległa zmianie."; #elif L==9 // pt "A sala atribuída ao grupo %s mudou."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_X_students_who_belonged_to_the_course_Y_have_been_removed_from_it = // Warning: it is very important to include %u and %s in the following sentences @@ -49978,6 +54504,8 @@ const char *Txt_The_X_students_who_belonged_to_the_course_Y_have_been_removed_fr #elif L==9 // pt "Os %u estudantes que pertenceram" " à disciplina %s foram removidos dela."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_search_text_must_be_longer = @@ -49999,6 +54527,8 @@ const char *Txt_The_search_text_must_be_longer = "Tekst wyszukiwania powinien być dłuższy."; #elif L==9 // pt "O texto de pesquisa deve ser mais longo."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_session_has_expired = @@ -50020,6 +54550,8 @@ const char *Txt_The_session_has_expired = "Sesja wygasła."; #elif L==9 // pt "A sessão expirou."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_set_of_questions_has_been_modified = @@ -50041,6 +54573,8 @@ const char *Txt_The_set_of_questions_has_been_modified = "Zestaw pytań został zmodyfikowany."; #elif L==9 // pt "O conjunto de perguntas foi modificado."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_size_of_the_file_exceeds_the_maximum_allowed_X = // Warning: it is very important to include %s in the following sentences @@ -50071,6 +54605,8 @@ const char *Txt_The_size_of_the_file_exceeds_the_maximum_allowed_X = // Warning: #elif L==9 // pt "O tamanho do arquivo" " excede o máximo permitido (%s)."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_status_of_the_center_X_has_changed = // Warning: it is very important to include %s in the following sentences @@ -50092,6 +54628,8 @@ const char *Txt_The_status_of_the_center_X_has_changed = // Warning: it is very "Zmienił się status centrum %s."; #elif L==9 // pt "O status do centro %s foi alterado."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_status_of_the_course_X_has_changed = // Warning: it is very important to include %s in the following sentences @@ -50113,6 +54651,8 @@ const char *Txt_The_status_of_the_course_X_has_changed = // Warning: it is very "Zmienił się status kursu %s."; #elif L==9 // pt "O status do curso %s foi alterado."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_status_of_the_degree_X_has_changed = // Warning: it is very important to include %s in the following sentences @@ -50134,6 +54674,8 @@ const char *Txt_The_status_of_the_degree_X_has_changed = // Warning: it is very "Zmienił się status stopnia %s."; #elif L==9 // pt "O status do grau %s foi alterado."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_status_of_the_institution_X_has_changed = // Warning: it is very important to include %s in the following sentences @@ -50155,6 +54697,8 @@ const char *Txt_The_status_of_the_institution_X_has_changed = // Warning: it is "Zmienił się status instytucji %s."; #elif L==9 // pt "O status da instituição %s mudou."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_survey_has_been_modified = @@ -50176,6 +54720,8 @@ const char *Txt_The_survey_has_been_modified = "Badanie zostało zmodyfikowane."; #elif L==9 // pt "O inquérito foi modificado."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_tag_X_has_been_renamed_as_Y = // Warning: it is very important to include two %s in the following sentences @@ -50197,6 +54743,8 @@ const char *Txt_The_tag_X_has_been_renamed_as_Y = // Warning: it is very importa "Nazwa tagu %s została zmieniona na %s."; #elif L==9 // pt "O descritor %s foi renomeado como %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_tag_X_has_not_changed = // Warning: it is very important to include %s in the following sentences @@ -50218,6 +54766,8 @@ const char *Txt_The_tag_X_has_not_changed = // Warning: it is very important to "Tag %s nie uległ zmianie."; #elif L==9 // pt "O descritor %s não foi alterado."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_test_X_has_already_been_assessed_previously = // Warning: it is very important to include %u in the following sentences @@ -50239,6 +54789,8 @@ const char *Txt_The_test_X_has_already_been_assessed_previously = // Warning: it "Test %u został już wcześniej oceniony."; #elif L==9 // pt "O teste %u já foi avaliado anteriormente."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_test_configuration_has_been_updated = @@ -50260,6 +54812,8 @@ const char *Txt_The_test_configuration_has_been_updated = "Konfiguracja testowa została zaktualizowana."; #elif L==9 // pt "A configuração de teste foi atualizada."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_thread_is_already_in_this_forum = @@ -50281,6 +54835,8 @@ const char *Txt_The_thread_is_already_in_this_forum = "Wątek jest już na tym forum."; #elif L==9 // pt "A discussão já está neste fórum."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_thread_X_is_already_in_this_forum = // Warning: it is very important to include %s in the following sentences @@ -50302,6 +54858,8 @@ const char *Txt_The_thread_X_is_already_in_this_forum = // Warning: it is very i "Wątek %s jest ju˙ na tym forum."; #elif L==9 // pt "A discussão %s já está neste fórum."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_timetable_is_empty = @@ -50323,6 +54881,8 @@ const char *Txt_The_timetable_is_empty = "Harmonogram jest pusty."; #elif L==9 // pt "O horário está vazio."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_type_of_degree_X_already_exists = // Warning: it is very important to include %s in the following sentences @@ -50344,6 +54904,8 @@ const char *Txt_The_type_of_degree_X_already_exists = // Warning: it is very imp "The type of degree %s already exists."; // Potrzebujesz tlumaczenie #elif L==9 // pt "O tipo de grau %s já existe."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_type_of_degree_X_has_been_renamed_as_Y = // Warning: it is very important to include two %s in the following sentences @@ -50365,6 +54927,8 @@ const char *Txt_The_type_of_degree_X_has_been_renamed_as_Y = // Warning: it is v "Rodzaj stopnia %s został przemianowany na %s."; #elif L==9 // pt "O tipo de grau %s foi renomeado como %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_type_of_degree_of_the_degree_X_has_changed = // Warning: it is very important to include %s in the following sentences @@ -50386,6 +54950,8 @@ const char *Txt_The_type_of_degree_of_the_degree_X_has_changed = // Warning: it "Zmienił się rodzaj stopnia %s stopnia."; #elif L==9 // pt "O tipo de grau do grau %s mudou."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_type_of_group_X_already_exists = // Warning: it is very important to include %s in the following sentences @@ -50407,6 +54973,8 @@ const char *Txt_The_type_of_group_X_already_exists = // Warning: it is very impo "The type of group %s already exists."; // Potrzebujesz tlumaczenie #elif L==9 // pt "O tipo de grupo %s já existe."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_type_of_group_X_has_been_renamed_as_Y = // Warning: it is very important to include two %s in the following sentences @@ -50428,6 +54996,8 @@ const char *Txt_The_type_of_group_X_has_been_renamed_as_Y = // Warning: it is ve "Typ grupy %s został przemianowany na %s."; #elif L==9 // pt "O tipo de grupo %s foi renomeado como %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_type_of_group_of_the_group_X_has_changed = // Warning: it is very important to include %s in the following sentences @@ -50449,6 +55019,8 @@ const char *Txt_The_type_of_group_of_the_group_X_has_changed = // Warning: it is "Zmienił się typ grupy grupy %s."; #elif L==9 // pt "O tipo de grupo do grupo %s foi alterado."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_type_of_enrolment_of_the_type_of_group_X_has_not_changed = // Warning: it is very important to include %s in the following sentences @@ -50470,6 +55042,8 @@ const char *Txt_The_type_of_enrolment_of_the_type_of_group_X_has_not_changed = / "Rodzaj rejestracji typu grupy %s nie uległ zmianie."; #elif L==9 // pt "O tipo de inscrição do tipo de grupo %s não foi alterado."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_type_of_room_X_has_not_changed = // Warning: it is very important to include %s in the following sentences @@ -50491,6 +55065,8 @@ const char *Txt_The_type_of_room_X_has_not_changed = // Warning: it is very impo "Typ klasy %s nie uległa zmianie."; #elif L==9 // pt "O tipo da sala %s não mudou."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_type_of_room_X_is_now_Y = // Warning: it is very important to include two %s in the following sentences @@ -50512,6 +55088,8 @@ const char *Txt_The_type_of_room_X_is_now_Y = // Warning: it is very important t "Typ klasy %s wynosi teraz %s."; #elif L==9 // pt "O tipo da sala %s é agora %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_type_of_the_holiday_X_has_changed = // Warning: it is very important to include %s in the following sentences @@ -50533,6 +55111,8 @@ const char *Txt_The_type_of_the_holiday_X_has_changed = // Warning: it is very i "Zmienił się rodzaj święta %s."; #elif L==9 // pt "O tipo do feriado %s mudou."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_URL_X_has_been_updated = // Warning: it is very important to include %s in the following sentences @@ -50554,6 +55134,8 @@ const char *Txt_The_URL_X_has_been_updated = // Warning: it is very important to "Zaktualizowano adres URL %s."; #elif L==9 // pt "O URL %s foi atualizado."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_user_does_not_exist = @@ -50575,6 +55157,8 @@ const char *Txt_The_user_does_not_exist = "The user does not exist."; // Potrzebujesz tlumaczenie #elif L==9 // pt "O utilizador não existe."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_user_does_not_exist_or_password_is_incorrect = @@ -50605,6 +55189,8 @@ const char *Txt_The_user_does_not_exist_or_password_is_incorrect = #elif L==9 // pt "O utilizador não existe" " ou a senha está incorreta."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_THE_USER_X_already_exists_in_Y = // Warning: it is very important to include two %s in the following sentences @@ -50626,6 +55212,8 @@ const char *Txt_THE_USER_X_already_exists_in_Y = // Warning: it is very importan "%s już istnieje w %s."; #elif L==9 // pt "%s já existe em %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_THE_USER_X_exists_in_Y_but_is_not_enroled_in_the_course_Z = // Warning: it is very important to include three %s in the following sentences @@ -50665,6 +55253,8 @@ const char *Txt_THE_USER_X_exists_in_Y_but_is_not_enroled_in_the_course_Z = // W "%s existe em %s," " mas não está inscrito" " na disciplina %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_THE_USER_X_has_been_enroled_as_a_Y_in_the_project = // Warning: it is very important to include two %s in the following sentences @@ -50695,6 +55285,8 @@ const char *Txt_THE_USER_X_has_been_enroled_as_a_Y_in_the_project = // Warning: #elif L==9 // pt "%s foi matriculado/a" " como %s no projeto."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_THE_USER_X_has_been_enroled_as_administrator_of_Y = // Warning: it is very important to include two %s in the following sentences @@ -50725,6 +55317,8 @@ const char *Txt_THE_USER_X_has_been_enroled_as_administrator_of_Y = // Warning: #elif L==9 // pt "%s foi inscrito" " como administrador de %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_THE_USER_X_has_been_enroled_in_the_course_Y = // Warning: it is very important to include two %s in the following sentences @@ -50755,6 +55349,8 @@ const char *Txt_THE_USER_X_has_been_enroled_in_the_course_Y = // Warning: it is #elif L==9 // pt "%s foi matriculado/a" " na disciplina %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_THE_USER_X_has_been_enroled_in_the_group_of_type_Y_Z = // Warning: it is very important to include three %s in the following sentences @@ -50785,6 +55381,8 @@ const char *Txt_THE_USER_X_has_been_enroled_in_the_group_of_type_Y_Z = // Warnin #elif L==9 // pt "%s foi inscrito" " no grupo do tipo %s %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_THE_USER_X_has_been_removed_as_administrator = // Warning: it is very important to include %s in the following sentences @@ -50806,6 +55404,8 @@ const char *Txt_THE_USER_X_has_been_removed_as_administrator = // Warning: it is "%s został usunięty jako administrator."; #elif L==9 // pt "%s foi removido como administrador."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_THE_USER_X_has_been_removed_as_administrator_of_Y = // Warning: it is very important to include two %s in the following sentences @@ -50836,6 +55436,8 @@ const char *Txt_THE_USER_X_has_been_removed_as_administrator_of_Y = // Warning: #elif L==9 // pt "%s foi removido como administrador" " de %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_THE_USER_X_has_been_removed_from_all_his_her_courses = // Warning: it is very important to include %s in the following sentences @@ -50857,6 +55459,8 @@ const char *Txt_THE_USER_X_has_been_removed_from_all_his_her_courses = // Warnin "%s has been removed from all her/his courses."; // Potrzebujesz tlumaczenie #elif L==9 // pt "%s foi removido de todas as suas disciplinas."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_THE_USER_X_has_not_been_removed_from_any_group = // Warning: it is very important to include %s in the following sentences @@ -50887,6 +55491,8 @@ const char *Txt_THE_USER_X_has_not_been_removed_from_any_group = // Warning: it #elif L==9 // pt "%s não foi removido" " de nenhum grupo."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_THE_USER_X_has_been_removed_from_Y_groups = // Warning: it is very important to include %s and %u in the following sentences @@ -50908,6 +55514,8 @@ const char *Txt_THE_USER_X_has_been_removed_from_Y_groups = // Warning: it is ve "%s has been removed from %u groups."; // Potrzebujesz tlumaczenie #elif L==9 // pt "%s foi removido de %u grupos."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_THE_USER_X_has_been_removed_from_one_group = // Warning: it is very important to include %s in the following sentences @@ -50929,6 +55537,8 @@ const char *Txt_THE_USER_X_has_been_removed_from_one_group = // Warning: it is v "%s has been removed from one group."; // Potrzebujesz tlumaczenie #elif L==9 // pt "%s foi removido de um grupo."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_THE_USER_X_has_been_removed_from_the_course_Y = // Warning: it is very important to include two %s in the following sentences @@ -50959,6 +55569,8 @@ const char *Txt_THE_USER_X_has_been_removed_from_the_course_Y = // Warning: it i #elif L==9 // pt "%s foi removido" " da disciplina %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_THE_USER_X_has_been_removed_from_the_group_of_type_Y_to_which_it_belonged = // Warning: it is very important to include two %s in the following sentences @@ -50989,6 +55601,8 @@ const char *Txt_THE_USER_X_has_been_removed_from_the_group_of_type_Y_to_which_it #elif L==9 // pt "%s foi removido" " do grupo do tipo %s ao qual pertencia."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_THE_USER_X_has_been_removed_as_a_Y_from_the_project_Z = // Warning: it is very important to include three %s in the following sentences @@ -51019,6 +55633,8 @@ const char *Txt_THE_USER_X_has_been_removed_as_a_Y_from_the_project_Z = // Warni #elif L==9 // pt "%s foi removido" " como %s do projeto %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_THE_USER_X_is_already_an_administrator_of_Y = // Warning: it is very important to include two %s in the following sentences @@ -51040,6 +55656,8 @@ const char *Txt_THE_USER_X_is_already_an_administrator_of_Y = // Warning: it is "%s is already an administrator of %s."; // Potrzebujesz tlumaczenie #elif L==9 // pt "%s já é um administrador de %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_THE_USER_X_is_in_the_course_Y_but_has_not_yet_accepted_the_enrolment = // Warning: it is very important to include %s in the following sentences @@ -51079,6 +55697,8 @@ const char *Txt_THE_USER_X_is_in_the_course_Y_but_has_not_yet_accepted_the_enrol "%s está inscrito/a" " na disciplina %s," " mas ainda não aceitou a inscrição."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_THE_USER_X_is_already_enroled_in_the_course_Y = // Warning: it is very important to include two %s in the following sentences @@ -51109,6 +55729,8 @@ const char *Txt_THE_USER_X_is_already_enroled_in_the_course_Y = // Warning: it i #elif L==9 // pt "%s está inscrito/a" " na disciplina %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_user_is_new_not_yet_in_X = // Warning: it is very important to include %s in the following sentences @@ -51130,6 +55752,8 @@ const char *Txt_The_user_is_new_not_yet_in_X = // Warning: it is very important "Użytkownik jest nowa, jeszcze nie w %s."; #elif L==9 // pt "O usuário é novo, ainda não existe o %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_THE_USER_X_is_not_an_administrator_of_Y = // Warning: it is very important to include two %s in the following sentences @@ -51151,6 +55775,8 @@ const char *Txt_THE_USER_X_is_not_an_administrator_of_Y = // Warning: it is very "%s is not an administrator of %s."; // Potrzebujesz tlumaczenie #elif L==9 // pt "%s não é um administrador de %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_THE_USER_X_is_not_found_in_the_file_of_marks = // Warning: it is very important to include %s in the following sentences @@ -51172,6 +55798,8 @@ const char *Txt_THE_USER_X_is_not_found_in_the_file_of_marks = // Warning: it is "%s nie znajduje się w aktach znaków."; #elif L==9 // pt "%s não é encontrado no arquivo de notas."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_visibility_of_the_record_field_X_has_not_changed = // Warning: it is very important to include %s in the following sentences @@ -51193,6 +55821,8 @@ const char *Txt_The_visibility_of_the_record_field_X_has_not_changed = // Warnin "Widoczność pola rekordu %s nie uległa zmianie."; #elif L==9 // pt "A visibilidade do campo de cartão %s não foi alterada."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_whole_course = @@ -51214,6 +55844,8 @@ const char *Txt_The_whole_course = "The whole course"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Toda a disciplina"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_year_X_is_not_allowed = // Warning: it is very important to include %u in the following sentences @@ -51235,6 +55867,8 @@ const char *Txt_The_year_X_is_not_allowed = // Warning: it is very important to "Rok/semestr %u jest niedozwolony."; #elif L==9 // pt "O ano/semestre %u não é permitido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_year_of_the_course_X_has_changed = // Warning: it is very important to include %s in the following sentences @@ -51256,6 +55890,8 @@ const char *Txt_The_year_of_the_course_X_has_changed = // Warning: it is very im "Zmienił się rok/semestr przypadku %s."; #elif L==9 // pt "O ano/semestre da disciplina %s mudou."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_ZIP_file_has_been_received_successfully = @@ -51277,6 +55913,8 @@ const char *Txt_The_ZIP_file_has_been_received_successfully = "Plik ZIP został pomyślnie odebrany."; #elif L==9 // pt "O arquivo ZIP foi recebido com sucesso."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_The_ZIP_file_has_been_unzipped_successfully = @@ -51298,6 +55936,8 @@ const char *Txt_The_ZIP_file_has_been_unzipped_successfully = "Plik ZIP został rozpakowany pomyślnie."; #elif L==9 // pt "O arquivo ZIP foi descompactado com sucesso."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Theme_SKIN = @@ -51319,6 +55959,8 @@ const char *Txt_Theme_SKIN = "Temat"; #elif L==9 // pt "Skin"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_There_are_more_than_one_table_in_the_file_of_marks = @@ -51340,6 +55982,8 @@ const char *Txt_There_are_more_than_one_table_in_the_file_of_marks = "W teczce znaków znajduje się więcej niż jedna tabela."; #elif L==9 // pt "Existem mais de uma tabela no arquivo de notas."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_There_are_more_than_one_user_with_the_ID_X_Please_type_a_nick_or_email = // Warning: it is very important to include %s in the following sentences @@ -51370,6 +56014,8 @@ const char *Txt_There_are_more_than_one_user_with_the_ID_X_Please_type_a_nick_or #elif L==9 // pt "Há mais de um usuário com o ID %s." " Por favor, digite uma @alcunha ou um email."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_There_are_new_posts = @@ -51391,6 +56037,8 @@ const char *Txt_There_are_new_posts = "Istnieje nowych postów"; #elif L==9 // pt "Há novas posts"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_There_are_no_accesses_with_the_selected_search_criteria = @@ -51412,6 +56060,8 @@ const char *Txt_There_are_no_accesses_with_the_selected_search_criteria = "Brak dostępu z wybranymi kryteriami wyszukiwania."; #elif L==9 // pt "Não há acessos com os critérios de pesquisa selecionados."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_There_are_no_centers_with_requests_for_degrees_to_be_confirmed = @@ -51451,6 +56101,8 @@ const char *Txt_There_are_no_centers_with_requests_for_degrees_to_be_confirmed = "Não há centros" " com solicitações de graus" " pendentes de confirmação."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_There_are_no_countries_with_requests_for_institutions_to_be_confirmed = @@ -51490,6 +56142,8 @@ const char *Txt_There_are_no_countries_with_requests_for_institutions_to_be_conf "Não há países" " com solicitações de instituições" " pendentes de confirmação."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_There_are_no_degrees_with_requests_for_courses_to_be_confirmed = @@ -51528,6 +56182,8 @@ const char *Txt_There_are_no_degrees_with_requests_for_courses_to_be_confirmed = "Não há graus" " com solicitações de disciplinas" " pendentes de confirmação."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_There_are_no_institutions_with_requests_for_centers_to_be_confirmed = @@ -51566,6 +56222,8 @@ const char *Txt_There_are_no_institutions_with_requests_for_centers_to_be_confir "Não há instituições" " com solicitações de centros" " pendentes de confirmação."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_There_are_no_record_fields_in_the_course_X = // Warning: it is very important to include %s in the following sentences @@ -51587,6 +56245,8 @@ const char *Txt_There_are_no_record_fields_in_the_course_X = // Warning: it is v "W kursie %s nie ma pól rekordów."; #elif L==9 // pt "Não hã campos de cartão na disciplina %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_There_are_no_types_of_group_in_the_course_X = // Warning: it is very important to include %s in the following sentences @@ -51608,6 +56268,8 @@ const char *Txt_There_are_no_types_of_group_in_the_course_X = // Warning: it is "W kursie %s nie ma typów grup."; #elif L==9 // pt "Não há tipos de grupo na disciplina %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_There_are_X_users_with_the_ID_Y = // Warning: it is very important to include %u and %s in the following sentences @@ -51629,6 +56291,8 @@ const char *Txt_There_are_X_users_with_the_ID_Y = // Warning: it is very importa "Jest %u użytkowników o ID %s."; #elif L==9 // pt "Existem %u usuários com o ID %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_There_has_been_no_change_in_groups = @@ -51650,6 +56314,8 @@ const char *Txt_There_has_been_no_change_in_groups = "Nie było zmian w grupach."; #elif L==9 // pt "Nenhuma alteração de grupo foi feita."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_There_have_been_X_errors_in_sending_the_message = // Warning: it is very important to include %u in the following sentences @@ -51671,6 +56337,8 @@ const char *Txt_There_have_been_X_errors_in_sending_the_message = // Warning: it "Wystąpiło %u błędów podczas wysyłania wiadomości."; #elif L==9 // pt "Houve %u erros ao enviar a mensagem."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_There_is_already_a_file_named_X = // Warning: it is very important to include %s in the following sentences @@ -51692,6 +56360,8 @@ const char *Txt_There_is_already_a_file_named_X = // Warning: it is very importa "There is already a file named %s."; // Potrzebujesz tlumaczenie #elif L==9 // pt "Já existe um arquivo chamado %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_There_is_already_a_non_empty_folder_named_X = // Warning: it is very important to include %s in the following sentences @@ -51713,6 +56383,8 @@ const char *Txt_There_is_already_a_non_empty_folder_named_X = // Warning: it is "There is already a non-empty folder named %s."; // Potrzebujesz tlumaczenie #elif L==9 // pt "Já existe uma pasta não vazia chamada strong>%s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_There_is_no_empty_account_associated_with_your_ID_X = // Warning: it is very important to include %s in the following sentences @@ -51743,6 +56415,8 @@ const char *Txt_There_is_no_empty_account_associated_with_your_ID_X = // Warning #elif L==9 // pt "Não existe nenhuma conta vazio (ainda não utilizado)" " associado ao seu ID %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_There_is_no_knowing_how_many_users_not_logged_have_accessed = @@ -51773,6 +56447,8 @@ const char *Txt_There_is_no_knowing_how_many_users_not_logged_have_accessed = #elif L==9 // pt "Não há como saber quantos usuários distintos" " não logados acessaram."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_There_is_no_user_with_email_X = // Warning: it is very important to include %s in the following sentences @@ -51803,6 +56479,8 @@ const char *Txt_There_is_no_user_with_email_X = // Warning: it is very important #elif L==9 // pt "Não há usuário" " com email %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_There_is_no_user_with_ID_nick_or_email_X = // Warning: it is very important to include %s in the following sentences @@ -51833,6 +56511,8 @@ const char *Txt_There_is_no_user_with_ID_nick_or_email_X = // Warning: it is ver #elif L==9 // pt "Não há usuário" " com ID, alcunha ou email %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_There_is_no_user_with_nickname_X = // Warning: it is very important to include %s in the following sentences @@ -51863,6 +56543,8 @@ const char *Txt_There_is_no_user_with_nickname_X = // Warning: it is very import #elif L==9 // pt "Não há usuário" " com alcunha %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_There_was_a_problem_sending_an_email_automatically = @@ -51884,6 +56566,8 @@ const char *Txt_There_was_a_problem_sending_an_email_automatically = "There was a problem sending an email automatically."; // Potrzebujesz tlumaczenie #elif L==9 // pt "Ocorreu um problema ao enviar um email automaticamente."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_This_exam_has_no_questions = @@ -51905,6 +56589,8 @@ const char *Txt_This_exam_has_no_questions = "Ten egzamin nie ma pytania."; #elif L==9 // pt "Este exame não tem perguntas."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_This_link_will_remain_active_as_long_as_your_user_s_account_exists = @@ -51926,6 +56612,8 @@ const char *Txt_This_link_will_remain_active_as_long_as_your_user_s_account_exis "Ten link pozostanie aktywna tak długo, jak istnieje konto użytkownika."; #elif L==9 // pt "Este link permanecerá ativo enquanto existir a sua conta do usuário."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_This_post_has_been_banned_probably_for_not_satisfy_the_rules_of_the_forums = @@ -51956,6 +56644,8 @@ const char *Txt_This_post_has_been_banned_probably_for_not_satisfy_the_rules_of_ #elif L==9 // pt "Este post foi censurado," " provavelmente por não satisfazer as regras dos fóruns."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_This_survey_has_no_questions = @@ -51977,6 +56667,8 @@ const char *Txt_This_survey_has_no_questions = "Badanie to nie ma pytania."; #elif L==9 // pt "Este inquérito não tem perguntas."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Thread = @@ -51998,6 +56690,8 @@ const char *Txt_Thread = "Wątek"; #elif L==9 // pt "Discussão"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_thread = @@ -52019,6 +56713,8 @@ const char *Txt_thread = "wątek"; #elif L==9 // pt "discussão"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Thread_marked_to_be_moved = @@ -52040,6 +56736,8 @@ const char *Txt_Thread_marked_to_be_moved = "Wątek oznaczony do przeniesienia."; #elif L==9 // pt "Discussão marcada para ser movida."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Thread_X_marked_to_be_moved = // Warning: it is very important to include %s in the following sentences @@ -52061,6 +56759,8 @@ const char *Txt_Thread_X_marked_to_be_moved = // Warning: it is very important t "Wątek %s oznaczony do przeniesienia."; #elif L==9 // pt "Discussão %s marcada para ser movida."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Thread_moved_to_this_forum = // Warning: it is very important to include %s in the following sentences @@ -52082,6 +56782,8 @@ const char *Txt_Thread_moved_to_this_forum = // Warning: it is very important to "Wątek został przeniesiony na to forum."; #elif L==9 // pt "Discussão movida para este fórum."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Thread_X_moved_to_this_forum = // Warning: it is very important to include %s in the following sentences @@ -52103,6 +56805,8 @@ const char *Txt_Thread_X_moved_to_this_forum = // Warning: it is very important "Wątek %s został przeniesiony na to forum."; #elif L==9 // pt "Discussão %s movida para este fórum."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Thread_removed = @@ -52124,6 +56828,8 @@ const char *Txt_Thread_removed = "Usunięto wątek."; #elif L==9 // pt "Discussão removida."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Thread_X_removed = // Warning: it is very important to include %s in the following sentences @@ -52145,6 +56851,8 @@ const char *Txt_Thread_X_removed = // Warning: it is very important to include % "Usunięto wątek %s."; #elif L==9 // pt "Discussão %s removida."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Thread_with_posts_from_you = @@ -52166,6 +56874,8 @@ const char *Txt_Thread_with_posts_from_you = "Wątek z wpisami od Ciebie"; #elif L==9 // pt "Discussão com mensagens de você"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_threads = @@ -52187,6 +56897,8 @@ const char *Txt_threads = "wątki"; #elif L==9 // pt "discussões"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_TIME_Since = @@ -52208,6 +56920,8 @@ const char *Txt_TIME_Since = "Od"; #elif L==9 // pt "Desde"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_TIME_until = @@ -52229,6 +56943,8 @@ const char *Txt_TIME_until = "do"; #elif L==9 // pt "até"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_time = @@ -52250,6 +56966,8 @@ const char *Txt_time = "czas"; #elif L==9 // pt "tempo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Time_zone_used_in_the_calculation_of_these_statistics = @@ -52271,6 +56989,8 @@ const char *Txt_Time_zone_used_in_the_calculation_of_these_statistics = "Strefa czasowa używana w obliczeniach tych statystyk"; #elif L==9 // pt "Fuso horário utilizado no cálculo dessas estatísticas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Timeline = @@ -52292,6 +57012,8 @@ const char *Txt_Timeline = "Timeline"; #elif L==9 // pt "Timeline"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Timeline_OF_A_USER = // Warning: it is very important to include %s in the following sentences @@ -52313,6 +57035,8 @@ const char *Txt_Timeline_OF_A_USER = // Warning: it is very important to include "Timeline %s"; #elif L==9 // pt "Timeline de %s"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_TIMELINE_Favourite = @@ -52334,6 +57058,8 @@ const char *Txt_TIMELINE_Favourite = "Ulubiony"; #elif L==9 // pt "Favorito"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_TIMELINE_Favourited_by_X_USERS = // Warning: it is very important to include %u in the following sentences @@ -52355,6 +57081,8 @@ const char *Txt_TIMELINE_Favourited_by_X_USERS = // Warning: it is very importan "Dodane do ulubionych przez %u"; #elif L==9 // pt "Marcado como favorito por %u"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_TIMELINE_Not_favourited_by_anyone = // No favourited @@ -52376,6 +57104,8 @@ const char *Txt_TIMELINE_Not_favourited_by_anyone = // No favourited "Nie przez nikogo ulubionych"; #elif L==9 // pt "Não marcado como favorito por qualquer pessoa"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_TIMELINE_Not_shared_by_anyone = // No shared @@ -52397,6 +57127,8 @@ const char *Txt_TIMELINE_Not_shared_by_anyone = // No shared "Nie jest dzielona przez nikogo"; #elif L==9 // pt "Não compartilhado por qualquer pessoa"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_TIMELINE_NOTE[Tml_NOT_NUM_NOTE_TYPES] = @@ -52420,6 +57152,8 @@ const char *Txt_TIMELINE_NOTE[Tml_NOT_NUM_NOTE_TYPES] = "Nieznane zdarzenia" #elif L==9 // pt "Evento desconhecido" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [TmlNot_INS_DOC_PUB_FILE] = @@ -52441,6 +57175,8 @@ const char *Txt_TIMELINE_NOTE[Tml_NOT_NUM_NOTE_TYPES] = "Plik dokumentu publiczne (instytucji)" #elif L==9 // pt "Arquivo de documento público (institução)" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [TmlNot_INS_SHA_PUB_FILE] = @@ -52462,6 +57198,8 @@ const char *Txt_TIMELINE_NOTE[Tml_NOT_NUM_NOTE_TYPES] = "Udostępniony plik publiczne (instytucji)" #elif L==9 // pt "Arquivo compartilhado público (institução)" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [TmlNot_CTR_DOC_PUB_FILE] = @@ -52483,6 +57221,8 @@ const char *Txt_TIMELINE_NOTE[Tml_NOT_NUM_NOTE_TYPES] = "Plik dokumentu publiczne (centrum)" #elif L==9 // pt "Arquivo de documento público (centro)" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [TmlNot_CTR_SHA_PUB_FILE] = @@ -52504,6 +57244,8 @@ const char *Txt_TIMELINE_NOTE[Tml_NOT_NUM_NOTE_TYPES] = "Udostępniony plik publiczne (centrum)" #elif L==9 // pt "Arquivo compartilhado público (centro)" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [TmlNot_DEG_DOC_PUB_FILE] = @@ -52525,6 +57267,8 @@ const char *Txt_TIMELINE_NOTE[Tml_NOT_NUM_NOTE_TYPES] = "Plik dokumentu publiczne (stopień)" #elif L==9 // pt "Arquivo de documento público (grau)" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [TmlNot_DEG_SHA_PUB_FILE] = @@ -52546,6 +57290,8 @@ const char *Txt_TIMELINE_NOTE[Tml_NOT_NUM_NOTE_TYPES] = "Udostępniony plik publiczne (stopień)" #elif L==9 // pt "Arquivo compartilhado público (grau)" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [TmlNot_CRS_DOC_PUB_FILE] = @@ -52567,6 +57313,8 @@ const char *Txt_TIMELINE_NOTE[Tml_NOT_NUM_NOTE_TYPES] = "Plik dokumentu publiczne (kurs)" #elif L==9 // pt "Arquivo de documento público (disciplina)" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [TmlNot_CRS_SHA_PUB_FILE] = @@ -52588,6 +57336,8 @@ const char *Txt_TIMELINE_NOTE[Tml_NOT_NUM_NOTE_TYPES] = "Udostępniony plik publiczne (kurs)" #elif L==9 // pt "Arquivo compartilhado público (disciplina)" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [TmlNot_CALL_FOR_EXAM] = @@ -52609,6 +57359,8 @@ const char *Txt_TIMELINE_NOTE[Tml_NOT_NUM_NOTE_TYPES] = "Ogloszenie egzamin" #elif L==9 // pt "Chamada para exame" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [TmlNot_POST] = @@ -52630,6 +57382,8 @@ const char *Txt_TIMELINE_NOTE[Tml_NOT_NUM_NOTE_TYPES] = "Post społecznej" #elif L==9 // pt "Post sociais" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [TmlNot_FORUM_POST] = @@ -52651,6 +57405,8 @@ const char *Txt_TIMELINE_NOTE[Tml_NOT_NUM_NOTE_TYPES] = "Post na forum" #elif L==9 // pt "Post em um fórum" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [TmlNot_NOTICE] = @@ -52672,6 +57428,8 @@ const char *Txt_TIMELINE_NOTE[Tml_NOT_NUM_NOTE_TYPES] = "Informacja" #elif L==9 // pt "Anúncio" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -52699,6 +57457,8 @@ const char *Txt_TIMELINE_NOTE_TOP_MESSAGES[Tml_NUM_TOP_MESSAGES] = "skomentował" #elif L==9 // pt "comentou" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Tml_TOP_MESSAGE_FAVED] = @@ -52720,6 +57480,8 @@ const char *Txt_TIMELINE_NOTE_TOP_MESSAGES[Tml_NUM_TOP_MESSAGES] = "oznaczone jako ulubiony" #elif L==9 // pt "marcou como favorito" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Tml_TOP_MESSAGE_SHARED] = @@ -52741,6 +57503,8 @@ const char *Txt_TIMELINE_NOTE_TOP_MESSAGES[Tml_NUM_TOP_MESSAGES] = "podzielił" #elif L==9 // pt "compartilhou" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Tml_TOP_MESSAGE_MENTIONED] = @@ -52762,6 +57526,8 @@ const char *Txt_TIMELINE_NOTE_TOP_MESSAGES[Tml_NUM_TOP_MESSAGES] = "wspomniał o Tobie" #elif L==9 // pt "mencionou você" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -52784,6 +57550,8 @@ const char *Txt_TIMELINE_post = "publikacja"; #elif L==9 // pt "publicação"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_TIMELINE_Post_removed = @@ -52805,6 +57573,8 @@ const char *Txt_TIMELINE_Post_removed = "Publikacja usunięta."; #elif L==9 // pt "Publicação removida."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_TIMELINE_posts = @@ -52826,6 +57596,8 @@ const char *Txt_TIMELINE_posts = "publikacje"; #elif L==9 // pt "publicações"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_TIMETABLE_TYPES[Tmt_NUM_TIMETABLE_TYPES] = @@ -52849,6 +57621,8 @@ const char *Txt_TIMETABLE_TYPES[Tmt_NUM_TIMETABLE_TYPES] = "Harmonogram klasy" #elif L==9 // pt "Horário" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Tmt_MY_TIMETABLE] = @@ -52870,6 +57644,8 @@ const char *Txt_TIMETABLE_TYPES[Tmt_NUM_TIMETABLE_TYPES] = "Mój plan lekcji" #elif L==9 // pt "Horário minha disciplinas" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Tmt_TUTORING_TIMETABLE] = @@ -52891,6 +57667,8 @@ const char *Txt_TIMETABLE_TYPES[Tmt_NUM_TIMETABLE_TYPES] = "Godziny pracy" #elif L==9 // pt "Horário de tutor" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -52913,6 +57691,8 @@ const char *Txt_TIMELINE_Share = "Dzielić"; #elif L==9 // pt "Compartilhar"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_TIMELINE_Shared = @@ -52934,6 +57714,8 @@ const char *Txt_TIMELINE_Shared = "Udostępnione"; #elif L==9 // pt "Compartilhado"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_TIMELINE_Shared_by_X_USERS = // Warning: it is very important to include %u in the following sentences @@ -52955,6 +57737,8 @@ const char *Txt_TIMELINE_Shared_by_X_USERS = // Warning: it is very important to "Udostępnione przez %u"; #elif L==9 // pt "Compartilhado por %u"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_TIMETABLE_CLASS_TYPES[Tmt_NUM_CLASS_TYPES] = @@ -52978,6 +57762,8 @@ const char *Txt_TIMETABLE_CLASS_TYPES[Tmt_NUM_CLASS_TYPES] = "Bez klasy" #elif L==9 // pt "Livre" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Tmt_LECTURE] = @@ -52999,6 +57785,8 @@ const char *Txt_TIMETABLE_CLASS_TYPES[Tmt_NUM_CLASS_TYPES] = "Wyklady" #elif L==9 // pt "Teoria" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Tmt_PRACTICAL] = @@ -53020,6 +57808,8 @@ const char *Txt_TIMETABLE_CLASS_TYPES[Tmt_NUM_CLASS_TYPES] = "praktyki" #elif L==9 // pt "Práct." +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Tmt_TUTORING] = @@ -53041,6 +57831,8 @@ const char *Txt_TIMETABLE_CLASS_TYPES[Tmt_NUM_CLASS_TYPES] = "Korepetycje" #elif L==9 // pt "Tutoria" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -53063,6 +57855,8 @@ const char *Txt_Title = "Tytuł"; #elif L==9 // pt "Título"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Title_attribution = @@ -53084,6 +57878,8 @@ const char *Txt_Title_attribution = "Tytuł/przypisanie"; #elif L==9 // pt "Título/atribuição"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_To_remove_a_center_you_must_first_remove_all_degrees_and_teachers_in_the_center = @@ -53114,6 +57910,8 @@ const char *Txt_To_remove_a_center_you_must_first_remove_all_degrees_and_teacher #elif L==9 // pt "Para remover um centro, você deve primeiro remover" " todos os graus e professores no centro."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_To_remove_a_course_you_must_first_remove_all_users_in_the_course = @@ -53144,6 +57942,8 @@ const char *Txt_To_remove_a_course_you_must_first_remove_all_users_in_the_course #elif L==9 // pt "Para remover uma disciplina, você deve primeiro remover" " todos os usuários da disciplina."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_To_remove_a_degree_you_must_first_remove_all_courses_in_the_degree = @@ -53174,6 +57974,8 @@ const char *Txt_To_remove_a_degree_you_must_first_remove_all_courses_in_the_degr #elif L==9 // pt "Para remover um grau, você deve primeiro remover" " todas as disciplinas do grau."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_To_remove_a_department_you_must_first_remove_all_teachers_in_the_department = @@ -53204,6 +58006,8 @@ const char *Txt_To_remove_a_department_you_must_first_remove_all_teachers_in_the #elif L==9 // pt "Para remover um departamento, você deve primeiro remover" " todos os professores do departamento."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_To_remove_a_place_you_must_first_remove_all_centers_of_that_place = @@ -53234,6 +58038,8 @@ const char *Txt_To_remove_a_place_you_must_first_remove_all_centers_of_that_plac #elif L==9 // pt "Para remover uma localização, você deve primeiro remover" " todos os centros da localização."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_To_remove_a_type_of_degree_you_must_first_remove_all_degrees_of_that_type = @@ -53273,6 +58079,8 @@ const char *Txt_To_remove_a_type_of_degree_you_must_first_remove_all_degrees_of_ "Para remover um tipo de grau," " você deve primeiro remover" " todos os graus desse tipo."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_To_remove_an_institution_you_must_first_remove_all_centers_and_users_in_the_institution = @@ -53303,6 +58111,8 @@ const char *Txt_To_remove_an_institution_you_must_first_remove_all_centers_and_u #elif L==9 // pt "Para remover uma instituição, você deve primeiro remover" " todos os centros e usuários da instituição."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_To_use_chat_you_must_have_installed_the_software_X_and_add_Y_ = // Warning: it is very important to include three %s in the following sentences @@ -53351,6 +58161,8 @@ const char *Txt_To_use_chat_you_must_have_installed_the_software_X_and_add_Y_ = " %s" " e adicionar https://%s" " à lista de sites permitidos no painel de controle Java."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_To_watch_multimedia_content_from_another_website_you_have_to_accept_third_party_cookies_in_your_personal_settings = @@ -53390,6 +58202,8 @@ const char *Txt_To_watch_multimedia_content_from_another_website_you_have_to_acc "Para visualizar o conteúdo multimídia de outro site," " você precisa aceitar cookies de terceiros" " nas suas configurações pessoais."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Today = @@ -53411,6 +58225,8 @@ const char *Txt_Today = "Dzisiaj"; #elif L==9 // pt "Hoje"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Total = @@ -53432,6 +58248,8 @@ const char *Txt_Total = "Całkowity"; #elif L==9 // pt "Total"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_total = @@ -53453,6 +58271,8 @@ const char *Txt_total = "całkowity"; #elif L==9 // pt "total"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_TST_Answer_given_by_the_teachers = @@ -53474,6 +58294,8 @@ const char *Txt_TST_Answer_given_by_the_teachers = "Odpowiedź udzielona przez nauczycieli"; #elif L==9 // pt "Resposta dada pelos professores"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_TST_Answer_given_by_the_user = @@ -53495,6 +58317,8 @@ const char *Txt_TST_Answer_given_by_the_user = "Odpowiedź udzielona przez użytkownika"; #elif L==9 // pt "Resposta dada pelo usuário/a"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_TST_HIDDEN_VISIBLE[2] = @@ -53518,6 +58342,8 @@ const char *Txt_TST_HIDDEN_VISIBLE[2] = "ukryty" #elif L==9 // pt "oculto" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [true] = @@ -53539,6 +58365,8 @@ const char *Txt_TST_HIDDEN_VISIBLE[2] = "widoczny" #elif L==9 // pt "visível" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -53565,6 +58393,8 @@ const char *Txt_TST_PLUGGABLE[TstCfg_NUM_OPTIONS_PLUGGABLE] = "Bank pytań nie do pobrania/widoczny z innych aplikacji (SWADroid, iSWAD, TriSWADos)." #elif L==9 // pt "Banco de perguntas não disponível para download/visível de outros aplicativos (SWADroid, iSWAD, TriSWADos)." +#elif L==10 // tr + "" // Çeviri lazim! #endif , [TstCfg_PLUGGABLE_YES] = @@ -53586,6 +58416,8 @@ const char *Txt_TST_PLUGGABLE[TstCfg_NUM_OPTIONS_PLUGGABLE] = "Bank pytań do pobrania/widoczny z innych aplikacji (SWADroid, iSWAD, TriSWADos)." #elif L==9 // pt "Banco de perguntas disponível para download/visível de outros aplicativos (SWADroid, iSWAD, TriSWADos)." +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -53610,6 +58442,8 @@ const char *Txt_TST_STR_ANSWER_TYPES[Qst_NUM_ANS_TYPES] = "Integer number" // Potrzebujesz tlumaczenie #elif L==9 // pt "N.º inteiro" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Qst_ANS_FLOAT] = @@ -53631,6 +58465,8 @@ const char *Txt_TST_STR_ANSWER_TYPES[Qst_NUM_ANS_TYPES] = "Liczba rzeczywista" #elif L==9 // pt "N.º real" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Qst_ANS_TRUE_FALSE] = @@ -53652,6 +58488,8 @@ const char *Txt_TST_STR_ANSWER_TYPES[Qst_NUM_ANS_TYPES] = "P/F" #elif L==9 // pt "V/F" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Qst_ANS_UNIQUE_CHOICE] = @@ -53673,6 +58511,8 @@ const char *Txt_TST_STR_ANSWER_TYPES[Qst_NUM_ANS_TYPES] = "Unikalny wybór" #elif L==9 // pt "Única escolha" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Qst_ANS_MULTIPLE_CHOICE] = @@ -53694,6 +58534,8 @@ const char *Txt_TST_STR_ANSWER_TYPES[Qst_NUM_ANS_TYPES] = "Wielokrotnego wyboru" #elif L==9 // pt "Múltipla escolha" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Qst_ANS_TEXT] = @@ -53715,6 +58557,8 @@ const char *Txt_TST_STR_ANSWER_TYPES[Qst_NUM_ANS_TYPES] = "Tekst" #elif L==9 // pt "Texto" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -53739,6 +58583,8 @@ const char *Txt_TST_STR_ORDER_FULL[Qst_NUM_TYPES_ORDER_QST] = "Sort by stem of the question" // Potrzebujesz tlumaczenie #elif L==9 // pt "Classificar por formulação da pergunta" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Qst_ORDER_NUM_HITS] = @@ -53760,6 +58606,8 @@ const char *Txt_TST_STR_ORDER_FULL[Qst_NUM_TYPES_ORDER_QST] = "Sort by number of times the question has been answered" // Potrzebujesz tlumaczenie #elif L==9 // pt "Classificar por nº de vezes que a pergunta foi respondida" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Qst_ORDER_AVERAGE_SCORE] = @@ -53781,6 +58629,8 @@ const char *Txt_TST_STR_ORDER_FULL[Qst_NUM_TYPES_ORDER_QST] = "Sort by average score" // Potrzebujesz tlumaczenie #elif L==9 // pt "Classificar por pontuação média" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Qst_ORDER_NUM_HITS_NOT_BLANK] = @@ -53811,6 +58661,8 @@ const char *Txt_TST_STR_ORDER_FULL[Qst_NUM_TYPES_ORDER_QST] = #elif L==9 // pt "Classificar por nº de vezes" " que a pergunta foi respondida (não em branco)" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Qst_ORDER_AVERAGE_SCORE_NOT_BLANK] = @@ -53832,6 +58684,8 @@ const char *Txt_TST_STR_ORDER_FULL[Qst_NUM_TYPES_ORDER_QST] = "Sort by average score (excluding blank answers)" // Potrzebujesz tlumaczenie #elif L==9 // pt "Classificar por pontuação média (não em branco)" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -53856,6 +58710,8 @@ const char *Txt_TST_STR_ORDER_SHORT[Qst_NUM_TYPES_ORDER_QST] = "Pytanie" #elif L==9 // pt "Pergunta" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Qst_ORDER_NUM_HITS] = @@ -53877,6 +58733,8 @@ const char *Txt_TST_STR_ORDER_SHORT[Qst_NUM_TYPES_ORDER_QST] = "No.
ans." // Potrzebujesz tlumaczenie #elif L==9 // pt "N.º
resp." +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Qst_ORDER_AVERAGE_SCORE] = @@ -53898,6 +58756,8 @@ const char *Txt_TST_STR_ORDER_SHORT[Qst_NUM_TYPES_ORDER_QST] = "Average
score" // Potrzebujesz tlumaczenie #elif L==9 // pt "Pontuação
média" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Qst_ORDER_NUM_HITS_NOT_BLANK] = @@ -53919,6 +58779,8 @@ const char *Txt_TST_STR_ORDER_SHORT[Qst_NUM_TYPES_ORDER_QST] = "No.
ans.
not
blank" // Potrzebujesz tlumaczenie #elif L==9 // pt "N.º
resp.
não em
branco" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Qst_ORDER_AVERAGE_SCORE_NOT_BLANK] = @@ -53940,6 +58802,8 @@ const char *Txt_TST_STR_ORDER_SHORT[Qst_NUM_TYPES_ORDER_QST] = "Average
score
not
blank" // Potrzebujesz tlumaczenie #elif L==9 // pt "Pontuação
média
não em
branco" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -53964,6 +58828,8 @@ const char *Txt_TST_STR_VISIBILITY[TstVis_NUM_ITEMS_VISIBILITY] = "Tekst pytań i odpowiedzi" #elif L==9 // pt "Texto de perguntas e respostas" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [TstVis_VISIBLE_FEEDBACK_TXT] = @@ -53985,6 +58851,8 @@ const char *Txt_TST_STR_VISIBILITY[TstVis_NUM_ITEMS_VISIBILITY] = "Tekst feedback" #elif L==9 // pt "Texto de feedback" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [TstVis_VISIBLE_CORRECT_ANSWER] = @@ -54006,6 +58874,8 @@ const char *Txt_TST_STR_VISIBILITY[TstVis_NUM_ITEMS_VISIBILITY] = "Prawidłowe odpowiedzi" #elif L==9 // pt "Respostas corretas" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [TstVis_VISIBLE_EACH_QST_SCORE] = @@ -54027,6 +58897,8 @@ const char *Txt_TST_STR_VISIBILITY[TstVis_NUM_ITEMS_VISIBILITY] = "Wynik każdego pytania" #elif L==9 // pt "Pontuação de cada pergunta" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [TstVis_VISIBLE_TOTAL_SCORE] = @@ -54048,6 +58920,8 @@ const char *Txt_TST_STR_VISIBILITY[TstVis_NUM_ITEMS_VISIBILITY] = "Łączny wynik" #elif L==9 // pt "Pontuação total" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -54071,6 +58945,8 @@ const char *Txt_TF_QST[2] = "P" #elif L==9 // pt "V" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca // False @@ -54091,6 +58967,8 @@ const char *Txt_TF_QST[2] = "F" #elif L==9 // pt "F" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -54113,6 +58991,8 @@ const char *Txt_Type = "Typ"; #elif L==9 // pt "Tipo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Type_of_BR_answers = // Answers of a test @@ -54134,6 +59014,8 @@ const char *Txt_Type_of_BR_answers = // Answers of a test "Typu
odpowiedzi"; #elif L==9 // pt "Tipo de
respostas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Type_of_degree = @@ -54155,6 +59037,8 @@ const char *Txt_Type_of_degree = "Type of degree"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Tipo de grau"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Type_of_degree_X_removed = // Warning: it is very important to include %s in the following sentences @@ -54176,6 +59060,8 @@ const char *Txt_Type_of_degree_X_removed = // Warning: it is very important to i "Usunięto rodzaj stopnia %s."; #elif L==9 // pt "Tipo de grau %s removido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Type_of_group = @@ -54197,6 +59083,8 @@ const char *Txt_Type_of_group = "Type of group"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Tipo de grupo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Type_BR_of_group = @@ -54218,6 +59106,8 @@ const char *Txt_Type_BR_of_group = "Type
of group"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Tipo
de grupo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Type_of_group_X_removed = // Warning: it is very important to include %s in the following sentences @@ -54239,6 +59129,8 @@ const char *Txt_Type_of_group_X_removed = // Warning: it is very important to in "Usunięto typ grupy %s."; #elif L==9 // pt "Tipo de grupo %s removido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Type_or_paste_a_list_of_IDs_nicks_or_emails_ = @@ -54324,6 +59216,8 @@ const char *Txt_Type_or_paste_a_list_of_IDs_nicks_or_emails_ = " Apenas as palavras que parecem @alcunhas, emails ou IDs" " ser%atilde;o levadas em conta;" " o resto do texto será ignorado."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Types_of_degree = @@ -54345,6 +59239,8 @@ const char *Txt_Types_of_degree = "Rodzaje stopni"; #elif L==9 // pt "Tipos de grau"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Types_of_answers = // Answers of a test @@ -54366,6 +59262,8 @@ const char *Txt_Types_of_answers = // Answers of a test "Typy odpowiedzi"; #elif L==9 // pt "Tipos de respostas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Types_of_group = @@ -54387,6 +59285,8 @@ const char *Txt_Types_of_group = "Types of group"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Tipos de grupo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Undo = @@ -54408,6 +59308,8 @@ const char *Txt_Undo = "Anulować"; #elif L==9 // pt "Desfazer"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Unfollow = @@ -54429,6 +59331,8 @@ const char *Txt_Unfollow = "Nie obserwuj"; #elif L==9 // pt "Deixar de seguir"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Unfortunately_Firefox_and_Chrome_no_longer_allow_Java_to_run_ = @@ -54477,6 +59381,8 @@ const char *Txt_Unfortunately_Firefox_and_Chrome_no_longer_allow_Java_to_run_ = " de modo que o chat não está disponível para estes navegadores" " até que desenvolver um novo chat com outra tecnologia." " Desculpe o transtorno."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_unknown_assignment = @@ -54498,6 +59404,8 @@ const char *Txt_unknown_assignment = "unknown assignment"; // Potrzebujesz tlumaczenie #elif L==9 // pt "atividade desconhecida"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Unknown_or_without_photo = @@ -54519,6 +59427,8 @@ const char *Txt_Unknown_or_without_photo = "Nieznany lub bez zdjęcia"; #elif L==9 "Desconhecido/a ou sem foto"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Unknown_FORUM = @@ -54540,6 +59450,8 @@ const char *Txt_Unknown_FORUM = "Unknown"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Desconhecido"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_unknown_recipient = @@ -54561,6 +59473,8 @@ const char *Txt_unknown_recipient = "unknown recipient"; // Potrzebujesz tlumaczenie #elif L==9 // pt "destinatário desconhecido"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_unknown_recipients = @@ -54582,6 +59496,8 @@ const char *Txt_unknown_recipients = "unknown recipients"; // Potrzebujesz tlumaczenie #elif L==9 // pt "destinatários desconhecidos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_unknown_removed_course = @@ -54603,6 +59519,8 @@ const char *Txt_unknown_removed_course = "kurs nieznany / usunięte"; #elif L==9 // pt "disciplina desconhecida / removida"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_unknown_TIME = @@ -54624,6 +59542,8 @@ const char *Txt_unknown_TIME = "unknown"; // Potrzebujesz tlumaczenie #elif L==9 // pt "desconhecido"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Unlock_editing = @@ -54645,6 +59565,8 @@ const char *Txt_Unlock_editing = "Odblokuj edycję"; #elif L==9 // pt "Desbloquear edição"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_unread_MESSAGE = @@ -54666,6 +59588,8 @@ const char *Txt_unread_MESSAGE = "unread"; // Potrzebujesz tlumaczenie #elif L==9 // pt "não lida"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_unread_MESSAGES = @@ -54687,6 +59611,8 @@ const char *Txt_unread_MESSAGES = "unread"; // Potrzebujesz tlumaczenie #elif L==9 // pt "não lidas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Unread_BR_msgs = @@ -54708,6 +59634,8 @@ const char *Txt_Unread_BR_msgs = "Unread
msgs."; // Potrzebujesz tlumaczenie #elif L==9 // pt "Não
lidas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Update = @@ -54729,6 +59657,8 @@ const char *Txt_Update = "Update"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Atualizar"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Update_attendance = @@ -54750,6 +59680,8 @@ const char *Txt_Update_attendance = "Aktualizacja bytność"; #elif L==9 // pt "Atualizar presença"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Update_messages = @@ -54771,6 +59703,8 @@ const char *Txt_Update_messages = "Wiadomości aktualizacji"; #elif L==9 // pt "Atualizar mensagens"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Update_results = @@ -54792,6 +59726,8 @@ const char *Txt_Update_results = "Zaktualizuj wyniki mecze"; #elif L==9 // pt "Atualizar os resultados"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Update_users = @@ -54813,6 +59749,8 @@ const char *Txt_Update_users = "Zaktualizuj użytkowników"; #elif L==9 // pt "Atualizar os utilizadores"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_UPLOAD_FILE_Invalid_link = @@ -54834,6 +59772,8 @@ const char *Txt_UPLOAD_FILE_Invalid_link = "Niepoprawny link."; #elif L==9 // pt "Link não válido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_UPLOAD_FILE_Invalid_name = @@ -54855,6 +59795,8 @@ const char *Txt_UPLOAD_FILE_Invalid_name = "Błędna nazwa."; #elif L==9 // pt "Nome não válido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_UPLOAD_FILE_X_invalid_name = // Warning: it is very important to include %s in the following sentences @@ -54876,6 +59818,8 @@ const char *Txt_UPLOAD_FILE_X_invalid_name = // Warning: it is very important to "%s: błędna nazwa."; #elif L==9 // pt "%s: nome não válido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Upload_file = @@ -54897,6 +59841,8 @@ const char *Txt_Upload_file = "Przesyłanie pliku"; #elif L==9 // pt "Fazer upload de arquivo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Upload_file_or_create_folder = @@ -54918,6 +59864,8 @@ const char *Txt_Upload_file_or_create_folder = "Prześlij pliki lub utwórz folder"; #elif L==9 // pt "Fazer upload de arquivos ou criar diretório"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Upload_files = @@ -54939,6 +59887,8 @@ const char *Txt_Upload_files = "Prześlij pliki"; #elif L==9 // pt "Fazer upload de arquivos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Upload_files_QUESTION = @@ -54960,6 +59910,8 @@ const char *Txt_Upload_files_QUESTION = "Przesyłać pliki?"; #elif L==9 // pt "Fazer upload de arquivos?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Upload_logo = @@ -54981,6 +59933,8 @@ const char *Txt_Upload_logo = "Prześlij logo"; #elif L==9 // pt "Fazer upload de logotipo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Upload_my_picture = @@ -55002,6 +59956,8 @@ const char *Txt_Upload_my_picture = "Prześlij swoje zdjęcia"; #elif L==9 // pt "Carregar minha foto"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Upload_photo = @@ -55023,6 +59979,8 @@ const char *Txt_Upload_photo = "Prześlij zdjęcie"; #elif L==9 // pt "Upload foto"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Uploaded_by = @@ -55044,6 +60002,8 @@ const char *Txt_Uploaded_by = "Wyslane przez"; #elif L==9 // pt "Enviado por"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_URL = // Uniform Resource Locator @@ -55065,6 +60025,8 @@ const char *Txt_URL = // Uniform Resource Locator "URL"; #elif L==9 // pt "URL"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Use_this_email = @@ -55086,6 +60048,8 @@ const char *Txt_Use_this_email = "Użyj tej email"; #elif L==9 // pt "Utilizar este email"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Use_this_nickname = @@ -55107,6 +60071,8 @@ const char *Txt_Use_this_nickname = "Użyj tej nick"; #elif L==9 // pt "Utilizar esta alcunha"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_User[Usr_NUM_SEXS] = @@ -55130,6 +60096,8 @@ const char *Txt_User[Usr_NUM_SEXS] = "Użytkownika" #elif L==9 // pt "Utilizador/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Usr_SEX_FEMALE] = @@ -55151,6 +60119,8 @@ const char *Txt_User[Usr_NUM_SEXS] = "Użytkownika" #elif L==9 // pt "Utilizadora" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Usr_SEX_MALE] = @@ -55172,6 +60142,8 @@ const char *Txt_User[Usr_NUM_SEXS] = "Użytkownika" #elif L==9 // pt "Utilizador" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Usr_SEX_ALL] = @@ -55193,6 +60165,8 @@ const char *Txt_User[Usr_NUM_SEXS] = "Użytkownika" #elif L==9 // pt "Utilizador/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -55217,6 +60191,8 @@ const char *Txt_user[Usr_NUM_SEXS] = "użytkownika" #elif L==9 // pt "utilizador/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Usr_SEX_FEMALE] = @@ -55238,6 +60214,8 @@ const char *Txt_user[Usr_NUM_SEXS] = "użytkownika" #elif L==9 // pt "utilizadora" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Usr_SEX_MALE] = @@ -55259,6 +60237,8 @@ const char *Txt_user[Usr_NUM_SEXS] = "użytkownika" #elif L==9 // pt "utilizador" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Usr_SEX_ALL] = @@ -55280,6 +60260,8 @@ const char *Txt_user[Usr_NUM_SEXS] = "użytkownika" #elif L==9 // pt "utilizador/a" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -55302,6 +60284,8 @@ const char *Txt_USER_comments = "Comments"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Comentários"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_User_ID = @@ -55323,6 +60307,8 @@ const char *Txt_User_ID = "User ID"; // Potrzebujesz tlumaczenie #elif L==9 // pt "N.º de identif. do utilizador"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_USER_in_COURSE = // Warning: it is very important to include %s in the following sentences @@ -55344,6 +60330,8 @@ const char *Txt_USER_in_COURSE = // Warning: it is very important to include %s "%s w"; #elif L==9 // pt "%s em"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_User_not_found_or_you_do_not_have_permission_ = @@ -55383,6 +60371,8 @@ const char *Txt_User_not_found_or_you_do_not_have_permission_ = "Utilizador não encontrado" " ou você não tem permissão" " para realizar esta ação."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_User_photos = @@ -55404,6 +60394,8 @@ const char *Txt_User_photos = "Zdjęcia użytkownika "; #elif L==9 // pt "Fotos de utilizadores"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Users = @@ -55425,6 +60417,8 @@ const char *Txt_Users = "Użytkownicy"; #elif L==9 // pt "Utilizadores"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_users[Usr_NUM_SEXS] = @@ -55448,6 +60442,8 @@ const char *Txt_users[Usr_NUM_SEXS] = "użytkownicy" #elif L==9 // pt "utilizadores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Usr_SEX_FEMALE] = @@ -55469,6 +60465,8 @@ const char *Txt_users[Usr_NUM_SEXS] = "użytkownicy" #elif L==9 // pt "utilizadoras" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Usr_SEX_MALE] = @@ -55490,6 +60488,8 @@ const char *Txt_users[Usr_NUM_SEXS] = "użytkownicy" #elif L==9 // pt "utilizadores" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Usr_SEX_ALL] = @@ -55511,6 +60511,8 @@ const char *Txt_users[Usr_NUM_SEXS] = "użytkownicy" #elif L==9 // pt "utilizadores" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -55533,6 +60535,8 @@ const char *Txt_X_users_have_been_eliminated = // Warning: it is very important "Wyeliminowano %u użytkowników."; #elif L==9 // pt "%u usuário(s) foram eliminados."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_X_users_have_been_enroled_including_possible_repetitions = // Warning: it is very important to include %u in the following sentences @@ -55563,6 +60567,8 @@ const char *Txt_X_users_have_been_enroled_including_possible_repetitions = // Wa #elif L==9 // pt "%u usuários foram inscritos" " (incluindo possíveis repetições)."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_X_users_have_been_removed = // Warning: it is very important to include %u in the following sentences @@ -55584,6 +60590,8 @@ const char *Txt_X_users_have_been_removed = // Warning: it is very important to "Usunięto %u użytkowników."; #elif L==9 // pt "%u usuários foram removidos."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Users_in_courses = @@ -55605,6 +60613,8 @@ const char *Txt_Users_in_courses = "Użytkownicy kursów"; #elif L==9 // pt "Utilizadores em disciplinas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Users_of_the_center = @@ -55626,6 +60636,8 @@ const char *Txt_Users_of_the_center = "Użytkownicy centrum"; #elif L==9 // pt "Utilizadores do centro"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Users_of_the_country = @@ -55647,6 +60659,8 @@ const char *Txt_Users_of_the_country = "Użytkownicy kraju"; #elif L==9 // pt "Utilizadores do país"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Users_of_the_institution = @@ -55668,6 +60682,8 @@ const char *Txt_Users_of_the_institution = "Użytkownicy instytucji"; #elif L==9 // pt "Utilizadores da institução"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_users_with_no_group = @@ -55689,6 +60705,8 @@ const char *Txt_users_with_no_group = "użytkowników w każdej grupie"; #elif L==9 // pt "utilizadores com nenhum grupo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_X_users_who_have_accepted_and_who_have_email = // Warning: it is very important to include %u in the following sentences @@ -55719,6 +60737,8 @@ const char *Txt_X_users_who_have_accepted_and_who_have_email = // Warning: it is #elif L==9 // pt "%u utilizadores que aceitaram" " e que têm email"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_X_users_who_have_email = // Warning: it is very important to include %u in the following sentences @@ -55740,6 +60760,8 @@ const char *Txt_X_users_who_have_email = // Warning: it is very important to inc "%u użytkowników who have email"; // Potrzebujesz tlumaczenie #elif L==9 // pt "%u utilizadores que têm email"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_USR_LIST_TYPES[Set_NUM_USR_LIST_TYPES] = @@ -55766,6 +60788,8 @@ const char *Txt_USR_LIST_TYPES[Set_NUM_USR_LIST_TYPES] = "Class photo" // Potrzebujesz tlumaczenie #elif L==9 // pt "Foto de formatura" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Set_USR_LIST_AS_LISTING] = @@ -55787,6 +60811,8 @@ const char *Txt_USR_LIST_TYPES[Set_NUM_USR_LIST_TYPES] = "List" // Potrzebujesz tlumaczenie #elif L==9 // pt "Lista" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -55809,6 +60835,8 @@ const char *Txt_Vacants = "Wolne"; #elif L==9 // pt "Desocupados"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Valid_answers = @@ -55830,6 +60858,8 @@ const char *Txt_Valid_answers = "Prawidłowe odpowiedzi"; #elif L==9 // pt "Respostas válidas"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_valid_grade = @@ -55851,6 +60881,8 @@ const char *Txt_valid_grade = "ocena wynik"; #elif L==9 // pt "nota válida"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Valid_question = @@ -55872,6 +60904,8 @@ const char *Txt_Valid_question = "Ważne pytanie"; #elif L==9 // pt "Pergunta válida"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_valid_score = @@ -55893,6 +60927,8 @@ const char *Txt_valid_score = "prawidłowy wynik"; #elif L==9 // pt "pontuação válida"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_View = @@ -55914,6 +60950,8 @@ const char *Txt_View = "Wyświetl"; #elif L==9 // pt "Ver"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_View_all_recipients = @@ -55935,6 +60973,8 @@ const char *Txt_View_all_recipients = "Zobacz wszystkich odbiorców"; #elif L==9 // pt "Ver todos os estinatários"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_View_all_USERS = @@ -55956,6 +60996,8 @@ const char *Txt_View_all_USERS = "Zobacz wszystkich"; #elif L==9 // pt "Ver todos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_View_attendance = @@ -55977,6 +61019,8 @@ const char *Txt_View_attendance = "Zobacz obecność"; #elif L==9 // pt "Ver presença"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_View_email_addresses = @@ -55998,6 +61042,8 @@ const char *Txt_View_email_addresses = "Zobacz adresy e-mail"; #elif L==9 // pt "Ver endereços de email"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_View_event = @@ -56019,6 +61065,8 @@ const char *Txt_View_event = "View event"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Ver evento"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_View_exam = @@ -56040,6 +61088,8 @@ const char *Txt_View_exam = "Zobacz egzaminu"; #elif L==9 // pt "Ver exame"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_View_exams = @@ -56061,6 +61111,8 @@ const char *Txt_View_exams = "Zobacz egzaminów"; #elif L==9 // pt "Ver exames"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_View_game = @@ -56082,6 +61134,8 @@ const char *Txt_View_game = "Zobacz grę"; #elif L==9 // pt "Ver jogo"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_View_games = @@ -56103,6 +61157,8 @@ const char *Txt_View_games = "Zobacz gier"; #elif L==9 // pt "Ver jogos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_View_in_a_new_window = @@ -56124,6 +61180,8 @@ const char *Txt_View_in_a_new_window = "View in a new window"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Ver em uma nova janela"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_View_my_answer = @@ -56145,6 +61203,8 @@ const char *Txt_View_my_answer = "Zobacz moją odpowiedź"; #elif L==9 // pt "Ver minha resposta"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_View_projects = @@ -56166,6 +61226,8 @@ const char *Txt_View_projects = "Zobacz projekty"; #elif L==9 // pt "Ver projetos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_View_record_and_office_hours = @@ -56187,6 +61249,8 @@ const char *Txt_View_record_and_office_hours = "Zobacz rekord i godziny pracy"; #elif L==9 // pt "Ver cartão e horário de tutor"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_View_record_for_this_course = @@ -56208,6 +61272,8 @@ const char *Txt_View_record_for_this_course = "Zobacz rekord na ten kurs"; #elif L==9 // pt "Ver cartão em disciplina"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_View_records = @@ -56229,6 +61295,8 @@ const char *Txt_View_records = "Zobacz rekordy"; #elif L==9 // pt "Ver cartões"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_View_results = @@ -56250,6 +61318,8 @@ const char *Txt_View_results = "Pokaż wyniki"; #elif L==9 // pt "Ver resultados"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_View_survey = @@ -56271,6 +61341,8 @@ const char *Txt_View_survey = "Zobacz ankietę"; #elif L==9 // pt "Ver inquérito"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_View_test = @@ -56292,6 +61364,8 @@ const char *Txt_View_test = "Wiadomości test"; #elif L==9 // pt "Ver teste"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_View_tests = @@ -56313,6 +61387,8 @@ const char *Txt_View_tests = "Wiadomości test"; #elif L==9 // pt "Ver testes"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_View_homework = @@ -56334,6 +61410,8 @@ const char *Txt_View_homework = "Zobacz pracę domową"; #elif L==9 // pt "Ver trabalhos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Visible_by_BR_the_student = @@ -56355,6 +61433,8 @@ const char *Txt_Visible_by_BR_the_student = "Visible by
the student?"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Visível pelo
estudante?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Visible_results = @@ -56376,6 +61456,8 @@ const char *Txt_Visible_results = "Widoczne wyników"; #elif L==9 // pt "Resultados visíveis"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Visible_MALE_PLURAL = @@ -56397,6 +61479,8 @@ const char *Txt_Visible_MALE_PLURAL = "Widoczne"; #elif L==9 // pt "Visíveis"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Visible_tests = @@ -56418,6 +61502,8 @@ const char *Txt_Visible_tests = "Widoczne testy"; #elif L==9 // pt "Testes visíveis"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Visible_survey = @@ -56439,6 +61525,8 @@ const char *Txt_Visible_survey = "Widoczny badanie"; #elif L==9 // pt "Inquérito visível"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Visits_to_course = @@ -56460,6 +61548,8 @@ const char *Txt_Visits_to_course = "Wizyty w trakcie"; #elif L==9 // pt "Visitas disciplina"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Web = @@ -56481,6 +61571,8 @@ const char *Txt_Web = "Web"; #elif L==9 // pt "Web"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Web_browser = @@ -56502,6 +61594,8 @@ const char *Txt_Web_browser = "Przeglądarka internetowa"; #elif L==9 // pt "Navegador web"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Web_page = @@ -56523,6 +61617,8 @@ const char *Txt_Web_page = "Strona internetowa"; #elif L==9 // pt "Página Web"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Web_page_of_the_course = @@ -56544,6 +61640,8 @@ const char *Txt_Web_page_of_the_course = "Web page of the course"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Página Web da disciplina"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Web_social_network = @@ -56565,6 +61663,8 @@ const char *Txt_Web_social_network = "Web / sieci społeczne"; #elif L==9 // pt "Web / rede social"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Webs_social_networks = @@ -56586,6 +61686,8 @@ const char *Txt_Webs_social_networks = "Webs / sieci społeczne"; #elif L==9 // pt "Webs / redes sociais"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Week = @@ -56607,6 +61709,8 @@ const char *Txt_Week = "Week"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Semana"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_What_would_you_like_to_do = @@ -56628,6 +61732,8 @@ const char *Txt_What_would_you_like_to_do = "Co byś zrobił?"; #elif L==9 // pt "O que você faria?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Where_s_USER = @@ -56649,6 +61755,8 @@ const char *Txt_Where_s_USER = "Gdzie jest %s?"; #elif L==9 // pt "Onde está %s?"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_WHO[Usr_NUM_WHO] = @@ -56675,6 +61783,8 @@ const char *Txt_WHO[Usr_NUM_WHO] = "Mnie" #elif L==9 // pt "Eu" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Usr_WHO_SELECTED] = @@ -56696,6 +61806,8 @@ const char *Txt_WHO[Usr_NUM_WHO] = "Wybrani użytkownicy" #elif L==9 // pt "Usuários selecionados" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Usr_WHO_FOLLOWED] = @@ -56717,6 +61829,8 @@ const char *Txt_WHO[Usr_NUM_WHO] = "Użytkownicy, którzy mam następujące" #elif L==9 // pt "Usuários que estou seguindo" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Usr_WHO_ALL] = @@ -56738,6 +61852,8 @@ const char *Txt_WHO[Usr_NUM_WHO] = "Wszyscy użytkownicy" #elif L==9 // pt "Todos os usuários" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -56760,6 +61876,8 @@ const char *Txt_Who_to_follow = "Kto do naśladowania"; #elif L==9 // pt "Quem seguir"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_With_ = // Example: "With students" @@ -56781,6 +61899,8 @@ const char *Txt_With_ = // Example: "With students" "Z "; #elif L==9 // pt "Com "; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_with_new_posts = @@ -56802,6 +61922,8 @@ const char *Txt_with_new_posts = "with new posts"; // Potrzebujesz tlumaczenie #elif L==9 // pt "com novas posts"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_works_ZIP_FILE_NAME = // Name (without extension) of the ZIP file for works. Must be a valid filename in small letters! @@ -56823,6 +61945,8 @@ const char *Txt_works_ZIP_FILE_NAME = // Name (without extension) of the ZIP fil "homework"; // Potrzebujesz tlumaczenie #elif L==9 // pt "trabalhos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Wording = // Statement of a question @@ -56844,6 +61968,8 @@ const char *Txt_Wording = // Statement of a question "Sformułowanie"; #elif L==9 // pt "Redação"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Works_area = @@ -56865,6 +61991,8 @@ const char *Txt_Works_area = "Homework area"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Zona de trabalhos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_works_area = @@ -56886,6 +62014,8 @@ const char *Txt_works_area = "homework area"; // Potrzebujesz tlumaczenie #elif L==9 // pt "zona de trabalhos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_WriBRters = @@ -56907,6 +62037,8 @@ const char *Txt_WriBRters = "Wri-
ters"; // Potrzebujesz tlumaczenie #elif L==9 // pt "Escri-
tores"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Write_a_message = @@ -56928,6 +62060,8 @@ const char *Txt_Write_a_message = "Napisz wiadomość"; #elif L==9 // pt "Escrever uma mensagem"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Wrong_file_type = @@ -56949,6 +62083,8 @@ const char *Txt_Wrong_file_type = "Nieprawidłowy typ pliku."; #elif L==9 // pt "Tipo de arquivo errado."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_WWW = // World Wide Web @@ -56970,6 +62106,8 @@ const char *Txt_WWW = // World Wide Web "WWW"; #elif L==9 // pt "WWW"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_XML_file = @@ -56991,6 +62129,8 @@ const char *Txt_XML_file = "Plik XML"; #elif L==9 // pt "Arquivo XML"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_XML_file_content = @@ -57012,6 +62152,8 @@ const char *Txt_XML_file_content = "Zawartość pliku XML"; #elif L==9 // pt "Conteúdo do arquivo XML"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Year = // 1984, 2011... @@ -57033,6 +62175,8 @@ const char *Txt_Year = // 1984, 2011... "Rok"; #elif L==9 // pt "Ano"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_year = // 1984, 2011... @@ -57054,6 +62198,8 @@ const char *Txt_year = // 1984, 2011... "rok"; #elif L==9 // pt "ano"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Year_OF_A_DEGREE = // 1, 2, 3..., not 1984, 2011... @@ -57075,6 +62221,8 @@ const char *Txt_Year_OF_A_DEGREE = // 1, 2, 3..., not 1984, 2011... "Rok lub semestr"; #elif L==9 // pt "Ano ou semestre"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_YEAR_OF_DEGREE[1 + Deg_MAX_YEARS_PER_DEGREE] = @@ -57097,6 +62245,8 @@ const char *Txt_YEAR_OF_DEGREE[1 + Deg_MAX_YEARS_PER_DEGREE] = "N.D." #elif L==9 // pt "N.A." +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -57117,6 +62267,8 @@ const char *Txt_YEAR_OF_DEGREE[1 + Deg_MAX_YEARS_PER_DEGREE] = "1." #elif L==9 // pt "1º" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -57137,6 +62289,8 @@ const char *Txt_YEAR_OF_DEGREE[1 + Deg_MAX_YEARS_PER_DEGREE] = "2." #elif L==9 // pt "2º" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -57157,6 +62311,8 @@ const char *Txt_YEAR_OF_DEGREE[1 + Deg_MAX_YEARS_PER_DEGREE] = "3." #elif L==9 // pt "3º" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -57177,6 +62333,8 @@ const char *Txt_YEAR_OF_DEGREE[1 + Deg_MAX_YEARS_PER_DEGREE] = "4." #elif L==9 // pt "4º" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -57197,6 +62355,8 @@ const char *Txt_YEAR_OF_DEGREE[1 + Deg_MAX_YEARS_PER_DEGREE] = "5." #elif L==9 // pt "5º" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -57217,6 +62377,8 @@ const char *Txt_YEAR_OF_DEGREE[1 + Deg_MAX_YEARS_PER_DEGREE] = "6." #elif L==9 // pt "6º" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -57237,6 +62399,8 @@ const char *Txt_YEAR_OF_DEGREE[1 + Deg_MAX_YEARS_PER_DEGREE] = "7." #elif L==9 // pt "7º" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -57257,6 +62421,8 @@ const char *Txt_YEAR_OF_DEGREE[1 + Deg_MAX_YEARS_PER_DEGREE] = "8." #elif L==9 // pt "8º" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -57277,6 +62443,8 @@ const char *Txt_YEAR_OF_DEGREE[1 + Deg_MAX_YEARS_PER_DEGREE] = "9." #elif L==9 // pt "9º" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -57297,6 +62465,8 @@ const char *Txt_YEAR_OF_DEGREE[1 + Deg_MAX_YEARS_PER_DEGREE] = "10." #elif L==9 // pt "10º" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -57317,6 +62487,8 @@ const char *Txt_YEAR_OF_DEGREE[1 + Deg_MAX_YEARS_PER_DEGREE] = "11." #elif L==9 // pt "11º" +#elif L==10 // tr + "" // Çeviri lazim! #endif , #if L==1 // ca @@ -57337,6 +62509,8 @@ const char *Txt_YEAR_OF_DEGREE[1 + Deg_MAX_YEARS_PER_DEGREE] = "12." #elif L==9 // pt "12º" +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -57359,6 +62533,8 @@ const char *Txt_years = "lat"; #elif L==9 // pt "anos"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_YES = @@ -57380,6 +62556,8 @@ const char *Txt_YES = "TAK"; #elif L==9 // pt "SIM"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Yes = @@ -57401,6 +62579,8 @@ const char *Txt_Yes = "Tak"; #elif L==9 // pt "Sim"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Yesterday = @@ -57422,6 +62602,8 @@ const char *Txt_Yesterday = "Wczorajszy dzień"; #elif L==9 // pt "Ontem"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_yet_unnamed = @@ -57443,6 +62625,8 @@ const char *Txt_yet_unnamed = "jeszcze nienazwany"; #elif L==9 // pt "ainda sem nome"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_already_answered_this_survey_before = @@ -57464,6 +62648,8 @@ const char *Txt_You_already_answered_this_survey_before = "Odpowiedziałeś już wcześniej na ten ankietę."; #elif L==9 // pt "Você já respondeu a esso inquérito antes."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_are_now_LOGGED_IN_as_X = // Warning: it is very important to include two %s in the following sentences @@ -57485,6 +62671,8 @@ const char *Txt_You_are_now_LOGGED_IN_as_X = // Warning: it is very important to "Jesteś teraz %s jako %s."; #elif L==9 // pt "Agora você está %s como %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_are_not_enroled_in_any_course[Usr_NUM_SEXS] = @@ -57508,6 +62696,8 @@ const char *Txt_You_are_not_enroled_in_any_course[Usr_NUM_SEXS] = "Nie jesteś zapisany na żaden kurs." #elif L==9 // pt "Você não está matriculado/a em nenhuma disciplina." +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Usr_SEX_FEMALE] = @@ -57529,6 +62719,8 @@ const char *Txt_You_are_not_enroled_in_any_course[Usr_NUM_SEXS] = "Nie jesteś zapisany na żaden kurs." #elif L==9 // pt "Você não está matriculada em nenhuma disciplina." +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Usr_SEX_MALE] = @@ -57550,6 +62742,8 @@ const char *Txt_You_are_not_enroled_in_any_course[Usr_NUM_SEXS] = "Nie jesteś zapisany na żaden kurs." #elif L==9 // pt "Você não está matriculado em nenhuma disciplina." +#elif L==10 // tr + "" // Çeviri lazim! #endif , [Usr_SEX_ALL] = @@ -57571,6 +62765,8 @@ const char *Txt_You_are_not_enroled_in_any_course[Usr_NUM_SEXS] = "Nie jesteś zapisany na żaden kurs." #elif L==9 // pt "Você não está matriculado/a em nenhuma disciplina." +#elif L==10 // tr + "" // Çeviri lazim! #endif }; @@ -57602,6 +62798,8 @@ const char *Txt_You_can_create_a_new_folder_inside_the_folder_X = // Warning: it #elif L==9 // pt "Você pode criar um novo diretório" " dentro do diretório %s:"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_can_not_create_folders_files_or_links_here = @@ -57623,6 +62821,8 @@ const char *Txt_You_can_not_create_folders_files_or_links_here = "Nie możesz tutaj tworzyć folderów, plików ani linków."; #elif L==9 // pt "Você não pode criar pastas, arquivos ou links aqui."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_can_not_create_folders_here = @@ -57644,6 +62844,8 @@ const char *Txt_You_can_not_create_folders_here = "Nie możesz tutaj tworzyć folderów."; #elif L==9 // pt "Você não pode criar pastas aqui."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_can_not_create_links_here = @@ -57665,6 +62867,8 @@ const char *Txt_You_can_not_create_links_here = "Nie możesz tutaj tworzyć linków.."; #elif L==9 // pt "Você não pode criar links aqui."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_can_not_delete_your_current_nickname = @@ -57686,6 +62890,8 @@ const char *Txt_You_can_not_delete_your_current_nickname = "Nie możesz usunąć swojego obecnego pseudonimu."; #elif L==9 // pt "Você não pode excluir sua alcunha atual."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_can_not_delete_this_ID = @@ -57707,6 +62913,8 @@ const char *Txt_You_can_not_delete_this_ID = "Nie możesz usunąć tego ID."; #elif L==9 // pt "Você não pode excluir este ID."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_can_not_disable_file_uploading_once_folders_have_been_created = @@ -57737,6 +62945,8 @@ const char *Txt_You_can_not_disable_file_uploading_once_folders_have_been_create #elif L==9 // pt "Você não pode desativar o upload de arquivos," " uma vez diretórios foram criados."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_can_not_leave_empty_intermediate_answers = @@ -57758,6 +62968,8 @@ const char *Txt_You_can_not_leave_empty_intermediate_answers = "Nie możesz pozostawić pustych odpowiedzi pośrednich."; #elif L==9 // pt "Você não pode deixar respostas intermediárias vazias."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_can_not_leave_the_field_empty = @@ -57779,6 +62991,8 @@ const char *Txt_You_can_not_leave_the_field_empty = "Nie możesz zostawić pola pustego."; #elif L==9 // pt "Você não pode deixar o campo vazio."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_can_not_paste_file_or_folder_here = @@ -57800,6 +63014,8 @@ const char *Txt_You_can_not_paste_file_or_folder_here = "Nie możesz tutaj wkleić pliku lub folderu."; #elif L==9 // pt "Você não pode colar arquivos ou pastas aqui."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_can_not_remove_this_file_or_link = @@ -57821,6 +63037,8 @@ const char *Txt_You_can_not_remove_this_file_or_link = "Nie możesz usunąć tego pliku lub linku."; #elif L==9 // pt "Você não pode remover este arquivo ou link."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_can_not_remove_this_folder = @@ -57842,6 +63060,8 @@ const char *Txt_You_can_not_remove_this_folder = "Nie możesz usunąć tego folderu."; #elif L==9 // pt "Você não pode remover esta pasta."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_can_not_remove_a_country_with_institutions_or_users = @@ -57863,6 +63083,8 @@ const char *Txt_You_can_not_remove_a_country_with_institutions_or_users = "Nie możesz usunąć kraju z instytucjami lub użytkownikami."; #elif L==9 // pt "Você não pode remover um país com instituciones ou usuários."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_can_not_rename_this_folder = @@ -57884,6 +63106,8 @@ const char *Txt_You_can_not_rename_this_folder = "Nie możesz zmienić nazwy tego folderu."; #elif L==9 // pt "Você não pode renomear esta pasta."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_can_not_send_a_message_to_so_many_recipients_ = @@ -57914,6 +63138,8 @@ const char *Txt_You_can_not_send_a_message_to_so_many_recipients_ = #elif L==9 // pt "Você não pode enviar uma mensagem para tantos destinatários." " Melhor usar os fóruns."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_can_not_take_a_new_test_until = @@ -57935,6 +63161,8 @@ const char *Txt_You_can_not_take_a_new_test_until = "Nie można wykonać nowy test do"; #elif L==9 // pt "Você não pode fazer um novo teste até"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_can_only_perform_X_further_actions_ = // Warning: it is very important to include %u in the following sentences @@ -57965,6 +63193,8 @@ const char *Txt_You_can_only_perform_X_further_actions_ = // Warning: it is very #elif L==9 // pt "Você só pode executar %u ações adicionais" " se não enviar sua foto."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_can_only_receive_email_notifications_if_ = // Warning: it is very important to include five %s in the following sentences @@ -58004,6 +63234,8 @@ const char *Txt_You_can_only_receive_email_notifications_if_ = // Warning: it is "Você só pode receber notificações de email" " se o seu endereço de email está confirmado (%s > %s)" " e termina em um dos domínios permitidos (%s > %s > %s)."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_can_register_voluntarily_in_one_group_of_type_X = // Warning: it is very important to include %s in the following sentences @@ -58025,6 +63257,8 @@ const char *Txt_You_can_register_voluntarily_in_one_group_of_type_X = // Warning "Możesz zarejestrować się dobrowolnie w jednej grupie typu %s."; #elif L==9 // pt "Você pode se inscrever voluntariamente em um grupo do tipo %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_can_register_voluntarily_in_one_or_more_groups_of_type_X = // Warning: it is very important to include %s in the following sentences @@ -58055,6 +63289,8 @@ const char *Txt_You_can_register_voluntarily_in_one_or_more_groups_of_type_X = / #elif L==9 // pt "Você pode se inscrever voluntariamente" " em um ou mais grupos do tipo %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_can_search_for_courses_select_them_and_request_your_enrolment_in_them = @@ -58085,6 +63321,8 @@ const char *Txt_You_can_search_for_courses_select_them_and_request_your_enrolmen #elif L==9 // pt "Você pode procurar por cursos, selecioná-los" " e solicitar a sua inscrição nos mesmos."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_can_send_a_file_with_an_image_in_PNG_format_transparent_background_and_size_X_Y = // Warning: it is very important to include two %u in the following sentences @@ -58115,6 +63353,8 @@ const char *Txt_You_can_send_a_file_with_an_image_in_PNG_format_transparent_back #elif L==9 // pt "Você pode enviar um arquivo com uma imagem no formato PNG," " fundo transparente e tamanho %u×%u pixels."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_can_send_a_file_with_an_image_in_JPEG_format_ = @@ -58154,6 +63394,8 @@ const char *Txt_You_can_send_a_file_with_an_image_in_JPEG_format_ = "Você pode enviar um arquivo em uma imagem com formato JPEG.
" "A imagem deve conter pelo menos um rosto na posição vertical e frontal," " eo fundo deve ser branco ou muito claro."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_dont_follow_any_user = @@ -58175,6 +63417,8 @@ const char *Txt_You_dont_follow_any_user = "Nie po żadnej użytkownika."; #elif L==9 // pt "Você não segue nenhum usuário."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_dont_have_access_to_the_exam = @@ -58196,6 +63440,8 @@ const char *Txt_You_dont_have_access_to_the_exam = "Nie masz dostępu do egzaminu."; #elif L==9 // pt "Você não tem acesso ao exame."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_dont_have_permission_to_perform_this_action = @@ -58226,6 +63472,8 @@ const char *Txt_You_dont_have_permission_to_perform_this_action = #elif L==9 // pt "Você não tem permissão" " para realizar esta ação."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_have_confirmed_that_you_have_read_this_information = @@ -58247,6 +63495,8 @@ const char *Txt_You_have_confirmed_that_you_have_read_this_information = "Potwierdziłeś, że zapoznałeś się z tymi informacjami."; #elif L==9 // pt "Você confirmou que leu esta informação."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_have_confirmed_your_enrolment_in_the_course_X = // Warning: it is very important to include %s in the following sentences @@ -58277,6 +63527,8 @@ const char *Txt_You_have_confirmed_your_enrolment_in_the_course_X = // Warning: #elif L==9 // pt "Você confirmou sua inscrição" " na disciplina %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_have_eliminated_the_confirmation_that_you_have_read_this_information = @@ -58307,6 +63559,8 @@ const char *Txt_You_have_eliminated_the_confirmation_that_you_have_read_this_inf #elif L==9 // pt "Você eliminou a confirmação" " de que leu esta informação."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_have_followed_one_user = @@ -58328,6 +63582,8 @@ const char *Txt_You_have_followed_one_user = "Śledziłeś jednego użytkownika."; #elif L==9 // pt "Você seguiu um usuário."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_have_followed_X_users = // Warning: it is very important to include %u in the following sentences @@ -58349,6 +63605,8 @@ const char *Txt_You_have_followed_X_users = // Warning: it is very important to "Śledziłeś %u użytkowników."; #elif L==9 // pt "Você seguiu %u usuários."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_have_no_notifications = @@ -58370,6 +63628,8 @@ const char *Txt_You_have_no_notifications = "Nie masz żadnych powiadomień."; #elif L==9 // pt "Você não tem notificações."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_have_no_unread_notifications = @@ -58391,6 +63651,8 @@ const char *Txt_You_have_no_unread_notifications = "Nie masz nieprzeczytanych powiadomień."; #elif L==9 // pt "Você não tem notificações não lidas."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_have_not_banned_any_sender = @@ -58412,6 +63674,8 @@ const char *Txt_You_have_not_banned_any_sender = "Nie zbanowałeś żadnego nadawcy."; #elif L==9 // pt "Você não baniu nenhum remetente."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_have_not_confirmed_the_action = @@ -58433,6 +63697,8 @@ const char *Txt_You_have_not_confirmed_the_action = "Nie potwierdziły działanie."; #elif L==9 // pt "Você ainda não confirmou a ação."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_have_not_entered_your_password_correctly = @@ -58454,6 +63720,8 @@ const char *Txt_You_have_not_entered_your_password_correctly = "Nie wpisałeś poprawnie hasło."; #elif L==9 // pt "Você não digitou sua senha corretamente."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_have_not_written_twice_the_same_new_password = @@ -58475,6 +63743,8 @@ const char *Txt_You_have_not_written_twice_the_same_new_password = "Nie wpisałeś dwa razy tego samego nowego hasła."; #elif L==9 // pt "Você não escreveu duas vezes a mesma nova senha."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_have_stopped_following_one_user = @@ -58496,6 +63766,8 @@ const char *Txt_You_have_stopped_following_one_user = "Przestałeś obserwować użytkownika."; #elif L==9 // pt "Você parou de seguir um usuário."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_have_stopped_following_X_users = // Warning: it is very important to include %u in the following sentences @@ -58517,6 +63789,8 @@ const char *Txt_You_have_stopped_following_X_users = // Warning: it is very impo "Zatrzymałeś śledzenie %u użytkowników."; #elif L==9 // pt "Você parou de seguir %u usuários."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_have_to_register_compulsorily_at_least_in_one_group_of_type_X = // Warning: it is very important to include %s in the following sentences @@ -58538,6 +63812,8 @@ const char *Txt_You_have_to_register_compulsorily_at_least_in_one_group_of_type_ "Musisz obowiązkowo zarejestrować się przynajmniej w jednej grupie typu %s."; #elif L==9 // pt "Você tem que se registrar obrigatoriamente pelo menos em um grupo do tipo %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_have_to_register_compulsorily_in_one_group_of_type_X = // Warning: it is very important to include %s in the following sentences @@ -58559,6 +63835,8 @@ const char *Txt_You_have_to_register_compulsorily_in_one_group_of_type_X = // Wa "Musisz obowiązkowo zarejestrować się w jednej grupie typu %s."; #elif L==9 // pt "Você tem que se registrar obrigatoriamente em um grupo do tipo %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_must_enter_an_integer_value_as_the_correct_answer = @@ -58580,6 +63858,8 @@ const char *Txt_You_must_enter_an_integer_value_as_the_correct_answer = "Musisz podać wartość całkowitą jako poprawną odpowiedź."; #elif L==9 // pt "Você deve inserir um valor inteiro como a resposta correta."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_must_enter_the_range_of_floating_point_values_allowed_as_answer = @@ -58601,6 +63881,8 @@ const char *Txt_You_must_enter_the_range_of_floating_point_values_allowed_as_ans "Musisz podać zakres wartości zmiennoprzecinkowych dozwolonych jako odpowiedź."; #elif L==9 // pt "Você deve inserir o intervalo de valores de ponto flutuante permitidos como resposta."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_must_enter_your_nick_email_or_ID = @@ -58622,6 +63904,8 @@ const char *Txt_You_must_enter_your_nick_email_or_ID = "Musisz napisać @pseudonim, email lub ID."; #elif L==9 // pt "Você deve digitar seu @alcunha, email ou nº identif."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_must_mark_an_answer_as_correct = @@ -58643,6 +63927,8 @@ const char *Txt_You_must_mark_an_answer_as_correct = "Musisz oznaczyć odpowiedź jako poprawną."; #elif L==9 // pt "Você deve marcar uma resposta como correta."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_must_select_a_T_F_answer = @@ -58664,6 +63950,8 @@ const char *Txt_You_must_select_a_T_F_answer = "Musisz wybrać odpowiedź P/F."; #elif L==9 // pt "Você deve selecionar uma resposta V ou F."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_must_select_one_ore_more_recipients = @@ -58685,6 +63973,8 @@ const char *Txt_You_must_select_one_ore_more_recipients = "Musisz wybrać jednego lub więcej odbiorców."; #elif L==9 // pt "Você deve selecionar um ou mais destinatários."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_must_select_one_ore_more_tags = @@ -58706,6 +63996,8 @@ const char *Txt_You_must_select_one_ore_more_tags = "Musisz wybrać jeden lub więcej tagów."; #elif L==9 // pt "Você deve selecionar uma ou mais descritores."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_must_select_one_ore_more_types_of_answer = @@ -58727,6 +64019,8 @@ const char *Txt_You_must_select_one_ore_more_types_of_answer = "Musisz wybrać jeden lub więcej typów odpowiedzi."; #elif L==9 // pt "Você deve selecionar um ou mais tipos de resposta."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_must_select_one_ore_more_users = @@ -58748,6 +64042,8 @@ const char *Txt_You_must_select_one_ore_more_users = "Musisz wybrać jednego lub więcej użytkowników."; #elif L==9 // pt "Você deve selecionar um ou mais usu´rios."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_must_send_your_photo_because_ = @@ -58787,6 +64083,8 @@ const char *Txt_You_must_send_your_photo_because_ = "Você deve enviar sua foto," " porque esgotou o número de cliques" " permitidos sem foto."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_must_specify_the_image_of_the_new_banner = @@ -58808,6 +64106,8 @@ const char *Txt_You_must_specify_the_image_of_the_new_banner = "Musisz określić obraz nowego banera."; #elif L==9 // pt "Você deve especificar a imagem do novo banner."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_must_specify_the_logo_the_application_key_the_URL_and_the_IP_address_of_the_new_plugin = @@ -58838,6 +64138,8 @@ const char *Txt_You_must_specify_the_logo_the_application_key_the_URL_and_the_IP #elif L==9 // pt "Você deve especificar o logotipo, a chave do aplicativo," " o URL e o endereço IP do novo plugin."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_must_specify_the_numerical_code_of_the_new_country = @@ -58859,6 +64161,8 @@ const char *Txt_You_must_specify_the_numerical_code_of_the_new_country = "Musisz podać kod numeryczny ISO 3166-1 nowego kraju."; #elif L==9 // pt "Você deve especificar o código numérico ISO 3166-1 do novo país."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_must_specify_the_name = @@ -58880,6 +64184,8 @@ const char *Txt_You_must_specify_the_name = "Musisz podać nazwę."; #elif L==9 // pt "Você deve especificar o nome."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_must_specify_the_short_name_and_the_full_name = @@ -58901,6 +64207,8 @@ const char *Txt_You_must_specify_the_short_name_and_the_full_name = "Musisz podać krótką nazwę i pełną nazwę."; #elif L==9 // pt "Você deve especificar o nome abreviado e o nome completo."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_must_specify_the_title = @@ -58922,6 +64230,8 @@ const char *Txt_You_must_specify_the_title = "Musisz podać tytuł."; #elif L==9 // pt "Você deve especificar o título."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_must_specify_the_web_address = @@ -58943,6 +64253,8 @@ const char *Txt_You_must_specify_the_web_address = "Musisz podać adres internetowy."; #elif L==9 // pt "Você deve especificar o endereço web."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_must_type_at_least_one_tag_for_the_question = @@ -58964,6 +64276,8 @@ const char *Txt_You_must_type_at_least_one_tag_for_the_question = "Musisz wpisać co najmniej jeden tag dla pytania."; #elif L==9 // pt "Você deve digitar pelo menos um descritor para a pergunta."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_must_type_at_least_the_first_answer = @@ -58985,6 +64299,8 @@ const char *Txt_You_must_type_at_least_the_first_answer = "Musisz wpisać przynajmniej pierwszą odpowiedź."; #elif L==9 // pt "Você deve digitar pelo menos a primeira resposta."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_must_type_at_least_the_first_two_answers = @@ -59006,6 +64322,8 @@ const char *Txt_You_must_type_at_least_the_first_two_answers = "Musisz wpisać co najmniej dwie pierwsze odpowiedzi."; #elif L==9 // pt "Você deve digitar pelo menos as duas primeiras respostas."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_must_type_the_question_stem = @@ -59027,6 +64345,8 @@ const char *Txt_You_must_type_the_question_stem = "Musisz wpisać temat pytania."; #elif L==9 // pt "Você deve digitar a declaração da pergunta."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_need_an_XML_file_containing_a_list_of_questions = @@ -59057,6 +64377,8 @@ const char *Txt_You_need_an_XML_file_containing_a_list_of_questions = #elif L==9 // pt "Você precisa de um arquivo XML" " contendo uma lista de perguntas."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_should_read_the_following_information = @@ -59078,6 +64400,8 @@ const char *Txt_You_should_read_the_following_information = "Należy przeczytać następujące informacje:"; #elif L==9 // pt "Você deve ler as seguintes informações:"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_You_were_already_enroled_as_X_in_the_course_Y = // Warning: it is very important to include two %s in the following sentences @@ -59108,6 +64432,8 @@ const char *Txt_You_were_already_enroled_as_X_in_the_course_Y = // Warning: it i #elif L==9 // pt "Você já estava inscrito/a como %s" " na disciplina %s."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Your_comment_has_been_updated = @@ -59129,6 +64455,8 @@ const char *Txt_Your_comment_has_been_updated = "Komentarz został zaktualizowany."; #elif L==9 // pt "O seu comentário foi atualizado."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Your_password_is_not_secure_enough = @@ -59150,6 +64478,8 @@ const char *Txt_Your_password_is_not_secure_enough = "Twoje hasło nie jest wystarczająco bezpieczne."; #elif L==9 // pt "Sua senha não é segura o suficiente."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Your_password_must_be_at_least_X_characters_and_can_not_contain_spaces_ = // Warning: it is very important to include %u in the following sentences @@ -59207,6 +64537,8 @@ const char *Txt_Your_password_must_be_at_least_X_characters_and_can_not_contain_ " É muito importante não usar apenas" " dígitos numéricos, nem um nome ou apelido," " nem uma palavra conhecida."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Your_personal_data_have_been_updated = @@ -59228,6 +64560,8 @@ const char *Txt_Your_personal_data_have_been_updated = "Twoje dane osobowe zostały zaktualizowane."; #elif L==9 // pt "Seus dados pessoais foram atualizados."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Your_settings_about_notifications_have_changed = @@ -59249,6 +64583,8 @@ const char *Txt_Your_settings_about_notifications_have_changed = "Twoje ustawienia dotyczące powiadomień uległy zmianie."; #elif L==9 // pt "Suas configurações sobre notificações foram alteradas."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Your_record_card_in_this_course_has_been_updated = @@ -59270,6 +64606,8 @@ const char *Txt_Your_record_card_in_this_course_has_been_updated = "Twoja karta wyników na tym kursie została zaktualizowana:"; #elif L==9 // pt "Seu cartão nesta disciplina foi atualizado:"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Your_request_for_enrolment_as_X_in_the_course_Y_has_been_accepted_for_processing = // Warning: it is very important to include two %s in the following sentences @@ -59318,6 +64656,8 @@ const char *Txt_Your_request_for_enrolment_as_X_in_the_course_Y_has_been_accepte " na disciplina %s tem sido feito." " O pedido será analisado por um professor ou administrador." " Você será notificado quando o registro é aceito."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_ZIP_file = @@ -59339,4 +64679,6 @@ const char *Txt_ZIP_file = "Plik ZIP"; #elif L==9 // pt "Arquivo ZIP"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif diff --git a/swad_text_action.c b/swad_text_action.c index bd8d0ea2..6c05e951 100644 --- a/swad_text_action.c +++ b/swad_text_action.c @@ -56,6 +56,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Wszelkie działania" #elif L==9 // pt "Qualquer ação" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActUnk] = @@ -77,6 +79,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Nieznane działanie" #elif L==9 // pt "Ação desconhecida" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActMnu] = @@ -98,6 +102,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Pokaż menu" #elif L==9 // pt "Mostrar menu" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRefCon] = @@ -119,6 +125,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Odświeżyć powiadomienia i połączyć" #elif L==9 // pt "Atualizar notificações e conectados" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActWebSvc] = @@ -140,6 +148,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Serwis internetowy (funkcja API)" #elif L==9 // pt "Serviço da Web (função de API)" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmLogIn] = @@ -161,6 +171,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Landing page" #elif L==9 // pt "Landing page" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqSch] = @@ -182,6 +194,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Poproś o wyszukiwanie" #elif L==9 // pt "Solicitar pesquisa" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeGblTL] = @@ -203,6 +217,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Pokaż globalną timeline" #elif L==9 // pt "Mostrar timeline global" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeSocPrf] = @@ -224,6 +240,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Zasugeruj listę użytkowników do obserwowania" #elif L==9 // pt "Sugerir lista de usuários a seguir" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeCal] = @@ -245,6 +263,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Pokaż kalendarz" #elif L==9 // pt "Mostrar calendário" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeNtf] = @@ -266,6 +286,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Pokaż powiadomienia" #elif L==9 // pt "Mostrar notificações" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActLogIn] = @@ -287,6 +309,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Uwierzytelnij użytkownika" #elif L==9 // pt "Autenticar usuário" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActLogInNew] = @@ -308,6 +332,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Authenticate user in empty account" // Potrzebujesz tlumaczenie #elif L==9 // pt "Authenticate user in empty account" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActLogInLan] = @@ -329,6 +355,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change language after authentication" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change language after authentication" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAnnSee] = @@ -350,6 +378,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Mark announcement as seen" // Potrzebujesz tlumaczenie #elif L==9 // pt "Mark announcement as seen" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqSndNewPwd] = @@ -371,6 +401,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request to send a new password" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request to send a new password" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSndNewPwd] = @@ -392,6 +424,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send new password" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send new password" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActLogOut] = @@ -413,6 +447,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Close session" // Potrzebujesz tlumaczenie #elif L==9 // pt "Close session" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSch] = @@ -434,6 +470,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Search" // Potrzebujesz tlumaczenie #elif L==9 // pt "Search" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRefNewPubGblTL] = @@ -455,6 +493,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Refresh global timeline (new publications)" // Potrzebujesz tlumaczenie #elif L==9 // pt "Refresh global timeline (new publications)" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRefOldPubGblTL] = @@ -476,6 +516,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show previous publications in global timeline" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show previous publications in global timeline" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvPstGblTL] = @@ -497,6 +539,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create post in global timeline" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create post in global timeline" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvComGblTL] = @@ -518,6 +562,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create comment in global timeline" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create comment in global timeline" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActShoHidComGblTL] = @@ -539,6 +585,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show hidden comments in global timeline" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show hidden comments in global timeline" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAllShaNotGblTL] = @@ -560,6 +608,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show who shared a publication in global timeline" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show who shared a publication in global timeline" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAllFavNotGblTL] = @@ -581,6 +631,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show who favourited a publication in global timeline" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show who favourited a publication in global timeline" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAllFavComGblTL] = @@ -602,6 +654,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show who favourited a comment in global timeline" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show who favourited a comment in global timeline" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActShaNotGblTL] = @@ -623,6 +677,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Share a publication in global timeline" // Potrzebujesz tlumaczenie #elif L==9 // pt "Share a publication in global timeline" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActUnsNotGblTL] = @@ -644,6 +700,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Unshare a publication in global timeline" // Potrzebujesz tlumaczenie #elif L==9 // pt "Unshare a publication in global timeline" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFavNotGblTL] = @@ -665,6 +723,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Favourite a publication in global timeline" // Potrzebujesz tlumaczenie #elif L==9 // pt "Favourite a publication in global timeline" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActUnfNotGblTL] = @@ -686,6 +746,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Unfavourite a publication in global timeline" // Potrzebujesz tlumaczenie #elif L==9 // pt "Unfavourite a publication in global timeline" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFavComGblTL] = @@ -707,6 +769,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Favourite a comment in global timeline" // Potrzebujesz tlumaczenie #elif L==9 // pt "Favourite a comment in global timeline" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActUnfComGblTL] = @@ -728,6 +792,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Unfavourite a comment in global timeline" // Potrzebujesz tlumaczenie #elif L==9 // pt "Unfavourite a comment in global timeline" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemPubGblTL] = @@ -749,6 +815,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request deletion of a publication in global timeline" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request deletion of a publication in global timeline" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemPubGblTL] = @@ -770,6 +838,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Delete a publication in global timeline" // Potrzebujesz tlumaczenie #elif L==9 // pt "Delete a publication in global timeline" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemComGblTL] = @@ -791,6 +861,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request deletion of a comment in global timeline" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request deletion of a comment in global timeline" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemComGblTL] = @@ -812,6 +884,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Delete a comment in global timeline" // Potrzebujesz tlumaczenie #elif L==9 // pt "Delete a comment in global timeline" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqOthPubPrf] = @@ -833,6 +907,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request to show public user profile" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request to show public user profile" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRefOldPubUsrTL] = @@ -854,6 +930,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show previous publications in user timeline" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show previous publications in user timeline" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvPstUsrTL] = @@ -875,6 +953,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create post in user timeline" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create post in user timeline" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvComUsrTL] = @@ -896,6 +976,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create comment in user timeline" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create comment in user timeline" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActShoHidComUsrTL] = @@ -917,6 +999,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show hidden comments in user timeline" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show hidden comments in user timeline" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAllShaNotUsrTL] = @@ -938,6 +1022,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show who shared a publication in user timeline" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show who shared a publication in user timeline" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAllFavNotUsrTL] = @@ -959,6 +1045,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show who favourited a publication in user timeline" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show who favourited a publication in user timeline" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAllFavComUsrTL] = @@ -980,6 +1068,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show who favourited a comment in user timeline" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show who favourited a comment in user timeline" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActShaNotUsrTL] = @@ -1001,6 +1091,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Share a publication in user timeline" // Potrzebujesz tlumaczenie #elif L==9 // pt "Share a publication in user timeline" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActUnsNotUsrTL] = @@ -1022,6 +1114,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Unshare a publication in user timeline" // Potrzebujesz tlumaczenie #elif L==9 // pt "Unshare a publication in user timeline" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFavNotUsrTL] = @@ -1043,6 +1137,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Favourite a publication in user timeline" // Potrzebujesz tlumaczenie #elif L==9 // pt "Favourite a publication in user timeline" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActUnfNotUsrTL] = @@ -1064,6 +1160,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Unfavourite a publication in user timeline" // Potrzebujesz tlumaczenie #elif L==9 // pt "Unfavourite a publication in user timeline" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFavComUsrTL] = @@ -1085,6 +1183,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Favourite a comment in user timeline" // Potrzebujesz tlumaczenie #elif L==9 // pt "Favourite a comment in user timeline" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActUnfComUsrTL] = @@ -1106,6 +1206,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Unfavourite a comment in user timeline" // Potrzebujesz tlumaczenie #elif L==9 // pt "Unfavourite a comment in user timeline" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemPubUsrTL] = @@ -1127,6 +1229,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request deletion of a publication in user timeline" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request deletion of a publication in user timeline" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemPubUsrTL] = @@ -1148,6 +1252,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Delete a publication in user timeline" // Potrzebujesz tlumaczenie #elif L==9 // pt "Delete a publication in user timeline" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemComUsrTL] = @@ -1169,6 +1275,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request deletion of a comment in user timeline" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request deletion of a comment in user timeline" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemComUsrTL] = @@ -1190,6 +1298,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Delete a comment in user timeline" // Potrzebujesz tlumaczenie #elif L==9 // pt "Delete a comment in user timeline" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeOthPubPrf] = @@ -1211,6 +1321,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show user profile" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show user profile" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCalFig] = @@ -1232,6 +1344,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Calculate user figures" // Potrzebujesz tlumaczenie #elif L==9 // pt "Calculate user figures" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFolUsr] = @@ -1253,6 +1367,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Follow a user" // Potrzebujesz tlumaczenie #elif L==9 // pt "Follow a user" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActUnfUsr] = @@ -1274,6 +1390,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Unfollow a user" // Potrzebujesz tlumaczenie #elif L==9 // pt "Unfollow a user" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeFlg] = @@ -1295,6 +1413,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show followed users" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show followed users" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeFlr] = @@ -1316,6 +1436,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show followers" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show followers" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPrnCal] = @@ -1337,6 +1459,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Print calendar" // Potrzebujesz tlumaczenie #elif L==9 // pt "Print calendar" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgCal1stDay] = @@ -1358,6 +1482,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change first day of the week in calendar" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change first day of the week in calendar" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeNewNtf] = @@ -1379,6 +1505,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show notifications" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show notifications" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActMrkNtfSee] = @@ -1400,6 +1528,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Mark notifications as seen" // Potrzebujesz tlumaczenie #elif L==9 // pt "Mark notifications as seen" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeMai] = @@ -1421,6 +1551,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show mail domains" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show mail domains" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiMai] = @@ -1442,6 +1574,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit mail domains" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit mail domains" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewMai] = @@ -1463,6 +1597,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create email domain" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create email domain" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemMai] = @@ -1484,6 +1620,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove email domain" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove email domain" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenMaiSho] = @@ -1505,6 +1643,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change email domain" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change email domain" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenMaiFul] = @@ -1526,6 +1666,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change email domain information" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change email domain information" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeSysInf] = @@ -1547,6 +1689,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show information on the platform" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show information on the platform" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeCty] = @@ -1568,6 +1712,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "List countries" // Potrzebujesz tlumaczenie #elif L==9 // pt "List countries" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeePen] = @@ -1589,6 +1735,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Instytucje, centra, stopnie i kursõw oczekujący" #elif L==9 // pt "Instituções, centros, graus e disciplinas pendentes" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeLnk] = @@ -1610,6 +1758,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See institutional links" // Potrzebujesz tlumaczenie #elif L==9 // pt "See institutional links" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActLstPlg] = @@ -1631,6 +1781,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "List plugins" // Potrzebujesz tlumaczenie #elif L==9 // pt "List plugins" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActMtn] = @@ -1652,6 +1804,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Utrzymanie" #elif L==9 // pt "Manutenção" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPrnSysInf] = @@ -1673,6 +1827,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Print information on the platform" // Potrzebujesz tlumaczenie #elif L==9 // pt "Print information on the platform" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiCty] = @@ -1694,6 +1850,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit countries" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit countries" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewCty] = @@ -1715,6 +1873,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request creation of a country" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request creation of a country" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemCty] = @@ -1736,6 +1896,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove country" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove country" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenCty] = @@ -1757,6 +1919,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change name of a country" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change name of a country" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgCtyWWW] = @@ -1778,6 +1942,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change web of country" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change web of country" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeBan] = @@ -1799,6 +1965,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See banners" // Potrzebujesz tlumaczenie #elif L==9 // pt "See banners" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiBan] = @@ -1820,6 +1988,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit banners" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit banners" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewBan] = @@ -1841,6 +2011,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request creation of a banner" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request creation of a banner" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemBan] = @@ -1862,6 +2034,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of a banner" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of a banner" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActShoBan] = @@ -1883,6 +2057,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show a hidden banner" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show a hidden banner" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActHidBan] = @@ -1904,6 +2080,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Hide visible banner" // Potrzebujesz tlumaczenie #elif L==9 // pt "Hide visible banner" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenBanSho] = @@ -1925,6 +2103,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request change of the short name of a banner" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request change of the short name of a banner" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenBanFul] = @@ -1946,6 +2126,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request change of the full name of a banner" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request change of the full name of a banner" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgBanImg] = @@ -1967,6 +2149,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request change of the image of a banner" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request change of the image of a banner" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgBanWWW] = @@ -1988,6 +2172,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request change of the web of a banner" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request change of the web of a banner" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActClkBan] = @@ -2009,6 +2195,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Go to a banner when clicked" // Potrzebujesz tlumaczenie #elif L==9 // pt "Go to a banner when clicked" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiLnk] = @@ -2030,6 +2218,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit institutional links" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit institutional links" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewLnk] = @@ -2051,6 +2241,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request creation of institutional link" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request creation of institutional link" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemLnk] = @@ -2072,6 +2264,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of institutional link" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of institutional link" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenLnkSho] = @@ -2093,6 +2287,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request change of the short name of institutional link" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request change of the short name of institutional link" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenLnkFul] = @@ -2114,6 +2310,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request change of the full name of institutional link" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request change of the full name of institutional link" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgLnkWWW] = @@ -2135,6 +2333,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request change of the web of institutional link" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request change of the web of institutional link" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiPlg] = @@ -2156,6 +2356,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit plugins" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit plugins" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewPlg] = @@ -2177,6 +2379,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request creation of a plugin" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request creation of a plugin" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemPlg] = @@ -2198,6 +2402,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove plugin" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove plugin" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenPlg] = @@ -2219,6 +2425,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rename plugin" // Potrzebujesz tlumaczenie #elif L==9 // pt "Rename plugin" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgPlgDes] = @@ -2240,6 +2448,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change description of a plugin" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change description of a plugin" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgPlgLog] = @@ -2261,6 +2471,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change logo of a plugin" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change logo of a plugin" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgPlgAppKey] = @@ -2282,6 +2494,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change application key of a plugin" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change application key of a plugin" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgPlgURL] = @@ -2303,6 +2517,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change URL of a plugin" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change URL of a plugin" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgPlgIP] = @@ -2324,6 +2540,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change IP address of a plugin" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change IP address of a plugin" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSetUp] = @@ -2345,6 +2563,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Set up" #elif L==9 // pt "Instalar" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemOldCrs] = @@ -2366,6 +2586,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request total removal of old courses" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request total removal of old courses" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemOldCrs] = @@ -2387,6 +2609,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove completely old courses" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove completely old courses" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeCtyInf] = @@ -2408,6 +2632,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show information on the country" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show information on the country" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeIns] = @@ -2429,6 +2655,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "List institutions" // Potrzebujesz tlumaczenie #elif L==9 // pt "List institutions" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPrnCtyInf] = @@ -2450,6 +2678,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Print information on the country" // Potrzebujesz tlumaczenie #elif L==9 // pt "Print information on the country" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgCtyMapAtt] = @@ -2471,6 +2701,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change map attribution of a country" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change map attribution of a country" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiIns] = @@ -2492,6 +2724,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit institutions" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit institutions" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqIns] = @@ -2513,6 +2747,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request creation of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request creation of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewIns] = @@ -2534,6 +2770,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create an institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create an institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemIns] = @@ -2555,6 +2793,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenInsSho] = @@ -2576,6 +2816,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change short name of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change short name of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenInsFul] = @@ -2597,6 +2839,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change full name of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change full name of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgInsWWW] = @@ -2618,6 +2862,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change web of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change web of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgInsSta] = @@ -2639,6 +2885,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change status of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change status of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeInsInf] = @@ -2660,6 +2908,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show information on the institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show information on the institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeCtr] = @@ -2681,6 +2931,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "List centers" // Potrzebujesz tlumaczenie #elif L==9 // pt "List centers" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeePlc] = @@ -2702,6 +2954,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "List places" // Potrzebujesz tlumaczenie #elif L==9 // pt "List places" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeDpt] = @@ -2723,6 +2977,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "List departments" // Potrzebujesz tlumaczenie #elif L==9 // pt "List departments" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeHld] = @@ -2744,6 +3000,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "List holidays" // Potrzebujesz tlumaczenie #elif L==9 // pt "List holidays" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPrnInsInf] = @@ -2765,6 +3023,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Print information on the institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Print information on the institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgInsCtyCfg] = @@ -2786,6 +3046,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change country of institution in its configuration" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change country of institution in its configuration" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenInsShoCfg] = @@ -2807,6 +3069,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change short name of institution in its configuration" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change short name of institution in its configuration" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenInsFulCfg] = @@ -2828,6 +3092,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change full name of institution in its configuration" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change full name of institution in its configuration" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgInsWWWCfg] = @@ -2849,6 +3115,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change web of institution in its configuration" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change web of institution in its configuration" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqInsLog] = @@ -2870,6 +3138,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request logo of the current institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request logo of the current institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRecInsLog] = @@ -2891,6 +3161,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change logo of the current institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change logo of the current institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemInsLog] = @@ -2912,6 +3184,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove the logo of the current institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove the logo of the current institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiCtr] = @@ -2933,6 +3207,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit centers" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit centers" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqCtr] = @@ -2954,6 +3230,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request creation of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request creation of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewCtr] = @@ -2975,6 +3253,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemCtr] = @@ -2996,6 +3276,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgCtrPlc] = @@ -3017,6 +3299,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change place of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change place of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenCtrSho] = @@ -3038,6 +3322,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change short name of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change short name of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenCtrFul] = @@ -3059,6 +3345,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change full name of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change full name of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgCtrWWW] = @@ -3080,6 +3368,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change web of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change web of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgCtrSta] = @@ -3101,6 +3391,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change status of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change status of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiPlc] = @@ -3122,6 +3414,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit places" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit places" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewPlc] = @@ -3143,6 +3437,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request creation of a place" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request creation of a place" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemPlc] = @@ -3164,6 +3460,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove place" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove place" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenPlcSho] = @@ -3185,6 +3483,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change short name of a place" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change short name of a place" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenPlcFul] = @@ -3206,6 +3506,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change full name of a place" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change full name of a place" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiDpt] = @@ -3227,6 +3529,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit departments" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit departments" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewDpt] = @@ -3248,6 +3552,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request creation of a department" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request creation of a department" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemDpt] = @@ -3269,6 +3575,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove department" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove department" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgDptIns] = @@ -3290,6 +3598,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change institution of a department" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change institution of a department" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenDptSho] = @@ -3311,6 +3621,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change short name of a department" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change short name of a department" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenDptFul] = @@ -3334,6 +3646,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change full name of a department" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change full name of a department" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgDptWWW] = @@ -3355,6 +3669,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change web of a department" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change web of a department" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiHld] = @@ -3376,6 +3692,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit holidays" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit holidays" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewHld] = @@ -3397,6 +3715,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request creation of a holiday" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request creation of a holiday" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemHld] = @@ -3418,6 +3738,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove holiday" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove holiday" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgHldPlc] = @@ -3439,6 +3761,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change place of a holiday" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change place of a holiday" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgHldTyp] = @@ -3460,6 +3784,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change type of a holiday" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change type of a holiday" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgHldStrDat] = @@ -3481,6 +3807,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change start date of a holiday" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change start date of a holiday" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgHldEndDat] = @@ -3502,6 +3830,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change end date of a holiday" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change end date of a holiday" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenHld] = @@ -3523,6 +3853,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change name of a holiday" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change name of a holiday" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeCtrInf] = @@ -3544,6 +3876,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show information on the center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show information on the center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeDeg] = @@ -3565,6 +3899,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "List degrees in a center" // Potrzebujesz tlumaczenie #elif L==9 // pt "List degrees in a center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeBld] = @@ -3586,6 +3922,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "List buildings in a center" // Potrzebujesz tlumaczenie #elif L==9 // pt "List buildings in a center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeRoo] = @@ -3607,6 +3945,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "List rooms in a center" // Potrzebujesz tlumaczenie #elif L==9 // pt "List rooms in a center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPrnCtrInf] = @@ -3628,6 +3968,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Print information on the center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Print information on the center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgCtrInsCfg] = @@ -3649,6 +3991,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change institution of center in its configuration" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change institution of center in its configuration" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenCtrShoCfg] = @@ -3670,6 +4014,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change short name center in its configuration" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change short name center in its configuration" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenCtrFulCfg] = @@ -3691,6 +4037,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change full name center in its configuratio" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change full name center in its configuratio" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgCtrPlcCfg] = @@ -3712,6 +4060,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change place of center in its configuration" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change place of center in its configuration" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgCtrLatCfg] = @@ -3733,6 +4083,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change latitude of center in its configuration" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change latitude of center in its configuration" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgCtrLgtCfg] = @@ -3754,6 +4106,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change longitude of center in its configuration" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change longitude of center in its configuration" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgCtrAltCfg] = @@ -3775,6 +4129,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change altitude of center in its configuration" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change altitude of center in its configuration" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgCtrWWWCfg] = @@ -3796,6 +4152,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change web of center in its configuration" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change web of center in its configuration" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqCtrLog] = @@ -3817,6 +4175,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request change of the logo of the current center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request change of the logo of the current center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRecCtrLog] = @@ -3838,6 +4198,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change logo of the current center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change logo of the current center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemCtrLog] = @@ -3859,6 +4221,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove the logo of the current center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove the logo of the current center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqCtrPho] = @@ -3880,6 +4244,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request change of the photo of the current center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request change of the photo of the current center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRecCtrPho] = @@ -3901,6 +4267,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change photo of the current center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change photo of the current center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgCtrPhoAtt] = @@ -3922,6 +4290,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change attribution of center photo" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change attribution of center photo" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeDegTyp] = @@ -3943,6 +4313,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "List types of degrees" // Potrzebujesz tlumaczenie #elif L==9 // pt "List types of degrees" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiDegTyp] = @@ -3964,6 +4336,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request edition of types of degrees" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request edition of types of degrees" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewDegTyp] = @@ -3985,6 +4359,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create type of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create type of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemDegTyp] = @@ -4006,6 +4382,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove type of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove type of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenDegTyp] = @@ -4027,6 +4405,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rename type of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Rename type of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiDeg] = @@ -4048,6 +4428,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit degrees" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit degrees" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDeg] = @@ -4069,6 +4451,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request creation of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request creation of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewDeg] = @@ -4090,6 +4474,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemDeg] = @@ -4111,6 +4497,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenDegSho] = @@ -4132,6 +4520,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change short name of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change short name of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenDegFul] = @@ -4153,6 +4543,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change full name of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change full name of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgDegTyp] = @@ -4174,6 +4566,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change type of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change type of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgDegWWW] = @@ -4195,6 +4589,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change web of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change web of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgDegSta] = @@ -4216,6 +4612,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change status of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change status of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiBld] = @@ -4237,6 +4635,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit buildings" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit buildings" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewBld] = @@ -4258,6 +4658,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request creation of a buildin" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request creation of a buildin" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemBld] = @@ -4279,6 +4681,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove building" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove building" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenBldSho] = @@ -4300,6 +4704,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change short name of building" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change short name of building" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenBldFul] = @@ -4321,6 +4727,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change full name of building" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change full name of building" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenBldLoc] = @@ -4342,6 +4750,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change location of building" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change location of building" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiRoo] = @@ -4363,6 +4773,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit rooms" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit rooms" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewRoo] = @@ -4384,6 +4796,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request creation of room" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request creation of room" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemRoo] = @@ -4405,6 +4819,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove room" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove room" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgRooBld] = @@ -4426,6 +4842,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change building of room" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change building of room" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgRooMaxUsr] = @@ -4447,6 +4865,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change number of users of room" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change number of users of room" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenRooSho] = @@ -4468,6 +4888,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change short name of room" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change short name of room" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenRooFul] = @@ -4489,6 +4911,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change full name of room" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change full name of room" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgRooFlo] = @@ -4510,6 +4934,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change floor of room" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change floor of room" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeDegInf] = @@ -4531,6 +4957,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show information on the degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show information on the degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeCrs] = @@ -4552,6 +4980,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "List courses of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "List courses of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPrnDegInf] = @@ -4573,6 +5003,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Print information on the degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Print information on the degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgDegCtrCfg] = @@ -4594,6 +5026,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change center of degree in its configuration" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change center of degree in its configuration" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenDegShoCfg] = @@ -4615,6 +5049,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change short name of degree in its configuration" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change short name of degree in its configuration" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenDegFulCfg] = @@ -4636,6 +5072,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change full name of degree in its configuration" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change full name of degree in its configuration" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgDegWWWCfg] = @@ -4657,6 +5095,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change web of degree in its configuration" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change web of degree in its configuration" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDegLog] = @@ -4678,6 +5118,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request change of the logo of the current degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request change of the logo of the current degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRecDegLog] = @@ -4699,6 +5141,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change logo of the current degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change logo of the current degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemDegLog] = @@ -4720,6 +5164,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove the logo of the current degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove the logo of the current degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiCrs] = @@ -4741,6 +5187,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit courses" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit courses" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqCrs] = @@ -4762,6 +5210,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request creation of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request creation of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewCrs] = @@ -4783,6 +5233,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemCrs] = @@ -4804,6 +5256,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgInsCrsCod] = @@ -4825,6 +5279,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change institutional code of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change institutional code of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgCrsYea] = @@ -4846,6 +5302,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change year/semester of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change year/semester of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenCrsSho] = @@ -4867,6 +5325,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change short name of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change short name of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenCrsFul] = @@ -4888,6 +5348,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change full name of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change full name of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgCrsSta] = @@ -4909,6 +5371,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change status of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change status of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeCrsInf] = @@ -4930,6 +5394,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show information on the course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show information on the course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeePrg] = @@ -4951,6 +5417,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See educational schedule of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "See educational schedule of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmNewPrgItm] = @@ -4972,6 +5440,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request new program item" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request new program item" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmChgPrgItm] = @@ -4993,6 +5463,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit program item" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit program item" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewPrgItm] = @@ -5014,6 +5486,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new program item" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new program item" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgPrgItm] = @@ -5035,6 +5509,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change program item" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change program item" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemPrgItm] = @@ -5056,6 +5532,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of program item" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of program item" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemPrgItm] = @@ -5077,6 +5555,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove of program item" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove of program item" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActHidPrgItm] = @@ -5098,6 +5578,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Hide program item" // Potrzebujesz tlumaczenie #elif L==9 // pt "Hide program item" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActShoPrgItm] = @@ -5119,6 +5601,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show program item" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show program item" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActUp_PrgItm] = @@ -5140,6 +5624,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Move up program item" // Potrzebujesz tlumaczenie #elif L==9 // pt "Move up program item" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDwnPrgItm] = @@ -5161,6 +5647,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Move down program item" // Potrzebujesz tlumaczenie #elif L==9 // pt "Move down program item" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActLftPrgItm] = @@ -5182,6 +5670,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Move left program item" // Potrzebujesz tlumaczenie #elif L==9 // pt "Move left program item" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRgtPrgItm] = @@ -5203,6 +5693,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Move right program item" // Potrzebujesz tlumaczenie #elif L==9 // pt "Move right program item" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeTchGui] = @@ -5224,6 +5716,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See the teaching guide of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "See the teaching guide of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeSyl] = @@ -5245,6 +5739,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See the syllabus (lectures or practicals)" // Potrzebujesz tlumaczenie #elif L==9 // pt "See the syllabus (lectures or practicals)" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeBib] = @@ -5266,6 +5762,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See the bibliography" // Potrzebujesz tlumaczenie #elif L==9 // pt "See the bibliography" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeFAQ] = @@ -5287,6 +5785,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See the FAQ" // Potrzebujesz tlumaczenie #elif L==9 // pt "See the FAQ" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeCrsLnk] = @@ -5308,6 +5808,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See the links related to the course" // Potrzebujesz tlumaczenie #elif L==9 // pt "See the links related to the course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeCrsTT] = @@ -5329,6 +5831,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See the course timetable" // Potrzebujesz tlumaczenie #elif L==9 // pt "See the course timetable" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPrnCrsInf] = @@ -5350,6 +5854,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Print information on the course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Print information on the course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgCrsDegCfg] = @@ -5371,6 +5877,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change degree of course in its configuration" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change degree of course in its configuration" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenCrsShoCfg] = @@ -5392,6 +5900,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change short name of course in its configuration" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change short name of course in its configuration" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenCrsFulCfg] = @@ -5413,6 +5923,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change full name of course in its configuration" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change full name of course in its configuration" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgInsCrsCodCfg] = @@ -5434,6 +5946,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change institutional code of course in its configuration" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change institutional code of course in its configuration" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgCrsYeaCfg] = @@ -5455,6 +5969,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change year/semester of course in its configuration" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change year/semester of course in its configuration" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiCrsInf] = @@ -5476,6 +5992,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit information about the course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit information about the course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiTchGui] = @@ -5497,6 +6015,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit teaching guide of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit teaching guide of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeSylLec] = @@ -5518,6 +6038,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See the lectures syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "See the lectures syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeSylPra] = @@ -5539,6 +6061,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show the practicals syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show the practicals syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiSylLec] = @@ -5560,6 +6084,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit syllabus of lectures" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit syllabus of lectures" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiSylPra] = @@ -5581,6 +6107,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit practicals syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit practicals syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDelItmSylLec] = @@ -5602,6 +6130,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove item from syllabus of lectures" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove item from syllabus of lectures" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDelItmSylPra] = @@ -5623,6 +6153,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove item from practicals syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove item from practicals syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActUp_IteSylLec] = @@ -5644,6 +6176,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Raise the position of a subtree of the lectures syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "Raise the position of a subtree of the lectures syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActUp_IteSylPra] = @@ -5665,6 +6199,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Raise the position of a subtree of the practicals syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "Raise the position of a subtree of the practicals syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDwnIteSylLec] = @@ -5686,6 +6222,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Lower the position of a subtree of the lectures syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "Lower the position of a subtree of the lectures syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDwnIteSylPra] = @@ -5707,6 +6245,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Lower the position of a subtree of the practicals syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "Lower the position of a subtree of the practicals syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRgtIteSylLec] = @@ -5728,6 +6268,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Increase the level of an item on the lectures syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "Increase the level of an item on the lectures syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRgtIteSylPra] = @@ -5749,6 +6291,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Increase the level of an item on the practicals syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "Increase the level of an item on the practicals syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActLftIteSylLec] = @@ -5770,6 +6314,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Decrease the level of an item on the lectures syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "Decrease the level of an item on the lectures syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActLftIteSylPra] = @@ -5791,6 +6337,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Decrease the level of an item on the practicals syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "Decrease the level of an item on the practicals syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActInsIteSylLec] = @@ -5812,6 +6360,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Insert a new item in the lectures syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "Insert a new item in the lectures syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActInsIteSylPra] = @@ -5833,6 +6383,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Insert a new item in the practicals syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "Insert a new item in the practicals syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActModIteSylLec] = @@ -5854,6 +6406,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change item in the lectures syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change item in the lectures syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActModIteSylPra] = @@ -5875,6 +6429,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change item in the practicals syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change item in the practicals syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiBib] = @@ -5896,6 +6452,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit bibliography" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit bibliography" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiFAQ] = @@ -5917,6 +6475,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit FAQ" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit FAQ" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiCrsLnk] = @@ -5938,6 +6498,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit course links" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit course links" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgFrcReaCrsInf] = @@ -5959,6 +6521,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change whether students are forced to read the course information" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change whether students are forced to read the course information" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgFrcReaTchGui] = @@ -5980,6 +6544,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change whether students are forced to read the teaching guide" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change whether students are forced to read the teaching guide" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgFrcReaSylLec] = @@ -6001,6 +6567,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change whether students are forced to read the lectures syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change whether students are forced to read the lectures syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgFrcReaSylPra] = @@ -6022,6 +6590,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change whether students are forced to read the practicals syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change whether students are forced to read the practicals syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgFrcReaBib] = @@ -6043,6 +6613,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change whether students are forced to read the bibliography" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change whether students are forced to read the bibliography" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgFrcReaFAQ] = @@ -6064,6 +6636,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change force students to read FAQ" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change force students to read FAQ" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgFrcReaCrsLnk] = @@ -6085,6 +6659,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change whether students are forced to read the links" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change whether students are forced to read the links" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgHavReaCrsInf] = @@ -6106,6 +6682,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change if I have read the course information" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change if I have read the course information" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgHavReaTchGui] = @@ -6127,6 +6705,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change if I have read the teaching guide" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change if I have read the teaching guide" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgHavReaSylLec] = @@ -6148,6 +6728,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change if I have read the lectures syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change if I have read the lectures syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgHavReaSylPra] = @@ -6169,6 +6751,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change if I have read the practicals syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change if I have read the practicals syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgHavReaBib] = @@ -6190,6 +6774,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change if I have read the bibliography" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change if I have read the bibliography" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgHavReaFAQ] = @@ -6211,6 +6797,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change if I have read the FAQ" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change if I have read the FAQ" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgHavReaCrsLnk] = @@ -6232,6 +6820,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change if I have read the course links" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change if I have read the course links" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSelInfSrcCrsInf] = @@ -6253,6 +6843,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Select the type of information shown in the course information" // Potrzebujesz tlumaczenie #elif L==9 // pt "Select the type of information shown in the course information" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSelInfSrcTchGui] = @@ -6274,6 +6866,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Select the type of information shown in the teaching guide" // Potrzebujesz tlumaczenie #elif L==9 // pt "Select the type of information shown in the teaching guide" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSelInfSrcSylLec] = @@ -6295,6 +6889,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Select the type of information shown in the lectures syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "Select the type of information shown in the lectures syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSelInfSrcSylPra] = @@ -6316,6 +6912,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Select the type of information shown in the practicals syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "Select the type of information shown in the practicals syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSelInfSrcBib] = @@ -6337,6 +6935,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Select the type of information shown in the bibliography" // Potrzebujesz tlumaczenie #elif L==9 // pt "Select the type of information shown in the bibliography" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSelInfSrcFAQ] = @@ -6358,6 +6958,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Select the type of information shown in the FAQ" // Potrzebujesz tlumaczenie #elif L==9 // pt "Select the type of information shown in the FAQ" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSelInfSrcCrsLnk] = @@ -6379,6 +6981,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Select the type of information shown in the course links" // Potrzebujesz tlumaczenie #elif L==9 // pt "Select the type of information shown in the course links" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvURLCrsInf] = @@ -6400,6 +7004,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create URL in the course information" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create URL in the course information" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvURLTchGui] = @@ -6421,6 +7027,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create URL in the teaching guide" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create URL in the teaching guide" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvURLSylLec] = @@ -6442,6 +7050,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create URL in the lectures syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create URL in the lectures syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvURLSylPra] = @@ -6463,6 +7073,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create URL in the practicals syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create URL in the practicals syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvURLBib] = @@ -6484,6 +7096,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create URL in the bibliography" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create URL in the bibliography" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvURLFAQ] = @@ -6505,6 +7119,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create URL in the FAQ" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create URL in the FAQ" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvURLCrsLnk] = @@ -6526,6 +7142,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create URL in the course links" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create URL in the course links" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvPagCrsInf] = @@ -6547,6 +7165,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create web page in the course information" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create web page in the course information" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvPagTchGui] = @@ -6568,6 +7188,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create web page in the teaching guide" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create web page in the teaching guide" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvPagSylLec] = @@ -6589,6 +7211,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create web page in the lectures syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create web page in the lectures syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvPagSylPra] = @@ -6610,6 +7234,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create web page in the practicals syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create web page in the practicals syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvPagBib] = @@ -6631,6 +7257,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create web page in the bibliography" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create web page in the bibliography" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvPagFAQ] = @@ -6652,6 +7280,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create web page in the FAQ" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create web page in the FAQ" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvPagCrsLnk] = @@ -6673,6 +7303,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create web page in the course links" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create web page in the course links" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEditorCrsInf] = @@ -6694,6 +7326,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Integrated editor of course information" // Potrzebujesz tlumaczenie #elif L==9 // pt "Integrated editor of course information" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEditorTchGui] = @@ -6715,6 +7349,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Integrated editor of the teaching guide" // Potrzebujesz tlumaczenie #elif L==9 // pt "Integrated editor of the teaching guide" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEditorSylLec] = @@ -6736,6 +7372,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Integrated editor of the lectures syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "Integrated editor of the lectures syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEditorSylPra] = @@ -6757,6 +7395,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Integrated editor of the practicals syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "Integrated editor of the practicals syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEditorBib] = @@ -6778,6 +7418,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Integrated editor of the bibliography" // Potrzebujesz tlumaczenie #elif L==9 // pt "Integrated editor of the bibliography" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEditorFAQ] = @@ -6799,6 +7441,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Integrated editor of the FAQ" // Potrzebujesz tlumaczenie #elif L==9 // pt "Integrated editor of the FAQ" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEditorCrsLnk] = @@ -6820,6 +7464,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Integrated editor of course links" // Potrzebujesz tlumaczenie #elif L==9 // pt "Integrated editor of course links" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPlaTxtEdiCrsInf] = @@ -6841,6 +7487,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Plain text editor of course information" // Potrzebujesz tlumaczenie #elif L==9 // pt "Plain text editor of course information" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPlaTxtEdiTchGui] = @@ -6862,6 +7510,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Plain text editor of the teaching guide" // Potrzebujesz tlumaczenie #elif L==9 // pt "Plain text editor of the teaching guide" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPlaTxtEdiSylLec] = @@ -6883,6 +7533,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Plain text editor of the lectures syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "Plain text editor of the lectures syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPlaTxtEdiSylPra] = @@ -6904,6 +7556,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Plain text editor of the practicals syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "Plain text editor of the practicals syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPlaTxtEdiBib] = @@ -6925,6 +7579,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Plain text editor of the bibliography" // Potrzebujesz tlumaczenie #elif L==9 // pt "Plain text editor of the bibliography" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPlaTxtEdiFAQ] = @@ -6946,6 +7602,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Plain text editor of the FAQ" // Potrzebujesz tlumaczenie #elif L==9 // pt "Plain text editor of the FAQ" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPlaTxtEdiCrsLnk] = @@ -6967,6 +7625,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Plain text editor of course links" // Potrzebujesz tlumaczenie #elif L==9 // pt "Plain text editor of course links" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRchTxtEdiCrsInf] = @@ -6988,6 +7648,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rich text editor of course information" // Potrzebujesz tlumaczenie #elif L==9 // pt "Rich text editor of course information" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRchTxtEdiTchGui] = @@ -7009,6 +7671,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rich text editor of the teaching guide" // Potrzebujesz tlumaczenie #elif L==9 // pt "Rich text editor of the teaching guide" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRchTxtEdiSylLec] = @@ -7030,6 +7694,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rich text editor of the lectures syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "Rich text editor of the lectures syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRchTxtEdiSylPra] = @@ -7051,6 +7717,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rich text editor of the practicals syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "Rich text editor of the practicals syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRchTxtEdiBib] = @@ -7072,6 +7740,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rich text editor of the bibliography" // Potrzebujesz tlumaczenie #elif L==9 // pt "Rich text editor of the bibliography" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRchTxtEdiFAQ] = @@ -7093,6 +7763,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rich text editor of the FAQ" // Potrzebujesz tlumaczenie #elif L==9 // pt "Rich text editor of the FAQ" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRchTxtEdiCrsLnk] = @@ -7114,6 +7786,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rich text editor of course links" // Potrzebujesz tlumaczenie #elif L==9 // pt "Rich text editor of course links" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvPlaTxtCrsInf] = @@ -7135,6 +7809,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change plain text of course information" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change plain text of course information" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvPlaTxtTchGui] = @@ -7156,6 +7832,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change plain text of the teaching guide" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change plain text of the teaching guide" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvPlaTxtSylLec] = @@ -7177,6 +7855,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change plain text of the lectures syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change plain text of the lectures syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvPlaTxtSylPra] = @@ -7198,6 +7878,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change plain text of the practicals syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change plain text of the practicals syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvPlaTxtBib] = @@ -7219,6 +7901,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change plain text of the bibliography" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change plain text of the bibliography" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvPlaTxtFAQ] = @@ -7240,6 +7924,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change plain text of the FAQ" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change plain text of the FAQ" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvPlaTxtCrsLnk] = @@ -7261,6 +7947,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change plain text of course links" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change plain text of course links" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvRchTxtCrsInf] = @@ -7282,6 +7970,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change rich text of course information" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change rich text of course information" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvRchTxtTchGui] = @@ -7303,6 +7993,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change rich text of the teaching guide" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change rich text of the teaching guide" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvRchTxtSylLec] = @@ -7324,6 +8016,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change rich text of the lectures syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change rich text of the lectures syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvRchTxtSylPra] = @@ -7345,6 +8039,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change rich text of the practicals syllabus" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change rich text of the practicals syllabus" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvRchTxtBib] = @@ -7366,6 +8062,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change rich text of the bibliography" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change rich text of the bibliography" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvRchTxtFAQ] = @@ -7387,6 +8085,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change rich text of the FAQ" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change rich text of the FAQ" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvRchTxtCrsLnk] = @@ -7408,6 +8108,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change rich text of course links" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change rich text of course links" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPrnCrsTT] = @@ -7429,6 +8131,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show print view of course timetable" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show print view of course timetable" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiCrsTT] = @@ -7450,6 +8154,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit course timetable" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit course timetable" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgCrsTT] = @@ -7471,6 +8177,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change course timetable" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change course timetable" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgCrsTT1stDay] = @@ -7492,6 +8200,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change first day of week of course timetable" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change first day of week of course timetable" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeAss] = @@ -7513,6 +8223,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See assessment system" // Potrzebujesz tlumaczenie #elif L==9 // pt "See assessment system" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeAsg] = @@ -7534,6 +8246,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See assignments" // Potrzebujesz tlumaczenie #elif L==9 // pt "See assignments" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeePrj] = @@ -7555,6 +8269,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See projects" // Potrzebujesz tlumaczenie #elif L==9 // pt "See projects" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeAllExaAnn] = @@ -7576,6 +8292,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See exam announcements" // Potrzebujesz tlumaczenie #elif L==9 // pt "See exam announcements" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiTstQst] = @@ -7597,6 +8315,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request edition of test questions" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request edition of test questions" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqTst] = @@ -7618,6 +8338,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request a test" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request a test" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeAllExa] = @@ -7639,6 +8361,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See all exams" // Potrzebujesz tlumaczenie #elif L==9 // pt "See all exams" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeAllGam] = @@ -7660,6 +8384,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See all games" // Potrzebujesz tlumaczenie #elif L==9 // pt "See all games" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeAllSvy] = @@ -7681,6 +8407,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See surveys" // Potrzebujesz tlumaczenie #elif L==9 // pt "See surveys" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiAss] = @@ -7702,6 +8430,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit assessment system" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit assessment system" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgFrcReaAss] = @@ -7723,6 +8453,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change whether students are forced to read the assessment system" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change whether students are forced to read the assessment system" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgHavReaAss] = @@ -7744,6 +8476,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change if I have read the assessment system" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change if I have read the assessment system" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSelInfSrcAss] = @@ -7765,6 +8499,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Select the type of information shown in the assessment system" // Potrzebujesz tlumaczenie #elif L==9 // pt "Select the type of information shown in the assessment system" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvURLAss] = @@ -7786,6 +8522,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create URL in the assessment system" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create URL in the assessment system" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvPagAss] = @@ -7807,6 +8545,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create web page in the assessment system" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create web page in the assessment system" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEditorAss] = @@ -7828,6 +8568,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Integrated editor of the assessment system" // Potrzebujesz tlumaczenie #elif L==9 // pt "Integrated editor of the assessment system" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPlaTxtEdiAss] = @@ -7849,6 +8591,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Plain text editor of the assessment system" // Potrzebujesz tlumaczenie #elif L==9 // pt "Plain text editor of the assessment system" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRchTxtEdiAss] = @@ -7870,6 +8614,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rich text editor of the assessment system" // Potrzebujesz tlumaczenie #elif L==9 // pt "Rich text editor of the assessment system" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvPlaTxtAss] = @@ -7891,6 +8637,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change plain text of the assessment system" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change plain text of the assessment system" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvRchTxtAss] = @@ -7912,6 +8660,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change rich text of the assessment system" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change rich text of the assessment system" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmNewAsg] = @@ -7933,6 +8683,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit new assignment" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit new assignment" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiOneAsg] = @@ -7954,6 +8706,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit an assignment" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit an assignment" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPrnOneAsg] = @@ -7975,6 +8729,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show print view of an assignment" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show print view of an assignment" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewAsg] = @@ -7996,6 +8752,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create assignment" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create assignment" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgAsg] = @@ -8017,6 +8775,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change an assignment" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change an assignment" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemAsg] = @@ -8038,6 +8798,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of an assignment" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of an assignment" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemAsg] = @@ -8059,6 +8821,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove assignment" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove assignment" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActHidAsg] = @@ -8080,6 +8844,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Hide assignment" // Potrzebujesz tlumaczenie #elif L==9 // pt "Hide assignment" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActShoAsg] = @@ -8101,6 +8867,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Unhide assignment" // Potrzebujesz tlumaczenie #elif L==9 // pt "Unhide assignment" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqUsrPrj] = @@ -8122,6 +8890,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Select users to list their projects" // Potrzebujesz tlumaczenie #elif L==9 // pt "Select users to list their projects" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeTblAllPrj] = @@ -8143,6 +8913,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show all projects in a table" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show all projects in a table" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCfgPrj] = @@ -8164,6 +8936,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Configure all projects" // Potrzebujesz tlumaczenie #elif L==9 // pt "Configure all projects" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvCfgPrj] = @@ -8185,6 +8959,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change configuration of all projects" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change configuration of all projects" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqLckAllPrj] = @@ -8206,6 +8982,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request locking of all projects" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request locking of all projects" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqUnlAllPrj] = @@ -8227,6 +9005,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request unlocking of all projects" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request unlocking of all projects" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActLckAllPrj] = @@ -8248,6 +9028,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Lock all projects" // Potrzebujesz tlumaczenie #elif L==9 // pt "Lock all projects" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActUnlAllPrj] = @@ -8269,6 +9051,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Unlock all projects" // Potrzebujesz tlumaczenie #elif L==9 // pt "Unlock all projects" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmNewPrj] = @@ -8290,6 +9074,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit new project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit new project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiOnePrj] = @@ -8311,6 +9097,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPrnOnePrj] = @@ -8332,6 +9120,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show primt view of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show primt view of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewPrj] = @@ -8353,6 +9143,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgPrj] = @@ -8374,6 +9166,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemPrj] = @@ -8395,6 +9189,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemPrj] = @@ -8416,6 +9212,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActHidPrj] = @@ -8437,6 +9235,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Hide project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Hide project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActShoPrj] = @@ -8458,6 +9258,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Unhide project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Unhide project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActLckPrj] = @@ -8479,6 +9281,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Lock project edition" // Potrzebujesz tlumaczenie #elif L==9 // pt "Lock project edition" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActUnlPrj] = @@ -8500,6 +9304,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Unlock project edition" // Potrzebujesz tlumaczenie #elif L==9 // pt "Unlock project edition" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqAddStdPrj] = @@ -8521,6 +9327,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request registering a student in a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request registering a student in a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqAddTutPrj] = @@ -8542,6 +9350,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request registering a tutor in a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request registering a tutor in a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqAddEvlPrj] = @@ -8563,6 +9373,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request registering an evaluator in a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request registering an evaluator in a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAddStdPrj] = @@ -8584,6 +9396,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Register a student in a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Register a student in a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAddTutPrj] = @@ -8605,6 +9419,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Register a tutor in a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Register a tutor in a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAddEvlPrj] = @@ -8626,6 +9442,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Register an evaluator in a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Register an evaluator in a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemStdPrj] = @@ -8647,6 +9465,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removing a student from a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removing a student from a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemTutPrj] = @@ -8668,6 +9488,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removing a tutor from a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removing a tutor from a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemEvlPrj] = @@ -8689,6 +9511,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removing an evaluator from a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removing an evaluator from a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemStdPrj] = @@ -8710,6 +9534,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Eliminar estudiante de un proyecto" // Potrzebujesz tlumaczenie #elif L==9 // pt "Eliminar estudiante de un proyecto" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemTutPrj] = @@ -8731,6 +9557,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove tutor from a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove tutor from a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemEvlPrj] = @@ -8752,6 +9580,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove evaluator from a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove evaluator from a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAdmDocPrj] = @@ -8773,6 +9603,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Manage the documents of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Manage the documents of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemFilDocPrj] = @@ -8794,6 +9626,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of file from documents zone of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of file from documents zone of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFilDocPrj] = @@ -8815,6 +9649,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove file from documents zone of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove file from documents zone of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFolDocPrj] = @@ -8836,6 +9672,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove empty folder from documents zone of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove empty folder from documents zone of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCopDocPrj] = @@ -8857,6 +9695,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Set source of copy in documents zone of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Set source of copy in documents zone of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPasDocPrj] = @@ -8878,6 +9718,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Paste folder/file into documents zone of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Paste folder/file into documents zone of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemTreDocPrj] = @@ -8899,6 +9741,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove non-empty folder from documents zone of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove non-empty folder from documents zone of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmCreDocPrj] = @@ -8920,6 +9764,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit new folder/file/link in documents zone of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit new folder/file/link in documents zone of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreFolDocPrj] = @@ -8941,6 +9787,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new folder in documents zone of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new folder in documents zone of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreLnkDocPrj] = @@ -8962,6 +9810,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new link in documents zone of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new link in documents zone of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenFolDocPrj] = @@ -8983,6 +9833,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rename folder in documents zone of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Rename folder in documents zone of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilDocPrjDZ] = @@ -9004,6 +9856,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file in documents zone of a project using Dropzone.js" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file in documents zone of a project using Dropzone.js" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilDocPrjCla] = @@ -9025,6 +9879,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file in documents zone of a project using the classic way" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file in documents zone of a project using the classic way" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActExpDocPrj] = @@ -9046,6 +9902,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Expand folder in documents zone of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Expand folder in documents zone of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActConDocPrj] = @@ -9067,6 +9925,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Contract folder in documents zone of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Contract folder in documents zone of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActZIPDocPrj] = @@ -9088,6 +9948,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Compress folder in documents zone of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Compress folder in documents zone of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDatDocPrj] = @@ -9109,6 +9971,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See file metadata in documents zone of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "See file metadata in documents zone of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgDatDocPrj] = @@ -9130,6 +9994,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change file metadata in documents zone of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change file metadata in documents zone of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDowDocPrj] = @@ -9151,6 +10017,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Download file from documents zone of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Download file from documents zone of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAdmAssPrj] = @@ -9172,6 +10040,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Manage a assessment zone of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Manage a assessment zone of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemFilAssPrj] = @@ -9193,6 +10063,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of file from assessment zone of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of file from assessment zone of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFilAssPrj] = @@ -9214,6 +10086,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove file from assessment zone of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove file from assessment zone of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFolAssPrj] = @@ -9235,6 +10109,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove empty folder from assessment zone of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove empty folder from assessment zone of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCopAssPrj] = @@ -9256,6 +10132,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Set source of copy in the assessment zone of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Set source of copy in the assessment zone of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPasAssPrj] = @@ -9277,6 +10155,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Paste folder/file into assessment zone of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Paste folder/file into assessment zone of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemTreAssPrj] = @@ -9298,6 +10178,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove non-empty folder from assessment zone of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove non-empty folder from assessment zone of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmCreAssPrj] = @@ -9319,6 +10201,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit new folder/file/link in the assessment zone of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit new folder/file/link in the assessment zone of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreFolAssPrj] = @@ -9340,6 +10224,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new folder in the assessment zone of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new folder in the assessment zone of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreLnkAssPrj] = @@ -9361,6 +10247,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new link in the assessment zone of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new link in the assessment zone of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenFolAssPrj] = @@ -9382,6 +10270,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rename folder in the assessment zone of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Rename folder in the assessment zone of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilAssPrjDZ] = @@ -9403,6 +10293,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file to the assessment zone of a project using Dropzone.js" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file to the assessment zone of a project using Dropzone.js" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilAssPrjCla] = @@ -9424,6 +10316,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Enviar a file in the assessment zone of a project using the classic way" // Potrzebujesz tlumaczenie #elif L==9 // pt "Enviar a file in the assessment zone of a project using the classic way" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActExpAssPrj] = @@ -9445,6 +10339,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Expand folder in the assessment zone of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Expand folder in the assessment zone of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActConAssPrj] = @@ -9466,6 +10362,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Contract folder in the assessment zone of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Contract folder in the assessment zone of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActZIPAssPrj] = @@ -9487,6 +10385,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Compress folder in the assessment zone of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Compress folder in the assessment zone of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDatAssPrj] = @@ -9508,6 +10408,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See file metadata in the assessment zone of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "See file metadata in the assessment zone of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgDatAssPrj] = @@ -9529,6 +10431,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change file metadata in the assessment zone of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change file metadata in the assessment zone of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDowAssPrj] = @@ -9550,6 +10454,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Download file from the assessment zone of a project" // Potrzebujesz tlumaczenie #elif L==9 // pt "Download file from the assessment zone of a project" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeOneCfe] = @@ -9571,6 +10477,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See one exam announcement" // Potrzebujesz tlumaczenie #elif L==9 // pt "See one exam announcement" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeDatCfe] = @@ -9592,6 +10500,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See exam announcements of a given date" // Potrzebujesz tlumaczenie #elif L==9 // pt "See exam announcements of a given date" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiCfe] = @@ -9613,6 +10523,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit an exam announcement" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit an exam announcement" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvCfe] = @@ -9634,6 +10546,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send an exam announcement" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send an exam announcement" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPrnCfe] = @@ -9655,6 +10569,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See an exam announcement ready to be printed" // Potrzebujesz tlumaczenie #elif L==9 // pt "See an exam announcement ready to be printed" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemCfe] = @@ -9676,6 +10592,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of an exam announcement" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of an exam announcement" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemCfe] = @@ -9697,6 +10615,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove exam announcement" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove exam announcement" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActHidCfe] = @@ -9718,6 +10638,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Hide exam announcement" // Potrzebujesz tlumaczenie #elif L==9 // pt "Hide exam announcement" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActUnhCfe] = @@ -9739,6 +10661,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Unhide exam announcement" // Potrzebujesz tlumaczenie #elif L==9 // pt "Unhide exam announcement" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiOneTstQst] = @@ -9760,6 +10684,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit a test question" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit a test question" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqImpTstQst] = @@ -9781,6 +10707,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request an XML file with test questions to import" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request an XML file with test questions to import" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActImpTstQst] = @@ -9802,6 +10730,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Import test questions from XML file" // Potrzebujesz tlumaczenie #elif L==9 // pt "Import test questions from XML file" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActLstTstQst] = @@ -9823,6 +10753,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "List test questions for edition" // Potrzebujesz tlumaczenie #elif L==9 // pt "List test questions for edition" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvTstQst] = @@ -9844,6 +10776,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create/Change test question" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create/Change test question" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemSevTstQst] = @@ -9865,6 +10799,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removing several test questions" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removing several test questions" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemSevTstQst] = @@ -9886,6 +10822,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove several test questions" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove several test questions" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemOneTstQst] = @@ -9907,6 +10845,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removing one test question" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removing one test question" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemOneTstQst] = @@ -9928,6 +10868,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove test question" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove test question" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgShfTstQst] = @@ -9949,6 +10891,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change shuffle of a test question" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change shuffle of a test question" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiTag] = @@ -9970,6 +10914,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit tags in the question bank" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit tags in the question bank" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEnaTag] = @@ -9991,6 +10937,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Enable tag in the question bank" // Potrzebujesz tlumaczenie #elif L==9 // pt "Enable tag in the question bank" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDisTag] = @@ -10012,6 +10960,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Disable tag in the question bank" // Potrzebujesz tlumaczenie #elif L==9 // pt "Disable tag in the question bank" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenTag] = @@ -10033,6 +10983,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rename tag in the question bank" // Potrzebujesz tlumaczenie #elif L==9 // pt "Rename tag in the question bank" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeTst] = @@ -10054,6 +11006,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See a test" // Potrzebujesz tlumaczenie #elif L==9 // pt "See a test" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqAssTst] = @@ -10075,6 +11029,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request assessment of a test" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request assessment of a test" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAssTst] = @@ -10096,6 +11052,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Assess a test" // Potrzebujesz tlumaczenie #elif L==9 // pt "Assess a test" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCfgTst] = @@ -10117,6 +11075,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See test configuration" // Potrzebujesz tlumaczenie #elif L==9 // pt "See test configuration" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvCfgTst] = @@ -10138,6 +11098,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change test configuration" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change test configuration" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqSeeMyTstRes] = @@ -10159,6 +11121,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request to see my test results" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request to see my test results" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeMyTstResCrs] = @@ -10180,6 +11144,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See my test results" // Potrzebujesz tlumaczenie #elif L==9 // pt "See my test results" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeOneTstResMe] = @@ -10201,6 +11167,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See one of my test results" // Potrzebujesz tlumaczenie #elif L==9 // pt "See one of my test results" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqSeeUsrTstRes] = @@ -10222,6 +11190,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request test results for several users" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request test results for several users" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeUsrTstResCrs] = @@ -10243,6 +11213,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See test results for several users" // Potrzebujesz tlumaczenie #elif L==9 // pt "See test results for several users" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeOneTstResOth] = @@ -10264,6 +11236,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See a test result for a user" // Potrzebujesz tlumaczenie #elif L==9 // pt "See a test result for a user" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeExa] = @@ -10285,6 +11259,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See exams" // Potrzebujesz tlumaczenie #elif L==9 // pt "See exams" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmNewExa] = @@ -10306,6 +11282,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request new exam" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request new exam" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiOneExa] = @@ -10327,6 +11305,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request exam edition" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request exam edition" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewExa] = @@ -10348,6 +11328,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new exam" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new exam" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgExa] = @@ -10369,6 +11351,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change exam" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change exam" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemExa] = @@ -10390,6 +11374,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request exam removal" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request exam removal" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemExa] = @@ -10411,6 +11397,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove exam" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove exam" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActHidExa] = @@ -10432,6 +11420,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Hide exam" // Potrzebujesz tlumaczenie #elif L==9 // pt "Hide exam" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActShoExa] = @@ -10453,6 +11443,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Unhide exam" // Potrzebujesz tlumaczenie #elif L==9 // pt "Unhide exam" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmNewExaSet] = @@ -10474,6 +11466,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request new exam set" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request new exam set" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewExaSet] = @@ -10495,6 +11489,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new exam set" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new exam set" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemExaSet] = @@ -10516,6 +11512,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request set of questions removal" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request set of questions removal" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemExaSet] = @@ -10537,6 +11535,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove set of questions" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove set of questions" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActUp_ExaSet] = @@ -10558,6 +11558,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Move up set of questions" // Potrzebujesz tlumaczenie #elif L==9 // pt "Move up set of questions" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDwnExaSet] = @@ -10579,6 +11581,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Move down set of questions" // Potrzebujesz tlumaczenie #elif L==9 // pt "Move down set of questions" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgTitExaSet] = @@ -10600,6 +11604,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change set of questions title" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change set of questions title" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgNumQstExaSet] = @@ -10621,6 +11627,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change number of questions from set to each exam print" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change number of questions from set to each exam print" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqAddQstExaSet] = @@ -10642,6 +11650,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request add question to exam" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request add question to exam" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActLstTstQstForSet] = @@ -10663,6 +11673,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "List test questions for exam" // Potrzebujesz tlumaczenie #elif L==9 // pt "List test questions for exam" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAddQstToExa] = @@ -10684,6 +11696,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Add question to exam" // Potrzebujesz tlumaczenie #elif L==9 // pt "Add question to exam" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemSetQst] = @@ -10705,6 +11719,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request exam question removal" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request exam question removal" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemExaQst] = @@ -10726,6 +11742,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove exam question" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove exam question" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqNewExaSes] = @@ -10747,6 +11765,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request new exam session" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request new exam session" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiOneExaSes] = @@ -10768,6 +11788,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit exam session" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit exam session" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewExaSes] = @@ -10789,6 +11811,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new exam session" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new exam session" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgExaSes] = @@ -10810,6 +11834,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change exam session" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change exam session" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemExaSes] = @@ -10831,6 +11857,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request exam session removal" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request exam session removal" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemExaSes] = @@ -10852,6 +11880,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove exam session" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove exam session" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActHidExaSes] = @@ -10873,6 +11903,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Hide exam session" // Potrzebujesz tlumaczenie #elif L==9 // pt "Hide exam session" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActUnhExaSes] = @@ -10894,6 +11926,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Unhide exam session" // Potrzebujesz tlumaczenie #elif L==9 // pt "Unhide exam session" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeExaPrn] = @@ -10915,6 +11949,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rozpocznij / wznów egzamin" #elif L==9 // pt "Iniciar / retomar exame" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAnsExaPrn] = @@ -10936,6 +11972,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Odpowiedz pytanie egzaminacyjne" #elif L==9 // pt "Responda pergunta do exame" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEndExaPrn] = @@ -10957,6 +11995,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Zakończyć egzamin" #elif L==9 // pt "Terminar exame" +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeMyExaResCrs] = @@ -10978,6 +12018,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See my exam results" // Potrzebujesz tlumaczenie #elif L==9 // pt "See my exam results" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeMyExaResExa] = @@ -10999,6 +12041,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See my results in exam" // Potrzebujesz tlumaczenie #elif L==9 // pt "See my results in exam" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeMyExaResSes] = @@ -11020,6 +12064,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See my results in exam session" // Potrzebujesz tlumaczenie #elif L==9 // pt "See my results in exam session" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeOneExaResMe] = @@ -11041,6 +12087,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See deatils of one of my exam results" // Potrzebujesz tlumaczenie #elif L==9 // pt "See deatils of one of my exam results" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqSeeUsrExaRes] = @@ -11062,6 +12110,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Select users to see all their exam results" // Potrzebujesz tlumaczenie #elif L==9 // pt "Select users to see all their exam results" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeUsrExaResCrs] = @@ -11083,6 +12133,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See all exam results of a user" // Potrzebujesz tlumaczenie #elif L==9 // pt "See all exam results of a user" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeUsrExaResExa] = @@ -11104,6 +12156,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See all results of a user in exam" // Potrzebujesz tlumaczenie #elif L==9 // pt "See all results of a user in exam" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeUsrExaResSes] = @@ -11125,6 +12179,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See all results of a user in exam session" // Potrzebujesz tlumaczenie #elif L==9 // pt "See all results of a user in exam session" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeOneExaResOth] = @@ -11146,6 +12202,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See details of one of the exam results of a user" // Potrzebujesz tlumaczenie #elif L==9 // pt "See details of one of the exam results of a user" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgVisExaRes] = @@ -11167,6 +12225,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change visibility of exam results" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change visibility of exam results" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeGam] = @@ -11188,6 +12248,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See game" // Potrzebujesz tlumaczenie #elif L==9 // pt "See game" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemMch] = @@ -11209,6 +12271,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of match" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of match" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemMch] = @@ -11230,6 +12294,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Confirm removal of match" // Potrzebujesz tlumaczenie #elif L==9 // pt "Confirm removal of match" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqNewMch] = @@ -11251,6 +12317,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request creation of new match" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request creation of new match" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewMch] = @@ -11272,6 +12340,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new match and show it in another tab" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new match and show it in another tab" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgMch] = @@ -11293,6 +12363,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change match" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change match" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActResMch] = @@ -11314,6 +12386,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Resume match showing current question in another tab" // Potrzebujesz tlumaczenie #elif L==9 // pt "Resume match showing current question in another tab" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActBckMch] = @@ -11335,6 +12409,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Go back when playing a match" // Potrzebujesz tlumaczenie #elif L==9 // pt "Go back when playing a match" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPlyPauMch] = @@ -11356,6 +12432,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Play/pause current match" // Potrzebujesz tlumaczenie #elif L==9 // pt "Play/pause current match" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFwdMch] = @@ -11377,6 +12455,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Go forward when playing a match" // Potrzebujesz tlumaczenie #elif L==9 // pt "Go forward when playing a match" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgNumColMch] = @@ -11398,6 +12478,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change number of columns when playing a match" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change number of columns when playing a match" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgVisResMchQst] = @@ -11419,6 +12501,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change visibility of question results when playing a match" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change visibility of question results when playing a match" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActMchCntDwn] = @@ -11440,6 +12524,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Start match countdown" // Potrzebujesz tlumaczenie #elif L==9 // pt "Start match countdown" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRefMchTch] = @@ -11461,6 +12547,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Refresh current question when playing a match (as teacher)" // Potrzebujesz tlumaczenie #elif L==9 // pt "Refresh current question when playing a match (as teacher)" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActJoiMch] = @@ -11482,6 +12570,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show current question when playing a match (as student)" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show current question when playing a match (as student)" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeMchAnsQstStd] = @@ -11503,6 +12593,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "View my answer to match question" // Potrzebujesz tlumaczenie #elif L==9 // pt "View my answer to match question" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemMchAnsQstStd] = @@ -11524,6 +12616,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove my answer to match question" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove my answer to match question" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAnsMchQstStd] = @@ -11545,6 +12639,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Answer match question" // Potrzebujesz tlumaczenie #elif L==9 // pt "Answer match question" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRefMchStd] = @@ -11566,6 +12662,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Refresh current question while playing a match (as student)" // Potrzebujesz tlumaczenie #elif L==9 // pt "Refresh current question while playing a match (as student)" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeMyMchResCrs] = @@ -11587,6 +12685,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See all my matches results" // Potrzebujesz tlumaczenie #elif L==9 // pt "See all my matches results" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeMyMchResGam] = @@ -11608,6 +12708,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See all my matches results in a given game" // Potrzebujesz tlumaczenie #elif L==9 // pt "See all my matches results in a given game" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeMyMchResMch] = @@ -11629,6 +12731,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See my results in a given match" // Potrzebujesz tlumaczenie #elif L==9 // pt "See my results in a given match" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeOneMchResMe] = @@ -11650,6 +12754,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See details of match result mine as student" // Potrzebujesz tlumaczenie #elif L==9 // pt "See details of match result mine as student" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqSeeUsrMchRes] = @@ -11671,6 +12777,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Select users and range of dates to see matches results" // Potrzebujesz tlumaczenie #elif L==9 // pt "Select users and range of dates to see matches results" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeUsrMchResCrs] = @@ -11692,6 +12800,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See all matches results of selected users" // Potrzebujesz tlumaczenie #elif L==9 // pt "See all matches results of selected users" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeUsrMchResGam] = @@ -11713,6 +12823,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See all matches results in a given game" // Potrzebujesz tlumaczenie #elif L==9 // pt "See all matches results in a given game" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeUsrMchResMch] = @@ -11734,6 +12846,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See results de usuario in a given match" // Potrzebujesz tlumaczenie #elif L==9 // pt "See results de usuario in a given match" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeOneMchResOth] = @@ -11755,6 +12869,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See details of match result of a user" // Potrzebujesz tlumaczenie #elif L==9 // pt "See details of match result of a user" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgVisResMchUsr] = @@ -11776,6 +12892,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change visibility of match results" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change visibility of match results" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActLstOneGam] = @@ -11797,6 +12915,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "View game and its questions" // Potrzebujesz tlumaczenie #elif L==9 // pt "View game and its questions" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmNewGam] = @@ -11818,6 +12938,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit new game" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit new game" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiOneGam] = @@ -11839,6 +12961,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit game" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit game" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewGam] = @@ -11860,6 +12984,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new game" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new game" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgGam] = @@ -11881,6 +13007,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change game" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change game" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemGam] = @@ -11902,6 +13030,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of game" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of game" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemGam] = @@ -11923,6 +13053,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove game" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove game" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActHidGam] = @@ -11944,6 +13076,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Hide game" // Potrzebujesz tlumaczenie #elif L==9 // pt "Hide game" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActShoGam] = @@ -11965,6 +13099,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show game" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show game" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAddOneGamQst] = @@ -11986,6 +13122,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Add new question to game" // Potrzebujesz tlumaczenie #elif L==9 // pt "Add new question to game" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActGamLstTstQst] = @@ -12007,6 +13145,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "List questions to add some of them to game" // Potrzebujesz tlumaczenie #elif L==9 // pt "List questions to add some of them to game" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAddTstQstToGam] = @@ -12028,6 +13168,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Add selected test questions to game" // Potrzebujesz tlumaczenie #elif L==9 // pt "Add selected test questions to game" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemGamQst] = @@ -12049,6 +13191,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of game question" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of game question" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemGamQst] = @@ -12070,6 +13214,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Confirm removal of game question" // Potrzebujesz tlumaczenie #elif L==9 // pt "Confirm removal of game question" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActUp_GamQst] = @@ -12091,6 +13237,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Move up game question" // Potrzebujesz tlumaczenie #elif L==9 // pt "Move up game question" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDwnGamQst] = @@ -12112,6 +13260,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Move down game question" // Potrzebujesz tlumaczenie #elif L==9 // pt "Move down game question" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeSvy] = @@ -12133,6 +13283,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show survey" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show survey" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAnsSvy] = @@ -12154,6 +13306,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Answer survey" // Potrzebujesz tlumaczenie #elif L==9 // pt "Answer survey" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmNewSvy] = @@ -12175,6 +13329,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit new survey" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit new survey" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiOneSvy] = @@ -12196,6 +13352,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit survey" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit survey" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewSvy] = @@ -12217,6 +13375,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new survey" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new survey" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgSvy] = @@ -12238,6 +13398,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change survey" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change survey" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemSvy] = @@ -12259,6 +13421,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of survey" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of survey" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemSvy] = @@ -12280,6 +13444,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove survey" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove survey" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRstSvy] = @@ -12301,6 +13467,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request reset of answers of survey" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request reset of answers of survey" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRstSvy] = @@ -12322,6 +13490,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Reset answers of survey" // Potrzebujesz tlumaczenie #elif L==9 // pt "Reset answers of survey" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActHidSvy] = @@ -12343,6 +13513,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Hide survey" // Potrzebujesz tlumaczenie #elif L==9 // pt "Hide survey" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActShoSvy] = @@ -12364,6 +13536,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Unhide survey" // Potrzebujesz tlumaczenie #elif L==9 // pt "Unhide survey" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiOneSvyQst] = @@ -12385,6 +13559,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit new survey question" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit new survey question" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvSvyQst] = @@ -12406,6 +13582,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create survey question" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create survey question" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemSvyQst] = @@ -12427,6 +13605,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of survey question" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of survey question" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemSvyQst] = @@ -12448,6 +13628,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Confirm removal of survey question" // Potrzebujesz tlumaczenie #elif L==9 // pt "Confirm removal of survey question" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeAdmDocIns] = @@ -12469,6 +13651,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Documents zone of institution (see or manage)" // Potrzebujesz tlumaczenie #elif L==9 // pt "Documents zone of institution (see or manage)" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAdmShaIns] = @@ -12490,6 +13674,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Manage shared files zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Manage shared files zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeAdmDocCtr] = @@ -12511,6 +13697,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Documents zone of center (see or manage)" // Potrzebujesz tlumaczenie #elif L==9 // pt "Documents zone of center (see or manage)" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAdmShaCtr] = @@ -12532,6 +13720,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Manage shared files zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Manage shared files zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeAdmDocDeg] = @@ -12553,6 +13743,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Documents zone of degree (see or manage)" // Potrzebujesz tlumaczenie #elif L==9 // pt "Documents zone of degree (see or manage)" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAdmShaDeg] = @@ -12574,6 +13766,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Manage shared files zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Manage shared files zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeAdmDocCrsGrp] = @@ -12595,6 +13789,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Documents zone of course (see or manage)" // Potrzebujesz tlumaczenie #elif L==9 // pt "Documents zone of course (see or manage)" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAdmTchCrsGrp] = @@ -12616,6 +13812,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request management of teachers' documents zone of course/group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request management of teachers' documents zone of course/group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAdmShaCrsGrp] = @@ -12637,6 +13835,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request management of shared zone of course/group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request management of shared zone of course/group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAdmAsgWrkUsr] = @@ -12658,6 +13858,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Manage the assignments/works of user" // Potrzebujesz tlumaczenie #elif L==9 // pt "Manage the assignments/works of user" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqAsgWrkCrs] = @@ -12679,6 +13881,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Manage assignments/works in course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Manage assignments/works in course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeAdmMrk] = @@ -12700,6 +13904,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Marks zone (see or manage)" // Potrzebujesz tlumaczenie #elif L==9 // pt "Marks zone (see or manage)" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAdmBrf] = @@ -12721,6 +13927,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Manage briefcase" // Potrzebujesz tlumaczenie #elif L==9 // pt "Manage briefcase" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgToSeeDocIns] = @@ -12742,6 +13950,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change documents zone of institution to view mode" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change documents zone of institution to view mode" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeDocIns] = @@ -12763,6 +13973,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See documents zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "See documents zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActExpSeeDocIns] = @@ -12784,6 +13996,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Expand folder in institution documents" // Potrzebujesz tlumaczenie #elif L==9 // pt "Expand folder in institution documents" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActConSeeDocIns] = @@ -12805,6 +14019,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Contract folder in institution documents" // Potrzebujesz tlumaczenie #elif L==9 // pt "Contract folder in institution documents" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActZIPSeeDocIns] = @@ -12826,6 +14042,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Compress folder in institution documents" // Potrzebujesz tlumaczenie #elif L==9 // pt "Compress folder in institution documents" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDatSeeDocIns] = @@ -12847,6 +14065,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See file metadata in documents zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "See file metadata in documents zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDowSeeDocIns] = @@ -12868,6 +14088,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Download file from documents zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Download file from documents zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgToAdmDocIns] = @@ -12889,6 +14111,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change to administration mode of institution documents" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change to administration mode of institution documents" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAdmDocIns] = @@ -12910,6 +14134,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Manage documents zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Manage documents zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemFilDocIns] = @@ -12931,6 +14157,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of file in documents zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of file in documents zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFilDocIns] = @@ -12952,6 +14180,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove file in documents zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove file in documents zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFolDocIns] = @@ -12973,6 +14203,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove empty folder documents zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove empty folder documents zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCopDocIns] = @@ -12994,6 +14226,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Set source of copy in documents zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Set source of copy in documents zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPasDocIns] = @@ -13015,6 +14249,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Paste folder/file in documents zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Paste folder/file in documents zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemTreDocIns] = @@ -13036,6 +14272,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove non-empty folder from documents zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove non-empty folder from documents zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmCreDocIns] = @@ -13057,6 +14295,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Form to create folder/file in documents zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Form to create folder/file in documents zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreFolDocIns] = @@ -13078,6 +14318,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new folder in documents zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new folder in documents zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreLnkDocIns] = @@ -13099,6 +14341,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new link in documents zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new link in documents zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenFolDocIns] = @@ -13120,6 +14364,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rename folder in documents zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Rename folder in documents zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilDocInsDZ] = @@ -13141,6 +14387,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file to documents zone of institution using Dropzone.js" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file to documents zone of institution using Dropzone.js" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilDocInsCla] = @@ -13162,6 +14410,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file in documents zone of institution using the classic way" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file in documents zone of institution using the classic way" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActExpAdmDocIns] = @@ -13183,6 +14433,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Expand folder when managing documents zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Expand folder when managing documents zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActConAdmDocIns] = @@ -13204,6 +14456,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Contract folder when managing documents zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Contract folder when managing documents zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActZIPAdmDocIns] = @@ -13225,6 +14479,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Compress folder when managing documents zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Compress folder when managing documents zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActShoDocIns] = @@ -13246,6 +14502,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Unhide folder/file of documents zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Unhide folder/file of documents zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActHidDocIns] = @@ -13267,6 +14525,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Hide folder/file of documents zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Hide folder/file of documents zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDatAdmDocIns] = @@ -13288,6 +14548,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See file metadata in documents zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "See file metadata in documents zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgDatAdmDocIns] = @@ -13309,6 +14571,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change file metadata in documents zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change file metadata in documents zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDowAdmDocIns] = @@ -13330,6 +14594,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Download file from documents zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Download file from documents zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemFilShaIns] = @@ -13351,6 +14617,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of file in shared zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of file in shared zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFilShaIns] = @@ -13372,6 +14640,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove file from shared zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove file from shared zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFolShaIns] = @@ -13393,6 +14663,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove empty folder from shared zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove empty folder from shared zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCopShaIns] = @@ -13414,6 +14686,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Set source of copy in shared zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Set source of copy in shared zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPasShaIns] = @@ -13435,6 +14709,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Paste folder/file in shared zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Paste folder/file in shared zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemTreShaIns] = @@ -13456,6 +14732,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove non-empty folder from shared zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove non-empty folder from shared zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmCreShaIns] = @@ -13477,6 +14755,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Form to create folder/file in shared zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Form to create folder/file in shared zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreFolShaIns] = @@ -13498,6 +14778,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new folder in shared zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new folder in shared zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreLnkShaIns] = @@ -13519,6 +14801,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new link in shared zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new link in shared zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenFolShaIns] = @@ -13540,6 +14824,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rename folder in shared zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Rename folder in shared zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilShaInsDZ] = @@ -13561,6 +14847,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file to shared zone of institution using Dropzone.js" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file to shared zone of institution using Dropzone.js" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilShaInsCla] = @@ -13582,6 +14870,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file to shared zone of institution using the classic way" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file to shared zone of institution using the classic way" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActExpShaIns] = @@ -13603,6 +14893,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Expand folder in shared zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Expand folder in shared zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActConShaIns] = @@ -13624,6 +14916,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Contract folder in shared zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Contract folder in shared zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActZIPShaIns] = @@ -13645,6 +14939,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Compress folder in shared zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Compress folder in shared zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDatShaIns] = @@ -13666,6 +14962,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See file metadata in shared zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "See file metadata in shared zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgDatShaIns] = @@ -13687,6 +14985,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change file metadata in shared zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change file metadata in shared zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDowShaIns] = @@ -13708,6 +15008,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Download file from shared zone of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Download file from shared zone of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgToSeeDocCtr] = @@ -13729,6 +15031,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change documents zone of center to view mode" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change documents zone of center to view mode" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeDocCtr] = @@ -13750,6 +15054,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See files of documents zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "See files of documents zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActExpSeeDocCtr] = @@ -13771,6 +15077,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Expand folder in documents zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Expand folder in documents zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActConSeeDocCtr] = @@ -13792,6 +15100,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Contract folder in documents zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Contract folder in documents zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActZIPSeeDocCtr] = @@ -13813,6 +15123,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Compress folder in documents zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Compress folder in documents zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDatSeeDocCtr] = @@ -13834,6 +15146,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See file metadata in documents zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "See file metadata in documents zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDowSeeDocCtr] = @@ -13855,6 +15169,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Download file from documents zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Download file from documents zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgToAdmDocCtr] = @@ -13876,6 +15192,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change documents zone of center to management mode" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change documents zone of center to management mode" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAdmDocCtr] = @@ -13897,6 +15215,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Manage documents zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Manage documents zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemFilDocCtr] = @@ -13918,6 +15238,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of file from documents zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of file from documents zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFilDocCtr] = @@ -13939,6 +15261,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove file from documents zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove file from documents zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFolDocCtr] = @@ -13960,6 +15284,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove empty folder documents zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove empty folder documents zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCopDocCtr] = @@ -13981,6 +15307,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Set source of copy in documents zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Set source of copy in documents zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPasDocCtr] = @@ -14002,6 +15330,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Paste folder/file in documents zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Paste folder/file in documents zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemTreDocCtr] = @@ -14023,6 +15353,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove non-empty folder from documents zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove non-empty folder from documents zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmCreDocCtr] = @@ -14044,6 +15376,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit new folder/file/link in documents zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit new folder/file/link in documents zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreFolDocCtr] = @@ -14065,6 +15399,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new folder in documents zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new folder in documents zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreLnkDocCtr] = @@ -14086,6 +15422,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new link in documents zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new link in documents zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenFolDocCtr] = @@ -14107,6 +15445,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rename folder in documents zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Rename folder in documents zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilDocCtrDZ] = @@ -14128,6 +15468,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file to documents zone of center using Dropzone.js" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file to documents zone of center using Dropzone.js" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilDocCtrCla] = @@ -14149,6 +15491,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file to documents zone of center using the classic way" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file to documents zone of center using the classic way" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActExpAdmDocCtr] = @@ -14170,6 +15514,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Expand folder when managing documents zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Expand folder when managing documents zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActConAdmDocCtr] = @@ -14191,6 +15537,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Contract folder when managing documents zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Contract folder when managing documents zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActZIPAdmDocCtr] = @@ -14212,6 +15560,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Compress folder when managing documents zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Compress folder when managing documents zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActShoDocCtr] = @@ -14233,6 +15583,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Unhide folder/file of documents zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Unhide folder/file of documents zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActHidDocCtr] = @@ -14254,6 +15606,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Hide folder/file of documents zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Hide folder/file of documents zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDatAdmDocCtr] = @@ -14275,6 +15629,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See file metadata in documents zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "See file metadata in documents zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgDatAdmDocCtr] = @@ -14296,6 +15652,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change file metadata in documents zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change file metadata in documents zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDowAdmDocCtr] = @@ -14317,6 +15675,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Download file from documents zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Download file from documents zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemFilShaCtr] = @@ -14338,6 +15698,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of shared file of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of shared file of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFilShaCtr] = @@ -14359,6 +15721,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove shared file of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove shared file of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFolShaCtr] = @@ -14380,6 +15744,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove empty folder from shared zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove empty folder from shared zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCopShaCtr] = @@ -14401,6 +15767,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Set source of copy in shared zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Set source of copy in shared zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPasShaCtr] = @@ -14422,6 +15790,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Paste folder/file in shared zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Paste folder/file in shared zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemTreShaCtr] = @@ -14443,6 +15813,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove non-empty folder from shared zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove non-empty folder from shared zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmCreShaCtr] = @@ -14464,6 +15836,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit new folder/file/link in shared zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit new folder/file/link in shared zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreFolShaCtr] = @@ -14485,6 +15859,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new folder in shared zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new folder in shared zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreLnkShaCtr] = @@ -14506,6 +15882,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new link in shared zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new link in shared zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenFolShaCtr] = @@ -14527,6 +15905,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rename folder in shared zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Rename folder in shared zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilShaCtrDZ] = @@ -14548,6 +15928,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file to shared zone of center using Dropzone.js" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file to shared zone of center using Dropzone.js" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilShaCtrCla] = @@ -14569,6 +15951,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file to shared zone of center using the classic way" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file to shared zone of center using the classic way" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActExpShaCtr] = @@ -14590,6 +15974,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Expand folder in shared zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Expand folder in shared zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActConShaCtr] = @@ -14611,6 +15997,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Contract folder in shared zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Contract folder in shared zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActZIPShaCtr] = @@ -14632,6 +16020,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Compress folder in shared zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Compress folder in shared zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDatShaCtr] = @@ -14653,6 +16043,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See file metadata in shared zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "See file metadata in shared zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgDatShaCtr] = @@ -14674,6 +16066,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change file metadata in shared zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change file metadata in shared zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDowShaCtr] = @@ -14695,6 +16089,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Download file from shared zone of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Download file from shared zone of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgToSeeDocDeg] = @@ -14716,6 +16112,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change documents zone of degree to view mode" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change documents zone of degree to view mode" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeDocDeg] = @@ -14737,6 +16135,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See documents zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "See documents zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActExpSeeDocDeg] = @@ -14758,6 +16158,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Expand folder in documents zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Expand folder in documents zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActConSeeDocDeg] = @@ -14779,6 +16181,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Contract folder in documents zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Contract folder in documents zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActZIPSeeDocDeg] = @@ -14800,6 +16204,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Compress folder in documents zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Compress folder in documents zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDatSeeDocDeg] = @@ -14821,6 +16227,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See file metadata in documents zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "See file metadata in documents zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDowSeeDocDeg] = @@ -14842,6 +16250,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Download file from documents zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Download file from documents zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgToAdmDocDeg] = @@ -14863,6 +16273,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change documents zone of degree to management mode" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change documents zone of degree to management mode" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAdmDocDeg] = @@ -14884,6 +16296,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Manage documents zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Manage documents zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemFilDocDeg] = @@ -14905,6 +16319,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of file from documents zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of file from documents zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFilDocDeg] = @@ -14926,6 +16342,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove file from documents zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove file from documents zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFolDocDeg] = @@ -14947,6 +16365,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove empty folder from documents zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove empty folder from documents zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCopDocDeg] = @@ -14968,6 +16388,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Set source of copy in documents zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Set source of copy in documents zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPasDocDeg] = @@ -14989,6 +16411,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Paste folder/file in documents zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Paste folder/file in documents zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemTreDocDeg] = @@ -15010,6 +16434,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove non-empty folder from documents zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove non-empty folder from documents zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmCreDocDeg] = @@ -15031,6 +16457,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit new folder/file/link in documents zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit new folder/file/link in documents zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreFolDocDeg] = @@ -15052,6 +16480,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new folder in documents zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new folder in documents zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreLnkDocDeg] = @@ -15073,6 +16503,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new link in documents zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new link in documents zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenFolDocDeg] = @@ -15094,6 +16526,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rename folder in documents zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Rename folder in documents zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilDocDegDZ] = @@ -15115,6 +16549,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file to documents zone of degree using Dropzone.js" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file to documents zone of degree using Dropzone.js" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilDocDegCla] = @@ -15136,6 +16572,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file to documents zone of degree using the classic way" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file to documents zone of degree using the classic way" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActExpAdmDocDeg] = @@ -15157,6 +16595,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Expand folder when managing documents zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Expand folder when managing documents zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActConAdmDocDeg] = @@ -15178,6 +16618,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Contract folder when managing documents zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Contract folder when managing documents zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActZIPAdmDocDeg] = @@ -15199,6 +16641,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Compress folder when mamaging documents zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Compress folder when mamaging documents zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActShoDocDeg] = @@ -15220,6 +16664,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Unhide folder/file in documents zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Unhide folder/file in documents zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActHidDocDeg] = @@ -15241,6 +16687,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Hide folder/file in documents zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Hide folder/file in documents zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDatAdmDocDeg] = @@ -15262,6 +16710,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See file metadata in documents zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "See file metadata in documents zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgDatAdmDocDeg] = @@ -15283,6 +16733,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change file metadata in documents zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change file metadata in documents zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDowAdmDocDeg] = @@ -15304,6 +16756,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Download file from documents zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Download file from documents zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemFilShaDeg] = @@ -15325,6 +16779,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of file from shared zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of file from shared zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFilShaDeg] = @@ -15346,6 +16802,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove shared file from shared zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove shared file from shared zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFolShaDeg] = @@ -15367,6 +16825,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove empty folder from shared zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove empty folder from shared zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCopShaDeg] = @@ -15388,6 +16848,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Set source of copy in shared zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Set source of copy in shared zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPasShaDeg] = @@ -15409,6 +16871,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Paste folder/file in shared zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Paste folder/file in shared zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemTreShaDeg] = @@ -15430,6 +16894,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove non-empty folder from shared zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove non-empty folder from shared zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmCreShaDeg] = @@ -15451,6 +16917,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit new folder/file/link in shared zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit new folder/file/link in shared zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreFolShaDeg] = @@ -15472,6 +16940,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new folder in shared zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new folder in shared zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreLnkShaDeg] = @@ -15493,6 +16963,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new link in shared zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new link in shared zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenFolShaDeg] = @@ -15514,6 +16986,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rename folder in shared zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Rename folder in shared zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilShaDegDZ] = @@ -15535,6 +17009,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file to shared zone of degree using Dropzone.js" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file to shared zone of degree using Dropzone.js" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilShaDegCla] = @@ -15556,6 +17032,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file in shared zone of degree using the classic way" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file in shared zone of degree using the classic way" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActExpShaDeg] = @@ -15577,6 +17055,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Expand folder in shared zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Expand folder in shared zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActConShaDeg] = @@ -15598,6 +17078,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Contract folder in shared zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Contract folder in shared zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActZIPShaDeg] = @@ -15619,6 +17101,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Compress folder in shared zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Compress folder in shared zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDatShaDeg] = @@ -15640,6 +17124,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See file metadata in shared zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "See file metadata in shared zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgDatShaDeg] = @@ -15661,6 +17147,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change file metadata in shared zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change file metadata in shared zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDowShaDeg] = @@ -15682,6 +17170,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Download file from shared zone of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Download file from shared zone of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgToSeeDocCrs] = @@ -15703,6 +17193,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change documents zone of course/group to view mode" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change documents zone of course/group to view mode" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeDocCrs] = @@ -15724,6 +17216,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See the files of documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "See the files of documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActExpSeeDocCrs] = @@ -15745,6 +17239,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Expand folder in documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Expand folder in documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActConSeeDocCrs] = @@ -15766,6 +17262,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Contract folder in documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Contract folder in documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActZIPSeeDocCrs] = @@ -15787,6 +17285,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Compress folder in documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Compress folder in documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDatSeeDocCrs] = @@ -15808,6 +17308,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See file metadata in documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "See file metadata in documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDowSeeDocCrs] = @@ -15829,6 +17331,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Download file from documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Download file from documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeDocGrp] = @@ -15850,6 +17354,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See files of documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "See files of documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActExpSeeDocGrp] = @@ -15871,6 +17377,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Expand folder in documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Expand folder in documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActConSeeDocGrp] = @@ -15892,6 +17400,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Contract folder in documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Contract folder in documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActZIPSeeDocGrp] = @@ -15913,6 +17423,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Compress folder in documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Compress folder in documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDatSeeDocGrp] = @@ -15934,6 +17446,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See file metadata in documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "See file metadata in documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDowSeeDocGrp] = @@ -15955,6 +17469,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Download file from documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Download file from documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgToAdmDocCrs] = @@ -15976,6 +17492,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change documents zone of course/group to management mode" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change documents zone of course/group to management mode" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAdmDocCrs] = @@ -15997,6 +17515,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Manage documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Manage documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemFilDocCrs] = @@ -16018,6 +17538,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of file in documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of file in documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFilDocCrs] = @@ -16039,6 +17561,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove file in documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove file in documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFolDocCrs] = @@ -16060,6 +17584,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove empty folder from documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove empty folder from documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCopDocCrs] = @@ -16081,6 +17607,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Set source of copy in documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Set source of copy in documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPasDocCrs] = @@ -16102,6 +17630,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Paste folder/file in documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Paste folder/file in documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemTreDocCrs] = @@ -16123,6 +17653,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove non-empty folder from documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove non-empty folder from documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmCreDocCrs] = @@ -16144,6 +17676,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit new folder/file/link in documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit new folder/file/link in documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreFolDocCrs] = @@ -16165,6 +17699,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new folder in documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new folder in documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreLnkDocCrs] = @@ -16186,6 +17722,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new link in documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new link in documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenFolDocCrs] = @@ -16207,6 +17745,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rename folder in documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Rename folder in documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilDocCrsDZ] = @@ -16228,6 +17768,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file to documents zone of course using Dropzone.js" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file to documents zone of course using Dropzone.js" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilDocCrsCla] = @@ -16249,6 +17791,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file in documents zone of course using the classic way" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file in documents zone of course using the classic way" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActExpAdmDocCrs] = @@ -16270,6 +17814,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Expand folder when managing documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Expand folder when managing documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActConAdmDocCrs] = @@ -16291,6 +17837,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Contract folder when managing documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Contract folder when managing documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActZIPAdmDocCrs] = @@ -16312,6 +17860,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Compress folder when managing documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Compress folder when managing documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActShoDocCrs] = @@ -16333,6 +17883,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Unhide folder/file in documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Unhide folder/file in documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActHidDocCrs] = @@ -16354,6 +17906,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Hide folder/file in documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Hide folder/file in documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDatAdmDocCrs] = @@ -16375,6 +17929,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See file metadata in documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "See file metadata in documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgDatAdmDocCrs] = @@ -16396,6 +17952,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change file metadata in documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change file metadata in documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDowAdmDocCrs] = @@ -16417,6 +17975,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Download file from documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Download file from documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAdmDocGrp] = @@ -16438,6 +17998,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Manage documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Manage documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemFilDocGrp] = @@ -16459,6 +18021,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of file from documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of file from documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFilDocGrp] = @@ -16480,6 +18044,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove file from documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove file from documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFolDocGrp] = @@ -16501,6 +18067,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove empty folder from documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove empty folder from documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCopDocGrp] = @@ -16522,6 +18090,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Set source of copy in documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Set source of copy in documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPasDocGrp] = @@ -16543,6 +18113,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Paste folder/file in documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Paste folder/file in documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemTreDocGrp] = @@ -16564,6 +18136,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove non-empty folder from documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove non-empty folder from documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmCreDocGrp] = @@ -16585,6 +18159,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit new folder/file/link in documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit new folder/file/link in documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreFolDocGrp] = @@ -16606,6 +18182,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new folder in documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new folder in documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreLnkDocGrp] = @@ -16627,6 +18205,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new link in documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new link in documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenFolDocGrp] = @@ -16648,6 +18228,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rename folder in documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Rename folder in documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilDocGrpDZ] = @@ -16669,6 +18251,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file to documents zone of group using Dropzone.js" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file to documents zone of group using Dropzone.js" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilDocGrpCla] = @@ -16690,6 +18274,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file to documents zone of group using the classic way" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file to documents zone of group using the classic way" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActExpAdmDocGrp] = @@ -16711,6 +18297,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Expand folder when managing documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Expand folder when managing documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActConAdmDocGrp] = @@ -16732,6 +18320,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Contract folder when mamaging documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Contract folder when mamaging documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActZIPAdmDocGrp] = @@ -16753,6 +18343,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Compress folder when managing documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Compress folder when managing documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActShoDocGrp] = @@ -16774,6 +18366,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Unhide folder/file in documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Unhide folder/file in documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActHidDocGrp] = @@ -16795,6 +18389,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Hide folder/file in documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Hide folder/file in documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDatAdmDocGrp] = @@ -16816,6 +18412,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See file metadata in documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "See file metadata in documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgDatAdmDocGrp] = @@ -16837,6 +18435,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change file metadata in documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change file metadata in documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDowAdmDocGrp] = @@ -16858,6 +18458,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Download file from documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Download file from documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgToAdmTch] = @@ -16879,6 +18481,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change teachers' documents zone of course/group to management mode" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change teachers' documents zone of course/group to management mode" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAdmTchCrs] = @@ -16900,6 +18504,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Manage teachers' documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Manage teachers' documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemFilTchCrs] = @@ -16921,6 +18527,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of file from teachers' documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of file from teachers' documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFilTchCrs] = @@ -16942,6 +18550,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove file from teachers' documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove file from teachers' documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFolTchCrs] = @@ -16963,6 +18573,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove empty folder from teachers' documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove empty folder from teachers' documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCopTchCrs] = @@ -16984,6 +18596,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Set source of copy in teachers' documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Set source of copy in teachers' documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPasTchCrs] = @@ -17005,6 +18619,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Paste folder/file in teachers' documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Paste folder/file in teachers' documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemTreTchCrs] = @@ -17026,6 +18642,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove non-empty folder from teachers' documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove non-empty folder from teachers' documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmCreTchCrs] = @@ -17047,6 +18665,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit new folder/file/link in teachers' documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit new folder/file/link in teachers' documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreFolTchCrs] = @@ -17068,6 +18688,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new folder in teachers' documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new folder in teachers' documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreLnkTchCrs] = @@ -17089,6 +18711,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new link in teachers' documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new link in teachers' documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenFolTchCrs] = @@ -17110,6 +18734,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rename folder in teachers' documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Rename folder in teachers' documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilTchCrsDZ] = @@ -17131,6 +18757,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file to teachers' documents zone of course using Dropzone.js" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file to teachers' documents zone of course using Dropzone.js" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilTchCrsCla] = @@ -17152,6 +18780,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file to teachers' documents zone of course using the classic way" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file to teachers' documents zone of course using the classic way" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActExpTchCrs] = @@ -17173,6 +18803,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Expand folder in teachers' documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Expand folder in teachers' documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActConTchCrs] = @@ -17194,6 +18826,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Contract folder in teachers' documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Contract folder in teachers' documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActZIPTchCrs] = @@ -17215,6 +18849,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Compress folder in teachers' documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Compress folder in teachers' documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDatTchCrs] = @@ -17236,6 +18872,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See file metadata in teachers' documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "See file metadata in teachers' documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgDatTchCrs] = @@ -17257,6 +18895,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change file metadata in teachers' documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change file metadata in teachers' documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDowTchCrs] = @@ -17278,6 +18918,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Download file from teachers' documents zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Download file from teachers' documents zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAdmTchGrp] = @@ -17299,6 +18941,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Manage teachers' documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Manage teachers' documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemFilTchGrp] = @@ -17320,6 +18964,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of file from teachers' documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of file from teachers' documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFilTchGrp] = @@ -17341,6 +18987,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove file from teachers' documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove file from teachers' documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFolTchGrp] = @@ -17362,6 +19010,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove empty folder of teachers' documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove empty folder of teachers' documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCopTchGrp] = @@ -17383,6 +19033,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Set source of copy in teachers' documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Set source of copy in teachers' documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPasTchGrp] = @@ -17404,6 +19056,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Paste folder/file in teachers' documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Paste folder/file in teachers' documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemTreTchGrp] = @@ -17425,6 +19079,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove non-empty folder of teachers' documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove non-empty folder of teachers' documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmCreTchGrp] = @@ -17446,6 +19102,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit new folder/file/link in teachers' documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit new folder/file/link in teachers' documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreFolTchGrp] = @@ -17467,6 +19125,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new folder in teachers' documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new folder in teachers' documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreLnkTchGrp] = @@ -17488,6 +19148,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new link in teachers' documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new link in teachers' documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenFolTchGrp] = @@ -17509,6 +19171,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rename folder in teachers' documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Rename folder in teachers' documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilTchGrpDZ] = @@ -17530,6 +19194,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file to teachers' documents zone of group using Dropzone.js" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file to teachers' documents zone of group using Dropzone.js" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilTchGrpCla] = @@ -17551,6 +19217,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file in teachers' documents zone of group using the classic way" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file in teachers' documents zone of group using the classic way" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActExpTchGrp] = @@ -17572,6 +19240,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Expand folder in teachers' documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Expand folder in teachers' documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActConTchGrp] = @@ -17593,6 +19263,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Contract folder in teachers' documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Contract folder in teachers' documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActZIPTchGrp] = @@ -17614,6 +19286,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Compress folder in teachers' documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Compress folder in teachers' documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDatTchGrp] = @@ -17635,6 +19309,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See file metadata in teachers' documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "See file metadata in teachers' documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgDatTchGrp] = @@ -17656,6 +19332,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change file metadata in teachers' documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change file metadata in teachers' documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDowTchGrp] = @@ -17677,6 +19355,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Download file from teachers' documents zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Download file from teachers' documents zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgToAdmSha] = @@ -17698,6 +19378,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change shared files zone of course/group to management mode" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change shared files zone of course/group to management mode" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAdmShaCrs] = @@ -17719,6 +19401,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Manage shared files zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Manage shared files zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemFilShaCrs] = @@ -17740,6 +19424,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of a shared file of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of a shared file of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFilShaCrs] = @@ -17761,6 +19447,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove file from shared files zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove file from shared files zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFolShaCrs] = @@ -17782,6 +19470,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove empty folder from shared files zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove empty folder from shared files zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCopShaCrs] = @@ -17803,6 +19493,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Set source of copy in shared files zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Set source of copy in shared files zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPasShaCrs] = @@ -17824,6 +19516,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Paste folder/file in shared files zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Paste folder/file in shared files zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemTreShaCrs] = @@ -17845,6 +19539,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove non-empty folder from shared files zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove non-empty folder from shared files zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmCreShaCrs] = @@ -17866,6 +19562,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit new folder/file/link in shared files zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit new folder/file/link in shared files zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreFolShaCrs] = @@ -17887,6 +19585,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new folder in shared files zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new folder in shared files zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreLnkShaCrs] = @@ -17908,6 +19608,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new link in shared files zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new link in shared files zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenFolShaCrs] = @@ -17929,6 +19631,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rename folder in shared files zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Rename folder in shared files zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilShaCrsDZ] = @@ -17950,6 +19654,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file to shared files zone of course using Dropzone.js" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file to shared files zone of course using Dropzone.js" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilShaCrsCla] = @@ -17971,6 +19677,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file to shared files zone of course using the classic way" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file to shared files zone of course using the classic way" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActExpShaCrs] = @@ -17992,6 +19700,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Expand folder in shared files zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Expand folder in shared files zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActConShaCrs] = @@ -18013,6 +19723,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Contract folder in shared files zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Contract folder in shared files zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActZIPShaCrs] = @@ -18034,6 +19746,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Compress folder in shared files zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Compress folder in shared files zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDatShaCrs] = @@ -18055,6 +19769,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See file metadata in shared files zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "See file metadata in shared files zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgDatShaCrs] = @@ -18076,6 +19792,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change file metadata in shared files zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change file metadata in shared files zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDowShaCrs] = @@ -18097,6 +19815,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Download file from shared files zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Download file from shared files zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAdmShaGrp] = @@ -18118,6 +19838,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Manage shared files zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Manage shared files zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemFilShaGrp] = @@ -18139,6 +19861,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of file from shared files zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of file from shared files zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFilShaGrp] = @@ -18160,6 +19884,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove file from shared files zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove file from shared files zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFolShaGrp] = @@ -18181,6 +19907,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove empty folder from shared files zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove empty folder from shared files zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCopShaGrp] = @@ -18202,6 +19930,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Set source of copy in shared files zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Set source of copy in shared files zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPasShaGrp] = @@ -18223,6 +19953,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Paste folder/file in shared files zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Paste folder/file in shared files zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemTreShaGrp] = @@ -18244,6 +19976,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove non-empty folder from shared files zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove non-empty folder from shared files zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmCreShaGrp] = @@ -18265,6 +19999,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit new folder/file/link in shared zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit new folder/file/link in shared zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreFolShaGrp] = @@ -18286,6 +20022,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new folder in shared files zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new folder in shared files zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreLnkShaGrp] = @@ -18307,6 +20045,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new link in shared files zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new link in shared files zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenFolShaGrp] = @@ -18328,6 +20068,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rename folder in shared zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Rename folder in shared zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilShaGrpDZ] = @@ -18349,6 +20091,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file to shared files zone of group using Dropzone.js" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file to shared files zone of group using Dropzone.js" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilShaGrpCla] = @@ -18370,6 +20114,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file to shared files zone of group using the classic way" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file to shared files zone of group using the classic way" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActExpShaGrp] = @@ -18391,6 +20137,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Expand folder in shared files zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Expand folder in shared files zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActConShaGrp] = @@ -18412,6 +20160,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Contract folder in shared files zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Contract folder in shared files zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActZIPShaGrp] = @@ -18433,6 +20183,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Compress folder in shared files zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Compress folder in shared files zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDatShaGrp] = @@ -18454,6 +20206,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See file metadata in shared files zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "See file metadata in shared files zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgDatShaGrp] = @@ -18475,6 +20229,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change file metadata in shared files zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change file metadata in shared files zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDowShaGrp] = @@ -18496,6 +20252,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Download file from shared files zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Download file from shared files zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAdmAsgWrkCrs] = @@ -18517,6 +20275,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Manage all assignments/works in course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Manage all assignments/works in course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemFilAsgUsr] = @@ -18538,6 +20298,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of file from user's assignments" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of file from user's assignments" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFilAsgUsr] = @@ -18559,6 +20321,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove file from user's assignments" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove file from user's assignments" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFolAsgUsr] = @@ -18580,6 +20344,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove empty folder from user's assignments" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove empty folder from user's assignments" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCopAsgUsr] = @@ -18601,6 +20367,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Set origin of copy in user's assignments" // Potrzebujesz tlumaczenie #elif L==9 // pt "Set origin of copy in user's assignments" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPasAsgUsr] = @@ -18622,6 +20390,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Paste folder/file in user's assignments" // Potrzebujesz tlumaczenie #elif L==9 // pt "Paste folder/file in user's assignments" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemTreAsgUsr] = @@ -18643,6 +20413,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove non-empty folder of user's assignments" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove non-empty folder of user's assignments" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmCreAsgUsr] = @@ -18664,6 +20436,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit new folder/file/link in user's assignments" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit new folder/file/link in user's assignments" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreFolAsgUsr] = @@ -18685,6 +20459,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new folder in user's assignments" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new folder in user's assignments" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreLnkAsgUsr] = @@ -18706,6 +20482,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new link in user's assignments" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new link in user's assignments" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenFolAsgUsr] = @@ -18727,6 +20505,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rename folder in user's assignments" // Potrzebujesz tlumaczenie #elif L==9 // pt "Rename folder in user's assignments" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilAsgUsrDZ] = @@ -18748,6 +20528,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send new file to user's assignments using Dropzone.js" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send new file to user's assignments using Dropzone.js" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilAsgUsrCla] = @@ -18769,6 +20551,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send new file to user's assignments using the classic way" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send new file to user's assignments using the classic way" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActExpAsgUsr] = @@ -18790,6 +20574,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Expand folder in user's assignments" // Potrzebujesz tlumaczenie #elif L==9 // pt "Expand folder in user's assignments" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActConAsgUsr] = @@ -18811,6 +20597,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Contract folder in user's assignments" // Potrzebujesz tlumaczenie #elif L==9 // pt "Contract folder in user's assignments" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActZIPAsgUsr] = @@ -18832,6 +20620,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Compress folder in user's assignments" // Potrzebujesz tlumaczenie #elif L==9 // pt "Compress folder in user's assignments" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDatAsgUsr] = @@ -18853,6 +20643,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See file metadata in user's assignments" // Potrzebujesz tlumaczenie #elif L==9 // pt "See file metadata in user's assignments" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgDatAsgUsr] = @@ -18874,6 +20666,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change file metadata in user's assignments" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change file metadata in user's assignments" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDowAsgUsr] = @@ -18895,6 +20689,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Download file from user's assignments" // Potrzebujesz tlumaczenie #elif L==9 // pt "Download file from user's assignments" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemFilWrkUsr] = @@ -18916,6 +20712,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of file from user's works" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of file from user's works" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFilWrkUsr] = @@ -18937,6 +20735,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove file from user's works" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove file from user's works" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFolWrkUsr] = @@ -18958,6 +20758,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove empty folder from user's works" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove empty folder from user's works" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCopWrkUsr] = @@ -18979,6 +20781,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Set origin of copy in user's works" // Potrzebujesz tlumaczenie #elif L==9 // pt "Set origin of copy in user's works" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPasWrkUsr] = @@ -19000,6 +20804,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Paste folder/file in user's works" // Potrzebujesz tlumaczenie #elif L==9 // pt "Paste folder/file in user's works" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemTreWrkUsr] = @@ -19021,6 +20827,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove non-empty folder from user's works" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove non-empty folder from user's works" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmCreWrkUsr] = @@ -19042,6 +20850,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit new folder/file/link in user's works" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit new folder/file/link in user's works" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreFolWrkUsr] = @@ -19063,6 +20873,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new folder in user's works" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new folder in user's works" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreLnkWrkUsr] = @@ -19084,6 +20896,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new link in user's works" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new link in user's works" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenFolWrkUsr] = @@ -19105,6 +20919,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rename folder in user's works" // Potrzebujesz tlumaczenie #elif L==9 // pt "Rename folder in user's works" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilWrkUsrDZ] = @@ -19126,6 +20942,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file to user's works using Dropzone.js" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file to user's works using Dropzone.js" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilWrkUsrCla] = @@ -19147,6 +20965,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file to user's works using the classic way" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file to user's works using the classic way" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActExpWrkUsr] = @@ -19168,6 +20988,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Expand folder in user's works" // Potrzebujesz tlumaczenie #elif L==9 // pt "Expand folder in user's works" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActConWrkUsr] = @@ -19189,6 +21011,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Contract folder in user's works" // Potrzebujesz tlumaczenie #elif L==9 // pt "Contract folder in user's works" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActZIPWrkUsr] = @@ -19210,6 +21034,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Compress folder in user's works" // Potrzebujesz tlumaczenie #elif L==9 // pt "Compress folder in user's works" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDatWrkUsr] = @@ -19231,6 +21057,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See file metadata in user's works" // Potrzebujesz tlumaczenie #elif L==9 // pt "See file metadata in user's works" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgDatWrkUsr] = @@ -19252,6 +21080,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change file metadata in user's works" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change file metadata in user's works" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDowWrkUsr] = @@ -19273,6 +21103,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Download file from user's works" // Potrzebujesz tlumaczenie #elif L==9 // pt "Download file from user's works" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemFilAsgCrs] = @@ -19294,6 +21126,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of file in assignments zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of file in assignments zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFilAsgCrs] = @@ -19315,6 +21149,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove file from assignments zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove file from assignments zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFolAsgCrs] = @@ -19336,6 +21172,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove empty folder from assignments zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove empty folder from assignments zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCopAsgCrs] = @@ -19357,6 +21195,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Set origin of copy in assignments zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Set origin of copy in assignments zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPasAsgCrs] = @@ -19378,6 +21218,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Paste folder/file in assignments zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Paste folder/file in assignments zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemTreAsgCrs] = @@ -19399,6 +21241,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove non-empty folder from assignments zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove non-empty folder from assignments zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmCreAsgCrs] = @@ -19420,6 +21264,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit new folder/file/link in assignments zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit new folder/file/link in assignments zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreFolAsgCrs] = @@ -19441,6 +21287,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new folder in assignments zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new folder in assignments zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreLnkAsgCrs] = @@ -19462,6 +21310,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new link in assignments zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new link in assignments zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenFolAsgCrs] = @@ -19483,6 +21333,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rename folder in assignments zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Rename folder in assignments zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilAsgCrsDZ] = @@ -19504,6 +21356,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file to assignments zone of course using Dropzone.js" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file to assignments zone of course using Dropzone.js" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilAsgCrsCla] = @@ -19525,6 +21379,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file to assignments zone of course using the classic way" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file to assignments zone of course using the classic way" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActExpAsgCrs] = @@ -19546,6 +21402,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Expand folder in assignments zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Expand folder in assignments zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActConAsgCrs] = @@ -19567,6 +21425,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Contract folder in assignments zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Contract folder in assignments zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActZIPAsgCrs] = @@ -19588,6 +21448,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Compress folder in assignments zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Compress folder in assignments zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDatAsgCrs] = @@ -19609,6 +21471,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See file metadata in assignments zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "See file metadata in assignments zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgDatAsgCrs] = @@ -19630,6 +21494,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change file metadata in assignments zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change file metadata in assignments zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDowAsgCrs] = @@ -19651,6 +21517,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Download file from assignments zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Download file from assignments zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemFilWrkCrs] = @@ -19672,6 +21540,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of file from works zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of file from works zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFilWrkCrs] = @@ -19693,6 +21563,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove file from works zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove file from works zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFolWrkCrs] = @@ -19714,6 +21586,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove empty folder from works zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove empty folder from works zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCopWrkCrs] = @@ -19735,6 +21609,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Set origin of copy in works zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Set origin of copy in works zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPasWrkCrs] = @@ -19756,6 +21632,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Paste folder/file in works zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Paste folder/file in works zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemTreWrkCrs] = @@ -19777,6 +21655,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove non-empty folder from works zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove non-empty folder from works zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmCreWrkCrs] = @@ -19798,6 +21678,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit new folder/file/link in works zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit new folder/file/link in works zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreFolWrkCrs] = @@ -19819,6 +21701,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new folder in works zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new folder in works zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreLnkWrkCrs] = @@ -19840,6 +21724,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new link in works zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new link in works zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenFolWrkCrs] = @@ -19861,6 +21747,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rename folder in works zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Rename folder in works zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilWrkCrsDZ] = @@ -19882,6 +21770,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file to works zone of course using Dropzone.js" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file to works zone of course using Dropzone.js" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilWrkCrsCla] = @@ -19903,6 +21793,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file to works zone of course using the classic way" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file to works zone of course using the classic way" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActExpWrkCrs] = @@ -19924,6 +21816,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Expand folder in works zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Expand folder in works zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActConWrkCrs] = @@ -19945,6 +21839,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Contract folder in works zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Contract folder in works zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActZIPWrkCrs] = @@ -19966,6 +21862,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Compress folder in works zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Compress folder in works zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDatWrkCrs] = @@ -19987,6 +21885,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See file metadata in works zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "See file metadata in works zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgDatWrkCrs] = @@ -20008,6 +21908,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change file metadata in works zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change file metadata in works zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDowWrkCrs] = @@ -20029,6 +21931,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Download file from works zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Download file from works zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgToSeeMrk] = @@ -20050,6 +21954,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change marks zone of course/group to view mode" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change marks zone of course/group to view mode" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeMrkCrs] = @@ -20071,6 +21977,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See marks zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "See marks zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActExpSeeMrkCrs] = @@ -20092,6 +22000,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Expand folder in marks zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Expand folder in marks zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActConSeeMrkCrs] = @@ -20113,6 +22023,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Contract folder in marks zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Contract folder in marks zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDatSeeMrkCrs] = @@ -20134,6 +22046,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See file metadata in marks zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "See file metadata in marks zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeMyMrkCrs] = @@ -20155,6 +22069,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Individualized access to marks file in course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Individualized access to marks file in course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeMrkGrp] = @@ -20176,6 +22092,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See marks zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "See marks zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActExpSeeMrkGrp] = @@ -20197,6 +22115,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Expand folder in marks zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Expand folder in marks zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActConSeeMrkGrp] = @@ -20218,6 +22138,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Contract folder in marks zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Contract folder in marks zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDatSeeMrkGrp] = @@ -20239,6 +22161,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See file metadata in marks zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "See file metadata in marks zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeMyMrkGrp] = @@ -20260,6 +22184,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Individualized access to marks file in group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Individualized access to marks file in group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgToAdmMrk] = @@ -20281,6 +22207,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change marks zone of course/group to management mode" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change marks zone of course/group to management mode" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAdmMrkCrs] = @@ -20302,6 +22230,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Manage marks zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Manage marks zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemFilMrkCrs] = @@ -20323,6 +22253,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of file in marks in course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of file in marks in course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFilMrkCrs] = @@ -20344,6 +22276,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove file in marks from a course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove file in marks from a course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFolMrkCrs] = @@ -20365,6 +22299,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove empty folder from marks zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove empty folder from marks zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCopMrkCrs] = @@ -20386,6 +22322,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Set source of copy in marks zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Set source of copy in marks zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPasMrkCrs] = @@ -20407,6 +22345,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Paste folder/file in marks zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Paste folder/file in marks zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemTreMrkCrs] = @@ -20428,6 +22368,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove non-empty folder from marks zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove non-empty folder from marks zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmCreMrkCrs] = @@ -20449,6 +22391,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit new folder/file/link in marks zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit new folder/file/link in marks zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreFolMrkCrs] = @@ -20470,6 +22414,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new folder in marks zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new folder in marks zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenFolMrkCrs] = @@ -20491,6 +22437,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rename folder in marks zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Rename folder in marks zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilMrkCrsDZ] = @@ -20512,6 +22460,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file to marks zone of course using Dropzone.js" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file to marks zone of course using Dropzone.js" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilMrkCrsCla] = @@ -20533,6 +22483,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file to marks zone of course using the classic way" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file to marks zone of course using the classic way" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActExpAdmMrkCrs] = @@ -20554,6 +22506,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Expand folder in marks management zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Expand folder in marks management zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActConAdmMrkCrs] = @@ -20575,6 +22529,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Contract folder in marks management zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Contract folder in marks management zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActZIPAdmMrkCrs] = @@ -20596,6 +22552,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Compress folder in marks management zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Compress folder in marks management zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActShoMrkCrs] = @@ -20617,6 +22575,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Unhide folder/file in marks management zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Unhide folder/file in marks management zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActHidMrkCrs] = @@ -20638,6 +22598,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Hide folder/file in marks management zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Hide folder/file in marks management zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDatAdmMrkCrs] = @@ -20659,6 +22621,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See file metadata in marks management zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "See file metadata in marks management zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgDatAdmMrkCrs] = @@ -20680,6 +22644,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change file metadata in marks management zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change file metadata in marks management zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDowAdmMrkCrs] = @@ -20701,6 +22667,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Download file from marks management zone of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Download file from marks management zone of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgNumRowHeaCrs] = @@ -20722,6 +22690,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change number of head rows of a file in marks of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change number of head rows of a file in marks of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgNumRowFooCrs] = @@ -20743,6 +22713,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change number of foot rows of a file in marks in course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change number of foot rows of a file in marks in course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAdmMrkGrp] = @@ -20764,6 +22736,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Manage marks zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Manage marks zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemFilMrkGrp] = @@ -20785,6 +22759,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of file from marks zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of file from marks zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFilMrkGrp] = @@ -20806,6 +22782,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove file from marks zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove file from marks zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFolMrkGrp] = @@ -20827,6 +22805,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove empty folder from marks zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove empty folder from marks zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCopMrkGrp] = @@ -20848,6 +22828,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Set the source of copy in marks zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Set the source of copy in marks zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPasMrkGrp] = @@ -20869,6 +22851,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Paste folder/file in marks zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Paste folder/file in marks zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemTreMrkGrp] = @@ -20890,6 +22874,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove non-empty folder from marks zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove non-empty folder from marks zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmCreMrkGrp] = @@ -20911,6 +22897,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit new folder/file/link in marks zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit new folder/file/link in marks zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreFolMrkGrp] = @@ -20932,6 +22920,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new folder in marks zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new folder in marks zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenFolMrkGrp] = @@ -20953,6 +22943,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rename folder in marks zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Rename folder in marks zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilMrkGrpDZ] = @@ -20974,6 +22966,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file to marks zone of group using Dropzone.js" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file to marks zone of group using Dropzone.js" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilMrkGrpCla] = @@ -20995,6 +22989,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file to marks zone of group using the classic way" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file to marks zone of group using the classic way" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActExpAdmMrkGrp] = @@ -21016,6 +23012,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Expand folder in marks management zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Expand folder in marks management zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActConAdmMrkGrp] = @@ -21037,6 +23035,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Contract folder in marks management zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Contract folder in marks management zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActZIPAdmMrkGrp] = @@ -21058,6 +23058,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Compress folder in marks management zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Compress folder in marks management zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActShoMrkGrp] = @@ -21079,6 +23081,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Unhide folder/file of marks management zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Unhide folder/file of marks management zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActHidMrkGrp] = @@ -21100,6 +23104,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Hide folder/file of marks management zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Hide folder/file of marks management zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDatAdmMrkGrp] = @@ -21121,6 +23127,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See file metadata in marks management zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "See file metadata in marks management zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgDatAdmMrkGrp] = @@ -21142,6 +23150,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change file metadata in marks management zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change file metadata in marks management zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDowAdmMrkGrp] = @@ -21163,6 +23173,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Download file from marks management zone of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Download file from marks management zone of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgNumRowHeaGrp] = @@ -21184,6 +23196,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change number of head rows of a file in marks of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change number of head rows of a file in marks of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgNumRowFooGrp] = @@ -21205,6 +23219,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change number of foot rows of a file in marks of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change number of foot rows of a file in marks of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemFilBrf] = @@ -21226,6 +23242,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of file from briefcase" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of file from briefcase" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFilBrf] = @@ -21247,6 +23265,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove file from briefcase" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove file from briefcase" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFolBrf] = @@ -21268,6 +23288,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove empty folder from briefcase" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove empty folder from briefcase" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCopBrf] = @@ -21289,6 +23311,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Set source of copy in briefcase" // Potrzebujesz tlumaczenie #elif L==9 // pt "Set source of copy in briefcase" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPasBrf] = @@ -21310,6 +23334,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Paste folder/file in briefcase" // Potrzebujesz tlumaczenie #elif L==9 // pt "Paste folder/file in briefcase" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemTreBrf] = @@ -21331,6 +23357,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove non-empty folder from briefcase" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove non-empty folder from briefcase" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmCreBrf] = @@ -21352,6 +23380,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit new folder/file/link in briefcase" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit new folder/file/link in briefcase" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreFolBrf] = @@ -21373,6 +23403,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new folder in briefcase" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new folder in briefcase" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreLnkBrf] = @@ -21394,6 +23426,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new link in briefcase" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new link in briefcase" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenFolBrf] = @@ -21415,6 +23449,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rename folder of briefcase" // Potrzebujesz tlumaczenie #elif L==9 // pt "Rename folder of briefcase" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilBrfDZ] = @@ -21436,6 +23472,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file to briefcase using Dropzone.js" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file to briefcase using Dropzone.js" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFilBrfCla] = @@ -21457,6 +23495,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send file to briefcase using the classic way" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send file to briefcase using the classic way" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActExpBrf] = @@ -21478,6 +23518,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Expand folder in briefcase" // Potrzebujesz tlumaczenie #elif L==9 // pt "Expand folder in briefcase" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActConBrf] = @@ -21499,6 +23541,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Contract folder in briefcase" // Potrzebujesz tlumaczenie #elif L==9 // pt "Contract folder in briefcase" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActZIPBrf] = @@ -21520,6 +23564,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Compress folder in briefcase" // Potrzebujesz tlumaczenie #elif L==9 // pt "Compress folder in briefcase" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDatBrf] = @@ -21541,6 +23587,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See file metadata in briefcase" // Potrzebujesz tlumaczenie #elif L==9 // pt "See file metadata in briefcase" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgDatBrf] = @@ -21562,6 +23610,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change file metadata in briefcase" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change file metadata in briefcase" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDowBrf] = @@ -21583,6 +23633,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Download file from briefcase" // Potrzebujesz tlumaczenie #elif L==9 // pt "Download file from briefcase" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemOldBrf] = @@ -21604,6 +23656,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of old files from briefcase" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of old files from briefcase" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemOldBrf] = @@ -21625,6 +23679,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove old files in briefcase" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove old files in briefcase" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqSelGrp] = @@ -21646,6 +23702,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request selection of groups of students" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request selection of groups of students" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActLstStd] = @@ -21667,6 +23725,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show class photo or list of students" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show class photo or list of students" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActLstTch] = @@ -21688,6 +23748,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show class photo or list of teachers" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show class photo or list of teachers" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActLstOth] = @@ -21709,6 +23771,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show class photo or list of guests" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show class photo or list of guests" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeAtt] = @@ -21730,6 +23794,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show attendance events" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show attendance events" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqSignUp] = @@ -21751,6 +23817,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Apply for my enrolment" // Potrzebujesz tlumaczenie #elif L==9 // pt "Apply for my enrolment" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeSignUpReq] = @@ -21772,6 +23840,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show pending requests for inscription in the current course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show pending requests for inscription in the current course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActLstCon] = @@ -21793,6 +23863,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "List connected users" // Potrzebujesz tlumaczenie #elif L==9 // pt "List connected users" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgGrp] = @@ -21814,6 +23886,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change my groups" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change my groups" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqEdiGrp] = @@ -21835,6 +23909,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request edition of groups" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request edition of groups" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewGrpTyp] = @@ -21856,6 +23932,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request creation of a type of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request creation of a type of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemGrpTyp] = @@ -21877,6 +23955,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of a type of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of a type of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemGrpTyp] = @@ -21898,6 +23978,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove type of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove type of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenGrpTyp] = @@ -21919,6 +24001,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rename type of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Rename type of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgMdtGrpTyp] = @@ -21940,6 +24024,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change if it is mandatory to register in groups of a type" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change if it is mandatory to register in groups of a type" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgMulGrpTyp] = @@ -21961,6 +24047,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change if it is possible to register in multiple groups of a type" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change if it is possible to register in multiple groups of a type" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgTimGrpTyp] = @@ -21982,6 +24070,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change date when groups of a type will open" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change date when groups of a type will open" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewGrp] = @@ -22003,6 +24093,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemGrp] = @@ -22024,6 +24116,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemGrp] = @@ -22045,6 +24139,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActOpeGrp] = @@ -22066,6 +24162,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Open a group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Open a group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCloGrp] = @@ -22087,6 +24185,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Close a group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Close a group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEnaFilZonGrp] = @@ -22108,6 +24208,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Enable filezones of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Enable filezones of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDisFilZonGrp] = @@ -22129,6 +24231,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Disable filezones of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Disable filezones of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgGrpTyp] = @@ -22150,6 +24254,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change type of group of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change type of group of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenGrp] = @@ -22171,6 +24277,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rename group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Rename group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgGrpRoo] = @@ -22192,6 +24300,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change room of group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change room of group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgMaxStdGrp] = @@ -22213,6 +24323,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change maximum number of students in group" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change maximum number of students in group" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActLstGst] = @@ -22234,6 +24346,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "List main data of administrators" // Potrzebujesz tlumaczenie #elif L==9 // pt "List main data of administrators" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPrnGstPho] = @@ -22255,6 +24369,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show class photo of guests ready to be printed" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show class photo of guests ready to be printed" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPrnStdPho] = @@ -22276,6 +24392,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show class photo of students ready to be printed" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show class photo of students ready to be printed" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPrnTchPho] = @@ -22297,6 +24415,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show class photo of teachers ready to be printed" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show class photo of teachers ready to be printed" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActLstGstAll] = @@ -22318,6 +24438,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "List the full data of the guests" // Potrzebujesz tlumaczenie #elif L==9 // pt "List the full data of the guests" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActLstStdAll] = @@ -22339,6 +24461,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "List the full data of students" // Potrzebujesz tlumaczenie #elif L==9 // pt "List the full data of students" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActLstTchAll] = @@ -22360,6 +24484,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "List the full data of the teachers" // Potrzebujesz tlumaczenie #elif L==9 // pt "List the full data of the teachers" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeRecOneStd] = @@ -22381,6 +24507,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See the record of a student" // Potrzebujesz tlumaczenie #elif L==9 // pt "See the record of a student" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeRecOneTch] = @@ -22402,6 +24530,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See the record of a teacher" // Potrzebujesz tlumaczenie #elif L==9 // pt "See the record of a teacher" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDoActOnSevGst] = @@ -22423,6 +24553,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Do an action on several selected guests" // Potrzebujesz tlumaczenie #elif L==9 // pt "Do an action on several selected guests" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDoActOnSevStd] = @@ -22444,6 +24576,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Do an action on several selected students" // Potrzebujesz tlumaczenie #elif L==9 // pt "Do an action on several selected students" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDoActOnSevTch] = @@ -22465,6 +24599,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Do an action on several selected teachers" // Potrzebujesz tlumaczenie #elif L==9 // pt "Do an action on several selected teachers" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeRecSevGst] = @@ -22486,6 +24622,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See records of several selected guests" // Potrzebujesz tlumaczenie #elif L==9 // pt "See records of several selected guests" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeRecSevStd] = @@ -22507,6 +24645,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See records of several selected students" // Potrzebujesz tlumaczenie #elif L==9 // pt "See records of several selected students" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeRecSevTch] = @@ -22528,6 +24668,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See records of several selected teachers" // Potrzebujesz tlumaczenie #elif L==9 // pt "See records of several selected teachers" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPrnRecSevGst] = @@ -22549,6 +24691,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See records of several selected guests ready to print" // Potrzebujesz tlumaczenie #elif L==9 // pt "See records of several selected guests ready to print" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPrnRecSevStd] = @@ -22570,6 +24714,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See records of several selected students ready to print" // Potrzebujesz tlumaczenie #elif L==9 // pt "See records of several selected students ready to print" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPrnRecSevTch] = @@ -22591,6 +24737,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See records of several selected teachers ready to print" // Potrzebujesz tlumaczenie #elif L==9 // pt "See records of several selected teachers ready to print" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvRecOthUsr] = @@ -22612,6 +24760,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Update record fields of student in course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Update record fields of student in course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiRecFie] = @@ -22633,6 +24783,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit record fields of students" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit record fields of students" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewFie] = @@ -22654,6 +24806,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create record field" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create record field" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemFie] = @@ -22675,6 +24829,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of record field" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of record field" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemFie] = @@ -22696,6 +24852,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove record field" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove record field" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRenFie] = @@ -22717,6 +24875,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Rename record field" // Potrzebujesz tlumaczenie #elif L==9 // pt "Rename record field" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgRowFie] = @@ -22738,6 +24898,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change number of form lines in record field" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change number of form lines in record field" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgVisFie] = @@ -22759,6 +24921,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change visibility of a record field" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change visibility of a record field" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvRecCrs] = @@ -22780,6 +24944,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Update fields of my record in a course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Update fields of my record in a course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmLogInUsrAgd] = @@ -22801,6 +24967,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See form to log in and see a user's public agenda" // Potrzebujesz tlumaczenie #elif L==9 // pt "See form to log in and see a user's public agenda" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActLogInUsrAgd] = @@ -22822,6 +24990,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See a user's public agenda after log in" // Potrzebujesz tlumaczenie #elif L==9 // pt "See a user's public agenda after log in" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActLogInUsrAgdLan] = @@ -22843,6 +25013,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See a user's public agenda after change language" // Potrzebujesz tlumaczenie #elif L==9 // pt "See a user's public agenda after change language" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeUsrAgd] = @@ -22864,6 +25036,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See a user's public agenda" // Potrzebujesz tlumaczenie #elif L==9 // pt "See a user's public agenda" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqEnrSevStd] = @@ -22885,6 +25059,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request enrolment/removing of several students to/from a course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request enrolment/removing of several students to/from a course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqEnrSevNET] = @@ -22906,6 +25082,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request enrolment/removing of several non-editing teachers to/from a course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request enrolment/removing of several non-editing teachers to/from a course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqEnrSevTch] = @@ -22927,6 +25105,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request enrolment/removing of several teachers to/from a course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request enrolment/removing of several teachers to/from a course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqLstUsrAtt] = @@ -22948,6 +25128,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request listing of attendance of several students to several events" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request listing of attendance of several students to several events" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeLstMyAtt] = @@ -22969,6 +25151,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "List my attendance as student to several events" // Potrzebujesz tlumaczenie #elif L==9 // pt "List my attendance as student to several events" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPrnLstMyAtt] = @@ -22990,6 +25174,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Print my attendance as student to several events" // Potrzebujesz tlumaczenie #elif L==9 // pt "Print my attendance as student to several events" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeLstUsrAtt] = @@ -23011,6 +25197,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "List the attendance of several students to several events" // Potrzebujesz tlumaczenie #elif L==9 // pt "List the attendance of several students to several events" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPrnLstUsrAtt] = @@ -23032,6 +25220,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Print attendance of several students to several events" // Potrzebujesz tlumaczenie #elif L==9 // pt "Print attendance of several students to several events" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmNewAtt] = @@ -23053,6 +25243,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit new attendance event" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit new attendance event" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiOneAtt] = @@ -23074,6 +25266,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit one attendance event" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit one attendance event" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewAtt] = @@ -23095,6 +25289,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new attendance event" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new attendance event" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgAtt] = @@ -23116,6 +25312,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change an attendance event" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change an attendance event" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemAtt] = @@ -23137,6 +25335,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of an attendance event" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of an attendance event" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemAtt] = @@ -23158,6 +25358,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove attendance event" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove attendance event" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActHidAtt] = @@ -23179,6 +25381,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Hide attendance event" // Potrzebujesz tlumaczenie #elif L==9 // pt "Hide attendance event" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActShoAtt] = @@ -23200,6 +25404,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Unhide attendance event" // Potrzebujesz tlumaczenie #elif L==9 // pt "Unhide attendance event" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeOneAtt] = @@ -23221,6 +25427,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "List students who attended to an event" // Potrzebujesz tlumaczenie #elif L==9 // pt "List students who attended to an event" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRecAttStd] = @@ -23242,6 +25450,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Save students who attended to an event and comments" // Potrzebujesz tlumaczenie #elif L==9 // pt "Save students who attended to an event and comments" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRecAttMe] = @@ -23263,6 +25473,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Save my comments as student in an attendance event" // Potrzebujesz tlumaczenie #elif L==9 // pt "Save my comments as student in an attendance event" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSignUp] = @@ -23284,6 +25496,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Apply for my enrolment" // Potrzebujesz tlumaczenie #elif L==9 // pt "Apply for my enrolment" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActUpdSignUpReq] = @@ -23305,6 +25519,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Update pending requests for inscription" // Potrzebujesz tlumaczenie #elif L==9 // pt "Update pending requests for inscription" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRejSignUp] = @@ -23326,6 +25542,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request rejection of a user's enrolment" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request rejection of a user's enrolment" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRejSignUp] = @@ -23347,6 +25565,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Reject the enrolment" // Potrzebujesz tlumaczenie #elif L==9 // pt "Reject the enrolment" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqMdfOneOth] = @@ -23368,6 +25588,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request a user's ID for enrolment/removal" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request a user's ID for enrolment/removal" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqMdfOneStd] = @@ -23389,6 +25611,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request a student's ID for enrolment/removal" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request a student's ID for enrolment/removal" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqMdfOneTch] = @@ -23410,6 +25634,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request a teacher's ID for enrolment/removal" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request a teacher's ID for enrolment/removal" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqMdfOth] = @@ -23431,6 +25657,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request enrolment/removal of a user" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request enrolment/removal of a user" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqMdfStd] = @@ -23452,6 +25680,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request enrolment/removal of a student" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request enrolment/removal of a student" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqMdfNET] = @@ -23473,6 +25703,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request enrolment/removal of a non-editing teacher" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request enrolment/removal of a non-editing teacher" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqMdfTch] = @@ -23494,6 +25726,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request enrolment/removal of a teacher" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request enrolment/removal of a teacher" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqOthPho] = @@ -23515,6 +25749,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit a user's photo" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit a user's photo" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqStdPho] = @@ -23536,6 +25772,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit a student's photo" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit a student's photo" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqTchPho] = @@ -23557,6 +25795,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit a teacher's photo" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit a teacher's photo" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDetOthPho] = @@ -23578,6 +25818,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send user's photo and detect faces on it" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send user's photo and detect faces on it" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDetStdPho] = @@ -23599,6 +25841,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send student's photo and detect faces on it" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send student's photo and detect faces on it" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDetTchPho] = @@ -23620,6 +25864,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send teacher's photo and detect faces on it" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send teacher's photo and detect faces on it" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActUpdOthPho] = @@ -23641,6 +25887,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Update a user's photo" // Potrzebujesz tlumaczenie #elif L==9 // pt "Update a user's photo" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActUpdStdPho] = @@ -23662,6 +25910,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Update a student's photo" // Potrzebujesz tlumaczenie #elif L==9 // pt "Update a student's photo" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActUpdTchPho] = @@ -23683,6 +25933,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Update a teacher's photo" // Potrzebujesz tlumaczenie #elif L==9 // pt "Update a teacher's photo" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemOthPho] = @@ -23704,6 +25956,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of a user's photo" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of a user's photo" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemStdPho] = @@ -23725,6 +25979,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of a student's photo" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of a student's photo" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemTchPho] = @@ -23746,6 +26002,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of a teacher's photo" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of a teacher's photo" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemOthPho] = @@ -23767,6 +26025,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove user's photo" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove user's photo" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemStdPho] = @@ -23788,6 +26048,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove student's photo" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove student's photo" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemTchPho] = @@ -23809,6 +26071,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove teacher's photo" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove teacher's photo" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreOth] = @@ -23830,6 +26094,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new guest" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new guest" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreStd] = @@ -23851,6 +26117,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new student" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new student" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreNET] = @@ -23872,6 +26140,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new non-editing teacher" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new non-editing teacher" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreTch] = @@ -23893,6 +26163,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new teacher" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new teacher" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActUpdOth] = @@ -23914,6 +26186,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Update a user's data and groups" // Potrzebujesz tlumaczenie #elif L==9 // pt "Update a user's data and groups" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActUpdStd] = @@ -23935,6 +26209,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Update a student's data and groups" // Potrzebujesz tlumaczenie #elif L==9 // pt "Update a student's data and groups" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActUpdNET] = @@ -23956,6 +26232,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Update a non-editing teacher's data and groups" // Potrzebujesz tlumaczenie #elif L==9 // pt "Update a non-editing teacher's data and groups" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActUpdTch] = @@ -23977,6 +26255,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Update a teacher's data and groups" // Potrzebujesz tlumaczenie #elif L==9 // pt "Update a teacher's data and groups" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqAccEnrStd] = @@ -23998,6 +26278,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See whether to accept or reject my enrolment as student" // Potrzebujesz tlumaczenie #elif L==9 // pt "See whether to accept or reject my enrolment as student" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqAccEnrNET] = @@ -24019,6 +26301,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See whether to accept or reject my enrolment as non-editing teacher" // Potrzebujesz tlumaczenie #elif L==9 // pt "See whether to accept or reject my enrolment as non-editing teacher" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqAccEnrTch] = @@ -24040,6 +26324,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See whether to accept or reject my enrolment as teacher" // Potrzebujesz tlumaczenie #elif L==9 // pt "See whether to accept or reject my enrolment as teacher" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAccEnrStd] = @@ -24061,6 +26347,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Accept my enrolment as student" // Potrzebujesz tlumaczenie #elif L==9 // pt "Accept my enrolment as student" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAccEnrNET] = @@ -24082,6 +26370,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Accept my enrolment as non-editing teacher" // Potrzebujesz tlumaczenie #elif L==9 // pt "Accept my enrolment as non-editing teacher" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActAccEnrTch] = @@ -24103,6 +26393,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Accept my enrolment as teacher" // Potrzebujesz tlumaczenie #elif L==9 // pt "Accept my enrolment as teacher" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemMe_Std] = @@ -24124,6 +26416,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Reject my enrolment as student" // Potrzebujesz tlumaczenie #elif L==9 // pt "Reject my enrolment as student" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemMe_NET] = @@ -24145,6 +26439,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Reject my enrolment as non-editing teacher" // Potrzebujesz tlumaczenie #elif L==9 // pt "Reject my enrolment as non-editing teacher" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemMe_Tch] = @@ -24166,6 +26462,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Reject my enrolment as teacher" // Potrzebujesz tlumaczenie #elif L==9 // pt "Reject my enrolment as teacher" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewAdmIns] = @@ -24187,6 +26485,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Register an administrador in an institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Register an administrador in an institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemAdmIns] = @@ -24208,6 +26508,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove administrador from an institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove administrador from an institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewAdmCtr] = @@ -24229,6 +26531,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Register an administrador in a center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Register an administrador in a center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemAdmCtr] = @@ -24250,6 +26554,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove administrador from a center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove administrador from a center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewAdmDeg] = @@ -24271,6 +26577,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Register an administrador in a degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Register an administrador in a degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemAdmDeg] = @@ -24292,6 +26600,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove administrador from a degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove administrador from a degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFrmEnrSevStd] = @@ -24313,6 +26623,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Register/remove several students in/from a course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Register/remove several students in/from a course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFrmEnrSevNET] = @@ -24334,6 +26646,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Register/remove several non-editing teachers in/from a course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Register/remove several non-editing teachers in/from a course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvFrmEnrSevTch] = @@ -24355,6 +26669,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Register/remove several teachers in/from a course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Register/remove several teachers in/from a course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCnfID_Oth] = @@ -24376,6 +26692,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Confirm a user's ID" // Potrzebujesz tlumaczenie #elif L==9 // pt "Confirm a user's ID" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCnfID_Std] = @@ -24397,6 +26715,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Confirm a student's ID" // Potrzebujesz tlumaczenie #elif L==9 // pt "Confirm a student's ID" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCnfID_Tch] = @@ -24418,6 +26738,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Confirm a teacher's ID" // Potrzebujesz tlumaczenie #elif L==9 // pt "Confirm a teacher's ID" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmAccOth] = @@ -24439,6 +26761,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Forms to the change a user's account" // Potrzebujesz tlumaczenie #elif L==9 // pt "Forms to the change a user's account" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmAccStd] = @@ -24460,6 +26784,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Forms to the change a student's account" // Potrzebujesz tlumaczenie #elif L==9 // pt "Forms to the change a student's account" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmAccTch] = @@ -24481,6 +26807,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Forms to the change a teacher's account" // Potrzebujesz tlumaczenie #elif L==9 // pt "Forms to the change a teacher's account" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemOldNicOth] = @@ -24502,6 +26830,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove user's nickname" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove user's nickname" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemOldNicStd] = @@ -24523,6 +26853,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove student's nickname" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove student's nickname" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemOldNicTch] = @@ -24544,6 +26876,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove teacher's nickname" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove teacher's nickname" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgNicOth] = @@ -24565,6 +26899,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change user's nickname" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change user's nickname" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgNicStd] = @@ -24586,6 +26922,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change student's nickname" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change student's nickname" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgNicTch] = @@ -24607,6 +26945,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change teacher's nickname" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change teacher's nickname" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemID_Oth] = @@ -24628,6 +26968,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove user's ID" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove user's ID" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemID_Std] = @@ -24649,6 +26991,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove student's ID" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove student's ID" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemID_Tch] = @@ -24670,6 +27014,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove teacher's ID" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove teacher's ID" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewID_Oth] = @@ -24691,6 +27037,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new user's ID" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new user's ID" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewID_Std] = @@ -24712,6 +27060,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new student's ID" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new student's ID" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewID_Tch] = @@ -24733,6 +27083,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new teacher's ID" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new teacher's ID" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgPwdOth] = @@ -24754,6 +27106,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change user's password" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change user's password" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgPwdStd] = @@ -24775,6 +27129,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change student's password" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change student's password" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgPwdTch] = @@ -24796,6 +27152,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change teacher's password" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change teacher's password" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemMaiOth] = @@ -24817,6 +27175,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove user's email" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove user's email" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemMaiStd] = @@ -24838,6 +27198,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove student's email" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove student's email" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemMaiTch] = @@ -24859,6 +27221,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove teacher's email" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove teacher's email" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewMaiOth] = @@ -24880,6 +27244,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new user's email" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new user's email" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewMaiStd] = @@ -24901,6 +27267,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new student's email" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new student's email" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewMaiTch] = @@ -24922,6 +27290,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new teacher's email" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new teacher's email" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemStdCrs] = @@ -24943,6 +27313,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove student from a course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove student from a course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemNETCrs] = @@ -24964,6 +27336,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove non-editing teacher from a course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove non-editing teacher from a course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemTchCrs] = @@ -24985,6 +27359,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove teacher from a course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove teacher from a course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemUsrGbl] = @@ -25006,6 +27382,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Eliminate completely a user from the platform" // Potrzebujesz tlumaczenie #elif L==9 // pt "Eliminate completely a user from the platform" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemAllStdCrs] = @@ -25027,6 +27405,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of all students from a course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of all students from a course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemAllStdCrs] = @@ -25048,6 +27428,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove all students from a course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove all students from a course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemOldUsr] = @@ -25069,6 +27451,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request complete elimination of old users" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request complete elimination of old users" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemOldUsr] = @@ -25090,6 +27474,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Eliminate completely old users" // Potrzebujesz tlumaczenie #elif L==9 // pt "Eliminate completely old users" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActLstDupUsr] = @@ -25111,6 +27497,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "List possible duplicate users" // Potrzebujesz tlumaczenie #elif L==9 // pt "List possible duplicate users" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActLstSimUsr] = @@ -25132,6 +27520,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "List users similar to a given one (possible duplicates)" // Potrzebujesz tlumaczenie #elif L==9 // pt "List users similar to a given one (possible duplicates)" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemDupUsr] = @@ -25153,6 +27543,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove user from a list of possible duplicate users" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove user from a list of possible duplicate users" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqFolSevStd] = @@ -25174,6 +27566,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request follow several students" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request follow several students" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqFolSevTch] = @@ -25195,6 +27589,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request follow several teachers" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request follow several teachers" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqUnfSevStd] = @@ -25216,6 +27612,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request unfollow several students" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request unfollow several students" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqUnfSevTch] = @@ -25237,6 +27635,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request unfollow several teachers" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request unfollow several teachers" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFolSevStd] = @@ -25258,6 +27658,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Follow several students" // Potrzebujesz tlumaczenie #elif L==9 // pt "Follow several students" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFolSevTch] = @@ -25279,6 +27681,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Follow several teachers" // Potrzebujesz tlumaczenie #elif L==9 // pt "Follow several teachers" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActUnfSevStd] = @@ -25300,6 +27704,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Unfollow several students" // Potrzebujesz tlumaczenie #elif L==9 // pt "Unfollow several students" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActUnfSevTch] = @@ -25321,6 +27727,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Unfollow several teachers" // Potrzebujesz tlumaczenie #elif L==9 // pt "Unfollow several teachers" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeAnn] = @@ -25342,6 +27750,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show global announcements" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show global announcements" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeAllNot] = @@ -25363,6 +27773,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See all notices" // Potrzebujesz tlumaczenie #elif L==9 // pt "See all notices" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeFor] = @@ -25384,6 +27796,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See the top level of the forums" // Potrzebujesz tlumaczenie #elif L==9 // pt "See the top level of the forums" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeChtRms] = @@ -25405,6 +27819,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See the chat rooms" // Potrzebujesz tlumaczenie #elif L==9 // pt "See the chat rooms" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeRcvMsg] = @@ -25426,6 +27842,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show the messages received" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show the messages received" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqMaiUsr] = @@ -25447,6 +27865,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Select users to send an email to them" // Potrzebujesz tlumaczenie #elif L==9 // pt "Select users to send an email to them" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActWriAnn] = @@ -25468,6 +27888,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See form to create a new global announcement" // Potrzebujesz tlumaczenie #elif L==9 // pt "See form to create a new global announcement" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvAnn] = @@ -25489,6 +27911,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new global announcement" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new global announcement" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActHidAnn] = @@ -25510,6 +27934,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Hide global announcement" // Potrzebujesz tlumaczenie #elif L==9 // pt "Hide global announcement" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRevAnn] = @@ -25531,6 +27957,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Unhide global announcement" // Potrzebujesz tlumaczenie #elif L==9 // pt "Unhide global announcement" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemAnn] = @@ -25552,6 +27980,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove global announcement" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove global announcement" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeOneNot] = @@ -25573,6 +28003,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Show (expand) a notice" // Potrzebujesz tlumaczenie #elif L==9 // pt "Show (expand) a notice" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActWriNot] = @@ -25594,6 +28026,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Write a new notice" // Potrzebujesz tlumaczenie #elif L==9 // pt "Write a new notice" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvNot] = @@ -25615,6 +28049,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new notice" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new notice" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActHidNot] = @@ -25636,6 +28072,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Hide notice" // Potrzebujesz tlumaczenie #elif L==9 // pt "Hide notice" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRevNot] = @@ -25657,6 +28095,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Unhide notice" // Potrzebujesz tlumaczenie #elif L==9 // pt "Unhide notice" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemNot] = @@ -25678,6 +28118,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of a notice" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of a notice" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemNot] = @@ -25699,6 +28141,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove notice" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove notice" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeForCrsUsr] = @@ -25720,6 +28164,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See top level of forum of users of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "See top level of forum of users of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeForCrsTch] = @@ -25741,6 +28187,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See top level of forum of teachers of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "See top level of forum of teachers of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeForDegUsr] = @@ -25762,6 +28210,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See top level of forum of users of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "See top level of forum of users of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeForDegTch] = @@ -25783,6 +28233,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See top level of forum of teachers of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "See top level of forum of teachers of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeForCtrUsr] = @@ -25804,6 +28256,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See top level of forum of users of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "See top level of forum of users of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeForCtrTch] = @@ -25825,6 +28279,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See top level of forum of teachers of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "See top level of forum of teachers of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeForInsUsr] = @@ -25846,6 +28302,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See top level of forum of users of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "See top level of forum of users of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeForInsTch] = @@ -25867,6 +28325,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See top level of forum of teachers of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "See top level of forum of teachers of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeForGenUsr] = @@ -25888,6 +28348,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See top level of general forum of users" // Potrzebujesz tlumaczenie #elif L==9 // pt "See top level of general forum of users" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeForGenTch] = @@ -25909,6 +28371,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See top level of general forum of teachers" // Potrzebujesz tlumaczenie #elif L==9 // pt "See top level of general forum of teachers" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeForSWAUsr] = @@ -25930,6 +28394,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See top level of forum of users of the platform" // Potrzebujesz tlumaczenie #elif L==9 // pt "See top level of forum of users of the platform" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeForSWATch] = @@ -25951,6 +28417,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See top level of forum of teachers of the platform" // Potrzebujesz tlumaczenie #elif L==9 // pt "See top level of forum of teachers of the platform" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeePstForCrsUsr] = @@ -25972,6 +28440,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See the messages of a thread of the forum of users of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "See the messages of a thread of the forum of users of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeePstForCrsTch] = @@ -25993,6 +28463,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See the messages of a thread of the forum of teachers of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "See the messages of a thread of the forum of teachers of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeePstForDegUsr] = @@ -26014,6 +28486,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See the messages of a thread of the forum of users of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "See the messages of a thread of the forum of users of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeePstForDegTch] = @@ -26035,6 +28509,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See the messages of a thread of the forum of teachers of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "See the messages of a thread of the forum of teachers of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeePstForCtrUsr] = @@ -26056,6 +28532,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See the messages of a thread of the forum of users of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "See the messages of a thread of the forum of users of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeePstForCtrTch] = @@ -26077,6 +28555,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See the messages of a thread of the forum of teachers of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "See the messages of a thread of the forum of teachers of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeePstForInsUsr] = @@ -26098,6 +28578,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See the messages of a thread of the forum of users of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "See the messages of a thread of the forum of users of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeePstForInsTch] = @@ -26119,6 +28601,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See the messages of a thread of the forum of teachers of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "See the messages of a thread of the forum of teachers of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeePstForGenUsr] = @@ -26140,6 +28624,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See the messages of a thread of the general forum of users" // Potrzebujesz tlumaczenie #elif L==9 // pt "See the messages of a thread of the general forum of users" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeePstForGenTch] = @@ -26161,6 +28647,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See the messages of a thread of the forum of teachers general" // Potrzebujesz tlumaczenie #elif L==9 // pt "See the messages of a thread of the forum of teachers general" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeePstForSWAUsr] = @@ -26182,6 +28670,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See the messages of a thread of the forum of users of the platform" // Potrzebujesz tlumaczenie #elif L==9 // pt "See the messages of a thread of the forum of users of the platform" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeePstForSWATch] = @@ -26203,6 +28693,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See the messages of a thread of the forum of teachers of the platform" // Potrzebujesz tlumaczenie #elif L==9 // pt "See the messages of a thread of the forum of teachers of the platform" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvThrForCrsUsr] = @@ -26224,6 +28716,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send the first message of a new thread of forum of users of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send the first message of a new thread of forum of users of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvThrForCrsTch] = @@ -26245,6 +28739,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send the first message of a new thread of forum of teachers of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send the first message of a new thread of forum of teachers of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvThrForDegUsr] = @@ -26266,6 +28762,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send the first message of a new thread of forum of users of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send the first message of a new thread of forum of users of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvThrForDegTch] = @@ -26287,6 +28785,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send the first message of a new thread of forum of teachers of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send the first message of a new thread of forum of teachers of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvThrForCtrUsr] = @@ -26308,6 +28808,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send the first message of a new thread of forum of users of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send the first message of a new thread of forum of users of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvThrForCtrTch] = @@ -26329,6 +28831,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send the first message of a new thread of forum of teachers of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send the first message of a new thread of forum of teachers of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvThrForInsUsr] = @@ -26350,6 +28854,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send the first message of a new thread of forum of users of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send the first message of a new thread of forum of users of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvThrForInsTch] = @@ -26371,6 +28877,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send the first message of a new thread of forum of teachers of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send the first message of a new thread of forum of teachers of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvThrForGenUsr] = @@ -26392,6 +28900,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send the first message of a new thread of general forum of users" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send the first message of a new thread of general forum of users" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvThrForGenTch] = @@ -26413,6 +28923,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send the first message of a new thread of general forum of teachers" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send the first message of a new thread of general forum of teachers" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvThrForSWAUsr] = @@ -26434,6 +28946,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send the first message of a new thread of forum of users of the platform" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send the first message of a new thread of forum of users of the platform" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvThrForSWATch] = @@ -26455,6 +28969,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send the first message of a new thread of forum of teachers of the platform" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send the first message of a new thread of forum of teachers of the platform" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvRepForCrsUsr] = @@ -26476,6 +28992,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send reply message in a thread of the forum of users of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send reply message in a thread of the forum of users of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvRepForCrsTch] = @@ -26497,6 +29015,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send reply message in a thread of the forum of teachers of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send reply message in a thread of the forum of teachers of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvRepForDegUsr] = @@ -26518,6 +29038,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send reply message in a thread of the forum of users of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send reply message in a thread of the forum of users of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvRepForDegTch] = @@ -26539,6 +29061,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send reply message in a thread of the forum of teachers of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send reply message in a thread of the forum of teachers of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvRepForCtrUsr] = @@ -26560,6 +29084,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send reply message in a thread of the forum of users of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send reply message in a thread of the forum of users of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvRepForCtrTch] = @@ -26581,6 +29107,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send reply message in a thread of the forum of teachers of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send reply message in a thread of the forum of teachers of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvRepForInsUsr] = @@ -26602,6 +29130,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send reply message in a thread of the forum of users of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send reply message in a thread of the forum of users of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvRepForInsTch] = @@ -26623,6 +29153,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send reply message in a thread of the forum of teachers of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send reply message in a thread of the forum of teachers of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvRepForGenUsr] = @@ -26644,6 +29176,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send reply message in a thread of the general forum of users" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send reply message in a thread of the general forum of users" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvRepForGenTch] = @@ -26665,6 +29199,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send reply message in a thread of the general forum of teachers" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send reply message in a thread of the general forum of teachers" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvRepForSWAUsr] = @@ -26686,6 +29222,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send reply message in a thread of the forum of users of the platform" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send reply message in a thread of the forum of users of the platform" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvRepForSWATch] = @@ -26707,6 +29245,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send reply message in a thread of the forum of teachers of the platform" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send reply message in a thread of the forum of teachers of the platform" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDelThrCrsUsr] = @@ -26728,6 +29268,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of a thread of forum of users of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of a thread of forum of users of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDelThrCrsTch] = @@ -26749,6 +29291,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of a thread of forum of teachers of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of a thread of forum of teachers of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDelThrDegUsr] = @@ -26770,6 +29314,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of a thread of forum of users of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of a thread of forum of users of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDelThrDegTch] = @@ -26791,6 +29337,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of a thread of forum of teachers of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of a thread of forum of teachers of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDelThrCtrUsr] = @@ -26812,6 +29360,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of a thread of forum of users of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of a thread of forum of users of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDelThrCtrTch] = @@ -26833,6 +29383,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of a thread of forum of teachers of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of a thread of forum of teachers of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDelThrInsUsr] = @@ -26854,6 +29406,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of a thread of forum of users of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of a thread of forum of users of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDelThrInsTch] = @@ -26875,6 +29429,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of a thread of forum of teachers of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of a thread of forum of teachers of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDelThrGenUsr] = @@ -26896,6 +29452,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of a thread of general forum of users" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of a thread of general forum of users" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDelThrGenTch] = @@ -26917,6 +29475,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of a thread of general forum of teachers" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of a thread of general forum of teachers" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDelThrSWAUsr] = @@ -26938,6 +29498,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of a thread of forum of users of the platform" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of a thread of forum of users of the platform" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDelThrSWATch] = @@ -26959,6 +29521,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of a thread of forum of teachers of the platform" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of a thread of forum of teachers of the platform" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDelThrForCrsUsr] = @@ -26980,6 +29544,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove thread of forum of users of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove thread of forum of users of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDelThrForCrsTch] = @@ -27001,6 +29567,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove thread of forum of teachers of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove thread of forum of teachers of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDelThrForDegUsr] = @@ -27022,6 +29590,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove thread of forum of users of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove thread of forum of users of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDelThrForDegTch] = @@ -27043,6 +29613,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove thread of forum of teachers of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove thread of forum of teachers of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDelThrForCtrUsr] = @@ -27064,6 +29636,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove thread of forum of users of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove thread of forum of users of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDelThrForCtrTch] = @@ -27085,6 +29659,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove thread of forum of teachers of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove thread of forum of teachers of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDelThrForInsUsr] = @@ -27106,6 +29682,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove thread of forum of users of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove thread of forum of users of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDelThrForInsTch] = @@ -27127,6 +29705,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove thread of forum of teachers of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove thread of forum of teachers of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDelThrForGenUsr] = @@ -27148,6 +29728,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove thread of general forum of users" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove thread of general forum of users" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDelThrForGenTch] = @@ -27169,6 +29751,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove thread of general forum of teachers" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove thread of general forum of teachers" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDelThrForSWAUsr] = @@ -27190,6 +29774,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove thread of forum of users of the platform" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove thread of forum of users of the platform" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDelThrForSWATch] = @@ -27211,6 +29797,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove thread of forum of teachers of the platform" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove thread of forum of teachers of the platform" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCutThrForCrsUsr] = @@ -27232,6 +29820,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Cut thread of forum of users of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Cut thread of forum of users of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCutThrForCrsTch] = @@ -27253,6 +29843,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Cut thread of forum of teachers of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Cut thread of forum of teachers of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCutThrForDegUsr] = @@ -27274,6 +29866,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Cut thread of forum of users of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Cut thread of forum of users of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCutThrForDegTch] = @@ -27295,6 +29889,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Cut thread of forum of teachers of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Cut thread of forum of teachers of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCutThrForCtrUsr] = @@ -27316,6 +29912,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Cut thread of forum of users of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Cut thread of forum of users of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCutThrForCtrTch] = @@ -27337,6 +29935,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Cut thread of forum of teachers of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Cut thread of forum of teachers of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCutThrForInsUsr] = @@ -27358,6 +29958,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Cut thread of forum of users of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Cut thread of forum of users of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCutThrForInsTch] = @@ -27379,6 +29981,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Cut thread of forum of teachers of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Cut thread of forum of teachers of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCutThrForGenUsr] = @@ -27400,6 +30004,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Cut thread of general forum of users" // Potrzebujesz tlumaczenie #elif L==9 // pt "Cut thread of general forum of users" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCutThrForGenTch] = @@ -27421,6 +30027,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Cut thread of general forum of teachers" // Potrzebujesz tlumaczenie #elif L==9 // pt "Cut thread of general forum of teachers" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCutThrForSWAUsr] = @@ -27442,6 +30050,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Cut thread of forum of users of the platform" // Potrzebujesz tlumaczenie #elif L==9 // pt "Cut thread of forum of users of the platform" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCutThrForSWATch] = @@ -27463,6 +30073,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Cut thread of forum of teachers of the platform" // Potrzebujesz tlumaczenie #elif L==9 // pt "Cut thread of forum of teachers of the platform" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPasThrForCrsUsr] = @@ -27484,6 +30096,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Paste thread of forum of users of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Paste thread of forum of users of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPasThrForCrsTch] = @@ -27505,6 +30119,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Paste thread of forum of teachers of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Paste thread of forum of teachers of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPasThrForDegUsr] = @@ -27526,6 +30142,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Paste thread of forum of users of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Paste thread of forum of users of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPasThrForDegTch] = @@ -27547,6 +30165,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Paste thread of forum of teachers of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Paste thread of forum of teachers of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPasThrForCtrUsr] = @@ -27568,6 +30188,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Paste thread of forum of users of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Paste thread of forum of users of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPasThrForCtrTch] = @@ -27589,6 +30211,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Paste thread of forum of teachers of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Paste thread of forum of teachers of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPasThrForInsUsr] = @@ -27610,6 +30234,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Paste thread of forum of users of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Paste thread of forum of users of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPasThrForInsTch] = @@ -27631,6 +30257,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Paste thread of forum of teachers of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Paste thread of forum of teachers of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPasThrForGenUsr] = @@ -27652,6 +30280,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Paste thread of general forum of users" // Potrzebujesz tlumaczenie #elif L==9 // pt "Paste thread of general forum of users" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPasThrForGenTch] = @@ -27673,6 +30303,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Paste thread of general forum of teachers" // Potrzebujesz tlumaczenie #elif L==9 // pt "Paste thread of general forum of teachers" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPasThrForSWAUsr] = @@ -27694,6 +30326,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Paste thread of forum of users of the platform" // Potrzebujesz tlumaczenie #elif L==9 // pt "Paste thread of forum of users of the platform" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPasThrForSWATch] = @@ -27715,6 +30349,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Paste thread of forum of teachers of the platform" // Potrzebujesz tlumaczenie #elif L==9 // pt "Paste thread of forum of teachers of the platform" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDelPstForCrsUsr] = @@ -27736,6 +30372,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove message of forum of users of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove message of forum of users of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDelPstForCrsTch] = @@ -27757,6 +30395,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove message of forum of teachers of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove message of forum of teachers of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDelPstForDegUsr] = @@ -27778,6 +30418,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove message of forum of users of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove message of forum of users of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDelPstForDegTch] = @@ -27799,6 +30441,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove message of forum of teachers of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove message of forum of teachers of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDelPstForCtrUsr] = @@ -27820,6 +30464,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove message of forum of users of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove message of forum of users of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDelPstForCtrTch] = @@ -27841,6 +30487,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove message of forum of teachers of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove message of forum of teachers of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDelPstForInsUsr] = @@ -27862,6 +30510,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove message of forum of users of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove message of forum of users of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDelPstForInsTch] = @@ -27883,6 +30533,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove message of forum of teachers of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove message of forum of teachers of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDelPstForGenUsr] = @@ -27904,6 +30556,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove message of general forum of users" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove message of general forum of users" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDelPstForGenTch] = @@ -27925,6 +30579,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove message of general forum of teachers" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove message of general forum of teachers" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDelPstForSWAUsr] = @@ -27946,6 +30602,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove message of forum of users of the platform" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove message of forum of users of the platform" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDelPstForSWATch] = @@ -27967,6 +30625,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove message of forum of teachers of the platform" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove message of forum of teachers of the platform" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEnbPstForCrsUsr] = @@ -27988,6 +30648,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Enable message of forum of users of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Enable message of forum of users of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEnbPstForCrsTch] = @@ -28009,6 +30671,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Enable message of forum of teachers of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Enable message of forum of teachers of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEnbPstForDegUsr] = @@ -28030,6 +30694,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Enable message of forum of users of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Enable message of forum of users of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEnbPstForDegTch] = @@ -28051,6 +30717,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Enable message of forum of teachers of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Enable message of forum of teachers of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEnbPstForCtrUsr] = @@ -28072,6 +30740,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Enable message of forum of users of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Enable message of forum of users of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEnbPstForCtrTch] = @@ -28093,6 +30763,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Enable message of forum of teachers of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Enable message of forum of teachers of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEnbPstForInsUsr] = @@ -28114,6 +30786,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Enable message of forum of users of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Enable message of forum of users of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEnbPstForInsTch] = @@ -28135,6 +30809,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Enable message of forum of teachers of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Enable message of forum of teachers of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEnbPstForGenUsr] = @@ -28156,6 +30832,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Enable message of general forum of users" // Potrzebujesz tlumaczenie #elif L==9 // pt "Enable message of general forum of users" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEnbPstForGenTch] = @@ -28177,6 +30855,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Enable message of general forum of teachers" // Potrzebujesz tlumaczenie #elif L==9 // pt "Enable message of general forum of teachers" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEnbPstForSWAUsr] = @@ -28198,6 +30878,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Enable message of forum of users of the platform" // Potrzebujesz tlumaczenie #elif L==9 // pt "Enable message of forum of users of the platform" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEnbPstForSWATch] = @@ -28219,6 +30901,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Enable message of forum of teachers of the platform" // Potrzebujesz tlumaczenie #elif L==9 // pt "Enable message of forum of teachers of the platform" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDisPstForCrsUsr] = @@ -28240,6 +30924,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Disable message of forum of users of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Disable message of forum of users of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDisPstForCrsTch] = @@ -28261,6 +30947,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Disable message of forum of teachers of course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Disable message of forum of teachers of course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDisPstForDegUsr] = @@ -28282,6 +30970,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Disable message of forum of users of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Disable message of forum of users of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDisPstForDegTch] = @@ -28303,6 +30993,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Disable message of forum of teachers of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Disable message of forum of teachers of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDisPstForCtrUsr] = @@ -28324,6 +31016,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Disable message of forum of users of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Disable message of forum of users of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDisPstForCtrTch] = @@ -28345,6 +31039,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Disable message of forum of teachers of center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Disable message of forum of teachers of center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDisPstForInsUsr] = @@ -28366,6 +31062,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Disable message of forum of users of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Disable message of forum of users of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDisPstForInsTch] = @@ -28387,6 +31085,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Disable message of forum of teachers of institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Disable message of forum of teachers of institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDisPstForGenUsr] = @@ -28408,6 +31108,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Disable message of general forum of users" // Potrzebujesz tlumaczenie #elif L==9 // pt "Disable message of general forum of users" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDisPstForGenTch] = @@ -28429,6 +31131,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Disable message of general forum of teachers" // Potrzebujesz tlumaczenie #elif L==9 // pt "Disable message of general forum of teachers" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDisPstForSWAUsr] = @@ -28450,6 +31154,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Disable message of forum of users of the platform" // Potrzebujesz tlumaczenie #elif L==9 // pt "Disable message of forum of users of the platform" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDisPstForSWATch] = @@ -28471,6 +31177,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Disable message of forum of teachers of the platform" // Potrzebujesz tlumaczenie #elif L==9 // pt "Disable message of forum of teachers of the platform" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCht] = @@ -28492,6 +31200,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Enter in a chat room to chat" // Potrzebujesz tlumaczenie #elif L==9 // pt "Enter in a chat room to chat" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqMsgUsr] = @@ -28513,6 +31223,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Write message to other users" // Potrzebujesz tlumaczenie #elif L==9 // pt "Write message to other users" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeSntMsg] = @@ -28534,6 +31246,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See the messages sent" // Potrzebujesz tlumaczenie #elif L==9 // pt "See the messages sent" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRcvMsgUsr] = @@ -28555,6 +31269,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send message to other users" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send message to other users" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDelAllSntMsg] = @@ -28576,6 +31292,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of all messages sent" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of all messages sent" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqDelAllRcvMsg] = @@ -28597,6 +31315,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of all messages received" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of all messages received" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDelAllSntMsg] = @@ -28618,6 +31338,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove all messages sent" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove all messages sent" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDelAllRcvMsg] = @@ -28639,6 +31361,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove all messages received" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove all messages received" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDelSntMsg] = @@ -28660,6 +31384,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove message sent" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove message sent" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDelRcvMsg] = @@ -28681,6 +31407,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove message received" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove message received" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActExpSntMsg] = @@ -28702,6 +31430,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See (expand) sent message" // Potrzebujesz tlumaczenie #elif L==9 // pt "See (expand) sent message" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActExpRcvMsg] = @@ -28723,6 +31453,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See (expand) received message" // Potrzebujesz tlumaczenie #elif L==9 // pt "See (expand) received message" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActConSntMsg] = @@ -28744,6 +31476,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Hide (contract) sent message" // Potrzebujesz tlumaczenie #elif L==9 // pt "Hide (contract) sent message" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActConRcvMsg] = @@ -28765,6 +31499,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Hide (contract) received message" // Potrzebujesz tlumaczenie #elif L==9 // pt "Hide (contract) received message" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActLstBanUsr] = @@ -28786,6 +31522,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "List banned users" // Potrzebujesz tlumaczenie #elif L==9 // pt "List banned users" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActBanUsrMsg] = @@ -28807,6 +31545,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Ban sender of message when showing received messages" // Potrzebujesz tlumaczenie #elif L==9 // pt "Ban sender of message when showing received messages" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActUnbUsrMsg] = @@ -28828,6 +31568,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Unban sender of message when showing received messages" // Potrzebujesz tlumaczenie #elif L==9 // pt "Unban sender of message when showing received messages" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActUnbUsrLst] = @@ -28849,6 +31591,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Unban a user when listing banned users" // Potrzebujesz tlumaczenie #elif L==9 // pt "Unban a user when listing banned users" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActMaiUsr] = @@ -28870,6 +31614,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See email addresses to send an email" // Potrzebujesz tlumaczenie #elif L==9 // pt "See email addresses to send an email" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqUseGbl] = @@ -28891,6 +31637,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request seeing use of the platform" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request seeing use of the platform" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeePhoDeg] = @@ -28912,6 +31660,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See a class photo with average photos of students of each degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "See a class photo with average photos of students of each degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqStaCrs] = @@ -28933,6 +31683,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request statistics of courses" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request statistics of courses" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqAccGbl] = @@ -28954,6 +31706,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request query of clicks to the complete platform" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request query of clicks to the complete platform" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqMyUsgRep] = @@ -28975,6 +31729,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request my usage report" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request my usage report" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActMFUAct] = @@ -28996,6 +31752,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See most frequently used actions" // Potrzebujesz tlumaczenie #elif L==9 // pt "See most frequently used actions" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeUseGbl] = @@ -29017,6 +31775,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See use of the platform" // Potrzebujesz tlumaczenie #elif L==9 // pt "See use of the platform" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPrnPhoDeg] = @@ -29038,6 +31798,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See print view of class photo with average photos of students of each degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "See print view of class photo with average photos of students of each degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCalPhoDeg] = @@ -29059,6 +31821,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Compute average photos of students of degree" // Potrzebujesz tlumaczenie #elif L==9 // pt "Compute average photos of students of degree" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeAccGbl] = @@ -29080,6 +31844,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Query clicks to the complete platform" // Potrzebujesz tlumaczenie #elif L==9 // pt "Query clicks to the complete platform" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqAccCrs] = @@ -29101,6 +31867,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request query of clicks in the current course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request query of clicks in the current course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeAccCrs] = @@ -29122,6 +31890,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Query clicks in the current course" // Potrzebujesz tlumaczenie #elif L==9 // pt "Query clicks in the current course" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeAllStaCrs] = @@ -29143,6 +31913,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See statistics of courses" // Potrzebujesz tlumaczenie #elif L==9 // pt "See statistics of courses" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActLstClk] = @@ -29164,6 +31936,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "List the last clicks" // Potrzebujesz tlumaczenie #elif L==9 // pt "List the last clicks" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRefLstClk] = @@ -29185,6 +31959,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Refresh the last clicks in real time" // Potrzebujesz tlumaczenie #elif L==9 // pt "Refresh the last clicks in real time" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeMyUsgRep] = @@ -29206,6 +31982,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See my usage report" // Potrzebujesz tlumaczenie #elif L==9 // pt "See my usage report" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmRolSes] = @@ -29227,6 +32005,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See form to log out and to change the current role" // Potrzebujesz tlumaczenie #elif L==9 // pt "See form to log out and to change the current role" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActMyCrs] = @@ -29248,6 +32028,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Select one of my courses" // Potrzebujesz tlumaczenie #elif L==9 // pt "Select one of my courses" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeMyTT] = @@ -29269,6 +32051,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See the timetable of all my courses" // Potrzebujesz tlumaczenie #elif L==9 // pt "See the timetable of all my courses" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActSeeMyAgd] = @@ -29290,6 +32074,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See my full agenda (personal organizer)" // Potrzebujesz tlumaczenie #elif L==9 // pt "See my full agenda (personal organizer)" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmMyAcc] = @@ -29311,6 +32097,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See form to create or change my account" // Potrzebujesz tlumaczenie #elif L==9 // pt "See form to create or change my account" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqEdiRecSha] = @@ -29332,6 +32120,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request edition of the record with the personal data of the user" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request edition of the record with the personal data of the user" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqEdiSet] = @@ -29353,6 +32143,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See forms to edit settings" // Potrzebujesz tlumaczenie #elif L==9 // pt "See forms to edit settings" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgMyRol] = @@ -29374,6 +32166,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change user's role" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change user's role" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActFrmNewEvtMyAgd] = @@ -29395,6 +32189,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit new event in my agenda" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit new event in my agenda" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiOneEvtMyAgd] = @@ -29416,6 +32212,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit one event from my agenda" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit one event from my agenda" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActNewEvtMyAgd] = @@ -29437,6 +32235,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new event in my agenda" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new event in my agenda" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgEvtMyAgd] = @@ -29458,6 +32258,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change event from my agenda" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change event from my agenda" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemEvtMyAgd] = @@ -29479,6 +32281,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of an event from my agenda" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of an event from my agenda" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemEvtMyAgd] = @@ -29500,6 +32304,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove event from my agenda" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove event from my agenda" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActHidEvtMyAgd] = @@ -29521,6 +32327,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Hide event from my agenda" // Potrzebujesz tlumaczenie #elif L==9 // pt "Hide event from my agenda" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActShoEvtMyAgd] = @@ -29542,6 +32350,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Unhide event from my agenda" // Potrzebujesz tlumaczenie #elif L==9 // pt "Unhide event from my agenda" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPrvEvtMyAgd] = @@ -29563,6 +32373,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Make private an event from my agenda" // Potrzebujesz tlumaczenie #elif L==9 // pt "Make private an event from my agenda" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPubEvtMyAgd] = @@ -29584,6 +32396,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Make public an event from my agenda" // Potrzebujesz tlumaczenie #elif L==9 // pt "Make public an event from my agenda" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPrnAgdQR] = @@ -29605,6 +32419,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See agenda QR code ready to print" // Potrzebujesz tlumaczenie #elif L==9 // pt "See agenda QR code ready to print" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChkUsrAcc] = @@ -29626,6 +32442,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Check if already exists a new account without password associated to a ID" // Potrzebujesz tlumaczenie #elif L==9 // pt "Check if already exists a new account without password associated to a ID" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreMyAcc] = @@ -29647,6 +32465,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit new user account" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit new user account" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCreUsrAcc] = @@ -29668,6 +32488,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new user account" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new user account" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemMyID] = @@ -29689,6 +32511,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove one of my user's IDs" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove one of my user's IDs" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgMyID] = @@ -29710,6 +32534,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Create new user's ID for me" // Potrzebujesz tlumaczenie #elif L==9 // pt "Create new user's ID for me" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemMyNck] = @@ -29731,6 +32557,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove one of my old nicknames" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove one of my old nicknames" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgMyNck] = @@ -29752,6 +32580,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change my nickname" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change my nickname" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemMyMai] = @@ -29773,6 +32603,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove one of my old emails" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove one of my old emails" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgMyMai] = @@ -29794,6 +32626,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change my email address" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change my email address" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActCnfMai] = @@ -29815,6 +32649,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Confirm email address" // Potrzebujesz tlumaczenie #elif L==9 // pt "Confirm email address" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgMyPwd] = @@ -29836,6 +32672,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change my password" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change my password" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemMyAcc] = @@ -29857,6 +32695,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of my account" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of my account" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemMyAcc] = @@ -29878,6 +32718,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove my account" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove my account" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgMyData] = @@ -29899,6 +32741,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Update my personal data" // Potrzebujesz tlumaczenie #elif L==9 // pt "Update my personal data" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqMyPho] = @@ -29920,6 +32764,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request sending of my photo" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request sending of my photo" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActDetMyPho] = @@ -29941,6 +32787,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Send my photo and detect faces on it" // Potrzebujesz tlumaczenie #elif L==9 // pt "Send my photo and detect faces on it" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActUpdMyPho] = @@ -29962,6 +32810,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Update my photo" // Potrzebujesz tlumaczenie #elif L==9 // pt "Update my photo" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqRemMyPho] = @@ -29983,6 +32833,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request removal of my photo" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request removal of my photo" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActRemMyPho] = @@ -30004,6 +32856,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Remove my photo" // Potrzebujesz tlumaczenie #elif L==9 // pt "Remove my photo" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgCtyMyIns] = @@ -30025,6 +32879,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change country of my institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change country of my institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgMyIns] = @@ -30046,6 +32902,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change my institution" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change my institution" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgMyCtr] = @@ -30067,6 +32925,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change my center" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change my center" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgMyDpt] = @@ -30088,6 +32948,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change my department" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change my department" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgMyOff] = @@ -30109,6 +32971,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change my office" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change my office" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgMyOffPho] = @@ -30130,6 +32994,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change my office phone" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change my office phone" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqEdiMyNet] = @@ -30151,6 +33017,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request edition of my social networks" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request edition of my social networks" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgMyNet] = @@ -30172,6 +33040,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change my web and social networks" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change my web and social networks" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgThe] = @@ -30193,6 +33063,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change theme" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change theme" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActReqChgLan] = @@ -30214,6 +33086,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Request change of language" // Potrzebujesz tlumaczenie #elif L==9 // pt "Request change of language" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgLan] = @@ -30235,6 +33109,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change language" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change language" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChg1stDay] = @@ -30256,6 +33132,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change first day of the week" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change first day of the week" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgDatFmt] = @@ -30277,6 +33155,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change date format" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change date format" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgCol] = @@ -30298,6 +33178,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change side columns" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change side columns" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgIco] = @@ -30319,6 +33201,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change icon set" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change icon set" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgMnu] = @@ -30340,6 +33224,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change menu" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change menu" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgPriPho] = @@ -30361,6 +33247,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change privacy of my photo" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change privacy of my photo" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgBasPriPrf] = @@ -30382,6 +33270,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change privacy of my basic public profile" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change privacy of my basic public profile" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgExtPriPrf] = @@ -30403,6 +33293,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change privacy of my extended public profile" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change privacy of my extended public profile" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgCooPrf] = @@ -30424,6 +33316,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change setting about third party cookies" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change setting about third party cookies" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgNtfPrf] = @@ -30445,6 +33339,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change whether to notify by email" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change whether to notify by email" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPrnUsrQR] = @@ -30466,6 +33362,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See my QR code ready to print" // Potrzebujesz tlumaczenie #elif L==9 // pt "See my QR code ready to print" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActPrnMyTT] = @@ -30487,6 +33385,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "See the print view of the timetable of all my courses" // Potrzebujesz tlumaczenie #elif L==9 // pt "See the print view of the timetable of all my courses" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActEdiTut] = @@ -30508,6 +33408,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Edit my office timetable" // Potrzebujesz tlumaczenie #elif L==9 // pt "Edit my office timetable" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgTut] = @@ -30529,6 +33431,8 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change my office timetable" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change my office timetable" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif , [ActChgMyTT1stDay] = @@ -30550,5 +33454,7 @@ const char *Txt_Actions[Act_NUM_ACTIONS] = "Change first day of week and show office timetable" // Potrzebujesz tlumaczenie #elif L==9 // pt "Change first day of week and show office timetable" // Precisa de tradução +#elif L==10 // tr + "" // Çeviri lazim! #endif }; diff --git a/swad_text_no_html.c b/swad_text_no_html.c index 047cb793..cc11dc84 100644 --- a/swad_text_no_html.c +++ b/swad_text_no_html.c @@ -95,6 +95,8 @@ const char *Txt_Country_NO_HTML = "Kraj"; #elif L==9 "País"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_Confirmation_of_your_email_NO_HTML = // Don't use HTML entities like è here @@ -116,6 +118,8 @@ const char *Txt_Confirmation_of_your_email_NO_HTML = // Don't use HTML entities "Potwierdzenie Twojego adresu e-mail"; #elif L==9 "Confirmação do seu email"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif // The following variables are compilated together in all languages because they are used in emails... @@ -314,6 +318,8 @@ const char *Txt_If_you_just_requested_from_X_the_confirmation_of_your_email_Y_NO "Se não foi você, não clique no link acima!" " Nesse caso, recomendamos que você verifique em %s" " se você confirmou seu endereço de e-mail.\n\n"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_If_you_no_longer_wish_to_receive_email_notifications_NO_HTML[1 + Lan_NUM_LANGUAGES] = // Don't use HTML entities like è here @@ -358,6 +364,8 @@ const char *Txt_Institutions_NO_HTML = "Instytucje"; #elif L==9 "Instituções"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_MSG_From_NO_HTML[1 + Lan_NUM_LANGUAGES] = // Don't use HTML entities like è here @@ -861,6 +869,8 @@ const char *Txt_The_following_password_has_been_assigned_to_you_to_log_in_X_NO_H " alguém que conhece seu ID, alcunha ou e-mail solicitou uma nova senha enviada para você.\n" "Esta nova senha foi enviada apenas para o endereço de e-mail %s," " que está no seu cartão de registro.\n\n"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_UPLOAD_FILE_could_not_create_file_NO_HTML = // Warning: it is very important to include %s in the following sentences @@ -882,6 +892,8 @@ const char *Txt_UPLOAD_FILE_could_not_create_file_NO_HTML = // Warning: it is ve "%s: nie mozna utworzyc plik."; #elif L==9 "%s: não foi possível criar arquivo."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_UPLOAD_FILE_Forbidden_NO_HTML = @@ -903,6 +915,8 @@ const char *Txt_UPLOAD_FILE_Forbidden_NO_HTML = "Nie mozesz tutaj tworzyc plików."; #elif L==9 "Você não pode criar arquivos aqui."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_UPLOAD_FILE_You_must_specify_the_file_NO_HTML = @@ -924,6 +938,8 @@ const char *Txt_UPLOAD_FILE_You_must_specify_the_file_NO_HTML = "Musisz okreslic plik."; #elif L==9 "Você deve especificar o arquivo."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_UPLOAD_FILE_X_extension_not_allowed_NO_HTML = // Warning: it is very important to include %s in the following sentences @@ -945,6 +961,8 @@ const char *Txt_UPLOAD_FILE_X_extension_not_allowed_NO_HTML = // Warning: it is "%s: rozszerzenie pliku jest niedozwolone."; #elif L==9 "%s: extensão não permitida."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_UPLOAD_FILE_X_file_already_exists_NO_HTML = // Warning: it is very important to include %s in the following sentences @@ -966,6 +984,8 @@ const char *Txt_UPLOAD_FILE_X_file_already_exists_NO_HTML = // Warning: it is ve "%s: plik juz istnieje."; #elif L==9 "%s: o arquivo já existe."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_UPLOAD_FILE_File_too_large_maximum_X_MiB_NO_HTML = // Warning: it is very important to include %lu in the following sentences @@ -996,6 +1016,8 @@ const char *Txt_UPLOAD_FILE_File_too_large_maximum_X_MiB_NO_HTML = // Warning: i #elif L==9 "Arquivo muito grande (máximo %lu MiB) /" " outro problema de upload."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_UPLOAD_FILE_Invalid_name_NO_HTML = // Warning: it is very important to include %s in the following sentences @@ -1017,6 +1039,8 @@ const char *Txt_UPLOAD_FILE_Invalid_name_NO_HTML = // Warning: it is very import "Bledna nazwa."; #elif L==9 "Nome inválido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_UPLOAD_FILE_X_invalid_name_NO_HTML = // Warning: it is very important to include %s in the following sentences @@ -1038,6 +1062,8 @@ const char *Txt_UPLOAD_FILE_X_invalid_name_NO_HTML = // Warning: it is very impo "%s: bledna nazwa."; #elif L==9 "%s: nome inválido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_UPLOAD_FILE_X_MIME_type_Y_not_allowed_NO_HTML = // Warning: it is very important to include two %s in the following sentences @@ -1059,6 +1085,8 @@ const char *Txt_UPLOAD_FILE_X_MIME_type_Y_not_allowed_NO_HTML = // Warning: it i "%s: Typ MIME %s jest niedozwolony."; #elif L==9 "%s: Tipo MIME %s não permitido."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_UPLOAD_FILE_X_not_HTML_NO_HTML = // Warning: it is very important to include %s in the following sentences @@ -1080,6 +1108,8 @@ const char *Txt_UPLOAD_FILE_X_not_HTML_NO_HTML = // Warning: it is very importan "%s: nie HTML."; #elif L==9 "%s: não HTML."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_UPLOAD_FILE_X_quota_exceeded_NO_HTML = // Warning: it is very important to include %s in the following sentences @@ -1101,6 +1131,8 @@ const char *Txt_UPLOAD_FILE_X_quota_exceeded_NO_HTML = // Warning: it is very im "%s: przekroczono przydzial."; #elif L==9 "5s: quota excedida."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_UPLOAD_FILE_Upload_time_too_long_maximum_X_minutes_NO_HTML = // Warning: it is very important to include %lu in the following sentences @@ -1122,6 +1154,8 @@ const char *Txt_UPLOAD_FILE_Upload_time_too_long_maximum_X_minutes_NO_HTML = // "Upload time too long (maximum %lu minuty)."; // Potrzebujesz tlumaczenie #elif L==9 "Tempo de upload muito longo (máximo %lu minutos)."; +#elif L==10 // tr + ""; // Çeviri lazim! #endif const char *Txt_user_NO_HTML[Usr_NUM_SEXS][1 + Lan_NUM_LANGUAGES] = // Don't use HTML entities like è here @@ -1138,6 +1172,7 @@ const char *Txt_user_NO_HTML[Usr_NUM_SEXS][1 + Lan_NUM_LANGUAGES] = // Don't use [Lan_LANGUAGE_IT ] = "utente", [Lan_LANGUAGE_PL ] = "uzytkownika", [Lan_LANGUAGE_PT ] = "utilizador/a", + [Lan_LANGUAGE_TR ] = "", // Çeviri lazim! }, [Usr_SEX_FEMALE] = { @@ -1151,6 +1186,7 @@ const char *Txt_user_NO_HTML[Usr_NUM_SEXS][1 + Lan_NUM_LANGUAGES] = // Don't use [Lan_LANGUAGE_IT ] = "utente", [Lan_LANGUAGE_PL ] = "uzytkownika", [Lan_LANGUAGE_PT ] = "utilizadora", + [Lan_LANGUAGE_TR ] = "", // Çeviri lazim! }, [Usr_SEX_MALE] = { @@ -1164,6 +1200,7 @@ const char *Txt_user_NO_HTML[Usr_NUM_SEXS][1 + Lan_NUM_LANGUAGES] = // Don't use [Lan_LANGUAGE_IT ] = "utente", [Lan_LANGUAGE_PL ] = "uzytkownika", [Lan_LANGUAGE_PT ] = "utilizador", + [Lan_LANGUAGE_TR ] = "", // Çeviri lazim! }, [Usr_SEX_ALL] = { @@ -1177,6 +1214,7 @@ const char *Txt_user_NO_HTML[Usr_NUM_SEXS][1 + Lan_NUM_LANGUAGES] = // Don't use [Lan_LANGUAGE_IT ] = "utente", [Lan_LANGUAGE_PL ] = "uzytkownika", [Lan_LANGUAGE_PT ] = "utilizador/a", + [Lan_LANGUAGE_TR ] = "", // Çeviri lazim! } }; @@ -1199,4 +1237,6 @@ const char *Txt_Users_NO_HTML = "Uzytkowników"; #elif L==9 "Utilizadores"; +#elif L==10 // tr + ""; // Çeviri lazim! #endif