// swad_text.c: text messages on screen, in several languages /* SWAD (Shared Workspace At a Distance in Spanish), is a web platform developed at the University of Granada (Spain), and used to support university teaching. This file is part of SWAD core. Copyright (C) 1999-2014 Antonio Cañas Vargas Català translation: Antonio Cañas Vargas Joan Lluís Díaz Rodríguez German translation: Antonio Cañas Vargas Rafael Barranco-Droege English translation (finished): Antonio Cañas Vargas Spanish translation (finished): Antonio Cañas Vargas French translation: Antonio Cañas Vargas Guarani translation: Antonio Cañas Vargas Italian translation (finished): Antonio Cañas Vargas Nicola Comunale Rizzo Francisco Manuel Herrero Pérez Giuseppe Antonio Pagin Antonella Grande Polish translation: Antonio Cañas Vargas Wojtek Kieca Tomasz Olechowski Mateusz Stanko Portuguese translation: Antonio Cañas Vargas This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . */ /* Sabies que pots utilitzar SWAD en català? https://swad.ugr.es/ca Wussten Sie, dass Sie verwenden können, SWAD auf Deutsch? https://swad.ugr.es/de Did you know that you can use SWAD in English? https://swad.ugr.es/en Saviez-vous que vous pouvez utiliser SWAD en français? https://swad.ugr.es/fr Lo sapevate che è possibile utilizzare SWAD in italiano? https://swad.ugr.es/it Czy wiesz, ze mozesz uzywac SWAD po polsku? https://swad.ugr.es/pl Sabia que você pode usar SWAD em portugués? https://swad.ugr.es/pt */ /*****************************************************************************/ /********************************* Headers ***********************************/ /*****************************************************************************/ #include // For NULL #include "swad_assignment.h" #include "swad_attendance.h" #include "swad_country.h" #include "swad_course.h" #include "swad_degree.h" #include "swad_file_browser.h" #include "swad_forum.h" #include "swad_holiday.h" #include "swad_info.h" #include "swad_notification.h" #include "swad_photo.h" #include "swad_QR.h" #include "swad_record.h" #include "swad_statistic.h" #include "swad_survey.h" #include "swad_test.h" #include "swad_text.h" #include "swad_timetable.h" /*****************************************************************************/ /******************************** Constants **********************************/ /*****************************************************************************/ const char *Txt_NEW_LINE = "\r\n"; // End of line in a file. If we put only \n the file does not look good in some Windows text editors // The HTML entity for "ß" is ß It stands for "S-Z ligature", because this symbol comes from the ligature of a Gothic S and a Z. // For polish HTML entities, see http://pl.wikipedia.org/wiki/Alfabet_polski // Guarani: // E with tilde: Ẽ // e with tilde: &etilde; // I with tilde: Ĩ // i with tilde: ĩ /***** Languages *****/ const char *Txt_STR_LANG_ID[Txt_NUM_LANGUAGES] = // ISO 639-1 language codes { "ca", "de", "en", "es", "fr", "gn", "it", "pl", "pt", }; #if L==0 const unsigned Txt_Current_CGI_SWAD_Language = Txt_LANGUAGE_CA; #elif L==1 const unsigned Txt_Current_CGI_SWAD_Language = Txt_LANGUAGE_DE; #elif L==2 const unsigned Txt_Current_CGI_SWAD_Language = Txt_LANGUAGE_EN; #elif L==3 const unsigned Txt_Current_CGI_SWAD_Language = Txt_LANGUAGE_ES; #elif L==4 const unsigned Txt_Current_CGI_SWAD_Language = Txt_LANGUAGE_FR; #elif L==5 const unsigned Txt_Current_CGI_SWAD_Language = Txt_LANGUAGE_GN; #elif L==6 const unsigned Txt_Current_CGI_SWAD_Language = Txt_LANGUAGE_IT; #elif L==7 const unsigned Txt_Current_CGI_SWAD_Language = Txt_LANGUAGE_PL; #elif L==8 const unsigned Txt_Current_CGI_SWAD_Language = Txt_LANGUAGE_PT; #endif const char *Txt_STR_LANG_NAME[Txt_NUM_LANGUAGES] = { "Català", "Deutsch", "English", "Español", "Français", "Avañe'&etilde;", "Italiano", "Polski", "Português", }; const char *Txt_Do_you_want_to_change_the_language_to_LANGUAGE[Txt_NUM_LANGUAGES] = { "Voleu canviar l'idioma a català?", "Wollen Sie die Sprache auf Deutsch umstellen?", "Do you want to change the language to English?", "¿Desea cambiar el idioma a español?", "Voulez-vous changer la langue au français?", "¿Oipota moambue pe ñe'&etilde; pe avañe'&etilde;?", "Vuoi cambiare la lingua in italiano?", "Czy chcesz zmienić język na polski?", "Você quer mudar o idioma para português?", }; const char *Txt_Do_you_want_to_change_your_language_to_LANGUAGE[Txt_NUM_LANGUAGES] = { "Voleu canviar el seu idioma a català?", "Wollen Sie Ihre Sprache auf Deutsch umstellen?", "Do you want to change your language to English?", "¿Desea cambiar su idioma a español?", "Voulez-vous changer votre langue au français?", "¿Oipota moambue pe ñe'&etilde; pe avañe'&etilde;?", "Vuoi cambiare la tua lingua in italiano?", "Czy chcesz zmienić język na polski?", "Você quer mudar suo idioma para português?", }; const char *Txt_Switch_to_LANGUAGE[Txt_NUM_LANGUAGES] = { "Canviar a català", "Umschalten auf Deutsch", "Switch to English", "Cambiar a español", "Passer au français", "Moambue pe ñe'&etilde; avañe'&etilde;", "Passare a italiano", "Przełącz na polski", "Mudar para português", }; const char *Txt_Switching_to_LANGUAGE[Txt_NUM_LANGUAGES] = { "Canviant a català...", "Umschaltung auf Deutsch...", "Switching to English...", "Cambiando a español...", "Passant au français...", "Moambue pe ñe'&etilde; avañe'&etilde;...", "Passando a italiano...", "Przełącz na polski...", "Mudando para português...", }; /***************************************************************************** # # ### # # ##### # # # ## # # # # # # ## ## # # # # # # ##### # # # # # # ## # # # # # # # # # # ### # # # # # ##### ******************************************************************************/ /**** Don't use HTML entities like ó when variable ends in NO_HTML ****/ /**** Charset must be ISO-8859-1 in this file ****/ /*****************************************************************************/ const char *Txt_Country_NO_HTML = #if L==0 "País"; #elif L==1 "Land"; #elif L==2 "Country"; #elif L==3 "País"; #elif L==4 "Pays;"; #elif L==5 "Teta"; #elif L==6 "Paese"; #elif L==7 "Kraj"; #elif L==8 "País"; #endif const char *Txt_Confirmation_of_your_email_NO_HTML = // Don't use HTML entities like è here #if L==0 "Confirmación de su dirección de correo"; // Necessita traduccio #elif L==1 "Confirmation of your e-mail"; // Need Übersetzung #elif L==2 "Confirmation of your e-mail"; #elif L==3 "Confirmación de su dirección de correo"; #elif L==4 "Confirmation of your e-mail"; // Besoin de traduction #elif L==5 "Confirmación de su dirección de correo"; // Okoteve traducción #elif L==6 "Confirmation of your e-mail"; // Bisogno di traduzione #elif L==7 "Confirmation of your e-mail"; // Potrzebujesz tlumaczenie #elif L==8 "Confirmation of your e-mail"; // Necessita de tradução #endif // The following variables are compilated together in all languages because they are used in emails... // ...and each email is sent in the language of the recipient const char *Txt_Course_NO_HTML[Txt_NUM_LANGUAGES] = // Don't use HTML entities like è here { "Assignatura", "Veranstaltung", "Course", "Asignatura", "Matière", "Mbo'esyry", "Corso", "Kurs", "Disciplina", }; const char *Txt_Dear_NO_HTML[Usr_NUM_SEXS][Txt_NUM_LANGUAGES] = // Don't use HTML entities like ó here { { // Usr_SEX_UNKNOWN "Estimat/da", "Sehr geehrte/r", "Dear", "Estimado/a", "Cher/Chère", "Estimado/a", // Okoteve traducción "Egregio/a", "Drogi", "Prezado/a", }, { // Usr_SEX_FEMALE "Estimada", "Sehr geehrte", "Dear", "Estimada", "Chère", "Estimada", // Okoteve traducción "Egregia", "Drogi", "Prezada", }, { // Usr_SEX_MALE "Estimat", "Sehr geehrter", "Dear", "Estimado", "Cher", "Estimado", // Okoteve traducción "Egregio", "Drogi", "Prezado", }, { // Usr_SEX_ALL "Estimat/da", "Sehr geehrte/r", "Dear", "Estimado/a", "Cher/Chère", "Estimado/a", // Okoteve traducción "Egregio/a", "Drogi", "Prezado/a", } }; const char *Txt_Forum_NO_HTML[Txt_NUM_LANGUAGES] = // Don't use HTML entities like ó here { "Fòrum", "Forum", "Forum", "Foro", "Forum", "Foro", // Okoteve traducción "Forum", "Forum", "Fórum", }; const char *Txt_General_NO_HTML[Txt_NUM_LANGUAGES] = // Don't use HTML entities like é here { "General", "Allgemein", "General", "General", "Général", "General", // Okoteve traducción "Generale", "Ogólne", "Geral", }; const char *Txt_Go_to_NO_HTML[Txt_NUM_LANGUAGES] = // Don't use HTML entities like à here { "Anar a", "Gehe zum", "Go to", "Ir a", "Aller à", "Ir a", // Okoteve traducción "Vai a", "Idz do", "Ir para", }; const char *Txt_If_you_just_request_from_X_the_confirmation_of_your_email_Y_NO_HTML = // Don't use HTML entities like è here #if L==0 "Si usted acaba de solicitar desde %s" " la confirmación de su correo electrónico %s," " pulse en el siguiente enlace" " para confirmar dicha dirección:" " %s/?ActCod=%ld&MailKey=%s\n\n" "Si no ha sido usted, ¡no pulse en el enlace anterior!" " En este caso, le recomendamos que compruebe en %s" " si ha confirmado su dirección de correo.\n\n"; // Necessita traduccio #elif L==1 "If you just request from %s" " the confirmation of your e-mail %s," " click on the following link" " to confirm that direction:" " %s/?ActCod=%ld&MailKey=%s\n\n" "If it was not you, do not click on the link above!" " In this case, we recommend that you check in %s" " if you have confirmed your e-mail address.\n\n"; // Need Übersetzung #elif L==2 "If you just request from %s" " the confirmation of your e-mail %s," " click on the following link" " to confirm that direction:" " %s/?ActCod=%ld&MailKey=%s\n\n" "If it was not you, do not click on the link above!" " In this case, we recommend that you check in %s" " if you have confirmed your e-mail address.\n\n"; #elif L==3 "Si usted acaba de solicitar desde %s" " la confirmación de su correo electrónico %s," " pulse en el siguiente enlace" " para confirmar dicha dirección:" " %s/?ActCod=%ld&MailKey=%s\n\n" "Si no ha sido usted, ¡no pulse en el enlace anterior!" " En este caso, le recomendamos que compruebe en %s" " si ha confirmado su dirección de correo.\n\n"; #elif L==4 "If you just request from %s" " the confirmation of your e-mail %s," " click on the following link" " to confirm that direction:" " %s/?ActCod=%ld&MailKey=%s\n\n" "If it was not you, do not click on the link above!" " In this case, we recommend that you check in %s" " if you have confirmed your e-mail address.\n\n"; // Besoin de traduction #elif L==5 "Si usted acaba de solicitar desde %s" " la confirmación de su correo electrónico %s," " pulse en el siguiente enlace" " para confirmar dicha dirección:" " %s/?ActCod=%ld&MailKey=%s\n\n" "Si no ha sido usted, ¡no pulse en el enlace anterior!" " En este caso, le recomendamos que compruebe en %s" " si ha confirmado su dirección de correo.\n\n"; // Okoteve traducción #elif L==6 "If you just request from %s" " the confirmation of your e-mail %s," " click on the following link" " to confirm that direction:" " %s/?ActCod=%ld&MailKey=%s\n\n" "If it was not you, do not click on the link above!" " In this case, we recommend that you check in %s" " if you have confirmed your e-mail address.\n\n"; // Bisogno di traduzione #elif L==7 "If you just request from %s" " the confirmation of your e-mail %s," " click on the following link" " to confirm that direction:" " %s/?ActCod=%ld&MailKey=%s\n\n" "If it was not you, do not click on the link above!" " In this case, we recommend that you check in %s" " if you have confirmed your e-mail address.\n\n"; // Potrzebujesz tlumaczenie #elif L==8 "If you just request from %s" " the confirmation of your e-mail %s," " click on the following link" " to confirm that direction:" " %s/?ActCod=%ld&MailKey=%s\n\n" "If it was not you, do not click on the link above!" " In this case, we recommend that you check in %s" " if you have confirmed your e-mail address.\n\n"; // Necessita de tradução #endif const char *Txt_If_you_no_longer_wish_to_receive_email_notifications_NO_HTML[Txt_NUM_LANGUAGES] = // Don't use HTML entities like è here { "Si no desitgeu rebre més avisos per correu electrònicc," " desactiveu la opció corresponent en les preferències del seu perfil.", "Wenn Sie nicht mehr erhalten möchten, E-Mail-Benachrichtigungen," " Deaktivieren Sie die Option in den Einstellungen Ihres Profils.", "If you no longer wish to receive e-mail notifications," " uncheck the option in the preferences of your profile.", "Si no desea recibir más avisos por correo electrónico," " desactive la opción correspondiente en las preferencias de su perfil.", "Si vous ne souhaitez plus recevoir de notifications par e-mail," " décochez l'option dans les préférences de votre profil.", "Si no desea recibir más avisos por correo electrónico," " desactive la opción correspondiente en las preferencias de su perfil.", // Okoteve traducción "Se non desideri più ricevere notifiche via e-mail," " deselezionare l'opzione nelle preferenze del tuo profilo.", "Jesli nie chcesz otrzymywac powiadomien e-mail," " usun zaznaczenie opcje w ustawieniach swojego profilu.", "Se já não desejar receber notificações por e-mail," " desmarque a opção nas preferências do seu perfil.", }; const char *Txt_Institutions_NO_HTML = #if L==0 "Institucions"; #elif L==1 "Hochschulen"; #elif L==2 "Institutions"; #elif L==3 "Instituciones"; #elif L==4 "Établissements"; #elif L==5 "Mbo'ehao"; #elif L==6 "Istituzioni"; #elif L==7 "Instytucje"; #elif L==8 "Instituções"; #endif const char *Txt_MSG_From_NO_HTML[Txt_NUM_LANGUAGES] = // Don't use HTML entities like è here { "De", "Von", "From", "De", "De", "De", // Okoteve traducción "Da", "Od", "De", }; const char *Txt_Notifications_NO_HTML[Txt_NUM_LANGUAGES] = // Don't use HTML entities like è here { "Notificacions", "Anmeldungen", "Notifications", "Notificaciones", "Notifications", "Momarandu", "Notifiche", "Powiadomienia", "Notificações", }; const char *Txt_New_password_NO_HTML[Txt_NUM_LANGUAGES] = // Don't use HTML entities like ñ here. { "Nova contrasenya", "Neues Passwort", "New password", "Nueva contraseña", "Nouveau mot de passe", "Nueva contraseña", // Okoteve traducción "Nuova password", "Nowe hasło", "Nova senha", }; const char *Txt_NOTIFY_EVENTS_SINGULAR_NO_HTML[Ntf_NUM_NOTIFY_EVENTS][Txt_NUM_LANGUAGES] = // Don't use HTML entities like ü here. { { // Ntf_EVENT_UNKNOWN "Esdeveniment desconegut", "Unbekannt Ereignis", "Unknown event", "Evento desconocido", "Événement inconnu", "Evento desconocido", // Okoteve traducción "Evento sconosciuto", "Nieznane zdarzenia", "Evento desconhecido", }, { // Ntf_EVENT_DOCUMENT_FILE "Nou document", "Neue Dokumentdatei", "New document file", "Nuevo documento", "Nouveau fichier de document", "Nuevo documento", // Okoteve traducción "Nuovo documento", "Nowy plik dokumentu", "Novo arquivo de documento", }, { // Ntf_EVENT_SHARED_FILE "Nou arxiu compartit", "Neue freigegebene Datei", "New shared file", "Nuevo archivo compartido", "Nouveau fichier partagé", "Nuevo archivo compartido", // Okoteve traducción "Nuovo file condiviso", "Nowy Udostepniony plik", "Novo arquivo compartilhado", }, { // Ntf_EVENT_ASSIGNMENT "Nova activitat", "Neue Aufgabe", "New assignment", "Nueva actividad", "Nouvelle activité", "Nueva actividad", // Okoteve traducción "Nuova attività", "Nowe zadania", "Nova atividade", }, { // Ntf_EVENT_EXAM_ANNOUNCEMENT "Nova convocatòria d'examen", "Neue Aufrufe für Prüfung", "New announcement of exam", "Nueva convocatoria de examen", "Nouvelle convocation à un examen", "Nueva convocatoria de examen", // Okoteve traducción "Nuova sessione d'esame", "Nowe ogloszenie egzaminu", "Nova chamada para exame", }, { // Ntf_EVENT_MARKS_FILE "Nou fitxer de calificacions", "Neue Datei mit Bewertung", "New file with marks", "Nuevo archivo de calificaciones", "Nouveau fichier avec des notes", "Nuevo archivo de calificaciones", // Okoteve traducción "Nuovo file con i risultati", "Nowy plik ze znakami", "Novo arquivo de notas", }, { // Ntf_EVENT_ENROLLMENT "Nova inscripció", "New Einschreibung", "New enrollment", "Nueva inscripción", "Nouvelle inscription", "Nueva inscripción", // Okoteve traducción "Nuova iscrizione", "Nowe zapisy", "Nova inscrição", }, { // Ntf_EVENT_ENROLLMENT_REQUEST "Nova petició d'inscripció", "New Registrierungsanforderung", "New enrollment request", "Nueva petición de inscripción", "Nouvelle demande d'inscription", "Nueva petición de inscripción", // Okoteve traducción "Nuova richiesta di iscrizione", "Nowe prosby o rejestracji", "Novo pedido de inscrição", }, { // Ntf_EVENT_NOTICE "Nou avís", "Neuen Ankündigungen", "New notice", "Nuevo aviso", "Nouvel avis", "Nuevo aviso", // Okoteve traducción "Nuovo avviso", "Nowe obwieszczenie", "Novo anúncio", }, { // Ntf_EVENT_FORUM_POST_COURSE "Novo missatge en un fòrum", "Neue Nachricht in einem Forum", "New post in a forum", "Nuevo mensaje en un foro", "Nouveau message dans un forum", "Nuevo mensaje en un foro", // Okoteve traducción "Nuovo post in un forum", "Post nowe na forum", "Novo post em um fórum", }, { // Ntf_EVENT_FORUM_REPLY "Nova resposta en un fòrum", "Neue Antwort in einem Forum", "New response in a forum", "Nueva respuesta en un foro", "Nouvelle réponse dans un forum", "Nueva respuesta en un foro", // Okoteve traducción "Nuova risposta in un forum", "Odpowiedz nowe na forum", "Nova resposta em um fórum", }, { // Ntf_EVENT_MESSAGE "Nou missatge", "Neue Nachricht", "New message", "Nuevo mensaje", "Nouveau message", "Nuevo mensaje", // Okoteve traducción "Nuovo messaggio", "Nowa wiadomosc", "Nova mensagem", }, { // Ntf_EVENT_SURVEY "Nova enquesta", "Neuer Umfrage", "New survey", "Nueva encuesta", "Nouveau sondage", "Nueva encuesta", // Okoteve traducción "Nuovo sondaggio", "Nowe badania", "Novo inquérito", }, }; const char *Txt_NOTIFY_EVENTS_There_is_a_new_event_NO_HTML[Txt_NUM_LANGUAGES] = // Warning: it is very important to include %s in the following sentences { // Don't use HTML entities like ü here. "Hi ha un nou esdeveniment en %s", "Es ist eine neue Ereignis in %s", "There is a new event in %s", "Hay un nuevo evento en %s", "Il y un nouvel événement dans %s", "Hay un nuevo evento en %s", // Okoteve traducción "C'è un nuovo evento in %s", "Jest nowe wydarzenie w %s", "Existe um novo evento em %s", }; const char *Txt_NOTIFY_EVENTS_There_are_X_new_events_NO_HTML[Txt_NUM_LANGUAGES] = // Warning: it is very important to include %u and %s in the following sentences { // Don't use HTML entities like ü here. "Hi ha %u nous esdeveniments en %s", "Es gibt %u neue Ereignisse in %s", "There are %u new events in %s", "Hay %u nuevos eventos en %s", "Il y a %u nouveaux événements dans %s", "Hay %u nuevos eventos en %s", // Okoteve traducción "Ci sono %u nuovi eventi in %s", "Istnieje %u nowych wydarzen w %s", "Há %u novos eventos em %s", }; const char *Txt_only_teachers_NO_HTML[Txt_NUM_LANGUAGES] = // Don't use HTML entities like ó here { ", professors", ", Lehrkräfte", ", teachers", ", profesores", ", enseignants", ", profesores", // Okoteve traducción ", professori", ", nauczyciel", ", professores", }; const char *Txt_Please_do_not_reply_to_this_automatically_generated_email_NO_HTML[Txt_NUM_LANGUAGES] = // Don't use HTML entities like è here { "Si us plau, no respongui a aquest correu electrònic generat automàticament.", "Bitte, antworten Sie nicht auf diese automatisch generierte E-Mail.", "Please do not reply to this automatically generated e-mail.", "Por favor, no responda a este correo electrónico generado automáticamente.", "S'il vous plaît, ne pas répondre à ce courrier électronique généré automatiquement.", "Por favor, no responda a este correo electrónico generado automáticamente.", // Okoteve traducción "Per favore, non rispondere a questa e-mail generata automaticamente.", "Prosimy nie odpowiadac na to automatycznie wygenerowany e-mail.", "Por favor, não responda a este e-mail gerado automaticamente.", }; const char *Txt_TAB_Messages_NO_HTML[Txt_NUM_LANGUAGES] = // Don't use HTML entities like è here { "Missatges", "Nachrichten", "Messages", "Mensajes", "Messages", "Marandu", "Messaggi", "Wiadomosci", "Mensagens", }; const char *Txt_The_following_password_has_been_assigned_to_you_to_log_in_X_NO_HTML = // Warning: it is very important to include %s and %u in the following sentences. Don't use HTML entities like è here #if L==0 "Se li ha assignat la següent contrasenya per entrar a %s: %s\n" "Si desitja activar aquesta nova contrasenya," " ha de entrar a %s amb el seu ID (DNI/cédula), sobrenom o e-mail" " i aquesta nova contrasenya abans de %u dies." " Un cop hagi entrat, pot canviar la contrasenya per una altra.\n" "Si no accedeix amb aquesta nova contrasenya," " seguirà tenint la contrasenya que tingués fins ara.\n" "Si ha rebut aquest missatge sense sol·licitar-lo," " es deu a que algú que coneix el seu ID (DNI/cédula), el seu sobrenom o el seu e-mail" " ha sol·licitat l'enviament de una nova contrasenya per a vostè.\n" "Aquesta nova contrasenya se ha enviat només a la adreça de correu %s," " que és la que apareix a la seva fitxa.\n\n"; #elif L==1 "The following password has been assigned to you to log in %s: %s\n" "If you want to activate the new password," " you must enter %s with your ID/nickname/e-mail" " and this new password before %u days." " Once you have logged in, you can change your password.\n" "If you do not log in with this new password," " the old password will remain valid.\n" "If you have received this message without having requested it," " is that someone who knows your ID, nickname or e-mail has requested a new password sent to you.\n" "This new password has been sent only to the email address %s, which is on your record card.\n\n"; // Need Übersetzung #elif L==2 "The following password has been assigned to you to log in %s: %s\n" "If you want to activate the new password," " you must enter %s with your ID/nickname/e-mail" " and this new password before %u days." " Once you have logged in, you can change your password.\n" "If you do not log in with this new password," " the old password will remain valid.\n" "If you have received this message without having requested it," " is that someone who knows your ID, nickname or e-mail has requested a new password sent to you.\n" "This new password has been sent only to the email address %s, which is on your record card.\n\n"; #elif L==3 "Se le ha asignado la siguiente contraseña para entrar en %s: %s\n" "Si desea activar esta nueva contraseña," " debe entrar en %s con su ID (DNI/cédula), apodo o dirección de correo electrónico" " y esta nueva contraseña antes de %u días." " Una vez que haya entrado, puede cambiar la contraseña por otra.\n" "Si no accede con esta nueva contraseña," " seguirá teniendo la contraseña que tuviera hasta ahora.\n" "Si ha recibido este mensaje sin solicitarlo," " se debe a que alguien que conoce su ID (DNI/cédula), su apodo o su dirección de correo electrónico" " ha solicitado el envío de una nueva contraseña para usted.\n" "Esta nueva contraseña se ha enviado sólo a la dirección de correo %s," " que es la que aparece en su ficha.\n\n"; #elif L==4 "The following password has been assigned to you to log in %s: %s\n" "If you want to activate the new password," " you must enter %s with your ID/nickname/e-mail" " and this new password before %u days." " Once you have logged in, you can change your password.\n" "If you do not log in with this new password," " the old password will remain valid.\n" "If you have received this message without having requested it," " is that someone who knows your ID, nickname or e-mail has requested a new password sent to you.\n" "This new password has been sent only to the email address %s, which is on your record card.\n\n"; // Besoin de traduction #elif L==5 "Se le ha asignado la siguiente contraseña para entrar en %s: %s\n" "Si desea activar esta nueva contraseña," " debe entrar en %s con su ID (DNI/cédula), apodo o dirección de correo electrónico" " y esta nueva contraseña antes de %u días." " Una vez que haya entrado, puede cambiar la contraseña por otra.\n" "Si no accede con esta nueva contraseña," " seguirá teniendo la contraseña que tuviera hasta ahora.\n" "Si ha recibido este mensaje sin solicitarlo," " se debe a que alguien que conoce su ID (DNI/cédula), su apodo o su dirección de correo electrónico" " ha solicitado el envío de una nueva contraseña para usted.\n" "Esta nueva contraseña se ha enviado sólo a la dirección de correo %s," " que es la que aparece en su ficha.\n\n"; // Okoteve traducción #elif L==6 "La seguente password ti è stata assegnata per entrare in %s: %s\n" "Se vuoi attivare la nuova password," " devi entrare in %s con il tuo ID / nome utente / e-mail" " e li c'è la nuova password prima di %u giorni." " Una volta che ti sei loggato, puoi scegliere la tua password.\n" "Se tu non entri con questa nuova password," " rimarrà valida la vecchia password.\n" "Se hai ricevuto questo messaggio senza averlo richiesto," " è perchè qualcuno che sa il tuo ID, nome utente o e-mail ha richiesto una nuova password da inviarti.\n" "Questa nuova password è stata inviata solo all'indirizzo e-mail %s, che è presente sulla tua scheda.\n\n"; #elif L==7 "The following password has been assigned to you to log in %s: %s\n" "If you want to activate the new password," " you must enter %s with your ID/nickname/e-mail" " and this new password before %u days." " Once you have logged in, you can change your password.\n" "If you do not log in with this new password," " the old password will remain valid.\n" "If you have received this message without having requested it," " is that someone who knows your ID, nickname or e-mail has requested a new password sent to you.\n" "This new password has been sent only to the email address %s, which is on your record card.\n\n"; // Potrzebujesz tlumaczenie #elif L==8 "The following password has been assigned to you to log in %s: %s\n" "If you want to activate the new password," " you must enter %s with your ID/nickname/e-mail" " and this new password before %u days." " Once you have logged in, you can change your password.\n" "If you do not log in with this new password," " the old password will remain valid.\n" "If you have received this message without having requested it," " is that someone who knows your ID, nickname or e-mail has requested a new password sent to you.\n" "This new password has been sent only to the email address %s, which is on your record card.\n\n"; // Necessita de tradução #endif const char *Txt_UPLOAD_FILE_could_not_create_file_NO_HTML = // Warning: it is very important to include %s in the following sentences #if L==0 "%s: no s'ha pogut crear el fitxer."; #elif L==1 "%s: Datei konnte nicht erstellt werden."; #elif L==2 "%s: could not create file."; #elif L==3 "%s: no se ha podido crear el archivo."; #elif L==4 "%s: impossible de créer le fichier."; #elif L==5 "%s: no se ha podido crear el archivo."; // Okoteve traducción #elif L==6 "%s: impossibile creare il file."; #elif L==7 "%s: nie mozna utworzyc plik."; #elif L==8 "%s: não foi possível criar arquivo."; #endif const char *Txt_UPLOAD_FILE_Forbidden_NO_HTML = #if L==0 "No puede crear archivos aquí."; // Necessita traduccio #elif L==1 "You can not create files here."; // Need Übersetzung #elif L==2 "You can not create files here."; #elif L==3 "No puede crear archivos aquí."; #elif L==4 "You can not create files here."; // Besoin de traduction #elif L==5 "No puede crear archivos aquí."; // Okoteve traducción #elif L==6 "Non puoi creare file qui."; #elif L==7 "You can not create files here."; // Potrzebujesz tlumaczenie #elif L==8 "You can not create files here."; // Necessita de tradução #endif const char *Txt_UPLOAD_FILE_You_must_specify_the_file_NO_HTML = #if L==0 "Debe especificar el archivo."; // Necessita traduccio #elif L==1 "Die Datei muss angegeben werden."; #elif L==2 "You must specify the file."; #elif L==3 "Debe especificar el archivo."; #elif L==4 "Vous devez spécifier le fichier."; #elif L==5 "Debe especificar el archivo."; // Okoteve traducción #elif L==6 "È necessario specificare il file."; #elif L==7 "You must specify the file."; // Potrzebujesz tlumaczenie #elif L==8 "Você deve especificar o arquivo."; #endif const char *Txt_UPLOAD_FILE_X_extension_not_allowed_NO_HTML = // Warning: it is very important to include %s in the following sentences #if L==0 "%s: extensión no permitida."; // Necessita traduccio #elif L==1 "%s: Endung nicht unterstützt."; #elif L==2 "%s: extension not allowed."; #elif L==3 "%s: extensión no permitida."; #elif L==4 "%s: extension not allowed."; // Besoin de traduction #elif L==5 "%s: extensión no permitida."; // Okoteve traducción #elif L==6 "%s: estensione non permessa."; #elif L==7 "%s: extension not allowed."; // Potrzebujesz tlumaczenie #elif L==8 "%s: extension not allowed."; // Necessita de tradução #endif const char *Txt_UPLOAD_FILE_X_file_already_exists_NO_HTML = // Warning: it is very important to include %s in the following sentences #if L==0 "%s: el archivo ya existe."; // Necessita traduccio #elif L==1 "%s: file already exists."; // Need Übersetzung #elif L==2 "%s: file already exists."; #elif L==3 "%s: el archivo ya existe."; #elif L==4 "%s: file already exists."; // Besoin de traduction #elif L==5 "%s: el archivo ya existe."; // Okoteve traducción #elif L==6 "%s: file already exists."; // Bisogno di traduzione #elif L==7 "%s: file already exists."; // Potrzebujesz tlumaczenie #elif L==8 "%s: file already exists."; // Necessita de tradução #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 #if L==0 "Archivo demasiado grande (máximo %lu MiB) /" " un altre problema d'enviament."; // Necessita traduccio #elif L==1 "Datei zu groß (Maximum %lu MiB) /" " ein weiteres Upload-Problem."; #elif L==2 "File too large (maximum %lu MiB) /" " another upload problem."; #elif L==3 "Archivo demasiado grande (máximo %lu MiB) /" " otro problema de envío."; #elif L==4 "Fichier est trop gros (maximum %lu MiB) /" " un autre problème de téléchargement."; #elif L==5 "Archivo demasiado grande (máximo %lu MiB) /" " otro problema de envío."; // Okoteve traducción #elif L==6 "File troppo grande (massimo %lu MiB) /" " un altro problema di caricamento."; #elif L==7 "Plik jest za duzy (maksimum %lu MiB) /" " kolejny problem wgrac."; #elif L==8 "Arquivo muito grande (máximo %lu MiB) /" " outro problema de upload."; #endif const char *Txt_UPLOAD_FILE_Invalid_name_NO_HTML = // Warning: it is very important to include %s in the following sentences #if L==0 "Nombre no válido."; // Necessita traduccio #elif L==1 "Invalid name."; // Need Übersetzung #elif L==2 "Invalid name."; #elif L==3 "Nombre no válido."; #elif L==4 "Invalid name."; // Besoin de traduction #elif L==5 "Nombre no válido."; // Okoteve traducción #elif L==6 "Nome non valido."; #elif L==7 "Invalid name."; // Potrzebujesz tlumaczenie #elif L==8 "Invalid name."; // Necessita de tradução #endif const char *Txt_UPLOAD_FILE_X_invalid_name_NO_HTML = // Warning: it is very important to include %s in the following sentences #if L==0 "%s: nombre no válido."; // Necessita traduccio #elif L==1 "%s: invalid name."; // Need Übersetzung #elif L==2 "%s: invalid name."; #elif L==3 "%s: nombre no válido."; #elif L==4 "%s: invalid name."; // Besoin de traduction #elif L==5 "%s: nombre no válido."; // Okoteve traducción #elif L==6 "%s: nome non valido."; #elif L==7 "%s: invalid name."; // Potrzebujesz tlumaczenie #elif L==8 "%s: invalid name."; // Necessita de tradução #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 #if L==0 "%s: tipo MIME %s no permitido."; // Necessita traduccio #elif L==1 "%s: MIME-Typ %s nicht unterstützt."; #elif L==2 "%s: MIME type %s not allowed."; #elif L==3 "%s: tipo MIME %s no permitido."; #elif L==4 "%s: MIME type %s not allowed."; // Besoin de traduction #elif L==5 "%s: tipo MIME %s no permitido."; // Okoteve traducción #elif L==6 "%s: tipo MIME %s non consentito."; #elif L==7 "%s: MIME type %s not allowed."; // Potrzebujesz tlumaczenie #elif L==8 "%s: MIME type %s not allowed."; // Necessita de tradução #endif const char *Txt_UPLOAD_FILE_X_not_HTML_NO_HTML = // Warning: it is very important to include %s in the following sentences #if L==0 "%s: no HTML"; // Necessita traduccio #elif L==1 "%s: not HTML"; // Need Übersetzung #elif L==2 "%s: not HTML"; #elif L==3 "%s: no HTML"; // Bisogno di traduzione #elif L==4 "%s: not HTML"; // Besoin de traduction #elif L==5 "%s: no HTML"; // Okoteve traducción #elif L==6 "%s: not HTML"; #elif L==7 "%s: not HTML"; // Potrzebujesz tlumaczenie #elif L==8 "%s: not HTML"; // Necessita de tradução #endif const char *Txt_UPLOAD_FILE_X_quota_exceeded_NO_HTML = // Warning: it is very important to include %s in the following sentences #if L==0 "%s: cuota excedida."; // Necessita traduccio #elif L==1 "%s: Kontingent überschritten."; #elif L==2 "%s: quota exceeded."; #elif L==3 "%s: cuota excedida."; #elif L==4 "%s: quota dépassé."; #elif L==5 "%s: cuota excedida."; // Okoteve traducción #elif L==6 "%s: quota superata."; #elif L==7 "%s: przekroczono przydzial."; #elif L==8 "5s: quota excedida."; #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 #if L==0 "Tiempo de subida demasiado largo (máximo %lu minutos)."; // Necessita traduccio #elif L==1 "Upload ist zu lang (Maximum %lu Minute)."; #elif L==2 "Upload time too long (maximum %lu minutes)."; #elif L==3 "Tiempo de subida demasiado largo (máximo %lu minutos)."; #elif L==4 "Temps de téléchargement trop longs (maximum %lu minutes)."; #elif L==5 "Tiempo de subida demasiado largo (máximo %lu minutos)."; // Okoteve traducción #elif L==6 "Durata del caricamento troppo lungo (massimo %lu minuti)."; #elif L==7 "Upload time too long (maximum %lu minuty)."; // Potrzebujesz tlumaczenie #elif L==8 "Tempo de upload muito longo (máximo %lu minutos)."; #endif const char *Txt_user_NO_HTML[Usr_NUM_SEXS][Txt_NUM_LANGUAGES] = // Don't use HTML entities like è here { { // Usr_SEX_UNKNOWN "usuari/a", "Benutzer", "user", "usuario/a", "utilisateur/se", "puruhára", "utente", "uzytkownika", "utilizador/a", }, { // Usr_SEX_FEMALE "usuaria", "Benutzer", "user", "usuaria", "utilisateuse", "usuaria", // Okoteve traducción "utente", "uzytkownika", "utilizadora", }, { // Usr_SEX_MALE "usuari", "Benutzer", "user", "usuario", "utilisateur", "puruhára", "utente", "uzytkownika", "utilizador", }, { // Usr_SEX_ALL "usuari/a", "Benutzer", "user", "usuario/a", "utilisateur/se", "puruhára", "utente", "uzytkownika", "utilizador/a", } }; const char *Txt_Users_NO_HTML = #if L==0 "Usuaris"; #elif L==1 "Benutzer"; #elif L==2 "Users"; #elif L==3 "Usuarios"; #elif L==4 "Utilisateurs"; #elif L==5 "Puruhára"; #elif L==6 "Utenti"; #elif L==7 "Uzytkowników"; #elif L==8 "Utilizadores"; #endif /***** Messages translated (use HTML entities) *****/ const char *Txt_A_face_marked_in_green_has_been_detected_ = #if L==0 "S'ha detectat un rostre (senyalat en verd) en posició frontal" " i amb el fons darrere del cap prou clar.
" "Premeu sobre ell per confirmar la actualizació de la fotografia."; #elif L==1 "A face (marked in green) has been detected in front position" " and the background behind the head is light enough.
" "Click on it to confirm the update of the picture."; // Need Übersetzung #elif L==2 "A face (marked in green) has been detected in front position" " and the background behind the head is light enough.
" "Click on it to confirm the update of the picture."; #elif L==3 "Se ha detectado un rostro (señalado en verde) en posición frontal" " y con el fondo detrás de la cabeza suficientemente claro.
" "Pulse sobre él para confirmar la actualización de la fotografía."; #elif L==4 "A face (marked in green) has been detected in front position" " and the background behind the head is light enough.
" "Click on it to confirm the update of the picture."; // Besoin de traduction #elif L==5 "Se ha detectado un rostro (señalado en verde) en posición frontal" " y con el fondo detrás de la cabeza suficientemente claro.
" "Pulse sobre él para confirmar la actualización de la fotografía."; // Okoteve traducción #elif L==6 "Un viso (segnato in verde) è stato individuato nella posizione centrale" " e lo sfondo dietro la testa è abbastanza chiaro.
" "Clicca su di esso per confermare l'aggiornamento dell'immagine."; #elif L==7 "twarzy (zaznaczone na zielono) zostal wykryty w przód w pozycji " "a tlo z tylu glowy jest wystarczajaco lekki.
" "Kliknij na nia, aby potwierdzic aktualizacje obrazu."; #elif L==8 "A face (marked in green) has been detected in front position" " and the background behind the head is light enough.
" "Click on it to confirm the update of the picture."; // Necessita de tradução #endif const char *Txt_A_face_marked_in_red_has_been_detected_ = #if L==0 "S'ha detectat un rostre (senyalat en vermell) en posició frontal," " però el fons darrere del cap és massa fosc."; #elif L==1 "A face (marked in green) has been detected in front position," " but the background behind the head is too dark."; // Need Übersetzung #elif L==2 "A face (marked in green) has been detected in front position," " but the background behind the head is too dark."; #elif L==3 "Se ha detectado un rostro (señalado en rojo) en posición frontal," " pero el fondo detrás de la cabeza es demasiado oscuro."; #elif L==4 "A face (marked in green) has been detected in front position," " but the background behind the head is too dark."; // Besoin de traduction #elif L==5 "Se ha detectado un rostro (señalado en rojo) en posición frontal," " pero el fondo detrás de la cabeza es demasiado oscuro."; // Okoteve traducción #elif L==6 "Un viso (segnato in verde) è stato individuato nella posizione centrale," " ma lo sfondo dietro la testa è troppo scuro."; #elif L==7 "twarzy (zaznaczone na zielono) zostal wykryty w przednim" "Ale w tle z tylu glowy jest zbyt ciemny."; #elif L==8 "A face (marked in green) has been detected in front position," " but the background behind the head is too dark."; // Necessita de tradução #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 #if L==0 "Se ha enviado un mensaje" " a la dirección de correo electrónico %s" " para confirmar dicha dirección."; // Necessita traduccio #elif L==1 "A message has been sent" " to e-mail address %s" " to confirm that address."; // Need Übersetzung #elif L==2 "A message has been sent" " to e-mail address %s" " to confirm that address."; #elif L==3 "Se ha enviado un mensaje" " a la dirección de correo electrónico %s" " para confirmar dicha dirección."; #elif L==4 "A message has been sent" " to e-mail address %s" " to confirm that address."; // Besoin de traduction #elif L==5 "Se ha enviado un mensaje" " a la dirección de correo electrónico %s" " para confirmar dicha dirección."; // Okoteve traducción #elif L==6 "A message has been sent" " to e-mail address %s" " to confirm that address."; // Bisogno di traduzione #elif L==7 "A message has been sent" " to e-mail address %s" " to confirm that address."; // Potrzebujesz tlumaczenie #elif L==8 "A message has been sent" " to e-mail address %s" " to confirm that address."; // Necessita de tradução #endif const char *Txt_A_student_can_belong_to_several_groups = #if L==0 "Un estudiant pot pertànyer a diversos grups"; #elif L==1 "Ein Student kann mehreren Gruppen angehören"; #elif L==2 "A student can belong to several groups"; #elif L==3 "Un estudiante puede pertenecer a varios grupos"; #elif L==4 "Un étudiant peut appartenir à plusieurs groupes"; #elif L==5 "Un estudiante puede pertenecer a varios grupos"; // Okoteve traducción #elif L==6 "Uno studente può appartenere a più gruppi"; #elif L==7 "Kazdy student moze nalezec do wielu grup"; #elif L==8 "Um aluno pode pertencer a vários grupos"; #endif const char *Txt_A_student_can_only_belong_to_one_group = #if L==0 "Un estudiant només pot pertànyer a un grup"; #elif L==1 "Ein Student kann nur einer Gruppe angehören"; #elif L==2 "A student can only belong to one group"; #elif L==3 "Un estudiante sólo puede pertenecer a un grupo"; #elif L==4 "Un étudiant ne peut appartenir à un groupe"; #elif L==5 "Un estudiante sólo puede pertenecer a un grupo"; // Okoteve traducción #elif L==6 "Uno studente può appartenere solo a un gruppo"; #elif L==7 "student moze nalezec tylko do jednej grupy"; #elif L==8 "Um aluno pode pertencer a um grupo"; #endif const char *Txt_A_teacher_or_administrator_has_enrolled_you_into_the_course_ = // Warning: it is very important to include %s in the following sentences #if L==0 "Un profesor/a o un administrador/a le ha inscrito" " en la asignatura %s." " ¿Confirma la inscripción" " o prefiere ser eliminado de la asignatura?"; // Necessita traduccio #elif L==1 "Ein Lehrer oder Administrator hat Sie" " im Veranstaltung %s eingeschrieben." " Möchten Sie, dass die Registrierung" " oder bevorzugen Sie, um aus dem Veranstaltung?"; #elif L==2 "A teacher or administrator has enrolled you" " into the course %s." " Do you want to confirm the enrollment" " or do you prefer to be removed from the course?"; #elif L==3 "Un profesor/a o un administrador/a le ha inscrito" " en la asignatura %s." " ¿Confirma la inscripción" " o prefiere ser eliminado de la asignatura?"; #elif L==4 "Un professeur ou un administrateur vous a enregistré" " dans la matière %s." " Voulez-vous confirmer l'enregistrement" " ou préférez-vous être enlevé de la matière?"; #elif L==5 "Un profesor/a o un administrador/a le ha inscrito " " en la asignatura %s." " ¿Confirma la inscripción" " o prefiere ser eliminado de la asignatura?"; // Okoteve traducción #elif L==6 "Un insegnante o amministratore ti a registrato" " nel corso %s." " Vuoi confermare la registrazione" " o preferisci essere rimosso da questo corso?"; #elif L==7 "A teacher or administrator has enrolled you" " into the course %s." " Do you want to confirm the enrollment" " or do you prefer to be removed from the course?"; // Potrzebujesz tlumaczenie #elif L==8 "Um professor ou administrador tem registrado você" " na disciplina %s." " Você quer para confirmar a inscrição" " ou você prefere para ser removido da disciplina?"; #endif const char *Txt_A_user_can_not_have_more_than_X_IDs = #if L==0 "Un usuari no pot tenir més de %u IDs (DNI/cèdulas)"; #elif L==1 "Ein Benutzer kann nicht mehr als %u Ausweis-Nr."; #elif L==2 "A user can not have more than %u IDs."; #elif L==3 "Un usuario no puede tener más de %u ID (DNI/cédulas)."; #elif L==4 "Un utilisateur ne peut pas avoir plus de %u IDs."; #elif L==5 "Un usuario no puede tener más de %u ID (DNI/cédulas)."; // Okoteve traducción #elif L==6 "Un utente non può avere più di %u ID."; #elif L==7 "Użytkownik nie może mieć więcej niż %u identyfikatory."; #elif L==8 "Um usuário não pode ter mais de %u nºs. identif."; #endif const char *Txt_About_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Quant a %s"; #elif L==1 "Über uns %s"; #elif L==2 "About %s"; #elif L==3 "Acerca de %s"; #elif L==4 "À propos de %s"; #elif L==5 "%s rehegua"; #elif L==6 "Riguardo %s"; #elif L==7 "O %s"; #elif L==8 "Sobre %s"; #endif const char *Txt_Absent = #if L==0 "Absent"; #elif L==1 "Nicht vorhanden"; #elif L==2 "Absent"; #elif L==3 "Ausente"; #elif L==4 "Absent"; #elif L==5 "Ausente"; // Okoteve traducción #elif L==6 "Assente"; #elif L==7 "Nieobecny"; #elif L==8 "Assente"; #endif const char *Txt_Absents = #if L==0 "Absents"; #elif L==1 "Nicht vorhanden"; #elif L==2 "Absents"; #elif L==3 "Ausentes"; #elif L==4 "Absents"; #elif L==5 "Ausentes"; // Okoteve traducción #elif L==6 "Assenti"; #elif L==7 "Nieobecny"; #elif L==8 "Assentes"; #endif const char *Txt_accessible_for_reading_and_writing_by_students_and_teachers_of_the_course = #if L==0 "accessible per a lectura i escriptura per estudiants i professors de l'assignatura"; #elif L==1 "zum Schreiben zugänglich für Studenten und Lehrkräfte der Veranstaltung"; #elif L==2 "accessible for reading and writing by students and teachers of the course"; #elif L==3 "accesible para lectura y escritura por estudiantes y profesores de la asignatura"; #elif L==4 "accessible en lecture et en écriture par les étudiants et les enseignants de la matière"; #elif L==5 "accesible para lectura y escritura por estudiantes y profesores de la asignatura"; // Okoteve traducción #elif L==6 "accessibile per la lettura e la scrittura da parte degli studenti e dei professori del corso"; #elif L==7 "dostep do odczytu i zapisu przez uczniów i nauczycieli zajec"; #elif L==8 "acessível para leitura e escrita pelos alunos e professores da disciplina"; #endif const char *Txt_accessible_for_reading_and_writing_by_students_of_the_group_and_teachers_of_the_course = #if L==0 "accesible per a lectura i escriptura per estudiants del grup i professors de l'assignatura"; #elif L==1 "zum Schreiben zugänglich für Studenten der Gruppe und Lehrkräfte der Veranstaltung"; #elif L==2 "accessible for reading and writing by students of the group and teachers of the course"; #elif L==3 "accesible para lectura y escritura por estudiantes del grupo y profesores de la asignatura"; #elif L==4 "accessible en lecture et en écriture par les étudiants du groupe et les enseignants de la matière"; #elif L==5 "accesible para lectura y escritura por estudiantes del grupo y profesores de la asignatura"; // Okoteve traducción #elif L==6 "accessibile per la lettura e la scrittura da parte degli studenti del gruppo e dei professori del corso"; #elif L==7 "dostep do odczytu i zapisu przez studentów i nauczycieli, grupy kursu"; #elif L==8 "acessível para leitura e escrita pelos alunos do grupo e professores da disciplina"; #endif const char *Txt_accessible_for_reading_and_writing_by_teachers_of_the_course = #if L==0 "accessible per a lectura i escriptura per professors de l'assignatura"; #elif L==1 "zum Schreiben zugänglich für Lehrkräfte der Veranstaltung"; #elif L==2 "accessible for reading and writing by teachers of the course"; #elif L==3 "accesible para lectura y escritura por profesores de la asignatura"; #elif L==4 "accessible en lecture et en écriture par les enseignants de la matière"; #elif L==5 "accesible para lectura y escritura por profesores de la asignatura"; // Okoteve traducción #elif L==6 "accessibile per la lettura e la scrittura da parte dei professori del corso"; #elif L==7 "dostep do odczytu i zapisu przez nauczycieli zajec"; #elif L==8 "acessível para leitura e escrita pelos professores da disciplina"; #endif const char *Txt_accessible_for_reading_and_writing_by_you_and_the_teachers_of_the_course = #if L==0 "accessible per a lectura per vostè i els professors de l'assignatura"; #elif L==1 "zum Schreiben zugänglich für Sie und die Lehrkräfte der Veranstaltung"; #elif L==2 "accessible for reading and writing by you and the teachers of the course"; #elif L==3 "accesible para lectura por usted y los profesores de la asignatura"; #elif L==4 "accessible en lecture et en écriture par vous et par les étudiants et les enseignants de la matière"; #elif L==5 "accesible para lectura por usted y los profesores de la asignatura"; // Okoteve traducción #elif L==6 "accessibile per la lettura e la scrittura per te e i professori del corso"; #elif L==7 "dostep do odczytu i zapisu przez Ciebie i nauczycieli zajec"; #elif L==8 "acessível para leitura e escrita por você e os professores da disciplina"; #endif const char *Txt_accessible_only_for_reading_by_you_and_the_teachers_of_the_course = #if L==0 "accesible nomè per a lectura per vosté i els professors de l'assignatura"; #elif L==1 "zum Lesen zugänglich für Sie und die Lehrkräfte der Veranstaltung"; #elif L==2 "accessible only for reading by you and the teachers of the course"; #elif L==3 "accesible sólo para lectura por usted y los profesores de la asignatura"; #elif L==4 "accessible uniquement pour la lecture par vous et par les étudiants et les enseignants de la matière"; #elif L==5 "accesible sólo para lectura por usted y los profesores de la asignatura"; // Okoteve traducción #elif L==6 "accessibile solo per la lettura per te e i professori del corso"; #elif L==7 "dostepne tylko do czytania przez Ciebie i nauczycieli prowadzacych ten kurs"; #elif L==8 "acessível apenas para leitura por você e os professores da disciplina"; #endif const char *Txt_accessible_only_for_reading_by_students_and_teachers_of_the_course = #if L==0 "accessible només per a lectura per estudiants i professors de l'assignatura"; #elif L==1 "zum Lesen zugänglich für Studenten und Lehrkräfte der Veranstaltung"; #elif L==2 "accessible only for reading by students and teachers of the course"; #elif L==3 "accesible sólo para lectura por estudiantes y profesores de la asignatura"; #elif L==4 "accessible uniquement pour la lecture par les étudiants et les enseignants de la matière"; #elif L==5 "accesible sólo para lectura por estudiantes y profesores de la asignatura"; // Okoteve traducción #elif L==6 "accessibile solo per la lettura da parte degli studenti e dei professori del corso"; #elif L==7 "dostepne tylko do czytania przez uczniów i nauczycieli zajec"; #elif L==8 "acessível apenas para leitura pelos alunos e professores da disciplina"; #endif const char *Txt_accessible_only_for_reading_by_students_of_the_group_and_teachers_of_the_course = #if L==0 "accesible només per a lectura per estudiants del grup i professors de l'assignatura"; #elif L==1 "zum Lesen zugänglich für Studenten der Gruppe und Lehrkräfte der Veranstaltung"; #elif L==2 "accessible only for reading by students of the group and teachers of the course"; #elif L==3 "accesible sólo para lectura por estudiantes del grupo y profesores de la asignatura"; #elif L==4 "accessible uniquement pour la lecture par les étudiants du groupe et les enseignants de la matière"; #elif L==5 "accesible sólo para lectura por estudiantes del grupo y profesores de la asignatura"; // Okoteve traducción #elif L==6 "accessibile solo per la lettura da parte degli studenti del gruppo e dei professori del corso"; #elif L==7 "dostepne tylko do czytania przez uczniów i nauczycieli grupy kursu"; #elif L==8 "acessível apenas para leitura pelos alunos do grupo e professores da disciplina"; #endif const char *Txt_Action = #if L==0 "Acció"; #elif L==1 "Handlung"; #elif L==2 "Action"; #elif L==3 "Acción"; #elif L==4 "Action"; #elif L==5 "Tembiapo"; #elif L==6 "Azione"; #elif L==7 "Dzialanie"; #elif L==8 "Ação"; #endif const char *Txt_Admin_user = #if L==0 "Administrar usuari"; #elif L==1 "Verwalten Benutzer"; #elif L==2 "Admin user"; #elif L==3 "Administrar usuario"; #elif L==4 "Gérer utilisateur"; #elif L==5 "Administrar usuario"; // Okoteve traducción #elif L==6 "Gestire utente"; #elif L==7 "Zarządzaj użytkownika"; #elif L==8 "Gerenciar utilizador"; #endif const char *Txt_All = #if L==0 "Tot"; #elif L==1 "Alle"; #elif L==2 "All"; #elif L==3 "Todo"; #elif L==4 "Tout"; #elif L==5 "Opakatu"; #elif L==6 "Tutto"; #elif L==7 "Wszystko"; #elif L==8 "Tudo"; #endif const char *Txt_all_degrees = #if L==0 "Totes les titulacions"; #elif L==1 "all degrees"; // Need Übersetzung #elif L==2 "all degrees"; #elif L==3 "todas las titulaciones"; #elif L==4 "tous les degrés"; #elif L==5 "todas las titulaciones"; // Okoteve traducción #elif L==6 "tutte le lauree"; #elif L==7 "wszystkich stopni"; #elif L==8 "all degrees"; // Necessita de tradução #endif const char *Txt_all_files = #if L==0 "tots els fitxers"; #elif L==1 "alle Dateien"; #elif L==2 "all files"; #elif L==3 "todos los archivos"; #elif L==4 "tous les fichiers"; #elif L==5 "todos los archivos"; // Okoteve traducción #elif L==6 "tutti i file"; #elif L==7 "wszystkich plików"; #elif L==8 "todos os arquivos"; #endif const char *Txt_All_groups = #if L==0 "Tots els grups"; #elif L==1 "Alle Gruppen"; #elif L==2 "All groups"; #elif L==3 "Todos los grupos"; #elif L==4 "Tous les groupes"; #elif L==5 "Todos los grupos"; // Okoteve traducción #elif L==6 "Tutti i gruppi"; #elif L==7 "Wszystkie grupy"; #elif L==8 "Todos os grupos"; #endif const char *Txt_All_notices = #if L==0 "Tots els avisos"; #elif L==1 "Alle Ankündigungen"; #elif L==2 "All notices"; #elif L==3 "Todos los avisos"; #elif L==4 "Tous les avis"; #elif L==5 "Todos los avisos"; // Okoteve traducción #elif L==6 "Tutti i avvisi"; #elif L==7 "Wszystkie ogloszenia"; #elif L==8 "Todos os avisos"; #endif const char *Txt_All_places = #if L==0 "Tots els llocs"; #elif L==1 "Alle Standorte"; #elif L==2 "All places"; #elif L==3 "Todos los lugares"; #elif L==4 "Tous les emplacements"; #elif L==5 "Todos los lugares"; // Okoteve traducción #elif L==6 "Tutte le località"; #elif L==7 "Wszystkie miejsca"; #elif L==8 "Todas as localizaçoes"; #endif const char *Txt_All_tags = // Tags used in test #if L==0 "Tots els descriptors"; #elif L==1 "Alle Tags"; #elif L==2 "All tags"; #elif L==3 "Todos los descriptores"; #elif L==4 "Tous les descripteurs"; #elif L==5 "Todos los descriptores"; // Okoteve traducción #elif L==6 "Tutte le etichette"; #elif L==7 "Wszystkie tagi"; #elif L==8 "Todos os descritores"; #endif const char *Txt_All_types_of_answers = // Answers of a test #if L==0 "Tots els tipus de respostes"; #elif L==1 "Alle Antworttypen"; #elif L==2 "All types of answers"; #elif L==3 "Todos los tipos de respuestas"; #elif L==4 "Tous les types de réponses"; #elif L==5 "Todos los tipos de respuestas"; // Okoteve traducción #elif L==6 "Tutti i tipi di risposte"; #elif L==7 "Wszystkie typy odpowiedzi"; #elif L==8 "Todos os tipos de respostas"; #endif const char *Txt_Allow_teachers_to_consult_this_exam = #if L==0 "Permetre als professors consultar aquest examen"; #elif L==1 "Ermöglichen es den Lehrern, diese Prüfung zu konsultieren"; #elif L==2 "Allow teachers to consult this exam"; #elif L==3 "Permitir a los profesores consultar este examen"; #elif L==4 "Permitir a los profesores consultar este examen"; #elif L==5 "Permitir a los profesores consultar este examen"; #elif L==6 "Lasciare gli insegnanti di consultare questo esame"; #elif L==7 "Pozwalają nauczycielom skonsultować ten egzamin"; #elif L==8 "Permitir que os professores de consultar este exame"; #endif const char *Txt_Alphabetic_BR_code_BR_ISO_3166_1 = #if L==0 "Codi
alfabètic
ISO 3166-1"; #elif L==1 "Alphabetischer
Code
ISO 3166-1"; #elif L==2 "Alphabetic
code
ISO 3166-1"; #elif L==3 "Cód.
alfabético
ISO 3166-1"; #elif L==4 "Code
alphabétique
ISO 3166-1"; #elif L==5 "Cód.
alfabético
ISO 3166-1"; // Okoteve traducción #elif L==6 "Codice
alfabetico
ISO 3166-1"; #elif L==7 "Alfabetycznego
kodu
ISO 3166-1"; #elif L==8 "Cód.
alfabético
ISO 3166-1"; #endif const char *Txt_Already_existed_an_assignment_with_the_folder_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Ja existia una activitat amb la carpeta %s."; #elif L==1 "Es gibt bereits einen Aufgabe im Verzeichnis %s."; #elif L==2 "There is already an assignment with folder %s."; #elif L==3 "Ya existía una actividad con la carpeta %s."; #elif L==4 "Il existe déjà une activité avec le répertoire %s."; #elif L==5 "Ya existía una actividad con la carpeta %s."; // Okoteve traducción #elif L==6 "Esiste già un'attività con la cartella %s."; #elif L==7 "Jest juz zadanie z folderu %s."; #elif L==8 "Já existe uma atividade com o diretório %s."; #endif const char *Txt_Already_existed_an_assignment_with_the_title_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Ja existia una activitat amb el títol %s."; #elif L==1 "Es gibt bereits einen Aufgabe mit dem Namen %s."; #elif L==2 "Already existed an assignment with the title %s."; #elif L==3 "Ya existía una actividad con el título %s."; #elif L==4 "Il existe déjà une activité du titre %s."; #elif L==5 "Ya existía una actividad con el título %s."; // Okoteve traducción #elif L==6 "Esiste già un'attività con il titolo %s."; #elif L==7 "Istniala juz przydzialu z tytulu %s."; #elif L==8 "Já existe uma atividade com o título %s."; #endif const char *Txt_Already_existed_an_event_with_the_title_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Ja existia un esdeveniment amb el títol %s."; #elif L==1 "Es gibt bereits einen Ereignis mit dem Namen %s."; #elif L==2 "Already existed an event with the title %s."; #elif L==3 "Ya existía un evento con el título %s."; #elif L==4 "Il existe déjà un événement du titre %s."; #elif L==5 "Ya existía un evento con el título %s."; // Okoteve traducción #elif L==6 "Esiste già un evento con il titolo %s."; #elif L==7 "Istniala juz wydarzenie z tytulu %s."; #elif L==8 "Já existe um evento com o título %s."; #endif const char *Txt_Already_existed_a_survey_with_the_title_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Ja existia una enquesta amb el títol %s."; #elif L==1 "Es gibt bereits einen Umfrage mit dem Namen %s."; #elif L==2 "Already existed a survey with the title %s."; #elif L==3 "Ya existía una encuesta con el título %s."; #elif L==4 "Il existe déjà un sondage du titre %s."; #elif L==5 "Ya existía una encuesta con el título %s."; // Okoteve traducción #elif L==6 "Esiste già un sondaggio con il titolo %s."; #elif L==7 "Already existed a survey with the title %s."; // Potrzebujesz tlumaczenie #elif L==8 "Já existe um inquérito com o título %s."; #endif const char *Txt_and = #if L==0 "i"; #elif L==1 "und"; #elif L==2 "and"; #elif L==3 "y"; #elif L==4 "et"; #elif L==5 "y"; // Okoteve traducción #elif L==6 "e"; #elif L==7 "i"; #elif L==8 "e"; #endif const char *Txt_and_X_other_recipients = // Warning: it is very important to include %u in the following sentences #if L==0 "...i altres %u destinataris"; #elif L==1 "...und %u andere Empfänger"; #elif L==2 "...and %u other recipients"; #elif L==3 "...y otros %u destinatarios"; #elif L==4 "...et %u autres destinataires"; #elif L==5 "...y otros %u destinatarios"; // Okoteve traducción #elif L==6 "...e altri %u destinatari"; #elif L==7 "...i %u innych odbiorców"; #elif L==8 "...e %u outros destinatários"; #endif const char *Txt_Announcement_of_exam_removed = #if L==0 "Convocatoria d'examen eliminada."; #elif L==1 "Aufruf zur Prüfung entfernt."; #elif L==2 "Announcement of exam removed."; #elif L==3 "Convocatoria de examen eliminada."; #elif L==4 "Convocation pour l'examen supprimé."; #elif L==5 "Convocatoria de examen eliminada."; // Okoteve traducción #elif L==6 "Appello d'esame rimosso."; #elif L==7 "Ogloszenie egzamin usuniete."; #elif L==8 "Chamada para exame removida."; #endif const char *Txt_Another_centre = #if L==0 "Un altre centre"; #elif L==1 "Ein weiteres Lehrinstitut"; #elif L==2 "Another centre"; #elif L==3 "Otro centro"; #elif L==4 "Un autre centre"; #elif L==5 "Otro centro"; // Okoteve traducción #elif L==6 "Un altro centro"; #elif L==7 "Innym centrum"; #elif L==8 "Outro centro"; #endif const char *Txt_Another_country = #if L==0 "Un altre país"; #elif L==1 "Ein weiterer Land"; #elif L==2 "Another country"; #elif L==3 "Otro país"; #elif L==4 "Un autre pays"; #elif L==5 "Otro país"; // Okoteve traducción #elif L==6 "Un altro paese"; #elif L==7 "Kolejny kraj"; #elif L==8 "Outro país"; #endif const char *Txt_Another_department = #if L==0 "Un altre departament"; #elif L==1 "Eine weitere Abteilung"; #elif L==2 "Another department"; #elif L==3 "Otro departamento"; #elif L==4 "Une autre département"; #elif L==5 "Otro departamento"; // Okoteve traducción #elif L==6 "Un altro dipartimento"; #elif L==7 "Kolejny dział"; #elif L==8 "Outro departamento"; #endif const char *Txt_Another_ID = #if L==0 "Un altre ID (DNI/cèdula)"; #elif L==1 "Ein anderer Ausweis-Nr."; #elif L==2 "Another ID"; #elif L==3 "Otro ID (DNI/cédula)"; #elif L==4 "Un autre numéro d'identité"; #elif L==5 "Otro ID (DNI/cédula)"; // Okoteve traducción #elif L==6 "Un'altra carta d'identità"; #elif L==7 "Another ID"; // Potrzebujesz tlumaczenie #elif L==8 "Outro nº de identif"; #endif const char *Txt_Add_this_ID = #if L==0 "Afegir aquest ID (DNI/cèdula)"; #elif L==1 "Fügen Sie diese Ausweis-Nr."; #elif L==2 "Add this ID"; #elif L==3 "Añadir este ID (DNI/cédula)"; #elif L==4 "Ajouter ce numéro d'identité"; #elif L==5 "Añadir este ID (DNI/cédula)"; // Okoteve traducción #elif L==6 "Aggiungi questa carta d'identità"; #elif L==7 "Add this ID"; // Potrzebujesz tlumaczenie #elif L==8 "Adicionar este nº de identif"; #endif const char *Txt_Announcement_created = #if L==0 "Anunci creat."; #elif L==1 "Bekanntmachung erstellt."; #elif L==2 "Announcement created."; #elif L==3 "Anuncio creado."; #elif L==4 "Annonce créé."; #elif L==5 "Anuncio creado."; // Okoteve traducción #elif L==6 "Annuncio creato."; #elif L==7 "Ogłoszenia stworzony."; #elif L==8 "Anúncio criado."; #endif const char *Txt_Announcement_removed = #if L==0 "Anunci eliminat."; #elif L==1 "Bekanntmachung entfernt."; #elif L==2 "Announcement removed."; #elif L==3 "Anuncio eliminado."; #elif L==4 "Annonce supprimé."; #elif L==5 "Anuncio eliminado."; // Okoteve traducción #elif L==6 "Annuncio rimosso."; #elif L==7 "Ogłoszenia usuniete."; #elif L==8 "Anúncio removido."; #endif const char *Txt_Another_institution = #if L==0 "Una altra institució"; #elif L==1 "Eine weitere Hochschule"; #elif L==2 "Another institution"; #elif L==3 "Otra institución"; #elif L==4 "Un autre établissement"; #elif L==5 "Otra institución"; // Okoteve traducción #elif L==6 "Un'altra istituzione"; #elif L==7 "Kolejna instytucja"; #elif L==8 "Outra instituição"; #endif const char *Txt_Another_place = #if L==0 "Un altre lloc"; #elif L==1 "Ein weiterer Standort"; #elif L==2 "Another place"; #elif L==3 "Otro lugar"; #elif L==4 "Un autre emplacement"; #elif L==5 "Otro lugar"; // Okoteve traducción #elif L==6 "Un'altra localit`"; #elif L==7 "Innym miejscem"; #elif L==8 "Outra localização"; #endif const char *Txt_Answer = #if L==0 "Resposta"; #elif L==1 "Answer"; // Need Übersetzung #elif L==2 "Answer"; #elif L==3 "Respuesta"; #elif L==4 "Answer"; // Besoin de traduction #elif L==5 "Respuesta"; // Okoteve traducción #elif L==6 "Risposta"; #elif L==7 "Odpowiedz"; #elif L==8 "Answer"; // Necessita de tradução #endif const char *Txt_Answer_survey = #if L==0 "Respondre enquesta"; #elif L==1 "Beantwortung Umfrage"; #elif L==2 "Answer survey"; #elif L==3 "Responder encuesta"; #elif L==4 "Répondre sondage"; #elif L==5 "Responder encuesta"; // Okoteve traducción #elif L==6 "Rispondere sondaggio"; #elif L==7 "Badanie odpowiedzi"; #elif L==8 "Responder inquérito"; #endif const char *Txt_Answers = // Answers of test #if L==0 "Respostes"; #elif L==1 "Antworten"; #elif L==2 "Answers"; #elif L==3 "Respuestas"; #elif L==4 "Réponses"; #elif L==5 "Ñembohovái"; #elif L==6 "Risposte"; #elif L==7 "Odpowiedzi"; #elif L==8 "Respostas"; #endif const char *Txt_any_course = #if L==0 "qualsevol assignatura"; #elif L==1 "alle Veranstaltungen"; #elif L==2 "any course"; #elif L==3 "cualquier asignatura"; #elif L==4 "toute matière"; #elif L==5 "cualquier asignatura"; // Okoteve traducción #elif L==6 "qualsiasi corso"; #elif L==7 "kurs"; #elif L==8 "qualquer disciplina"; #endif const char *Txt_Any_type_of_degree = #if L==0 "Qualsevol tipus de titulació"; #elif L==1 "Alle Abschlussart"; #elif L==2 "Any type of degree"; #elif L==3 "Cualquier tipo de titulación"; #elif L==4 "Tout type d'étude"; #elif L==5 "Cualquier tipo de titulación"; // Okoteve traducción #elif L==6 "Qualsiasi tipo di laurea"; #elif L==7 "Any type of degree"; // Potrzebujesz tlumaczenie #elif L==8 "Qualquer tipo de titulação"; #endif const char *Txt_Any_department = #if L==0 "Qualsevol departament"; #elif L==1 "Alle Abteilung"; #elif L==2 "Any department"; #elif L==3 "Cualquier departamento"; #elif L==4 "Tout département"; #elif L==5 "Cualquier departamento"; // Okoteve traducción #elif L==6 "Qualsiasi dipartimento"; #elif L==7 "Wszystkie działy"; #elif L==8 "Qualquer departamento"; #endif const char *Txt_Any_number = #if L==0 "Qualsevol nombre"; #elif L==1 "Alle Anzahl"; #elif L==2 "Any number"; #elif L==3 "Cualquier número"; #elif L==4 "Tout nombre"; #elif L==5 "Cualquier número"; // Okoteve traducción #elif L==6 "Qualsiasi numero"; #elif L==7 "Wszystkie liczba"; #elif L==8 "Qualquer número"; #endif const char *Txt_any_user = #if L==0 "qualsevol usuari"; #elif L==1 "alle Benutzer"; #elif L==2 "any user"; #elif L==3 "cualquier usuario"; #elif L==4 "n'importe qu'utilisateur"; #elif L==5 "cualquier usuario"; // Okoteve traducción #elif L==6 "qualsiasi utente"; #elif L==7 "wszystkich uzytkowników"; #elif L==8 "qualquer utilizador"; #endif const char *Txt_Application_key = #if L==0 "Clau de aplicació"; #elif L==1 "Application key"; // Need Übersetzung #elif L==2 "Application key"; #elif L==3 "Clave de aplicación"; #elif L==4 "Clé d'application"; #elif L==5 "Clave de aplicación"; // Okoteve traducción #elif L==6 "Codice di applicazione"; #elif L==7 "Klawisz aplikacji"; #elif L==8 "Application key"; // Necessita de tradução #endif const char *Txt_Assessment_criteria = #if L==0 "Criteris d'avaluació"; #elif L==1 "Bewertungskriterien"; #elif L==2 "Assessment criteria"; #elif L==3 "Criterios de evaluación"; #elif L==4 "Critères d'évaluation"; #elif L==5 "Criterios de evaluación"; // Okoteve traducción #elif L==6 "Criteri di valutazione"; #elif L==7 "Kryteria oceny"; #elif L==8 "Critérios de avaliação"; #endif const char *Txt_Assignment = #if L==0 "Activitat"; #elif L==1 "Aufgabe"; #elif L==2 "Assignment"; #elif L==3 "Actividad"; #elif L==4 "Activité"; #elif L==5 "Taréa"; #elif L==6 "Attività"; #elif L==7 "Przyporzadkowanie"; #elif L==8 "Atividade"; #endif const char *Txt_ASSIGNMENT_TYPES[Asg_NUM_TYPES_SEND_WORK] = { #if L==0 "No cal enviar treballs (fitxers)" #elif L==1 "Keine Hausarbeiten vorgesehen (Dateien)" #elif L==2 "No homework to be submitted (files)" #elif L==3 "No hay que enviar trabajos (archivos)" #elif L==4 "Ne soumettez pas de travail (fichiers)" #elif L==5 "No hay que enviar trabajos (archivos)" // Okoteve traducción #elif L==6 "Non ci sono lavori da presentare (files)" #elif L==7 "Nie ma pracy domowej, które nalezy przedlozyc (pliki)" #elif L==8 "Não submeter trabalhos (arquivos)" #endif , #if L==0 "Es obligatori enviar treballs (fitxers)" #elif L==1 "Hausarbeiten vorgesehen (files)" #elif L==2 "It is mandatory to submit homework (files)" #elif L==3 "Es obligatorio enviar trabajos (archivos)" #elif L==4 "Il est obligatoire de soumetter le travail (fichiers)" #elif L==5 "Es obligatorio enviar trabajos (archivos)"// Okoteve traducción #elif L==6 "E' obbligatorio presentare il lavoro (files)" #elif L==7 "Jest to obowiazkowe do przedstawienia prac domowych (pliki)" #elif L==8 "É obrigatória a apresentação de trabalhos (arquivos)" #endif }; const char *Txt_Assignment_X_is_now_hidden = // Warning: it is very important to include %s in the following sentences #if L==0 "La activitat %s ara està oculta."; #elif L==1 "Die Aufgabe %s ist jetzt ausgeblendet."; #elif L==2 "Assignment %s is now hidden."; #elif L==3 "La actividad %s ahora está oculta."; #elif L==4 "L'activité %s est maintenant cachée."; #elif L==5 "La actividad %s ahora está oculta."; // Okoteve traducción #elif L==6 "L'attività %s è ora nascosta."; #elif L==7 "Zadanie %s jest ukryte."; #elif L==8 "A atividade %s é agora oculta."; #endif const char *Txt_Assignment_X_is_now_visible = // Warning: it is very important to include %s in the following sentences #if L==0 "La activitat %s ara està visible."; #elif L==1 "Die Aufgabe %s ist jetzt sichtbar."; #elif L==2 "Assignment %s is now visible."; #elif L==3 "La actividad %s ahora está visible."; #elif L==4 "L'activité %s est maintenant visible."; #elif L==5 "La actividad %s ahora está visible."; // Okoteve traducción #elif L==6 "L'attività %s è ora visibile."; #elif L==7 "Zadanie %s jest teraz widoczny."; #elif L==8 "A atividade %s é agora visível."; #endif const char *Txt_Assignment_X_removed = // Warning: it is very important to include %s in the following sentences #if L==0 "Activitat %s eliminada."; #elif L==1 "Aufgabe %s entfernt."; #elif L==2 "Assignment %s removed."; #elif L==3 "Actividad %s eliminada."; #elif L==4 "Activité %s supprimée."; #elif L==5 "Actividad %s eliminada."; // Okoteve traducción #elif L==6 "Attività %s rimossa."; #elif L==7 "Zadanie %s usuniete."; #elif L==8 "Atividade %s removida."; #endif const char *Txt_Assignments = #if L==0 "Activitats"; #elif L==1 "Aufgaben"; #elif L==2 "Assignments"; #elif L==3 "Actividades"; #elif L==4 "Activités"; #elif L==5 "Taréa"; #elif L==6 "Attività"; #elif L==7 "Zadania"; #elif L==8 "Atividades"; #endif const char *Txt_ASG_ATT_OR_SVY_HELP_ORDER[2] = { #if L==0 "Ordenar per data de començament" #elif L==1 "Sortieren nach Startdatum" #elif L==2 "Sort by start date" #elif L==3 "Ordenar por fecha de comienzo" #elif L==4 "Trier par date de début" #elif L==5 "Ordenar por fecha de comienzo" // Okoteve traducción #elif L==6 "Ordina per data di inizio" #elif L==7 "Sortuj wedlug daty rozpoczecia" #elif L==8 "Classificar por data de início" #endif , #if L==0 "Ordenar per data de finalització" #elif L==1 "Sortieren nach Enddatum" #elif L==2 "Sort by end date" #elif L==3 "Ordenar por fecha de finalización" #elif L==4 "Trier par date de fin" #elif L==5 "Ordenar por fecha de finalización" // Okoteve traducción #elif L==6 "Ordina per data di fine" #elif L==7 "Sortuj wedlug daty zakonczenia" #elif L==8 "Classificar por data de término" #endif }; const char *Txt_ASG_ATT_OR_SVY_ORDER[2] = { #if L==0 "Data
inicial" #elif L==1 "Startdatum" #elif L==2 "Start
date" #elif L==3 "Fecha
inicial" #elif L==4 "Date de
début" #elif L==5 "Fecha
inicial" // Okoteve traducción #elif L==6 "Data di
inizio" #elif L==7 "Start
data" #elif L==8 "Data de
início" #endif , #if L==0 "Data
final" #elif L==1 "Enddatum" #elif L==2 "End
date" #elif L==3 "Fecha
final" #elif L==4 "Date de
fin" #elif L==5 "Fecha
final" // Okoteve traducción #elif L==6 "Data di
fine" #elif L==7 "Koniec
data" #elif L==8 "Data de
término" #endif }; const char *Txt_Assignments_zone = #if L==0 "Zona d'activitats"; #elif L==1 "Aufgaben-Bereich"; #elif L==2 "Assignments area"; #elif L==3 "Zona de actividades"; #elif L==4 "Zone d'activités"; #elif L==5 "Zona de actividades"; // Okoteve traducción #elif L==6 "Area di attività"; #elif L==7 "Obszarze Zadania"; #elif L==8 "Zona de atividades"; #endif const char *Txt_assignments_zone = #if L==0 "zona d'activitats"; // Necessita traduccio #elif L==1 "Aufgaben-Bereich"; #elif L==2 "assignments area"; #elif L==3 "zona de actividades"; #elif L==4 "zone d'activités"; #elif L==5 "zona de actividades"; // Okoteve traducción #elif L==6 "area di attività"; #elif L==7 "obszarze zadan"; #elif L==8 "zona de atividades"; #endif const char *Txt_Attendance = // Number of times a students has attended to face-to-face class #if L==0 "Assistència"; #elif L==1 "Anwesenheit"; #elif L==2 "Attendance"; #elif L==3 "Asistencia"; #elif L==4 "Présence"; #elif L==5 "Asistencia"; // Okoteve traducción #elif L==6 "Presenza"; #elif L==7 "Bytność"; #elif L==8 "Presença"; #endif const char *Txt_Attendance_list = #if L==0 "Llista assistents"; #elif L==1 "Anwesenheitsliste"; #elif L==2 "Attendance list"; #elif L==3 "Lista asistentes"; #elif L==4 "Liste participants"; #elif L==5 "Lista asistentes"; // Okoteve traducción #elif L==6 "Elenco presenze"; #elif L==7 "Lista obecności"; #elif L==8 "Lista presenças"; #endif const char *Txt_Availability = #if L==0 "Disponibilitat"; #elif L==1 "Verfügbarkeit"; #elif L==2 "Availability"; #elif L==3 "Disponibilidad"; #elif L==4 "Disponibilité"; #elif L==5 "Disponibilidad"; // Okoteve traducción #elif L==6 "Disponibilità"; #elif L==7 "Dostępność"; #elif L==8 "Disponibilidade"; #endif const char *Txt_Average_number_BR_of_assignments_BR_per_course = #if L==0 "Nombre mitj´
d'activitats
per assignatura"; #elif L==1 "Durchschnittliche Anzahl
von Aufgaben
pro Kurs"; #elif L==2 "Average number
of assignments
per course"; #elif L==3 "Nº medio
de actividades
por asignatura"; #elif L==4 "Nombre moyen
d'activités
par matière"; #elif L==5 "Nº medio
de actividades
por asignatura"; // Okoteve traducción #elif L==6 "Numero medio
di attività
per corso"; #elif L==7 "Średnia liczba
zadania
na kurs"; #elif L==8 "Nº medio
de atividades
por disciplina"; #endif const char *Txt_Average_number_BR_of_questions_BR_per_survey = #if L==0 "Nombre mitj´
de preguntes
per enquesta"; #elif L==1 "Durchschnittliche Anzahl
von Fragen
pro Umfrage"; #elif L==2 "Average number
of questions
per survey"; #elif L==3 "Nº medio
de preguntas
por encuesta"; #elif L==4 "Nombre moyen
de questions
par sondage"; #elif L==5 "Nº medio
de preguntas
por encuesta"; // Okoteve traducción #elif L==6 "Numero medio
di domande
per sondaggio"; #elif L==7 "Średnia liczba
pytań
na ankiety"; #elif L==8 "Nº medio
de questões
por inquérito"; #endif const char *Txt_Average_BR_number_BR_of_test_BR_questions_BR_per_course = #if L==0 "Nombre mitj´
de preguntes
de test per
assignatura"; #elif L==1 "Durchschnittliche Anzahl
von Testfragen
pro Kurs"; #elif L==2 "Average
number
of test
questions
per course"; #elif L==3 "Nº medio
de preguntas
de test por
asignatura"; #elif L==4 "Nombre moyen
de questions
de test par
matière"; #elif L==5 "Nº medio
de preguntas
de test por
asignatura"; // Okoteve traducción #elif L==6 "Numero medio
di domande
di test
per corso"; #elif L==7 "Średnia liczba
pytań
testowych
na kurs"; #elif L==8 "Nº medio
de questões
de test por
disciplina"; #endif const char *Txt_Average_number_BR_of_surveys_BR_per_course = #if L==0 "Nombre mitj´
d'enquestes
per assignatura"; #elif L==1 "Durchschnittliche Anzahl
von Umfragen
pro Kurs"; #elif L==2 "Average number
of surveys
per course"; #elif L==3 "Nº medio
de encuestas
por asignatura"; #elif L==4 "Nombre moyen
de sondages
par matière"; #elif L==5 "Nº medio
de encuestas
por asignatura"; // Okoteve traducción #elif L==6 "Numero medio
di sondaggi
per corso"; #elif L==7 "Średnia liczba
badania
na kurs"; #elif L==8 "Nº medio
de inquéritos
por disciplina"; #endif const char *Txt_Average_number_of_courses_to_which_a_user_belongs = #if L==0 "Nombre mitj´ d'assignatures a las quals pertany cada usuari"; #elif L==1 "Durchschnittliche Anzahl von Veranstaltungen, an denen der Benutzer teilnimmt"; #elif L==2 "Average number of courses to which a user belongs"; #elif L==3 "Nº medio de asignaturas a las que pertenece cada usuario"; #elif L==4 "Nombre moyen de cours à qui appartient un utilisateur"; #elif L==5 "Nº medio de asignaturas a las que pertenece cada usuario"; // Okoteve traducción #elif L==6 "Numero medio di corsi a cui appartiene un utente"; #elif L==7 "Średnia liczba kursów do której nalezy uzytkownik"; #elif L==8 "Nº medio de disciplinas em que cada utilizador pertence"; #endif const char *Txt_Average_BR_number_of_BR_times_that_BR_a_question_BR_has_been_BR_responded = #if L==0 "Nº medio
de veces
que se ha
respondido
cada pregunta"; // Necessita traduccio #elif L==1 "Average
number of
times that
a question
has been
responded"; // Need Übersetzung #elif L==2 "Average
number of
times that
a question
has been
responded"; #elif L==3 "Nº medio
de veces
que se ha
respondido
cada pregunta"; #elif L==4 "Average
number of
times that
a question
has been
responded"; // Besoin de traduction #elif L==5 "Nº medio
de veces
que se ha
respondido
cada pregunta"; // Okoteve traducción #elif L==6 "Average
number of
times that
a question
has been
responded"; // Bisogno di traduzione #elif L==7 "Average
number of
times that
a question
has been
responded"; // Potrzebujesz tlumaczenie #elif L==8 "Average
number of
times that
a question
has been
responded"; // Necessita de tradução #endif const char *Txt_Average_BR_number_of_BR_times_that_BR_questions_BR_have_been_BR_responded_BR_per_course = #if L==0 "Nº medio
de veces
que se ha
respondido
por asignatura"; // Necessita traduccio #elif L==1 "Average
number of
times that
questions
have been
responded
per course"; // Need Übersetzung #elif L==2 "Average
number of
times that
questions
have been
responded
per course"; #elif L==3 "Nº medio
de veces
que se ha
respondido
por asignatura"; #elif L==4 "Average
number of
times that
questions
have been
responded
per course"; // Besoin de traduction #elif L==5 "Nº medio
de veces
que se ha
respondido
por asignatura"; // Okoteve traducción #elif L==6 "Average
number of
times that
questions
have been
responded
per course"; // Bisogno di traduzione #elif L==7 "Average
number of
times that
questions
have been
responded
per course"; // Potrzebujesz tlumaczenie #elif L==8 "Average
number of
times that
questions
have been
responded
per course"; // Necessita de tradução #endif const char *Txt_Average_number_of_users_belonging_to_a_course = #if L==0 "Nombre mitjà de usuaris que pertanyen a cada assignatura"; #elif L==1 "Durchschnittliche Anzahl der Benutzer, die an einer Veranstaltung teilnehmen"; #elif L==2 "Average number of users belonging to a course"; #elif L==3 "Nº medio de usuarios que pertenecen a cada asignatura"; #elif L==4 "Nombre moyen d'utilisateurs appartenant à une matière"; #elif L==5 "Nº medio de usuarios que pertenecen a cada asignatura"; // Okoteve traducción #elif L==6 "Numero medio di utenti appartenenti a un corso"; #elif L==7 "Średnia liczba uzytkowników nalezacych do kursu"; #elif L==8 "Nº medio de utilizadores que pertencem a uma disciplina"; #endif const char *Txt_AVERAGE_PHOTO_TYPES[Pho_NUM_AVERAGE_PHOTO_TYPES] = { #if L==0 "mitjana de totes les fotos" #elif L==1 "median of all the photos" // Need Übersetzung #elif L==2 "median of all the photos" #elif L==3 "mediana de todas las fotos" #elif L==4 "médian de toutes les photos" #elif L==5 "mediana de todas las fotos" // Okoteve traducción #elif L==6 "mediana di tutte le foto" #elif L==7 "mediana wszystkich zdjec" #elif L==8 "median of all the photos" // Necessita de tradução #endif , #if L==0 "mitjana aritmètica de totes les fotos" #elif L==1 "arithmetic mean of all the photos" // Need Übersetzung #elif L==2 "arithmetic mean of all the photos" #elif L==3 "media aritmética de todas las fotos" #elif L==4 "moyenne arithmétique de toutes les photos" #elif L==5 "media aritmética de todas las fotos" // Okoteve traducción #elif L==6 "media aritmetica di tutte le foto" #elif L==7 "średnia arytmetyczna wszystkich zdjec" #elif L==8 "arithmetic mean of all the photos" // Necessita de tradução #endif }; const char *Txt_Average_BR_score_BR_per_question_BR_from_0_to_1 = #if L==0 "Puntuación
media
por pregunta
(de 0 a 1)"; // Necessita traduccio #elif L==1 "Average
score
per question
(from 0 to 1)"; // Need Übersetzung #elif L==2 "Average
score
per question
(from 0 to 1)"; #elif L==3 "Puntuación
media
por pregunta
(de 0 a 1)"; #elif L==4 "Average
score
per question
(from 0 to 1)"; // Besoin de traduction #elif L==5 "Puntuación
media
por pregunta
(de 0 a 1)"; // Okoteve traducción #elif L==6 "Average
score
per question
(from 0 to 1)"; // Bisogno di traduzione #elif L==7 "Average
score
per question
(from 0 to 1)"; // Potrzebujesz tlumaczenie #elif L==8 "Average
score
per question
(from 0 to 1)"; // Necessita de tradução #endif const char *Txt_Average_type = #if L==0 "Tipus de mitjana"; #elif L==1 "Art des Mittelwerts"; #elif L==2 "Average type"; #elif L==3 "Tipo de promedio"; #elif L==4 "Type de moyenne"; #elif L==5 "Tipo de promedio"; // Okoteve traducción #elif L==6 "Tipo di media"; #elif L==7 "Średnia typu"; #elif L==8 "Tipo de média"; #endif const char *Txt_Banned_users = #if L==0 "Usuaris bloquejats"; #elif L==1 "Gebannt Benutzer"; #elif L==2 "Banned users"; #elif L==3 "Usuarios bloqueados"; #elif L==4 "Utilisateurs bannis"; #elif L==5 "Usuarios bloqueados"; // Okoteve traducción #elif L==6 "Utenti vietati"; #elif L==7 "Zablokowani użytkownicy"; #elif L==8 "Usuários banidos"; #endif const char *Txt_Banner = #if L==0 "Banner"; #elif L==1 "Werbebanner"; #elif L==2 "Banner"; #elif L==3 "Banner"; #elif L==4 "Banniére"; #elif L==5 "Banner"; #elif L==6 "Banner"; #elif L==7 "Banner"; #elif L==8 "Banner"; #endif const char *Txt_Banner_X_removed = // Warning: it is very important to include %s in the following sentences #if L==0 "Banner %s eliminado."; // Necessita traduccio #elif L==1 "Werbebanner %s entfernt."; #elif L==2 "Banner %s removed."; #elif L==3 "Banner %s eliminado."; #elif L==4 "Banniére %s supprimée."; #elif L==5 "Banner %s eliminado."; // Okoteve traducción #elif L==6 "Banner %s rimosso."; #elif L==7 "Banner %s usuniety."; #elif L==8 "Banner %s removed."; // Necessita de tradução #endif const char *Txt_Banners = #if L==0 "Banners"; #elif L==1 "Werbebanners"; #elif L==2 "Banners"; #elif L==3 "Banners"; #elif L==4 "Banniéres"; #elif L==5 "Banners"; #elif L==6 "Banners"; #elif L==7 "Banners"; #elif L==8 "Banners"; #endif const char *Txt_Before_going_to_any_other_option_you_must_create_your_password = #if L==0 "Abans d'accedir a qualsevol altra opció" " ha de crear la seva contrasenya."; #elif L==1 "Bevor ich auf jede andere Option" " müssen Sie Ihr Passwort erstellen."; #elif L==2 "Before going to any other option" " you must create your password."; #elif L==3 "Antes de acceder a cualquier otra opción" " debe crear su contraseña."; #elif L==4 "Avant d'aller à une autre option" " vous devez créer votre mot de passe."; #elif L==5 "Antes de acceder a cualquier otra opción" " debe crear su contraseña."; // Okoteve traducción #elif L==6 "Prima di scegliere qualsiasi altra opzione" " devi creare una password."; #elif L==7 "Przed pójsciem do jakiejkolwiek" " innej opcji nalezy utworzyć hasło."; #elif L==8 "Antes de ir para qualquer outra opção" "você deve criar sua senha."; #endif const char *Txt_Before_going_to_any_other_option_you_must_fill_your_centre_and_department = #if L==0 "Abans d'accedir a qualsevol altra opció" " ha de omplir el seu centre i department."; #elif L==1 "Bevor ich auf jede andere Option" " müssen Sie Ihre Zentrum und Abteilung zu füllen."; #elif L==2 "Before going to any other option" " you must fill your centre and department."; #elif L==3 "Antes de acceder a cualquier otra opción" " debe rellenar su centro y departamento."; #elif L==4 "Avant d'aller à une autre option" " vous devez remplir votre centre et département."; #elif L==5 "Antes de acceder a cualquier otra opción" " debe rellenar su centro y departamento."; // Okoteve traducción #elif L==6 "Prima di scegliere qualsiasi altra opzione" " devi compilare il tuo centro e dipartimento."; #elif L==7 "Zanim przejdziemy do innych opcji" " nalezy wypelnic tym centrum i działu."; #elif L==8 "Antes de ir para qualquer outra opção" " você deve preencher o seu centro e departamento."; #endif const char *Txt_Before_going_to_any_other_option_you_must_fill_your_record_card_including_your_country_nationality = #if L==0 "Abans d'accedir a qualsevol altra opció" " ha de omplir la seva fitxa," " incloent el seu pais (nacionalitat)."; #elif L==1 "Bevor ich auf jede andere Option" " müssen Sie Ihre Karteikarte zu füllen," " einschließlich Ihrem Land (Nationalität)."; #elif L==2 "Before going to any other option" " you must fill your record card," " including your country (nationality)."; #elif L==3 "Antes de acceder a cualquier otra opción" " debe rellenar su ficha," " incluyendo su país (nacionalidad)."; #elif L==4 "Avant d'aller à une autre option" " vous devez remplir votre carte d'enregistrement," " y compris votre pays (nationalité)."; #elif L==5 "Antes de acceder a cualquier otra opción" " debe rellenar su ficha," " incluyendo su país (nacionalidad)."; // Okoteve traducción #elif L==6 "Prima di scegliere qualsiasi altra opzione" " devi compilare la tua scheda," " compreso il tuo paese (nazionalità)."; #elif L==7 "Zanim przejdziemy do innych opcji" " nalezy wypelnic karte zapisu," " w tym kraju (obywatelstwo"; #elif L==8 "Antes de ir para qualquer outra opção" " você deve preencher o seu cartão," " incluindo seu país (nacionalidade)."; #endif const char *Txt_Before_going_to_any_other_option_you_must_fill_your_email_address = #if L==0 "Abans d'accedir a qualsevol altra opció" " ha de omplir la seva adreça de correu electrònic."; #elif L==1 "Bevor ich auf jede andere Option" " müssen Sie Ihre E-Mail-Adresse ein."; #elif L==2 "Before going to any other option" " you must fill your email address."; #elif L==3 "Antes de acceder a cualquier otra opción" " debe rellenar su dirección de correo electrónico."; #elif L==4 "Avant d'aller à une autre option" " vous devez remplir votre adresse e-mail."; #elif L==5 "Antes de acceder a cualquier otra opción" " debe rellenar su dirección de correo electrónico."; // Okoteve traducción #elif L==6 "Prima di scegliere qualsiasi altra opzione" " devi compilare il tuo indirizzo e-mail."; #elif L==7 "Zanim przejdziemy do innych opcji" " nalezy w tym adresu e-mail."; #elif L==8 "Antes de ir para qualquer outra opção" " você deve preencher o seu endereço de e-mail."; #endif const char *Txt_Before_going_to_any_other_option_you_must_fill_your_ID = #if L==0 "Abans d'accedir a qualsevol altra opció" " ha de omplir el seu ID (DNI/cèdula)."; #elif L==1 "Bevor ich auf jede andere Option" " müssen Sie Ihren Ausweis-Nr. änder."; #elif L==2 "Before going to any other option" " you must fill your ID."; #elif L==3 "Antes de acceder a cualquier otra opción" " debe rellenar su ID (DNI/cédula)."; #elif L==4 "Avant d'aller à une autre option" " vous devez remplir votre ID."; #elif L==5 "Antes de acceder a cualquier otra opción" " debe rellenar su ID (DNI/cédula)."; // Okoteve traducción #elif L==6 "Prima di scegliere qualsiasi altra opzione" " devi compilare il tuo ID."; #elif L==7 "Zanim przejdziemy do innych opcji" " nalezy w tym nick swoje zmień identyfikatory."; #elif L==8 "Antes de ir para qualquer outra opção" " você deve preencher o seu nº. identif."; #endif const char *Txt_Before_going_to_any_other_option_you_must_fill_your_nickname = #if L==0 "Abans d'accedir a qualsevol altra opció" " ha de omplir el seu sobrenom."; #elif L==1 "Bevor ich auf jede andere Option" " müssen Sie Ihren Namen zu füllen."; #elif L==2 "Before going to any other option" " you must fill your nickname."; #elif L==3 "Antes de acceder a cualquier otra opción" " debe rellenar su apodo."; #elif L==4 "Avant d'aller à une autre option" " vous devez remplir votre surnom."; #elif L==5 "Antes de acceder a cualquier otra opción" " debe rellenar su apodo."; // Okoteve traducción #elif L==6 "Prima di scegliere qualsiasi altra opzione" " devi compilare il tuo soprannome."; #elif L==7 "Zanim przejdziemy do innych opcji" " nalezy w tym nick."; #elif L==8 "Antes de ir para qualquer outra opção" " você deve preencher a seu alcunha."; #endif const char *Txt_Before_going_to_any_other_option_you_must_fill_your_institution = #if L==0 "Abans d'accedir a qualsevol altra opció" " ha de omplir la seva institució."; #elif L==1 "Bevor ich auf jede andere Option" " müssen Sie Ihre Einrichtung zu füllen."; #elif L==2 "Before going to any other option" " you must fill your institution."; #elif L==3 "Antes de acceder a cualquier otra opción" " debe rellenar su institución."; #elif L==4 "Avant d'aller à une autre option" " vous devez remplir votre établissement."; #elif L==5 "Antes de acceder a cualquier otra opción" " debe rellenar su institución."; // Okoteve traducción #elif L==6 "Prima di scegliere qualsiasi altra opzione" " devi compilare la tua istituzione accademica."; #elif L==7 "Zanim przejdziemy do innych opcji" " nalezy wypelnic tym instytucji."; #elif L==8 "Antes de ir para qualquer outra opção" " você deve preencher sua instituição."; #endif const char *Txt_Before_going_to_any_other_option_you_must_fill_your_record_card_including_your_name = #if L==0 "Abans d'accedir a qualsevol altra opció" " ha de omplir la seva fitxa," " incloent el seu nom i cognom(s)."; #elif L==1 "Bevor ich auf jede andere Option" " müssen Sie Ihre Karteikarte zu füllen," " mit Ihrem Namen."; #elif L==2 "Before going to any other option" " you must fill your record card," " including your name."; #elif L==3 "Antes de acceder a cualquier otra opción" " debe rellenar su ficha," " incluyendo su nombre y apellido(s)."; #elif L==4 "Avant d'aller à une autre option" " vous devez remplir votre carte d'enregistrement," " y compris votre nom."; #elif L==5 "Antes de acceder a cualquier otra opción" " debe rellenar su ficha," " incluyendo su nombre y apellido(s)."; // Okoteve traducción #elif L==6 "Prima di scegliere qualsiasi altra opzione" " devi compilare la tua scheda," " compresi il tuo nome e cognome."; #elif L==7 "Zanim przejdziemy do innych opcji" " nalezy wypelnic karte zapisu," " w tym imie i nazwisko."; #elif L==8 "Antes de ir para qualquer outra opção" " você deve preencher o cartão," " incluindo seu nome."; #endif const char *Txt_Before_going_to_any_other_option_you_must_fill_your_record_card_including_your_sex = #if L==0 "Abans d'accedir a qualsevol altra opció" " ha de omplir la seva fitxa," " incloent el sexe."; #elif L==1 "Bevor ich auf jede andere Option" " müssen Sie Ihre Karteikarte zu füllen," " einschließlich Ihrer Sex."; #elif L==2 "Before going to any other option" " you must fill your record card," " including your sex."; #elif L==3 "Antes de acceder a cualquier otra opción" " debe rellenar su ficha," " incluyendo el sexo."; #elif L==4 "Avant d'aller à une autre option" " vous devez remplir votre carte d'enregistrement," " y compris votre sexe."; #elif L==5 "Antes de acceder a cualquier otra opción" " debe rellenar su ficha," " incluyendo el sexo."; // Okoteve traducción #elif L==6 "Prima di scegliere qualsiasi altra opzione" " devi compilare la tua scheda," " compreso il sesso."; #elif L==7 "Zanim przejdziemy do innych opcji" " nalezy wypelnic karte zapisu," " w tym pleć."; #elif L==8 "Antes de ir para qualquer outra opção" " você deve preencher o cartão," " incluindo o seu sexo."; #endif const char *Txt_Calculate_average_photo_of_a_degree = #if L==0 "Calcular fotografia mitjana d'una titulació"; #elif L==1 "Calculate average photo of a degree"; // Need Übersetzung #elif L==2 "Calculate average photo of a degree"; #elif L==3 "Calcular fotografía promedio de una titulación"; #elif L==4 "Calculate average photo of a degree"; // Besoin de traduction #elif L==5 "Calcular fotografía promedio de una titulación"; // Okoteve traducción #elif L==6 "Calcolare la media delle foto di laurea"; #elif L==7 "Obliczyc średnia zdjec stopnia"; #elif L==8 "Calculate average photo of a degree"; // Necessita de tradução #endif const char *Txt_Calculate_average_photo_of_THE_DEGREE_X = #if L==0 "Calcular fotografia mitjana de "; #elif L==1 "Calculate average photo of "; // Need Übersetzung #elif L==2 "Calculate average photo of "; #elif L==3 "Calcular fotografía promedio de "; #elif L==4 "Calculate average photo of "; // Besoin de traduction #elif L==5 "Calcular fotografía promedio de "; // Okoteve traducción #elif L==6 "Calcolare la media della foto di "; #elif L==7 "Obliczyc średnia zdjecie "; #elif L==8 "Calculate average photo of "; // Necessita de tradução #endif const char *Txt_Call_the_roll = #if L==0 "Passar llista"; #elif L==1 "Anwesenheit feststellen"; #elif L==2 "Call the roll"; #elif L==3 "Pasar lista"; #elif L==4 "Faire l'appel"; #elif L==5 "Pasar lista"; // Okoteve traducción #elif L==6 "Appello"; #elif L==7 "Imienne"; #elif L==8 "Lista de presença"; #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 #if L==0 "No s'ha creat la carpeta %s" " perque s'excediria la quota de disc."; #elif L==1 "Verzeichnis %s kann aus Platzgründen" " nicht erstellt werden."; #elif L==2 "Cannot create the folder %s" " because it would exceed the disk quota."; #elif L==3 "No se ha creado la carpeta %s" " porque se excedería la cuota de disco."; #elif L==4 "Impossible de créer le répertoire %s" " parce qu'il dépasserait le quota de disque."; #elif L==5 "No se ha creado la carpeta %s" " porque se excedería la cuota de disco."; // Okoteve traducción #elif L==6 "Non si può creare la cartella %s" " perchè si è superata la quota del disco."; #elif L==7 "Nie mozna utworzyć folder %s," " poniewaz to przekracza kontyngentu na dysku."; #elif L==8 "Não é possível criar o diretório %s" " porque iria exceder a cota de disco."; #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 #if L==0 "No s'ha creat la carpeta %s" " perque ja existeix una carpeta o un fitxer amb aquest nom."; #elif L==1 "Cannot create the folder %s" " because there is already a folder or a file with that name."; // Need Übersetzung #elif L==2 "Cannot create the folder %s" " because there is already a folder or a file with that name."; #elif L==3 "No se ha creado la carpeta %s" " porque ya existe una carpeta o un archivo con ese nombre."; #elif L==4 "Impossible de créer le répertoire %s" " car il existe déjà un répertoire ou un fichier avec ce nom."; #elif L==5 "No se ha creado la carpeta %s" " porque ya existe una carpeta o un archivo con ese nombre."; // Okoteve traducción #elif L==6 "Non puoi creare la cartella %s" " perchè già esiste una cartella o un file con quel nome."; #elif L==7 "Nie mozna utworzyć folder %s" " poniewaz istnieje juz folder lub plik o tej nazwie."; #elif L==8 "Não é possível criar o diretório %s" " porque já existe um diretório ou um arquivo com esse nome."; #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 #if L==0 "No s'ha creat l'enllaç %s" " perque s'excediria la quota de disc."; #elif L==1 "Link %s kann aus Platzgründen" " nicht erstellt werden."; #elif L==2 "Cannot create the link %s" " because it would exceed the disk quota."; #elif L==3 "No se ha creado el enlace %s" " porque se excedería la cuota de disco."; #elif L==4 "Impossible de créer le lien %s" " parce qu'il dépasserait le quota de disque."; #elif L==5 "No se ha creado el enlace %s" " porque se excedería la cuota de disco."; // Okoteve traducción #elif L==6 "Non si può creare il link %s" " perchè si è superata la quota del disco."; #elif L==7 "Nie mozna utworzyć link %s," " poniewaz to przekracza kontyngentu na dysku."; #elif L==8 "Não é possível criar a ligação %s" " porque iria exceder a cota de disco."; #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 #if L==0 "No s'ha creat l'enllaç %s" " perque ja existeix una carpeta o un enllaç amb aquest nom."; #elif L==1 "Cannot create the link %s" " because there is already a folder or a link with that name."; // Need Übersetzung #elif L==2 "Cannot create the link %s" " because there is already a folder or a link with that name."; #elif L==3 "No se ha creado el enlace %s" " porque ya existe una carpeta o un enlace con ese nombre."; #elif L==4 "Impossible de créer le lien %s" " car il existe déjà un répertoire ou un lien avec ce nom."; #elif L==5 "No se ha creado el enlace %s" " porque ya existe una carpeta o un enlace con ese nombre."; // Okoteve traducción #elif L==6 "Non puoi creare il link %s" " perchè già esiste una cartella o un link con quel nome."; #elif L==7 "Nie mozna utworzyć link %s" " poniewaz istnieje juz folder lub link o tej nazwie."; #elif L==8 "Não é possível criar a ligação %s" " porque já existe um diretório ou uma ligação com esse nome."; #endif const char *Txt_Can_not_rename_a_folder_of_assignment = #if L==0 "No es pot canviar el nom de una carpeta de activitat."; #elif L==1 "Das Verzeichnis der Aufgabe kann nicht umbenannt werden."; #elif L==2 "Cannot rename a folder of assignment."; #elif L==3 "No se puede cambiar el nombre de una carpeta de actividad."; #elif L==4 "Impossible de renommer un répertoire d'activité."; #elif L==5 "No se puede cambiar el nombre de una carpeta de actividad."; // Okoteve traducción #elif L==6 "Non è possibile rinominare una cartella di attività."; #elif L==7 "Nie mozna zmienic nazwy folderu zadania."; #elif L==8 "Não é possível renomear um diretório de actividade."; #endif const char *Txt_Centre = #if L==0 "Centre"; #elif L==1 "Lehrinstitut"; #elif L==2 "Centre"; #elif L==3 "Centro"; #elif L==4 "Centre"; #elif L==5 "Mbo'ehao"; #elif L==6 "Centro"; #elif L==7 "Centrum"; #elif L==8 "Centro"; #endif const char *Txt_centre = #if L==0 "centre"; #elif L==1 "Lehrinstitut"; #elif L==2 "centre"; #elif L==3 "centro"; #elif L==4 "centre"; #elif L==5 "mbo'ehao"; #elif L==6 "centro"; #elif L==7 "centrum"; #elif L==8 "centro"; #endif const char *Txt_Centre_X_removed = // Warning: it is very important to include %s in the following sentences #if L==0 "Centre %s eliminat."; #elif L==1 "Lehrinstitut %s entfernt."; #elif L==2 "Centre %s removed."; #elif L==3 "Centro %s eliminado."; #elif L==4 "Centre %s removed."; // Besoin de traduction #elif L==5 "Centro %s eliminado."; // Okoteve traducción #elif L==6 "Centro %s rimosso."; #elif L==7 "Centrum %s usuniete."; #elif L==8 "Centre %s removed."; // Necessita de tradução #endif const char *Txt_CENTRE_STATUS[Crs_NUM_STATUS_TXT] = { #if L==0 // Crs_STATUS_UNKNOWN "Desconegudo" #elif L==1 "Unbekannt" #elif L==2 "Unknown" #elif L==3 "Desconocido" #elif L==4 "Inconnu" #elif L==5 "Desconocido" // Okoteve traducción #elif L==6 "Sconosciuto" #elif L==7 "Nieznany" #elif L==8 "Desconhecido" #endif , #if L==0 // Crs_STATUS_ACTIVE "Activo" #elif L==1 "Aktive" #elif L==2 "Active" #elif L==3 "Activo" #elif L==4 "Actif" #elif L==5 "Activo" // Okoteve traducción #elif L==6 "Attivo" #elif L==7 "Aktywne" #elif L==8 "Ativo" #endif , #if L==0 // Crs_STATUS_PENDING "Pendent" #elif L==1 "Offen" #elif L==2 "Pending" #elif L==3 "Pendiente" #elif L==4 "En attente" #elif L==5 "Pendiente" // Okoteve traducción #elif L==6 "In attesa" #elif L==7 "Do czasu" #elif L==8 "Pendente" #endif , #if L==0 // Crs_STATUS_REMOVED "Eliminado" #elif L==1 "Entfernt" #elif L==2 "Removed" #elif L==3 "Eliminado" #elif L==4 "Supprimé" #elif L==5 "Eliminado" // Okoteve traducción #elif L==6 "Rimosso" #elif L==7 "Usuniete" #elif L==8 "Suprimido" #endif }; const char *Txt_Centres = #if L==0 "Centres"; #elif L==1 "Lehrinstitute"; #elif L==2 "Centres"; #elif L==3 "Centros"; #elif L==4 "Centres"; #elif L==5 "Mbo'ehao"; #elif L==6 "Centri"; #elif L==7 "Centra"; #elif L==8 "Centros"; #endif const char *Txt_Centres_ABBREVIATION = #if L==0 "Centres"; #elif L==1 "Lehrinst."; #elif L==2 "Centres"; #elif L==3 "Centros"; #elif L==4 "Centres"; #elif L==5 "Mbo'ehao"; #elif L==6 "Centri"; #elif L==7 "Centra"; #elif L==8 "Centros"; #endif const char *Txt_centres = #if L==0 "centres"; #elif L==1 "Lehrinstitute"; #elif L==2 "centres"; #elif L==3 "centros"; #elif L==4 "centres"; #elif L==5 "mbo'ehao"; #elif L==6 "centri"; #elif L==7 "centra"; #elif L==8 "centros"; #endif const char *Txt_CENTRES_HELP_ORDER[2] = { #if L==0 "Ordenar per centre" #elif L==1 "Nach Lehrinstitut Sortieren" #elif L==2 "Sort by centre" #elif L==3 "Ordenar por centro" #elif L==4 "Trier par centre" #elif L==5 "Ordenar por centro" // Okoteve traducción #elif L==6 "Ordina per centro" #elif L==7 "Sortuj centrum" #elif L==8 "Classificar por centro" #endif , #if L==0 "Ordenar per nombre de professors" #elif L==1 "Sortieren nach Anzahl der Lehrkräfte" #elif L==2 "Sort by no. of teachers" #elif L==3 "Ordenar por nº de profesores" #elif L==4 "Trier par nombre d'enseignants" #elif L==5 "Ordenar por nº de profesores" // Okoteve traducción #elif L==6 "Ordina per numero di professori" #elif L==7 "Sortuj nie. nauczycieli" #elif L==8 "Classificar por nº de professores" #endif }; const char *Txt_CENTRES_ORDER[2] = { #if L==0 "Centre" #elif L==1 "Lehrinstitut" #elif L==2 "Centre" #elif L==3 "Centro" #elif L==4 "Centre" #elif L==5 "Mbo'ehao" #elif L==6 "Centro" #elif L==7 "Centrum" #elif L==8 "Centro" #endif , #if L==0 "Prof." #elif L==1 "Lehrkräfte" #elif L==2 "Teachers" #elif L==3 "Prof." #elif L==4 "Enseign." #elif L==5 "Prof." // Okoteve traducción #elif L==6 "Prof." #elif L==7 "Nauczycieli" #elif L==8 "Prof." #endif }; const char *Txt_Centres_with_pending_degrees = #if L==0 "Centres amb titulacions pendents d'activar"; #elif L==1 "Lehrinstitute mit anhängig Studiengang"; #elif L==2 "Centres with pending degrees"; #elif L==3 "Centros con titulaciones pendientes de activar"; #elif L==4 "Centres avec des études en attente"; #elif L==5 "Centros con titulaciones pendientes de activar"; // Okoteve traducción #elif L==6 "Centri con lauree in sospeso"; #elif L==7 "Centra z stopnie oczekujący"; #elif L==8 "Centros com titulações pendentes"; #endif const char *Txt_Change_email = #if L==0 "Canviar correu"; #elif L==1 "E-Mail ändern"; #elif L==2 "Change e-mail"; #elif L==3 "Cambiar correo"; #elif L==4 "Changer courrier"; #elif L==5 "Cambiar correo"; // Okoteve traducción #elif L==6 "Cambiare e-mail"; #elif L==7 "Zmień e-mail"; #elif L==8 "Alterar e-mail"; #endif const char *Txt_Change_IDs = #if L==0 "Canviar IDs (DNI/cèdulas)"; #elif L==1 "Ausweis-Nr. ändern"; #elif L==2 "Change IDs"; #elif L==3 "Cambiar ID (DNI/cédulas)"; #elif L==4 "Changer IDs"; #elif L==5 "Cambiar ID (DNI/cédulas)"; // Okoteve traducción #elif L==6 "Cambiare ID"; #elif L==7 "Zmień identyfikatory"; #elif L==8 "Alterar nºs. identif."; #endif const char *Txt_Change_my_groups = #if L==0 "Canviar de grups"; #elif L==1 "Gruppen ändern"; #elif L==2 "Change my groups"; #elif L==3 "Cambiar de grupos"; #elif L==4 "Modifier mes groupes"; #elif L==5 "Cambiar de grupos"; // Okoteve traducción #elif L==6 "Cambia i miei gruppi"; #elif L==7 "Zmieńmoje grupy"; #elif L==8 "Alterar meus grupos"; #endif const char *Txt_Change_nickname = #if L==0 "Canviar sobrenom"; #elif L==1 "Benutzername ändern"; #elif L==2 "Change nickname"; #elif L==3 "Cambiar apodo"; #elif L==4 "Changer le surnom"; #elif L==5 "Cambiar apodo"; // Okoteve traducción #elif L==6 "Cambiare nome utente"; #elif L==7 "Zmień nick"; #elif L==8 "Alterar alcunha"; #endif const char *Txt_Change_password = #if L==0 "Canviar contrasenya"; #elif L==1 "Passwort ändern"; #elif L==2 "Change password"; #elif L==3 "Cambiar contraseña"; #elif L==4 "Changer le mot de passe"; #elif L==5 "Cambiar contraseña"; // Okoteve traducción #elif L==6 "Cambiare password"; #elif L==7 "Zmień hasło"; #elif L==8 "Alterar senha"; #endif const char *Txt_Change_photo = #if L==0 "Canviar foto"; #elif L==1 "Foto ändern"; #elif L==2 "Change photo"; #elif L==3 "Cambiar foto"; #elif L==4 "Changer photo"; #elif L==5 "Cambiar foto"; // Okoteve traducción #elif L==6 "Cambiare foto"; #elif L==7 "Zmień zdjecie"; #elif L==8 "Alterar foto"; #endif const char *Txt_Change_preferences = #if L==0 "Canviar preferències"; #elif L==1 "Einstellungen ändern"; #elif L==2 "Change preferences"; #elif L==3 "Cambiar preferencias"; #elif L==4 "Changer mes préférences"; #elif L==5 "Cambiar preferencias"; // Okoteve traducción #elif L==6 "Cambiare preferenze"; #elif L==7 "Zmiana preferencji"; #elif L==8 "Alterar preferências"; #endif const char *Txt_Changing_the_IDs_for_the_following_user = #if L==0 "Canvi de IDs (DNI/cèdulas) del següent usuari:"; #elif L==1 "Changing the IDs for the following user:"; // Need Übersetzung #elif L==2 "Changing the IDs for the following user:"; #elif L==3 "Cambio de los ID (DNI/cédulas) del siguiente usuario:"; #elif L==4 "Changing the IDs for the following user:"; // Besoin de traduction #elif L==5 "Cambio de los ID (DNI/cédulas) del siguiente usuario:"; // Okoteve traducción #elif L==6 "Cambiare gli ID per il seguente utente:"; #elif L==7 "Zmiana hasla dla identyfikatory uzytkowników:"; #elif L==8 "Changing the IDs for the following user:"; // Necessita de tradução #endif const char *Txt_Changing_the_password_for_the_following_user = #if L==0 "Canvi de la contrasenya del següent usuari:"; #elif L==1 "Changing the password for the following user:"; // Need Übersetzung #elif L==2 "Changing the password for the following user:"; #elif L==3 "Cambio de la contraseña del siguiente usuario:"; #elif L==4 "Changing the password for the following user:"; // Besoin de traduction #elif L==5 "Cambio de la contraseña del siguiente usuario:"; // Okoteve traducción #elif L==6 "Cambiare la password per il seguente utente:"; #elif L==7 "Zmiana hasla dla nastepujacych uzytkowników:"; #elif L==8 "Changing the password for the following user:"; // Necessita de tradução #endif const char *Txt_CHAT_Room = #if L==0 "Sala"; #elif L==1 "Raum"; #elif L==2 "Room"; #elif L==3 "Sala"; #elif L==4 "Salle"; #elif L==5 "Sala"; // Okoteve traducción #elif L==6 "Room"; #elif L==7 "Pokój"; #elif L==8 "Room"; #endif const char *Txt_CHAT_Room_code = #if L==0 "Codi de sala"; #elif L==1 "Raum-code"; #elif L==2 "Room code"; #elif L==3 "Código de sala"; #elif L==4 "Code de salle"; #elif L==5 "Código de sala"; // Okoteve traducción #elif L==6 "Chiave di room"; #elif L==7 "Kod pokoju"; #elif L==8 "Código de room"; #endif const char *Txt_Chat_rooms = #if L==0 "Sales de xat"; #elif L==1 "Chat-Räume"; #elif L==2 "Chat rooms"; #elif L==3 "Salas de chat"; #elif L==4 "Salles de chat"; #elif L==5 "Salas de chat"; // Okoteve traducción #elif L==6 "Chat rooms"; #elif L==7 "Czat"; #elif L==8 "Chat rooms"; #endif const char *Txt_Check_marks_in_file_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Consultar qualificacions en el fitxer %s"; #elif L==1 "Bewertung in Datei %s abrufen"; #elif L==2 "Check marks in file %s"; #elif L==3 "Consultar calificaciones en el archivo %s"; #elif L==4 "Check marks in file %s"; // Besoin de traduction #elif L==5 "Consultar calificaciones en el archivo %s"; // Okoteve traducción #elif L==6 "Consultare i risultati nel file %s"; #elif L==7 "Zaznaczenia w pliku %s"; #elif L==8 "Check marks in file %s"; // Necessita de tradução #endif const char *Txt_Classroom = #if L==0 "Aula"; #elif L==1 "Klassenzimmer"; #elif L==2 "Classroom"; #elif L==3 "Aula"; #elif L==4 "Classe"; #elif L==5 "Aula"; // Okoteve traducción #elif L==6 "Aula"; #elif L==7 "Klasa"; #elif L==8 "Sala de aula"; #endif const char *Txt_Click = #if L==0 "Clic"; #elif L==1 "Klick"; #elif L==2 "Click"; #elif L==3 "Clic"; #elif L==4 "Clic"; #elif L==5 "Clic"; // Okoteve traducción #elif L==6 "Clic"; #elif L==7 "Kliknij"; #elif L==8 "Clique"; #endif const char *Txt_Clicks = #if L==0 "Clics"; #elif L==1 "Klicks"; #elif L==2 "Clicks"; #elif L==3 "Clics"; #elif L==4 "Clics"; #elif L==5 "Clics"; // Okoteve traducción #elif L==6 "Clic"; #elif L==7 "Kliknięcia"; #elif L==8 "Cliques"; #endif const char *Txt_Clicks_without_degree_selected = #if L==0 "Clics sense seleccionar titulació"; #elif L==1 "Clicks without degree selected"; // Need Übersetzung #elif L==2 "Clicks without degree selected"; #elif L==3 "Clics sin seleccionar titulación"; #elif L==4 "Clicks without degree selected"; // Besoin de traduction #elif L==5 "Clics sin seleccionar titulación"; // Okoteve traducción #elif L==6 "Clicca senza selezionare laurea"; #elif L==7 "Klikniec bez stopnia wybranych"; #elif L==8 "Clicks without degree selected"; // Necessita de tradução #endif const char *Txt_Closed_survey = #if L==0 "Enquesta tancada"; #elif L==1 "Closed survey"; // Need Übersetzung #elif L==2 "Closed survey"; #elif L==3 "Encuesta cerrada"; #elif L==4 "Sondage fermé"; #elif L==5 "Encuesta cerrada"; // Okoteve traducción #elif L==6 "Sondaggio chiuso"; #elif L==7 "Zamkniete badania"; #elif L==8 "Closed survey"; // Necessita de tradução #endif const char *Txt_Code = #if L==0 "Codi"; #elif L==1 "Code"; #elif L==2 "Code"; #elif L==3 "Cód."; #elif L==4 "Code"; #elif L==5 "Papanga"; #elif L==6 "Cod."; #elif L==7 "Kod"; #elif L==8 "Cód."; #endif const char *Txt_Color_of_the_graphic = #if L==0 "Color de la gràfica"; #elif L==1 "Farbe der Grafik"; #elif L==2 "Color of the graphic"; #elif L==3 "Color de la gráfica"; #elif L==4 "Couleur de l'image"; #elif L==5 "Color de la gráfica"; // Okoteve traducción #elif L==6 "Colore del grafico"; #elif L==7 "Kolor grafiki"; #elif L==8 "Cor do gráfico"; #endif const char *Txt_Columns = #if L==0 "Columnes"; #elif L==1 "Spalten"; #elif L==2 "Columns"; #elif L==3 "Columnas"; #elif L==4 "Colonnes"; #elif L==5 "Columnas"; // Okoteve traducción #elif L==6 "Colonne"; #elif L==7 "Kolumny"; #elif L==8 "Colunas"; #endif const char *Txt_columns = #if L==0 "columnes"; #elif L==1 "Spalten"; #elif L==2 "columns"; #elif L==3 "columnas"; #elif L==4 "colonnes"; #elif L==5 "columnas"; // Okoteve traducción #elif L==6 "colonne"; #elif L==7 "kolumny"; #elif L==8 "colunas"; #endif const char *Txt_Comments_from_students = #if L==0 "Comentaris d'estudiants"; #elif L==1 "Kommentare von Studenten"; #elif L==2 "Comments from students"; #elif L==3 "Comentarios de estudiantes"; #elif L==4 "Commentaires des étudiants"; #elif L==5 "Comentarios de estudiantes"; // Okoteve traducción #elif L==6 "Commenti degli studenti"; #elif L==7 "Komentarze od studentów"; #elif L==8 "Comentários dos alunos"; #endif const char *Txt_Comments_from_teachers = #if L==0 "Comentaris de professors"; #elif L==1 "Kommentare von Lehrern"; #elif L==2 "Comments from teachers"; #elif L==3 "Comentarios de profesores"; #elif L==4 "Commentaires des enseignants"; #elif L==5 "Comentarios de profesores"; // Okoteve traducción #elif L==6 "Commenti degli professori"; #elif L==7 "Komentarze od nauczycieli"; #elif L==8 "Comentários dos professores"; #endif const char *Txt_common_zone = #if L==0 "zona d'arxius compartits"; #elif L==1 "Freigegebene Dateien-Bereich"; #elif L==2 "shared files area"; #elif L==3 "zona de archivos compartidos"; #elif L==4 "zone de fichiers partagés"; #elif L==5 "zona de archivos compartidos"; // Okoteve traducción #elif L==6 "zona di file condivisi"; #elif L==7 "Powierzchnia udostępnionych plików"; #elif L==8 "zona de arquivos compartilhados"; #endif const char *Txt_Completely_eliminate_user = #if L==0 "Eliminar usuari completament"; #elif L==1 "Completely eliminate user"; // Need Übersetzung #elif L==2 "Completely eliminate user"; #elif L==3 "Eliminar usuario completamente"; #elif L==4 "Completely eliminate user"; // Besoin de traduction #elif L==5 "Eliminar usuario completamente"; // Okoteve traducción #elif L==6 "Rimuovere utente completamente"; #elif L==7 "Calkowicie wyeliminowac użytkownika"; #elif L==8 "Completely eliminate user"; // Necessita de tradução #endif const char *Txt_Completely_eliminate_me = #if L==0 "Eliminar-me completament"; #elif L==1 "Completely eliminate me"; // Need Übersetzung #elif L==2 "Completely eliminate me"; #elif L==3 "Eliminarme completamente"; #elif L==4 "Completely eliminate me"; // Besoin de traduction #elif L==5 "Eliminarme completamente"; // Okoteve traducción #elif L==6 "Rimuovimi completamente"; #elif L==7 "Calkowicie mnie wyeliminowac"; #elif L==8 "Completely eliminate me"; // Necessita de tradução #endif const char *Txt_Configure = #if L==0 "Configurar"; #elif L==1 "Konfigurieren"; #elif L==2 "Configure"; #elif L==3 "Configurar"; #elif L==4 "Configurer"; #elif L==5 "Configurar"; // Okoteve traducción #elif L==6 "Configurare"; #elif L==7 "Konfiguracja"; #elif L==8 "Configurar"; #endif const char *Txt_Configure_tests = #if L==0 "Configurar tests"; #elif L==1 "Konfigurieren Tests"; #elif L==2 "Configure tests"; #elif L==3 "Configurar tests"; #elif L==4 "Configurer tests"; #elif L==5 "Configurar tests"; // Okoteve traducción #elif L==6 "Configurare test"; #elif L==7 "Test Konfiguracja"; #elif L==8 "Configurar testes"; #endif const char *Txt_Confirm = #if L==0 "Confirmar"; #elif L==1 "Bestätigen"; #elif L==2 "Confirm"; #elif L==3 "Confirmar"; #elif L==4 "Confirmer"; #elif L==5 "Confirmar"; // Okoteve traducción #elif L==6 "Confermare"; #elif L==7 "Potwierdzenie"; #elif L==8 "Confirmar"; #endif const char *Txt_Confirm_email = #if L==0 "Confirmar correu electrònic"; #elif L==1 "E-Mail bestätigen"; #elif L==2 "Confirm e-mail"; #elif L==3 "Confirmar correo electrónico"; #elif L==4 "Confirmer courrier électronique"; #elif L==5 "Confirmar correo electrónico"; // Okoteve traducción #elif L==6 "Confermare e-mail"; #elif L==7 "Potwierdzenie e-mail"; #elif L==8 "Confirmar e-mail"; #endif const char *Txt_Confirm_my_enrollment = #if L==0 "Confirmar la meva inscripció"; #elif L==1 "Bestätigen Sie meine Registrierung"; #elif L==2 "Confirm my enrollment"; #elif L==3 "Confirmar mi inscripción"; #elif L==4 "Confirmer mon inscription"; #elif L==5 "Confirmar mi inscripción"; // Okoteve traducción #elif L==6 "Confermare la mia iscrizione"; #elif L==7 "Potwierdzenie mojej rejestracji"; #elif L==8 "Confirmar o meu registo"; #endif const char *Txt_Connected_PLURAL = #if L==0 "Connectats"; #elif L==1 "Angemeldet"; #elif L==2 "Connected"; #elif L==3 "Conectados"; #elif L==4 "Connectés"; #elif L==5 "Conectados"; // Okoteve traducción #elif L==6 "Connessi"; #elif L==7 "Online"; #elif L==8 "Conectados"; #endif const char *Txt_connected_PLURAL = #if L==0 "connectats"; #elif L==1 "angemeldet"; #elif L==2 "connected"; #elif L==3 "conectados"; #elif L==4 "connectés"; #elif L==5 "conectados"; // Okoteve traducción #elif L==6 "connessi"; #elif L==7 "online"; #elif L==8 "conectados"; #endif const char *Txt_connected_SINGULAR = #if L==0 "connectat"; #elif L==1 "angemeldet"; #elif L==2 "connected"; #elif L==3 "conectado"; #elif L==4 "connecté"; #elif L==5 "conectado"; // Okoteve traducción #elif L==6 "connesso"; #elif L==7 "online"; #elif L==8 "conectado"; #endif const char *Txt_Connected_users = #if L==0 "Usuaris connectats"; #elif L==1 "Angemeldet Benutzer"; #elif L==2 "Connected users"; #elif L==3 "Usuarios conectados"; #elif L==4 "Utilisateurs connectés"; #elif L==5 "Usuarios conectados"; // Okoteve traducción #elif L==6 "Utenti connessi"; #elif L==7 "Użytkownicy online"; #elif L==8 "Utilizadores conectados"; #endif const char *Txt_Continue = #if L==0 "Continuar"; #elif L==1 "Weiter"; #elif L==2 "Continue"; #elif L==3 "Continuar"; #elif L==4 "Continuer"; #elif L==5 "Hemoña"; #elif L==6 "Continua"; #elif L==7 "Kontynuuj"; #elif L==8 "Continuar"; #endif const char *Txt_Contract_FOLDER_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Contreure %s"; #elif L==1 "Zusammenziehen %s"; #elif L==2 "Contract %s"; #elif L==3 "Contraer %s"; #elif L==4 "Contracter %s"; #elif L==5 "Contraer %s"; // Okoteve traducción #elif L==6 "Contratto %s"; #elif L==7 "Umowy %s"; #elif L==8 "Contrair %s"; #endif const char *Txt_Control_of_class_attendance = #if L==0 "Control d'assistencia a classe"; #elif L==1 "Anwesenheitskontrolle"; #elif L==2 "Control of class attendance"; #elif L==3 "Control de asistencia a clase"; #elif L==4 "Contröle de la fréquentation scolaire"; #elif L==5 "Control de asistencia a clase"; // Okoteve traducción #elif L==6 "Controllo delle presenze in classe"; #elif L==7 "Kontrola obecnosc na zajeciach"; #elif L==8 "Controlo de assiduidade de classe"; #endif const char *Txt_Copy_FOLDER_FILE_OR_LINK_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Copiar %s"; #elif L==1 "Kopieren %s"; #elif L==2 "Copy %s"; #elif L==3 "Copiar %s"; #elif L==4 "Copier %s"; #elif L==5 "Ekopia %s"; #elif L==6 "Copiare %s"; #elif L==7 "Kopia %s"; #elif L==8 "Copiar %s"; #endif const char *Txt_Copy_source = #if L==0 "Origen de còpia"; #elif L==1 "Kopier-Quelle"; #elif L==2 "Copy source"; #elif L==3 "Origen de copia"; #elif L==4 "Source de copie"; #elif L==5 "Origen de copia"; // Okoteve traducción #elif L==6 "Copia sorgente"; #elif L==7 "Kopiowanie zródla"; #elif L==8 "Origem da copia"; #endif const char *Txt_Could_not_detect_any_face_in_front_position_ = #if L==0 "No s'ha detectat cap rostre en posició frontal."; #elif L==1 "Could not detect any face in front position."; // Need Übersetzung #elif L==2 "Could not detect any face in front position."; #elif L==3 "No se ha detectado ningún rostro en posición frontal."; #elif L==4 "Could not detect any face in front position."; // Besoin de traduction #elif L==5 "No se ha detectado ningún rostro en posición frontal."; // Okoteve traducción #elif L==6 "Non puoi rilevare qualsiasi viso in posizione frontale."; #elif L==7 "Nie wykryto zadnej twarzy w przednim."; #elif L==8 "Could not detect any face in front position."; // Necessita de tradução #endif const char *Txt_Could_not_get_the_official_list_of_your_groups_and_students_ = // Warning: it is very important to include three %s in the following sentences #if L==0 "No s'ha pogut obtenir la llista oficial dels seus grups i estudiants.
" "Es posible que haya expirado el plazo para obtener dicha lista.
" "Entre de nuevo a %s desde %s y reinténtelo."; // Necessita traduccio #elif L==1 "Could not get the official list of your groups and students.
" "It is possible that the deadline expired for getting the list.
" "Log in again to %s from %s and try again."; // Need Übersetzung #elif L==2 "Could not get the official list of your groups and students.
" "It is possible that the deadline expired for getting the list.
" "Log in again to %s from %s and try again."; #elif L==3 "No se ha podido obtener la lista oficial de sus grupos y estudiantes.
" "Es posible que haya expirado el plazo para obtener dicha lista.
" "Entre de nuevo a %s desde %s y reinténtelo."; #elif L==4 "Could not get the official list of your groups and students.
" "It is possible that the deadline expired for getting the list.
" "Log in again to %s from %s and try again."; // Besoin de traduction #elif L==5 "No se ha podido obtener la lista oficial de sus grupos y estudiantes.
" "Es posible que haya expirado el plazo para obtener dicha lista.
" "Entre de nuevo a %s desde %s y reinténtelo."; // Okoteve traducción #elif L==6 "Non puoi prendere la lista ufficiale dei tuoi gruppi e degli studenti.
" "E' possibile che il tempo per acquisire la lista sia scaduto.
" "Loggati nuovamente a %s da %s e prova ancora."; #elif L==7 "Nie udalo sie uzyskac oficjalne liste grup i studentów.
" "Jest mozliwe, ze uplynal termin uzyskania listy
" "Zaloguj sie ponownie do %s %s i spróbuj ponownie"; // Please, check this! #elif L==8 "Could not get the official list of your groups and students.
" "It is possible that the deadline expired for getting the list.
" "Log in again to %s from %s and try again."; // Necessita de tradução #endif const char *Txt_Countries = #if L==0 "Països"; #elif L==1 "Länder"; #elif L==2 "Countries"; #elif L==3 "Países"; #elif L==4 "Pays"; #elif L==5 "Tetã"; #elif L==6 "Paesi"; #elif L==7 "Kraje"; #elif L==8 "Países"; #endif const char *Txt_COUNTRIES_HELP_ORDER[2] = { #if L==0 "Ordenar por país" // Necessita traduccio #elif L==1 "Nach Land sortieren" #elif L==2 "Sort by country" #elif L==3 "Ordenar por país" #elif L==4 "Trier par pays" #elif L==5 "Ordenar por país" // Okoteve traducción #elif L==6 "Ordina per paese" #elif L==7 "Sortuj wedlug kraju" #elif L==8 "Classificar por país" #endif , #if L==0 "Ordenar por nº de usuarios" // Necessita traduccio #elif L==1 "Nach Anzahl der Benutzer sortieren" #elif L==2 "Sort by no. of users" #elif L==3 "Ordenar por nº de usuarios" #elif L==4 "Trier par nombre d'utilisateurs" #elif L==5 "Ordenar por nº de usuarios" // Okoteve traducción #elif L==6 "Ordina per numero di utenti" #elif L==7 "Sortuj wedlug liczby uzytkownikow" #elif L==8 "Classificar por nº de utilizadores" #endif }; const char *Txt_Countries_with_pending_institutions = #if L==0 "Països amb institucions pendents d'activar"; #elif L==1 "Länder mit anhängig Hochschulen"; #elif L==2 "Countries with pending institutions"; #elif L==3 "Países con instituciones pendientes de activar"; #elif L==4 "Pays avec des établissements en attente"; #elif L==5 "Países con instituciones pendientes de activar"; // Okoteve traducción #elif L==6 "Paesi con istituzioni in sospeso"; #elif L==7 "Kraje z instytucje oczekujący"; #elif L==8 "Países com instituções pendentes"; #endif const char *Txt_COUNTRIES_ORDER[2] = { #if L==0 "País" #elif L==1 "Land" #elif L==2 "Country" #elif L==3 "País" #elif L==4 "Pays" #elif L==5 "Tetã" #elif L==6 "Paese" #elif L==7 "Kraj" #elif L==8 "País" #endif , #if L==0 "Usuaris" #elif L==1 "Benutzer" #elif L==2 "Users" #elif L==3 "Usuarios" #elif L==4 "Utilisateurs" #elif L==5 "Usuarios" // Okoteve traducción #elif L==6 "Utenti" #elif L==7 "Users" #elif L==8 "Utilizadores" #endif }; const char *Txt_Country = #if L==0 "País"; #elif L==1 "Land"; #elif L==2 "Country"; #elif L==3 "País"; #elif L==4 "Pays;"; #elif L==5 "Tetã"; #elif L==6 "Paese"; #elif L==7 "Kraj"; #elif L==8 "País"; #endif const char *Txt_Country_of_institution = #if L==0 "País de la institució"; #elif L==1 "Land der Hochschule"; #elif L==2 "Country of institution"; #elif L==3 "País de la institución"; #elif L==4 "Pays de l'établissement"; #elif L==5 "Tetã mbo'ehao"; #elif L==6 "Paese di istituzione"; #elif L==7 "Kraj instytucji"; #elif L==8 "País de institução"; #endif const char *Txt_Country_unspecified = #if L==0 "País sense especificar"; #elif L==1 "Land nicht angegeben"; #elif L==2 "Country unspecified"; #elif L==3 "País sin especificar"; #elif L==4 "Pays non spécifié"; #elif L==5 "País sin especificar"; // Okoteve traducción #elif L==6 "Paese non specificato"; #elif L==7 "Kraj nieokreslony"; #elif L==8 "País indeterminado"; #endif const char *Txt_Country_X_removed = // Warning: it is very important to include %s in the following sentences #if L==0 "País %s eliminado."; // Necessita traduccio #elif L==1 "Land %s entfernt."; #elif L==2 "Country %s removed."; #elif L==3 "País %s eliminado."; #elif L==4 "Pays %s removed."; // Besoin de traduction #elif L==5 "País %s eliminado."; // Okoteve traducción #elif L==6 "Paese %s rimosso."; #elif L==7 "Kraj %s usuniete."; #elif L==8 "País %s removed."; // Necessita de tradução #endif const char *Txt_Course = #if L==0 "Assignatura"; #elif L==1 "Veranstaltung"; #elif L==2 "Course"; #elif L==3 "Asignatura"; #elif L==4 "Matière"; #elif L==5 "Mbo'esyry"; #elif L==6 "Corso"; #elif L==7 "Kurs"; #elif L==8 "Disciplina"; #endif const char *Txt_course = #if L==0 "assignatura"; #elif L==1 "Veranstaltung"; #elif L==2 "course"; #elif L==3 "asignatura"; #elif L==4 "matière"; #elif L==5 "mbo'esyry"; #elif L==6 "corso"; #elif L==7 "kurs"; #elif L==8 "disciplina"; #endif const char *Txt_COURSE_STATUS[Crs_NUM_STATUS_TXT] = { #if L==0 // Crs_STATUS_UNKNOWN "Desconegudo" #elif L==1 "Unbekannt" #elif L==2 "Unknown" #elif L==3 "Desconocido" #elif L==4 "Inconnu" #elif L==5 "Desconocido" // Okoteve traducción #elif L==6 "Sconosciuto" #elif L==7 "Nieznany" #elif L==8 "Desconhecido" #endif , #if L==0 // Crs_STATUS_ACTIVE "Activa" #elif L==1 "Aktive" #elif L==2 "Active" #elif L==3 "Activa" #elif L==4 "Actif" #elif L==5 "Activa" // Okoteve traducción #elif L==6 "Attivo" #elif L==7 "Aktywne" #elif L==8 "Ativa" #endif , #if L==0 // Crs_STATUS_PENDING "Pendent" #elif L==1 "Offen" #elif L==2 "Pending" #elif L==3 "Pendiente" #elif L==4 "En attente" #elif L==5 "Pendiente" // Okoteve traducción #elif L==6 "In attesa" #elif L==7 "Do czasu" #elif L==8 "Pendente" #endif , #if L==0 // Crs_STATUS_REMOVED "Eliminada" #elif L==1 "Entfernt" #elif L==2 "Removed" #elif L==3 "Eliminada" #elif L==4 "Supprimé" #elif L==5 "Eliminada" // Okoteve traducción #elif L==6 "Rimosso" #elif L==7 "Usuniete" #elif L==8 "Suprimida" #endif }; const char *Txt_COURSE_With_users = #if L==0 "Amb usuaris"; #elif L==1 "Mit Benutzer"; #elif L==2 "With users"; #elif L==3 "Con usuarios"; #elif L==4 "Avec utilisateurs"; #elif L==5 "Con usuarios"; // Okoteve traducción #elif L==6 "Con utenti"; #elif L==7 "Z uzytkownikow"; #elif L==8 "Com utilizadores"; #endif const char *Txt_COURSE_Without_users = #if L==0 "Sense usuaris"; #elif L==1 "Ohne Benutzer"; #elif L==2 "Without users"; #elif L==3 "Sin usuarios"; #elif L==4 "Sans utilisateurs"; #elif L==5 "Sin usuarios"; // Okoteve traducción #elif L==6 "Senza utenti"; #elif L==7 "Bez uzytkownikow"; #elif L==8 "Sem utilizadores"; #endif const char *Txt_Course_X_removed = // Warning: it is very important to include %s in the following sentences #if L==0 "Asignatura %s eliminada."; // Necessita traduccio #elif L==1 "Veranstaltung %s entfernt."; #elif L==2 "Course %s removed."; #elif L==3 "Asignatura %s eliminada."; #elif L==4 "Matière %s supprimé."; #elif L==5 "Asignatura %s eliminada."; // Okoteve traducción #elif L==6 "Corso %s rimosso."; #elif L==7 "Kurs %s usuniete."; #elif L==8 "Course %s removed."; // Necessita de tradução #endif const char *Txt_Courses = #if L==0 "Assignatures"; #elif L==1 "Veranstaltungen"; #elif L==2 "Courses"; #elif L==3 "Asignaturas"; #elif L==4 "Matières"; #elif L==5 "Mbo'esyry"; #elif L==6 "Corsi"; #elif L==7 "Kursów"; #elif L==8 "Disciplinas"; #endif const char *Txt_Courses_ABBREVIATION = #if L==0 "Assignat."; #elif L==1 "Veranst."; #elif L==2 "Courses"; #elif L==3 "Asignat."; #elif L==4 "Matiè."; #elif L==5 "Asignat."; // Okoteve traducción #elif L==6 "Corsi"; #elif L==7 "Kursów"; #elif L==8 "Discip."; #endif const char *Txt_courses = #if L==0 "assignatures"; #elif L==1 "Veranstaltungen"; #elif L==2 "courses"; #elif L==3 "asignaturas"; #elif L==4 "matières"; #elif L==5 "mbo'esyry"; #elif L==6 "corsi"; #elif L==7 "kursów"; #elif L==8 "disciplinas"; #endif const char *Txt_X_courses_have_been_eliminated = // Warning: it is very important to include %u in the following sentences #if L==0 "Se ha(n) eliminado %u asignatura(s)."; // Necessita traduccio #elif L==1 "%u course(s) have been eliminated."; // Need Übersetzung #elif L==2 "%u course(s) have been eliminated."; #elif L==3 "Se ha(n) eliminado %u asignatura(s)."; #elif L==4 "%u course(s) have been eliminated."; // Besoin de traduction #elif L==5 "Se ha(n) eliminado %u asignatura(s)."; // Okoteve traducción #elif L==6 "%u corsi sono stati rimossi."; #elif L==7 "%u course(s) have been eliminated."; // Potrzebujesz tlumaczenie #elif L==8 "%u course(s) have been eliminated."; // Necessita de tradução #endif const char *Txt_Create_account = #if L==0 "Crea compte"; #elif L==1 "Benutzerkonto anlegen"; #elif L==2 "Create account"; #elif L==3 "Crear cuenta"; #elif L==4 "Créer un compte"; #elif L==5 "Crear cuenta"; // Okoteve traducción #elif L==6 "Registrati"; #elif L==7 "Załóż nowe konto"; #elif L==8 "Criar conta"; #endif const char *Txt_Create_announcement = #if L==0 "Crear anunci"; #elif L==1 "Erstelle Bekanntmachung"; #elif L==2 "Create announcement"; #elif L==3 "Crear anuncio"; #elif L==4 "Créer annonce"; #elif L==5 "Crear anuncio"; // Okoteve traducción #elif L==6 "Crea annuncio"; #elif L==7 "Stwórz ogłoszenia"; #elif L==8 "Criar anúncio"; #endif const char *Txt_Create_assignment = #if L==0 "Crear actividad"; // Necessita traduccio #elif L==1 "Aufgabe erstellen"; #elif L==2 "Create assignment"; #elif L==3 "Crear actividad"; #elif L==4 "Créer activité"; #elif L==5 "Crear actividad"; // Okoteve traducción #elif L==6 "Crea attività"; #elif L==7 "Utwórz zadanie"; #elif L==8 "Criar atividade"; #endif const char *Txt_Create_banner = #if L==0 "Crear banner"; // Necessita traduccio #elif L==1 "Werbebanner erstellen"; #elif L==2 "Create banner"; #elif L==3 "Crear banner"; #elif L==4 "Créer banniére"; #elif L==5 "Crear banner"; // Okoteve traducción #elif L==6 "Crea banner"; #elif L==7 "Utwórz banner"; #elif L==8 "Criar banner"; #endif const char *Txt_Create_centre = #if L==0 "Crear centro"; // Necessita traduccio #elif L==1 "Lehrinstitut eingeben"; #elif L==2 "Create centre"; #elif L==3 "Crear centro"; #elif L==4 "Créer centre"; #elif L==5 "Crear centro"; // Okoteve traducción #elif L==6 "Crea centro"; #elif L==7 "Tworzenie centrum"; #elif L==8 "Criar centro"; #endif const char *Txt_Create_country = #if L==0 "Crear país"; // Necessita traduccio #elif L==1 "Land eingeben"; #elif L==2 "Create country"; #elif L==3 "Crear país"; #elif L==4 "Créer pays"; #elif L==5 "Crear país"; // Okoteve traducción #elif L==6 "Crea paese"; #elif L==7 "Tworzenie kraju"; #elif L==8 "Criar país"; #endif const char *Txt_Create_course = #if L==0 "Crear asignatura"; // Necessita traduccio #elif L==1 "Veranstaltung eingeben"; #elif L==2 "Create course"; #elif L==3 "Crear asignatura"; #elif L==4 "Créer matière"; #elif L==5 "Crear asignatura"; // Okoteve traducción #elif L==6 "Crea corso"; #elif L==7 "Tworzenie kursu"; #elif L==8 "Criar disciplina"; #endif const char *Txt_Create_degree = #if L==0 "Crear titulación"; // Necessita traduccio #elif L==1 "Studiengang eingeben"; #elif L==2 "Create degree"; #elif L==3 "Crear titulación"; #elif L==4 "Créer étude"; #elif L==5 "Crear titulación"; // Okoteve traducción #elif L==6 "Crea laurea"; #elif L==7 "Tworzenie stopnia"; #elif L==8 "Criar titulação"; #endif const char *Txt_Create_department = #if L==0 "Crear departamento"; // Necessita traduccio #elif L==1 "Abteilung eingeben"; #elif L==2 "Create department"; #elif L==3 "Crear departamento"; #elif L==4 "Créer département"; #elif L==5 "Crear departamento"; // Okoteve traducción #elif L==6 "Crea dipartimento"; #elif L==7 "Tworzenie działu"; #elif L==8 "Criar departamento"; #endif const char *Txt_Create_e_mail_message = #if L==0 "Crear mensaje de correo electrónico"; // Necessita traduccio #elif L==1 "Neue E-Mail-Nachricht"; #elif L==2 "Create e-mail message"; #elif L==3 "Crear mensaje de correo electrónico"; #elif L==4 "Créer un e-mail message"; #elif L==5 "Crear mensaje de correo electrónico"; // Okoteve traducción #elif L==6 "Crea messaggio e-mail"; #elif L==7 "Tworzenie wiadomosci e-mail"; #elif L==8 "Criar uma mensagem de e-mail"; #endif const char *Txt_Create_event = #if L==0 "Crear evento"; // Necessita traduccio #elif L==1 "Ereignis erstellen"; #elif L==2 "Create event"; #elif L==3 "Crear evento"; #elif L==4 "Créer événement"; #elif L==5 "Crear evento"; // Okoteve traducción #elif L==6 "Crea evento"; #elif L==7 "Utwórz wydarzenie"; #elif L==8 "Criar evento"; #endif const char *Txt_Create_folder = #if L==0 "Crear carpeta"; // Necessita traduccio #elif L==1 "Verzeichnis anlegen"; #elif L==2 "Create folder"; #elif L==3 "Crear carpeta"; #elif L==4 "Créer répertoire"; #elif L==5 "Crear carpeta"; // Okoteve traducción #elif L==6 "Crea cartella"; #elif L==7 "Utwórz folder"; #elif L==8 "Criar diretório"; #endif const char *Txt_Create_group = #if L==0 "Crear grupo"; // Necessita traduccio #elif L==1 "Gruppe erstellen"; #elif L==2 "Create group"; #elif L==3 "Crear grupo"; #elif L==4 "Créer groupe"; #elif L==5 "Crear grupo"; // Okoteve traducción #elif L==6 "Crea gruppo"; #elif L==7 "Create group"; // Potrzebujesz tlumaczenie #elif L==8 "Criar grupo"; #endif const char *Txt_Create_holiday = #if L==0 "Crear festividad"; // Necessita traduccio #elif L==1 "Feiertag eingeben"; #elif L==2 "Create holiday"; #elif L==3 "Crear festividad"; #elif L==4 "Créer fête"; #elif L==5 "Crear festividad"; // Okoteve traducción #elif L==6 "Crea festività"; #elif L==7 "Tworzenie wakacje"; #elif L==8 "Criar féria"; #endif const char *Txt_Create_institution = #if L==0 "Crear institución"; // Necessita traduccio #elif L==1 "Hochschule eingeben"; #elif L==2 "Create institution"; #elif L==3 "Crear institución"; #elif L==4 "Créer établissement"; #elif L==5 "Crear institución"; // Okoteve traducción #elif L==6 "Crea istituzione"; #elif L==7 "Tworzenie instytucji"; #elif L==8 "Criar institução"; #endif const char *Txt_Create_link = #if L==0 "Crear enllaç"; #elif L==1 "Link erstellen"; #elif L==2 "Create link"; #elif L==3 "Crear enlace"; #elif L==4 "Créer lien"; #elif L==5 "Crear enlace"; // Okoteve traducción #elif L==6 "Crea link"; #elif L==7 "Utwórz link"; #elif L==8 "Criar ligação"; #endif const char *Txt_Create_mail_domain = #if L==0 "Crear dominio de correo"; // Necessita traduccio #elif L==1 "Mail-Domäne anlegen"; #elif L==2 "Create mail domain"; #elif L==3 "Crear dominio de correo"; #elif L==4 "Créer domaine de messagerie"; #elif L==5 "Crear dominio de correo"; // Okoteve traducción #elif L==6 "Crea campo mail"; #elif L==7 "Tworzenie domeny mail"; #elif L==8 "Criar domínio de email"; #endif const char *Txt_Create_notice = #if L==0 "Crear avís"; #elif L==1 "Erstelle Ankündigung"; #elif L==2 "Create notice"; #elif L==3 "Crear aviso"; #elif L==4 "Créer avis"; #elif L==5 "Crear aviso"; // Okoteve traducción #elif L==6 "Crea avviso"; #elif L==7 "Stwórz powiadomienie"; #elif L==8 "Criar aviso"; #endif const char *Txt_Create_BR_notification = #if L==0 "Crear
notificació"; #elif L==1 "Anmeldung
eingeben"; #elif L==2 "Create
notification"; #elif L==3 "Crear
notificación"; #elif L==4 "Créer
notification"; #elif L==5 "Crear
notificación"; // Okoteve traducción #elif L==6 "Crea
notifica"; #elif L==7 "Tworzenie
powiadomienie"; #elif L==8 "Criar
notificação"; #endif const char *Txt_Create_password = #if L==0 "Crear contrasenya"; #elif L==1 "Passwort erstellen"; #elif L==2 "Crear password"; #elif L==3 "Cambiar contraseña"; #elif L==4 "Créer le mot de passe"; #elif L==5 "Crear contraseña"; // Okoteve traducción #elif L==6 "Cambiare password"; #elif L==7 "Utwórz hasło"; #elif L==8 "Criar senha"; #endif const char *Txt_Create_place = #if L==0 "Crear lugar"; // Necessita traduccio #elif L==1 "Standort eingeben"; #elif L==2 "Create place"; #elif L==3 "Crear lugar"; #elif L==4 "Créer emplacement"; #elif L==5 "Crear lugar"; // Okoteve traducción #elif L==6 "Crea localit`"; #elif L==7 "Tworzenie miejsce"; #elif L==8 "Criar localização"; #endif const char *Txt_Create_plugin = #if L==0 "Crear complemento"; // Necessita traduccio #elif L==1 "Plugin erstellen"; #elif L==2 "Create plugin"; #elif L==3 "Crear complemento"; #elif L==4 "Créer plugin"; #elif L==5 "Crear complemento"; // Okoteve traducción #elif L==6 "Crea plugin"; #elif L==7 "Tworzenie plugin"; #elif L==8 "Criar plugin"; #endif const char *Txt_Create_record_field = #if L==0 "Crear campo de ficha"; // Necessita traduccio #elif L==1 "Datenfeld erstellen"; #elif L==2 "Create record field"; #elif L==3 "Crear campo de ficha"; #elif L==4 "Créer champ de carte"; #elif L==5 "Crear campo de ficha"; // Okoteve traducción #elif L==6 "Crea campo di scheda"; #elif L==7 "Utwórz rekord pola"; #elif L==8 "Criar campo de cartão"; #endif const char *Txt_Create_survey = #if L==0 "Crear enquesta"; #elif L==1 "Umfrage erstellen"; #elif L==2 "Create survey"; #elif L==3 "Crear encuesta"; #elif L==4 "Créer sondage"; #elif L==5 "Crear encuesta"; // Okoteve traducción #elif L==6 "Crea sondaggio"; #elif L==7 "Tworzenie ankiety"; #elif L==8 "Criar inquérito"; #endif const char *Txt_Create_type_of_degree = #if L==0 "Crear tipo de titulación"; // Necessita traduccio #elif L==1 "Abschlussart definieren"; #elif L==2 "Create type of degree"; #elif L==3 "Crear tipo de titulación"; #elif L==4 "Créer type d'étude"; #elif L==5 "Crear tipo de titulación"; // Okoteve traducción #elif L==6 "Crea tipo di laurea"; #elif L==7 "Tworzenie typu stopnia"; #elif L==8 "Criar tipo de titulação"; #endif const char *Txt_Create_type_of_group = #if L==0 "Crear tipo de grupo"; // Necessita traduccio #elif L==1 "Gruppen-Typ definieren"; #elif L==2 "Create type of group"; #elif L==3 "Crear tipo de grupo"; #elif L==4 "Créer type de groupe"; #elif L==5 "Crear tipo de grupo"; // Okoteve traducción #elif L==6 "Crea tipo di gruppo"; #elif L==7 "Tworzenie typu grupy"; #elif L==8 "Criar tipo de grupo"; #endif const char *Txt_Create_ZIP_file = #if L==0 "Crear archivo ZIP"; // Necessita traduccio #elif L==1 "ZIP-Datei erstellen"; #elif L==2 "Create ZIP file"; #elif L==3 "Crear archivo ZIP"; #elif L==4 "Créer fichier ZIP"; #elif L==5 "Crear archivo ZIP"; // Okoteve traducción #elif L==6 "Crea file ZIP"; #elif L==7 "Tworzenie pliku ZIP"; #elif L==8 "Criar arquivo ZIP"; #endif const char *Txt_Created_new_announcement_of_exam = #if L==0 "Creada nueva convocatoria de examen."; // Necessita traduccio #elif L==1 "Neuer Aufruf zur Prüfung erstellt."; #elif L==2 "Created new announcement of exam."; #elif L==3 "Creada nueva convocatoria de examen."; #elif L==4 "Créé nouvelle convocation à un examen."; #elif L==5 "Creada nueva convocatoria de examen."; // Okoteve traducción #elif L==6 "Creata nuova sessione d'esame."; #elif L==7 "Utworzono nowe ogloszenie egzamin."; #elif L==8 "Criado nova chamada para exame."; #endif const char *Txt_Created_new_assignment_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Creada nueva actividad %s."; // Necessita traduccio #elif L==1 "Neue Aufgabe %s erstellt."; #elif L==2 "Created new assignment %s."; #elif L==3 "Creada nueva actividad %s."; #elif L==4 "Créée nouvelle activité %s."; #elif L==5 "Creada nueva actividad %s."; // Okoteve traducción #elif L==6 "Creata nuova attività %s."; #elif L==7 "Utworzono nowa zadania %s."; #elif L==8 "Criada nova atividade %s."; #endif const char *Txt_Created_new_banner_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Creado nuevo banner %s."; // Necessita traduccio #elif L==1 "Neuer Werbebanner %s erstellt."; #elif L==2 "Created new banner %s."; #elif L==3 "Creado nuevo banner %s."; #elif L==4 "Créé nouvelle banniére %s."; #elif L==5 "Creado nuevo banner %s."; // Okoteve traducción #elif L==6 "Creato nuovo banner %s."; #elif L==7 "Utworzono nowy banner %s."; #elif L==8 "Criado novo banner %s."; #endif const char *Txt_Created_new_centre_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Creado nuevo centro %s."; // Necessita traduccio #elif L==1 "Neues Lehrinstitut %s eingegeben."; #elif L==2 "Created new centre %s."; #elif L==3 "Creado nuevo centro %s."; #elif L==4 "Créé nouveau centre %s."; #elif L==5 "Creado nuevo centro %s."; // Okoteve traducción #elif L==6 "Creato nuovo centro %s."; #elif L==7 "Utworzono nowe centrum %s."; #elif L==8 "Criado novo centro %s."; #endif const char *Txt_Created_new_country_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Creado nuevo país %s."; // Necessita traduccio #elif L==1 "Neues Land %s eingegeben."; #elif L==2 "Created new country %s."; #elif L==3 "Creado nuevo país %s."; #elif L==4 "Créé nouveau pays %s."; #elif L==5 "Creado nuevo país %s."; // Okoteve traducción #elif L==6 "Creato nuovo paese %s."; #elif L==7 "Utworzono nowa kraju %s."; #elif L==8 "Criado novo país %s."; #endif const char *Txt_Created_new_course_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Creada nueva asignatura %s."; // Necessita traduccio #elif L==1 "Neue Veranstaltung %s eingegeben."; #elif L==2 "Created new course %s."; #elif L==3 "Creada nueva asignatura %s."; #elif L==4 "Créée nouvelle matière %s."; #elif L==5 "Creada nueva asignatura %s."; // Okoteve traducción #elif L==6 "Creato nuovo corso %s."; #elif L==7 "Utworzono nowa oczywiscie %s."; #elif L==8 "Criada nova disciplina %s."; #endif const char *Txt_Created_new_degree_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Creada nueva titulación %s."; // Necessita traduccio #elif L==1 "Neuer Studiengang %s eingegeben."; #elif L==2 "Created new degree %s."; #elif L==3 "Creada nueva titulación %s."; #elif L==4 "Créée nouvel étude %s."; #elif L==5 "Creada nueva titulación %s."; // Okoteve traducción #elif L==6 "Creata nuova laurea %s."; #elif L==7 "Utworzono nowy poziom %s."; #elif L==8 "Criada nova titulação %s."; #endif const char *Txt_Created_new_department_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Creado nuevo departamento %s."; // Necessita traduccio #elif L==1 "Neue Abteilung %s eingegeben."; #elif L==2 "Created new department %s."; #elif L==3 "Creado nuevo departamento %s."; #elif L==4 "Créé nouveau département %s."; #elif L==5 "Creado nuevo departamento %s."; // Okoteve traducción #elif L==6 "Creato nuovo dipartimento %s."; #elif L==7 "Utworzono nowy dział %s."; #elif L==8 "Criado novo departamento %s."; #endif const char *Txt_Created_new_event_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Creado nuevo evento %s."; // Necessita traduccio #elif L==1 "Neues Ereignis %s eingegeben."; #elif L==2 "Created new event %s."; #elif L==3 "Creado nuevo evento %s."; #elif L==4 "Créé nouveau événement %s."; #elif L==5 "Creado nuevo evento %s."; // Okoteve traducción #elif L==6 "Creato nuovo evento %s."; #elif L==7 "Utworzono nowe wydarzenie %s."; #elif L==8 "Criado novo evento %s."; #endif const char *Txt_Created_new_group_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Creado nuevo grupo %s."; // Necessita traduccio #elif L==1 "Neue Gruppe %s erstellt."; #elif L==2 "Created new group %s."; #elif L==3 "Creado nuevo grupo %s."; #elif L==4 "Créé nouveau groupe %s."; #elif L==5 "Creado nuevo grupo %s."; // Okoteve traducción #elif L==6 "Creato nuovo gruppo %s."; #elif L==7 "Stworzyl nowa grupe %s."; #elif L==8 "Criado novo grupo %s."; #endif const char *Txt_Created_new_holiday_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Creada nueva festividad %s."; // Necessita traduccio #elif L==1 "Neuer Feiertag %s eingegeben."; #elif L==2 "Created new holiday %s."; #elif L==3 "Creada nueva festividad %s."; #elif L==4 "Créé nouvelle fête %s."; #elif L==5 "Creada nueva festividad %s."; // Okoteve traducción #elif L==6 "Creata nuova festività %s."; #elif L==7 "Utworzono nowe swieto %s."; #elif L==8 "Criado nova féria %s."; #endif const char *Txt_Created_new_institution_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Creada nueva institución %s."; // Necessita traduccio #elif L==1 "Neue Hochschule %s eingegeben."; #elif L==2 "Created new institution %s."; #elif L==3 "Creada nueva institución %s."; #elif L==4 "Créée nouvel établissement %s."; #elif L==5 "Creada nueva institución %s."; // Okoteve traducción #elif L==6 "Creata nuova istituzione %s."; #elif L==7 "Utworzono nowa instytucje %s."; #elif L==8 "Criada nova institução %s."; #endif const char *Txt_Created_new_link_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Creado nuevo enlace %s."; // Necessita traduccio #elif L==1 "Neuer Link %s erstellt."; #elif L==2 "Created new link %s."; #elif L==3 "Creado nuevo enlace %s."; #elif L==4 "Créé nouveau lien %s."; #elif L==5 "Creado nuevo enlace %s."; // Okoteve traducción #elif L==6 "Creato nuovo link %s."; #elif L==7 "Utworzono nowy link %s."; #elif L==8 "Criado nova ligação %s."; #endif const char *Txt_Created_new_mail_domain_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Creado nuevo dominio de correo %s."; // Necessita traduccio #elif L==1 "Neue Mail-Domäne %s angelegt."; #elif L==2 "Created new mail domain %s."; #elif L==3 "Creado nuevo dominio de correo %s."; #elif L==4 "Créé nouvel domaine de messagerie %s."; #elif L==5 "Creado nuevo dominio de correo %s."; // Okoteve traducción #elif L==6 "Creato nuovo campo mail %s."; #elif L==7 "Utworzono nowa domena mail %s."; #elif L==8 "Criado novo domínio de email %s."; #endif const char *Txt_Created_new_place_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Creado nuevo lugar %s."; // Necessita traduccio #elif L==1 "Neuer Standort %s eingegeben."; #elif L==2 "Created new place %s."; #elif L==3 "Creado nuevo lugar %s."; #elif L==4 "Créé nouvel emplacement %s."; #elif L==5 "Creado nuevo lugar %s."; // Okoteve traducción #elif L==6 "Creata nuova localit` %s."; #elif L==7 "Utworzono nowe miejsce %s."; #elif L==8 "Criado nova localização %s."; #endif const char *Txt_Created_new_plugin_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Creado nuevo complemento %s."; // Necessita traduccio #elif L==1 "Neuer Plugin %s erstellt."; #elif L==2 "Created new plugin %s."; #elif L==3 "Creado nuevo complemento %s."; #elif L==4 "Créé nouveau plugin %s."; #elif L==5 "Creado nuevo complemento %s."; // Okoteve traducción #elif L==6 "Creato nuovo plugin %s."; #elif L==7 "Utworzono nowy plugin %s."; #elif L==8 "Criado novo plugin %s."; #endif const char *Txt_Created_new_record_field_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Creado nuevo campo de ficha %s."; // Necessita traduccio #elif L==1 "Neuer Datenfeld %s erstellt."; #elif L==2 "Created new record field %s."; #elif L==3 "Creado nuevo campo de ficha %s."; #elif L==4 "Créé nouveau champ de carte %s."; #elif L==5 "Creado nuevo campo de ficha %s."; // Okoteve traducción #elif L==6 "Creato nuovo campo di scheda %s."; #elif L==7 "Utworzono nowe pola rekordu %s."; #elif L==8 "Created new record field %s."; // Necessita de tradução #endif const char *Txt_Created_new_survey_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Creada nueva encuesta %s."; // Necessita traduccio #elif L==1 "Neuer Umfrage %s erstellt."; #elif L==2 "Created new survey %s."; #elif L==3 "Creada nueva encuesta %s."; #elif L==4 "Créé nouveau sondage %s."; #elif L==5 "Creada nueva encuesta %s."; // Okoteve traducción #elif L==6 "Creato nuovo sondaggio %s."; #elif L==7 "Utworzono nowe badania %s."; #elif L==8 "Criado novo inquérito %s."; #endif const char *Txt_Created_new_type_of_degree_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Creado nuevo tipo de titulación %s."; // Necessita traduccio #elif L==1 "Neue Abschlussart %s definiert."; #elif L==2 "Created new type of degree %s."; #elif L==3 "Creado nuevo tipo de titulación %s."; #elif L==4 "Créé nouveau type d'étude %s."; #elif L==5 "Creado nuevo tipo de titulación %s."; // Okoteve traducción #elif L==6 "Creato nuovo tipo di laurea %s."; #elif L==7 "Stworzyl nowy typ stopnia %s."; #elif L==8 "Criado novo tipo de titulação %s."; #endif const char *Txt_Created_new_type_of_group_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Creado nuevo tipo de grupo %s."; // Necessita traduccio #elif L==1 "Neuer Gruppen-Typ %s definiert."; #elif L==2 "Created new type of group %s."; #elif L==3 "Creado nuevo tipo de grupo %s."; #elif L==4 "Créé nouveau type de groupe %s."; #elif L==5 "Creado nuevo tipo de grupo %s."; // Okoteve traducción #elif L==6 "Creato nuovo tipo di gruppo %s."; #elif L==7 "Stworzyl nowy typ grupy %s."; #elif L==8 "Criado novo tipo de grupo %s."; #endif const char *Txt_Created_tables_in_the_database_that_did_not_exist = #if L==0 "Creadas las tablas de la base de datos que no existían."; // Necessita traduccio #elif L==1 "Neue Tabellen in der Datenbank erstellt."; #elif L==2 "Created tables in the database that did not exist."; #elif L==3 "Creadas las tablas de la base de datos que no existían."; #elif L==4 "Tables créées dans la base de données qui n'existaient pas."; #elif L==5 "Creadas las tablas de la base de datos que no existían."; // Okoteve traducción #elif L==6 "Tabelle create in un database inesistente."; #elif L==7 "Wykonawca tabel w bazie danych, które nie istnialy."; #elif L==8 "Criadas tabelas no banco de dados que não existiam."; #endif const char *Txt_Creating_database_tables_if_they_do_not_exist = #if L==0 "Creando tablas de la base de datos si no existen..."; // Necessita traduccio #elif L==1 "Creating database tables if they do not exist..."; // Need Übersetzung #elif L==2 "Creating database tables if they do not exist..."; #elif L==3 "Creando tablas de la base de datos si no existen..."; #elif L==4 "Creating database tables if they do not exist..."; // Besoin de traduction #elif L==5 "Creando tablas de la base de datos si no existen..."; // Okoteve traducción #elif L==6 "Creazione tabelle della base di dati se non esistono..."; #elif L==7 "Tworzenie tabel bazy danych, jesli ich nie ma ..."; #elif L==8 "Creating database tables if they do not exist..."; // Necessita de tradução #endif const char *Txt_crs = // Abbreviation of "course" (three characters + dot) #if L==0 "asg."; // Necessita traduccio #elif L==1 "Ver."; #elif L==2 "crs."; #elif L==3 "asg."; #elif L==4 "mat."; #elif L==5 "mbo'esyry"; #elif L==6 "crs."; #elif L==7 "Oczywiscie."; #elif L==8 "crs."; #endif const char *Txt_Current_email = #if L==0 "Correu electrònic actual"; #elif L==1 "Aktueller E-Mail"; #elif L==2 "Current e-mail"; #elif L==3 "Correo electrónico actual"; #elif L==4 "Courrier électronique actuel"; #elif L==5 "Correo electrónico actual"; // Okoteve traducción #elif L==6 "E-mail corrente"; #elif L==7 "Obecny e-mail"; #elif L==8 "E-mail atual"; #endif const char *Txt_Current_nickname = #if L==0 "Sobrenom actual"; #elif L==1 "Aktueller Benutzername"; #elif L==2 "Current nickname"; #elif L==3 "Apodo actual"; #elif L==4 "Surnom actuel"; #elif L==5 "Apodo actual"; // Okoteve traducción #elif L==6 "Nome utente corrente"; #elif L==7 "Obecny pseudonim"; #elif L==8 "Alcunha atual"; #endif const char *Txt_Current_password = #if L==0 "Contrasenya actual"; #elif L==1 "Aktuelles Passwort"; #elif L==2 "Current password"; #elif L==3 "Contraseña actual"; #elif L==4 "Mot de passe actuel"; #elif L==5 "Contraseña actual"; // Okoteve traducción #elif L==6 "Password corrente"; #elif L==7 "Obecne hasło"; #elif L==8 "Senha atual"; #endif const char *Txt_DATA_PROTECTION_CLAUSE = #if L==0 "Política de protección de datos"; // Necessita traduccio #elif L==1 "Política de protección de datos"; // Need Übersetzung #elif L==2 "Data protection clause"; #elif L==3 "Política de protección de datos"; #elif L==4 "Clause de protection des données"; #elif L==5 "Política de protección de datos"; // Okoteve traducción #elif L==6 "Política de protección de datos"; // Bisogno di traduzione #elif L==7 "Política de protección de datos"; // Potrzebujesz tlumaczenie #elif L==8 "Política de protección de datos"; // Necessita de tradução #endif const char *Txt_Date = #if L==0 "Data"; #elif L==1 "Datum"; #elif L==2 "Date"; #elif L==3 "Fecha"; #elif L==4 "Date"; #elif L==5 "Arange"; #elif L==6 "Data"; #elif L==7 "Data"; #elif L==8 "Data"; #endif const char *Txt_Date_of_birth = #if L==0 "Data naixement"; #elif L==1 "Geburtsdatum"; #elif L==2 "Date of birth"; #elif L==3 "Fecha nacimiento"; #elif L==4 "Date naissance"; #elif L==5 "Fecha nacimiento"; // Okoteve traducción #elif L==6 "Data di nascita"; #elif L==7 "Data urodzenia"; #elif L==8 "Data nascimento"; #endif const char *Txt_Date_of_creation = #if L==0 "Data de creació"; #elif L==1 "Datum der Erstellung"; #elif L==2 "Date of creation"; #elif L==3 "Fecha de creación"; #elif L==4 "Date de création"; #elif L==5 "Fecha de creación"; // Okoteve traducción #elif L==6 "Data di creazione"; #elif L==7 "Data utworzenia"; #elif L==8 "Data da criação"; #endif const char *Txt_Dates = #if L==0 "Dates"; #elif L==1 "Datum"; #elif L==2 "Dates"; #elif L==3 "Fechas"; #elif L==4 "Dates"; #elif L==5 "Fechas"; // Okoteve traducción #elif L==6 "Date"; #elif L==7 "Daty"; #elif L==8 "Datas"; #endif const char *Txt_DATES_RANGE = // Warning: it is very important to include two %s in the following sentences #if L==0 "desde el %s hasta el %s"; // Necessita traduccio #elif L==1 "von %s bis %s"; #elif L==2 "from %s to %s"; #elif L==3 "desde el %s hasta el %s"; #elif L==4 "de %s jusqu'à %s"; #elif L==5 "desde el %s hasta el %s"; // Okoteve traducción #elif L==6 "dal %s al %s"; #elif L==7 "z %s do %s"; #elif L==8 "%s até %s"; #endif const char *Txt_Day = #if L==0 "Día"; // Necessita traduccio #elif L==1 "Tag"; #elif L==2 "Day"; #elif L==3 "Día"; #elif L==4 "Jour"; #elif L==5 "Día"; // Okoteve traducción #elif L==6 "Giorno"; #elif L==7 "Dzien"; #elif L==8 "Dia"; #endif const char *Txt_days = #if L==0 "días"; // Necessita traduccio #elif L==1 "Tage"; #elif L==2 "days"; #elif L==3 "días"; #elif L==4 "jours"; #elif L==5 "días"; // Okoteve traducción #elif L==6 "giorni"; #elif L==7 "dni"; #elif L==8 "dias"; #endif const char *Txt_DAYS_CAPS[7] = { #if L==0 "DILLUNS" #elif L==1 "MONTAG" #elif L==2 "MONDAY" #elif L==3 "LUNES" #elif L==4 "LUNDI" #elif L==5 "ARAKOI" #elif L==6 "LUNEDÌ" #elif L==7 "Poniedzialek" #elif L==8 "SEGUNDA-FEIRA" #endif , #if L==0 "DIMARTS" #elif L==1 "DIENSTAG" #elif L==2 "TUESDAY" #elif L==3 "MARTES" #elif L==4 "MARDI" #elif L==5 "ARAAPY" #elif L==6 "MARTEDÌ" #elif L==7 "Wtorek" #elif L==8 "TERÇA-FEIRA" #endif , #if L==0 "DIMECRES" #elif L==1 "MITTWOCH" #elif L==2 "WEDNESDAY" #elif L==3 "MIÉRCOLES" #elif L==4 "MERCREDI" #elif L==5 "ARARUNDY" #elif L==6 "MERCOLEDÌ" #elif L==7 "Sroda" #elif L==8 "QUARTA-FEIRA" #endif , #if L==0 "DIJOUS" #elif L==1 "DONNERSTAG" #elif L==2 "THURSDAY" #elif L==3 "JUEVES" #elif L==4 "JEUDI" #elif L==5 "ARAPO" #elif L==6 "GIOVEDÌ" #elif L==7 "Czwartek" #elif L==8 "QUINTA-FEIRA" #endif , #if L==0 "DIVENDRES" #elif L==1 "FREITAG" #elif L==2 "FRIDAY" #elif L==3 "VIERNES" #elif L==4 "VENDREDI" #elif L==5 "ARAPOTEĨ" #elif L==6 "VENERDÌ" #elif L==7 "Piatek" #elif L==8 "SEXTA-FEIRA" #endif , #if L==0 "DISSABTE" #elif L==1 "SAMSTAG" #elif L==2 "SATURDAY" #elif L==3 "SÁBADO" #elif L==4 "SAMEDI" #elif L==5 "ARAPOKÕI" #elif L==6 "SABATO" #elif L==7 "Sobota" #elif L==8 "SABADO" #endif , #if L==0 "DIUMENGE" #elif L==1 "SONNTAG" #elif L==2 "SUNDAY" #elif L==3 "DOMINGO" #elif L==4 "DIMANCHE" #elif L==5 "ARATEĨ" #elif L==6 "DOMENICA" #elif L==7 "Niedziela" #elif L==8 "DOMINGO" #endif }; const char *Txt_DAYS_SMALL[7] = { #if L==0 "dilluns" #elif L==1 "Montag" #elif L==2 "Monday" #elif L==3 "lunes" #elif L==4 "Lundi" #elif L==5 "arakõi" #elif L==6 "Lunedì" #elif L==7 "Poniedzialek" #elif L==8 "Segunda-feira" #endif , #if L==0 "dimarts" #elif L==1 "Dienstag" #elif L==2 "Tuesday" #elif L==3 "martes" #elif L==4 "Mardi" #elif L==5 "araapy" #elif L==6 "Martedì" #elif L==7 "Wtorek" #elif L==8 "Terça-feira" #endif , #if L==0 "dimecres" #elif L==1 "Mittwoch" #elif L==2 "Wednesday" #elif L==3 "miércoles" #elif L==4 "Mercredi" #elif L==5 "ararundy" #elif L==6 "Mercoledì" #elif L==7 "Sroda" #elif L==8 "Quarta-feira" #endif , #if L==0 "dijous" #elif L==1 "Donnerstag" #elif L==2 "Thursday" #elif L==3 "jueves" #elif L==4 "Jeudi" #elif L==5 "arapo" #elif L==6 "Giovedì" #elif L==7 "Czwartek" #elif L==8 "Quinta-feira" #endif , #if L==0 "divendres" #elif L==1 "Freitag" #elif L==2 "Friday" #elif L==3 "viernes" #elif L==4 "Vendredi" #elif L==5 "arapoteĩ" #elif L==6 "Venerdì" #elif L==7 "Piatek" #elif L==8 "Sexta-feira" #endif , #if L==0 "dissabte" #elif L==1 "Samstag" #elif L==2 "Saturday" #elif L==3 "sábado" #elif L==4 "Samedi" #elif L==5 "arapokõi" #elif L==6 "Sabato" #elif L==7 "Sobota" #elif L==8 "Sabado" #endif , #if L==0 "diumenge" #elif L==1 "Sonntag" #elif L==2 "Sunday" #elif L==3 "domingo" #elif L==4 "Dimanche" #elif L==5 "arateĩ" #elif L==6 "Domenica" #elif L==7 "Niedziela" #elif L==8 "Domingo" #endif }; const char *Txt_Decrease_level_of_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Disminuir nivel de %s"; // Necessita traduccio #elif L==1 "Decrease level of %s"; // Need Übersetzung #elif L==2 "Decrease level of %s"; #elif L==3 "Disminuir nivel de %s"; #elif L==4 "Decrease level of %s"; // Besoin de traduction #elif L==5 "Disminuir nivel de %s"; // Okoteve traducción #elif L==6 "Decrementare livello di %s"; #elif L==7 "Spadek poziomu %s"; #elif L==8 "Decrease level of %s"; // Necessita de tradução #endif const char *Txt_default = #if L==0 "predeterminado"; // Necessita traduccio #elif L==1 "Vorgabe"; #elif L==2 "default"; #elif L==3 "predeterminado"; #elif L==4 "défaut"; #elif L==5 "predeterminado"; // Okoteve traducción #elif L==6 "predefinito"; #elif L==7 "Domyslnie"; #elif L==8 "padrão"; #endif const char *Txt_Degree = #if L==0 "Titulació"; #elif L==1 "Studiengang"; #elif L==2 "Degree"; #elif L==3 "Titulación"; #elif L==4 "Étude"; #elif L==5 "Arandurã"; #elif L==6 "Laurea"; #elif L==7 "Stopien"; #elif L==8 "Titulação"; #endif const char *Txt_degree = #if L==0 "titulació"; #elif L==1 "Studiengang"; #elif L==2 "degree"; #elif L==3 "titulación"; #elif L==4 "étude"; #elif L==5 "arandurã"; #elif L==6 "laurea"; #elif L==7 "stopien"; #elif L==8 "titulação"; #endif const char *Txt_DEGREE_STATUS[Deg_NUM_STATUS_TXT] = { #if L==0 // Deg_STATUS_UNKNOWN "Desconegudo" #elif L==1 "Unbekannt" #elif L==2 "Unknown" #elif L==3 "Desconocido" #elif L==4 "Inconnu" #elif L==5 "Desconocido" // Okoteve traducción #elif L==6 "Sconosciuto" #elif L==7 "Nieznany" #elif L==8 "Desconhecido" #endif , #if L==0 // Deg_STATUS_ACTIVE "Activa" #elif L==1 "Aktive" #elif L==2 "Active" #elif L==3 "Activa" #elif L==4 "Actif" #elif L==5 "Activa" // Okoteve traducción #elif L==6 "Attiva" #elif L==7 "Aktywne" #elif L==8 "Ativa" #endif , #if L==0 // Deg_STATUS_PENDING "Pendent" #elif L==1 "Offen" #elif L==2 "Pending" #elif L==3 "Pendiente" #elif L==4 "En attente" #elif L==5 "Pendiente" // Okoteve traducción #elif L==6 "In attesa" #elif L==7 "Do czasu" #elif L==8 "Pendente" #endif , #if L==0 // Deg_STATUS_REMOVED "Eliminada" #elif L==1 "Entfernt" #elif L==2 "Removed" #elif L==3 "Eliminada" #elif L==4 "Supprimé" #elif L==5 "Eliminada" // Okoteve traducción #elif L==6 "Rimossa" #elif L==7 "Usuniete" #elif L==8 "Suprimida" #endif }; const char *Txt_DEGREE_With_courses = #if L==0 "Amb assignatures"; #elif L==1 "Mit Veranstaltungen"; #elif L==2 "With courses"; #elif L==3 "Con asignaturas"; #elif L==4 "Avec des matières"; #elif L==5 "Con asignaturas"; // Okoteve traducción #elif L==6 "Con corsi"; #elif L==7 "Z kursów"; #elif L==8 "Com disciplinas"; #endif const char *Txt_DEGREE_With_year_for_optional_courses = #if L==0 "Con curso de optativas."; // Necessita traduccio #elif L==1 "With year for optional courses."; // Need Übersetzung #elif L==2 "With year for optional courses."; #elif L==3 "La titulación ya no tiene un curso de optativas."; #elif L==4 "With year for optional courses."; // Besoin de traduction #elif L==5 "La titulación ya no tiene un curso de optativas."; // Okoteve traducción #elif L==6 "Con anno per corsi opzionali."; #elif L==7 "With year for optional courses."; // Potrzebujesz tlumaczenie #elif L==8 "With year for optional courses."; // Necessita de tradução #endif const char *Txt_DEGREE_Without_courses = #if L==0 "Sense assignatures"; #elif L==1 "Ohne Veranstaltungen"; #elif L==2 "Without courses"; #elif L==3 "Sin asignaturas"; #elif L==4 "Sans matières"; #elif L==5 "Sin asignaturas"; // Okoteve traducción #elif L==6 "Senza corsi"; #elif L==7 "Bez kursów"; #elif L==8 "Sem disciplinas"; #endif const char *Txt_DEGREE_Without_year_for_optional_courses = #if L==0 "Sin curso de optativas."; // Necessita traduccio #elif L==1 "Without year for optional courses."; // Need Übersetzung #elif L==2 "Without year for optional courses."; #elif L==3 "La titulación ya no tiene un curso de optativas."; #elif L==4 "Without year for optional courses."; // Besoin de traduction #elif L==5 "La titulación ya no tiene un curso de optativas."; // Okoteve traducción #elif L==6 "Senza anno per corsi opzionali."; #elif L==7 "Without year for optional courses."; // Potrzebujesz tlumaczenie #elif L==8 "Without year for optional courses."; // Necessita de tradução #endif const char *Txt_Degree_X_removed = // Warning: it is very important to include %s in the following sentences #if L==0 "Titulación %s eliminada."; // Necessita traduccio #elif L==1 "Studiengang %s entfernt."; #elif L==2 "Degree %s removed."; #elif L==3 "Titulación %s eliminada."; #elif L==4 "Degree %s removed."; // Besoin de traduction #elif L==5 "Titulación %s eliminada."; // Okoteve traducción #elif L==6 "Laurea %s rimossa."; #elif L==7 "Studia %s usuniete."; #elif L==8 "Degree %s removed."; // Necessita de tradução #endif const char *Txt_Degrees = #if L==0 "Titulacions"; #elif L==1 "Studiengang"; #elif L==2 "Degrees"; #elif L==3 "Titulaciones"; #elif L==4 "Études"; #elif L==5 "Arandurã"; #elif L==6 "Lauree"; #elif L==7 "Stopnie"; #elif L==8 "Titulaçoes"; #endif const char *Txt_Degrees_ABBREVIATION = #if L==0 "Titul."; #elif L==1 "Studieng."; #elif L==2 "Degrees"; #elif L==3 "Titul."; #elif L==4 "Études"; #elif L==5 "Titul."; // Okoteve traducción #elif L==6 "Lauree"; #elif L==7 "Stopni"; #elif L==8 "Titul."; #endif const char *Txt_degrees = #if L==0 "titulacions"; #elif L==1 "Studiengang"; #elif L==2 "degrees"; #elif L==3 "titulaciones"; #elif L==4 "études"; #elif L==5 "arandurã"; #elif L==6 "lauree"; #elif L==7 "stopnie"; #elif L==8 "titulaçoes"; #endif const char *Txt_Degrees_with_pending_courses = #if L==0 "Titulacions amb assignatures pendents d'activar"; #elif L==1 "Studiengang mit anhängig Veranstaltungen"; #elif L==2 "Degrees with pending courses"; #elif L==3 "Titulaciones con asignaturas pendientes de activar"; #elif L==4 "Études avec des matières en attente"; #elif L==5 "Titulaciones con asignaturas pendientes de activar"; // Okoteve traducción #elif L==6 "Lauree con corsi in sospeso"; #elif L==7 "Stopnie z kursõw oczekujący"; #elif L==8 "Titulaçãos com disciplinas pendentes"; #endif const char *Txt_Delete_message = #if L==0 "Eliminar mensaje"; // Necessita traduccio #elif L==1 "Entfernen Nachricht"; #elif L==2 "Delete message"; #elif L==3 "Eliminar mensaje"; #elif L==4 "Supprimer message"; #elif L==5 "Eliminar mensaje"; // Okoteve traducción #elif L==6 "Rimuovere messaggio"; #elif L==7 "Usun wiadomosc"; #elif L==8 "Remover mensagem"; #endif const char *Txt_Delete_messages_received = #if L==0 "Eliminar missatges rebuts"; #elif L==1 "Entfernen empfangene Nachrichten"; #elif L==2 "Delete messages received"; #elif L==3 "Eliminar mensajes recibidos"; #elif L==4 "Éliminer messages reçus"; #elif L==5 "Eliminar mensajes recibidos"; // Okoteve traducción #elif L==6 "Rimuovere messaggi ricevuti"; #elif L==7 "Usuń wiadomości otrzymane"; #elif L==8 "Eliminar mensagens recebidas"; #endif const char *Txt_Delete_messages_sent = #if L==0 "Eliminar mensajes enviados"; // Necessita traduccio #elif L==1 "Entfernen gesendete Nachrichten"; #elif L==2 "Delete messages sent"; #elif L==3 "Eliminar mensajes enviados"; #elif L==4 "Éliminer messages envoyés"; #elif L==5 "Eliminar mensajes enviados"; // Okoteve traducción #elif L==6 "Rimuovere messaggi inviati"; #elif L==7 "Usun wiadomosci wyslanych"; #elif L==8 "Eliminar mensagens enviadas"; #endif const char *Txt_Department = #if L==0 "Departament"; #elif L==1 "Abteilung"; #elif L==2 "Department"; #elif L==3 "Departamento"; #elif L==4 "Département"; #elif L==5 "Peh&etilde;"; #elif L==6 "Dipartimento"; #elif L==7 "Wydział"; #elif L==8 "Departamento"; #endif const char *Txt_Department_X_removed = // Warning: it is very important to include %s in the following sentences #if L==0 "Departamento %s eliminado."; // Necessita traduccio #elif L==1 "Abteilung %s entfernt."; #elif L==2 "Department %s removed."; #elif L==3 "Departamento %s eliminado."; #elif L==4 "Département %s supprimé."; #elif L==5 "Departamento %s eliminado."; // Okoteve traducción #elif L==6 "Dipartamento %s rimosso."; #elif L==7 "Zaklad %s usuniete."; #elif L==8 "Department %s removed."; // Necessita de tradução #endif const char *Txt_Department_unspecified = #if L==0 "Departament sense especificar"; #elif L==1 "Abteilung nicht angegeben"; #elif L==2 "Department unspecified"; #elif L==3 "Departamento sin especificar"; #elif L==4 "Département non spécifié"; #elif L==5 "Departamento sin especificar"; // Okoteve traducción #elif L==6 "Dipartimento non specificato"; #elif L==7 "Departament nieokreslone"; #elif L==8 "Departamento indeterminado"; #endif const char *Txt_Departments = #if L==0 "Departaments"; #elif L==1 "Abteilungen"; #elif L==2 "Departments"; #elif L==3 "Departamentos"; #elif L==4 "Départements"; #elif L==5 "Peh&etilde;"; #elif L==6 "Dipartimenti"; #elif L==7 "Wydziały"; #elif L==8 "Departamentos"; #endif const char *Txt_Departments_ABBREVIATION = #if L==0 "Depar."; #elif L==1 "Abteilung"; #elif L==2 "Depar"; #elif L==3 "Depar."; #elif L==4 "Depar."; #elif L==5 "Depar."; // Okoteve traducción #elif L==6 "Dipar."; #elif L==7 "Wydzialy"; #elif L==8 "Depar."; #endif const char *Txt_DEPARTMENTS_HELP_ORDER[2] = { #if L==0 "Ordenar por departamento" // Necessita traduccio #elif L==1 "Sortieren nach Abteilung" #elif L==2 "Sort by department" #elif L==3 "Ordenar por departamento" #elif L==4 "Trier par département" #elif L==5 "Ordenar por departamento" // Okoteve traducción #elif L==6 "Ordina per dipartimento" #elif L==7 "Sortuj wedlug dzialów" #elif L==8 "Classificar por departamento" #endif , #if L==0 "Ordenar por nº de profesores" // Necessita traduccio #elif L==1 "Sortieren nach Anzahl der Lehrkräfte" #elif L==2 "Sort by no. of teachers" #elif L==3 "Ordenar por nº de profesores" #elif L==4 "Trier par nombre d'enseignants" #elif L==5 "Ordenar por nº de profesores" // Okoteve traducción #elif L==6 "Ordina per numero di professori" #elif L==7 "Sortuj wedlug liczby nauczycieli" #elif L==8 "Classificar por nº de professores" #endif }; const char *Txt_DEPARTMENTS_ORDER[2] = { #if L==0 "Departament" #elif L==1 "Abteilung" #elif L==2 "Department" #elif L==3 "Departamento" #elif L==4 "Département" #elif L==5 "Peh&etilde;" #elif L==6 "Dipartimento" #elif L==7 "Wydział" #elif L==8 "Departamento" #endif , #if L==0 "Professors" #elif L==1 "Lehrkräfte" #elif L==2 "Teachers" #elif L==3 "Profesores" #elif L==4 "Enseignants" #elif L==5 "Profesores" // Okoteve traducción #elif L==6 "Professori" #elif L==7 "Nauczycieli" #elif L==8 "Professores" #endif }; const char *Txt_Description = #if L==0 "Descripción"; // Necessita traduccio #elif L==1 "Beschreibung"; #elif L==2 "Description"; #elif L==3 "Descripción"; #elif L==4 "Description"; #elif L==5 "Descripción"; // Okoteve traducción #elif L==6 "Descrizione"; #elif L==7 "Opis"; #elif L==8 "Descrição"; #endif const char *Txt_Direct_authentication = #if L==0 "¿Autenticació directa?"; #elif L==1 "Direkte Authentifizierung?"; #elif L==2 "Direct authentication?"; #elif L==3 "¿Autenticación directa?"; #elif L==4 "Authentification directe?"; #elif L==5 "¿Autenticación directa?"; // Okoteve traducción #elif L==6 "Autenticazione diretta?"; #elif L==7 "Bezpośredni uwierzytelniania?"; #elif L==8 "Autenticação direta?"; #endif const char *Txt_Direct_authentication_allowed = #if L==0 "Autenticació directa permesa"; #elif L==1 "Direkte Authentifizierung erlaubt"; #elif L==2 "Direct authentication allowed"; #elif L==3 "Autenticación directa permitida"; #elif L==4 "Authentification directe autorisée"; #elif L==5 "Autenticación directa permitida"; // Okoteve traducción #elif L==6 "Autenticazione diretta permessa"; #elif L==7 "Bezpośredni uwierzytelniania dozwolone"; #elif L==8 "Autenticação direta permitida"; #endif const char *Txt_Direct_authentication_not_allowed = #if L==0 "Autenticació directa no permesa"; #elif L==1 "Direkte Authentifizierung nicht erlaubt"; #elif L==2 "Direct authentication not allowed"; #elif L==3 "Autenticación directa no permitida"; #elif L==4 "Authentification directe n'est pas autorisée"; #elif L==5 "Autenticación directa no permitida"; // Okoteve traducción #elif L==6 "Autenticazione diretta non permessa"; #elif L==7 "Bezpośredni uwierzytelniania nie dozwolone"; #elif L==8 "Autenticação direta não permitida"; #endif const char *Txt_Disclaimer_the_files_hosted_here_ = // Warning: it is very important to include two %s in the following sentences #if L==0 "Aviso legal: los archivos alojados aquí, salvo que se indique lo contrario," " están sujetos a derechos de propiedad intelectual" " y su titularidad corresponde a los usuarios que los han subido." " %s no se responsabiliza de la información contenida en dichos archivos." " Si usted cree conveniente retirar cualquier archivo cuyo contenido le pertenezca" " o que infrinja la ley, puede comunicarlo a %s."; // Necessita traduccio #elif L==1 "Disclaimer: the files hosted here, unless otherwise noted," " are subject to intellectual property rights" " and their ownership belongs to the users who have uploaded them." " %s is not responsible for the information contained in those files." " If you think convenient to remove any file whose contents belongs to you" " or that violates the law, you can contact %s."; // Need Übersetzung #elif L==2 "Disclaimer: the files hosted here, unless otherwise noted," " are subject to intellectual property rights" " and their ownership belongs to the users who have uploaded them." " %s is not responsible for the information contained in those files." " If you think convenient to remove any file whose contents belongs to you" " or that violates the law, you can contact %s."; #elif L==3 "Aviso legal: los archivos alojados aquí, salvo que se indique lo contrario," " están sujetos a derechos de propiedad intelectual" " y su titularidad corresponde a los usuarios que los han subido." " %s no se responsabiliza de la información contenida en dichos archivos." " Si usted cree conveniente retirar cualquier archivo cuyo contenido le pertenezca" " o que infrinja la ley, puede comunicarlo a %s."; #elif L==4 "Disclaimer: the files hosted here, unless otherwise noted," " are subject to intellectual property rights" " and their ownership belongs to the users who have uploaded them." " %s is not responsible for the information contained in those files." " If you think convenient to remove any file whose contents belongs to you" " or that violates the law, you can contact %s."; // Besoin de traduction #elif L==5 "Aviso legal: los archivos alojados aquí, salvo que se indique lo contrario," " están sujetos a derechos de propiedad intelectual" " y su titularidad corresponde a los usuarios que los han subido." " %s no se responsabiliza de la información contenida en dichos archivos." " Si usted cree conveniente retirar cualquier archivo cuyo contenido le pertenezca" " o que infrinja la ley, puede comunicarlo a %s."; // Okoteve traducción #elif L==6 "Disclaimer: the files hosted here, unless otherwise noted," " are subject to intellectual property rights" " and their ownership belongs to the users who have uploaded them." " %s is not responsible for the information contained in those files." " If you think convenient to remove any file whose contents belongs to you" " or that violates the law, you can contact %s."; // Bisogno di traduzione #elif L==7 "Disclaimer: the files hosted here, unless otherwise noted," " are subject to intellectual property rights" " and their ownership belongs to the users who have uploaded them." " %s is not responsible for the information contained in those files." " If you think convenient to remove any file whose contents belongs to you" " or that violates the law, you can contact %s."; // Potrzebujesz tlumaczenie #elif L==8 "Disclaimer: the files hosted here, unless otherwise noted," " are subject to intellectual property rights" " and their ownership belongs to the users who have uploaded them." " %s is not responsible for the information contained in those files." " If you think convenient to remove any file whose contents belongs to you" " or that violates the law, you can contact %s."; // Necessita de tradução #endif const char *Txt_Display_photos = #if L==0 "Incloure fotos"; #elif L==1 "Bilder anzeigen"; #elif L==2 "Display photos"; #elif L==3 "Incluir fotos"; #elif L==4 "Inclure des photos"; #elif L==5 "Incluir fotos"; // Okoteve traducción #elif L==6 "Mostra foto"; #elif L==7 "Wyswietlanie zdjec"; #elif L==8 "Incluir fotos"; #endif const char *Txt_distributed_by = #if L==0 "distribuïts per"; #elif L==1 "vertrieben von"; #elif L==2 "distributed by"; #elif L==3 "distribuidos por"; #elif L==4 "distribué par"; #elif L==5 "distribuidos por"; // Okoteve traducción #elif L==6 "distribuito da"; #elif L==7 "wyplacanych przez"; #elif L==8 "distribuído por"; #endif const char *Txt_Do_not_reload_this_page_because_the_message_will_be_sent_again_ = #if L==0 "No recargue esta página, pues el mensaje se enviaría de nuevo y llegaría repetido."; // Necessita traduccio #elif L==1 "Do not reload this page because the message would be sent again and would arrive repeated."; // Need Übersetzung #elif L==2 "Do not reload this page because the message would be sent again and would arrive repeated."; #elif L==3 "No recargue esta página, pues el mensaje se enviaría de nuevo y llegaría repetido."; #elif L==4 "Do not reload this page because the message would be sent again and would arrive repeated."; // Besoin de traduction #elif L==5 "No recargue esta página, pues el mensaje se enviaría de nuevo y llegaría repetido."; // Okoteve traducción #elif L==6 "Non ricaricare questa pagina perchè il messaggio sarà nuovamente inviato."; #elif L==7 "Nie przeladuj strone, poniewaz wiadomosc zostanie wyslana ponownie przyjedzie powtarzane."; #elif L==8 "Do not reload this page because the message would be sent again and would arrive repeated."; // Necessita de tradução #endif const char *Txt_Do_not_reload_this_page_because_the_post_will_be_sent_again_ = #if L==0 "No recargue esta página, pues el mensaje se enviaría de nuevo y llegaría repetido."; // Necessita traduccio #elif L==1 "Do not reload this page because the post would be sent again and would arrive repeated."; // Need Übersetzung #elif L==2 "Do not reload this page because the post would be sent again and would arrive repeated."; #elif L==3 "No recargue esta página, pues el mensaje se enviaría de nuevo y llegaría repetido."; #elif L==4 "Do not reload this page because the post would be sent again and would arrive repeated."; // Besoin de traduction #elif L==5 "No recargue esta página, pues el mensaje se enviaría de nuevo y llegaría repetido."; // Okoteve traducción #elif L==6 "Non ricaricare questa pagina perchè il post sarà nuovamente inviato."; #elif L==7 "Nie przeladuj strone, poniewaz post zostanie wyslany ponownie przyjedzie powtarzane."; #elif L==8 "Do not reload this page because the post would be sent again and would arrive repeated."; // Necessita de tradução #endif const char *Txt_Do_not_show_again = #if L==0 "No mostrar de nou"; #elif L==1 "Nicht mehr anzeigen"; #elif L==2 "Do not show again"; #elif L==3 "No mostrar de nuevo"; #elif L==4 "Ne plus afficher"; #elif L==5 "No mostrar de nuevo"; // Okoteve traducción #elif L==6 "Non mostrare più"; #elif L==7 "Nie pokazuj ponownie"; #elif L==8 "Não mostrar novamente"; #endif const char *Txt_Do_you_really_want_to_be_removed_as_an_administrator_of_the_degree_X = // Warning: it is very important to include %s in the following sentences #if L==0 "¿Realmente desea dejar de ser administrador/a de la titulación %s?"; // Necessita traduccio #elif L==1 "Do you really want to be removed as an administrator of the degree %s?"; // Need Übersetzung #elif L==2 "Do you really want to be removed as an administrator of the degree %s?"; #elif L==3 "¿Realmente desea dejar de ser administrador/a de la titulación %s?"; #elif L==4 "Do you really want to be removed as an administrator of the degree %s?"; // Besoin de traduction #elif L==5 "¿Realmente desea dejar de ser administrador/a de la titulación %s?"; // Okoteve traducción #elif L==6 "Vuole realmente essere rimosso come amministratore della laurea %s?"; #elif L==7 "Czy naprawde chcesz byc usuniety jako administrator stopnia %s?"; #elif L==8 "Do you really want to be removed as an administrator of the degree %s?"; // Necessita de tradução #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 #if L==0 "¿Realmente desea ser eliminado de la asignatura %s" " (eliminando sus trabajos, adscripción a grupos, etc.)?"; // Necessita traduccio #elif L==1 "Do you really want to be removed from the course %s" " (removing your works, enrollment in groups, etc.)?"; // Need Übersetzung #elif L==2 "Do you really want to be removed from the course %s" " (removing your works, enrollment in groups, etc.)?"; #elif L==3 "¿Realmente desea ser eliminado de la asignatura %s" " (eliminando sus trabajos, adscripción a grupos, etc.)?"; #elif L==4 "Do you really want to be removed from the course %s" " (removing your works, enrollment in groups, etc.)?"; // Besoin de traduction #elif L==5 "¿Realmente desea ser eliminado de la asignatura %s" " (eliminando sus trabajos, adscripción a grupos, etc.)?"; // Okoteve traducción #elif L==6 "Vuoi realmente essere rimosso dal corso %s" " (rimuovendo i tuoi lavori, registrazione in gruppi, etc.)?"; #elif L==7 "Czy na pewno chcesz zostac usuniete z kursu %s" " (usuwanie swoja prace, rejestracja w grupach, itp.)?"; #elif L==8 "Do you really want to be removed from the course %s" " (removing your works, enrollment in groups, etc.)?"; // Necessita de tradução #endif const char *Txt_Do_you_really_want_to_completely_eliminate_the_following_user = #if L==0 "¿Realmente desea eliminar completamente el siguiente usuario?"; // Necessita traduccio #elif L==1 "Do you really want to completely eliminate the following user?"; // Need Übersetzung #elif L==2 "Do you really want to completely eliminate the following user?"; #elif L==3 "¿Realmente desea eliminar completamente el siguiente usuario?"; #elif L==4 "Do you really want to completely eliminate the following user?"; // Besoin de traduction #elif L==5 "¿Realmente desea eliminar completamente el siguiente usuario?"; // Okoteve traducción #elif L==6 "Vuoi realmente rimuovere totalmente il seguente utente?"; #elif L==7 "Czy na pewno chcesz, aby calkowicie wyeliminowac nastepujacych uzytkowników?"; #elif L==8 "Do you really want to completely eliminate the following user?"; // Necessita de tradução #endif const char *Txt_Do_you_really_want_to_completely_eliminate_your_user_account = #if L==0 "¿Realmente desea eliminar completamente su cuenta de usuario?"; // Necessita traduccio #elif L==1 "Do you really want to completely eliminate your user account?"; // Need Übersetzung #elif L==2 "Do you really want to completely eliminate your user account?"; #elif L==3 "¿Realmente desea eliminar completamente su cuenta de usuario?"; #elif L==4 "Do you really want to completely eliminate your user account?"; // Besoin de traduction #elif L==5 "¿Realmente desea eliminar completamente su cuenta de usuario?"; // Okoteve traducción #elif L==6 "Vuoi realmente rimuovere totalmente il tuo account?"; #elif L==7 "Czy na pewno chcesz, aby calkowicie wyeliminowac konta uzytkownika?"; #elif L==8 "Do you really want to completely eliminate your user account?"; // Necessita de tradução #endif const char *Txt_Do_you_really_want_to_create_a_new_user_account_with_the_following_data = #if L==0 "Realment voleu crear un nou compte d'usuari" " amb les següents dades?"; #elif L==1 "Wollen Sie wirklich, um ein neues Benutzerkonto" " mit den folgenden Daten zu erstellen?"; #elif L==2 "Do you really want to create a new user account" " with the following data?"; #elif L==3 "¿Realmente desea crear una nueva cuenta de usuario" " con los siguientes datos?"; #elif L==4 "Voulez-vous vraiment créer un nouveau compte d'utilisateur" " avec les données suivantes?"; #elif L==5 "¿Realmente desea crear una nueva cuenta de usuario" " con los siguientes datos?"; // Okoteve traducción #elif L==6 "Vuoi realmente creare un nuovo account utente" " con i seguenti dati?"; #elif L==7 "Czy na pewno chcesz, aby utworzyć nowe konto użytkownika" " z następującymi danymi?"; #elif L==8 "Você realmente deseja criar uma nova conta de usuário" " com os seguintes dados?"; #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 #if L==0 "¿Realmente desea eliminar todos los mensajes recibidos de %s desde %s?"; // Necessita traduccio #elif L==1 "Do you really want to delete all messages received from %s from %s?"; // Need Übersetzung #elif L==2 "Do you really want to delete all messages received from %s from %s?"; #elif L==3 "¿Realmente desea eliminar todos los mensajes recibidos de %s desde %s?"; #elif L==4 "Do you really want to delete all messages received from %s from %s?"; // Besoin de traduction #elif L==5 "¿Realmente desea eliminar todos los mensajes recibidos de %s desde %s?"; // Okoteve traducción #elif L==6 "Vuoi realmente rimuovere tutti i messaggi ricevuti da %s da %s?"; #elif L==7 "Czy na pewno chcesz usunac wszystkie wiadomosci otrzymane od %s z %s?"; #elif L==8 "Do you really want to delete all messages received from %s from %s?"; // Necessita de tradução #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 #if L==0 "¿Realmente desea eliminar todos los mensajes recibidos de %s desde %s relacionados con %s?"; // Necessita traduccio #elif L==1 "Do you really want to delete all messages received from %s from %s related to %s?"; // Need Übersetzung #elif L==2 "Do you really want to delete all messages received from %s from %s related to %s?"; #elif L==3 "¿Realmente desea eliminar todos los mensajes recibidos de %s desde %s relacionados con %s?"; #elif L==4 "Do you really want to delete all messages received from %s from %s related to %s?"; // Besoin de traduction #elif L==5 "¿Realmente desea eliminar todos los mensajes recibidos de %s desde %s relacionados con %s?"; // Okoteve traducción #elif L==6 "Vuoi realmente rimuovere tutti i messaggi ricevuti da %s da %s relativi a %s?"; #elif L==7 "Czy na pewno chcesz usunac wszystkie wiadomosci otrzymane od %s z %s podobne do %s?"; #elif L==8 "Do you really want to delete all messages received from %s from %s related to %s?"; // Necessita de tradução #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 #if L==0 "¿Realmente desea eliminar todos los mensajes enviados a %s desde %s?"; // Necessita traduccio #elif L==1 "Do you really want to delete all messages sent to %s from %s?"; // Need Übersetzung #elif L==2 "Do you really want to delete all messages sent to %s from %s?"; #elif L==3 "¿Realmente desea eliminar todos los mensajes enviados a %s desde %s?"; #elif L==4 "Do you really want to delete all messages sent to %s from %s?"; // Besoin de traduction #elif L==5 "¿Realmente desea eliminar todos los mensajes enviados a %s desde %s?"; // Okoteve traducción #elif L==6 "Vuoi realmente rimuovere tutti i messaggi inviati a %s da %s?"; #elif L==7 "Czy na pewno chcesz usunac wszystkie wiadomosci wyslane do %s z %s?"; #elif L==8 "Do you really want to delete all messages sent to %s from %s?"; // Necessita de tradução #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 #if L==0 "¿Realmente desea eliminar todos los mensajes enviados a %s desde %s relacionados con %s?"; // Necessita traduccio #elif L==1 "Do you really want to delete all messages sent to %s from %s related to %s?"; // Need Übersetzung #elif L==2 "Do you really want to delete all messages sent to %s from %s related to %s?"; #elif L==3 "¿Realmente desea eliminar todos los mensajes enviados a %s desde %s relacionados con %s?"; #elif L==4 "Do you really want to delete all messages sent to %s from %s related to %s?"; // Besoin de traduction #elif L==5 "¿Realmente desea eliminar todos los mensajes enviados a %s desde %s relacionados con %s?"; // Okoteve traducción #elif L==6 "Vuoi realmente rimuovere tutti i messaggi inviati a %s da %s relativi a%s?"; #elif L==7 "Czy na pewno chcesz usunac wszystkie wiadomosci wyslane do %s z %s podobne do %s?"; #elif L==8 "Do you really want to delete all messages sent to %s from %s related to %s?"; // Necessita de tradução #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 #if L==0 "¿Realmente desea eliminar los mensajes no leídos recibidos de %s desde %s?"; // Necessita traduccio #elif L==1 "Do you really want to delete the unread messages received from %s from %s?"; // Need Übersetzung #elif L==2 "Do you really want to delete the unread messages received from %s from %s?"; #elif L==3 "¿Realmente desea eliminar los mensajes no leídos recibidos de %s desde %s?"; #elif L==4 "Do you really want to delete the unread messages received from %s from %s?"; // Besoin de traduction #elif L==5 "¿Realmente desea eliminar los mensajes no leídos recibidos de %s desde %s?"; // Okoteve traducción #elif L==6 "Vuoi realmente rimuovere tutti i messaggi non letti ricevuti da %s da %s?"; #elif L==7 "Czy na pewno chcesz usunac nieprzeczytanych wiadomosci otrzymane od %s z %s?"; #elif L==8 "Do you really want to delete the unread messages received from %s from %s?"; // Necessita de tradução #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 #if L==0 "¿Realmente desea eliminar los mensajes no leídos recibidos" " de %s desde %s relacionados con %s?"; // Necessita traduccio #elif L==1 "Do you really want to delete the unread messages received" " from %s from %s related to %s?"; // Need Übersetzung #elif L==2 "Do you really want to delete the unread messages received" " from %s from %s related to %s?"; #elif L==3 "¿Realmente desea eliminar los mensajes no leídos recibidos" " de %s desde %s relacionados con %s?"; #elif L==4 "Do you really want to delete the unread messages received" " from %s from %s related to %s?"; // Besoin de traduction #elif L==5 "¿Realmente desea eliminar los mensajes no leídos recibidos" " de %s desde %s relacionados con %s?"; // Okoteve traducción #elif L==6 "Vuoi realmente rimuovere tutti i messaggi non letti ricevuti" " da %s da %s relativi a %s?"; #elif L==7 "Czy na pewno chcesz usunac nieprzeczytanych wiadomosci otrzymane" " od %s z %s podobne do %s?"; #elif L==8 "Do you really want to delete the unread messages received" " from %s from %s related to %s?"; // Necessita de tradução #endif const char *Txt_Do_you_really_want_to_register_the_following_user_as_an_administrator_of_the_degree_X = // Warning: it is very important to include %s in the following sentences #if L==0 "¿Realmente desea inscribir el siguiente usuario como administrador de la titulación %s?"; // Necessita traduccio #elif L==1 "Do you really want to register the following user as an administrator of the degree %s?"; // Need Übersetzung #elif L==2 "Do you really want to register the following user as an administrator of the degree %s?"; #elif L==3 "¿Realmente desea inscribir el siguiente usuario como administrador de la titulación %s?"; #elif L==4 "Do you really want to register the following user as an administrator of the degree %s?"; // Besoin de traduction #elif L==5 "¿Realmente desea inscribir el siguiente usuario como administrador de la titulación %s?"; // Okoteve traducción #elif L==6 "Vuoi realmente registrare il seguente utente come amministratore della laurea %s?"; #elif L==7 "Czy na pewno chcesz sie zarejestrowac nastepujace użytkownika jako administratora stopnia %s?"; #elif L==8 "Do you really want to register the following user as an administrator of the degree %s?"; // Necessita de tradução #endif const char *Txt_Do_you_really_want_to_reject_the_enrollment_request_ = // Warning: it is very important to include three %s in the following sentences #if L==0 "¡Realmente desea rechazar la solicitud de inscripción" " de %s como %s" " en la asignatura %s?"; // Necessita traduccio #elif L==1 "Do you really want to reject the enrollment request" " from %s as %s" " in the course %s?"; // Need Übersetzung #elif L==2 "Do you really want to reject the enrollment request" " from %s as %s" " in the course %s?"; #elif L==3 "¡Realmente desea rechazar la solicitud de inscripción" " de %s como %s" " en la asignatura %s?"; #elif L==4 "Do you really want to reject the enrollment request" " from %s as %s" " in the course %s?"; // Besoin de traduction #elif L==5 "¡Realmente desea rechazar la solicitud de inscripción" " de %s como %s" " en la asignatura %s?"; // Okoteve traducción #elif L==6 "Do you really want to reject the enrollment request" " from %s as %s" " in the course %s?"; // Bisogno di traduzione #elif L==7 "Do you really want to reject the enrollment request" " from %s as %s" " in the course %s?"; // Potrzebujesz tlumaczenie #elif L==8 "Do you really want to reject the enrollment request" " from %s as %s" " in the course %s?"; // Necessita de tradução #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 #if L==0 "¿Realmente desea eliminar los %u estudiantes de la asignatura %s?
" "Aunque no se eliminarán los datos de los estudiantes en otras asignaturas," " ya no aparecerán inscritos en esta asignatura," " y además se eliminarán todos los trabajos enviados por ellos en esta asignatura," " sus fichas personalizadas para esta asignatura," " y su inscripción en grupos de esta asignatura.."; // Necessita traduccio #elif L==1 "Do you really want to remove the %u students from the course %s?
" "Although students' data will not be removed in other courses," " they will no longer enrolled in this course," " and also all the works submitted by them in this course," " their record cards for this course," " and their enrollment in groups of this course will be removed.."; // Need Übersetzung #elif L==2 "Do you really want to remove the %u students from the course %s?
" "Although students' data will not be removed in other courses," " they will no longer enrolled in this course," " and also all the works submitted by them in this course," " their record cards for this course," " and their enrollment in groups of this course will be removed.."; #elif L==3 "¿Realmente desea eliminar los %u estudiantes de la asignatura %s?
" "Aunque no se eliminarán los datos de los estudiantes en otras asignaturas," " ya no aparecerán inscritos en esta asignatura," " y además se eliminarán todos los trabajos enviados por ellos en esta asignatura," " sus fichas personalizadas para esta asignatura," " y su inscripción en grupos de esta asignatura.."; #elif L==4 "Do you really want to remove the %u students from the course %s?
" "Although students' data will not be removed in other courses," " they will no longer enrolled in this course," " and also all the works submitted by them in this course," " their record cards for this course," " and their enrollment in groups of this course will be removed.."; // Besoin de traduction #elif L==5 "¿Realmente desea eliminar los %u estudiantes de la asignatura %s?
" "Aunque no se eliminarán los datos de los estudiantes en otras asignaturas," " ya no aparecerán inscritos en esta asignatura," " y además se eliminarán todos los trabajos enviados por ellos en esta asignatura," " sus fichas personalizadas para esta asignatura," " y su inscripción en grupos de esta asignatura.."; // Okoteve traducción #elif L==6 "Vuoi realmente rimuovere gli %u studenti dal corso %s?
" "Sebbene i dati degli studenti non saranno rimossi in altri corsi," " essi non saranno più registrati in questo corso," " e così tutti i lavori presentati da loro in questo corso," " le loro schede per questo corso," " e la loro registrazione nei gruppi di questo corso saranno rimossi.."; #elif L==7 "Czy na pewno chcesz usunac %u studentów z kursu %s?
" "Although students' data will not be removed in other courses," " nie beda juz zarejestrowane w tym kurs" " a takze wszystkie prace zlozone przez nich w tym kursie," " swoich kart zapisu na ten kurs," " i ich rejestracja w grupach zajec zostana usuniete.."; #elif L==8 "Do you really want to remove the %u students from the course %s?
" "Although students' data will not be removed in other courses," " they will no longer enrolled in this course," " and also all the works submitted by them in this course," " their record cards for this course," " and their enrollment in groups of this course will be removed.."; // Necessita de tradução #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 #if L==0 "¿Realmente desea eliminar la actividad %s?"; // Necessita traduccio #elif L==1 "Wollen Sie die Aufgabe %s wirklich entfernen?"; #elif L==2 "Do you really want to remove the assignment %s?"; #elif L==3 "¿Realmente desea eliminar la actividad %s?"; #elif L==4 "Voulez-vous vraiment supprimer l'activité %s?"; #elif L==5 "¿Realmente desea eliminar la actividad %s?"; // Okoteve traducción #elif L==6 "Vuoi realmente rimuovere l'attività %s?"; #elif L==7 "Czy na pewno chcesz usunac przypisanie %s?"; #elif L==8 "Você realmente deseja remover a atividade %s?"; #endif const char *Txt_Do_you_really_want_to_remove_the_entire_thread = #if L==0 "¿Realmente desea eliminar toda la discusión?"; // Necessita traduccio #elif L==1 "Wollen Sie die gesamten Thread wirklich entfernen?"; #elif L==2 "Do you really want to remove the entire thread?"; #elif L==3 "¿Realmente desea eliminar toda la discusión?"; #elif L==4 "Voulez-vous vraiment supprimer tout le fil?"; #elif L==5 "¿Realmente desea eliminar toda la discusión?"; // Okoteve traducción #elif L==6 "Vuoi realmente rimuovere l'intera discussione?"; #elif L==7 "Czy na pewno chcesz usunac caly watek?"; #elif L==8 "Você realmente deseja remover todo o thread?"; #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 #if L==0 "¿Realmente desea eliminar toda la discusión %s?"; // Necessita traduccio #elif L==1 "Wollen Sie die gesamten Thread %s wirklich entfernen?"; #elif L==2 "Do you really want to remove the entire thread %s?"; #elif L==3 "¿Realmente desea eliminar toda la discusión %s?"; #elif L==4 "Voulez-vous vraiment supprimer tout le fil %s?"; #elif L==5 "¿Realmente desea eliminar toda la discusión %s?"; // Okoteve traducción #elif L==6 "Vuoi realmente rimuovere l'intera discussione %s?"; #elif L==7 "Czy na pewno chcesz usunac caly watek %s?"; #elif L==8 "Você realmente deseja remover todo o thread %s?"; #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 #if L==0 "¿Realmente desea eliminar el evento %s?"; // Necessita traduccio #elif L==1 "Wollen Sie der Ereignis %s wirklich entfernen?"; #elif L==2 "Do you really want to remove the event %s?"; #elif L==3 "¿Realmente desea eliminar el evento %s?"; #elif L==4 "Voulez-vous vraiment supprimer l'événement %s?"; #elif L==5 "¿Realmente desea eliminar el evento %s?"; // Okoteve traducción #elif L==6 "Vuoi realmente rimuovere l'evento %s?"; #elif L==7 "Czy na pewno chcesz usunac wydarzenie %s?"; #elif L==8 "Você realmente deseja remover o evento %s?"; #endif const char *Txt_Do_you_really_want_to_remove_the_field_X_from_the_records_of_X = // Warning: it is very important to include two %s in the following sentences #if L==0 "¿Realmente desea eliminar el campo %s de las fichas de %s?"; // Necessita traduccio #elif L==1 "Do you really want to remove the field %s from the records of %s?"; // Need Übersetzung #elif L==2 "Do you really want to remove the field %s from the records of %s?"; #elif L==3 "¿Realmente desea eliminar el campo %s de las fichas de %s?"; #elif L==4 "Do you really want to remove the field %s from the records of %s?"; // Besoin de traduction #elif L==5 "¿Realmente desea eliminar el campo %s de las fichas de %s?"; // Okoteve traducción #elif L==6 "Vuoi realmente rimuovere il campo %s dalle schede di %s?"; #elif L==7 "Czy na pewno chcesz usunac pole %s z ewidencji %s?"; #elif L==8 "Do you really want to remove the field %s from the records of %s?"; // Necessita de tradução #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 #if L==0 "¿Realmente desea eliminar %s?"; // Necessita traduccio #elif L==1 "Wollen Sie %s wirklich entfernen?"; #elif L==2 "Do you really want to remove %s?"; #elif L==3 "¿Realmente desea eliminar %s?"; #elif L==4 "Voulez-vous vraiment supprimer %s?"; #elif L==5 "¿Realmente desea eliminar %s?"; // Okoteve traducción #elif L==6 "Vuoi realmente rimuovere %s?"; #elif L==7 "Czy na pewno chcesz usunac %s?"; #elif L==8 "Você realmente deseja remover %s?"; #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 #if L==0 "¿Realmente desea eliminar la carpeta %s y todo su contenido?"; // Necessita traduccio #elif L==1 "Wollen Sie wirklich das Verzeichnis %s und alle Inhalte entfernen?"; #elif L==2 "Do you really want to remove the folder %s and all its contents?"; #elif L==3 "¿Realmente desea eliminar la carpeta %s y todo su contenido?"; #elif L==4 "Voulez-vous vraiment supprimer le répertoire %s et l'ensemble de son contenu?"; #elif L==5 "¿Realmente desea eliminar la carpeta %s y todo su contenido?"; // Okoteve traducción #elif L==6 "Vuoi realmente rimuovere la cartella %s e tutto il suo contenuto?"; #elif L==7 "Czy na pewno chcesz usunac folder %s i wszystkie jego skladniki?"; #elif L==8 "Você realmente deseja remover o diretório %s e todo o seu conteúdo?"; #endif const char *Txt_Do_you_really_want_to_remove_the_following_user_as_an_administrator_of_the_degree_X = // Warning: it is very important to include %s in the following sentences #if L==0 "¿Realmente desea eliminar el siguiente usuario como administrador de la titulación %s?"; // Necessita traduccio #elif L==1 "Do you really want to remove the following user as an administrator of the degree %s?"; // Need Übersetzung #elif L==2 "Do you really want to remove the following user as an administrator of the degree %s?"; #elif L==3 "¿Realmente desea eliminar el siguiente usuario como administrador de la titulación %s?"; #elif L==4 "Do you really want to remove the following user as an administrator of the degree %s?"; // Besoin de traduction #elif L==5 "¿Realmente desea eliminar el siguiente usuario como administrador de la titulación %s?"; // Okoteve traducción #elif L==6 "Vuoi realmente rimuovere il seguente utente come amministratore della laurea %s?"; #elif L==7 "Czy na pewno chcesz usunac nastepujace użytkownika jako administratora stopnia %s?"; #elif L==8 "Do you really want to remove the following user as an administrator of the degree %s?"; // Necessita de tradução #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 #if L==0 "¿Realmente desea eliminar el siguiente usuario de la asignatura %s" " (eliminando sus trabajos, adscripción a grupos, etc.)?"; // Necessita traduccio #elif L==1 "Do you really want to remove the following user from the course %s" " (removing her/his works, enrollment in groups, etc.)?"; // Need Übersetzung #elif L==2 "Do you really want to remove the following user from the course %s" " (removing her/his works, enrollment in groups, etc.)?"; #elif L==3 "¿Realmente desea eliminar el siguiente usuario de la asignatura %s" " (eliminando sus trabajos, adscripción a grupos, etc.)?"; #elif L==4 "Do you really want to remove the following user from the course %s" " (removing her/his works, enrollment in groups, etc.)?"; // Besoin de traduction #elif L==5 "¿Realmente desea eliminar el siguiente usuario de la asignatura %s" " (eliminando sus trabajos, adscripción a grupos, etc.)?"; // Okoteve traducción #elif L==6 "Vuoi realmente rimuovere il seguente utente dal corso %s" " (rimuovendo i suoi lavori, registrazione in gruppi, etc.)?"; #elif L==7 "Do you really want to remove the following user z kursu %s" " (removing her/his works, enrollment in groups, etc.)?"; #elif L==8 "Do you really want to remove the following user from the course %s" " (removing her/his works, enrollment in groups, etc.)?"; // Necessita de tradução #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 #if L==0 "¿Realmente desea eliminar el grupo %s?"; // Necessita traduccio #elif L==1 "Do you really want to remove the group %s?"; // Need Übersetzung #elif L==2 "Do you really want to remove the group %s?"; #elif L==3 "¿Realmente desea eliminar el grupo %s?"; #elif L==4 "Do you really want to remove the group %s?"; // Besoin de traduction #elif L==5 "¿Realmente desea eliminar el grupo %s?"; // Okoteve traducción #elif L==6 "Vuoi realmente rimuovere il gruppo %s?"; #elif L==7 "Czy na pewno chcesz usunac grupe %s?"; #elif L==8 "Do you really want to remove the group %s?"; // Necessita de tradução #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 #if L==0 "¿Realmente desea eliminar el grupo %s?
" "Si lo hace, un/a estudiante dejará de pertenecer a ese grupo."; // Necessita traduccio #elif L==1 "Do you really want to remove the group %s?
" "Doing so will remove one student from that group."; // Need Übersetzung #elif L==2 "Do you really want to remove the group %s?
" "Doing so will remove one student from that group."; #elif L==3 "¿Realmente desea eliminar el grupo %s?
" "Si lo hace, un/a estudiante dejará de pertenecer a ese grupo."; #elif L==4 "Do you really want to remove the group %s?
" "Doing so will remove one student from that group."; // Besoin de traduction #elif L==5 "¿Realmente desea eliminar el grupo %s?
" "Si lo hace, un/a estudiante dejará de pertenecer a ese grupo."; // Okoteve traducción #elif L==6 "Vuoi realmente rimuovere il gruppo %s?
" "Facendo così rimuoverai uno studente da questo gruppo."; #elif L==7 "Do you really want to remove the group %s?
" "W ten sposób usunie jeden uczen z tej grupy."; #elif L==8 "Do you really want to remove the group %s?
" "Doing so will remove one student from that group."; // Necessita de tradução #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 #if L==0 "¿Realmente desea eliminar el grupo %s?
" "Si lo hace, %u estudiantes dejarán de pertenecer a ese grupo."; // Necessita traduccio #elif L==1 "Do you really want to remove the group %s?
" "Doing so will remove %u students from that group."; // Need Übersetzung #elif L==2 "Do you really want to remove the group %s?
" "Doing so will remove %u students from that group."; #elif L==3 "¿Realmente desea eliminar el grupo %s?
" "Si lo hace, %u estudiantes dejarán de pertenecer a ese grupo."; #elif L==4 "Do you really want to remove the group %s?
" "Doing so will remove %u students from that group."; // Besoin de traduction #elif L==5 "¿Realmente desea eliminar el grupo %s?
" "Si lo hace, %u estudiantes dejarán de pertenecer a ese grupo."; // Okoteve traducción #elif L==6 "Vuoi realmente rimuovere il gruppo %s?
" "Facendo così rimuoverai %u studenti da questo gruppo."; #elif L==7 "Do you really want to remove the group %s?
" "W ten sposób usunie %u uczniów z tej grupy."; #elif L==8 "Do you really want to remove the group %s?
" "Doing so will remove %u students from that group."; // Necessita de tradução #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 #if L==0 "¿Realmente desea eliminar la encuesta %s?"; // Necessita traduccio #elif L==1 "Wollen Sie die Umfrage %s wirklich entfernen?"; #elif L==2 "Do you really want to remove the survey %s?"; #elif L==3 "¿Realmente desea eliminar la encuesta %s?"; #elif L==4 "Voulez-vous vraiment supprimer le sondage %s?"; #elif L==5 "¿Realmente desea eliminar la encuesta %s?"; // Okoteve traducción #elif L==6 "Vuoi realmente rimuovere il sondaggio %s?"; #elif L==7 "Czy na pewno chcesz usunac badania %s?"; #elif L==8 "Você realmente deseja remover o inquérito %s?"; #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 #if L==0 "¿Realmente desea eliminar el tipo de grupo %s?
" "Si lo hace, eliminará también un grupo de ese tipo."; // Necessita traduccio #elif L==1 "Do you really want to remove the type of group %s?
" "Doing so will also remove one group of that type."; // Need Übersetzung #elif L==2 "Do you really want to remove the type of group %s?
" "Doing so will also remove one group of that type."; #elif L==3 "¿Realmente desea eliminar el tipo de grupo %s?
" "Si lo hace, eliminará también un grupo de ese tipo."; #elif L==4 "Do you really want to remove the type of group %s?
" "Doing so will also remove one group of that type."; // Besoin de traduction #elif L==5 "¿Realmente desea eliminar el tipo de grupo %s?
" "Si lo hace, eliminará también un grupo de ese tipo."; // Okoteve traducción #elif L==6 "Vuoi realmente rimuovere il tipo di gruppo %s?
" "Facendo così rimuoverai anche un gruppo di questo tipo."; #elif L==7 "Do you really want to remove the type of group %s?
" "Spowoduje to takze usuniecie jednej grupie tego typu."; #elif L==8 "Do you really want to remove the type of group %s?
" "Doing so will also remove one group of that type."; // Necessita de tradução #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 #if L==0 "¿Realmente desea eliminar el tipo de grupo %s?
" "Si lo hace, eliminará también %u grupos de ese tipo."; // Necessita traduccio #elif L==1 "Do you really want to remove the type of group %s?
" "Doing so will also remove %u groups of that type."; // Need Übersetzung #elif L==2 "Do you really want to remove the type of group %s?
" "Doing so will also remove %u groups of that type."; #elif L==3 "¿Realmente desea eliminar el tipo de grupo %s?
" "Si lo hace, eliminará también %u grupos de ese tipo."; #elif L==4 "Do you really want to remove the type of group %s?
" "Doing so will also remove %u groups of that type."; // Besoin de traduction #elif L==5 "¿Realmente desea eliminar el tipo de grupo %s?
" "Si lo hace, eliminará también %u grupos de ese tipo."; // Okoteve traducción #elif L==6 "Vuoi realmente rimuovere il tipo di gruppo %s?
" "Facendo così rimuoverai anche %u gruppi di questo tipo."; #elif L==7 "Do you really want to remove the type of group %s?
" "Spowoduje to równiez usuniecie grup %u tego typu."; #elif L==8 "Do you really want to remove the type of group %s?
" "Doing so will also remove %u groups of that type."; // Necessita de tradução #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 #if L==0 "¿Realmente desea poner a cero la encuesta %s?"; // Necessita traduccio #elif L==1 "Wollen Sie die Umfrage %s wirklich reset?"; #elif L==2 "Do you really want to reset the survey %s?"; #elif L==3 "¿Realmente desea poner a cero la encuesta %s?"; #elif L==4 "Voulez-vous vraiment reset le sondage %s?"; #elif L==5 "¿Realmente desea poner a cero la encuesta %s?"; // Okoteve traducción #elif L==6 "Vuoi realmente resettare il sondaggio %s?"; #elif L==7 "Czy na pewno chcesz zresetowac badania %s?"; #elif L==8 "Você realmente deseja reiniciar o inquérito %s?"; #endif const char *Txt_document = #if L==0 "document"; #elif L==1 "Dokument"; #elif L==2 "document"; #elif L==3 "documento"; #elif L==4 "document"; #elif L==5 "documento"; // Okoteve traducción #elif L==6 "documento"; #elif L==7 "document"; // Potrzebujesz tlumaczenie #elif L==8 "documento"; #endif const char *Txt_Document = #if L==0 "Document"; #elif L==1 "Dokument"; #elif L==2 "Document"; #elif L==3 "Documento"; #elif L==4 "Document"; #elif L==5 "Documento"; // Okoteve traducción #elif L==6 "Documento"; #elif L==7 "Document"; // Potrzebujesz tlumaczenie #elif L==8 "Documento"; #endif const char *Txt_document_hidden = #if L==0 "document ocult"; #elif L==1 "Dokument verborgen"; #elif L==2 "documen hidden"; #elif L==3 "documento oculto"; #elif L==4 "document caché"; #elif L==5 "documento oculto"; // Okoteve traducción #elif L==6 "documento nascosto"; #elif L==7 "document hidden"; // Potrzebujesz tlumaczenie #elif L==8 "documento oculto"; #endif const char *Txt_Documents = #if L==0 "Documents"; #elif L==1 "Dokumente"; #elif L==2 "Documents"; #elif L==3 "Documentos"; #elif L==4 "Documents"; #elif L==5 "Documentos"; // Okoteve traducción #elif L==6 "Documenti"; #elif L==7 "Documents"; // Potrzebujesz tlumaczenie #elif L==8 "Documentos"; #endif const char *Txt_documents = #if L==0 "documents"; #elif L==1 "Dokumente"; #elif L==2 "documents"; #elif L==3 "documentos"; #elif L==4 "documents"; #elif L==5 "documentos"; // Okoteve traducción #elif L==6 "documenti"; #elif L==7 "documents"; // Potrzebujesz tlumaczenie #elif L==8 "documentos"; #endif const char *Txt_Documents_in_my_courses = #if L==0 "Documents en les meves assignatures"; #elif L==1 "Dokumente in meinen Veranstaltungen"; #elif L==2 "Documents in my courses"; #elif L==3 "Documentos en mis asignaturas"; #elif L==4 "Documents à mes matières"; #elif L==5 "Documentos en mis asignaturas"; // Okoteve traducción #elif L==6 "Documenti in miei corsi"; #elif L==7 "Dokumenty w moich kursach"; #elif L==8 "Documentos em minha disciplinas"; #endif const char *Txt_documents_hidden = #if L==0 "documents ocults"; #elif L==1 "Dokumente verborgen"; #elif L==2 "documents hidden"; #elif L==3 "documentos ocultos"; #elif L==4 "documents cachés"; #elif L==5 "documentos ocultos"; // Okoteve traducción #elif L==6 "documenti nascosti"; #elif L==7 "documents hidden"; // Potrzebujesz tlumaczenie #elif L==8 "documentos ocultos"; #endif const char *Txt_Documents_zone = #if L==0 "Zona de documents"; #elif L==1 "Dokumente-Bereich"; #elif L==2 "Documents area"; #elif L==3 "Zona de documentos"; #elif L==4 "Zone de documents"; #elif L==5 "Zona de documentos"; // Okoteve traducción #elif L==6 "Area documenti"; #elif L==7 "Obszar Dokumentów"; #elif L==8 "Zona de documentos"; #endif const char *Txt_Documents_management_zone = #if L==0 "Zona d'administració de documents"; #elif L==1 "Dokumente-Verwaltung"; #elif L==2 "Documents management area"; #elif L==3 "Zona de administración de documentos"; #elif L==4 "Zone de gestion de documents"; #elif L==5 "Zona de administración de documentos"; // Okoteve traducción #elif L==6 "Area di gestione dei documenti"; #elif L==7 "Obszar zarzadzania Dokumenty"; #elif L==8 "Zona de gestão de documentos"; #endif const char *Txt_documents_management_zone = #if L==0 "zona de administración de documentos"; // Necessita traduccio #elif L==1 "Dokumente-Verwaltung"; #elif L==2 "documents management area"; #elif L==3 "zona de administración de documentos"; #elif L==4 "zone de gestion de documents"; #elif L==5 "zona de administración de documentos"; // Okoteve traducción #elif L==6 "area di gestione dei documenti"; #elif L==7 "obszaru zarzadzania dokumentami"; #elif L==8 "zona de gestão de documentos"; #endif const char *Txt_Done_assess_exam = #if L==0 "He acabat; corregir examen"; #elif L==1 "Geschehen; beurteilen Prüfung"; #elif L==2 "Done; assess exam"; #elif L==3 "He terminado; corregir examen"; #elif L==4 "Fait; corriger l'examen"; #elif L==5 "He terminado; corregir examen"; // Okoteve traducción #elif L==6 "Finito; correggere l'esame"; #elif L==7 "Sporządzono; oceny egzaminu"; #elif L==8 "Feito; corrigir exame"; #endif const char *Txt_Download = #if L==0 "Descarregar"; #elif L==1 "Download"; #elif L==2 "Download"; #elif L==3 "Descargar"; #elif L==4 "Télécharger"; #elif L==5 "Descargar"; // Okoteve traducción #elif L==6 "Scarica"; #elif L==7 "Pobierz"; #elif L==8 "Baixar"; #endif const char *Txt_Download_FILE_OR_LINK_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Descarregar %s"; #elif L==1 "Laden Sie %s"; #elif L==2 "Download %s"; #elif L==3 "Descargar %s"; #elif L==4 "Télécharger %s"; #elif L==5 "Descargar %s"; // Okoteve traducción #elif L==6 "Scarica %s"; #elif L==7 "Pobierz %s"; #elif L==8 "Download %s"; // Necessita de tradução #endif const char *Txt_Edit = #if L==0 "Editar"; #elif L==1 "Bearbeiten"; #elif L==2 "Edit"; #elif L==3 "Editar"; #elif L==4 "Éditer"; #elif L==5 "Jehaijey"; #elif L==6 "Editare"; #elif L==7 "Edytuj"; #elif L==8 "Editar"; #endif const char *Txt_Edit_announcement_of_exam = #if L==0 "Editar convocatoria de examen"; // Necessita traduccio #elif L==1 "Aufruf für Prüfung bearbeiten"; #elif L==2 "Edit announcement of exam"; #elif L==3 "Editar convocatoria de examen"; #elif L==4 "Éditer convocation à l'examen"; #elif L==5 "Editar convocatoria de examen"; // Okoteve traducción #elif L==6 "Editare sessione d'esame"; #elif L==7 "Edytuj ogloszenie egzaminu"; #elif L==8 "Editar chamada para o exame"; #endif const char *Txt_Edit_assignment = #if L==0 "Editar actividad"; // Necessita traduccio #elif L==1 "Aufgabe bearbeiten"; #elif L==2 "Edit assignment"; #elif L==3 "Editar actividad"; #elif L==4 "Éditer activité"; #elif L==5 "Editar actividad"; // Okoteve traducción #elif L==6 "Editare attività"; #elif L==7 "Edytuj zadanie"; #elif L==8 "Editar atividade"; #endif const char *Txt_Edit_event = #if L==0 "Editar evento"; // Necessita traduccio #elif L==1 "Ereignis bearbeiten"; #elif L==2 "Edit event"; #elif L==3 "Editar evento"; #elif L==4 "Éditer événement"; #elif L==5 "Editar evento"; // Okoteve traducción #elif L==6 "Editare evento"; #elif L==7 "Edytuj wydarzenie"; #elif L==8 "Editar evento"; #endif const char *Txt_Edit_my_institution = #if L==0 "Edita la meva institució"; #elif L==1 "Bearbeiten meine Hochschule"; #elif L==2 "Edit my institution"; #elif L==3 "Editar mi institución"; #elif L==4 "Éditer mon établissement"; #elif L==5 "Editar mi institución"; // Okoteve traducción #elif L==6 "Editare la mia istituzione"; #elif L==7 "Edycja moich instytucji"; #elif L==8 "Editar minha institução"; #endif const char *Txt_Edit_my_personal_data = #if L==0 "Edita meves dades personals"; #elif L==1 "Bearbeiten meiner persönlichen Daten"; #elif L==2 "Edit my personal data"; #elif L==3 "Editar mis datos personales"; #elif L==4 "Éditer mes données personnelles"; #elif L==5 "Editar mis datos personales"; // Okoteve traducción #elif L==6 "Editare i miei dati personali"; #elif L==7 "Edycja moich danych osobowych"; #elif L==8 "Editar os meus dados pessoais"; #endif const char *Txt_Edit_my_webs_networks = #if L==0 "Edita meves webs / xarxes"; #elif L==1 "Bearbeiten meiner Webs / Netzwerke"; #elif L==2 "Edit my webs / networks"; #elif L==3 "Editar mis webs / redes"; #elif L==4 "Éditer mes webs / réseaux"; #elif L==5 "Editar mis webs / redes"; // Okoteve traducción #elif L==6 "Editare i miei webs / reti"; #elif L==7 "Edycja moje webs / sieci"; #elif L==8 "Editar as minhas webs / redes"; #endif const char *Txt_Edit_office_hours = #if L==0 "Editar tutories"; #elif L==1 "Geschäftszeiten bearbeiten"; #elif L==2 "Edit office hours"; #elif L==3 "Editar tutorías"; #elif L==4 "Éditer tuteur"; #elif L==5 "Editar tutorías"; // Okoteve traducción #elif L==6 "Editare tutoraggio"; #elif L==7 "Edytuj godzin pracy biura"; #elif L==8 "Editar tutor"; #endif const char *Txt_Edit_question = #if L==0 "Editar pregunta"; // Necessita traduccio #elif L==1 "Frage bearbeiten"; #elif L==2 "Edit question"; #elif L==3 "Editar pregunta"; #elif L==4 "Éditer question"; #elif L==5 "Editar pregunta"; // Okoteve traducción #elif L==6 "Editare domanda"; #elif L==7 "Edytuj pytanie"; #elif L==8 "Editar questão"; #endif const char *Txt_Edit_record_fields = #if L==0 "Editar camps de fitxes"; #elif L==1 "Edit record fields"; // Need Übersetzung #elif L==2 "Edit record fields"; #elif L==3 "Editar campos de fichas"; #elif L==4 "Edit record fields"; // Besoin de traduction #elif L==5 "Editar campos de fichas"; // Okoteve traducción #elif L==6 "Editare campo schede"; #elif L==7 "Edycja rekord w dziedzinie"; #elif L==8 "Edit record fields"; // Necessita de tradução #endif const char *Txt_Edit_survey = #if L==0 "Editar encuesta"; // Necessita traduccio #elif L==1 "Umfrage bearbeiten"; #elif L==2 "Edit survey"; #elif L==3 "Editar encuesta"; #elif L==4 "Éditer sondage"; #elif L==5 "Editar encuesta"; // Okoteve traducción #elif L==6 "Editare sondaggio"; #elif L==7 "Edycja ankiety"; #elif L==8 "Editar inquérito"; #endif const char *Txt_Edit_text = #if L==0 "Editar texto"; // Necessita traduccio #elif L==1 "Text bearbeiten"; #elif L==2 "Edit text"; #elif L==3 "Editar texto"; #elif L==4 "Éditer texte"; #elif L==5 "Editar texto"; // Okoteve traducción #elif L==6 "Editare testo"; #elif L==7 "Edycja tekstu"; #elif L==8 "Editar texto"; #endif const char *Txt_eg_A_B = #if L==0 "por ej.: A, B,..."; // Necessita traduccio #elif L==1 "z. B.: A, B,..."; #elif L==2 "e.g., A, B,..."; #elif L==3 "por ej.: A, B,..."; #elif L==4 "par exemple: A, B,..."; #elif L==5 "por ej.: A, B,..."; // Okoteve traducción #elif L==6 "ad esempio: A, B,..."; #elif L==7 "np. A, B, ..."; #elif L==8 "ex.: A, B,..."; #endif const char *Txt_eg_Lectures_Practicals = #if L==0 "por ej.: Teoría, Prácticas,..."; // Necessita traduccio #elif L==1 "z. B.: Vorlesung, Übung,..."; #elif L==2 "e.g., Lectures, Practicals,..."; #elif L==3 "por ej.: Teoría, Prácticas,..."; #elif L==4 "par exemple: Théorie, Pratique,..."; #elif L==5 "por ej.: Teoría, Prácticas,..."; // Okoteve traducción #elif L==6 "ad esempio: Teoria, Pratica,..."; #elif L==7 "np. Wyklady, Praktyki ..."; #elif L==8 "ex.: Teoria, Prática,..."; #endif const char *Txt_Eliminate = #if L==0 "Eliminar"; // Necessita traduccio #elif L==1 "Entfernen"; #elif L==2 "Eliminate"; #elif L==3 "Eliminar"; #elif L==4 "Éliminer"; #elif L==5 "Mbogue"; #elif L==6 "Rimuovere"; #elif L==7 "Wyeliminowac"; #elif L==8 "Eliminar"; #endif const char *Txt_Eliminate_all_courses_whithout_users_PART_1_OF_2 = #if L==0 "Eliminar todas las asignaturas sin usuarios y sin accesos en los últimos"; // Necessita traduccio #elif L==1 "Eliminate all courses without users and without accesses in the last"; // Need Übersetzung #elif L==2 "Eliminate all courses without users and without accesses in the last"; #elif L==3 "Eliminar todas las asignaturas sin usuarios y sin accesos en los últimos"; #elif L==4 "Eliminate all courses without users and without accesses in the last"; // Besoin de traduction #elif L==5 "Eliminar todas las asignaturas sin usuarios y sin accesos en los últimos"; // Okoteve traducción #elif L==6 "Eliminate all courses without users and without accesses in the last"; // Bisogno di traduzione #elif L==7 "Eliminate all courses without users and without accesses in the last"; // Potrzebujesz tlumaczenie #elif L==8 "Eliminate all courses without users and without accesses in the last"; // Necessita de tradução #endif const char *Txt_Eliminate_all_courses_whithout_users_PART_2_OF_2 = #if L==0 "meses."; // Necessita traduccio #elif L==1 "months."; // Need Übersetzung #elif L==2 "months."; #elif L==3 "meses."; #elif L==4 "months."; // Besoin de traduction #elif L==5 "meses."; // Okoteve traducción #elif L==6 "mesi."; #elif L==7 "months."; // Potrzebujesz tlumaczenie #elif L==8 "months."; // Necessita de tradução #endif const char *Txt_Eliminate_all_users_who_are_not_enrolled_on_any_courses_PART_1_OF_2 = #if L==0 "Eliminar todos los usuarios que no estén inscritos en ninguna asignatura y que lleven más de"; // Necessita traduccio #elif L==1 "Eliminate all users who are not enrolled on any courses and with more than"; // Need Übersetzung #elif L==2 "Eliminate all users who are not enrolled on any courses and with more than"; #elif L==3 "Eliminar todos los usuarios que no estén inscritos en ninguna asignatura y que lleven más de"; #elif L==4 "Eliminate all users who are not enrolled on any courses and with more than"; // Besoin de traduction #elif L==5 "Eliminar todos los usuarios que no estén inscritos en ninguna asignatura y que lleven más de"; // Okoteve traducción #elif L==6 "Rimuovere tutti gli utenti che non sono registrati ad alcun corso e con più di"; #elif L==7 "Wyeliminuj wszystkich uzytkowników, którzy nie sa zarejestrowani na kazdym z kursów"; #elif L==8 "Eliminate all users who are not enrolled on any courses and with more than"; // Necessita de tradução #endif const char *Txt_Eliminate_all_users_who_are_not_enrolled_on_any_courses_PART_2_OF_2 = // Warning: it is very important to include %s in the following sentences #if L==0 "meses sin acceder a %s."; // Necessita traduccio #elif L==1 "months without access to %s."; // Need Übersetzung #elif L==2 "months without access to %s."; #elif L==3 "meses sin acceder a %s."; #elif L==4 "months without access to %s."; // Besoin de traduction #elif L==5 "meses sin acceder a %s."; // Okoteve traducción #elif L==6 "mesi senza accedere a %s."; #elif L==7 "months without access to %s."; // Potrzebujesz tlumaczenie #elif L==8 "months without access to %s."; // Necessita de tradução #endif const char *Txt_Eliminate_from_the_platform_the_users_indicated_in_step_1 = #if L==0 "Eliminar completamente de la plataforma" " los usuarios indicados en el paso 1"; // Necessita traduccio #elif L==1 "Die Benutzer auf der Liste aus dem System entfernen"; #elif L==2 "Eliminate from the platform" " the users indicated on step 1"; #elif L==3 "Eliminar completamente de la plataforma" " los usuarios indicados en el paso 1"; #elif L==4 "Éliminer de la plate-forme" " les utilisateurs qui sont sur la liste"; #elif L==5 "Eliminar completamente de la plataforma" " los usuarios indicados en el paso 1"; // Okoteve traducción #elif L==6 "Rimuovere dalla piattaforma" " gli utenti che sono in lista"; #elif L==7 "Wyeliminuj z platformy" " uzytkownikow którzy sa na liscie"; #elif L==8 "Eliminar da plataforma" " os utilizadores que estão na lista"; #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 #if L==0 "Eliminando %lu asignatura(s) sin usuarios" " y que llevaba(n) más de %u meses sin accesos."; // Necessita traduccio #elif L==1 "Eliminating %lu course(s) without users" " and with more than %u months without access."; // Need Übersetzung #elif L==2 "Eliminating %lu course(s) without users" " and with more than %u months without access."; #elif L==3 "Eliminando %lu asignatura(s) sin usuarios" " y que llevaba(n) más de %u meses sin accesos."; #elif L==4 "Eliminating %lu course(s) without users" " and with more than %u months without access."; // Besoin de traduction #elif L==5 "Eliminando %lu asignatura(s) sin usuarios" " y que llevaba(n) más de %u meses sin accesos."; // Okoteve traducción #elif L==6 "Eliminating %lu course(s) without users" " and with more than %u months without access."; // Bisogno di traduzione #elif L==7 "Eliminating %lu course(s) without users" " and with more than %u months without access."; // Potrzebujesz tlumaczenie #elif L==8 "Eliminating %lu course(s) without users" " and with more than %u months without access."; // Necessita de tradução #endif const char *Txt_Eliminating_X_users_who_were_not_enrolled_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 #if L==0 "Eliminando %lu usuario(s) que no estaba(n) inscrito(s) en ninguna asignatura" " y que llevaba(n) más de %u meses sin acceder a %s."; // Necessita traduccio #elif L==1 "Eliminating %lu user(s) who were not enrolled in any course" " and with more than %u months without access to %s."; // Need Übersetzung #elif L==2 "Eliminating %lu user(s) who were not enrolled in any course" " and with more than %u months without access to %s."; #elif L==3 "Eliminando %lu usuario(s) que no estaba(n) inscrito(s) en ninguna asignatura" " y que llevaba(n) más de %u meses sin acceder a %s."; #elif L==4 "Eliminating %lu user(s) who were not enrolled in any course" " and with more than %u months without access to %s."; // Besoin de traduction #elif L==5 "Eliminando %lu usuario(s) que no estaba(n) inscrito(s) en ninguna asignatura" " y que llevaba(n) más de %u meses sin acceder a %s."; // Okoteve traducción #elif L==6 "Rimuovendo %lu utenti che non siano registrati in alcun corso" " e con più di %u mesi senza accedere a %s."; #elif L==7 "Eliminowanie uzytkowników, którzy nie lu% odnotowano w kurs" " i ponad miesiac u% bez dostepu do %s."; #elif L==8 "Eliminating %lu user(s) who were not enrolled in any course" " and with more than %u months without access to %s."; // Necessita de tradução #endif const char *Txt_Email = #if L==0 "Correu electrònic"; #elif L==1 "E-Mail"; #elif L==2 "E-mail"; #elif L==3 "Correo electrónico"; #elif L==4 "Courrier électronique"; #elif L==5 "Ñe'&etilde;veve"; #elif L==6 "E-mail"; #elif L==7 "E-mail"; #elif L==8 "E-mail"; #endif const char *Txt_Email_X_confirmed = // Warning: it is very important to include %s in the following sentences #if L==0 "Correo electrónico %s confirmado"; // Necessita traduccio #elif L==1 "E-mail %s confirmed"; // Need Übersetzung #elif L==2 "E-mail %s confirmed"; #elif L==3 "Correo electrónico %s confirmado"; #elif L==4 "E-mail %s confirmed"; // Besoin de traduction #elif L==5 "Correo electrónico %s confirmado"; // Okoteve traducción #elif L==6 "E-mail %s confirmed"; // Bisogno di traduzione #elif L==7 "E-mail %s confirmed"; // Potrzebujesz tlumaczenie #elif L==8 "E-mail %s confirmed"; // Necessita de tradução #endif const char *Txt_Email_X_has_already_been_confirmed_before = // Warning: it is very important to include %s in the following sentences #if L==0 "El correo electrónico %s" " ya había sido confirmado anteriormente."; // Necessita traduccio #elif L==1 "E-mail %s" " has already been confirmed before."; // Need Übersetzung #elif L==2 "E-mail %s" " has already been confirmed before."; #elif L==3 "El correo electrónico %s" " ya había sido confirmado anteriormente."; #elif L==4 "E-mail %s" " has already been confirmed before."; // Besoin de traduction #elif L==5 "El correo electrónico %s" " ya había sido confirmado anteriormente."; // Okoteve traducción #elif L==6 "E-mail %s" " has already been confirmed before."; // Bisogno di traduzione #elif L==7 "E-mail %s" " has already been confirmed before."; // Potrzebujesz tlumaczenie #elif L==8 "E-mail %s" " has already been confirmed before."; // Necessita de tradução #endif const char *Txt_Email_new_password = #if L==0 "Enviarme una nueva contraseña"; // Necessita traduccio #elif L==1 "Neues Passwort beantragen"; #elif L==2 "E-mail new password"; #elif L==3 "Enviarme una nueva contraseña"; #elif L==4 "Envoyez-moi un nouveau mot de passe"; #elif L==5 "Enviarme una nueva contraseña"; // Okoteve traducción #elif L==6 "Invia una nuova password"; #elif L==7 "E-mail nowe hasło"; #elif L==8 "Enviar uma nova senha"; #endif const char *Txt_Email_X_removed = // Warning: it is very important to include %s in the following sentences #if L==0 "Correu electrònic %s eliminat."; #elif L==1 "E-Mail %s entfernt."; #elif L==2 "E-mail %s removed."; #elif L==3 "Correo electrónico %s eliminado."; #elif L==4 "Courrier électronique %s supprimé."; #elif L==5 "Correo electrónico %s eliminado."; // Okoteve traducción #elif L==6 "E-mail %s rimosso."; #elif L==7 "E-mail %s usuniete."; #elif L==8 "E-mail %s removido."; #endif const char *Txt_End_date = #if L==0 "Data final"; #elif L==1 "Enddatum"; #elif L==2 "End date"; #elif L==3 "Fecha final"; #elif L==4 "Date finale"; #elif L==5 "Fecha final"; // Okoteve traducción #elif L==6 "Data finale"; #elif L==7 "Data koncowa"; #elif L==8 "Data final"; #endif const char *Txt_Enroll_in_groups = #if L==0 "Inscriure en grups"; #elif L==1 "Anmeldung mich in Gruppen"; #elif L==2 "Enroll in groups"; #elif L==3 "Inscribirme en grupos"; #elif L==4 "Inscriver moi dans groupes"; #elif L==5 "Inscribirme en grupos"; // Okoteve traducción #elif L==6 "Iscriver in gruppi"; #elif L==7 "Zarejestruj mnie w grupach"; #elif L==8 "Inscreva-me em grupos "; #endif const char *Txt_Enrollment_of_X_rejected = // Warning: it is very important to include %s in the following sentences #if L==0 "Inscripción de %s rechazada."; // Necessita traduccio #elif L==1 "Enrollment of %s rejected."; // Need Übersetzung #elif L==2 "Enrollment of %s rejected."; #elif L==3 "Inscripción de %s rechazada."; #elif L==4 "Enrollment of %s rejected."; // Besoin de traduction #elif L==5 "Inscripción de %s rechazada."; // Okoteve traducción #elif L==6 "Enrollment of %s rejected."; // Bisogno di traduzione #elif L==7 "Enrollment of %s rejected."; // Potrzebujesz tlumaczenie #elif L==8 "Enrollment of %s rejected."; // Necessita de tradução #endif const char *Txt_Enter_a_new_item_here = #if L==0 "Escriba aquí un nuevo apartado"; // Necessita traduccio #elif L==1 "Neuen Eintrag hier eingeben"; #elif L==2 "Enter a new item here"; #elif L==3 "Escriba aquí un nuevo apartado"; #elif L==4 "Ecrivez ici un nouveau point"; #elif L==5 "Escriba aquí un nuevo apartado"; // Okoteve traducción #elif L==6 "Inserisci qui un nuovo oggetto(tambièn item està bien)"; #elif L==7 "Wpisz nowy element o"; #elif L==8 "Escreva aqui uma nova rubrica"; #endif const char *Txt_Enter_from_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Entrar des %s"; #elif L==1 "Geben Sie %s"; #elif L==2 "Enter from %s"; #elif L==3 "Entrar desde %s"; #elif L==4 "Entrez du %s"; #elif L==5 "Entrar desde %s"; // Okoteve traducción #elif L==6 "Inserisci da %s"; #elif L==7 "Wprowadzić z %s"; #elif L==8 "Digite partir %s"; #endif const char *Txt_Enter_the_ID_of_the_user_you_want_to_register_remove_ = #if L==0 "Escriu el @sobrenom, correu o ID (DNI/cèdula)" " de l'usuari que desitja inscriure/eliminar" " o les dades voleu modificar."; #elif L==1 "Enter the @nick, e-mail or ID" " of the user you want to register/remove" " or whose data you want to modify."; // Need Übersetzung #elif L==2 "Enter the @nick, e-mail or ID" " of the user you want to register/remove" " or whose data you want to modify."; #elif L==3 "Escriba el @apodo, correo o ID (DNI/cédula)" " del usuario que desea inscribir/eliminar" " o cuyos datos desea modificar."; #elif L==4 "Enter the @nick, e-mail or ID" " of the user you want to register/remove" " or whose data you want to modify."; // Besoin de traduction #elif L==5 "Escriba el @apodo, correo o ID (DNI/cédula)" " del usuario que desea inscribir/eliminar" " o cuyos datos desea modificar."; // Okoteve traducción #elif L==6 "Introduci il @nome-utente, e-mail o ID" " dell'utente che vuoi registrare/rimuovere" " o la data di chi vuoi modificare."; #elif L==7 "Enter the @nick, e-mail or ID" " of the user you want to register/remove" " or whose data you want to modify."; // Potrzebujesz tlumaczenie #elif L==8 "Enter the @nick, e-mail or ID" " of the user you want to register/remove" " or whose data you want to modify."; // Necessita de tradução #endif const char *Txt_Error_getting_data_from_a_recipient = #if L==0 "Error obteniendo datos de un destinatario."; // Necessita traduccio #elif L==1 "Error getting data from a recipient."; // Need Übersetzung #elif L==2 "Error getting data from a recipient."; #elif L==3 "Error obteniendo datos de un destinatario."; #elif L==4 "Error getting data from a recipient."; // Besoin de traduction #elif L==5 "Error obteniendo datos de un destinatario."; // Okoteve traducción #elif L==6 "Errore acquisizione dati da un destinatario."; #elif L==7 "Blad podczas pobierania danych z odbiorca."; #elif L==8 "Error getting data from a recipient."; // Necessita de tradução #endif const char *Txt_Event = #if L==0 "Esdeveniment"; #elif L==1 "Ereignis"; #elif L==2 "Event"; #elif L==3 "Evento"; #elif L==4 "Événement"; #elif L==5 "Evento"; // Okoteve traducción #elif L==6 "Evento"; #elif L==7 "Wydarzenie"; #elif L==8 "Evento"; #endif const char *Txt_Event_X_is_now_hidden = // Warning: it is very important to include %s in the following sentences #if L==0 "L'esdeveniment %s ara està ocult."; #elif L==1 "Der Ereignis %s ist jetzt ausgeblendet."; #elif L==2 "Event %s is now hidden."; #elif L==3 "El evento %s ahora está oculto."; #elif L==4 "L'événement %s est maintenant caché."; #elif L==5 "El evento %s ahora está oculto."; // Okoteve traducción #elif L==6 "L'evento %s è ora nascosto."; #elif L==7 "Wydarzenie %s jest ukryte."; #elif L==8 "O evento %s é agora oculto."; #endif const char *Txt_Event_X_is_now_visible = // Warning: it is very important to include %s in the following sentences #if L==0 "L'esdevenimen %s ara està visible."; #elif L==1 "Der Ereignis %s ist jetzt sichtbar."; #elif L==2 "Event %s is now visible."; #elif L==3 "El evento %s ahora está visible."; #elif L==4 "L'événement %s est maintenant visible."; #elif L==5 "El evento %s ahora está visible."; // Okoteve traducción #elif L==6 "L'evento %s è ora visibile."; #elif L==7 "Wydarzenie %s jest teraz widoczny."; #elif L==8 "O evento %s é agora visível."; #endif const char *Txt_Event_X_removed = // Warning: it is very important to include %s in the following sentences #if L==0 "Esdeveniment %s eliminat."; #elif L==1 "Ereignis %s entfernt."; #elif L==2 "Event %s removed."; #elif L==3 "Evento %s eliminado."; #elif L==4 "Événement %s supprimé."; #elif L==5 "Event %s eliminado."; // Okoteve traducción #elif L==6 "Evento %s rimosso."; #elif L==7 "Wydarzenie %s usuniete."; #elif L==8 "Evento %s removido."; #endif const char *Txt_Exam = #if L==0 "exàmen"; #elif L==1 "Prüfung"; #elif L==2 "Exam"; #elif L==3 "Examen"; #elif L==4 "Examen"; #elif L==5 "Kuaara'ã"; #elif L==6 "Esame"; #elif L==7 "Egzamin"; #elif L==8 "Exame"; #endif const char *Txt_exam = #if L==0 "exàmen"; #elif L==1 "Prüfung"; #elif L==2 "exam"; #elif L==3 "examen"; #elif L==4 "examen"; #elif L==5 "kuaara'ã"; #elif L==6 "esame"; #elif L==7 "egzamin"; #elif L==8 "exame"; #endif const char *Txt_EXAM_ANNOUNCEMENT = #if L==0 "CONVOCATÒRIA D'EXAMEN"; #elif L==1 "PRÜFUNGSAUFRUF"; #elif L==2 "ANNOUNCEMENT OF EXAM"; #elif L==3 "CONVOCATORIA DE EXAMEN"; #elif L==4 "CONVOCATION À UN EXAMEN"; #elif L==5 "CONVOCATORIA DE EXAMEN"; // Okoteve traducción #elif L==6 "SESSIONE D'ESAME"; #elif L==7 "OGLOSZENIE egzaminu"; #elif L==8 "CHAMADA DE EXAME"; #endif const char *Txt_EXAM_ANNOUNCEMENT_Approximate_duration = #if L==0 "Duración aproximada"; // Necessita traduccio #elif L==1 "Voraussichtliche Dauer"; #elif L==2 "Approximate duration"; #elif L==3 "Duración aproximada"; #elif L==4 "Durée approximative"; #elif L==5 "Duración aproximada"; // Okoteve traducción #elif L==6 "Durata approssimativa"; #elif L==7 "Przyblizony czas trwania"; #elif L==8 "Duração aproximada"; #endif const char *Txt_EXAM_ANNOUNCEMENT_Course = #if L==0 "Assignatura"; #elif L==1 "Veranstaltung"; #elif L==2 "Course"; #elif L==3 "Asignatura"; #elif L==4 "Matière"; #elif L==5 "Mbo'esyry"; #elif L==6 "Corso"; #elif L==7 "Kurs"; #elif L==8 "Disciplina"; #endif const char *Txt_EXAM_ANNOUNCEMENT_Documentation_required = #if L==0 "Documentación exigida"; // Necessita traduccio #elif L==1 "Ausweis erforderlich"; #elif L==2 "ID required"; #elif L==3 "Documentación exigida"; #elif L==4 "Pièce d'identité obligatoire"; #elif L==5 "Documentación exigida"; // Okoteve traducción #elif L==6 "Documentazione richiesta"; #elif L==7 "ID wymagane"; #elif L==8 "Documentação necessária"; #endif const char *Txt_EXAM_ANNOUNCEMENT_Exam_date = #if L==0 "Fecha del examen"; // Necessita traduccio #elif L==1 "Prüfungsdatum"; #elif L==2 "Exam date"; #elif L==3 "Fecha del examen"; #elif L==4 "Date de l'examen"; #elif L==5 "Fecha del examen"; // Okoteve traducción #elif L==6 "Data d'esame"; #elif L==7 "Termin egzaminu"; #elif L==8 "Exame data"; #endif const char *Txt_EXAM_ANNOUNCEMENT_Material_allowed = #if L==0 "Material permitido"; // Necessita traduccio #elif L==1 "Erlaubte Unterlagen"; #elif L==2 "Material allowed"; #elif L==3 "Material permitido"; #elif L==4 "Matériel autorisé"; #elif L==5 "Material permitido"; // Okoteve traducción #elif L==6 "Materiale permesso"; #elif L==7 "Material dozwolone"; #elif L==8 "Material autorizado"; #endif const char *Txt_EXAM_ANNOUNCEMENT_Material_required = #if L==0 "Material obligatorio"; // Necessita traduccio #elif L==1 "Erforderliche Unterlagen"; #elif L==2 "Material required"; #elif L==3 "Material obligatorio"; #elif L==4 "Matériel nécessaire"; #elif L==5 "Material obligatorio"; // Okoteve traducción #elif L==6 "Materiale richiesto"; #elif L==7 "Materialy niezbedne do"; #elif L==8 "Material obrigatório"; #endif const char *Txt_EXAM_ANNOUNCEMENT_Mode = #if L==0 "Modalidad
(escrito, oral,...)"; // Necessita traduccio #elif L==1 "Prüfungsart
(schriftlich, mündlich,...)"; #elif L==2 "Mode
(written, oral,...)"; #elif L==3 "Modalidad
(escrito, oral,...)"; #elif L==4 "Mode
(écrit, oral,...)"; #elif L==5 "Modalidad
(escrito, oral,...)"; // Okoteve traducción #elif L==6 "Modalità
(scritto, orale,...)"; #elif L==7 "Tryb
(pisemnej, ustnej,...)"; #elif L==8 "Modalidade
(escrita, oral,...)"; #endif const char *Txt_EXAM_ANNOUNCEMENT_Other_information = #if L==0 "Otras indicaciones"; // Necessita traduccio #elif L==1 "Weitere Informationen"; #elif L==2 "Other information"; #elif L==3 "Otras indicaciones"; #elif L==4 "Autres informations"; #elif L==5 "Otras indicaciones"; // Okoteve traducción #elif L==6 "Altre informazioni"; #elif L==7 "Inne informacje"; #elif L==8 "Outras informações"; #endif const char *Txt_EXAM_ANNOUNCEMENT_Place_of_exam = #if L==0 "Lugar de realización"; // Necessita traduccio #elif L==1 "Prüfungsort"; #elif L==2 "Place of exam"; #elif L==3 "Lugar de realización"; #elif L==4 "Lieu de l'examen"; #elif L==5 "Lugar de realización"; // Okoteve traducción #elif L==6 "Luogo d'esame"; #elif L==7 "Miejsce egzaminu"; #elif L==8 "Local do exame"; #endif const char *Txt_EXAM_ANNOUNCEMENT_Session = #if L==0 "Convocatoria
(junio, septiembre,...)"; // Necessita traduccio #elif L==1 "Einberufung
(Juni, September,...)"; #elif L==2 "Session
(june, september,...)"; #elif L==3 "Convocatoria
(junio, septiembre,...)"; #elif L==4 "Période
(juin, septembre,...)"; #elif L==5 "Convocatoria
(junio, septiembre,...)"; // Okoteve traducción #elif L==6 "Sessione
(giugno, settembre,...)"; #elif L==7 "Sesja
(czerwiec, wrzesien,...)"; #elif L==8 "Período
(junho, setembro,...)"; #endif const char *Txt_EXAM_ANNOUNCEMENT_Start_time = #if L==0 "Hora de inicio"; // Necessita traduccio #elif L==1 "Beginn um"; #elif L==2 "Start time"; #elif L==3 "Hora de inicio"; #elif L==4 "Heure de début"; #elif L==5 "Hora de inicio"; // Okoteve traducción #elif L==6 "Ora d'inizio"; #elif L==7 "Czas rozpoczecia"; #elif L==8 "Hora de início"; #endif const char *Txt_EXAM_ANNOUNCEMENT_Structure_of_the_exam = #if L==0 "Estructura del examen"; // Necessita traduccio #elif L==1 "Prüfungsstruktur"; #elif L==2 "Structure of the exam"; #elif L==3 "Estructura del examen"; #elif L==4 "Structure de l'examen"; #elif L==5 "Estructura del examen"; // Okoteve traducción #elif L==6 "Struttura d'esame"; #elif L==7 "Struktura egzaminu"; #elif L==8 "Estrutura do exame"; #endif const char *Txt_EXAM_ANNOUNCEMENT_Year = // 1, 2, 3..., not 1984, 2010... #if L==0 "Curs"; #elif L==1 "Jahr"; #elif L==2 "Year"; #elif L==3 "Curso"; #elif L==4 "Année"; #elif L==5 "Curso"; // Okoteve traducción #elif L==6 "Anno"; #elif L==7 "Rok"; #elif L==8 "Ano"; #endif const char *Txt_Exam_of_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Examen de %s"; // Necessita traduccio #elif L==1 "Exam of %s"; // Need Übersetzung #elif L==2 "Exam of %s"; #elif L==3 "Examen de %s"; #elif L==4 "Exam of %s"; // Besoin de traduction #elif L==5 "Examen de %s"; // Okoteve traducción #elif L==6 "Esame di %s"; #elif L==7 "Egzamin z %s"; #elif L==8 "Exam of %s"; // Necessita de tradução #endif const char *Txt_exams = #if L==0 "exàmens"; #elif L==1 "Prüfungen"; #elif L==2 "exams"; #elif L==3 "exámenes"; #elif L==4 "examens"; #elif L==5 "exámenes"; // Okoteve traducción #elif L==6 "esami"; #elif L==7 "egzaminy"; #elif L==8 "exames"; #endif const char *Txt_Existing_question = #if L==0 "Pregunta ja existent"; #elif L==1 "Bestehende Frage"; #elif L==2 "Existing question"; #elif L==3 "Pregunta ya existente"; #elif L==4 "Question existante"; #elif L==5 "Pregunta ya existente"; // Okoteve traducción #elif L==6 "Domanda esistente"; #elif L==7 "Istniejąca pytanie"; #elif L==8 "Questão existente"; #endif const char *Txt_Expand_FOLDER_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Expandir %s"; #elif L==1 "Erweitern %s"; #elif L==2 "Expand %s"; #elif L==3 "Expandir %s"; #elif L==4 "Élargir %s"; #elif L==5 "Expandir %s"; // Okoteve traducción #elif L==6 "Espandere %s"; #elif L==7 "Rozwin %s"; #elif L==8 "Expandir %s"; #endif const char *Txt_Export_questions = #if L==0 "Exportar preguntas"; // Necessita traduccio #elif L==1 "Export questions"; // Need Übersetzung #elif L==2 "Export questions"; #elif L==3 "Exportar preguntas"; #elif L==4 "Exporter questions"; #elif L==5 "Exportar preguntas"; // Okoteve traducción #elif L==6 "Export questions"; // Bisogno di traduzione #elif L==7 "Export questions"; // Potrzebujesz tlumaczenie #elif L==8 "Export questions"; // Necessita de tradução #endif const char *Txt_Export_questions_to_XML_file = #if L==0 "Exportar preguntas a un archivo XML"; // Necessita traduccio #elif L==1 "Export questions to XML file"; // Need Übersetzung #elif L==2 "Export questions to XML file"; #elif L==3 "Exportar preguntas a un archivo XML"; #elif L==4 "Exporter des questions vers un fichier XML"; #elif L==5 "Exportar preguntas a un archivo XML"; // Okoteve traducción #elif L==6 "Export questions to XML file"; // Bisogno di traduzione #elif L==7 "Export questions to XML file"; // Potrzebujesz tlumaczenie #elif L==8 "Export questions to XML file"; // Necessita de tradução #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 #if L==0 "Se han detectado %u rostros en posición frontal:
" "1 con el fondo suficientemente claro (en color verde),
" "%u con el fondo demasiado oscuro (en color rojo).
" "Si desea elegir el rostro señalado en verde, pulse sobre él."; // Necessita traduccio #elif L==1 "%u faces have been detected in front position:
" "1 with the background light enough (marked in green).
" "%u with the background too dark (marked in red).
" "If you want to choose the face marked in green, click on it."; // Need Übersetzung #elif L==2 "%u faces have been detected in front position:
" "1 with the background light enough (marked in green).
" "%u with the background too dark (marked in red).
" "If you want to choose the face marked in green, click on it."; #elif L==3 "Se han detectado %u rostros en posición frontal:
" "1 con el fondo suficientemente claro (en color verde),
" "%u con el fondo demasiado oscuro (en color rojo).
" "Si desea elegir el rostro señalado en verde, pulse sobre él."; #elif L==4 "%u faces have been detected in front position:
" "1 with the background light enough (marked in green).
" "%u with the background too dark (marked in red).
" "If you want to choose the face marked in green, click on it."; // Besoin de traduction #elif L==5 "Se han detectado %u rostros en posición frontal:
" "1 con el fondo suficientemente claro (en color verde),
" "%u con el fondo demasiado oscuro (en color rojo).
" "Si desea elegir el rostro señalado en verde, pulse sobre él."; // Okoteve traducción #elif L==6 "%u visi sono stati individuati in posizione centrale:
" "1 con lo sfondo abbastanza chiaro (segnato in verde).
" "%u con lo sfondo troppo scuro (segnato in rosso).
" "Se vuoi scegliere il viso segnato in verde, clicca su di esso."; #elif L==7 "%u twarze zostaly wykryte w przednim:
" "1 z dosc jasnym tle (zaznaczone na zielono).
" "%u z tlem zbyt ciemny (zaznaczone na czerwono).
" "Jesli chcesz wybrac twarz zaznaczone na zielono, kliknij na niego."; #elif L==8 "%u faces have been detected in front position:
" "1 with the background light enough (marked in green).
" "%u with the background too dark (marked in red).
" "If you want to choose the face marked in green, click on it."; // Necessita de tradução #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 #if L==0 "Se han detectado %u rostros en posición frontal:
" "%u con el fondo suficientemente claro (en color verde),
" "%u con el fondo demasiado oscuro (en color rojo).
" "Si desea elegir uno de los rostros señalados en verde, pulse sobre él."; // Necessita traduccio #elif L==1 "%u faces have been detected in front position:
" "%u with the background light enough (marked in green).
" "%u with the background too dark (marked in red).
" "If you want to choose one of the faces marked in green, click on it."; // Need Übersetzung #elif L==2 "%u faces have been detected in front position:
" "%u with the background light enough (marked in green).
" "%u with the background too dark (marked in red).
" "If you want to choose one of the faces marked in green, click on it."; #elif L==3 "Se han detectado %u rostros en posición frontal:
" "%u con el fondo suficientemente claro (en color verde),
" "%u con el fondo demasiado oscuro (en color rojo).
" "Si desea elegir uno de los rostros señalados en verde, pulse sobre él."; #elif L==4 "%u faces have been detected in front position:
" "%u with the background light enough (marked in green).
" "%u with the background too dark (marked in red).
" "If you want to choose one of the faces marked in green, click on it."; // Besoin de traduction #elif L==5 "Se han detectado %u rostros en posición frontal:
" "%u con el fondo suficientemente claro (en color verde),
" "%u con el fondo demasiado oscuro (en color rojo).
" "Si desea elegir uno de los rostros señalados en verde, pulse sobre él."; // Okoteve traducción #elif L==6 "%u visi sono stati individuati in posizione centrale:
" "%u con lo sfondo abbastanza chiaro (segnato il verde).
" "%u con lo sfondo troppo scuro (segnato in rosso).
" "Se vuoi scegliere uno dei visi segnati in verde, clicca su di esso."; #elif L==7 "%u twarze zostaly wykryte w przednim:
" "%u z dosc jasnym tlem (zaznaczone na zielono).
" "%u z tlem zbyt ciemnym (zaznaczone na czerwono).
" "Jesli chcesz wybrac jedna z twarzy zaznaczone na zielono, kliknij na niego."; #elif L==8 "%u faces have been detected in front position:
" "%u with the background light enough (marked in green).
" "%u with the background too dark (marked in red).
" "If you want to choose one of the faces marked in green, click on it."; // Necessita de tradução #endif const char *Txt_X_faces_marked_in_green_have_been_detected_ = // Warning: it is very important to include %u in the following sentences #if L==0 "Se han detectado %u rostros (señalados en verde) en posición frontal" " y con el fondo detrás de las cabezas suficientemente claro.
" "Si desea elegir uno de esos rostros, pulse sobre él."; // Necessita traduccio #elif L==1 "%u faces (marked in green) have been detected in front position," " and the background behind the heads is light enough.
" "If you want to choose one of those faces, click on it."; // Need Übersetzung #elif L==2 "%u faces (marked in green) have been detected in front position," " and the background behind the heads is light enough.
" "If you want to choose one of those faces, click on it."; #elif L==3 "Se han detectado %u rostros (señalados en verde) en posición frontal" " y con el fondo detrás de las cabezas suficientemente claro.
" "Si desea elegir uno de esos rostros, pulse sobre él."; #elif L==4 "%u faces (marked in green) have been detected in front position," " and the background behind the heads is light enough.
" "If you want to choose one of those faces, click on it."; // Besoin de traduction #elif L==5 "Se han detectado %u rostros (señalados en verde) en posición frontal" " y con el fondo detrás de las cabezas suficientemente claro.
" "Si desea elegir uno de esos rostros, pulse sobre él."; // Okoteve traducción #elif L==6 "%u visi (segnati in verde) sono stati individuati in posizione frontale," " e lo sfondo dietro la testa è abbastanza chiaro.
" "Se vuoi scegliere uno di questi visi, clicca su di esso."; #elif L==7 "%u twarze (zaznaczone na zielono) wykryto w przodu," " i tlo znajdujace sie za glowy jest wystarczajaco lekki,.
" "Jesli chcesz wybrac jedno z tych twarzy, kliknij na nia."; #elif L==8 "%u faces (marked in green) have been detected in front position," " and the background behind the heads is light enough.
" "If you want to choose one of those faces, click on it."; // Necessita de tradução #endif const char *Txt_X_faces_marked_in_red_have_been_detected_ = // Warning: it is very important to include %u in the following sentences #if L==0 "Se han detectado %u rostros (señalados en rojo) en posición frontal," " pero el fondo detrás de las cabezas es demasiado oscuro."; // Necessita traduccio #elif L==1 "%u faces (marked in green) have been detected in front position," " but the background behind the heads is too dark."; // Need Übersetzung #elif L==2 "%u faces (marked in green) have been detected in front position," " but the background behind the heads is too dark."; #elif L==3 "Se han detectado %u rostros (señalados en rojo) en posición frontal," " pero el fondo detrás de las cabezas es demasiado oscuro."; #elif L==4 "%u faces (marked in green) have been detected in front position," " but the background behind the heads is too dark."; // Besoin de traduction #elif L==5 "Se han detectado %u rostros (señalados en rojo) en posición frontal," " pero el fondo detrás de las cabezas es demasiado oscuro."; // Okoteve traducción #elif L==6 "%u visi (segnati in verde) sono stati individuati in posizione centrale," " ma lo sfondo dietro la testa è troppo scuro."; #elif L==7 "%u twarze (zaznaczone na zielono) wykryto w przodu," " ale w tle za glowy jest zbyt ciemny."; #elif L==8 "%u faces (marked in green) have been detected in front position," " but the background behind the heads is too dark."; // Necessita de tradução #endif const char *Txt_Failed_email_confirmation_key = #if L==0 "Error en la clave de confirmación" " de correo electrónico."; // Necessita traduccio #elif L==1 "Failed email confirmation key."; // Need Übersetzung #elif L==2 "Failed email confirmation key."; #elif L==3 "Error en la clave de confirmación" " de correo electrónico."; #elif L==4 "Failed email confirmation key."; // Besoin de traduction #elif L==5 "Error en la clave de confirmación" " de correo electrónico."; // Okoteve traducción #elif L==6 "Failed email confirmation key."; // Bisogno di traduzione #elif L==7 "Failed email confirmation key."; // Potrzebujesz tlumaczenie #elif L==8 "Failed email confirmation key."; // Necessita de tradução #endif const char *Txt_Family_address = #if L==0 "Domicilio familiar"; // Necessita traduccio #elif L==1 "Heimatadresse"; #elif L==2 "Family address"; #elif L==3 "Domicilio familiar"; #elif L==4 "Adresse famille"; #elif L==5 "Domicilio familiar"; // Okoteve traducción #elif L==6 "Domicilio familiare"; #elif L==7 "Adres rodziny"; #elif L==8 "Endereço Família"; #endif const char *Txt_Feedback = #if L==0 "Realimentación"; // Necessita traduccio #elif L==1 "Feedback"; #elif L==2 "Feedback"; #elif L==3 "Realimentación"; #elif L==4 "Feedback"; #elif L==5 "Realimentación"; // Okoteve traducción #elif L==6 "Feedback"; #elif L==7 "Opinie"; #elif L==8 "Feedback"; #endif const char *Txt_Feedback_to_students = #if L==0 "Realimentación para estudiantes"; // Necessita traduccio #elif L==1 "Feedback an die Studenten"; #elif L==2 "Feedback to students"; #elif L==3 "Realimentación para estudiantes"; #elif L==4 "Feedback pour les étudiants"; #elif L==5 "Realimentación para estudiantes"; // Okoteve traducción #elif L==6 "Feedback per gli studenti"; #elif L==7 "Opinie studentów"; #elif L==8 "Feedback para estudantes"; #endif const char *Txt_Field_BR_name = #if L==0 "Nombre
del campo"; // Necessita traduccio #elif L==1 "Name des Feldes"; #elif L==2 "Field
name"; #elif L==3 "Nombre
del campo"; #elif L==4 "Nom
du champ"; #elif L==5 "Nombre
del campo"; // Okoteve traducción #elif L==6 "Nome
del campo"; #elif L==7 "Nazwa
pola"; #elif L==8 "Nome
do campo"; #endif const char *Txt_File = #if L==0 "Fitxer"; #elif L==1 "Datei"; #elif L==2 "File"; #elif L==3 "Archivo"; #elif L==4 "Fichier"; #elif L==5 "Jehai'aty"; #elif L==6 "File"; #elif L==7 "Plik"; #elif L==8 "Arquivo"; #endif const char *Txt_file = #if L==0 "fitxer"; #elif L==1 "Datei"; #elif L==2 "file"; #elif L==3 "archivo"; #elif L==4 "fichier"; #elif L==5 "jehai'aty"; #elif L==6 "file"; #elif L==7 "Plik"; #elif L==8 "arquivo"; #endif const char *Txt_X_file = // Warning: it is very important to include %s in the following sentences #if L==0 "Fitxer %s"; #elif L==1 "%s-Datei"; #elif L==2 "%s file"; #elif L==3 "Archivo %s"; #elif L==4 "Fichier %s"; #elif L==5 "Archivo %s"; // Okoteve traducción #elif L==6 "File %s"; #elif L==7 "Plik %s"; #elif L==8 "Arquivo %s"; #endif const char *Txt_FILE_uncompressed = #if L==0 "sense comprimir"; #elif L==1 "unkomprimierte"; #elif L==2 "uncrompressed"; #elif L==3 "sin comprimir"; #elif L==4 "non compressé"; #elif L==5 "sin comprimir"; // Okoteve traducción #elif L==6 "non compresso"; #elif L==7 "nieskompresowane"; #elif L==8 "descompactado"; #endif const char *Txt_Filename = #if L==0 "Nom del fitxer"; #elif L==1 "Dateiname"; #elif L==2 "Filename"; #elif L==3 "Nombre del archivo"; #elif L==4 "Nom du fichier"; #elif L==5 "Nombre del archivo"; // Okoteve traducción #elif L==6 "Nome del file"; #elif L==7 "Nazwa"; #elif L==8 "Nome do arquivo"; #endif const char *Txt_file_folder = #if L==0 "fitxer/carpeta"; #elif L==1 "Datei/Verzeichnis"; #elif L==2 "file/folder"; #elif L==3 "archivo/carpeta"; #elif L==4 "fichier/répertoire"; #elif L==5 "archivo/carpeta"; // Okoteve traducción #elif L==6 "file/cartella"; #elif L==7 "Plik/folder"; #elif L==8 "arquivo/diretório"; #endif const char *Txt_FILE_FOLDER_OR_LINK_X_is_now_hidden = // Warning: it is very important to include %s in the following sentences #if L==0 "%s ahora está oculto."; // Necessita traduccio #elif L==1 "%s ist jetzt ausgeblendet."; #elif L==2 "%s is now hidden."; #elif L==3 "%s ahora está oculto."; #elif L==4 "%s est maintenant caché."; #elif L==5 "%s ahora está oculto."; // Okoteve traducción #elif L==6 "%s è ora nascosto."; #elif L==7 "%s jest ukryty."; #elif L==8 "%s é agora oculto."; #endif const char *Txt_FILE_FOLDER_OR_LINK_X_is_now_visible = // Warning: it is very important to include %s in the following sentences #if L==0 "%s ahora está visible."; // Necessita traduccio #elif L==1 "%s ist jetzt sichtbar."; #elif L==2 "%s is now visible."; #elif L==3 "%s ahora está visible."; #elif L==4 "%s est maintenant visible."; #elif L==5 "%s ahora está visible."; // Okoteve traducción #elif L==6 "%s è ora visibile."; #elif L==7 "%s jest teraz widoczny."; #elif L==8 "%s é agora visível."; #endif const char *Txt_FILE_X_removed = // Warning: it is very important to include %s in the following sentences #if L==0 "%s eliminat."; #elif L==1 "%s entfernt."; #elif L==2 "%s removed."; #elif L==3 "%s eliminado."; #elif L==4 "%s supprimé."; #elif L==5 "%s eliminado."; // Okoteve traducción #elif L==6 "%s rimosso."; #elif L==7 "%s usuniety."; #elif L==8 "%s removido."; #endif const char *Txt_File_size = #if L==0 "Mida del fitxer"; #elif L==1 "Dateigröße"; #elif L==2 "File size"; #elif L==3 "Tamaño del archivo"; #elif L==4 "Taille du fichier"; #elif L==5 "Tamaño del archivo"; // Okoteve traducción #elif L==6 "Dimensioni del file"; #elif L==7 "Rozmiar pliku"; #elif L==8 "Tamanho do arquivo"; #endif const char *Txt_FILE_UPLOAD_Done = #if L==0 "Finalitzar"; #elif L==1 "Gemacht"; #elif L==2 "Done"; #elif L==3 "Finalizar"; #elif L==4 "Fini"; #elif L==5 "Finalizar"; // Okoteve traducción #elif L==6 "Fatto"; #elif L==7 "Gotowe"; #elif L==8 "Terminar"; #endif const char *Txt_File_with_the_photo = #if L==0 "Fitxer amb la foto"; #elif L==1 "Datei mit dem Foto"; #elif L==2 "File with the photo"; #elif L==3 "Archivo con la foto"; #elif L==4 "Fichier avec la photo"; #elif L==5 "Archivo con la foto"; // Okoteve traducción #elif L==6 "File con la foto"; #elif L==7 "Plik ze zdjeciem"; #elif L==8 "Arquivo com a foto"; #endif const char *Txt_File_zone = #if L==0 "Zona d'arxius"; #elif L==1 "Dateienbereich"; #elif L==2 "File zone"; #elif L==3 "Zona de archivos"; #elif L==4 "Zone de fichiers"; #elif L==5 "Zona de archivos"; // Okoteve traducción #elif L==6 "Area file"; #elif L==7 "File zone"; // Potrzebujesz tlumaczenie #elif L==8 "Zona de arquivos"; #endif const char *Txt_File_zones = #if L==0 "Zones d'arxius"; #elif L==1 "Dateienbereiche"; #elif L==2 "File zones"; #elif L==3 "Zonas de archivos"; #elif L==4 "Zones de fichiers"; #elif L==5 "Zonas de archivos"; // Okoteve traducción #elif L==6 "Area file"; #elif L==7 "Plik obszarów"; #elif L==8 "Zonas de arquivos"; #endif const char *Txt_File_zones_disabled = #if L==0 "Zonas de archivos inhabilitadas"; // Necessita traduccio #elif L==1 "File zones disabled"; // Need Übersetzung #elif L==2 "File zones disabled"; #elif L==3 "Zonas de archivos inhabilitadas"; #elif L==4 "File zones disabled"; // Besoin de traduction #elif L==5 "Zonas de archivos inhabilitadas"; // Okoteve traducción #elif L==6 "Area file disabilitata"; #elif L==7 "Plik strefy niedostepnej"; #elif L==8 "File zones disabled"; // Necessita de tradução #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 #if L==0 "Las zonas de archivos del grupo %s están ahora inhabilitadas."; // Necessita traduccio #elif L==1 "File zones of the group %s are now disabled."; // Need Übersetzung #elif L==2 "File zones of the group %s are now disabled."; #elif L==3 "Las zonas de archivos del grupo %s están ahora inhabilitadas."; #elif L==4 "File zones of the group %s are now disabled."; // Besoin de traduction #elif L==5 "Las zonas de archivos del grupo %s están ahora inhabilitadas."; // Okoteve traducción #elif L==6 "Le aree file del gruppo %s sono ora disabilitate."; #elif L==7 "Plik strefy grupy %s jest teraz niedostepny."; #elif L==8 "File zones of the group %s are now disabled."; // Necessita de tradução #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 #if L==0 "Las zonas de archivos del grupo %s están ahora habilitadas."; // Necessita traduccio #elif L==1 "File zones of the group %s are now enabled."; // Need Übersetzung #elif L==2 "File zones of the group %s are now enabled."; #elif L==3 "Las zonas de archivos del grupo %s están ahora habilitadas."; #elif L==4 "File zones of the group %s are now enabled."; // Besoin de traduction #elif L==5 "Las zonas de archivos del grupo %s están ahora habilitadas."; // Okoteve traducción #elif L==6 "Le aree file del gruppo %s sono ora abilitate."; #elif L==7 "Plik strefy grupa %s sa obecnie dostepne."; #elif L==8 "File zones of the group %s are now enabled."; // Necessita de tradução #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 #if L==0 "Zonas de archivos del grupo %s habilitadas; pulse para inhabilitarlas"; // Necessita traduccio #elif L==1 "File zones of the group %s enabled, click to disable them"; // Need Übersetzung #elif L==2 "File zones of the group %s enabled, click to disable them"; #elif L==3 "Zonas de archivos del grupo %s habilitadas; pulse para inhabilitarlas"; #elif L==4 "File zones of the group %s enabled, click to disable them"; // Besoin de traduction #elif L==5 "Zonas de archivos del grupo %s habilitadas; pulse para inhabilitarlas"; // Okoteve traducción #elif L==6 "Aree file del gruppo %s abilitate, clicca per disabilitarle"; #elif L==7 "Plik strefy grupy %s aktywny, kliknij, aby je wylaczyc"; #elif L==8 "File zones of the group %s enabled, click to disable them"; // Necessita de tradução #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 #if L==0 "Zonas de archivos del grupo %s inhabilitadas; pulse para habilitarlas"; // Necessita traduccio #elif L==1 "File zones of the group %s disabled, click to enable them"; // Need Übersetzung #elif L==2 "File zones of the group %s disabled, click to enable them"; #elif L==3 "Zonas de archivos del grupo %s inhabilitadas; pulse para habilitarlas"; #elif L==4 "File zones of the group %s disabled, click to enable them"; // Besoin de traduction #elif L==5 "Zonas de archivos del grupo %s inhabilitadas; pulse para habilitarlas"; // Okoteve traducción #elif L==6 "Aree file del gruppo %s disabilitate, clicca per abilitarle"; #elif L==7 "Plik strefy grupy %s jes niedostepny, kliknij aby wlaczyc"; #elif L==8 "File zones of the group %s disabled, click to enable them"; // Necessita de tradução #endif const char *Txt_File_zones_of_the_group_X_Y_removed = // Warning: it is very important to include two %s in the following sentences #if L==0 "Zonas de archivos del grupo %s %s eliminadas."; // Necessita traduccio #elif L==1 "Dateienbereiche der Gruppe %s %s entfernt."; #elif L==2 "File areas of the group %s %s removed."; #elif L==3 "Zonas de archivos del grupo %s %s eliminadas."; #elif L==4 "File zones of the group %s %s removed."; // Besoin de traduction #elif L==5 "Zonas de archivos del grupo %s %s eliminadas."; // Okoteve traducción #elif L==6 "Aree file del gruppo %s %s rimosse."; #elif L==7 "Plik obszarach grupy %s %s usuniety."; #elif L==8 "File zones of the group %s %s removed."; // Necessita de tradução #endif const char *Txt_Files = #if L==0 "Fitxers"; #elif L==1 "Dateien"; #elif L==2 "Files"; #elif L==3 "Archivos"; #elif L==4 "Fichiers"; #elif L==5 "Archivos"; // Okoteve traducción #elif L==6 "File"; #elif L==7 "Pliki"; #elif L==8 "Arquivos"; #endif const char *Txt_files = #if L==0 "fitxers"; #elif L==1 "Dateien"; #elif L==2 "files"; #elif L==3 "archivos"; #elif L==4 "fichiers"; #elif L==5 "archivos"; // Okoteve traducción #elif L==6 "file"; #elif L==7 "pliki"; #elif L==8 "arquivos"; #endif const char *Txt_Files_assignments = #if L==0 "Archivos actividades"; // Necessita traduccio #elif L==1 "Dateien der Aufgaben"; #elif L==2 "Files assignments"; #elif L==3 "Archivos actividades"; #elif L==4 "Fichiers activites"; #elif L==5 "Archivos actividades"; // Okoteve traducción #elif L==6 "File attività"; #elif L==7 "Pliki zadan"; #elif L==8 "Arquivos atividades"; #endif const char *Txt_Files_copied = #if L==0 "Arxius copiats"; #elif L==1 "Dateien kopiert"; #elif L==2 "Files copied"; #elif L==3 "Archivos copiados"; #elif L==4 "Fichiers copiés"; #elif L==5 "Archivos copiados"; // Okoteve traducción #elif L==6 "File copiati"; #elif L==7 "Pliki kopiowane"; #elif L==8 "Arquivos copiados"; #endif const char *Txt_Files_of_marks_must_contain_a_table_in_HTML_format_ = #if L==0 "Los archivos de calificaciones deben contener una tabla en formato HTML sin imágenes." " Cada archivo HTML se puede generar, por ejemplo, desde una hoja de cálculo," " seleccionando la parte deseada de la tabla y guardándola como página web.
" " Una tabla puede tener varias filas de cabecera y varias filas de pie." " Entre ellas debe haber una única fila para cada estudiante," " con cualquier número de columnas, conteniendo la primera columna el ID (DNI/cédula) del estudiante.
" " Un estudiante verá una tabla con las filas de cabecera," " seguidas por la fila con sus calificaciones," " y por las filas de pie."; // Necessita traduccio #elif L==1 "Bewertungsdateien müssen eine Tabelle im HTML-Format ohne Bilder enthalten." " Die HTML-Dateien können z.B. aus einer Kalkulationstabelle erstellt werden," " indem der gewünschte Bereich aus der Tabelle ausgewählt und als HTML gespeichert wird.
" " Eine Tabelle kann mehrere Kopf- und Fußzeilen enthalten." " Zwischen solchen Zeilen muss eine einzige Zeile fü jeden Studenten bestehen," " mit einer beliebigen Anzahl von Spalten, wovon die erste die Ausweis-Nr. enthalten muss.
" " Ruft ein Student die Tabelle auf, sieht er nur die für ihn bestimmte Zeile."; #elif L==2 "Files of marks must contain a table in HTML format without pictures." " Each HTML file may be generated, for example, from a spreadsheet," " by selecting the desired portion of the table and saving it as web page.
" " A table can have multiple header and footer rows." " Between them it should be a single row for each student," " with any number of columns, the first column containing the student's ID.
" " A student will see a table with header rows, followed by the row with their marks, and footer rows."; #elif L==3 "Los archivos de calificaciones deben contener una tabla en formato HTML sin imágenes." " Cada archivo HTML se puede generar, por ejemplo, desde una hoja de cálculo," " seleccionando la parte deseada de la tabla y guardándola como página web.
" " Una tabla puede tener varias filas de cabecera y varias filas de pie." " Entre ellas debe haber una única fila para cada estudiante," " con cualquier número de columnas, conteniendo la primera columna el ID (DNI/cédula) del estudiante.
" " Un estudiante verá una tabla con las filas de cabecera," " seguidas por la fila con sus calificaciones," " y por las filas de pie."; #elif L==4 "Files of marks must contain a table in HTML format without pictures." " Each HTML file may be generated, for example, from a spreadsheet," " by selecting the desired portion of the table and saving it as web page.
" " A table can have multiple header and footer rows." " Between them it should be a single row for each student," " with any number of columns, the first column containing the student's ID.
" " A student will see a table with header rows," " followed by the row with their marks," " and footer rows."; // Besoin de traduction #elif L==5 "Los archivos de calificaciones deben contener una tabla en formato HTML sin imágenes." " Cada archivo HTML se puede generar, por ejemplo, desde una hoja de cálculo," " seleccionando la parte deseada de la tabla y guardándola como página web.
" " Una tabla puede tener varias filas de cabecera y varias filas de pie." " Entre ellas debe haber una única fila para cada estudiante," " con cualquier número de columnas, conteniendo la primera columna el ID (DNI/cédula) del estudiante.
" " Un estudiante verá una tabla con las filas de cabecera," " seguidas por la fila con sus calificaciones," " y por las filas de pie."; // Okoteve traducción #elif L==6 "I file dei risultati devono apparire in una tabella in formato HTML senza immagini." " Ogni file HTML può essere generato, per esempio, da un foglio di calcolo elettronico," " selezionando la desiderata porzione di tabella e salvandolo come una pagina web.
" " Una tabella può avere intestazioni multiple e righe a piè di pagina." " Tra di loro dovrebbe esserci una singola riga per ogni studente," " con alcuni numeri di colonne, la prima colonna contiene l'ID dello studente.
" " Uno studente vedrà una tabella con righe intestate," " seguite da una riga con i loro risultati," " e righe a piè di pagina."; #elif L==7 "Pliki znaków musza zawierac tabele w formacie HTML bez zdjecia." " Kazdy plik HTML moze zostac wygenerowany, na przyklad z arkusza kalkulacyjnego," " wybierajac odpowiednia czesc tabeli i zapisanie go jako strone sieci Web.
" " Tabela moze miec wielu wiersze naglówka i stopki." " Pomiedzy nimi nalezy jednym wierszu dla kazdego ucznia," " z dowolna iloscia kolumn, pierwszej kolumnie zawierajacej studenta ID.
" " Student zobaczy tabele z wierszy naglówka, a nastepnie przez rzad z ich znaków towarowych i stopki."; #elif L==8 "Files of marks must contain a table in HTML format without pictures." " Each HTML file may be generated, for example, from a spreadsheet," " by selecting the desired portion of the table and saving it as web page.
" " A table can have multiple header and footer rows." " Between them it should be a single row for each student," " with any number of columns, the first column containing the student's ID.
" " A student will see a table with header rows," " followed by the row with their marks," " and footer rows."; // Necessita de tradução #endif const char *Txt_Files_works = #if L==0 "Archivos trabajos"; // Necessita traduccio #elif L==1 "Dateien Hausarbeiten"; #elif L==2 "Files homework"; #elif L==3 "Archivos trabajos"; #elif L==4 "Fichiers travaux"; #elif L==5 "Archivos trabajos"; // Okoteve traducción #elif L==6 "File lavori"; #elif L==7 "Pliki domowe"; #elif L==8 "Arquivos trabalhos"; #endif const char *Txt_first_message_not_allowed = #if L==0 "primer mensaje no permitido"; // Necessita traduccio #elif L==1 "erste Nachricht nicht erlaubt"; #elif L==2 "first message not allowed"; #elif L==3 "primer mensaje no permitido"; #elif L==4 "premier message non admis"; #elif L==5 "primer mensaje no permitido"; // Okoteve traducción #elif L==6 "primo messaggio non ammesso"; #elif L==7 "Pierwszy komunikat nie jest dozwolony"; #elif L==8 "primeira mensagem não permitida"; #endif const char *Txt_First_name = #if L==0 "Nom"; #elif L==1 "Vorname"; #elif L==2 "First name"; #elif L==3 "Nombre"; #elif L==4 "Prénom"; #elif L==5 "Téra"; #elif L==6 "Primo nome"; #elif L==7 "Imię"; #elif L==8 "Nome"; #endif const char *Txt_First_BR_year = // "First academic year", the opposite to "Last academic year" #if L==0 "Prim.
curso"; // Necessita traduccio #elif L==1 "First
year"; // Need Übersetzung #elif L==2 "First
year"; #elif L==3 "Prim.
curso"; #elif L==4 "First
year"; // Besoin de traduction #elif L==5 "Prim.
curso"; // Okoteve traducción #elif L==6 "Primo
anno"; #elif L==7 "Pierwszy
rok"; #elif L==8 "First
year"; // Necessita de tradução #endif const char *Txt_Folder = #if L==0 "Carpeta"; #elif L==1 "Verzeichnis"; #elif L==2 "Folder"; #elif L==3 "Carpeta"; #elif L==4 "Répertoire"; #elif L==5 "Carpeta"; // Okoteve traducción #elif L==6 "Cartella"; #elif L==7 "Folder"; #elif L==8 "Diretório"; #endif const char *Txt_folder = #if L==0 "carpeta"; #elif L==1 "Verzeichnis"; #elif L==2 "folder"; #elif L==3 "carpeta"; #elif L==4 "répertoire"; #elif L==5 "carpeta"; // Okoteve traducción #elif L==6 "cartella"; #elif L==7 "folder"; #elif L==8 "diretório"; #endif const char *Txt_Folder_X_and_all_its_contents_removed = // Warning: it is very important to include %s in the following sentences #if L==0 "Carpeta %s y todo su contenido eliminados."; // Necessita traduccio #elif L==1 "Verzeichnis %s und alle Inhalte wurden entfernt."; #elif L==2 "Folder %s and all its contents removed."; #elif L==3 "Carpeta %s y todo su contenido eliminados."; #elif L==4 "Répertoire %s et l'ensemble de son contenu supprimés."; #elif L==5 "Carpeta %s y todo su contenido eliminados."; // Okoteve traducción #elif L==6 "Cartella %s e tutto il suo contenuto rimossi."; #elif L==7 "Folder %s i cala jego zawartosc usunieta."; #elif L==8 "Diretório %s e todo o seu conteúdo removidos."; #endif const char *Txt_Folder_X_removed = // Warning: it is very important to include %s in the following sentences #if L==0 "Carpeta %s eliminada."; // Necessita traduccio #elif L==1 "Verzeichnis %s entfernt."; #elif L==2 "Folder %s removed."; #elif L==3 "Carpeta %s eliminada."; #elif L==4 "Répertoire %s supprimé."; #elif L==5 "Carpeta %s eliminada."; // Okoteve traducción #elif L==6 "Cartella %s rimossa."; #elif L==7 "Folder %s usuniety."; #elif L==8 "Diretório %s removido."; #endif const char *Txt_Folders = #if L==0 "Carpetes"; #elif L==1 "Verzeichnisse"; #elif L==2 "Folders"; #elif L==3 "Carpetas"; #elif L==4 "Répertoires"; #elif L==5 "Carpetas"; // Okoteve traducción #elif L==6 "Cartelle"; #elif L==7 "Foldery"; #elif L==8 "Diretórios"; #endif const char *Txt_folders = #if L==0 "carpetes"; #elif L==1 "Verzeichnisse"; #elif L==2 "folders"; #elif L==3 "carpetas"; #elif L==4 "répertoires"; #elif L==5 "carpetas"; // Okoteve traducción #elif L==6 "cartelle"; #elif L==7 "foldery"; #elif L==8 "diretórios"; #endif const char *Txt_Folders_copied = #if L==0 "Carpetes copiades"; #elif L==1 "Verzeichnisse kopiert"; #elif L==2 "Folders copied"; #elif L==3 "Carpetas copiadas"; #elif L==4 "Répertoires copiés"; #elif L==5 "Carpetas copiadas"; // Okoteve traducción #elif L==6 "Cartelle copiate"; #elif L==7 "foldery skopiowane"; #elif L==8 "Diretórios copiados"; #endif const char *Txt_Folders_renamed = #if L==0 "Carpetes anomenades"; #elif L==1 "Verzeichnisse umbenannt"; #elif L==2 "Folders renamed"; #elif L==3 "Carpetas renombradas"; #elif L==4 "Répertoires renommés"; #elif L==5 "Carpetas renombradas"; // Okoteve traducción #elif L==6 "Cartelle rinominate"; #elif L==7 "Foldery zmienione"; #elif L==8 "Diretórios renomeados"; #endif const char *Txt_Folders_not_renamed = #if L==0 "Carpetes no anomenades"; #elif L==1 "Verzeichnisse nicht umbenannt"; #elif L==2 "Folders not renamed"; #elif L==3 "Carpetas no renombradas"; #elif L==4 "Répertoires pas renommés"; #elif L==5 "Carpetas no renombradas"; // Okoteve traducción #elif L==6 "Cartelle non rinominate"; #elif L==7 "Foldery nie zmienione"; #elif L==8 "Diretórios não renomeados"; #endif const char *Txt_For_security_enter_your_password = #if L==0 "Per a més seguretat, introdueixi la seva contrasenya"; #elif L==1 "Aus Sicherheitsgründen geben Sie Ihr Passwort"; #elif L==2 "For security, enter your password"; #elif L==3 "Para mayor seguridad, introduzca su contraseña"; #elif L==4 "Pour plus de sécurité, entrez votre mot de passe"; #elif L==5 "Para mayor seguridad, introduzca su contraseña"; // Okoteve traducción #elif L==6 "Per motivi di sicurezza, immettere la password"; #elif L==7 "Dla bezpieczeństwa, wprowadź hasło"; #elif L==8 "Por segurança, digite a sua senha"; #endif const char *Txt_Force_students_to_read_this_information = #if L==0 "Obligar els estudiants a llegir aquesta informació"; #elif L==1 "Erzwingen Studenten lesen diese Informationen"; #elif L==2 "Force students to read this information"; #elif L==3 "Obligar a los estudiantes a leer esta información"; #elif L==4 "Forcer les étudiants à lire cette information"; #elif L==5 "Obligar a los estudiantes a leer esta información"; // Okoteve traducción #elif L==6 "Obbligare gli studenti a leggere questa informazione"; #elif L==7 "Studenci maja przeczytac ta informacje"; #elif L==8 "Forçar os estudantes a ler esta informação"; #endif const char *Txt_Forum = #if L==0 "Foro"; // Necessita traduccio #elif L==1 "Forum"; #elif L==2 "Forum"; #elif L==3 "Foro"; #elif L==4 "Forum"; #elif L==5 "Foro"; // Okoteve traducción #elif L==6 "Forum"; #elif L==7 "Forum"; #elif L==8 "Fórum"; #endif const char *Txt_Forum_posts = #if L==0 "Mensajes de foro"; // Necessita traduccio #elif L==1 "Forum-Beiträge"; #elif L==2 "Forum posts"; #elif L==3 "Mensajes de foro"; #elif L==4 "Messages de forum"; #elif L==5 "Mensajes de foro"; // Okoteve traducción #elif L==6 "Post del forum"; #elif L==7 "Forum postow"; #elif L==8 "Posts de fórum"; #endif const char *Txt_Forum_threads = #if L==0 "Discusiones de foro"; // Necessita traduccio #elif L==1 "Forum-Threads"; #elif L==2 "Forum threads"; #elif L==3 "Discusiones de foro"; #elif L==4 "Fils de forum"; #elif L==5 "Discusiones de foro"; // Okoteve traducción #elif L==6 "Discussione del forum"; #elif L==7 "Watki forum"; #elif L==8 "Threads de fórum"; #endif const char *Txt_FORUM_THREAD_HELP_ORDER[2] = { #if L==0 "Ordenar por fecha del primer mensaje" // Necessita traduccio #elif L==1 "Nach Datum der Nachrichten sortieren (aufsteigend)" #elif L==2 "Sort by date of first message" #elif L==3 "Ordenar por fecha del primer mensaje" #elif L==4 "Trier par date du premier message" #elif L==5 "Ordenar por fecha del primer mensaje" // Okoteve traducción #elif L==6 "Ordina per data del primo messaggio" #elif L==7 "Sortuj wedlug daty pierwszej wiadomosci" #elif L==8 "Classificar por data da primeira mensagem" #endif , #if L==0 "Ordenar por fecha del último mensaje" // Necessita traduccio #elif L==1 "Nach Datum der Nachrichten sortieren (absteigend)" #elif L==2 "Sort by date of the last message" #elif L==3 "Ordenar por fecha del último mensaje" #elif L==4 "Trier par date du dernier message" #elif L==5 "Ordenar por fecha del último mensaje" // Okoteve traducción #elif L==6 "Ordina per data dell'ultimo messaggio" #elif L==7 "Sortuj wedlug daty ostatniego komunikatu" #elif L==8 "Classificar pela data da última mensagem" #endif }; const char *Txt_FORUM_THREAD_ORDER[2] = { #if L==0 "Primer mensaje" // Necessita traduccio #elif L==1 "Erste Nachricht" #elif L==2 "First message" #elif L==3 "Primer mensaje" #elif L==4 "Premier message" #elif L==5 "Primer mensaje" // Okoteve traducción #elif L==6 "Primo messaggio" #elif L==7 "Pierwsza wiadomosc" #elif L==8 "Primeira mensagem" #endif , #if L==0 "Último mensaje" // Necessita traduccio #elif L==1 "Letzte Nachricht" #elif L==2 "Last message" #elif L==3 "Último mensaje" #elif L==4 "Dernier message" #elif L==5 "Último mensaje" // Okoteve traducción #elif L==6 "Ultimo messaggio" #elif L==7 "Ostatnia wiadomosc" #elif L==8 "Última mensagem" #endif }; const char *Txt_FORUM_WHICH_FORUM[For_NUM_WHICH_FORUMS] = { #if L==0 "Fòrums d'aquest lloc" #elif L==1 "Foren zu diesem Standort" #elif L==2 "Forums of this location" #elif L==3 "Foros de este sitio" #elif L==4 "Forums de cet emplacement" #elif L==5 "Foros de este sitio" // Okoteve traducción #elif L==6 "Forum di questo sito" #elif L==7 "Forum tej lokalizacji" #elif L==8 "Fóruns deste site" #endif , #if L==0 "Tots els meus fòrums" #elif L==1 "Alle meine Foren" #elif L==2 "All my forums" #elif L==3 "Todos mis foros" #elif L==4 "Tous mes forums" #elif L==5 "Todos mis foros" // Okoteve traducción #elif L==6 "Tutti i miei forum" #elif L==7 "wszystkie moje forum" #elif L==8 "Todos os meus fóruns" #endif }; const char *Txt_Forums = #if L==0 "Fòrums"; #elif L==1 "Foren"; #elif L==2 "Forums"; #elif L==3 "Foros"; #elif L==4 "Forums"; #elif L==5 "Foros"; // Okoteve traducción #elif L==6 "Forum"; #elif L==7 "Forum"; #elif L==8 "Fóruns"; #endif const char *Txt_Found_an_index_htm_file = #if L==0 "Se ha encontrado un archivo index.htm."; // Necessita traduccio #elif L==1 "Found an index.htm file."; // Need Übersetzung #elif L==2 "Found an index.htm file."; #elif L==3 "Se ha encontrado un archivo index.htm."; #elif L==4 "Found an index.htm file."; // Besoin de traduction #elif L==5 "Se ha encontrado un archivo index.htm."; // Okoteve traducción #elif L==6 "Si è trovato un file index.htm."; #elif L==7 "Znaleziono index.htm plik."; #elif L==8 "Found an index.htm file."; // Necessita de tradução #endif const char *Txt_Found_an_index_html_file = #if L==0 "Se ha encontrado un archivo index.html."; // Necessita traduccio #elif L==1 "Found an index.html file."; // Need Übersetzung #elif L==2 "Found an index.html file."; #elif L==3 "Se ha encontrado un archivo index.html."; #elif L==4 "Found an index.html file."; // Besoin de traduction #elif L==5 "Se ha encontrado un archivo index.html."; // Okoteve traducción #elif L==6 "Si è trovato un file index.html."; #elif L==7 "Znaleziono index.html plik."; #elif L==8 "Found an index.html file."; // Necessita de tradução #endif const char *Txt_Frequent_actions = // Check that this sentence fits within the allocated space #if L==0 "Accions freqüents"; #elif L==1 "Häufige Handlungen"; #elif L==2 "Frequent actions"; #elif L==3 "Acciones frecuentes"; #elif L==4 "Frequent actions"; #elif L==5 "Acciones frecuentes"; // Okoteve traducción #elif L==6 "Azioni frequenti"; #elif L==7 "Czeste dzialania"; #elif L==8 "Ações freqüentes"; #endif const char *Txt_from = #if L==0 "de"; // Necessita traduccio #elif L==1 "von"; #elif L==2 "from"; #elif L==3 "de"; #elif L==4 "de"; #elif L==5 "de"; // Okoteve traducción #elif L==6 "da"; #elif L==7 "z"; #elif L==8 "de"; #endif const char *Txt_from_A_COURSE = #if L==0 "desde"; // Necessita traduccio #elif L==1 "von"; #elif L==2 "from"; #elif L==3 "desde"; #elif L==4 "de"; #elif L==5 "desde"; // Okoteve traducción #elif L==6 "da"; #elif L==7 "od"; #elif L==8 "de"; #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 #if L==0 "A partir de ahora el nº de líneas de edición del campo %s es %u."; // Necessita traduccio #elif L==1 "From now on the number of editing lines of the field %s is %u."; // Need Übersetzung #elif L==2 "From now on the number of editing lines of the field %s is %u."; #elif L==3 "A partir de ahora el nº de líneas de edición del campo %s es %u."; #elif L==4 "From now on the number of editing lines of the field %s is %u."; // Besoin de traduction #elif L==5 "A partir de ahora el nº de líneas de edición del campo %s es %u."; // Okoteve traducción #elif L==6 "A partire da ora il numero di linee editate %s è %u."; #elif L==7 "Od tej pory liczba linii w polu edycji %s jest %u."; #elif L==8 "From now on the number of editing lines of the field %s is %u."; // Necessita de tradução #endif const char *Txt_from_this_BR_course = #if L==0 "desde esta
asignatura"; // Necessita traduccio #elif L==1 "von dieser
Veranstaltung"; #elif L==2 "from this
course"; #elif L==3 "desde esta
asignatura"; #elif L==4 "de cette
matière"; #elif L==5 "desde esta
asignatura"; // Okoteve traducción #elif L==6 "da questo
corso"; #elif L==7 "z tego
kursu"; #elif L==8 "desta
disciplina"; #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 #if L==0 "A partir de este momento, puede recibir mensajes de %s."; // Necessita traduccio #elif L==1 "From this time, you can receive messages from %s."; // Need Übersetzung #elif L==2 "From this time, you can receive messages from %s."; #elif L==3 "A partir de este momento, puede recibir mensajes de %s."; #elif L==4 "From this time, you can receive messages from %s."; // Besoin de traduction #elif L==5 "A partir de este momento, puede recibir mensajes de %s."; // Okoteve traducción #elif L==6 "From this time, you can receive messages from %s."; // Bisogno di traduzione #elif L==7 "From this time, you can receive messages from %s."; // Potrzebujesz tlumaczenie #elif L==8 "From this time, you can receive messages from %s."; // Necessita de tradução #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 #if L==0 "A partir de este momento, no recibirá mensajes de %s."; // Necessita traduccio #elif L==1 "From this time, you will not receive messages from %s."; // Need Übersetzung #elif L==2 "From this time, you will not receive messages from %s."; #elif L==3 "A partir de este momento, no recibirá mensajes de %s."; #elif L==4 "From this time, you will not receive messages from %s."; // Besoin de traduction #elif L==5 "A partir de este momento, no recibirá mensajes de %s."; // Okoteve traducción #elif L==6 "From this time, you will not receive messages from %s."; // Bisogno di traduzione #elif L==7 "From this time, you will not receive messages from %s."; // Potrzebujesz tlumaczenie #elif L==8 "From this time, you will not receive messages from %s."; // Necessita de tradução #endif const char *Txt_Full_Name = #if L==0 "Nombre completo"; // Necessita traduccio #elif L==1 "Vollständiger Name"; #elif L==2 "Full name"; #elif L==3 "Nombre completo"; #elif L==4 "Nom complet"; #elif L==5 "Nombre completo"; // Okoteve traducción #elif L==6 "Nome completo"; #elif L==7 "Pelne imie i nazwisko"; #elif L==8 "Nome completo"; #endif const char *Txt_Full_BR_Name = #if L==0 "Nombre
completo"; // Necessita traduccio #elif L==1 "Vollständiger
Name"; #elif L==2 "Full
name"; #elif L==3 "Nombre
completo"; #elif L==4 "Nom
complet"; #elif L==5 "Nombre
completo"; // Okoteve traducción #elif L==6 "Nome
completo"; #elif L==7 "Pelna
nazwa"; #elif L==8 "Nome
completo"; #endif const char *Txt_Function = #if L==0 "Funció"; #elif L==1 "Funktion"; #elif L==2 "Function"; #elif L==3 "Función"; #elif L==4 "Fonction"; #elif L==5 "Función"; // Okoteve traducción #elif L==6 "Funzione"; #elif L==7 "Funkcja"; #elif L==8 "Função"; #endif const char *Txt_General = #if L==0 "General"; #elif L==1 "Allgemein"; #elif L==2 "General"; #elif L==3 "General"; #elif L==4 "Général"; #elif L==5 "General"; // Okoteve traducción #elif L==6 "Generale"; #elif L==7 "Ogolne"; #elif L==8 "Geral"; #endif const char *Txt_general_topics = #if L==0 "temas generales"; // Necessita traduccio #elif L==1 "allgemeine Themen"; #elif L==2 "general topics"; #elif L==3 "temas generales"; #elif L==4 "affaires générales"; #elif L==5 "temas generales"; // Okoteve traducción #elif L==6 "temi generali"; #elif L==7 "ogólne tematy"; #elif L==8 "temas gerais"; #endif const char *Txt_Generate_exam = #if L==0 "Generar examen"; #elif L==1 "Generieren Prüfung"; #elif L==2 "Generate exam"; #elif L==3 "Generar examen"; #elif L==4 "Générer l'examen"; #elif L==5 "Generar examen"; // Okoteve traducción #elif L==6 "Crea esame"; #elif L==7 "Wygeneruj egzamin"; #elif L==8 "Gerar teste"; #endif const char *Txt_Go_back = #if L==0 "Tornar enrere"; #elif L==1 "Zurückgehen"; #elif L==2 "Go back"; #elif L==3 "Volver atrás"; #elif L==4 "Retour"; #elif L==5 "Volver atrás"; // Okoteve traducción #elif L==6 "Tornare"; #elif L==7 "Wracać"; #elif L==8 "Voltar"; #endif const char *Txt_Go_to_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Ir a %s"; // Necessita traduccio #elif L==1 "Gehe zum %s"; #elif L==2 "Go to %s"; #elif L==3 "Ir a %s"; #elif L==4 "Aller à %s"; #elif L==5 "Ir a %s"; // Okoteve traducción #elif L==6 "Vai a %s"; #elif L==7 "Przejdz do %s"; #elif L==8 "Ir para %s"; #endif const char *Txt_Go_to_course_and_reply = #if L==0 "Ir a asignatura y responder"; // Necessita traduccio #elif L==1 "Veranstaltung einblenden und antworten"; #elif L==2 "Go to course and reply"; #elif L==3 "Ir a asignatura y responder"; #elif L==4 "Aller à la matière et répondre"; #elif L==5 "Ir a asignatura y responder"; // Okoteve traducción #elif L==6 "Vai a corso e rispondere"; #elif L==7 "Idz do kursu i odpowiedz"; #elif L==8 "Ir para a disciplina e responder"; #endif const char *Txt_Go_to_course_and_reply_again = #if L==0 "Ir a asignatura y responder otra vez"; // Necessita traduccio #elif L==1 "Veranstaltung einblenden und erneut antworten"; #elif L==2 "Go to course and reply again"; #elif L==3 "Ir a asignatura y responder otra vez"; #elif L==4 "Aller à la matière et répondre à nouveau"; #elif L==5 "Ir a asignatura y responder otra vez"; // Okoteve traducción #elif L==6 "Vai a corso e rispondere nuovamente"; #elif L==7 "Idz do kursu i odpowiedz ponownie"; #elif L==8 "Ir para a disciplina e responder novamente"; #endif const char *Txt_Group = #if L==0 "Grup"; #elif L==1 "Gruppe"; #elif L==2 "Group"; #elif L==3 "Grupo"; #elif L==4 "Groupe"; #elif L==5 "Aty"; #elif L==6 "Gruppo"; #elif L==7 "Grupa"; #elif L==8 "Grupo"; #endif const char *Txt_group = #if L==0 "grup"; #elif L==1 "Gruppe"; #elif L==2 "group"; #elif L==3 "grupo"; #elif L==4 "groupe"; #elif L==5 "aty"; #elif L==6 "gruppo"; #elif L==7 "grupa"; #elif L==8 "grupo"; #endif const char *Txt_Group_closed = #if L==0 "Grupo cerrado"; // Necessita traduccio #elif L==1 "Group closed"; // Need Übersetzung #elif L==2 "Group closed"; #elif L==3 "Grupo cerrado"; #elif L==4 "Group closed"; // Besoin de traduction #elif L==5 "Grupo cerrado"; // Okoteve traducción #elif L==6 "Gruppo chiuso"; #elif L==7 "Grupa zamknieta"; #elif L==8 "Group closed"; // Necessita de tradução #endif const char *Txt_Group_X_closed = // Warning: it is very important to include %s in the following sentences #if L==0 "Grupo %s cerrado"; // Necessita traduccio #elif L==1 "Group %s closed"; // Need Übersetzung #elif L==2 "Group %s closed"; #elif L==3 "Grupo %s cerrado"; #elif L==4 "Group %s closed"; // Besoin de traduction #elif L==5 "Grupo %s cerrado"; // Okoteve traducción #elif L==6 "Gruppo %s chiuso"; #elif L==7 "Grupa %s zamknieta"; #elif L==8 "Group %s closed"; // Necessita de tradução #endif const char *Txt_Group_X_closed_click_to_open_it = // Warning: it is very important to include %s in the following sentences #if L==0 "Grupo %s cerrado; pulse para abrirlo"; // Necessita traduccio #elif L==1 "Group %s closed, click to open it"; // Need Übersetzung #elif L==2 "Group %s closed, click to open it"; #elif L==3 "Grupo %s cerrado; pulse para abrirlo"; #elif L==4 "Group %s closed, click to open it"; // Besoin de traduction #elif L==5 "Grupo %s cerrado; pulse para abrirlo"; // Okoteve traducción #elif L==6 "Gruppo %s chiuso, clicca per aprirlo"; #elif L==7 "Grupa %s zamknieta, kliknij zeby otworzyc"; #elif L==8 "Group %s closed, click to open it"; // Necessita de tradução #endif const char *Txt_Group_name = #if L==0 "Nombre del grupo"; // Necessita traduccio #elif L==1 "Name der Gruppe"; #elif L==2 "Group name"; #elif L==3 "Nombre del grupo"; #elif L==4 "Nom du groupe"; #elif L==5 "Nombre del grupo"; // Okoteve traducción #elif L==6 "Nome del gruppo"; #elif L==7 "Nazwa grupy"; #elif L==8 "Nome do grupo"; #endif const char *Txt_Group_X_open = // Warning: it is very important to include %s in the following sentences #if L==0 "Grupo %s abierto"; // Necessita traduccio #elif L==1 "Group %s open"; // Need Übersetzung #elif L==2 "Group %s open"; #elif L==3 "Grupo %s abierto"; #elif L==4 "Group %s open"; // Besoin de traduction #elif L==5 "Grupo %s abierto"; // Okoteve traducción #elif L==6 "Gruppo %s aperto"; #elif L==7 "Grupa %s otwarta"; #elif L==8 "Group %s open"; // Necessita de tradução #endif const char *Txt_Group_X_open_click_to_close_it = // Warning: it is very important to include %s in the following sentences #if L==0 "Grupo %s abierto; pulse para cerrarlo"; // Necessita traduccio #elif L==1 "Group %s open, click to close it"; // Need Übersetzung #elif L==2 "Group %s open, click to close it"; #elif L==3 "Grupo %s abierto; pulse para cerrarlo"; #elif L==4 "Group %s open, click to close it"; // Besoin de traduction #elif L==5 "Grupo %s abierto; pulse para cerrarlo"; // Okoteve traducción #elif L==6 "Gruppo %s aperto, clicca per chiuderlo"; #elif L==7 "Grupa %s otwarta, kliknij zeby zamknac"; #elif L==8 "Group %s open, click to close it"; // Necessita de tradução #endif const char *Txt_Group_X_removed = // Warning: it is very important to include %s in the following sentences #if L==0 "Grupo %s eliminado."; // Necessita traduccio #elif L==1 "Gruppe %s entfernt."; #elif L==2 "Group %s removed."; #elif L==3 "Grupo %s eliminado."; #elif L==4 "Groupe %s supprimé."; #elif L==5 "Grupo %s eliminado."; // Okoteve traducción #elif L==6 "Gruppo %s rimosso."; #elif L==7 "Grupa %s usunieta."; #elif L==8 "Group %s removed."; // Necessita de tradução #endif const char *Txt_Groups = #if L==0 "Grups"; #elif L==1 "Gruppen"; #elif L==2 "Groups"; #elif L==3 "Grupos"; #elif L==4 "Groupes"; #elif L==5 "Aty"; #elif L==6 "Gruppi"; #elif L==7 "Grupy"; #elif L==8 "Grupos"; #endif const char *Txt_Groups_OF_A_USER = // Warning: it is very important to include %s in the following sentences #if L==0 "Grups de %s"; #elif L==1 "%s groups"; // Need Übersetzung #elif L==2 "%s groups"; #elif L==3 "Grupos de %s"; #elif L==4 "Groupes de %s"; #elif L==5 "Grupos de %s"; // Okoteve traducción #elif L==6 "Gruppi di %s"; #elif L==7 "%s grupy"; #elif L==8 "%s groups"; // Necessita de tradução #endif const char *Txt_Guided_academic_assignments = #if L==0 "Actividades académicas dirigidas"; // Necessita traduccio #elif L==1 "Geführte akademische Aufgaben"; #elif L==2 "Guided academic assignments"; #elif L==3 "Actividades académicas dirigidas"; #elif L==4 "Activités académiques guidées"; #elif L==5 "Actividades académicas dirigidas"; // Okoteve traducción #elif L==6 "Attività accademiche guidate"; #elif L==7 "Zwiedzanie dyplomowe"; #elif L==8 "Atividades académicas guided"; #endif /* const char *Txt_X_header_rows_Y_student_rows_and_Z_footer_rows_found = // Warning: it is very important to include three %u in the following sentences #if L==0 "Se han detectado %u fila(s) de cabecera, %u fila(s) de estudiantes y %u fila(s) de pie."; // Necessita traduccio #elif L==1 "%u header row(s), %u student row(s) and %u footer row(s) found."; // Need Übersetzung #elif L==2 "%u header row(s), %u student row(s) and %u footer row(s) found."; #elif L==3 "Se han detectado %u fila(s) de cabecera, %u fila(s) de estudiantes y %u fila(s) de pie."; #elif L==4 "%u header row(s), %u student row(s) and %u footer row(s) found."; // Besoin de traduction #elif L==5 "Se han detectado %u fila(s) de cabecera, %u fila(s) de estudiantes y %u fila(s) de pie."; // Okoteve traducción #elif L==6 "Si è/sono individuata/e %u riga/righe di intestazione, %u righe di studenti e %u righe a piè di pagina."; #elif L==7 "%u wiersz naglówka(s) %u wierszu studenta i wierszu stopki(s) znaleziono."; #elif L==8 "%u header row(s), %u student row(s) and %u footer row(s) found."; // Necessita de tradução #endif */ const char *Txt_Help_on_the_file_browser = #if L==0 "Ajuda sobre el explorador de fitxers"; #elif L==1 "Hilfe auf dem Datei-Browser"; #elif L==2 "Help on the file browser"; #elif L==3 "Ayuda sobre el explorador de archivos"; #elif L==4 "Aide sur le navigateur de fichiers"; #elif L==5 "Ayuda sobre el explorador de archivos"; // Okoteve traducción #elif L==6 "Guida sul file browser"; #elif L==7 "Pomoc w przegladarke plików"; #elif L==8 "Ajuda sobre o arquivo navegador"; #endif const char *Txt_Hidden_MALE_PLURAL = #if L==0 "Ocultos"; // Necessita traduccio #elif L==1 "Versteckt"; #elif L==2 "Hidden"; #elif L==3 "Ocultos"; #elif L==4 "Cachés"; #elif L==5 "Ocultos"; // Okoteve traducción #elif L==6 "Nascosti"; #elif L==7 "Ukryty"; #elif L==8 "Ocultos"; #endif const char *Txt_Hidden_survey = #if L==0 "Encuesta oculta"; // Necessita traduccio #elif L==1 "Ausgeblendet Umfrage"; #elif L==2 "Hidden survey"; #elif L==3 "Encuesta oculta"; #elif L==4 "Sondage caché"; #elif L==5 "Encuesta oculta"; // Okoteve traducción #elif L==6 "Sondaggio nascosto"; #elif L==7 "Ukryte badania"; #elif L==8 "Inquérito oculto"; #endif const char *Txt_Hide = #if L==0 "Amagar"; #elif L==1 "Ausblenden"; #elif L==2 "Hide"; #elif L==3 "Ocultar"; #elif L==4 "Masquer"; #elif L==5 "Ocultar"; // Okoteve traducción #elif L==6 "Nascondi"; #elif L==7 "Ukryj"; #elif L==8 "Ocultar"; #endif const char *Txt_Hide_FOLDER_FILE_OR_LINK_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Amagar %s"; #elif L==1 "Ausblenden %s"; #elif L==2 "Hide %s"; #elif L==3 "Ocultar %s"; #elif L==4 "Masquer %s"; #elif L==5 "Ocultar %s"; // Okoteve traducción #elif L==6 "Nascondi %s"; #elif L==7 "Ukryj %s"; #elif L==8 "Ocultar %s"; #endif const char *Txt_Hide_left_column = #if L==0 "Ocultar columna izquierda"; // Necessita traduccio #elif L==1 "Links Spalte ausblenden"; #elif L==2 "Hide left column"; #elif L==3 "Ocultar columna izquierda"; #elif L==4 "Masquer la colonne de gauche"; #elif L==5 "Ocultar columna izquierda"; // Okoteve traducción #elif L==6 "Nascondi colonna di sinistra"; #elif L==7 "Ukryj lewa kolumne"; #elif L==8 "Ocultar coluna da esquerda"; #endif const char *Txt_Hide_message = #if L==0 "Amaga missatge"; #elif L==1 "Ausblende Nachricht"; #elif L==2 "Hide message"; #elif L==3 "Ocultar mensaje"; #elif L==4 "Masquer message"; #elif L==5 "Ocultar mensaje"; // Okoteve traducción #elif L==6 "Nascondi messaggio"; #elif L==7 "Hide message"; // Potrzebujesz tlumaczenie #elif L==8 "Ocultar mensagem"; #endif const char *Txt_Hide_right_column = #if L==0 "Ocultar columna derecha"; // Necessita traduccio #elif L==1 "Rechte Spalte ausblenden"; #elif L==2 "Hide right column"; #elif L==3 "Ocultar columna derecha"; #elif L==4 "Masquer la colonne de droite"; #elif L==5 "Ocultar columna derecha"; // Okoteve traducción #elif L==6 "Nascondi colonna di destra"; #elif L==7 "Ukryj prawa kolumne"; #elif L==8 "Ocultar coluna da direita"; #endif const char *Txt_Holiday = #if L==0 "Festivitat"; #elif L==1 "Feiertag"; #elif L==2 "Holiday"; #elif L==3 "Festividad"; #elif L==4 "Fête"; #elif L==5 "Festividad"; #elif L==6 "Festività"; #elif L==7 "Wakacje"; #elif L==8 "Féria"; #endif const char *Txt_Holiday_X_removed = // Warning: it is very important to include %s in the following sentences #if L==0 "Festividad %s eliminada."; // Necessita traduccio #elif L==1 "Feiertag %s entfernt."; #elif L==2 "Holiday %s removed."; #elif L==3 "Festividad %s eliminada."; #elif L==4 "Holiday %s removed."; // Besoin de traduction #elif L==5 "Festividad %s eliminada."; // Okoteve traducción #elif L==6 "Festività %s rimossa."; #elif L==7 "Wakacje %s usuniete."; #elif L==8 "Holiday %s removed."; // Necessita de tradução #endif const char *Txt_HOLIDAY_TYPES[Hld_NUM_TYPES_HOLIDAY] = { #if L==0 "Día festivo" // Necessita traduccio #elif L==1 "Urlaub" #elif L==2 "Holiday" #elif L==3 "Día festivo" #elif L==4 "Jour férié" #elif L==5 "Arete" #elif L==6 "Festività" #elif L==7 "wakacje" #elif L==8 "Feriado" #endif , #if L==0 "Período no lectivo" // Necessita traduccio #elif L==1 "Non-Schule Zeitraum" #elif L==2 "Non school period" #elif L==3 "Período no lectivo" #elif L==4 "Période sans école" #elif L==5 "Período no lectivo" // Okoteve traducción #elif L==6 "Periodo senza lezione" #elif L==7 "Okres nauki szkolnej dla" #elif L==8 "Período sem escola" #endif }; const char *Txt_Holidays = #if L==0 "Dies festius"; #elif L==1 "Feiertage"; #elif L==2 "Holidays"; #elif L==3 "Días festivos"; #elif L==4 "Jours fériés"; #elif L==5 "Arete"; #elif L==6 "Festività"; #elif L==7 "Noclegi"; #elif L==8 "Férias"; #endif const char *Txt_HOLIDAYS_HELP_ORDER[2] = { #if L==0 "Ordenar por lugar" // Necessita traduccio #elif L==1 "Nach Standort sortieren" #elif L==2 "Sort by place" #elif L==3 "Ordenar por lugar" #elif L==4 "Trier par emplacement" #elif L==5 "Ordenar por lugar" // Okoteve traducción #elif L==6 "Ordina per localit`" #elif L==7 "Sortuj wedlug miejsca" #elif L==8 "Classificar por localização" #endif , #if L==0 "Ordenar por fecha" // Necessita traduccio #elif L==1 "Sortieren nach Datum" #elif L==2 "Sort by date" #elif L==3 "Ordenar por fecha" #elif L==4 "Trier par date" #elif L==5 "Ordenar por fecha" // Okoteve traducción #elif L==6 "Ordina per data" #elif L==7 "Sortuj wedlug daty" #elif L==8 "Classificar por data" #endif }; const char *Txt_HOLIDAYS_ORDER[2] = { #if L==0 "Lloc" #elif L==1 "Standort" #elif L==2 "Place" #elif L==3 "Lugar" #elif L==4 "Emplacement" #elif L==5 "Tenda" #elif L==6 "Luogo" #elif L==7 "Miejsce" #elif L==8 "Localização" #endif , #if L==0 "Data inicial" #elif L==1 "Startdatum" #elif L==2 "Start date" #elif L==3 "Fecha inicial" #elif L==4 "Date initiale" #elif L==5 "Fecha inicial" // Okoteve traducción #elif L==6 "Data iniziale" #elif L==7 "Data rozpoczecia" #elif L==8 "Data de início" #endif }; const char *Txt_Home_PAGE = #if L==0 "Inicio"; // Necessita traduccio #elif L==1 "Home"; #elif L==2 "Home"; #elif L==3 "Inicio"; #elif L==4 "Accueil"; #elif L==5 "Inicio"; // Okoteve traducción #elif L==6 "Home"; #elif L==7 "Dom"; #elif L==8 "Home"; #endif const char *Txt_Hour = #if L==0 "Hora"; #elif L==1 "Stunde"; #elif L==2 "Hour"; #elif L==3 "Hora"; #elif L==4 "Heure"; #elif L==5 "Aravo"; #elif L==6 "Ora"; #elif L==7 "Godzina"; #elif L==8 "Hora"; #endif const char *Txt_hour = #if L==0 "hora"; #elif L==1 "Stunde"; #elif L==2 "hour"; #elif L==3 "hora"; #elif L==4 "heure"; #elif L==5 "aravo"; #elif L==6 "ora"; #elif L==7 "godzina"; #elif L==8 "hora"; #endif const char *Txt_hours = #if L==0 "horas"; // Necessita traduccio #elif L==1 "Stunden"; #elif L==2 "hours"; #elif L==3 "horas"; #elif L==4 "heures"; #elif L==5 "aravo"; #elif L==6 "ore"; #elif L==7 "godziny"; #elif L==8 "horas"; #endif const char *Txt_hours_ABBREVIATION = // Abbreviation of "hours" #if L==0 "h"; // Necessita traduccio #elif L==1 "S"; #elif L==2 "h"; #elif L==3 "h"; #elif L==4 "h"; #elif L==5 "a"; #elif L==6 "o"; #elif L==7 "g"; #elif L==8 "h"; #endif const char *Txt_I_forgot_my_password = #if L==0 "He oblidat la meva contrasenya"; #elif L==1 "Ich habe mein Passwort vergessen"; #elif L==2 "I forgot my password"; #elif L==3 "He olvidado mi contraseña"; #elif L==4 "J'ai oublié mon mot de passe"; #elif L==5 "He olvidado mi contraseña"; // Okoteve traducción #elif L==6 "Ho dimenticato la mia password"; #elif L==7 "Nie pamiętam hasła"; #elif L==8 "Esqueci minha senha"; #endif const char *Txt_I_have_read_this_information = #if L==0 "He leído esta información"; // Necessita traduccio #elif L==1 "Ich habe diese Information lesen"; #elif L==2 "I have read this information"; #elif L==3 "He leído esta información"; #elif L==4 "J'ai lu cette information"; #elif L==5 "He leído esta información"; // Okoteve traducción #elif L==6 "Ho letto questa informazione"; #elif L==7 "Czytalem te informacje"; #elif L==8 "Eu li esta informação"; #endif const char *Txt_I_understand_that_this_action_may_have_serious_consequences_and_can_not_be_undone = #if L==0 "Entenc que aquesta acció pot tenir conseqüències greus" " i que no es pot desfer."; #elif L==1 "Ich verstehe, dass diese Aktion kann schwerwiegende Folgen haben" " und kann nicht rückgängig gemacht werden."; #elif L==2 "I understand that this action may have serious consequences" " and can not be undone."; #elif L==3 "Entiendo que esta acción puede tener consecuencias graves" " y que no se puede deshacer."; #elif L==4 "Je comprends que cette action peut avoir des conséquences graves" " et ne peut être annulée."; #elif L==5 "Entiendo que esta acción puede tener consecuencias graves" " y que no se puede deshacer."; // Okoteve traducción #elif L==6 "Mi rendo conto che questa azione può avere gravi conseguenze" " e non può essere annullata."; #elif L==7 "Rozumiem, że działanie to może mieć poważne konsekwencje" " i nie można cofnąć."; #elif L==8 "Eu entendo que esta ação pode ter consequências graves" " e não pode ser desfeita."; #endif const char *Txt_Icons = #if L==0 "Icones"; #elif L==1 "Symbole"; #elif L==2 "Icons"; #elif L==3 "Iconos"; #elif L==4 "Icônes"; #elif L==5 "Iconos"; // Okoteve traducción #elif L==6 "Icone"; #elif L==7 "Ikony"; #elif L==8 "Ícones"; #endif const char *Txt_ID = #if L==0 "ID (DNI/cèdula)"; #elif L==1 "Ausweis-Nr."; #elif L==2 "ID"; #elif L==3 "ID (DNI/cédula)"; #elif L==4 "Num. d'identité"; #elif L==5 "ID (DNI/cédula)"; // Okoteve traducción #elif L==6 "Numero carta d'identità"; #elif L==7 "Dowód osobisty"; #elif L==8 "Nº identif."; #endif const char *Txt_ID_X_confirmed = // Warning: it is very important to include %s in the following sentences #if L==0 "ID (DNI/cédula) %s confirmado"; // Necessita traduccio #elif L==1 "ID %s confirmed"; // Need Übersetzung #elif L==2 "ID %s confirmed"; #elif L==3 "ID (DNI/cédula) %s confirmado"; #elif L==4 "ID %s confirmed"; // Besoin de traduction #elif L==5 "ID (DNI/cédula) %s confirmado"; // Okoteve traducción #elif L==6 "ID %s confirmed"; // Bisogno di traduzione #elif L==7 "ID %s confirmed"; // Potrzebujesz tlumaczenie #elif L==8 "ID %s confirmed"; // Necessita de tradução #endif const char *Txt_ID_X_removed = // Warning: it is very important to include %s in the following sentences #if L==0 "ID (DNI/cédula) %s eliminat."; #elif L==1 "ID %s entfernt."; #elif L==2 "ID %s removed."; #elif L==3 "ID (DNI/cédula) %s eliminado."; #elif L==4 "ID %s supprimé."; #elif L==5 "ID (DNI/cédula) %s eliminado."; // Okoteve traducción #elif L==6 "ID %s rimosso."; #elif L==7 "ID %s usuniete."; #elif L==8 "E-mail %s removido."; #endif const char *Txt_Identified_views = #if L==0 "Accessos identificats"; #elif L==1 "Identifizierte Ansichten"; #elif L==2 "Identified views"; #elif L==3 "Accesos identificados"; #elif L==4 "Vues identifiées"; #elif L==5 "Accesos identificados"; // Okoteve traducción #elif L==6 "Visualizzazioni identificati"; #elif L==7 "Zidentyfikowane odsłon"; #elif L==8 "Acessos identificados"; #endif const char *Txt_If_there_are_multiple_versions_of_the_ID_ = #if L==0 "Si hi ha diverses versions de la ID" " (per ex. DNI amb o sense lletra al final)," " indiqueu totes les versions."; #elif L==1 "Wenn es mehrere Versionen der ID" " (zB. mit oder ohne Buchstabe am Ende)," " schreiben alle Versionen."; #elif L==2 "If there are multiple versions of the ID" " (eg. with or without letter at the end)," " write out all versions."; #elif L==3 "Si existen varias versiones del ID" " (por ej. DNI con o sin letra al final)," " indique todas las versiones."; #elif L==4 "S'il existe plusieurs versions du ID" " (par example avec ou sans lettre à la fin)," " écrire toutes les versions."; #elif L==5 "Si existen varias versiones del ID" " (por ej. DNI con o sin letra al final)," " indique todas las versiones."; // Okoteve traducción #elif L==6 "Se ci sono più versioni del ID" " (ad es. con o senza lettera alla fine)," " scrivere tutte le versioni."; #elif L==7 "Jeśli istnieje wiele wersji identyfikatora" " (np. Z lub bez litery na końcu)," " wypisać wszystkie wersje."; #elif L==8 "Se houver várias versões do ID" " (eg., com ou sem letra no final)," " escreva todas as versões."; #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 #if L==0 "Si se trata de un usuario nuevo en %s," " debe indicar el ID (DNI/cédula)."; // Necessita traduccio #elif L==1 "If this is a new user in %s," " you should indicate her/his ID."; // Übersetzung notwendig #elif L==2 "If this is a new user in %s," " you should indicate her/his ID."; #elif L==3 "Si se trata de un usuario nuevo en %s," " debe indicar el ID (DNI/cédula)."; #elif L==4 "If this is a new user in %s," " you should indicate her/his ID."; // Besoin de traduction #elif L==5 "Si se trata de un usuario nuevo en %s," " debe indicar el ID (DNI/cédula)."; // Okoteve traducción #elif L==6 "If this is a new user in %s," " you should indicate her/his ID."; // Bisogno di traduzione #elif L==7 "If this is a new user in %s," " you should indicate her/his ID."; // Potrzebujesz tlumaczenie #elif L==8 "If this is a new user in %s," " you should indicate her/his ID."; // Necessita de tradução #endif const char *Txt_If_you_have_an_Android_device_try_SWADroid = #if L==0 "Si teniu un dispositiu Android, provi SWADroid"; #elif L==1 "Wenn Sie ein Android-Gerät haben, versuchen SWADroid"; #elif L==2 "If you have an Android device, try SWADroid"; #elif L==3 "Si tiene un dispositivo Android, pruebe SWADroid"; #elif L==4 "Si vous avez un appareil Android, essayer SWADroid"; #elif L==5 "Si tiene un dispositivo Android, pruebe SWADroid"; // Okoteve traducción #elif L==6 "Se avete un dispositivo Android, provate SWADroid"; #elif L==7 "Jeśli masz telefon z systemem Android, spróbuj SWADroid"; #elif L==8 "Se você tiver um dispositivo Android, tente SWADroid"; #endif const char *Txt_If_you_have_forgotten_your_password_ = #if L==0 "Si usted ha olvidado su contraseña," " se le enviará una nueva a la dirección de correo electrónico que escribió en su ficha personal."; // Necessita traduccio #elif L==1 "Wenn Sie Ihr Passwort vergessen haben," " eine neue wird die E-Mail von Ihnen angegebene Adresse in Ihren Profil gesendet werden vergessen."; #elif L==2 "If you have forgotten your password," " a new one will be sent to the e-mail address you entered in your record."; #elif L==3 "Si usted ha olvidado su contraseña," " se le enviará una nueva a la dirección de correo electrónico que escribió en su ficha personal."; #elif L==4 "Si vous avez oublié votre mot de passe," " une nouvelle sera envoyé à l'adresse électronique que vous avez entré dans votre carte."; #elif L==5 "Si usted ha olvidado su contraseña," " se le enviará una nueva a la dirección de correo electrónico que escribió en su ficha personal."; // Okoteve traducción #elif L==6 "Se hai dimenticato la tua password," " una nuova verrà inviata all'indirizzo e-mail che hai inserito nella tua scheda."; #elif L==7 "Jesli nie pamietasz hasla," " nowe zostanie wyslane na adres e-mail, który wszedl w rekordzie."; #elif L==8 "Se você tiver esquecido sua senha," " uma nova será enviada para o e-mail que você inseriu em seu cartão."; #endif const char *Txt_If_you_have_written_your_ID_nickname_or_email_correctly_ = #if L==0 "Si usted ha escrito correctamente su @apodo, correo o ID (DNI/cédula)," " y la dirección de correo electrónico en su ficha es correcta," " recibirá un correo electrónico con una nueva contraseña."; // Necessita traduccio #elif L==1 "Wenn Sie Ihre @Benutzername, E-mail oder Ausweis-Nr.," " korrekt geschrieben wurden, und die E-Mail-Adresse auf Ihren Profil korrekt ist," " erhalten Sie eine E-Mail mit einem neuen Passwort."; #elif L==2 "If you have written your @nick, e-mail or ID correctly," " and the e-mail address on your record is correct," " you will receive an e-mail with a new password."; #elif L==3 "Si usted ha escrito correctamente su @apodo, correo o ID (DNI/cédula)," " y la dirección de correo electrónico en su ficha es correcta," " recibirá un correo electrónico con una nueva contraseña."; #elif L==4 "Si vous avez écrit votre @surnom, courrier ou numéro d'identité correctement," " ainsi que l'adresse e-mail sur votre carte est correct," " vous recevrez un e-mail avec un nouveau mot de passe."; #elif L==5 "Si usted ha escrito correctamente su @apodo, correo o ID (DNI/cédula)," " y la dirección de correo electrónico en su ficha es correcta," " recibirá un correo electrónico con una nueva contraseña."; // Okoteve traducción #elif L==6 "Se hai scritto il tuo nome utente, e-mail o numero di carta d'identità correttamente," " e l'indirizzo e-mail della tua scheda è corretto," " riceverai una e-mail con una nuova password."; #elif L==7 "Jesli napisales swoja nazwe lub nick poprawnie," " a adres e-mail na zapis jest poprawny," " otrzymasz maila z nowym haslem."; #elif L==8 "Se você ter escrito o suo alcunha, e-mail ou nº identif. corretamente," " bem como o endereço de e-mail em seu cartão está correto," " você receberá um e-mail com uma nova senha."; #endif const char *Txt_If_you_send_this_message_you_will_appear_as_its_author = #if L==0 "si envía este mensaje, usted aparecerá como autor"; // Necessita traduccio #elif L==1 "Wenn Senden diese Nachricht, Sie wird als dessen Urheber"; #elif L==2 "if you send this message, you will appear as its author"; #elif L==3 "si envía este mensaje, usted aparecerá como autor"; #elif L==4 "si vous envoyez ce message, vous apparaîtrez comme son auteur"; #elif L==5 "si envía este mensaje, usted aparecerá como autor"; // Okoteve traducción #elif L==6 "se invii questo messaggio, apparirai come suo autore"; #elif L==7 "jesli wyslesz te wiadomosc, pojawi sie jako jego autor"; #elif L==8 "se você enviar esta mensagem, você vai aparecer como o seu autor"; #endif const char *Txt_If_you_want_to_create_a_web_page_for_direct_access_to_the_course_X_ = // Warning: it is very important to include %s in the following sentences #if L==0 "Si desea crear una página web" " que le permita acceder directamente a la asignatura %s," " puede copiar todo el código XHTML siguiente" " en un archivo nuevo y guardarlo" " con la extensión ".htm" o ".html".

" "Si sólo desea insertar un enlace en una página web existente," " copie las líneas indicadas abajo en el lugar deseado del archivo HTML."; // Necessita traduccio #elif L==1 "If you want to create a web page" " for direct access to the course %s," " you can copy all of the following XHTML code" " into a new file and save it" " with ".htm" or ".html" extension.

" "If you only want to insert a link in an existing web page," " copy the lines indicated below in the desired place inside the HTML file."; // Need Übersetzung #elif L==2 "If you want to create a web page" " for direct access to the course %s," " you can copy all of the following XHTML code" " into a new file and save it" " with ".htm" or ".html" extension.

" "If you only want to insert a link in an existing web page," " copy the lines indicated below in the desired place inside the HTML file."; #elif L==3 "Si desea crear una página web" " que le permita acceder directamente a la asignatura %s," " puede copiar todo el código XHTML siguiente" " en un archivo nuevo y guardarlo" " con la extensión ".htm" o ".html".

" "Si sólo desea insertar un enlace en una página web existente," " copie las líneas indicadas abajo en el lugar deseado del archivo HTML."; #elif L==4 "If you want to create a web page" " for direct access to the course %s," " you can copy all of the following XHTML code" " into a new file and save it" " with ".htm" or ".html" extension.

" "If you only want to insert a link in an existing web page," " copy the lines indicated below in the desired place inside the HTML file."; // Besoin de traduction #elif L==5 "Si desea crear una página web" " que le permita acceder directamente a la asignatura %s," " puede copiar todo el código XHTML siguiente" " en un archivo nuevo y guardarlo" " con la extensión ".htm" o ".html".

" "Si sólo desea insertar un enlace en una página web existente," " copie las líneas indicadas abajo en el lugar deseado del archivo HTML."; // Okoteve traducción #elif L==6 "Se vuoi creare una pagina web" " per accedere direttamente al corso %s," " puoi copiare tutto il seguente codice HTML" " in un file e salvarlo" " con ".htm" o ".html" estensione.

" "Se vuoi solo inserire un link in una pagina web esistente," " copia le linee indicate sotto nel posto desiderato all'interno del file HTML."; #elif L==7 "Jesli chcesz stworzyc strone www" " do bezposredniego dostepu do kursu %s," " mozna skopiowac wszystkie nastepujacy kod XHTML" " do nowego pliku i zapisac go" " z ".htm" or ".html" rozszerzenie.

" "Jesli chcesz tylko wstawic link w istniejacej stronie internetowej." " kopii w sposób wskazany ponizej w wybranym miejscu w pliku HTML."; #elif L==8 "If you want to create a web page" " for direct access to the course %s," " you can copy all of the following XHTML code" " into a new file and save it" " with ".htm" or ".html" extension.

" "If you only want to insert a link in an existing web page," " copy the lines indicated below in the desired place inside the HTML file."; // Necessita de tradução #endif const char *Txt_Image = #if L==0 "Imatge"; #elif L==1 "Abbild"; #elif L==2 "Image"; #elif L==3 "Imagen"; #elif L==4 "Image"; #elif L==5 "Ta'ãnga"; #elif L==6 "Immagine"; #elif L==7 "Obraz"; #elif L==8 "Imagem"; #endif const char *Txt_Import_questions = #if L==0 "Importar preguntas"; // Necessita traduccio #elif L==1 "Import questions"; // Need Übersetzung #elif L==2 "Import questions"; #elif L==3 "Importar preguntas"; #elif L==4 "Import questions"; // Besoin de traduction #elif L==5 "Importar preguntas"; // Okoteve traducción #elif L==6 "Import questions"; // Bisogno di traduzione #elif L==7 "Import questions"; // Potrzebujesz tlumaczenie #elif L==8 "Import questions"; // Necessita de tradução #endif const char *Txt_Import_questions_from_XML_file = #if L==0 "Importar preguntas de un archivo XML"; // Necessita traduccio #elif L==1 "Import questions from XML file"; // Need Übersetzung #elif L==2 "Import questions from XML file"; #elif L==3 "Importar preguntas de un archivo XML"; #elif L==4 "Import questions from XML file"; // Besoin de traduction #elif L==5 "Importar preguntas de un archivo XML"; // Okoteve traducción #elif L==6 "Import questions from XML file"; // Bisogno di traduzione #elif L==7 "Import questions from XML file"; // Potrzebujesz tlumaczenie #elif L==8 "Import questions from XML file"; // Necessita de tradução #endif const char *Txt_Imported_questions = #if L==0 "Preguntas importadas"; // Necessita traduccio #elif L==1 "Imported questions"; // Need Übersetzung #elif L==2 "Imported questions"; #elif L==3 "Preguntas importadas"; #elif L==4 "Imported questions"; // Besoin de traduction #elif L==5 "Preguntas importadas"; // Okoteve traducción #elif L==6 "Imported questions"; // Bisogno di traduzione #elif L==7 "Imported questions"; // Potrzebujesz tlumaczenie #elif L==8 "Imported questions"; // Necessita de tradução #endif const char *Txt_In_a_type_of_group_with_single_enrollment_students_can_not_be_registered_in_more_than_one_group = #if L==0 "En un tipo de grupo de adscripción única" " no es posible apuntar estudiantes a más de un grupo."; // Necessita traduccio #elif L==1 "In a type of group with single enrollment," " students can not be registered in more than one group."; // Need Übersetzung #elif L==2 "In a type of group with single enrollment," " tudents can not be registered in more than one group."; #elif L==3 "En un tipo de grupo de adscripción única" " no es posible apuntar estudiantes a más de un grupo."; #elif L==4 "In a type of group with single enrollment," " students can not be registered in more than one group."; // Besoin de traduction #elif L==5 "En un tipo de grupo de adscripción única" " no es posible apuntar estudiantes a más de un grupo."; // Okoteve traducción #elif L==6 "In un tipo di gruppo a singola registrazione," " non puoi registrare studenti in più di un gruppo."; #elif L==7 "W rodzaju grupy z jednej rejestracji," " nie mozesz rejestrowac uczniów w wiecej niz jednej grupy."; #elif L==8 "In a type of group with single enrollment," " students can not be registered in more than one group."; // Necessita de tradução #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 #if L==0 "En el curso %s de la titulación %s" " ya existía una asignatura con el nombre %s."; // Necessita traduccio #elif L==1 "In the year %s of the degree %s" " already existed a course with the name %s."; // Need Übersetzung #elif L==2 "In the year %s of the degree %s" " already existed a course with the name %s."; #elif L==3 "En el curso %s de la titulación %s" " ya existía una asignatura con el nombre %s."; #elif L==4 "In the year %s of the degree %s" " already existed a course with the name %s."; // Besoin de traduction #elif L==5 "En el curso %s de la titulación %s" " ya existía una asignatura con el nombre %s."; // Okoteve traducción #elif L==6 "Nell'anno %s di laurea %s" " già esiste un corso con il nome %s."; #elif L==7 "W roku %s stopnia %s" " istnialy juz kursów z nazwa %s."; #elif L==8 "In the year %s of the degree %s" " already existed a course with the name %s."; // Necessita de tradução #endif const char *Txt_Incomplete_timetable_for_lack_of_space = #if L==0 "Horari incomplet per falta d'espai"; #elif L==1 "Unvollständige Studenplan für Platzmangel"; #elif L==2 "Incomplete timetable for lack of space"; #elif L==3 "Horario incompleto por falta de espacio"; #elif L==4 "Horaire incomplète par manque de place"; #elif L==5 "Horario incompleto por falta de espacio"; // Okoteve traducción #elif L==6 "Orario incompleto per mancanza di spazio"; #elif L==7 "Niekompletne harmonogram brak miejsca"; #elif L==8 "Horário incompleto por falta de espaço"; #endif const char *Txt_Increase_level_of_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Aumentar nivel de %s"; // Necessita traduccio #elif L==1 "Increase level of %s"; // Need Übersetzung #elif L==2 "Increase level of %s"; #elif L==3 "Aumentar nivel de %s"; #elif L==4 "Increase level of %s"; // Besoin de traduction #elif L==5 "Aumentar nivel de %s"; // Okoteve traducción #elif L==6 "Incrementare livello di %s"; #elif L==7 "Wzrost poziomu %s"; #elif L==8 "Increase level of %s"; // Necessita de tradução #endif const char *Txt_Indicators = #if L==0 "Indicadors"; #elif L==1 "Indikatoren"; #elif L==2 "Indicators"; #elif L==3 "Indicadores"; #elif L==4 "Indicateurs"; #elif L==5 "Indicadores"; // Okoteve traducción #elif L==6 "Indicatori"; #elif L==7 "Wskaźniki"; #elif L==8 "Indocadores"; #endif const char *Txt_Indicators_of_courses = #if L==0 "Indicadors d'assignatures"; #elif L==1 "Anzeigen von Veranstaltungen"; #elif L==2 "Indicators of courses"; #elif L==3 "Indicadores de asignaturas"; #elif L==4 "Indicateurs de matières"; #elif L==5 "Indicadores de asignaturas"; // Okoteve traducción #elif L==6 "Indicatori di corsi"; #elif L==7 "Wskaźniki kursów"; #elif L==8 "Indicadores de disciplinas"; #endif const char *Txt_INFO_TITLE[Inf_NUM_INFO_TYPES] = { // Inf_INTRODUCTION #if L==0 "Informació" #elif L==1 "Information" #elif L==2 "Information" #elif L==3 "Información" #elif L==4 "Information" #elif L==5 "Información" // Okoteve traducción #elif L==6 "Informazione" #elif L==7 "Informacja" #elif L==8 "Informação" #endif , // Inf_TEACHING_GUIDE #if L==0 "Guia docent" #elif L==1 "Hinweise zur Veranstaltung" #elif L==2 "Teaching guide" #elif L==3 "Guía docente" #elif L==4 "Guide pédagogique" #elif L==5 "Guía docente" // Okoteve traducción #elif L==6 "Guida didattica" #elif L==7 "Nauczanie przypomnienie" #elif L==8 "Guia de ensino" #endif , // Inf_LECTURES #if L==0 "Programa teoria" #elif L==1 "Studienplan (Vorlesungen)" #elif L==2 "Syllabus (lectures)" #elif L==3 "Programa teoría" #elif L==4 "Plan théorie" #elif L==5 "Programa teoría" // Okoteve traducción #elif L==6 "Programma teoria" #elif L==7 "Syllabus (wyklady)" #elif L==8 "Programa teoria" #endif , // Inf_PRACTICALS #if L==0 "Programa pràctiques" #elif L==1 "Studienplan (Übungen)" #elif L==2 "Syllabus (practicals)" #elif L==3 "Programa prácticas" #elif L==4 "Plan pratique" #elif L==5 "Programa prácticas" // Okoteve traducción #elif L==6 "Programma pratica" #elif L==7 "Syllabus (practicals)" #elif L==8 "Programa prática" #endif , // Inf_BIBLIOGRAPHY #if L==0 "Bibliografia" #elif L==1 "Literatur" #elif L==2 "Bibliography" #elif L==3 "Bibliografía" #elif L==4 "Bibliographie" #elif L==5 "Arandukapurupyre" #elif L==6 "Bibliografia" #elif L==7 "Bibliografia" #elif L==8 "Bibliografia" #endif , // Inf_FAQ #if L==0 "FAQ" #elif L==1 "FAQ" #elif L==2 "FAQ" #elif L==3 "FAQ" #elif L==4 "FAQ" #elif L==5 "FAQ" // Okoteve traducción #elif L==6 "FAQ" #elif L==7 "FAQ" #elif L==8 "FAQ" #endif , // Inf_LINKS #if L==0 "Enllaços" #elif L==1 "Links" #elif L==2 "Links" #elif L==3 "Enlaces" #elif L==4 "Liens" #elif L==5 "Ambuére joaju" #elif L==6 "Link" #elif L==7 "Linki" #elif L==8 "Ligações" #endif , // Inf_ASSESSMENT #if L==0 "Sistema d'avaluació" #elif L==1 "Bewertungssystem" #elif L==2 "Assessment system" #elif L==3 "Sistema de evaluación" #elif L==4 "Système d'évaluation" #elif L==5 "Sistema de evaluación" // Okoteve traducción #elif L==6 "Sistema di valutazione" #elif L==7 "System oceniania" #elif L==8 "Sistema de avaliação" #endif }; const char *Txt_INFO_SRC_FULL_TEXT[Inf_NUM_INFO_SOURCES] = { #if L==0 "No ofrecer ninguna información" // Necessita traduccio #elif L==1 "Geben keine Auskunft" #elif L==2 "Do not give any information" #elif L==3 "No ofrecer ninguna información" #elif L==4 "Ne pas donner d'information" #elif L==5 "No ofrecer ninguna información" // Okoteve traducción #elif L==6 "Non dare alcuna informazione" #elif L==7 "Nie podawaj zadnych informacji" #elif L==8 "Não dê nenhuma informação" #endif , #if L==0 "Editor interno" // Necessita traduccio #elif L==1 "Interner Editor" #elif L==2 "Internal editor" #elif L==3 "Editor interno" #elif L==4 "Éditeur interne" #elif L==5 "Editor interno" // Okoteve traducción #elif L==6 "Editor interno" #elif L==7 "Wewnetrzny edytor" #elif L==8 "Interno editor" #endif , #if L==0 "Text sense format" #elif L==1 "Plain Text" #elif L==2 "Plain text" #elif L==3 "Texto sin formato" #elif L==4 "Texte brut" #elif L==5 "Texto sin formato" // Okoteve traducción #elif L==6 "Testo normale" #elif L==7 "Zwykly tekst" #elif L==8 "Texto plano" #endif , #if L==0 "Text enriquit" #elif L==1 "Rich Text" #elif L==2 "Rich text" #elif L==3 "Texto enriquecido" #elif L==4 "Texte enrichi" #elif L==5 "Texto enriquecido" // Okoteve traducción #elif L==6 "Testo formattato" #elif L==7 "Rich text" // Potrzebujesz tlumaczenie #elif L==8 "Rich text" // Necessita de tradução #endif , #if L==0 "Página web alojada aquí" // Necessita traduccio #elif L==1 "Webseite gehostet hier" #elif L==2 "Web page hosted here" #elif L==3 "Página web alojada aquí" #elif L==4 "Page web hébergée ici" #elif L==5 "Página web alojada aquí" // Okoteve traducción #elif L==6 "Pagina web ospitata qui" #elif L==7 "Strona internetowa hostowana tutaj" #elif L==8 "Página da Web hospedada aqui" #endif , #if L==0 "Página web alojada en otro servidor" // Necessita traduccio #elif L==1 "Webseite auf einem anderen Server gehostet" #elif L==2 "Web page hosted on another server" #elif L==3 "Página web alojada en otro servidor" #elif L==4 "Page Web hébergée sur un autre serveur" #elif L==5 "Página web alojada en otro servidor" // Okoteve traducción #elif L==6 "Pagina Web ospitata su un altro server" #elif L==7 "Strona internetowa umieszczona na innym serwerze" #elif L==8 "Página da Web hospedada em outro servidor" #endif }; const char *Txt_INFO_SRC_HELP[Inf_NUM_INFO_SOURCES] = { NULL, #if L==0 "editor integrado, sólo para los temarios de teoría y prácticas"// Necessita traduccio #elif L==1 "Interner Editor, nur für Studienplan (Vorlesung und Übungen)" #elif L==2 "internal editor, only for syllabus (lectures and practicals)" #elif L==3 "editor integrado, sólo para los temarios de teoría y prácticas" #elif L==4 "éditeur interne, que pour les plans (théorie et pratique)" #elif L==5 "editor integrado, sólo para los temarios de teoría y prácticas"// Okoteve traducción #elif L==6 "editor interno, solo per programmi di teoria e di pratica" #elif L==7 "Wewnetrzny edytor, tylko program (wyklady i practicals)" #elif L==8 "interno editor, apenas para programas de teoria y prática" #endif , #if L==0 "editor de texto plano" // Necessita traduccio #elif L==1 "Plain Text Editor" #elif L==2 "plain text editor" #elif L==3 "editor de texto plano" #elif L==4 "éditeur de texte simple" #elif L==5 "editor de texto plano" // Okoteve traducción #elif L==6 "editor di testo normale" #elif L==7 "edytor tekstu" #elif L==8 "editor de texto simples" #endif , #if L==0 "editor de text enriquit" #elif L==1 "Rich Text Editor" #elif L==2 "rich text editor" #elif L==3 "editor de texto enriquecido" #elif L==4 "éditeur de texte enrichi" #elif L==5 "editor de texto enriquecido" // Okoteve traducción #elif L==6 "editor di testo formattato" #elif L==7 "rich text editor" // Potrzebujesz tlumaczenie #elif L==8 "rich text editor" // Necessita de tradução #endif , #if L==0 "envíe un archivo HTML, o bien un archivo ZIP que contenga un archivo index.html/index.htm y archivos con imágenes"// Necessita traduccio #elif L==1 "senden Sie eine HTML-Datei, oder als ZIP-Datei mit einer Datei index.html / index.htm und Bild-Dateien" #elif L==2 "send an HTML file, or a ZIP file containing a file index.html / index.htm and image files" #elif L==3 "envíe un archivo HTML, o bien un archivo ZIP que contenga un archivo index.html/index.htm y archivos con imágenes" #elif L==4 "envoyer un fichier HTML, ou un fichier ZIP contenant un fichier index.html / index.htm et les fichiers d'images" #elif L==5 "envíe un archivo HTML, o bien un archivo ZIP que contenga un archivo index.html/index.htm y archivos con imágenes"// Okoteve traducción #elif L==6 "inviare un file HTML, o un file ZIP contenente un file index.html / index.htm e file di immagine" #elif L==7 "wyslac plik HTML lub plik ZIP zawierajacy plik index.html / index.htm i pliki graficzne" #elif L==8 "enviar um arquivo HTML, ou um arquivo ZIP que contém um arquivo index.html / index.htm e limas da imagem" #endif , #if L==0 "escriba la dirección web de una página que se encuentre alojada en otro servidor" // Necessita traduccio #elif L==1 "Geben Sie die Adresse einer Web-Seite geleitet werden, der sich auf einem anderen Server" #elif L==2 "enter the address of a web page that is hosted on another server" #elif L==3 "escriba la dirección web de una página que se encuentre alojada en otro servidor" #elif L==4 "entrer l'adresse d'une page Web qui est hébergée sur un autre serveur" #elif L==5 "escriba la dirección web de una página que se encuentre alojada en otro servidor" // Okoteve traducción #elif L==6 "immettere l'indirizzo di una pagina web che è ospitata su un altro server" #elif L==7 "wprowadzic adres strony internetowej, która znajduje sie na innym serwerze" #elif L==8 "introduza o endereço de uma página Web que está hospedada em outro servidor" #endif }; const char *Txt_INFO_SRC_SHORT_TEXT[Inf_NUM_INFO_SOURCES] = { #if L==0 "Ninguna información" // Necessita traduccio #elif L==1 "Keine Angaben" #elif L==2 "No information" #elif L==3 "Ninguna información" #elif L==4 "Aucune information" #elif L==5 "Ninguna información" // Okoteve traducción #elif L==6 "Nessuna informazione" #elif L==7 "Brak informacji" #elif L==8 "Sem informação" #endif , #if L==0 "Editor interno" // Necessita traduccio #elif L==1 "Interner Editor" #elif L==2 "Internal editor" #elif L==3 "Editor interno" #elif L==4 "Éditeur interne" #elif L==5 "Editor interno" // Okoteve traducción #elif L==6 "Editor interno" #elif L==7 "Wewnetrzny edytor" #elif L==8 "Interno editor" #endif , #if L==0 "Text sense format" #elif L==1 "Plain Text" #elif L==2 "Plain text" #elif L==3 "Texto sin formato" #elif L==4 "Plain text" #elif L==5 "Texto sin formato" // Okoteve traducción #elif L==6 "Testo normale" #elif L==7 "Zwykly tekst" #elif L==8 "Texto plano" #endif , #if L==0 "Text enriquit" #elif L==1 "Rich Text" #elif L==2 "Rich text" #elif L==3 "Texto enriquecido" #elif L==4 "Texte enrichi" #elif L==5 "Texto enriquecido" // Okoteve traducción #elif L==6 "Testo formattato" #elif L==7 "Rich text" // Potrzebujesz tlumaczenie #elif L==8 "Rich text" // Necessita de tradução #endif , #if L==0 "Página interna" // Necessita traduccio #elif L==1 "Interne Webseite" #elif L==2 "Internal page" #elif L==3 "Página interna" #elif L==4 "Page interne" #elif L==5 "Página interna" // Okoteve traducción #elif L==6 "Pagina interna" #elif L==7 "Strona wewnetrzna" #elif L==8 "Interna página" #endif , #if L==0 "Página externa" // Necessita traduccio #elif L==1 "Externe Webseite" #elif L==2 "External page" #elif L==3 "Página externa" #elif L==4 "Page externe" #elif L==5 "Página externa" // Okoteve traducción #elif L==6 "Pagina esterna" #elif L==7 "Strona zewnetrzna" #elif L==8 "Externa página" #endif }; const char *Txt_Institution = #if L==0 "Institució"; #elif L==1 "Hochschule"; #elif L==2 "Institution"; #elif L==3 "Institución"; #elif L==4 "Établissement"; #elif L==5 "Mbo'ehao"; #elif L==6 "Istituzione"; #elif L==7 "Instytucji"; #elif L==8 "Institução"; #endif const char *Txt_institution = #if L==0 "institució"; #elif L==1 "Hochschule"; #elif L==2 "institution"; #elif L==3 "institución"; #elif L==4 "établissement"; #elif L==5 "mbo'ehao"; #elif L==6 "istituzione"; #elif L==7 "instytucji"; #elif L==8 "institução"; #endif const char *Txt_Institution_centre_and_department = #if L==0 "Institució, centre i departament"; #elif L==1 "Hochschule, Lehrinstitut und Abteilung"; #elif L==2 "Institution, centre and department"; #elif L==3 "Institución, centro y departamento"; #elif L==4 "Établissement, centre et département"; #elif L==5 "Mbo'ehao, mbo'ehao, peh&etilde;"; #elif L==6 "Istituzione, centro e dipartimento"; #elif L==7 "Instytucji, centrum i wydział"; #elif L==8 "Institução, centro e departamento"; #endif const char *Txt_Institution_X_removed = // Warning: it is very important to include %s in the following sentences #if L==0 "Institución %s eliminada."; // Necessita traduccio #elif L==1 "Hochschule %s entfernt."; #elif L==2 "Institution %s removed."; #elif L==3 "Institución %s eliminada."; #elif L==4 "Institution %s removed."; // Besoin de traduction #elif L==5 "Institución %s eliminada."; // Okoteve traducción #elif L==6 "Istituzione %s rimossa."; #elif L==7 "Instytucja %s usunieta."; #elif L==8 "Institution %s removed."; // Necessita de tradução #endif const char *Txt_INSTITUTION_STATUS[Ins_NUM_STATUS_TXT] = { #if L==0 // Ins_STATUS_UNKNOWN "Desconegudo" #elif L==1 "Unbekannt" #elif L==2 "Unknown" #elif L==3 "Desconocido" #elif L==4 "Inconnu" #elif L==5 "Desconocido" // Okoteve traducción #elif L==6 "Sconosciuto" #elif L==7 "Nieznany" #elif L==8 "Desconhecido" #endif , #if L==0 // Ins_STATUS_ACTIVE "Activa" #elif L==1 "Aktive" #elif L==2 "Active" #elif L==3 "Activa" #elif L==4 "Actif" #elif L==5 "Activa" // Okoteve traducción #elif L==6 "Attiva" #elif L==7 "Aktywne" #elif L==8 "Ativa" #endif , #if L==0 // Ins_STATUS_PENDING "Pendent" #elif L==1 "Offen" #elif L==2 "Pending" #elif L==3 "Pendiente" #elif L==4 "En attente" #elif L==5 "Pendiente" // Okoteve traducción #elif L==6 "In attesa" #elif L==7 "Do czasu" #elif L==8 "Pendente" #endif , #if L==0 // Ins_STATUS_REMOVED "Eliminada" #elif L==1 "Entfernt" #elif L==2 "Removed" #elif L==3 "Eliminada" #elif L==4 "Supprimé" #elif L==5 "Eliminada" // Okoteve traducción #elif L==6 "Rimossa" #elif L==7 "Usuniete" #elif L==8 "Suprimida" #endif }; const char *Txt_Institutional_code = #if L==0 "Codi institucional"; #elif L==1 "Institutionelle Code"; #elif L==2 "Institutional code"; #elif L==3 "Código institucional"; #elif L==4 "Code institutionnel"; #elif L==5 "Código institucional"; // Okoteve traducción #elif L==6 "Codice istituzionale"; #elif L==7 "Kod instytucjonalna"; #elif L==8 "Código institutional"; #endif const char *Txt_Institutional_BR_code = #if L==0 "Codi
instituc."; #elif L==1 "Institutionelle
Code"; #elif L==2 "Institut.
code"; #elif L==3 "Código
instituc."; #elif L==4 "Code
institut."; #elif L==5 "Código
instituc."; // Okoteve traducción #elif L==6 "Codice
istituz."; #elif L==7 "Kod
instytuc."; #elif L==8 "Código
instituc."; #endif const char *Txt_Institutions = #if L==0 "Institucions"; #elif L==1 "Hochschulen"; #elif L==2 "Institutions"; #elif L==3 "Instituciones"; #elif L==4 "Établissements"; #elif L==5 "Mbo'ehao"; #elif L==6 "Istituzioni"; #elif L==7 "Instytucje"; #elif L==8 "Instituções"; #endif const char *Txt_Institutions_ABBREVIATION = #if L==0 "Instit."; #elif L==1 "Hochschulen"; #elif L==2 "Instit."; #elif L==3 "Instit."; #elif L==4 "Instit."; #elif L==5 "Instit."; // Okoteve traducción #elif L==6 "Istit."; #elif L==7 "Instyt."; #elif L==8 "Instit."; #endif const char *Txt_institutions = #if L==0 "institucions"; #elif L==1 "Hochschulen"; #elif L==2 "institutions"; #elif L==3 "instituciones"; #elif L==4 "établissements"; #elif L==5 "mbo'ehao"; #elif L==6 "istituzioni"; #elif L==7 "instytucje"; #elif L==8 "instituções"; #endif const char *Txt_INSTITUTIONS_HELP_ORDER[2] = { #if L==0 "Ordenar por institución" // Necessita traduccio #elif L==1 "Nach Hochschule sortieren" #elif L==2 "Sort by institution" #elif L==3 "Ordenar por institución" #elif L==4 "Trier par établissement" #elif L==5 "Ordenar por institución" // Okoteve traducción #elif L==6 "Ordina per istituzione" #elif L==7 "Sortuj wedlug instytucji" #elif L==8 "Classificar por instituição" #endif , #if L==0 "Ordenar por nº de usuarios" // Necessita traduccio #elif L==1 "Nach Anzahl der Benutzer sortieren" #elif L==2 "Sort by no. of users" #elif L==3 "Ordenar por nº de usuarios" #elif L==4 "Trier par nombre d'utilisateurs" #elif L==5 "Ordenar por nº de usuarios" // Okoteve traducción #elif L==6 "Ordina per numero di utenti" #elif L==7 "Sortowanie wedlug liczby uzytkownikow" #elif L==8 "Classificar por nº de utilizadores" #endif }; const char *Txt_INSTITUTIONS_ORDER[2] = { #if L==0 "Institució" #elif L==1 "Hochschule" #elif L==2 "Institution" #elif L==3 "Institución" #elif L==4 "Établissement" #elif L==5 "Mbo'ehao" #elif L==6 "Istituzione" #elif L==7 "Instytucji" #elif L==8 "Instituição" #endif , #if L==0 "Usuaris" #elif L==1 "Benutzer" #elif L==2 "Users" #elif L==3 "Usuarios" #elif L==4 "Utilisateurs" #elif L==5 "Puruhára" #elif L==6 "Utenti" #elif L==7 "Użytkownicy" #elif L==8 "Utilizadores" #endif }; const char *Txt_Institutions_with_pending_centres = #if L==0 "Institucions amb centres pendents d'activar"; #elif L==1 "Hochschulen mit anhängig Lehrinstitute"; #elif L==2 "Institutions with pending centres"; #elif L==3 "Instituciones con centros pendientes de activar"; #elif L==4 "Établissements avec des centres en attente"; #elif L==5 "Instituciones con centros pendientes de activar"; // Okoteve traducción #elif L==6 "Istituzioni con centri in sospeso"; #elif L==7 "Instytucji z centra oczekujący"; #elif L==8 "Instituções com centros pendentes"; #endif const char *Txt_Integer_number = #if L==0 "Nombre enter"; #elif L==1 "Ganze Zahl"; #elif L==2 "Integer number"; #elif L==3 "Nº entero"; #elif L==4 "Nombre entier"; #elif L==5 "Nº entero"; // Okoteve traducción #elif L==6 "Numero intero"; #elif L==7 "Liczba calkowita"; #elif L==8 "Nº inteiro"; #endif const char *Txt_Internal_code = #if L==0 "Codi intern"; #elif L==1 "Interner Code"; #elif L==2 "Internal code"; #elif L==3 "Código interno"; #elif L==4 "Code interne"; #elif L==5 "Código interno"; // Okoteve traducción #elif L==6 "Codice interno"; #elif L==7 "Kod wewnętrzny"; #elif L==8 "Código interno"; #endif const char *Txt_IP = // Internet Protocol address #if L==0 "IP"; #elif L==1 "IP"; #elif L==2 "IP"; #elif L==3 "IP"; #elif L==4 "IP"; #elif L==5 "IP"; // Okoteve traducción #elif L==6 "IP"; #elif L==7 "IP"; #elif L==8 "IP"; #endif const char *Txt_X_is_busy_at_the_moment_Try_again_in_a_few_seconds = // Warning: it is very important to include %s in the following sentences #if L==0 "%s está ocupado en este momento. Vuelva a intentarlo dentro de unos segundos."; // Necessita traduccio #elif L==1 "%s ist im Moment beschäftigt. Wieder in ein paar Sekunden noch einmal."; #elif L==2 "%s is busy at the moment. Try again in a few seconds."; #elif L==3 "%s está ocupado en este momento. Vuelva a intentarlo dentro de unos segundos."; #elif L==4 "%s est occupé en ce moment. Essayez à nouveau dans quelques secondes."; #elif L==5 "%s está ocupado en este momento. Vuelva a intentarlo dentro de unos segundos."; // Okoteve traducción #elif L==6 "%s è occupato in questo momento. Riprova tra pochi secondi."; #elif L==7 "%s jest zajety. Spróbuj ponownie za kilka sekund."; #elif L==8 "%s está ocupado no momento. Tente novamente em alguns segundos."; #endif const char *Txt_It_is_mandatory_to_choose_a_group = #if L==0 "Elegir grupo es obligatorio"; // Necessita traduccio #elif L==1 "Es muss eine Gruppe ausgewählt werden"; #elif L==2 "It is mandatory to choose a group"; #elif L==3 "Elegir grupo es obligatorio"; #elif L==4 "Il est obligatoire de choisir un groupe"; #elif L==5 "Elegir grupo es obligatorio"; // Okoteve traducción #elif L==6 "E 'obbligatorio scegliere un gruppo"; #elif L==7 "Jest to obowiazkowe, aby wybrac grupe"; #elif L==8 "Escolher um grupo é obrigatório"; #endif const char *Txt_It_is_optional_to_choose_a_group = #if L==0 "Elegir grupo es voluntario"; // Necessita traduccio #elif L==1 "Die Auswähl einer Gruppe ist freiwillig"; #elif L==2 "It is optional to choose a group"; #elif L==3 "Elegir grupo es voluntario"; #elif L==4 "Il est volontaire de choisir un groupe"; #elif L==5 "Elegir grupo es voluntario"; // Okoteve traducción #elif L==6 "E' facoltativo scegliere un gruppo"; #elif L==7 "Opcjonalnie mozna wybrac grupe"; #elif L==8 "Escolher um grupo é voluntário"; #endif const char *Txt_Language = #if L==0 "Idioma"; #elif L==1 "Sprache"; #elif L==2 "Language"; #elif L==3 "Idioma"; #elif L==4 "Langue"; #elif L==5 "Ñe'&etilde;"; #elif L==6 "Lingua"; #elif L==7 "Język"; #elif L==8 "Lingua"; #endif const char *Txt_Last_BR_year = // "Last academic year", the opposite to "First academic year" #if L==0 "Últ..
curso"; // Necessita traduccio #elif L==1 "Last
year"; // Need Übersetzung #elif L==2 "Last
year"; #elif L==3 "Últ..
curso"; #elif L==4 "Last
year"; // Besoin de traduction #elif L==5 "Últ..
curso"; // Okoteve traducción #elif L==6 "Ultimo
anno"; #elif L==7 "Ostatni
rok"; #elif L==8 "Last
year"; // Necessita de tradução #endif const char *Txt_Layout = #if L==0 "Disseny"; #elif L==1 "Layout"; #elif L==2 "Layout"; #elif L==3 "Diseño"; #elif L==4 "Disposition"; #elif L==5 "Ta'ãngahai"; #elif L==6 "Layout"; #elif L==7 "Układ"; #elif L==8 "Layout"; #endif const char *Txt_LAYOUT_NAMES[Lay_NUM_LAYOUTS] = { #if L==0 "Pantalla grande" // Necessita traduccio #elif L==1 "Desktop" // Need Übersetzung #elif L==2 "Desktop" #elif L==3 "Pantalla grande" #elif L==4 "Desktop" // Besoin de traduction #elif L==5 "Pantalla grande" // Okoteve traducción #elif L==6 "Desktop" #elif L==7 "Pulpit" #elif L==8 "Desktop" // Necessita de tradução #endif , #if L==0 "Móvil" // Necessita traduccio #elif L==1 "Mobile" // Need Übersetzung #elif L==2 "Mobile" #elif L==3 "Móvil" #elif L==4 "Mobile" // Besoin de traduction #elif L==5 "Móvil" // Okoteve traducción #elif L==6 "Cellulare" #elif L==7 "Komorka" #elif L==8 "Mobile" // Necessita de tradução #endif }; const char *Txt_LAYOUT_SIDE_COLUMNS[4] = { #if L==0 "Sólo zona central" // Necessita traduccio #elif L==1 "Nur mittleren Bereich anzeigen" #elif L==2 "Display central area only" #elif L==3 "Sólo zona central" #elif L==4 "Display central area only" // Besoin de traduction #elif L==5 "Sólo zona central" // Okoteve traducción #elif L==6 "Mostra solo la parte centrale" #elif L==7 "Wyswietl centralnej czesci tylko" #elif L==8 "Display central area only" // Necessita de tradução #endif , #if L==0 "Columna derecha visible" // Necessita traduccio #elif L==1 "Rechte Spalte anzeigen" #elif L==2 "Display right column" #elif L==3 "Columna derecha visible" #elif L==4 "Display right column" // Besoin de traduction #elif L==5 "Columna derecha visible" // Okoteve traducción #elif L==6 "Mostra la colonna destra" #elif L==7 "Wyswietl prawa kolumne" #elif L==8 "Display right column" // Necessita de tradução #endif , #if L==0 "Columna izquierda visible" // Necessita traduccio #elif L==1 "Linke Spalte anzeigen" #elif L==2 "Display left column" #elif L==3 "Columna izquierda visible" #elif L==4 "Display left column" // Besoin de traduction #elif L==5 "Columna izquierda visible" // Okoteve traducción #elif L==6 "Mostra la colonna sinistra" #elif L==7 "Wyswietl lewa kolumne" #elif L==8 "Display left column" // Necessita de tradução #endif , #if L==0 "Columnas izquierda y derecha visibles" // Necessita traduccio #elif L==1 "Linke und rechte Spalte anzeigen" #elif L==2 "Display left and right columns" #elif L==3 "Columnas izquierda y derecha visibles" #elif L==4 "Display left and right columns" // Besoin de traduction #elif L==5 "Columnas izquierda y derecha visibles" // Okoteve traducción #elif L==6 "Mostra la colonna sinistra e destra" #elif L==7 "Wyswietl lewa i prawa kolumne" #elif L==8 "Display left and right columns" // Necessita de tradução #endif }; const char *Txt_level = #if L==0 "nivel"; // Necessita traduccio #elif L==1 "Ebene"; #elif L==2 "level"; #elif L==3 "nivel"; #elif L==4 "niveau"; #elif L==5 "nivel"; // Okoteve traducción #elif L==6 "livello"; #elif L==7 "poziom"; #elif L==8 "nível"; #endif const char *Txt_Levels = #if L==0 "Niveles"; // Necessita traduccio #elif L==1 "Ebenen"; #elif L==2 "Levels"; #elif L==3 "Niveles"; #elif L==4 "Niveaux"; #elif L==5 "Niveles"; // Okoteve traducción #elif L==6 "Livelli"; #elif L==7 "Poziomy"; #elif L==8 "Níveis"; #endif const char *Txt_levels = #if L==0 "niveles"; // Necessita traduccio #elif L==1 "Ebenen"; #elif L==2 "levels"; #elif L==3 "niveles"; #elif L==4 "niveaux"; #elif L==5 "niveles"; // Okoteve traducción #elif L==6 "livelli"; #elif L==7 "poziomy"; #elif L==8 "níveis"; #endif const char *Txt_License = #if L==0 "Llicència"; #elif L==1 "Lizenz"; #elif L==2 "License"; #elif L==3 "Licencia"; #elif L==4 "Licence"; #elif L==5 "Licencia"; // Okoteve traducción #elif L==6 "Licenza"; #elif L==7 "Pozwolenie"; #elif L==8 "Licença"; #endif const char *Txt_LICENSES[Brw_NUM_LICENSES] = { #if L==0 "desconeguda / altra" #elif L==1 "Unbekannte / sonstige" #elif L==2 "unknown / other" #elif L==3 "desconocida / otra" #elif L==4 "inconnue / autre" #elif L==5 "desconocida / otra" // Okoteve traducción #elif L==6 "sconosciuta / altri" #elif L==7 "nieznana / inny" #elif L==8 "desconhecida / outra" #endif , #if L==0 "Tots els drets reservats" // All Rights Reserved #elif L==1 "Alle Rechte vorbehalten" // All Rights Reserved #elif L==2 "All rights reserved" // All Rights Reserved #elif L==3 "Todos los derechos reservados" // All Rights Reserved #elif L==4 "Tous droits réservés" // All Rights Reserved #elif L==5 "Todos los derechos reservados" // All Rights Reserved // Okoteve traducción #elif L==6 "Tutti i diritti riservati" // All Rights Reserved #elif L==7 "Wszelkie prawa zastrzeżone" // All Rights Reserved #elif L==8 "Todos os direitos reservados" // All Rights Reserved #endif , #if L==0 "CC Reconeixement" // CC Attribution License #elif L==1 "CC Namensnennung" // CC Attribution License #elif L==2 "CC Attribution" // CC Attribution License #elif L==3 "CC Reconocimiento" // CC Attribution License #elif L==4 "CC Attribution" // CC Attribution License #elif L==5 "CC Reconocimiento" // CC Attribution License // Okoteve traducción #elif L==6 "CC Attribuzione" // CC Attribution License #elif L==7 "CC Uznanie autorstwa" // CC Attribution License #elif L==8 "CC Atribuição" // CC Attribution License #endif , #if L==0 "CC Reconeixement - Compartir igual" // CC Attribution-ShareAlike License #elif L==1 "CC Namensnennung - Weitergabe unter gleichen Bedingungen" // CC Attribution-ShareAlike License #elif L==2 "CC Attribution - Share Alike" // CC Attribution-ShareAlike License #elif L==3 "CC Reconocimiento - Compartir bajo la misma licencia" // CC Attribution-ShareAlike License #elif L==4 "CC Attribution - Partage à l'Identique" // CC Attribution-ShareAlike License #elif L==5 "CC Reconocimiento - Compartir bajo la misma licencia" // CC Attribution-ShareAlike License // Okoteve traducción #elif L==6 "CC Attribuzione - Condividi allo stesso modo" // CC Attribution-ShareAlike License #elif L==7 "CC Uznanie autorstwa - Na tych samych warunkach" // CC Attribution-ShareAlike License #elif L==8 "CC Atribuição - Compartilha Igual" // CC Attribution-ShareAlike License #endif , #if L==0 "CC Reconeixement - Sense obra derivada" // CC Attribution-NoDerivs License #elif L==1 "CC Namensnennung - Keine Bearbeitung" // CC Attribution-NoDerivs License #elif L==2 "CC Attribution - No Derivative Works" // CC Attribution-NoDerivs License #elif L==3 "CC Reconocimiento - Sin obras derivadas" // CC Attribution-NoDerivs License #elif L==4 "CC Attribution - Pas de travaux dérivés" // CC Attribution-NoDerivs License #elif L==5 "CC Reconocimiento - Sin obras derivadas" // CC Attribution-NoDerivs License // Okoteve traducción #elif L==6 "CC Attribuzione - Non opere derivate" // CC Attribution-NoDerivs License #elif L==7 "CC Uznanie autorstwa - Bez utworów zależnych" // CC Attribution-NoDerivs License #elif L==8 "CC Atribuição - Trabalhos Derivados Proíbidos" // CC Attribution-NoDerivs License #endif , #if L==0 "CC Reconeixement - No comercial" // CC Attribution-NonCommercial License #elif L==1 "CC Namensnennung - Keine kommerzielle Nutzung" // CC Attribution-NonCommercial License #elif L==2 "CC Attribution - Noncommercial" // CC Attribution-NonCommercial License #elif L==3 "CC Reconocimiento - No comercial" // CC Attribution-NonCommercial License #elif L==4 "CC Attribution - Pas d'Utilisation Commerciale" // CC Attribution-NonCommercial License #elif L==5 "CC Reconocimiento - No comercial" // CC Attribution-NonCommercial License // Okoteve traducción #elif L==6 "CC Attribuzione - Non commerciale" // CC Attribution-NonCommercial License #elif L==7 "CC Uznanie autorstwa - Użycie niekomercyjne" // CC Attribution-NonCommercial License #elif L==8 "CC Atribuição - NãoComercial" // CC Attribution-NonCommercial License #endif , #if L==0 "CC Reconeixement - No comercial - Compartir igual" // CC Attribution-NonCommercial-ShareAlike License #elif L==1 "CC Namensnennung - Keine kommerzielle Nutzung - Weitergabe unter gleichen Bedingungen" // CC Attribution-NonCommercial-ShareAlike License #elif L==2 "CC Attribution - Noncommercial - Share Alike" // CC Attribution-NonCommercial-ShareAlike License #elif L==3 "CC Reconocimiento - No comercial - Compartir bajo la misma licencia" // CC Attribution-NonCommercial-ShareAlike License #elif L==4 "CC Attribution - Pas d'Utilisation Commerciale - Partage à l'Identique" // CC Attribution-NonCommercial-ShareAlike License #elif L==5 "CC Reconocimiento - No comercial - Compartir bajo la misma licencia" // CC Attribution-NonCommercial-ShareAlike License // Okoteve traducción #elif L==6 "CC Attribuzione - Non commerciale - Condividi allo stesso modo" // CC Attribution-NonCommercial-ShareAlike License #elif L==7 "CC Uznanie autorstwa - Użycie niekomercyjne - Na tych samych warunkach" // CC Attribution-NonCommercial-ShareAlike License #elif L==8 "CC Atribuição - NãoComercial - Compartilha Igual" // CC Attribution-NonCommercial-ShareAlike License #endif , #if L==0 "CC Reconeixement - No comercial - Sense obra derivada" // CC Attribution-NonCommercial-NoDerivs License #elif L==1 "CC Namensnennung - Keine kommerzielle Nutzung - Keine Bearbeitung" // CC Attribution-NonCommercial-NoDerivs License #elif L==2 "CC Attribution - Noncommercial - No Derivative Works" // CC Attribution-NonCommercial-NoDerivs License #elif L==3 "CC Reconocimiento - No comercial - Sin obras derivadas" // CC Attribution-NonCommercial-NoDerivs License #elif L==4 "CC Attribution - Pas d’Utilisation Commerciale - Pas de travaux dérivés" // CC Attribution-NonCommercial-NoDerivs License #elif L==5 "CC Reconocimiento - No comercial - Sin obras derivadas" // CC Attribution-NonCommercial-NoDerivs License // Okoteve traducción #elif L==6 "CC Attribuzione - Non commerciale - Non opere derivate" // CC Attribution-NonCommercial-NoDerivs License #elif L==7 "CC Uznanie autorstwa - Użycie niekomercyjne - Bez utworów zależnych" // CC Attribution-NonCommercial-NoDerivs License #elif L==8 "CC Atribuição - NãoComercial - Trabalhos Derivados Proíbidos" // CC Attribution-NonCommercial-NoDerivs License #endif }; const char *Txt_Link = #if L==0 "Enllaç"; #elif L==1 "Link"; #elif L==2 "Link"; #elif L==3 "Enlace"; #elif L==4 "Lien"; #elif L==5 "Enlace"; // Okoteve traducción #elif L==6 "Link"; #elif L==7 "Link"; #elif L==8 "Ligação."; #endif const char *Txt_link = #if L==0 "enllaç"; #elif L==1 "Link"; #elif L==2 "link"; #elif L==3 "enlace"; #elif L==4 "lien"; #elif L==5 "enlace"; // Okoteve traducción #elif L==6 "link"; #elif L==7 "link"; #elif L==8 "ligação."; #endif const char *Txt_Link_X_removed = // Warning: it is very important to include %s in the following sentences #if L==0 "Enllaç %s eliminat."; #elif L==1 "Link %s entfernt."; #elif L==2 "Link %s removed."; #elif L==3 "Enlace %s eliminado."; #elif L==4 "Lien %s supprimé."; #elif L==5 "Enlace %s eliminado."; // Okoteve traducción #elif L==6 "Link %s rimosso."; #elif L==7 "Link %s usuniety."; #elif L==8 "Ligação %s removida."; #endif const char *Txt_Link_to_announcement_of_exam = #if L==0 "Enllaç a convocatòria d'examen"; #elif L==1 "Link zu Aufruf für Prüfung"; #elif L==2 "Link to announcement of exam"; #elif L==3 "Enlace a convocatoria de examen"; #elif L==4 "Lien vers convocation à un examen"; #elif L==5 "Enlace a convocatoria de examen"; // Okoteve traducción #elif L==6 "Link alla sessione d'esame"; #elif L==7 "Link do ogloszenie egzaminu"; #elif L==8 "Link para chamada para exame"; #endif const char *Txt_List_of_detailed_clicks_in_the_course_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Listado de clics detallados en la asignatura %s"; // Necessita traduccio #elif L==1 "List of detailed clicks in the course %s"; // Need Übersetzung #elif L==2 "List of detailed clicks in the course %s"; #elif L==3 "Listado de clics detallados en la asignatura %s"; #elif L==4 "List of detailed clicks in the course %s"; // Besoin de traduction #elif L==5 "Listado de clics detallados en la asignatura %s"; // Okoteve traducción #elif L==6 "Lista di scatti dettagliati nel corso %s"; #elif L==7 "Lista szczególowa klikniec w trakcie %s"; #elif L==8 "List of detailed clicks in the course %s"; // Necessita de tradução #endif const char *Txt_List_of_nicks_emails_or_IDs = #if L==0 "Lista de @apodos, correos o ID (DNI/cédulas)"; // Necessita traduccio #elif L==1 "Liste von @Benutzernamen, E-mails oder Ausweis-Nr."; #elif L==2 "List of @nicks, e-mails or IDs"; #elif L==3 "Lista de @apodos, correos o ID (DNI/cédulas)"; #elif L==4 "Liste de numéros d'identité"; #elif L==5 "Lista de @apodos, correos o ID (DNI/cédulas)"; // Okoteve traducción #elif L==6 "Lista di @nomi-utenti, e-mail o numero carte d'identità"; #elif L==7 "List of @nicks, e-mails or IDs"; // Potrzebujesz tlumaczenie #elif L==8 "Lista de @alcunhas, e-mails ou nºs. identif."; #endif const char *Txt_Links = #if L==0 "Enllaços"; #elif L==1 "Links"; #elif L==2 "Links"; #elif L==3 "Enlaces"; #elif L==4 "Liens"; #elif L==5 "Enlaces"; // Okoteve traducción #elif L==6 "Link"; #elif L==7 "Linki"; #elif L==8 "Ligações"; #endif const char *Txt_Links_copied = #if L==0 "Enllaços copiats"; #elif L==1 "Links kopiert"; #elif L==2 "Links copied"; #elif L==3 "Enlaces copiados"; #elif L==4 "Fichiers copiés"; #elif L==5 "Enlaces copiados"; // Okoteve traducción #elif L==6 "Link copiati"; #elif L==7 "Linki kopiowane"; #elif L==8 "Ligações copiadas"; #endif const char *Txt_Local_address = #if L==0 "Domicilio local"; // Necessita traduccio #elif L==1 "Lokale Adresse"; #elif L==2 "Local address"; #elif L==3 "Domicilio local"; #elif L==4 "Adresse locale"; #elif L==5 "Domicilio local"; // Okoteve traducción #elif L==6 "Indirizzo locale"; #elif L==7 "Adres lokalny"; #elif L==8 "Local Address"; #endif const char *Txt_Location = #if L==0 "Lloc"; #elif L==1 "Standort"; #elif L==2 "Location"; #elif L==3 "Sitio"; #elif L==4 "Emplacement"; #elif L==5 "Sitio"; // Okoteve traducción #elif L==6 "Locazione"; #elif L==7 "Lokalizacja"; #elif L==8 "Site"; #endif const char *Txt_LOG_More_info = #if L==0 "Observaciones"; // Necessita traduccio #elif L==1 "Weitere Informationen"; #elif L==2 "More info"; #elif L==3 "Observaciones"; #elif L==4 "Plus d'informations"; #elif L==5 "Observaciones"; // Okoteve traducción #elif L==6 "Maggiori informazioni"; #elif L==7 "Wiecej informacji"; #elif L==8 "Mais informação"; #endif const char *Txt_Log_in = #if L==0 "Iniciar sessió"; #elif L==1 "Anmelden"; #elif L==2 "Log in"; #elif L==3 "Iniciar sesión"; #elif L==4 "Entrer"; #elif L==5 "Terañemboguapy"; #elif L==6 "Inizia sessione"; #elif L==7 "Zaloguj się"; #elif L==8 "Entrar"; #endif const char *Txt_Log_out = #if L==0 "Tancar sessió"; #elif L==1 "Abmelden"; #elif L==2 "Log out"; #elif L==3 "Cerrar sesión"; #elif L==4 "Fermer session"; #elif L==5 "S&etilde;"; #elif L==6 "Chiudi sessione"; #elif L==7 "Wyloguj się"; #elif L==8 "Fechar sessão"; #endif const char *Txt_logged[Usr_NUM_SEXS] = { #if L==0 // Usr_SEX_UNKNOWN "identificado/a" // Necessita traduccio #elif L==1 "angemeldet" #elif L==2 "logged" #elif L==3 "identificado/a" #elif L==4 "connecté/e" #elif L==5 "identificado/a" // Okoteve traducción #elif L==6 "loggato/a" #elif L==7 "zalogowany" #elif L==8 "logado/a" #endif , #if L==0 // Usr_SEX_FEMALE "identificada" // Necessita traduccio #elif L==1 "angemeldet" #elif L==2 "logged" #elif L==3 "identificada" #elif L==4 "connectée" #elif L==5 "identificada" // Okoteve traducción #elif L==6 "loggata" #elif L==7 "zalogowana" #elif L==8 "logada" #endif , #if L==0 // Usr_SEX_MALE "identificado" // Necessita traduccio #elif L==1 "angemeldet" #elif L==2 "logged" #elif L==3 "identificado" #elif L==4 "connecté" #elif L==5 "identificado" // Okoteve traducción #elif L==6 "loggato" #elif L==7 "zalogowany" #elif L==8 "logado" #endif , #if L==0 // Usr_SEX_ALL "identificado/a" // Necessita traduccio #elif L==1 "angemeldet" #elif L==2 "logged" #elif L==3 "identificado/a" #elif L==4 "connecté/e" #elif L==5 "identificado/a" // Okoteve traducción #elif L==6 "loggato/a" #elif L==7 "zalogowani" #elif L==8 "logado/a" #endif }; const char *Txt_Logo = #if L==0 "Logo"; // Necessita traduccio #elif L==1 "Logo"; #elif L==2 "Logo"; #elif L==3 "Logo"; #elif L==4 "Logo"; #elif L==5 "Logo"; // Okoteve traducción #elif L==6 "Logo"; #elif L==7 "Logo"; #elif L==8 "Logotipo"; #endif const char *Txt_Mail_domain_X_removed = // Warning: it is very important to include %s in the following sentences #if L==0 "Dominio de correo %s eliminado."; // Necessita traduccio #elif L==1 "Mail-Domäne %s entfernt."; #elif L==2 "Mail domain %s removed."; #elif L==3 "Dominio de correo %s eliminado."; #elif L==4 "Mail domain %s removed."; // Besoin de traduction #elif L==5 "Dominio de correo %s eliminado."; // Okoteve traducción #elif L==6 "Campo mail %s rimosso."; #elif L==7 "Domeny poczty %s usuniete."; #elif L==8 "Mail domain %s removed."; // Necessita de tradução #endif const char *Txt_Mail_domains_allowed_for_notifications = #if L==0 "Dominios de correo permitidos para notificaciones"; // Necessita traduccio #elif L==1 "Mail-Domänen, an die Benachrichtigungen gesendet werden können"; #elif L==2 "Mail domains allowed for notifications"; #elif L==3 "Dominios de correo permitidos para notificaciones"; #elif L==4 "Mail domains allowed for notifications"; // Besoin de traduction #elif L==5 "Dominios de correo permitidos para notificaciones"; // Okoteve traducción #elif L==6 "Campo mail permesso per notifiche"; #elif L==7 "Mail domen dozwolone powiadomien"; #elif L==8 "Mail domains allowed for notifications"; // Necessita de tradução #endif const char *Txt_MAIL_DOMAIN_HELP_ORDER[3] = { #if L==0 "Ordenar por dominio de correo" // Necessita traduccio #elif L==1 "Nach Mail-Domäne sortieren" #elif L==2 "Sort by mail domain" #elif L==3 "Ordenar por dominio de correo" #elif L==4 "Trier par domaine de messagerie" #elif L==5 "Ordenar por dominio de correo" // Okoteve traducción #elif L==6 "Ordina per campo mail" #elif L==7 "Sortuj wedlug domeny poczty" #elif L==8 "Classificar por domínio de email" #endif , #if L==0 "Ordenar por información" // Necessita traduccio #elif L==1 "Nach Information sortieren" #elif L==2 "Sort by information" #elif L==3 "Ordenar por información" #elif L==4 "Trier par information" #elif L==5 "Ordenar por información" // Okoteve traducción #elif L==6 "Ordina per informazione" #elif L==7 "Sortuj wedlug informacji" #elif L==8 "Classificar por informação" #endif , #if L==0 "Ordenar por nº de usuarios" // Necessita traduccio #elif L==1 "Nach Anzahl der Benutzer sortieren" #elif L==2 "Sort by no. of users" #elif L==3 "Ordenar por nº de usuarios" #elif L==4 "Trier par nombre d'utilisateurs" #elif L==5 "Ordenar por nº de usuarios" // Okoteve traducción #elif L==6 "Ordina per numero di utenti" #elif L==7 "Sortuj wedlug numerow uzytkownikow" #elif L==8 "Classificar por nº de utilizadores" #endif }; const char *Txt_MAIL_DOMAIN_ORDER[3] = { #if L==0 "Domini de correu" #elif L==1 "Mail-Domäne" #elif L==2 "Mail domain" #elif L==3 "Dominio de correo" #elif L==4 "Domaine de messagerie" #elif L==5 "Dominio de correo" // Okoteve traducción #elif L==6 "Campo mail" #elif L==7 "Domeny poczty" #elif L==8 "Domínio de email" #endif , #if L==0 "Informació" #elif L==1 "Information" #elif L==2 "Information" #elif L==3 "Información" #elif L==4 "Information" #elif L==5 "Información" // Okoteve traducción #elif L==6 "Informazione" #elif L==7 "Informacja" #elif L==8 "Informação" #endif , #if L==0 "Usuaris" #elif L==1 "Benutzer" #elif L==2 "Users" #elif L==3 "Usuarios" #elif L==4 "Utilisateurs" #elif L==5 "Usuarios" // Okoteve traducción #elif L==6 "Utenti" #elif L==7 "Uzytkownikow" #elif L==8 "Utilizadores" #endif }; const char *Txt_Mandatory_enrollment = // (to a type of group) #if L==0 "¿Adscripción obligatoria?"; // Necessita traduccio #elif L==1 "Obligatorische beitreten?"; #elif L==2 "Mandatory enrollment?"; #elif L==3 "¿Adscripción obligatoria?"; #elif L==4 "Inscription obligatoire?"; #elif L==5 "¿Adscripción obligatoria?"; // Okoteve traducción #elif L==6 "Iscrizione obbligatoria?"; #elif L==7 "Obowiazkowa rejestracja?"; #elif L==8 "Inscrição obrigatória?"; #endif const char *Txt_Mandatory_rules_to_compose_messages = #if L==0 "Normas obligatorias al redactar mensajes (netiquette)"; // Necessita traduccio #elif L==1 "Verbindliche Regeln zum Verfassen von Nachrichten (Netiquette)"; #elif L==2 "Mandatory rules to compose messages (netiquette)"; #elif L==3 "Normas obligatorias al redactar mensajes (netiquette)"; #elif L==4 "R&wgrave;gles impératives de composer des messages (netiquette)"; #elif L==5 "Normas obligatorias al redactar mensajes (netiquette)"; // Okoteve traducción #elif L==6 "Norme obbligatorie per comporre messaggi (netiquette)"; #elif L==7 "Przepisy bezwzglednie obowiazujace do redagowania wiadomosci (netykieta)"; #elif L==8 "Regras obrigatórias para compor mensagens (netiquette)"; #endif const char *Txt_Mark_all_notifications_as_read = #if L==0 "Marca totes les notificacions com llegides"; #elif L==1 "Markieren Sie alle Anmeldungen als gelesen"; #elif L==2 "Mark all notifications as read"; #elif L==3 "Marcar todas las notificaciones como leídas"; #elif L==4 "Marquer tous les notifications comme lus"; #elif L==5 "Marcar todas las notificaciones como leídas"; // Okoteve traducción #elif L==6 "Segnare tutte le notifiche come gi` letti"; #elif L==7 "Mark all notifications as read"; // Potrzebujesz tlumaczenie #elif L==8 "Marcar todas as notificações como lidas"; #endif const char *Txt_Marks_management_zone = #if L==0 "Zona d'administració de qualificacions"; #elif L==1 "Bewertungs-Verwaltung"; #elif L==2 "Marks management area"; #elif L==3 "Zona de administración de calificaciones"; #elif L==4 "Zone de gestion de notes"; #elif L==5 "Zona de administración de calificaciones"; // Okoteve traducción #elif L==6 "Area di gestione dei risultati"; #elif L==7 "Obszar zarzadzania znaków"; #elif L==8 "Zona de gestão de notas"; #endif const char *Txt_marks_management_zone = #if L==0 "zona de administración de calificaciones"; // Necessita traduccio #elif L==1 "Bewertungs-Verwaltung"; #elif L==2 "marks management area"; #elif L==3 "zona de administración de calificaciones"; #elif L==4 "zone de gestion de notes"; #elif L==5 "zona de administración de calificaciones"; // Okoteve traducción #elif L==6 "area di gestione dei risultati"; #elif L==7 "obszar zarzadzania znaków"; #elif L==8 "zona de gestão de notas"; #endif const char *Txt_Marks_zone = #if L==0 "Zona de qualificacions"; #elif L==1 "Bewertungs-Bereich"; #elif L==2 "Marks area"; #elif L==3 "Zona de calificaciones"; #elif L==4 "Zone de notes"; #elif L==5 "Zona de calificaciones"; // Okoteve traducción #elif L==6 "Area risultati"; #elif L==7 "Powierzchnia znaków"; #elif L==8 "Zona de notas"; #endif const char *Txt_Materials = #if L==0 "Materiales"; // Necessita traduccio #elif L==1 "Material"; #elif L==2 "Materials"; #elif L==3 "Materiales"; #elif L==4 "Matériaux"; #elif L==5 "Materiales"; // Okoteve traducción #elif L==6 "Materiale"; #elif L==7 "Materialy"; #elif L==8 "Materiais"; #endif const char *Txt_Max_levels = #if L==0 "Máx. niveles"; // Necessita traduccio #elif L==1 "Max. Ebenen"; #elif L==2 "Max. levels"; #elif L==3 "Máx. niveles"; #elif L==4 "Max. niveaux"; #elif L==5 "Máx. niveles"; // Okoteve traducción #elif L==6 "Max. livelli"; #elif L==7 "Max. poziomów"; #elif L==8 "Máx. níveis"; #endif const char *Txt_Max_BR_students = #if L==0 "Màxim
d'estud."; #elif L==1 "Max.
Stud."; #elif L==2 "Max.
stud."; #elif L==3 "Máx.
estud."; #elif L==4 "Max.
étud."; #elif L==5 "Máx.
estud."; // Okoteve traducción #elif L==6 "Max.
stud."; #elif L==7 "Max.
stud."; #elif L==8 "Máx.
estud."; #endif const char *Txt_maximum = #if L==0 "máximo"; // Necessita traduccio #elif L==1 "Maximum"; #elif L==2 "maximum"; #elif L==3 "máximo"; #elif L==4 "maximum"; #elif L==5 "máximo"; // Okoteve traducción #elif L==6 "massimo"; #elif L==7 "maksimum"; #elif L==8 "máximo"; #endif const char *Txt_MENU_BR[Act_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = { // TabUnk ***************************************************** { NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, }, { // TabSys ***************************************************** // ActSysReqSch #if L==0 "Cercar" #elif L==1 "Suchen" #elif L==2 "Search" #elif L==3 "Buscar" #elif L==4 "Chercher" #elif L==5 "Heka" #elif L==6 "Cercare" #elif L==7 "Szukaj" #elif L==8 "Procurar" #endif , // ActSeeCty #if L==0 "Països" #elif L==1 "Länder" #elif L==2 "Countries" #elif L==3 "Países" #elif L==4 "Pays" #elif L==5 "Tetã" #elif L==6 "Paesi" #elif L==7 "Kraje" #elif L==8 "Países" #endif , // ActSeePen #if L==0 "Pendents" #elif L==1 "Anhängig" #elif L==2 "Pending" #elif L==3 "Pendientes" #elif L==4 "En attente" #elif L==5 "Pendientes" // Okoteve traducción #elif L==6 "In sospeso" #elif L==7 "Oczekujący" #elif L==8 "Pendentes" #endif , // ActReqRemOldCrs #if L==0 "Eliminar assig.
antics" #elif L==1 "Frühere
Veranstaltungen
entfernen" #elif L==2 "Eliminate
old courses" #elif L==3 "Eliminar asig.
antiguas" #elif L==4 "Éliminer anciens
matières" #elif L==5 "Eliminar asig.
antiguas" // Okoteve traducción #elif L==6 "Rimuovere
vecchi corsi" #elif L==7 "Wyeleminuj
starych kursów" #elif L==8 "Eliminar antigas
disciplinas" #endif , // ActSeeDegTyp #if L==0 "Tipus
titulació" #elif L==1 "Abschlussarten" #elif L==2 "Degree
types" #elif L==3 "Tipos
titulación" #elif L==4 "Types
étude" #elif L==5 "Arandurã
lája" #elif L==6 "Tipi
laurea" #elif L==7 "Typy
stopnia" #elif L==8 "Tipos
titulação" #endif , // ActSeeMai #if L==0 "Dominis
correu" #elif L==1 "Mail-
Domänen" #elif L==2 "Mail
domains" #elif L==3 "Dominios
correo" #elif L==4 "Domaines
messagerie" #elif L==5 "Dominios
correo" // Okoteve traducción #elif L==6 "Campi
mail" #elif L==7 "Mail
domen" #elif L==8 "Domínios
email" #endif , // ActSeeBan #if L==0 "Banners" #elif L==1 "Werbebanners" #elif L==2 "Banners" #elif L==3 "Banners" #elif L==4 "Banniéres" #elif L==5 "Banners" #elif L==6 "Banners" #elif L==7 "Banners" #elif L==8 "Banners" #endif , // ActSeeLnk #if L==0 "Enllaços" #elif L==1 "Links" #elif L==2 "Links" #elif L==3 "Enlaces" #elif L==4 "Liens" #elif L==5 "Ambuére
joaju" #elif L==6 "Links" #elif L==7 "Linki" #elif L==8 "Ligações" #endif , // ActLstPlg #if L==0 "Complements" #elif L==1 "Plugins" #elif L==2 "Plugins" #elif L==3 "Complementos" #elif L==4 "Plugins" #elif L==5 "Complementos" // Okoteve traducción #elif L==6 "Plugin" #elif L==7 "Pluginów" #elif L==8 "Plugins" #endif , // ActSetUp #if L==0 "Instal lar" #elif L==1 "Einrichten" #elif L==2 "Set up" #elif L==3 "Instalar" #elif L==4 "Installer" #elif L==5 "Instalar" // Okoteve traducción #elif L==6 "Setup" #elif L==7 "Konfiguracja" #elif L==8 "Instalar" #endif , NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, }, { // TabCty ***************************************************** // ActCtyReqSch #if L==0 "Cercar" #elif L==1 "Suchen" #elif L==2 "Search" #elif L==3 "Buscar" #elif L==4 "Chercher" #elif L==5 "Heka" #elif L==6 "Cercare" #elif L==7 "Szukaj" #elif L==8 "Procurar" #endif , // ActSeeCtyInf #if L==0 "Informació" #elif L==1 "Information" #elif L==2 "Information" #elif L==3 "Información" #elif L==4 "Information" #elif L==5 "Información" // Okoteve traducción #elif L==6 "Informazione" #elif L==7 "Informacja" #elif L==8 "Informação" #endif , // ActSeeIns #if L==0 "Institucions" #elif L==1 "Hochschulen" #elif L==2 "Institutions" #elif L==3 "Instituciones" #elif L==4 "Établissement" #elif L==5 "Mbo'ehao" #elif L==6 "Istituzioni" #elif L==7 "Instytucje" #elif L==8 "Instituções" #endif , NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, }, { // TabIns ***************************************************** // ActInsReqSch #if L==0 "Cercar" #elif L==1 "Suchen" #elif L==2 "Search" #elif L==3 "Buscar" #elif L==4 "Chercher" #elif L==5 "Heka" #elif L==6 "Cercare" #elif L==7 "Szukaj" #elif L==8 "Procurar" #endif , // ActSeeInsInf #if L==0 "Informació" #elif L==1 "Information" #elif L==2 "Information" #elif L==3 "Información" #elif L==4 "Information" #elif L==5 "Información" // Okoteve traducción #elif L==6 "Informazione" #elif L==7 "Informacja" #elif L==8 "Informação" #endif , // ActSeeCtr #if L==0 "Centres" #elif L==1 "Lehrinstitute" #elif L==2 "Centres" #elif L==3 "Centros" #elif L==4 "Centres" #elif L==5 "Mbo'ehao" #elif L==6 "Centri" #elif L==7 "Centra" #elif L==8 "Centros" #endif , // ActSeeDpt #if L==0 "Departaments" #elif L==1 "Abteilungen" #elif L==2 "Departments" #elif L==3 "Departamentos" #elif L==4 "Départements" #elif L==5 "Peh&etilde;" #elif L==6 "Dipartimenti" #elif L==7 "Wydziały" #elif L==8 "Departamentos" #endif , // ActSeePlc #if L==0 "Llocs" #elif L==1 "Standorte" #elif L==2 "Places" #elif L==3 "Lugares" #elif L==4 "Emplacements" #elif L==5 "Tenda" #elif L==6 "Località" #elif L==7 "Miejsca" #elif L==8 "Localizaçoes" #endif , // ActSeeHld #if L==0 "Dies festius" #elif L==1 "Feiertage" #elif L==2 "Holidays" #elif L==3 "Días festivos" #elif L==4 "Jours fériés" #elif L==5 "Arete" #elif L==6 "Vacanze" #elif L==7 "Noclegi" #elif L==8 "Férias" #endif , NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, }, { // TabCtr ***************************************************** // ActCtrReqSch #if L==0 "Cercar" #elif L==1 "Suchen" #elif L==2 "Search" #elif L==3 "Buscar" #elif L==4 "Chercher" #elif L==5 "Heka" #elif L==6 "Cercare" #elif L==7 "Szukaj" #elif L==8 "Procurar" #endif , // ActSeeCtrInf #if L==0 "Informació" #elif L==1 "Information" #elif L==2 "Information" #elif L==3 "Información" #elif L==4 "Information" #elif L==5 "Información" // Okoteve traducción #elif L==6 "Informazione" #elif L==7 "Informacja" #elif L==8 "Informação" #endif , // ActSeeDeg #if L==0 "Titulacions" #elif L==1 "Studiengang" #elif L==2 "Degrees" #elif L==3 "Titulaciones" #elif L==4 "Études" #elif L==5 "Arandurã" #elif L==6 "Lauree" #elif L==7 "Stopnie" #elif L==8 "Titulaçãos" #endif , NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, }, { // TabDeg ***************************************************** // ActSysReqSch #if L==0 "Cercar" #elif L==1 "Suchen" #elif L==2 "Search" #elif L==3 "Buscar" #elif L==4 "Chercher" #elif L==5 "Heka" #elif L==6 "Cercare" #elif L==7 "Szukaj" #elif L==8 "Procurar" #endif , // ActSeeDegInf #if L==0 "Informació" #elif L==1 "Information" #elif L==2 "Information" #elif L==3 "Información" #elif L==4 "Information" #elif L==5 "Información" // Okoteve traducción #elif L==6 "Informazione" #elif L==7 "Informacja" #elif L==8 "Informação" #endif , // ActSeeCrs #if L==0 "Assignatures" #elif L==1 "Veranstaltungen" #elif L==2 "Courses" #elif L==3 "Asignaturas" #elif L==4 "Matières" #elif L==5 "Mbo'esyry" #elif L==6 "Corsi" #elif L==7 "Kursów" #elif L==8 "Disciplinas" #endif , NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, }, { // TabCrs ***************************************************** // ActSysReqSch #if L==0 "Cercar" #elif L==1 "Suchen" #elif L==2 "Search" #elif L==3 "Buscar" #elif L==4 "Chercher" #elif L==5 "Heka" #elif L==6 "Cercare" #elif L==7 "Szukaj" #elif L==8 "Procurar" #endif , // ActSeeCrsInf #if L==0 "Informació" #elif L==1 "Information" #elif L==2 "Information" #elif L==3 "Información" #elif L==4 "Information" #elif L==5 "Información" // Okoteve traducción #elif L==6 "Informazione" #elif L==7 "Informacja" #elif L==8 "Informação" #endif , // ActSeeTchGui #if L==0 "Guia
docent" #elif L==1 "Hinweise zur
Veranstaltung" #elif L==2 "Teaching
guide" #elif L==3 "Guía
docente" #elif L==4 "Guide
pédagogique" #elif L==5 "Guía
docente" // Okoteve traducción #elif L==6 "Guida
didattica" #elif L==7 "Nauczanie
podrecznikowe" #elif L==8 "Guia
de ensino" #endif , // ActSeeSylLec #if L==0 "Programa
teoria" #elif L==1 "Studienplan
(Vorlesungen)" #elif L==2 "Syllabus
(lectures)" #elif L==3 "Programa
teoría" #elif L==4 "Plan
théorie" #elif L==5 "Programa
teoría" // Okoteve traducción #elif L==6 "Programma
teoria" #elif L==7 "Program
(wyklady)" #elif L==8 "Programa
teoria" #endif , // ActSeeSylPra #if L==0 "Programa
pràctiques" #elif L==1 "Studienplan
(Übungen)" #elif L==2 "Syllabus
(practicals)" #elif L==3 "Programa
prácticas" #elif L==4 "Plan
pratique" #elif L==5 "Programa
prácticas" // Okoteve traducción #elif L==6 "Programma
pratica" #elif L==7 "Program
(praktyczny)" #elif L==8 "Programa
prática" #endif , // ActSeeDoc #if L==0 "Documents" #elif L==1 "Dokumente-Bereich" #elif L==2 "Documents
area" #elif L==3 "Documentos" #elif L==4 "Documents" #elif L==5 "Kuatia" #elif L==6 "Documenti" #elif L==7 "Dokumenty
obszar" #elif L==8 "Documentos" #endif , // ActAdmCom #if L==0 "Arxius
compartits" #elif L==1 "Freigegebene
Dateien" #elif L==2 "Shared
files" #elif L==3 "Archivos
compartidos" #elif L==4 "Fichiers
partagés" #elif L==5 "Archivos
compartidos" // Okoteve traducción #elif L==6 "File
condivisi" #elif L==7 "Pliki
udostępnione" #elif L==8 "Arquivos
compartilhados" #endif , // ActSeeCal #if L==0 "Calendari" #elif L==1 "Kalender" #elif L==2 "Calendar" #elif L==3 "Calendario" #elif L==4 "Calendrier" #elif L==5 "Arapapaha" #elif L==6 "Calendario
del corso" #elif L==7 "Kalendarz" #elif L==8 "Calendário" #endif , // ActSeeCrsTimTbl #if L==0 "Horari" #elif L==1 "Stundenplan" #elif L==2 "Timetable" #elif L==3 "Horario" #elif L==4 "Horaire" #elif L==5 "Horario" // Okoteve traducción #elif L==6 "Orario" #elif L==7 "Plan
lekcji" #elif L==8 "Horário" #endif , // ActSeeBib #if L==0 "Bibliografia" #elif L==1 "Literatur" #elif L==2 "Bibliography" #elif L==3 "Bibliografía" #elif L==4 "Bibliographie" #elif L==5 "Aranduka-
purupyre" #elif L==6 "Bibliografia" #elif L==7 "Bibliografia" #elif L==8 "Bibliografia" #endif , // ActSeeFAQ #if L==0 "FAQ" #elif L==1 "FAQ" #elif L==2 "FAQ" #elif L==3 "FAQ" #elif L==4 "FAQ" #elif L==5 "FAQ" // Okoteve traducción #elif L==6 "FAQ" #elif L==7 "FAQ" #elif L==8 "FAQ" #endif , // ActSeeCrsLnk #if L==0 "Enllaços" #elif L==1 "Links" #elif L==2 "Links" #elif L==3 "Enlaces" #elif L==4 "Liens" #elif L==5 "Ambuére
joaju" #elif L==6 "Link" #elif L==7 "Linki" #elif L==8 "Ligações" #endif , NULL, NULL, NULL, NULL, NULL, NULL, NULL, }, { // TabAss ***************************************************** // ActSeeAss #if L==0 "Sistema
d'avaluació" #elif L==1 "Bewertungs-
System" #elif L==2 "Assessment
system" #elif L==3 "Sistema de
evaluación" #elif L==4 "Système
d'évaluation" #elif L==5 "Sistema de
evaluación" // Okoteve traducción #elif L==6 "Sistema di
valutazione" #elif L==7 "Oceny
system" #elif L==8 "Sistema de
avaliação" #endif , // ActSeeAsg #if L==0 "Activitats" #elif L==1 "Aufgaben" #elif L==2 "Assignments" #elif L==3 "Actividades" #elif L==4 "Activités" #elif L==5 "Taréa" #elif L==6 "Attività" #elif L==7 "Zadania" #elif L==8 "Atividades" #endif , // ActAdmAsgWrkUsr #if L==0 "Els meus
treballs" #elif L==1 "Eingereichte
Hausarbeiten" #elif L==2 "My
homework" #elif L==3 "Mis
trabajos" #elif L==4 "Mes
travaux" #elif L==5 "Che
tembiapo" #elif L==6 "Miei
lavori" #elif L==7 "Moje
zadanie domowe" #elif L==8 "Os meus
trabalhos" #endif , // ActReqAsgWrkCrs #if L==0 "Treballs
usuaris" #elif L==1 "Hausarbeiten
der Benutzer" #elif L==2 "Users'
homework" #elif L==3 "Trabajos
usuarios" #elif L==4 "Travails
utilisateurs" #elif L==5 "Trabajos
usuarios" // Okoteve traducción #elif L==6 "Lavori
utenti" #elif L==7 "Uzytkownicy
praca domowa" #elif L==8 "Trabalhos
utilizadores" #endif , // ActReqTst #if L==0 "Test" #elif L==1 "Test" #elif L==2 "Test" #elif L==3 "Test" #elif L==4 "Test" #elif L==5 "Test" // Okoteve traducción #elif L==6 "Test" #elif L==7 "Test" #elif L==8 "Teste" #endif , // ActReqSeeMyTstExa #if L==0 "Resultats
meus tests" #elif L==1 "Ergebnisse
meiner Tests" #elif L==2 "Results
my tests" #elif L==3 "Resultados
mis tests" #elif L==4 "Résultats
mes tests" #elif L==5 "Resultados
mis tests" // Okoteve traducción #elif L==6 "Risultati
miei test" #elif L==7 "Wyniki
moich testów" #elif L==8 "Resultados
meus testes" #endif , // ActReqSeeUsrTstExa #if L==0 "Resultats
tests usuaris" #elif L==1 "Ergebnisse
Benutzer Tests" #elif L==2 "Results
users tests" #elif L==3 "Resultados
tests usuarios" #elif L==4 "Résultats
tests utilis." #elif L==5 "Resultados
tests usuarios" // Okoteve traducción #elif L==6 "Risultati
test utenti" #elif L==7 "Wyniki
testów uzyt." #elif L==8 "Resultados
testes utiliz." #endif , // ActSeeExaAnn #if L==0 "Convocatòries
d'exàmens" #elif L==1 "Prüfungs-
Einberufungen" #elif L==2 "Announcements
of exams" #elif L==3 "Convocatorias
de exámenes" #elif L==4 "Convocations
à examens" #elif L==5 "Convocatorias
de exámenes"// Okoteve traducción #elif L==6 "Sessioni
d'esame" #elif L==7 "Ogloszenia
egzaminów" #elif L==8 "Chamadas
exames" #endif , // ActSeeMrk #if L==0 "Qualificacions" #elif L==1 "Bewertungen" #elif L==2 "Marks" #elif L==3 "Calificaciones" #elif L==4 "Notes" #elif L==5 "Calificaciones" // Okoteve traducción #elif L==6 "Risultati" #elif L==7 "Znaki" #elif L==8 "Notas" #endif , // ActSeeRecCrs #if L==0 "La meva fitxa
en assignat." #elif L==1 "Profil bei
Veranstaltung" #elif L==2 "My record for
this course" #elif L==3 "Mi ficha en
asignatura" #elif L==4 "Ma carte
dans matière" #elif L==5 "Mi ficha en
asignatura" // Okoteve traducción #elif L==6 "La mia scheda
per questo corso" #elif L==7 "Mój rekord dla
tego kursu" #elif L==8 "Meu cartão
em disciplina" #endif , NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, }, { // TabUsr ***************************************************** // ActReqSelGrp #if L==0 "Grups" #elif L==1 "Gruppen" #elif L==2 "Groups" #elif L==3 "Grupos" #elif L==4 "Groupes" #elif L==5 "Aty" #elif L==6 "Gruppi" #elif L==7 "Grupy" #elif L==8 "Grupos" #endif , // ActLstInv #if L==0 "Convidats" #elif L==1 "Eingeladen" #elif L==2 "Guests" #elif L==3 "Invitados" #elif L==4 "Invités" #elif L==5 "Invitados" // Okoteve traducción #elif L==6 "Ospiti" #elif L==7 "Zaproszenie" #elif L==8 "Convidados" #endif , // ActLstStd #if L==0 "Estudiants" #elif L==1 "Studenten" #elif L==2 "Students" #elif L==3 "Estudiantes" #elif L==4 "Étudiants" #elif L==5 "Estudiantes" // Okoteve traducción #elif L==6 "Studenti" #elif L==7 "Studentów" #elif L==8 "Estudantes" #endif , // ActSeeAtt #if L==0 "Control
d'assistència" #elif L==1 "Kontrolle der
Anwesenheit" #elif L==2 "Control of
attendance" #elif L==3 "Control de
asistencia" #elif L==4 "Contrôle de
présence" #elif L==5 "Control de
asistencia" // Okoteve traducción #elif L==6 "Controllo di
frequenza" #elif L==7 "Kontrola
frekwencji" #elif L==8 "Lista de
presença" #endif , // ActLstTch #if L==0 "Professors" #elif L==1 "Lehrkraft" #elif L==2 "Teachers" #elif L==3 "Profesores" #elif L==4 "Enseignants" #elif L==5 "Mbo'ehára" #elif L==6 "Professori" #elif L==7 "Nauczyciele" #elif L==8 "Professores" #endif , // ActLstAdm #if L==0 "Administradors" #elif L==1 "Verwalter" #elif L==2 "Administrators" #elif L==3 "Administradores" #elif L==4 "Administrateurs" #elif L==5 "Administradores" // Okoteve traducción #elif L==6 "Amministratori" #elif L==7 "Administratorzy" #elif L==8 "Administradores" #endif , // ActReqSignUp #if L==0 "Sol·licitar
inscripció" #elif L==1 "Registrierung
beantragen" #elif L==2 "Sign up" #elif L==3 "Solicitar
inscripción" #elif L==4 "Demander
inscription" #elif L==5 "Solicitar
inscripción" // Okoteve traducción #elif L==6 "Richiedere
iscrizione" #elif L==7 "Wniosku
rejestrację" #elif L==8 "Solicitar
inscrição" #endif , // ActSeeSignUpReq #if L==0 "Peticions
d'inscripció" #elif L==1 "Registrierungs-
anforderungen" #elif L==2 "Enrollment
requests" #elif L==3 "Peticiones
de inscripción" #elif L==4 "Demandes
d'inscription" #elif L==5 "Peticiones
de inscripción"// Okoteve traducción #elif L==6 "Richieste
di iscrizione" #elif L==7 "Żądania
rejestrowania" #elif L==8 "Solicitações
de inscrição" #endif , // ActReqMdfOneUsr #if L==0 "Administrar
un usuari" #elif L==1 "Verwalten
eines Benutzer" #elif L==2 "Administer
a user" #elif L==3 "Administrar
un usuario" #elif L==4 "Gérer un
utilisateur" #elif L==5 "Administrar
un usuario" // Okoteve traducción #elif L==6 "Gestire
un utente" #elif L==7 "Zarządzaj
użytkownika" #elif L==8 "Gerenciar um
utilizador" #endif , // ActReqMdfSevUsr #if L==0 "Administrar
usuaris" #elif L==1 "Verwalten
Benutzern" #elif L==2 "Administer
users" #elif L==3 "Administrar
usuarios" #elif L==4 "Gérer
utilisateurs" #elif L==5 "Administrar
usuarios" // Okoteve traducción #elif L==6 "Gestire
utenti" #elif L==7 "Zarządzaj
uzytkowników" #elif L==8 "Gerenciar
utilizadores" #endif , // ActLstCon #if L==0 "Connectats" #elif L==1 "Angemeldet" #elif L==2 "Connected" #elif L==3 "Conectados" #elif L==4 "Connectés" #elif L==5 "Conectados" // Okoteve traducción #elif L==6 "Connessi" #elif L==7 "Online" #elif L==8 "Conectados" #endif , NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, }, { // TabMsg ***************************************************** // ActSeeNtf #if L==0 "Notificacions" #elif L==1 "Anmeldungen" #elif L==2 "Notifications" #elif L==3 "Notificaciones" #elif L==4 "Notifications" #elif L==5 "Momarandu" #elif L==6 "Notifiche" #elif L==7 "Powiadomienia" #elif L==8 "Notificações" #endif , // ActSeeAnn #if L==0 "Anuncis
globals" #elif L==1 "Globale
Bekanntmachungen" #elif L==2 "Global
announcements" #elif L==3 "Anuncios
globales" #elif L==4 "Annonces
globales" #elif L==5 "Anuncios
globales" // Okoteve traducción #elif L==6 "Annunci
globali" #elif L==7 "Globalne
ogłoszenia" #elif L==8 "Anúncios
globais" #endif , // ActSeeNot #if L==0 "Avisos" #elif L==1 "Ankündigungen" #elif L==2 "Notices" #elif L==3 "Avisos" #elif L==4 "Avis" #elif L==5 "Marandu" #elif L==6 "Avvisi" #elif L==7 "Notatki" #elif L==8 "Avisos" #endif , // ActSeeFor #if L==0 "Fòrums" #elif L==1 "Foren" #elif L==2 "Forums" #elif L==3 "Foros" #elif L==4 "Forums" #elif L==5 "Foros" // Okoteve traducción #elif L==6 "Forum" #elif L==7 "Forum" #elif L==8 "Fóruns" #endif , // ActSeeChtRms #if L==0 "Xat" #elif L==1 "Chat" #elif L==2 "Chat" #elif L==3 "Chat" #elif L==4 "Chat" #elif L==5 "Ñomongeta" #elif L==6 "Chat" #elif L==7 "Chat" #elif L==8 "Chat" #endif , // ActReqMsgUsr #if L==0 "Escriure
missatge" #elif L==1 "Neue
Nachricht" #elif L==2 "New
message" #elif L==3 "Escribir
mensaje" #elif L==4 "Nouveau
message" #elif L==5 "Escribir
mensaje" // Okoteve traducción #elif L==6 "Nuovo
messaggio" #elif L==7 "Nowa
wiadomosc" #elif L==8 "Nova
mensagem" #endif , // ActSeeRcvMsg #if L==0 "Rebuts" #elif L==1 "Empfangene" #elif L==2 "Received" #elif L==3 "Recibidos" #elif L==4 "Reçus" #elif L==5 "Recibidos" // Okoteve traducción #elif L==6 "Ricevuti" #elif L==7 "Odebrane" #elif L==8 "Recebidas" #endif , // ActSeeSntMsg #if L==0 "Enviats" #elif L==1 "Gesendete" #elif L==2 "Sent" #elif L==3 "Enviados" #elif L==4 "Envoyés" #elif L==5 "Enviados" // Okoteve traducción #elif L==6 "Inviati" #elif L==7 "Wyslana" #elif L==8 "Enviadas" #endif , // ActLstBanUsr #if L==0 "Blocats" #elif L==1 "Verboten" #elif L==2 "Banned" #elif L==3 "Bloqueados" #elif L==4 "Bloqués" #elif L==5 "Bloqueados" // Okoteve traducción #elif L==6 "Vietati" #elif L==7 "Zakazane" #elif L==8 "Bloqueados" #endif , // ActMaiStd #if L==0 "Correu
electrònic" #elif L==1 "E-Mail" #elif L==2 "E-mail" #elif L==3 "Correo
electrónico" #elif L==4 "Courrier
électronique" #elif L==5 "Ñe'&etilde;veve" #elif L==6 "E-mail" #elif L==7 "E-mail" #elif L==8 "E-mail" #endif , NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, }, { // TabSta ***************************************************** // ActSeeAllSvy #if L==0 "Enquestes" #elif L==1 "Umfragen" #elif L==2 "Surveys" #elif L==3 "Encuestas" #elif L==4 "Sondages" #elif L==5 "Encuestas" // Okoteve traducción #elif L==6 "Sondaggi" #elif L==7 "Ankiety" #elif L==8 "Inquéritos" #endif , // ActReqUseGbl #if L==0 "Ús de
SWAD" #elif L==1 "Nutzung
von SWAD" #elif L==2 "Use of
SWAD" #elif L==3 "Uso de
SWAD" #elif L==4 "Utilisation
de SWAD" #elif L==5 "Uso de
SWAD" // Okoteve traducción #elif L==6 "Uso di
SWAD" #elif L==7 "Korzystanie z
SWAD" #elif L==8 "Utilização
de SWAD" #endif , // ActSeePhoDeg #if L==0 "Orla
titulacions" #elif L==1 "Mischbilder der
Studiengänge" #elif L==2 "Photos
of degrees" #elif L==3 "Orla
titulaciones" #elif L==4 "Photographie
études" #elif L==5 "Orla
titulaciones" // Okoteve traducción #elif L==6 "Foto
di laurea" #elif L==7 "Zdjecia
stopni" #elif L==8 "Fotografia
titulaçoes" #endif , // ActReqStaCrs #if L==0 "Indicadors
assignatures" #elif L==1 "Anzeigen
Veranstaltungen" #elif L==2 "Indicators
courses" #elif L==3 "Indicadores
asignaturas" #elif L==4 "Indicateurs
matières" #elif L==5 "Indicadores
asignaturas" // Okoteve traducción #elif L==6 "Indicatori
corsi" #elif L==7 "Wskaźniki
kursów" #elif L==8 "Indicadores
disciplinas" #endif , // ActReqAccCrs #if L==0 "Accessos
assignatura" #elif L==1 "Anmeldungen
bei Veranstaltung" #elif L==2 "Visits to
course" #elif L==3 "Accesos
asignatura" #elif L==4 "Visites
matière" #elif L==5 "Accesos
asignatura" // Okoteve traducción #elif L==6 "Accessi
corso" #elif L==7 "Odiwedzic
kursów" #elif L==8 "Visitas
disciplina" #endif , // ActReqAccGbl #if L==0 "Accessos
SWAD" #elif L==1 "Anmeldungen
bei SWAD" #elif L==2 "Logins to
SWAD" #elif L==3 "Accesos
SWAD" #elif L==4 "Visites
SWAD" #elif L==5 "Accesos
SWAD" // Okoteve traducción #elif L==6 "Accessi
SWAD" #elif L==7 "Logowanie sie do
SWAD" #elif L==8 "Visitas
SWAD" #endif , // ActLstClk #if L==0 "Últims
clics" #elif L==1 "Letzte
Klicks" #elif L==2 "Last
clicks" #elif L==3 "Últimos
clics" #elif L==4 "Dernière
clics" #elif L==5 "Últimos
clics" // Okoteve traducción #elif L==6 "Ultimi
clic" #elif L==7 "Ostatnich
kliknięć" #elif L==8 "Últimos
cliques" #endif , NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, }, { // TabPrf ***************************************************** // ActFrmLogIn #if L==0 "Sessió" #elif L==1 "Sitzung" #elif L==2 "Session" #elif L==3 "Sesión" #elif L==4 "Session" #elif L==5 "Sesión" // Okoteve traducción #elif L==6 "Sessione" #elif L==7 "Sesja" #elif L==8 "Sessão" #endif , // ActFrmUsrAcc #if L==0 "Compte" #elif L==1 "Benutzerkonto" #elif L==2 "Account" #elif L==3 "Cuenta" #elif L==4 "Compte" #elif L==5 "Cuenta" // Okoteve traducción #elif L==6 "Account" #elif L==7 "Konto" #elif L==8 "Conta" #endif , // ActReqSndNewPwd #if L==0 "Nova
contrasenya" #elif L==1 "Neues
Passwort" #elif L==2 "New
password" #elif L==3 "Nueva
contraseña" #elif L==4 "Nouveau
mot de passe" #elif L==5 "Nueva
contraseña" // Okoteve traducción #elif L==6 "Nuova
password" #elif L==7 "Nowe
hasło" #elif L==8 "Nova
senha" #endif , // ActFrmChgMyPwd #if L==0 "Contrasenya" #elif L==1 "Passwort" #elif L==2 "Password" #elif L==3 "Contraseña" #elif L==4 "Mot
de passe" #elif L==5 "Terañemi" #elif L==6 "Password" #elif L==7 "Hasło" #elif L==8 "Senha" #endif , // ActReqEdiRecCom #if L==0 "Fitxa" #elif L==1 "Profil" #elif L==2 "Record
card" #elif L==3 "Ficha" #elif L==4 "Carte" #elif L==5 "Ficha" // Okoteve traducción #elif L==6 "Scheda" #elif L==7 "Karta" #elif L==8 "Cartão" #endif , // ActReqMyPho #if L==0 "Foto" #elif L==1 "Foto" #elif L==2 "Photo" #elif L==3 "Foto" #elif L==4 "Photo" #elif L==5 "Ta'anga" #elif L==6 "Foto" #elif L==7 "Zdjęcie" #elif L==8 "Foto" #endif , // ActReqEdiMyIns #if L==0 "Institució" #elif L==1 "Hochschule" #elif L==2 "Institution" #elif L==3 "Institución" #elif L==4 "Établissement" #elif L==5 "Mbo'ehao" #elif L==6 "Istituzione" #elif L==7 "Instytucji" #elif L==8 "Institução" #endif , // ActReqEdiMyNet #if L==0 "Webs / xarxes" #elif L==1 "Webs / Netzwerke" #elif L==2 "Webs / networks" #elif L==3 "Webs / redes" #elif L==4 "Webs / réseaux" #elif L==5 "Webs / redes" // Okoteve traducción #elif L==6 "Webs / reti" #elif L==7 "Webs / sieci" #elif L==8 "Webs / redes" #endif , // ActEdiPrf #if L==0 "Preferències" #elif L==1 "Einstellungen" #elif L==2 "Preferences" #elif L==3 "Preferencias" #elif L==4 "Préférences" #elif L==5 "Mbohoryha" #elif L==6 "Preferenze" #elif L==7 "Preferencje" #elif L==8 "Preferências" #endif , // ActMyCrs #if L==0 "Assignatures" #elif L==1 "Veranstaltungen" #elif L==2 "Courses" #elif L==3 "Asignaturas" #elif L==4 "Matières" #elif L==5 "Mbo'esyry" #elif L==6 "Corsi" #elif L==7 "Kursów" #elif L==8 "Disciplinas" #endif , // ActSeeMyTimTbl #if L==0 "Horari" #elif L==1 "Stundenplan" #elif L==2 "Timetable" #elif L==3 "Horario" #elif L==4 "Horaire" #elif L==5 "Horario" // Okoteve traducción #elif L==6 "Orario" #elif L==7 "Plan
lekcji" #elif L==8 "Horário" #endif , // ActAdmBrf #if L==0 "Maletí" #elif L==1 "Aktentasche" #elif L==2 "Virtual
pendrive" #elif L==3 "Maletín" #elif L==4 "Porte-
documents" #elif L==5 "Maletín" // Okoteve traducción #elif L==6 "Penna USB" #elif L==7 "Pendrive
wirtualne" #elif L==8 "Pasta" #endif , // ActMFUAct #if L==0 "Accions
freqüents" #elif L==1 "Häufige
Aktionen" #elif L==2 "Frequent
actions" #elif L==3 "Acciones
frecuentes" #elif L==4 "Actions
fréquentes" #elif L==5 "Acciones
frecuentes" // Okoteve traducción #elif L==6 "Azioni
frequenti" #elif L==7 "Częste
działania" #elif L==8 "Ações
freqüentes" #endif , NULL, NULL, }, }; const char *Txt_MENU_NO_BR[Act_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = { { // TabUnk **************************************************** NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, }, { // TabSys ***************************************************** // ActSysReqSch #if L==0 "Cercar" #elif L==1 "Suchen" #elif L==2 "Search" #elif L==3 "Buscar" #elif L==4 "Chercher" #elif L==5 "Heka" #elif L==6 "Cercare" #elif L==7 "Szukaj" #elif L==8 "Procurar" #endif , // ActSeeCty #if L==0 "Països" #elif L==1 "Länder" #elif L==2 "Countries" #elif L==3 "Países" #elif L==4 "Pays" #elif L==5 "Tetã" #elif L==6 "Paesi" #elif L==7 "Kraje" #elif L==8 "Países" #endif , // ActSeePen #if L==0 "Pendents" #elif L==1 "Anhängig" #elif L==2 "Pending" #elif L==3 "Pendientes" #elif L==4 "En attente" #elif L==5 "Pendientes" // Okoteve traducción #elif L==6 "In sospeso" #elif L==7 "Oczekujący" #elif L==8 "Pendentes" #endif , // ActReqRemOldCrs #if L==0 "Eliminar assignatures antics" #elif L==1 "Frühere Veranstaltungen entfernen" #elif L==2 "Eliminate old courses" #elif L==3 "Eliminar asignaturas antiguas" #elif L==4 "Éliminer anciens matières" #elif L==5 "Eliminar asignaturas antiguas" // Okoteve traducción #elif L==6 "Rimuovere vecchi corsi" #elif L==7 "Wyeleminuj starych kursów" #elif L==8 "Eliminar antigas disciplinas" #endif , // ActSeeDegTyp #if L==0 "Tipus de titulació" #elif L==1 "Abschlussarten" #elif L==2 "Degree types" #elif L==3 "Tipos de titulación" #elif L==4 "Types d'étude" #elif L==5 "Arandurã lája" #elif L==6 "Tipi di laurea" #elif L==7 "Typy stopnia" #elif L==8 "Tipos de titulação" #endif , // ActSeeMai #if L==0 "Dominis correu" #elif L==1 "Mail-Domänen" #elif L==2 "Mail domains" #elif L==3 "Dominios correo" #elif L==4 "Domaines messagerie" #elif L==5 "Dominios correo" // Okoteve traducción #elif L==6 "Campi mail" #elif L==7 "Mail domen" #elif L==8 "Domínios email" #endif , // ActSeeBan #if L==0 "Banners" #elif L==1 "Werbebanners" #elif L==2 "Banners" #elif L==3 "Banners" #elif L==4 "Banniéres" #elif L==5 "Banners" #elif L==6 "Banners" #elif L==7 "Banners" #elif L==8 "Banners" #endif , // ActSeeLnk #if L==0 "Enllaços" #elif L==1 "Links" #elif L==2 "Links" #elif L==3 "Enlaces" #elif L==4 "Liens" #elif L==5 "Ambuére joaju" #elif L==6 "Link" #elif L==7 "Linki" #elif L==8 "Ligações" #endif , // ActLstPlg #if L==0 "Complements" #elif L==1 "Plugins" #elif L==2 "Plugins" #elif L==3 "Complementos" #elif L==4 "Plugins" #elif L==5 "Complementos" // Okoteve traducción #elif L==6 "Plugin" #elif L==7 "Pluginów" #elif L==8 "Plugins" #endif , // ActSetUp #if L==0 "Instal lar" #elif L==1 "Einrichten" #elif L==2 "Set up" #elif L==3 "Instalar" #elif L==4 "Installer" #elif L==5 "Instalar" // Okoteve traducción #elif L==6 "Setup" #elif L==7 "Set up" #elif L==8 "Instalar" #endif , NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, }, { // TabCty ***************************************************** // ActCtyReqSch #if L==0 "Cercar" #elif L==1 "Suchen" #elif L==2 "Search" #elif L==3 "Buscar" #elif L==4 "Chercher" #elif L==5 "Heka" #elif L==6 "Cercare" #elif L==7 "Szukaj" #elif L==8 "Procurar" #endif , // ActSeeCtyInf #if L==0 "Informació" #elif L==1 "Information" #elif L==2 "Information" #elif L==3 "Información" #elif L==4 "Information" #elif L==5 "Información" // Okoteve traducción #elif L==6 "Informazione" #elif L==7 "Informacja" #elif L==8 "Informação" #endif , // ActSeeIns #if L==0 "Institucions" #elif L==1 "Hochschulen" #elif L==2 "Institutions" #elif L==3 "Instituciones" #elif L==4 "Établissements" #elif L==5 "Mbo'ehao" #elif L==6 "Istituzioni" #elif L==7 "Instytucje" #elif L==8 "Instituções" #endif , NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, }, { // TabIns ***************************************************** // ActInsReqSch #if L==0 "Cercar" #elif L==1 "Suchen" #elif L==2 "Search" #elif L==3 "Buscar" #elif L==4 "Chercher" #elif L==5 "Heka" #elif L==6 "Cercare" #elif L==7 "Szukaj" #elif L==8 "Procurar" #endif , // ActSeeInsInf #if L==0 "Informació" #elif L==1 "Information" #elif L==2 "Information" #elif L==3 "Información" #elif L==4 "Information" #elif L==5 "Información" // Okoteve traducción #elif L==6 "Informazione" #elif L==7 "Informacja" #elif L==8 "Informação" #endif , // ActSeeCtr #if L==0 "Centres" #elif L==1 "Lehrinstitute" #elif L==2 "Centres" #elif L==3 "Centros" #elif L==4 "Centres" #elif L==5 "Mbo'ehao" #elif L==6 "Centri" #elif L==7 "Centra" #elif L==8 "Centros" #endif , // ActSeeDpt #if L==0 "Departaments" #elif L==1 "Abteilungen" #elif L==2 "Departments" #elif L==3 "Departamentos" #elif L==4 "Départements" #elif L==5 "Peh&etilde;" #elif L==6 "Dipartimenti" #elif L==7 "Wydziały" #elif L==8 "Departamentos" #endif , // ActSeePlc #if L==0 "Llocs" #elif L==1 "Standorte" #elif L==2 "Places" #elif L==3 "Lugares" #elif L==4 "Emplacements" #elif L==5 "Tenda" #elif L==6 "Località" #elif L==7 "Miejsca" #elif L==8 "Localizaçoes" #endif , // ActSeeHld #if L==0 "Dies festius" #elif L==1 "Feiertage" #elif L==2 "Holidays" #elif L==3 "Días festivos" #elif L==4 "Jours fériés" #elif L==5 "Arete" #elif L==6 "Giorni festivi" #elif L==7 "Noclegi" #elif L==8 "Férias" #endif , NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, }, { // TabCtr ***************************************************** // ActCtrReqSch #if L==0 "Cercar" #elif L==1 "Suchen" #elif L==2 "Search" #elif L==3 "Buscar" #elif L==4 "Chercher" #elif L==5 "Heka" #elif L==6 "Cercare" #elif L==7 "Szukaj" #elif L==8 "Procurar" #endif , // ActSeeCtrInf #if L==0 "Informació" #elif L==1 "Information" #elif L==2 "Information" #elif L==3 "Información" #elif L==4 "Information" #elif L==5 "Información" // Okoteve traducción #elif L==6 "Informazione" #elif L==7 "Informacja" #elif L==8 "Informação" #endif , // ActSeeDeg #if L==0 "Titulacions" #elif L==1 "Studiengang" #elif L==2 "Degrees" #elif L==3 "Titulaciones" #elif L==4 "Études" #elif L==5 "Arandurã" #elif L==6 "Lauree" #elif L==7 "Stopnie" #elif L==8 "Titulaçãos" #endif , NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, }, { // TabDeg ***************************************************** // ActDegReqSch #if L==0 "Cercar" #elif L==1 "Suchen" #elif L==2 "Search" #elif L==3 "Buscar" #elif L==4 "Chercher" #elif L==5 "Heka" #elif L==6 "Cercare" #elif L==7 "Szukaj" #elif L==8 "Procurar" #endif , // ActSeeDegInf #if L==0 "Informació" #elif L==1 "Information" #elif L==2 "Information" #elif L==3 "Información" #elif L==4 "Information" #elif L==5 "Información" // Okoteve traducción #elif L==6 "Informazione" #elif L==7 "Informacja" #elif L==8 "Informação" #endif , // ActSeeCrs #if L==0 "Assignatures" #elif L==1 "Veranstaltungen" #elif L==2 "Courses" #elif L==3 "Asignaturas" #elif L==4 "Matières" #elif L==5 "Mbo'esyry" #elif L==6 "Corsi" #elif L==7 "Kursów" #elif L==8 "Disciplinas" #endif , NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, }, { // TabCrs ***************************************************** // ActCtrReqSch #if L==0 "Cercar" #elif L==1 "Suchen" #elif L==2 "Search" #elif L==3 "Buscar" #elif L==4 "Chercher" #elif L==5 "Heka" #elif L==6 "Cercare" #elif L==7 "Szukaj" #elif L==8 "Procurar" #endif , // ActSeeCrsInf #if L==0 "Informació" #elif L==1 "Information" #elif L==2 "Information" #elif L==3 "Información" #elif L==4 "Information" #elif L==5 "Información" // Okoteve traducción #elif L==6 "Informazione" #elif L==7 "Informacja" #elif L==8 "Informação" #endif , // ActSeeTchGui #if L==0 "Guia docent" #elif L==1 "Hinweise zur Veranstaltung" #elif L==2 "Teaching guide" #elif L==3 "Guía docente" #elif L==4 "Guide pédagogique" #elif L==5 "Guía docente" // Okoteve traducción #elif L==6 "Guida didattica" #elif L==7 "Nauczanie przypomnienie" #elif L==8 "Guia de ensino" #endif , // ActSeeSylLec #if L==0 "Programa teoria" #elif L==1 "Studienplan (Vorlesungen)" #elif L==2 "Syllabus (lectures)" #elif L==3 "Programa teoría" #elif L==4 "Plan théorie" #elif L==5 "Programa teoría" // Okoteve traducción #elif L==6 "Programma teoria" #elif L==7 "Syllabus (wyklady)" #elif L==8 "Programa teoria" #endif , // ActSeeSylPra #if L==0 "Programa pràctiques" #elif L==1 "Studienplan (Übungen)" #elif L==2 "Syllabus (practicals)" #elif L==3 "Programa prácticas" #elif L==4 "Plan pratique" #elif L==5 "Programa prácticas" // Okoteve traducción #elif L==6 "Programma pratica" #elif L==7 "Syllabus (practicals)" #elif L==8 "Programa prática" #endif , // ActSeeDoc #if L==0 "Documents" #elif L==1 "Dokumente" #elif L==2 "Documents area" #elif L==3 "Documentos" #elif L==4 "Documents" #elif L==5 "Kuatia" #elif L==6 "Documenti" #elif L==7 "Obszar Dokumentów" #elif L==8 "Documentos" #endif , // ActAdmCom #if L==0 "Arxius compartits" #elif L==1 "Freigegebene Dateien" #elif L==2 "Shared files" #elif L==3 "Archivos compartidos" #elif L==4 "Fichiers partagés" #elif L==5 "Archivos compartidos" // Okoteve traducción #elif L==6 "File condivisi" #elif L==7 "Pliki udostępnione" #elif L==8 "Arquivos compartilhados" #endif , // ActSeeCal #if L==0 "Calendari" #elif L==1 "Kalender" #elif L==2 "Calendar" #elif L==3 "Calendario" #elif L==4 "Calendrier" #elif L==5 "Arapapaha" #elif L==6 "Calendario del corso" #elif L==7 "Kalendarz" #elif L==8 "Calendário" #endif , // ActSeeCrsTimTbl #if L==0 "Horari" #elif L==1 "Stundenplan" #elif L==2 "Timetable" #elif L==3 "Horario" #elif L==4 "Horaire" #elif L==5 "Horario" // Okoteve traducción #elif L==6 "Orario" #elif L==7 "Plan lekcji" #elif L==8 "Horário" #endif , // ActSeeBib #if L==0 "Bibliografia" #elif L==1 "Literatur" #elif L==2 "Bibliography" #elif L==3 "Bibliografía" #elif L==4 "Bibliographie" #elif L==5 "Arandukapurupyre" #elif L==6 "Bibliografia" #elif L==7 "Bibliografia" #elif L==8 "Bibliografia" #endif , // ActSeeFAQ #if L==0 "FAQ" // Necessita traduccio #elif L==1 "FAQ" #elif L==2 "FAQ" #elif L==3 "FAQ" #elif L==4 "FAQ" #elif L==5 "FAQ" // Okoteve traducción #elif L==6 "FAQ" #elif L==7 "FAQ" #elif L==8 "FAQ" #endif , // ActSeeCrsLnk #if L==0 "Enllaços" #elif L==1 "Links" #elif L==2 "Links" #elif L==3 "Enlaces" #elif L==4 "Liens" #elif L==5 "Ambuére joaju" #elif L==6 "Link" #elif L==7 "Linki" #elif L==8 "Ligações" #endif , NULL, NULL, NULL, NULL, NULL, NULL, NULL, }, { // TabAss ***************************************************** // ActSeeAss #if L==0 "Sistema d'avaluació" #elif L==1 "Bewertungs-System" #elif L==2 "Assessment system" #elif L==3 "Sistema de evaluación" #elif L==4 "Système d'évaluation" #elif L==5 "Sistema de evaluación" // Okoteve traducción #elif L==6 "Sistema di valutazione" #elif L==7 "System oceny" #elif L==8 "Sistema de avaliação" #endif , // ActSeeAsg #if L==0 "Activitats" #elif L==1 "Aufgaben" #elif L==2 "Assignments" #elif L==3 "Actividades" #elif L==4 "Activités" #elif L==5 "Taréa" #elif L==6 "Attività" #elif L==7 "Zadania" #elif L==8 "Atividades" #endif , // ActAdmAsgWrkUsr #if L==0 "Els meus treballs" #elif L==1 "Eingereichte Hausarbeiten" #elif L==2 "My submitted homework" #elif L==3 "Mis trabajos" #elif L==4 "Mes travaux" #elif L==5 "Che tembiapo" #elif L==6 "Miei lavori" #elif L==7 "My zlozone zadanie domowe" #elif L==8 "Os meus trabalhos" #endif , // ActReqAsgWrkCrs #if L==0 "Treballs usuaris" #elif L==1 "Hausarbeiten der Benutzer" #elif L==2 "Users' homework" #elif L==3 "Trabajos usuarios" #elif L==4 "Travails utilisateurs" #elif L==5 "Trabajos usuarios" // Okoteve traducción #elif L==6 "Lavori utenti" #elif L==7 "Uzytkowników domowych" #elif L==8 "Trabalhos utilizadores" #endif , // ActReqTst #if L==0 "Test" #elif L==1 "Test" #elif L==2 "Test" #elif L==3 "Test" #elif L==4 "Test" #elif L==5 "Test" // Okoteve traducción #elif L==6 "Test" #elif L==7 "Test" #elif L==8 "Teste" #endif , // ActReqSeeMyTstExa #if L==0 "Resultats dels meus tests" #elif L==1 "Ergebnisse meiner Tests" #elif L==2 "Results of my tests" #elif L==3 "Resultados de mis tests" #elif L==4 "Résultats de mes tests" #elif L==5 "Resultados de mis tests" // Okoteve traducción #elif L==6 "Risultati dei miei test" #elif L==7 "Wyniki moich testów" #elif L==8 "Resultados dos meus testes" #endif , // ActReqSeeUsrTstExa #if L==0 "Resultats tests usuaris" #elif L==1 "Ergebnisse Benutzer Tests" #elif L==2 "Results users tests" #elif L==3 "Resultados tests usuarios" #elif L==4 "Résultats tests utilisateurs" #elif L==5 "Resultados tests usuarios" // Okoteve traducción #elif L==6 "Risultati test utenti" #elif L==7 "Wyniki testów uzytkowników" #elif L==8 "Resultados testes utilizadores" #endif , // ActSeeExaAnn #if L==0 "Convocatòries d'exàmens" #elif L==1 "Prüfungsaufrufe" #elif L==2 "Announcements of exams" #elif L==3 "Convocatorias de exámenes" #elif L==4 "Convocations à examens" #elif L==5 "Convocatorias de exámenes" // Okoteve traducción #elif L==6 "Appelli d'esame" #elif L==7 "Ogloszenia egzaminów" #elif L==8 "Chamadas exames" #endif , // ActSeeMrk #if L==0 "Qualificacions" #elif L==1 "Bewertungen" #elif L==2 "Marks" #elif L==3 "Calificaciones" #elif L==4 "Notes" #elif L==5 "Calificaciones" // Okoteve traducción #elif L==6 "Risultati" #elif L==7 "Marks" #elif L==8 "Notas" #endif , // ActSeeRecCrs #if L==0 "La meva fitxa en assignat." #elif L==1 "Profil bei Veranstaltung" #elif L==2 "My record for this course" #elif L==3 "Mi ficha en asignatura" #elif L==4 "Ma carte dans matière" #elif L==5 "Mi ficha en asignatura" // Okoteve traducción #elif L==6 "La mia scheda per questo corso" #elif L==7 "Mój rekord na ten kurs" #elif L==8 "Meu cartão em disciplina" #endif , NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, }, { // TabUsr ***************************************************** // ActReqSelGrp #if L==0 "Grups" #elif L==1 "Gruppen" #elif L==2 "Groups" #elif L==3 "Grupos" #elif L==4 "Groupes" #elif L==5 "Aty" #elif L==6 "Gruppi" #elif L==7 "Grupy" #elif L==8 "Grupos" #endif , // ActLstInv #if L==0 "Convidats" #elif L==1 "Eingeladen" #elif L==2 "Guests" #elif L==3 "Invitados" #elif L==4 "Invités" #elif L==5 "Invitados" // Okoteve traducción #elif L==6 "Ospiti" #elif L==7 "Zaproszenie" #elif L==8 "Convidados" #endif , // ActLstStd #if L==0 "Estudiants" #elif L==1 "Studenten" #elif L==2 "Students" #elif L==3 "Estudiantes" #elif L==4 "Étudiants" #elif L==5 "Estudiantes" // Okoteve traducción #elif L==6 "Studenti" #elif L==7 "Studentów" #elif L==8 "Estudantes" #endif , // ActSeeAtt #if L==0 "Control d'assistència" #elif L==1 "Kontrolle der Anwesenheit" #elif L==2 "Control of attendance" #elif L==3 "Control de asistencia" #elif L==4 "Contrôle de présence" #elif L==5 "Control de asistencia" // Okoteve traducción #elif L==6 "Controllo di frequenza" #elif L==7 "Kontrola frekwencji" #elif L==8 "Lista de presença" #endif , // ActLstTch #if L==0 "Professors" #elif L==1 "Lehrkraft" #elif L==2 "Teachers" #elif L==3 "Profesores" #elif L==4 "Enseignants" #elif L==5 "Mbo'ehára" #elif L==6 "Professori" #elif L==7 "Nauczyciele" #elif L==8 "Professores" #endif , // ActLstAdm #if L==0 "Administradors" #elif L==1 "Verwalter" #elif L==2 "Administrators" #elif L==3 "Administradores" #elif L==4 "Administrateurs" #elif L==5 "Administradores" // Okoteve traducción #elif L==6 "Amministratori" #elif L==7 "Administratorzy" #elif L==8 "Administradores" #endif , // ActReqSignUp #if L==0 "Sol·licitar inscripció" #elif L==1 "Registrierung beantragen" #elif L==2 "Sign up" #elif L==3 "Solicitar inscripción" #elif L==4 "Demander inscription" #elif L==5 "Solicitar inscripción" // Okoteve traducción #elif L==6 "Richiedere iscrizione" #elif L==7 "Wniosku rejestrację" #elif L==8 "Solicitar inscrição" #endif , // ActSeeSignUpReq #if L==0 "Peticions d'inscripció" #elif L==1 "Registrierungsanforderungen" #elif L==2 "Enrollment requests" #elif L==3 "Peticiones de inscripción" #elif L==4 "Demandes d'inscription" #elif L==5 "Peticiones de inscripción" // Okoteve traducción #elif L==6 "Richieste di iscrizione" #elif L==7 "Żądania rejestrowania" #elif L==8 "Solicitações de inscrição" #endif , // ActReqMdfOneUsr #if L==0 "Administrar un usuari" #elif L==1 "Verwalten eines Benutzer" #elif L==2 "Admin a user" #elif L==3 "Administrar un usuario" #elif L==4 "Gérer un utilisateur" #elif L==5 "Administrar un usuario" // Okoteve traducción #elif L==6 "Gestire un utente" #elif L==7 "Zarządzaj użytkownika" #elif L==8 "Gerenciar um utilizador" #endif , // ActReqMdfSevUsr #if L==0 "Administrar diversos usuaris" #elif L==1 "Verwalten mehreren Benutzern" #elif L==2 "Administer multiple users" #elif L==3 "Administrar varios usuarios" #elif L==4 "Gérer utilisateurs" #elif L==5 "Administrar varios usuarios" // Okoteve traducción #elif L==6 "Gestire multipli utenti" #elif L==7 "Zarządzaj uzytkowników" #elif L==8 "Gerenciar vários utilizadores" #endif , // ActLstCon #if L==0 "Connectats" #elif L==1 "Angemeldet" #elif L==2 "Connected" #elif L==3 "Conectados" #elif L==4 "Connectés" #elif L==5 "Conectados" // Okoteve traducción #elif L==6 "Connessi" #elif L==7 "Online" #elif L==8 "Conectados" #endif , NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, }, { // TabMsg ***************************************************** // ActSeeNtf #if L==0 "Notificacions" #elif L==1 "Anmeldungen" #elif L==2 "Notifications" #elif L==3 "Notificaciones" #elif L==4 "Notifications" #elif L==5 "Momarandu" #elif L==6 "Notifiche" #elif L==7 "Powiadomienia" #elif L==8 "Notificações" #endif , // ActSeeAnn #if L==0 "Anuncis globals" #elif L==1 "Globale Bekanntmachungen" #elif L==2 "Global announcements" #elif L==3 "Anuncios globales" #elif L==4 "Annonces globales" #elif L==5 "Anuncios globales" // Okoteve traducción #elif L==6 "Annunci globali" #elif L==7 "Globalne ogłoszenia" #elif L==8 "Anúncios globais" #endif , // ActSeeNot #if L==0 "Avisos" #elif L==1 "Ankündigungen" #elif L==2 "Notices" #elif L==3 "Avisos" #elif L==4 "Avis" #elif L==5 "Marandu" #elif L==6 "Avvisi" #elif L==7 "Ogloszenia" #elif L==8 "Avisos" #endif , // ActSeeFor #if L==0 "Fòrums" #elif L==1 "Foren" #elif L==2 "Forums" #elif L==3 "Foros" #elif L==4 "Forums" #elif L==5 "Foros" // Okoteve traducción #elif L==6 "Forum" #elif L==7 "Forum" #elif L==8 "Fóruns" #endif , // ActSeeChtRms #if L==0 "Xat" #elif L==1 "Chat" #elif L==2 "Chat" #elif L==3 "Chat" #elif L==4 "Chat" #elif L==5 "Ñomongeta" #elif L==6 "Chat" #elif L==7 "Chat" #elif L==8 "Chat" #endif , // ActReqMsgUsr #if L==0 "Escriure missatge" #elif L==1 "Neue Nachricht" #elif L==2 "New message" #elif L==3 "Escribir mensaje" #elif L==4 "Nouveau message" #elif L==5 "Escribir mensaje" // Okoteve traducción #elif L==6 "Nuovo messaggio" #elif L==7 "Nowych wiadomosci" #elif L==8 "Nova mensagem" #endif , // ActSeeRcvMsg #if L==0 "Rebuts" #elif L==1 "Empfangene" #elif L==2 "Received" #elif L==3 "Recibidos" #elif L==4 "Reçus" #elif L==5 "Recibidos" // Okoteve traducción #elif L==6 "Ricevuti" #elif L==7 "Odebrane" #elif L==8 "Recebidas" #endif , // ActSeeSntMsg #if L==0 "Enviats" #elif L==1 "Gesendete" #elif L==2 "Sent" #elif L==3 "Enviados" #elif L==4 "Envoyés" #elif L==5 "Enviados" // Okoteve traducción #elif L==6 "Inviati" #elif L==7 "Wysylane" #elif L==8 "Enviadas" #endif , // ActLstBanUsr #if L==0 "Blocats" #elif L==1 "Verboten" #elif L==2 "Banned" #elif L==3 "Bloqueados" #elif L==4 "Bloqués" #elif L==5 "Bloqueados" // Okoteve traducción #elif L==6 "Vietati" #elif L==7 "Zakazane" #elif L==8 "Bloqueados" #endif , // ActMaiStd #if L==0 "Correu electrònic" #elif L==1 "E-Mail" #elif L==2 "E-mail" #elif L==3 "Correo electrónico" #elif L==4 "Courrier électronique" #elif L==5 "Ñe'&etilde;veve" #elif L==6 "E-mail" #elif L==7 "E-mail" #elif L==8 "E-mail" #endif , NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, }, { // TabSta ********************************************************************** // ActSeeAllSvy #if L==0 "Enquestes" #elif L==1 "Umfragen" #elif L==2 "Surveys" #elif L==3 "Encuestas" #elif L==4 "Sondages" #elif L==5 "Encuestas" // Okoteve traducción #elif L==6 "Sondaggi" #elif L==7 "Ankiety" #elif L==8 "Inquéritos" #endif , // ActReqUseGbl #if L==0 "Ús de SWAD" #elif L==1 "Nutzung von SWAD" #elif L==2 "Use of SWAD" #elif L==3 "Uso de SWAD" #elif L==4 "Utilisation de SWAD" #elif L==5 "Uso de SWAD" // Okoteve traducción #elif L==6 "Uso di SWAD" #elif L==7 "Korzystanie z SWAD" #elif L==8 "Utilização de SWAD" #endif , // ActSeePhoDeg #if L==0 "Orla titulacions" #elif L==1 "Mischbilder der Studiengänge" #elif L==2 "Photos of degrees" #elif L==3 "Orla titulaciones" #elif L==4 "Photographie études" #elif L==5 "Orla titulaciones" // Okoteve traducción #elif L==6 "Foto di lauree" #elif L==7 "Zdjecia stopni" #elif L==8 "Fotografia titulaçoes" #endif , // ActReqStaCrs #if L==0 "Indicadors assignatures" #elif L==1 "Anzeigen Veranstaltungen" #elif L==2 "Indicators courses" #elif L==3 "Indicadores asignaturas" #elif L==4 "Indicateurs matières" #elif L==5 "Indicadores asignaturas" // Okoteve traducción #elif L==6 "Indicatori corsi" #elif L==7 "Wskaźniki kursów" #elif L==8 "Indicadores disciplinas" #endif , // ActReqAccCrs #if L==0 "Accessos assignatura" #elif L==1 "Anmeldungen bei Veranstaltung" #elif L==2 "Visits to course" #elif L==3 "Accesos asignatura" #elif L==4 "Visites matière" #elif L==5 "Accesos asignatura" // Okoteve traducción #elif L==6 "Accessi al corso" #elif L==7 "Wizyty w trakcie" #elif L==8 "Visitas disciplina" #endif , // ActReqAccGbl #if L==0 "Accessos SWAD" #elif L==1 "Anmeldungen bei SWAD" #elif L==2 "Logins to SWAD" #elif L==3 "Accesos SWAD" #elif L==4 "Visites SWAD" #elif L==5 "Accesos SWAD" // Okoteve traducción #elif L==6 "Accessi SWAD" #elif L==7 "Logowanie sie do SWAD" #elif L==8 "Visitas SWAD" #endif , // ActLstClk #if L==0 "Últims clics" #elif L==1 "Letzte Klicks" #elif L==2 "Last clicks" #elif L==3 "Últimos clics" #elif L==4 "Dernière clics" #elif L==5 "Últimos clics" // Okoteve traducción #elif L==6 "Ultimi clic" #elif L==7 "Ostatnich kliknięć" #elif L==8 "Últimos cliques" #endif , NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, }, { // TabPrf ***************************************************** // ActFrmLogIn #if L==0 "Sessió" #elif L==1 "Sitzung" #elif L==2 "Session" #elif L==3 "Sesión" #elif L==4 "Session" #elif L==5 "Sesión" // Okoteve traducción #elif L==6 "Sessione" #elif L==7 "Sesja" #elif L==8 "Sessão" #endif , // ActFrmUsrAcc #if L==0 "Compte" #elif L==1 "Benutzerkonto" #elif L==2 "Account" #elif L==3 "Cuenta" #elif L==4 "Compte" #elif L==5 "Cuenta" // Okoteve traducción #elif L==6 "Account" #elif L==7 "Konto" #elif L==8 "Conta" #endif , // ActReqSndNewPwd #if L==0 "Nova contrasenya" #elif L==1 "Neues Passwort" #elif L==2 "New password" #elif L==3 "Nueva contraseña" #elif L==4 "Nouveau mot de passe" #elif L==5 "Nueva contraseña" // Okoteve traducción #elif L==6 "Nuova password" #elif L==7 "Nowe hasło" #elif L==8 "Nova senha" #endif , // ActFrmChgMyPwd #if L==0 "Contrasenya" #elif L==1 "Passwort" #elif L==2 "Password" #elif L==3 "Contraseña" #elif L==4 "Mot de passe" #elif L==5 "Terañemi" #elif L==6 "Password" #elif L==7 "Hasło" #elif L==8 "Senha" #endif , // ActReqEdiRecCom #if L==0 "Fitxa" #elif L==1 "Profil" #elif L==2 "Record card" #elif L==3 "Ficha" #elif L==4 "Carte" #elif L==5 "Ficha" // Okoteve traducción #elif L==6 "Scheda" #elif L==7 "Karta" #elif L==8 "Cartão" #endif , // ActReqMyPho #if L==0 "Foto" #elif L==1 "Foto" #elif L==2 "Photo" #elif L==3 "Foto" #elif L==4 "Photo" #elif L==5 "Ta'anga" #elif L==6 "Foto" #elif L==7 "Zdjęcie" #elif L==8 "Foto" #endif , // ActReqEdiMyIns #if L==0 "Institució" #elif L==1 "Hochschule" #elif L==2 "Institution" #elif L==3 "Institución" #elif L==4 "Établissement" #elif L==5 "Mbo'ehao" #elif L==6 "Istituzione" #elif L==7 "Instytucji" #elif L==8 "Institução" #endif , // ActReqEdiMyNet #if L==0 "Webs / xarxes socials" #elif L==1 "Webs / Soziale Netzwerke" #elif L==2 "Webs / social networks" #elif L==3 "Webs / redes sociales" #elif L==4 "Webs / réseaux sociaux" #elif L==5 "Webs / redes sociales" // Okoteve traducción #elif L==6 "Webs / reti sociali" #elif L==7 "Webs / sieci społeczne" #elif L==8 "Webs / redes sociais" #endif , // ActEdiPrf #if L==0 "Preferències" #elif L==1 "Einstellungen" #elif L==2 "Preferences" #elif L==3 "Preferencias" #elif L==4 "Préférences" #elif L==5 "Mbohoryha" #elif L==6 "Preferenze" #elif L==7 "Preferencje" #elif L==8 "Preferências" #endif , // ActMyCrs #if L==0 "Assignatures" #elif L==1 "Veranstaltungen" #elif L==2 "Courses" #elif L==3 "Asignaturas" #elif L==4 "Matières" #elif L==5 "Mbo'esyry" #elif L==6 "Corsi" #elif L==7 "Kursów" #elif L==8 "Disciplinas" #endif , // ActSeeMyTimTbl #if L==0 "Horari" #elif L==1 "Stundenplan" #elif L==2 "Timetable" #elif L==3 "Horario" #elif L==4 "Horaire" #elif L==5 "Horario" // Okoteve traducción #elif L==6 "Orario" #elif L==7 "Plan lekcji" #elif L==8 "Horário" #endif , // ActAdmBrf #if L==0 "Maletí" #elif L==1 "Aktentasche" #elif L==2 "Virtual pendrive" #elif L==3 "Maletín" #elif L==4 "Portedocuments" #elif L==5 "Maletín" // Okoteve traducción #elif L==6 "Penna USB" #elif L==7 "Pendrive wirtualne" #elif L==8 "Pasta" #endif , // ActMFUAct #if L==0 "Accions freqüents" #elif L==1 "Häufige Aktionen" #elif L==2 "Frequent actions" #elif L==3 "Acciones frecuentes" #elif L==4 "Actions fréquentes" #elif L==5 "Acciones frecuentes" // Okoteve traducción #elif L==6 "Azioni frequenti" #elif L==7 "Częste działania" #elif L==8 "Ações freqüentes" #endif , NULL, NULL, } }; const char *Txt_MENU_SUBTITLE[Act_NUM_TABS][Act_MAX_OPTIONS_IN_MENU_PER_TAB] = { { // TabUnk **************************************************** NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, }, { // TabSys ***************************************************** // ActSysReqSch #if L==0 "Cerca d'assignatures, professors i documents" #elif L==1 "Suche Veranstaltungen, Lehrer und Dokumente" #elif L==2 "Search subjects, teachers and documents" #elif L==3 "Búsqueda de asignaturas, profesores y documentos" #elif L==4 "Rechercher des matières, des enseignants et des documents" #elif L==5 "Búsqueda de asignaturas, profesores y documentos"// Okoteve traducción #elif L==6 "Cercare corsi, professori e documenti" #elif L==7 "Szukaj przedmiotów, nauczycieli i dokumenty" #elif L==8 "Procurar disciplinas, professores e documentos" #endif , // ActSeeCty #if L==0 "Llista de països i del nombre d'usuaris de cada país" #elif L==1 "Länder" #elif L==2 "Countries" #elif L==3 "Lista de países y del número de usuarios de cada pais" #elif L==4 "Pays" #elif L==5 "Lista de países y del número de usuarios de cada pais"// Okoteve traducción #elif L==6 "Paesi" #elif L==7 "Kraje" #elif L==8 "Países" #endif , // ActSeePen #if L==0 "Institutions, centres, titulacions i assignatures pendents d'activar" #elif L==1 "Hochschulen, Lehrinstitute, Studiengang und anhängig Veranstaltungen" #elif L==2 "Institutions, centres, degrees and pending courses" #elif L==3 "Instituciones, centros, titulaciones y asignaturas pendientes de activar" #elif L==4 "Établissements, centres, études et matières en attente" #elif L==5 "Instituciones, centros, titulaciones y asignaturas pendientes de activar" // Okoteve traducción #elif L==6 "Istituzioni, centri, lauree e corsi in sospeso" #elif L==7 "Instytucje, centra, stopnie i kursõw oczekujący" #elif L==8 "Instituções, centros, titulações e disciplinas pendentes" #endif , // ActReqRemOldCrs #if L==0 "Eliminar assignatures antics" #elif L==1 "Frühere Veranstaltungen entfernen" #elif L==2 "Eliminate old courses" #elif L==3 "Eliminar asignaturas antiguas" #elif L==4 "Éliminer anciens matières" #elif L==5 "Eliminar asignaturas antiguas" // Okoteve traducción #elif L==6 "Rimuovere vecchi corsi" #elif L==7 "Wyeleminuj starych kursów" #elif L==8 "Eliminar antigas disciplinas" #endif , // ActSeeDegTyp #if L==0 "Tipus de titulació" #elif L==1 "Abschlussarten" #elif L==2 "Degree types" #elif L==3 "Tipos de titulación" #elif L==4 "Types d'étude" #elif L==5 "Arandurã lája" #elif L==6 "Tipi di laurea" #elif L==7 "Typy stopnia" #elif L==8 "Tipos de titulação" #endif , // ActSeeMai #if L==0 "Llista de dominis de correu permesos" " per a l'enviament de notificacions" #elif L==1 "Mail-Domänen für Benachrichtigungen" #elif L==2 "Mail domains for notifications" #elif L==3 "Lista de dominios de correo permitidos" " para el envío de notificaciones" #elif L==4 "Domaines de messagerie pour notifications" #elif L==5 "Lista de dominios de correo permitidos" " para el envío de notificaciones"// Okoteve traducción #elif L==6 "Campi mail per invio di notifiche" #elif L==7 "Domen Mail powiadomien" #elif L==8 "Domínios de email" " para notificações" #endif , // ActSeeBan #if L==0 "Llista de banners publicitaris" #elif L==1 "Werbebanners Liste" #elif L==2 "Banners list" #elif L==3 "Lista de banners publicitarios" #elif L==4 "Liste des banniéres publicitaires" #elif L==5 "Lista de banners publicitarios"// Okoteve traducción #elif L==6 "Lista di banners" #elif L==7 "Lista banery" #elif L==8 "Lista de banners publicitários" #endif , // ActSeeLnk #if L==0 "Llista d'enllaços institucionals" #elif L==1 "Offizielle Links Liste" #elif L==2 "Institutional links list" #elif L==3 "Lista de enlaces institucionales" #elif L==4 "Liens institutionnels" #elif L==5 "Lista de enlaces institucionales"// Okoteve traducción #elif L==6 "Link istituzionali" #elif L==7 "Instytucjonalne linki" #elif L==8 "Ligações institucionais" #endif , // ActLstPlg #if L==0 "Llista de complements (versió beta)" #elif L==1 "Plugin-Liste" #elif L==2 "List of plugins" #elif L==3 "Lista de complementos (versión beta)" #elif L==4 "Liste de plugins" #elif L==5 "Lista de complementos (versión beta)"// Okoteve traducción #elif L==6 "Lista di plugin" #elif L==7 "Lista pluginów" #elif L==8 "Lista de plugins" #endif , // ActSetUp #if L==0 "Instal lació de la plataforma (en proves)" #elif L==1 "Einrichten" #elif L==2 "Set up" #elif L==3 "Instalación de la plataforma (en pruebas)" #elif L==4 "Installer" #elif L==5 "Instalación de la plataforma (en pruebas)"// Okoteve traducción #elif L==6 "Setup" #elif L==7 "Set up" #elif L==8 "Instalar" #endif , NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, }, { // TabCty ***************************************************** // ActCtyReqSch #if L==0 "Cerca d'assignatures, professors i documents" #elif L==1 "Suche Veranstaltungen, Lehrer und Dokumente" #elif L==2 "Search subjects, teachers and documents" #elif L==3 "Búsqueda de asignaturas, profesores y documentos" #elif L==4 "Rechercher des matières, des enseignants et des documents" #elif L==5 "Búsqueda de asignaturas, profesores y documentos"// Okoteve traducción #elif L==6 "Cercare corsi, professori e documenti" #elif L==7 "Szukaj przedmiotów, nauczycieli i dokumenty" #elif L==8 "Procurar disciplinas, professores e documentos" #endif , // ActSeeCtyInf #if L==0 "Informació d'aquest país" #elif L==1 "Information dieses Land" #elif L==2 "Information on this country" #elif L==3 "Información sobre este país" #elif L==4 "Information de cet pays" #elif L==5 "Información sobre este país"// Okoteve traducción #elif L==6 "Informazione di questo paese" #elif L==7 "Informacja na ten kraj" #elif L==8 "Informação deste país" #endif , // ActSeeIns #if L==0 "Llista d'institucions" #elif L==1 "Hochschulen" #elif L==2 "List of institutions of the current country" #elif L==3 "Lista de instituciones (universidades, institutos...) de este país" #elif L==4 "Établissement" #elif L==5 "Lista de instituciones (universidades, institutos...) de este país"// Okoteve traducción #elif L==6 "Istituzioni" #elif L==7 "Instytucje" #elif L==8 "Instituções" #endif , NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, }, { // TabIns ***************************************************** // ActInsReqSch #if L==0 "Cerca d'assignatures, professors i documents" #elif L==1 "Suche Veranstaltungen, Lehrer und Dokumente" #elif L==2 "Search subjects, teachers and documents" #elif L==3 "Búsqueda de asignaturas, profesores y documentos" #elif L==4 "Rechercher des matières, des enseignants et des documents" #elif L==5 "Búsqueda de asignaturas, profesores y documentos"// Okoteve traducción #elif L==6 "Cercare corsi, professori e documenti" #elif L==7 "Szukaj przedmiotów, nauczycieli i dokumenty" #elif L==8 "Procurar disciplinas, professores e documentos" #endif , // ActSeeInsInf #if L==0 "Informació d'aquesta institució" #elif L==1 "Information dieses Hochschule" #elif L==2 "Information on this institution" #elif L==3 "Información sobre esta institución" #elif L==4 "Information de cet établissement" #elif L==5 "Información sobre esta institución"// Okoteve traducción #elif L==6 "Informazione di questa istituzione" #elif L==7 "Informacja na ten instytucja" #elif L==8 "Informação desta institução" #endif , // ActSeeCtr #if L==0 "Llista de centres" #elif L==1 "Lehrinstitute" #elif L==2 "List of centres of the current institution" #elif L==3 "Lista de centros (facultades, escuelas...) de esta institución" #elif L==4 "Centres" #elif L==5 "Lista de centros (facultades, escuelas...) de esta institución" // Okoteve traducción #elif L==6 "Centri" #elif L==7 "Centra" #elif L==8 "Centros" #endif , // ActSeeDpt #if L==0 "Llista de tots els departaments d'aquesta institució" #elif L==1 "Abteilungen" #elif L==2 "List all departments of this institution" #elif L==3 "Lista de todos los departamentos de esta institución" #elif L==4 "Départements" #elif L==5 "Lista de todos los departamentos de esta institución"// Okoteve traducción #elif L==6 "Dipartimenti" #elif L==7 "Wydziały" #elif L==8 "Departamentos" #endif , // ActSeePlc #if L==0 "Llista d'emplaçaments d'aquesta institució" #elif L==1 "Standorte" #elif L==2 "List of places of this institution" #elif L==3 "Lista de emplazamientos de esta institución" #elif L==4 "Emplacements" #elif L==5 "Lista de emplazamientos de esta institución"// Okoteve traducción #elif L==6 "Località" #elif L==7 "Miejsca" #elif L==8 "Localizaçoes" #endif , // ActSeeHld #if L==0 "Dies festius i períodes no lectius d'aquesta institució" #elif L==1 "Urlaub und vorlesungsfreie Zeit" #elif L==2 "Holidays and non school days of this institution" #elif L==3 "Días festivos y períodos no lectivos de esta institución" #elif L==4 "Jours fériés et sans école" #elif L==5 "Días festivos y períodos no lectivos de esta institución" // Okoteve traducción #elif L==6 "Festività e giorni senza lezione" #elif L==7 "Noclegi i innych dni zajec szkolnych" #elif L==8 "Feriados e dias sem escola" #endif , NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, }, { // TabCtr ***************************************************** // ActCtrReqSch #if L==0 "Cerca d'assignatures, professors i documents" #elif L==1 "Suche Veranstaltungen, Lehrer und Dokumente" #elif L==2 "Search subjects, teachers and documents" #elif L==3 "Búsqueda de asignaturas, profesores y documentos" #elif L==4 "Rechercher des matières, des enseignants et des documents" #elif L==5 "Búsqueda de asignaturas, profesores y documentos"// Okoteve traducción #elif L==6 "Cercare corsi, professori e documenti" #elif L==7 "Szukaj przedmiotów, nauczycieli i dokumenty" #elif L==8 "Procurar disciplinas, professores e documentos" #endif , // ActSeeCtrInf #if L==0 "Informació d'aquest centre" #elif L==1 "Information dieses Lehrinstitut" #elif L==2 "Information on this centre" #elif L==3 "Información sobre este centro" #elif L==4 "Information de cet centre" #elif L==5 "Información sobre este centro"// Okoteve traducción #elif L==6 "Informazione di questo centro" #elif L==7 "Informacja na ten centrum" #elif L==8 "Informação deste centro" #endif , // ActSeeDeg #if L==0 "Titulacions d'aquest centre" #elif L==1 "Studiengang" #elif L==2 "List of degrees of the current centre" #elif L==3 "Lista de titulaciones (carreras, másteres...) de este centro" #elif L==4 "Études" #elif L==5 "Lista de titulaciones (carreras, másteres...) de este centro"// Okoteve traducción #elif L==6 "Lauree" #elif L==7 "Stopnie" #elif L==8 "Titulaçãos" #endif , NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, }, { // TabDeg ***************************************************** // ActDegReqSch #if L==0 "Cerca d'assignatures, professors i documents" #elif L==1 "Suche Veranstaltungen, Lehrer und Dokumente" #elif L==2 "Search subjects, teachers and documents" #elif L==3 "Búsqueda de asignaturas, profesores y documentos" #elif L==4 "Rechercher des matières, des enseignants et des documents" #elif L==5 "Búsqueda de asignaturas, profesores y documentos"// Okoteve traducción #elif L==6 "Cercare corsi, professori e documenti" #elif L==7 "Szukaj przedmiotów, nauczycieli i dokumenty" #elif L==8 "Procurar disciplinas, professores e documentos" #endif , // ActSeeDegInf #if L==0 "Informació d'aquesta titulació" #elif L==1 "Information dieses Studiengang" #elif L==2 "Information on this degree" #elif L==3 "Información sobre esta titulación" #elif L==4 "Information de cet étude" #elif L==5 "Información sobre esta titulación"// Okoteve traducción #elif L==6 "Informazione di questa laurea" #elif L==7 "Informacja na ten stopień" #elif L==8 "Informação desta titulação" #endif , // ActSeeCrs #if L==0 "Assignatures d'aquesta titulació" #elif L==1 "Veranstaltungen in diesem Studiengang" #elif L==2 "List of ourses of the current degree" #elif L==3 "Lista de asignaturas de esta titulación" #elif L==4 "Matières dans cet étude" #elif L==5 "Lista de asignaturas de esta titulación"// Okoteve traducción #elif L==6 "Corsi di questa laurea" #elif L==7 "Kursów w tym stopień" #elif L==8 "Disciplinas nesta titulação" #endif , NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, }, { // TabCrs ***************************************************** // ActCrsReqSch #if L==0 "Cerca de professors i documents" #elif L==1 "Suche Lehrer und Dokumente" #elif L==2 "Search teachers and documents" #elif L==3 "Búsqueda de profesores y documentos" #elif L==4 "Rechercher des enseignants et des documents" #elif L==5 "Búsqueda de profesores y documentos"// Okoteve traducción #elif L==6 "Cercare professori e documenti" #elif L==7 "Szukaj nauczycieli i dokumenty" #elif L==8 "Procurar professores e documentos" #endif , // ActSeeCrsInf #if L==0 "Informació d'aquesta assignatura" #elif L==1 "Information dieses Veranstaltung" #elif L==2 "Information on this course" #elif L==3 "Información sobre esta asignatura" #elif L==4 "Information de cette matière" #elif L==5 "Información sobre esta asignatura"// Okoteve traducción #elif L==6 "Informazione di questo corso" #elif L==7 "Informacja na ten kurs" #elif L==8 "Informação desta disciplina" #endif , // ActSeeTchGui #if L==0 "Guia docent de l'assignatura" #elif L==1 "Hinweise zur Veranstaltung" #elif L==2 "Teaching guide" #elif L==3 "Guía docente de la asignatura" #elif L==4 "Guide pédagogique de la matière" #elif L==5 "Guía docente de la asignatura"// Okoteve traducción #elif L==6 "Guida didattica del corso" #elif L==7 "Nauczanie przypomnienie" #elif L==8 "Guia de ensino" #endif , // ActSeeSylLec #if L==0 "Programa de teoria de l'assignatura" #elif L==1 "Studienplan (Vorlesungen)" #elif L==2 "Syllabus (lectures)" #elif L==3 "Programa de teoría de la asignatura" #elif L==4 "Plan théorie" #elif L==5 "Programa de teoría de la asignatura"// Okoteve traducción #elif L==6 "Programma teoria" #elif L==7 "Syllabus (wyklady)" #elif L==8 "Programa teoria" #endif , // ActSeeSylPra #if L==0 "Programa de pràctiques de l'assignatura" #elif L==1 "Studienplan (Übungen)" #elif L==2 "Syllabus (practicals)" #elif L==3 "Programa de prácticas de la asignatura" #elif L==4 "Plan pratique" #elif L==5 "Programa de prácticas de la asignatura" // Okoteve traducción #elif L==6 "Programma pratica" #elif L==7 "Syllabus (practicals)" #elif L==8 "Programa prática" #endif , // ActSeeDoc #if L==0 "Documents de l'assignatura o d'un grup enviats per professors" #elif L==1 "Dokumente" #elif L==2 "Documents of the course or a group uploaded by teachers" #elif L==3 "Documentos de la asignatura o de un grupo subidos por profesores" #elif L==4 "Documents" #elif L==5 "Documentos de la asignatura o de un grupo subidos por profesores"// Okoteve traducción #elif L==6 "Area documenti" #elif L==7 "Obszar Dokumentów" #elif L==8 "Documentos" #endif , // ActAdmCom #if L==0 "Arxius compartits per professors i estudiants" " de l'assignatura o d'un grup" #elif L==1 "Freigegebene Dateien" #elif L==2 "Files shared by teachers and students" " of the course or group" #elif L==3 "Archivos compartidos por profesores y estudiantes" " de la asignatura o de un grupo" #elif L==4 "Fichiers partagés" #elif L==5 "Archivos compartidos por profesores y estudiantes" " de la asignatura o de un grupo"// Okoteve traducción #elif L==6 "File condivisi" #elif L==7 "Pliki udostępnione" #elif L==8 "Arquivos compartilhados" #endif , // ActSeeCal #if L==0 "Calendari acadèmic (els dies festius" " corresponen al lloc del centre seleccionada)" #elif L==1 "Kalender" #elif L==2 "Academic calendar" #elif L==3 "Calendario académico (los días festivos" " corresponden al lugar del centro seleccionado)" #elif L==4 "Calendrier" #elif L==5 "Calendario académico (los días festivos" " corresponden al lugar del centro seleccionado)"// Okoteve traducción #elif L==6 "Calendario del corso" #elif L==7 "Kalendarz akademicki" #elif L==8 "Calendário" #endif , // ActSeeCrsTimTbl #if L==0 "Horari de classes de l'assignatura" #elif L==1 "Stundenplan" #elif L==2 "Class timetable" #elif L==3 "Horario de clases de la asignatura" #elif L==4 "Horaire" #elif L==5 "Horario de clases de la asignatura"// Okoteve traducción #elif L==6 "Orario del corso" #elif L==7 "Harmonogram klasy" #elif L==8 "Horário" #endif , // ActSeeBib #if L==0 "Bibliografia relacionada amb els continguts de l'assignatura" #elif L==1 "Literatur" #elif L==2 "Bibliography" #elif L==3 "Bibliografía relacionada con los contenidos de la asignatura" #elif L==4 "Bibliographie" #elif L==5 "Bibliografía relacionada con los contenidos de la asignatura"// Okoteve traducción #elif L==6 "Bibliografia" #elif L==7 "Bibliografia" // Potrzebujesz tlumaczenie #elif L==8 "Bibliografia" #endif , // ActSeeFAQ #if L==0 "FAQ (preguntes freqüentment formulades i les seves respostes)" #elif L==1 "FAQ" #elif L==2 "FAQ (Frequently Asked Questions)" #elif L==3 "FAQ (preguntas frecuentemente formuladas y sus respuestas)" #elif L==4 "FAQ" #elif L==5 "FAQ (preguntas frecuentemente formuladas y sus respuestas)"// Okoteve traducción #elif L==6 "FAQ" #elif L==7 "FAQ (Frequently Asked Questions)" #elif L==8 "FAQ" #endif , // ActSeeCrsLnk #if L==0 "Enllaços relacionats amb els continguts de l'assignatura" #elif L==1 "Links" #elif L==2 "Links" #elif L==3 "Enlaces relacionados con los contenidos de la asignatura" #elif L==4 "Liens" #elif L==5 "Enlaces relacionados con los contenidos de la asignatura"// Okoteve traducción #elif L==6 "Link" #elif L==7 "Linki" #elif L==8 "Ligações" #endif , NULL, NULL, NULL, NULL, NULL, NULL, NULL, }, { // TabAss ***************************************************** // ActSeeAss #if L==0 "Sistema o criteris d'avaluació" " de l'estudiant en aquesta assignatura" #elif L==1 "Bewertungssystem" #elif L==2 "Assessment system" #elif L==3 "Sistema o criterios de evaluación" " del estudiante en esta asignatura" #elif L==4 "Système d'évaluation" #elif L==5 "Sistema o criterios de evaluación" " del estudiante en esta asignatura"// Okoteve traducción #elif L==6 "Sistema di valutazione" #elif L==7 "System oceny" #elif L==8 "Sistema de avaliação" #endif , // ActSeeAsg #if L==0 "Activitats obligatòries o recomanades en aquesta assignatura" #elif L==1 "Aufgaben" #elif L==2 "Assignments" #elif L==3 "Actividades obligatorias o recomendadas en esta asignatura" #elif L==4 "Activités" #elif L==5 "Actividades obligatorias o recomendadas en esta asignatura"// Okoteve traducción #elif L==6 "Attività" #elif L==7 "Zadania" #elif L==8 "Atividades" #endif , // ActAdmAsgWrkUsr #if L==0 "Els meus documents d'activitats i altres treballs en aquesta assignatura" #elif L==1 "Eingereichte Hausarbeiten" #elif L==2 "My homework" #elif L==3 "Mis documentos de actividades y otros trabajos en esta asignatura" #elif L==4 "Mes travaux" #elif L==5 "Mis documentos de actividades y otros trabajos en esta asignatura"// Okoteve traducción #elif L==6 "Miei lavori" #elif L==7 "Moje zadanie domowe" #elif L==8 "Os meus trabalhos" #endif , // ActReqAsgWrkCrs #if L==0 "Activitats i altres treballs enviats pels usuaris d'aquesta assignatura" #elif L==1 "Hausarbeiten der Benutzer" #elif L==2 "Users' homework" #elif L==3 "Actividades y otros trabajos enviados por los usuarios de esta asignatura" #elif L==4 "Travails d'utilisateurs" #elif L==5 "Actividades y otros trabajos enviados por los usuarios de esta asignatura"// Okoteve traducción #elif L==6 "Lavori di utenti" #elif L==7 "Uzytkowników domowych" #elif L==8 "Trabalhos de utilizadores" #endif , // ActReqTst #if L==0 "Test sobre els continguts d'aquesta assignatura" #elif L==1 "Test" #elif L==2 "Test on the contents of this course" #elif L==3 "Test sobre los contenidos de esta asignatura" #elif L==4 "Test sur le contenu de cette matière" #elif L==5 "Test sobre los contenidos de esta asignatura"// Okoteve traducción #elif L==6 "Test sui contenuti del corso" #elif L==7 "Test" #elif L==8 "Teste" #endif , // ActReqSeeMyTstExa #if L==0 "Resultats del meus tests" #elif L==1 "Ergebnisse meiner Tests" #elif L==2 "Results of my tests" #elif L==3 "Resultados de mis tests en esta asignatura" #elif L==4 "Résultats de mes tests" #elif L==5 "Resultados de mis tests en esta asignatura"// Okoteve traducción #elif L==6 "Risultati dei miei test" #elif L==7 "Wyniki moich testów" #elif L==8 "Resultados dos meus testes" #endif , // ActReqSeeUsrTstExa #if L==0 "Resultats tests usuaris" #elif L==1 "Ergebnisse Benutzer Tests" #elif L==2 "Results users tests" #elif L==3 "Resultados de tests de los usuarios de esta asignatura" #elif L==4 "Résultats tests utilisateurs" #elif L==5 "Resultados de tests de los usuarios de esta asignatura"// Okoteve traducción #elif L==6 "Risultati dei test utenti" #elif L==7 "Wyniki testów uzytkowników" #elif L==8 "Resultados testes utilizadores" #endif , // ActSeeExaAnn #if L==0 "Llistat de convocatòries d'exàmens d'aquesta assignatura" #elif L==1 "Prüfungsaufruf" #elif L==2 "Announcements of exams" #elif L==3 "Listado de convocatorias de exámenes de esta asignatura" #elif L==4 "Convocations à examens" #elif L==5 "Listado de convocatorias de exámenes de esta asignatura"// Okoteve traducción #elif L==6 "Appelli d'esame" #elif L==7 "Ogloszenia egzaminów" #elif L==8 "Chamadas para exames" #endif , // ActSeeMrk #if L==0 "Consulta individualitzada de qualificacions" " (cada estudiant només veu les seves qualificacions," " el professor veu la qualificació d'un estudiant seleccionat a l'atzar)" #elif L==1 "Bewertungen" #elif L==2 "Marks" #elif L==3 "Consulta individualizada de calificaciones" " (cada estudiante sólo ve sus calificaciones," " el profesor ve la calificación de un estudiante seleccionado al azar)" #elif L==4 "Notes" #elif L==5 "Consulta individualizada de calificaciones" " (cada estudiante sólo ve sus calificaciones," " el profesor ve la calificación de un estudiante seleccionado al azar)" // Okoteve traducción #elif L==6 "Risultati" #elif L==7 "Marks" #elif L==8 "Notas" #endif , // ActSeeRecCrs #if L==0 "La meva fitxa personalitzada per a aquesta assignatura" #elif L==1 "Profil bei Veranstaltung" #elif L==2 "My record for this course" #elif L==3 "Mi ficha personalizada para esta asignatura" #elif L==4 "Ma carte dans matière" #elif L==5 "Mi ficha personalizada para esta asignatura"// Okoteve traducción #elif L==6 "La mia scheda per questo corso" #elif L==7 "Mój rekord na ten kurs" #elif L==8 "Meu cartão em disciplina" #endif , NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, }, { // TabUsr ***************************************************** // ActReqSelGrp #if L==0 "Grups en aquesta assignatura" #elif L==1 "Gruppen" #elif L==2 "Groups" #elif L==3 "Grupos en esta asignatura" #elif L==4 "Groupes" #elif L==5 "Grupos en esta asignatura" // Okoteve traducción #elif L==6 "Gruppi" #elif L==7 "Grupy" #elif L==8 "Grupos" #endif , // ActLstInv #if L==0 "Llistat i fitxes dels convidats" #elif L==1 "Eingeladenverzeichnis und profile" #elif L==2 "Guests' list and records" #elif L==3 "Listado y fichas de los invitados" #elif L==4 "Liste et cartes d'invités" #elif L==5 "Listado y fichas de los invitados"// Okoteve traducción #elif L==6 "Elenco e schede ospiti" #elif L==7 "Listy i rekordy zaproszenie" #elif L==8 "Lista e cartões convidados" #endif , // ActLstStd #if L==0 "Llistat i fitxes dels estudiants" #elif L==1 "Studentenverzeichnis und profile" #elif L==2 "Students' list and records" #elif L==3 "Listado y fichas de los estudiantes" #elif L==4 "Liste et cartes d'étudiants" #elif L==5 "Listado y fichas de los estudiantes"// Okoteve traducción #elif L==6 "Elenco e schede studenti" #elif L==7 "Listy i rekordy studentów" #elif L==8 "Lista e cartões estudantes" #endif , // ActSeeAtt #if L==0 "Control d'assistència dels estudiants" " a les classes d'aquesta assignatura" #elif L==1 "Kontrolle der Studierenden Anwesenheit" #elif L==2 "Control of students' attendance" " to classes in this course" #elif L==3 "Control de asistencia de los estudiantes" " a las clases de esta asignatura" #elif L==4 "Contrôle de présence des étudiants" #elif L==5 "Control de asistencia de los estudiantes" " a las clases de esta asignatura"// Okoteve traducción #elif L==6 "Controllo di frequenza degli studenti" #elif L==7 "Kontrola frekwencji" #elif L==8 "Lista de presença" #endif , // ActLstTch #if L==0 "Llistat i fitxes de professors" #elif L==1 "Lehrkräfteverzeichnis und profile" #elif L==2 "Teachers' list and records" #elif L==3 "Listado y fichas de profesores" #elif L==4 "Liste et cartes d'enseignants" #elif L==5 "Listado y fichas de profesores"// Okoteve traducción #elif L==6 "Elenco e schede professori" #elif L==7 "Lista i rekordy nauczycieli" #elif L==8 "Lista e cartões professores" #endif , // ActLstAdm #if L==0 "Llista d'administradors de titulacions" " a les quals podeu consultar" " per crear assignatures o altres gestions" #elif L==1 "Liste der Verwalter" #elif L==2 "Administrators" #elif L==3 "Lista de administradores de titulaciones" " a los que puede consultar" " para crear asignaturas u otras gestiones" #elif L==4 "Liste administrateurs" #elif L==5 "Lista de administradores de titulaciones" " a los que puede consultar" " para crear asignaturas u otras gestiones"// Okoteve traducción #elif L==6 "Lista degli amministratori" #elif L==7 "Administratorzy" #elif L==8 "Lista administradores" #endif , // ActReqSignUp #if L==0 "Sol·licitar inscripció" #elif L==1 "Registrierung beantragen" #elif L==2 "Sign up in this course" #elif L==3 "Solicitar mi inscripción en esta asignatura" #elif L==4 "Demander inscription" #elif L==5 "Solicitar mi inscripción en esta asignatura"// Okoteve traducción #elif L==6 "Richiedere iscrizione" #elif L==7 "Wniosku rejestrację" #elif L==8 "Solicitar inscrição" #endif , // ActSeeSignUpReq #if L==0 "Peticions d'inscripció" #elif L==1 "Registrierungsanforderungen" #elif L==2 "Requests for enrollment in this course pending verification" #elif L==3 "Peticiones de inscripción pendientes de verificar" #elif L==4 "Demandes d'inscription" #elif L==5 "Peticiones de inscripción pendientes de verificar"// Okoteve traducción #elif L==6 "Richieste di iscrizione" #elif L==7 "Żądania rejestrowania" #elif L==8 "Solicitações de inscrição" #endif , // ActReqMdfOneUsr #if L==0 "Inscripció / o modificació /" " eliminación d'un usuari" #elif L==1 "Anmeldung / Änderung /" " Entfernen eines Benutzers" #elif L==2 "Enrollment / modification /" " removing of a user" #elif L==3 "Inscripción / modificación /" " eliminación de un usuario" #elif L==4 "Inscription / modification /" " suppression d'un utilisateur" #elif L==5 "Inscripción / modificación /" " eliminación de un usuario"// Okoteve traducción #elif L==6 "Iscrizione / modifica /" " rimozione di un utente" #elif L==7 "Rekrutacja / modyfikacja /" " usunięcie użytkownika" #elif L==8 "Inscrição / alteração /" " remoção de um utilizador" #endif , // ActReqMdfSevUsr #if L==0 "Inscripció / eliminación de diversos usuaris" #elif L==1 "Anmeldung / Entfernen von mehreren Benutzern" #elif L==2 "Enrollment / removing of multiple users" #elif L==3 "Inscripción / eliminación de varios usuarios" #elif L==4 "Inscription / suppression de plusieurs utilisateurs" #elif L==5 "Inscripción / eliminación de varios usuario"// Okoteve traducción #elif L==6 "Iscrizione / rimozione di utenti multipli" #elif L==7 "Rekrutacja / usunięcie użytkowników" #elif L==8 "Inscrição / remoção de vários utilizadores" #endif , // ActLstCon #if L==0 "Llista d'usuaris connectats en aquest moment" #elif L==1 "Angemeldet" #elif L==2 "Connected" #elif L==3 "Lista de usuarios conectados en este momento" #elif L==4 "Connectés" #elif L==5 "Lista de usuarios conectados en este momento"// Okoteve traducción #elif L==6 "Connessi" #elif L==7 "Online" #elif L==8 "Conectados" #endif , NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, }, { // TabMsg ***************************************************** // ActSeeNtf #if L==0 "Esdeveniments recents que han estat o seran notificats" #elif L==1 "Die jüngsten Ereignisse wurden oder werden benachrichtigt" #elif L==2 "Recent events that have been or will be notified" #elif L==3 "Eventos recientes que han sido o serán notificados" #elif L==4 "Les événements récents qui ont été ou seront avisés" #elif L==5 "Eventos recientes que han sido o serán notificados"// Okoteve traducción #elif L==6 "Recenti eventi che sono stati o saranno notificati" #elif L==7 "Ostatnie wydarzenia, które zostaly lub zostana powiadomieni" #elif L==8 "Os recentes acontecimentos que foram ou serão notificados" #endif , // ActSeeAnn #if L==0 "Anuncis globals mostrat en iniciar sessió" #elif L==1 "Globale Bekanntmachungen bei der Anmeldung sichtbar" #elif L==2 "Global announcements visible at login" #elif L==3 "Anuncios globales visibles al iniciar sesión" #elif L==4 "Annonces globales visibles lors de la connexion" #elif L==5 "Anuncios globales visibles al iniciar sesión" // Okoteve traducción #elif L==6 "Annunci globali visibili al login" #elif L==7 "Globalne ogłoszenia widoczne przy logowaniu" #elif L==8 "Anúncios globais visíveis no início da sessão" #endif , // ActSeeNot #if L==0 "Breus avisos relacionats amb aquesta assignatura," " visibles per qualsevol visitant, encara que no estigui identificat" #elif L==1 "Ankündigungen" #elif L==2 "Notices" #elif L==3 "Breves avisos relacionados con esta asignatura," " visibles por cualquier visitante, aunque no esté identificado" #elif L==4 "Avis" #elif L==5 "Breves avisos relacionados con esta asignatura," " visibles por cualquier visitante, aunque no esté identificado" // Okoteve traducción #elif L==6 "Avvisi" #elif L==7 "Ogloszenia" #elif L==8 "Avisos" #endif , // ActSeeFor #if L==0 "Fòrums de discussió, distribuïts" " segons la temàtica (escolliu el fòrum adequat)" #elif L==1 "Foren" #elif L==2 "Forums" #elif L==3 "Foros de discusión, distribuidos" " según la temática (elija el foro adecuado)" #elif L==4 "Forums" #elif L==5 "Foros de discusión, distribuidos" " según la temática (elija el foro adecuado)"// Okoteve traducción #elif L==6 "Forum" #elif L==7 "Forum" #elif L==8 "Fóruns" #endif , // ActSeeChtRms #if L==0 "Conversa en temps real amb altres usuaris" #elif L==1 "Chat" #elif L==2 "Chat" #elif L==3 "Conversación en tiempo real con otros usuarios" #elif L==4 "Chat" #elif L==5 "Conversación en tiempo real con otros usuarios" // Okoteve traducción #elif L==6 "Chat" #elif L==7 "Chat" #elif L==8 "Chat" #endif , // ActReqMsgUsr #if L==0 "Enviament d'un nou missatge privat a altres usuaris" #elif L==1 "Neue Nachricht" #elif L==2 "New message" #elif L==3 "Envío de un nuevo mensaje privado a otros usuarios" #elif L==4 "Nouveau message" #elif L==5 "Envío de un nuevo mensaje privado a otros usuarios"// Okoteve traducción #elif L==6 "Nuovo messaggio" #elif L==7 "Nowe wiadomosci" #elif L==8 "Nova mensagem" #endif , // ActSeeRcvMsg #if L==0 "Missatges privats rebuts d'altres usuaris" #elif L==1 "Empfangene Nachrichten" #elif L==2 "Messages received" #elif L==3 "Mensajes privados recibidos de otros usuarios" #elif L==4 "Messages reçus" #elif L==5 "Mensajes privados recibidos de otros usuarios" // Okoteve traducción #elif L==6 "Messaggi ricevuti" #elif L==7 "Wiadomości odebrane" #elif L==8 "Mensagens recebidas" #endif , // ActSeeSntMsg #if L==0 "Missatges privats enviats per mi a altres usuaris" #elif L==1 "Gesendete Nachrichten" #elif L==2 "Messages sent" #elif L==3 "Mensajes privados enviados por mí a otros usuarios" #elif L==4 "Messages envoyés" #elif L==5 "Mensajes privados enviados por mí a otros usuarios"// Okoteve traducción #elif L==6 "Messaggi inviati" #elif L==7 "Wiadomości odebrane" #elif L==8 "Mensagens enviadas" #endif , // ActLstBanUsr #if L==0 "Llista d'usuaris que no poden enviar missatges a vostè" #elif L==1 "Liste der Benutzer, die keine Nachrichten senden Sie können" #elif L==2 "List of users who can not send messages to you" #elif L==3 "Lista de usuarios que no pueden enviarle mensajes" #elif L==4 "Liste d'utilisateurs qui ne peuvent pas envoyer de messages à vous" #elif L==5 "Lista de usuarios que no pueden enviarle mensajes"// Okoteve traducción #elif L==6 "Elenco degli utenti che non possono inviare messaggi a voi" #elif L==7 "Zakazane nadawców" #elif L==8 "Lista de usuários que não podem enviar mensagens para você" #endif , // ActMaiStd #if L==0 "Creació d'un missatge de correu electrònic" " per enviar-lo a estudiants d'aquesta assignatura" " utilitzant el programa client de correu predeterminat en el meu sistema" #elif L==1 "E-Mail" #elif L==2 "E-mail" #elif L==3 "Creación de un mensaje de correo electrónico" " para enviarlo a estudiantes de esta asignatura" " usando el programa cliente de correo predeterminado en mi sistema" #elif L==4 "Courrier électronique" #elif L==5 "Creación de un mensaje de correo electrónico" " para enviarlo a estudiantes de esta asignatura" " usando el programa cliente de correo predeterminado en mi sistema"// Okoteve traducción #elif L==6 "E-mail" #elif L==7 "E-mail" #elif L==8 "E-mail" #endif , NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, }, { // TabSta ***************************************************** // ActSeeAllSvy #if L==0 "Enquestes anònimes" #elif L==1 "Umfragen" #elif L==2 "Surveys" #elif L==3 "Encuestas anónimas" #elif L==4 "Sondages" #elif L==5 "Encuestas anónimas" // Okoteve traducción #elif L==6 "Sondaggi" #elif L==7 "Ankiety" #elif L==8 "Inquéritos" #endif , // ActReqUseGbl #if L==0 "Grans nombres sobre l'ús actual de tota la plataforma," " o d'aquesta titulació o assignatura" #elif L==1 "Nutzung von SWAD" #elif L==2 "Use of SWAD" #elif L==3 "Grandes números sobre el uso actual de toda la plataforma," " o de esta titulación o asignatura" #elif L==4 "Utilisation de SWAD" #elif L==5 "Grandes números sobre el uso actual de toda la plataforma," " o de esta titulación o asignatura"// Okoteve traducción #elif L==6 "Uso di SWAD" #elif L==7 "Korzystanie z SWAD" #elif L==8 "Utilização de SWAD" #endif , // ActSeePhoDeg #if L==0 "Estadístiques del nombre d'estudiants en cada titulació" " representades per les fotos mitjana dels estudiants de cada titulació" #elif L==1 "Mischbilder der Studiengänge" #elif L==2 "Photos of degrees" #elif L==3 "Estadísticas del número de estudiantes en cada titulación" " representadas por las fotos promedio de los estudiantes de cada titulación" #elif L==4 "Photographie études" #elif L==5 "Estadísticas del número de estudiantes en cada titulación" " representadas por las fotos promedio de los estudiantes de cada titulación"// Okoteve traducción #elif L==6 "Foto di lauree" #elif L==7 "Zdjecia stopni" #elif L==8 "Fotografia titulaçoes" #endif , // ActReqStaCrs #if L==0 "Indicadors d'assignatures per al contracte-programa" #elif L==1 "Anzeigen von Veranstaltungen für den Vertrag Programm" #elif L==2 "Indicators of courses for the contract program" #elif L==3 "Indicadores de asignaturas para el contrato-programa" #elif L==4 "Indicateurs de matières pour le contrat-programme" #elif L==5 "Indicadores de asignaturas para el contrato-programa"// Okoteve traducción #elif L==6 "Indicatori di corsi per il contratto programma" #elif L==7 "Wskaźniki kursów dla umowy programu" #elif L==8 "Indicadores de disciplinas para o contrato programa" #endif , // ActReqAccCrs #if L==0 "Estadístiques d'accessos a aquesta assignatura" #elif L==1 "Anmeldungen bei Veranstaltung" #elif L==2 "Visits to course" #elif L==3 "Estadísticas de accesos a esta asignatura" #elif L==4 "Visites matière" #elif L==5 "Estadísticas de accesos a esta asignatura"// Okoteve traducción #elif L==6 "Accessi al corso" #elif L==7 "Wizyty w trakcie" #elif L==8 "Visitas disciplina" #endif , // ActReqAccGbl #if L==0 "Estadístiques d'accessos a tota la plataforma" #elif L==1 "Anmeldungen bei SWAD" #elif L==2 "Logins to SWAD" #elif L==3 "Estadísticas de accesos a toda la plataforma" #elif L==4 "Visites SWAD" #elif L==5 "Estadísticas de accesos a toda la plataforma"// Okoteve traducción #elif L==6 "Accessi SWAD" #elif L==7 "Logowanie sie do SWAD" #elif L==8 "Visitas SWAD" #endif , // ActLstClk #if L==0 "Últims clics en temps real" #elif L==1 "Letzte Klicks in Echtzeit" #elif L==2 "Last clicks in real time" #elif L==3 "Últimos clics en tiempo real" #elif L==4 "Dernière clics en temps réel" #elif L==5 "Últimos clics en tiempo real"// Okoteve traducción #elif L==6 "Ultimi clic in tempo reale" #elif L==7 "Ostatnie dwa kliknięcia w czasie rzeczywistym" #elif L==8 "Últimos cliques em tempo real" #endif , NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, }, { // TabPrf ***************************************************** // ActFrmLogIn #if L==0 "Rol en aquesta sessió" #elif L==1 "Rolle in dieser Sitzung" #elif L==2 "Role in this session" #elif L==3 "Rol en esta sesión" #elif L==4 "Rôle dans cette session" #elif L==5 "Rol en esta sesión" // Okoteve traducción #elif L==6 "Ruolo in questa sessione" #elif L==7 "Rola w tej sesji" #elif L==8 "Role nesta sessão" #endif , // ActFrmUsrAcc #if L==0 "Creació o edició del meu compte d'usuari" #elif L==1 "Erstellen oder Bearbeiten meinem Benutzerkonto" #elif L==2 "Create or edit my user account" #elif L==3 "Creación o edición de mi cuenta de usuario" #elif L==4 "Créer ou modifier mon compte d'utilisateur" #elif L==5 "Creación o edición de mi cuenta de usuario"// Okoteve traducción #elif L==6 "Creare o modificare il mio account utente" #elif L==7 "Utworzyć lub edytować konto użytkownika" #elif L==8 "Criar ou editar minha conta de usuário" #endif , // ActReqSndNewPwd #if L==0 "Enviament d'una nova clau d'inscripció" " a la meva adreça de correu electrònic" #elif L==1 "Neues Passwort" #elif L==2 "New password" #elif L==3 "Envío de una nueva contraseña de acceso" " a mi dirección de correo electrónico" #elif L==4 "Nouveau mot de passe" #elif L==5 "Envío de una nueva contraseña de acceso" " a mi dirección de correo electrónico"// Okoteve traducción #elif L==6 "Nuova password" #elif L==7 "Nowe hasło" #elif L==8 "Nova senha" #endif , // ActFrmChgMyPwd #if L==0 "Canvi de la meva contrasenya d'accés" #elif L==1 "Passwort" #elif L==2 "Password" #elif L==3 "Cambio de mi contraseña de acceso" #elif L==4 "Mot de passe" #elif L==5 "Cambio de mi contraseña de acceso"// Okoteve traducción #elif L==6 "Password" #elif L==7 "Hasło" #elif L==8 "Senha" #endif , // ActReqEdiRecCom #if L==0 "Dades personals, comuns per a totes les assignatures" #elif L==1 "Profil" #elif L==2 "Record" #elif L==3 "Datos personales, comunes para todas las asignaturas" #elif L==4 "Carte" #elif L==5 "Datos personales, comunes para todas las asignaturas"// Okoteve traducción #elif L==6 "Scheda" #elif L==7 "Karta" #elif L==8 "Cartão" #endif , // ActReqMyPho #if L==0 "La meva fotografia personal" #elif L==1 "Foto" #elif L==2 "Photo" #elif L==3 "Mi fotografía personal" #elif L==4 "Photo" #elif L==5 "Mi fotografía personal" // Okoteve traducción #elif L==6 "Foto" #elif L==7 "Zdjęcie" #elif L==8 "Foto" #endif , // ActReqEdiMyIns #if L==0 "Institució" #elif L==1 "Hochschule" #elif L==2 "Institution" #elif L==3 "Institución a la que pertenezco" #elif L==4 "Établissement" #elif L==5 "Mbo'ehao" #elif L==6 "Istituzione" #elif L==7 "Instytucji" #elif L==8 "Institução" #endif , // ActReqEdiMyNet #if L==0 "Webs / xarxes socials" #elif L==1 "Webs / Soziale Netzwerke" #elif L==2 "My webs and profiles in social networks" #elif L==3 "Mis webs y perfiles en redes sociales" #elif L==4 "Webs / réseaux sociaux" #elif L==5 "Mis webs y perfiles en redes sociales" // Okoteve traducción #elif L==6 "Webs / reti sociali" #elif L==7 "Webs / sieci społeczne" #elif L==8 "Webs / redes sociais" #endif , // ActEdiPrf #if L==0 "Les meves preferències (idioma, colors, notificacions ...)" #elif L==1 "Einstellungen" #elif L==2 "Preferences" #elif L==3 "Mis preferencias (idioma, colores, notificaciones...)" #elif L==4 "Préférences" #elif L==5 "Mis preferencias (idioma, colores, notificaciones...)" // Okoteve traducción #elif L==6 "Preferenze" #elif L==7 "Preferencje" #elif L==8 "Preferências" #endif , // ActMyCrs #if L==0 "Canvi a una de les assignatures a les quals pertanyo" #elif L==1 "Meine Veranstaltungen" #elif L==2 "My courses" #elif L==3 "Cambio a una de las asignaturas a las que pertenezco" #elif L==4 "Mes matières" #elif L==5 "Cambio a una de las asignaturas a las que pertenezco"// Okoteve traducción #elif L==6 "Miei corsi" #elif L==7 "Moje kursów" #elif L==8 "As minha disciplinas" #endif , // ActSeeMyTimTbl #if L==0 "Horari conjunt de totes les meves assignatures a la plataforma" #elif L==1 "Stundenplan" #elif L==2 "My timetable" #elif L==3 "Horario conjunto de todas mis asignaturas en la plataforma" #elif L==4 "Horaire mes matières" #elif L==5 "Horario conjunto de todas mis asignaturas en la plataforma"// Okoteve traducción #elif L==6 "Orario dei miei corsi" #elif L==7 "Mój plan lekcji" #elif L==8 "Horário minha disciplinas" #endif , // ActAdmBrf #if L==0 "La meva zona privada d'emmagatzematge de fitxers" #elif L==1 "Aktentasche" #elif L==2 "Virtual pendrive" #elif L==3 "Mi zona privada de almacenamiento de archivos" #elif L==4 "Portedocuments" #elif L==5 "Mi zona privada de almacenamiento de archivos" // Okoteve traducción #elif L==6 "Penna USB" #elif L==7 "Pendrive wirtualne" #elif L==8 "Pasta" #endif , // ActMFUAct #if L==0 "Accés directe a les meves accions més freqüents" #elif L==1 "Direkter Zugriff auf meine häufige Aktionen" #elif L==2 "Direct access to my most frequent actions" #elif L==3 "Acceso directo a mis acciones más frecuentes" #elif L==4 "Accès direct à mes actions les plus fréquentes" #elif L==5 "Acceso directo a mis acciones más frecuentes"// Okoteve traducción #elif L==6 "Accesso diretto alle mie azioni più frequenti" #elif L==7 "Bezpośredni dostęp do najczęstszych działań" #elif L==8 "Acesso direto das minhas ações mais freqüentes" #endif , NULL, NULL, } }; const char *Txt_message = #if L==0 "missatge"; #elif L==1 "Nachricht"; #elif L==2 "message"; #elif L==3 "mensaje"; #elif L==4 "message"; #elif L==5 "marandu"; #elif L==6 "messaggio"; #elif L==7 "wiadomosc"; #elif L==8 "mensagem"; #endif const char *Txt_Message_deleted = #if L==0 "Mensaje eliminado."; // Necessita traduccio #elif L==1 "Nachricht entfernt."; #elif L==2 "Message deleted."; #elif L==3 "Mensaje eliminado."; #elif L==4 "Message deleted."; // Besoin de traduction #elif L==5 "Mensaje eliminado."; // Okoteve traducción #elif L==6 "Messaggio rimosso."; #elif L==7 "Wiadomość usunieta."; #elif L==8 "Message deleted."; // Necessita de tradução #endif const char *Txt_message_not_sent_to_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Missatge no enviat a %s."; #elif L==1 "Nachricht nicht gesendet, um %s."; #elif L==2 "Message not sent to %s."; #elif L==3 "Mensaje no enviado a %s."; #elif L==4 "Message non envoyé à %s."; #elif L==5 "Mensaje no enviado a %s."; // Okoteve traducción #elif L==6 "Messaggio non inviato a %s."; #elif L==7 "Wiadomość nie zostala wyslana do %s."; #elif L==8 "Mensagem não enviada para %s."; #endif const char *Txt_message_received_from_A_USER = #if L==0 "mensaje recibido de"; // Necessita traduccio #elif L==1 "empfangene Nachricht aus"; #elif L==2 "message received from"; #elif L==3 "mensaje recibido de"; #elif L==4 "message reçu de"; #elif L==5 "mensaje recibido de"; // Okoteve traducción #elif L==6 "messaggio ricevuto da"; #elif L==7 "wiadomosci otrzymane od"; #elif L==8 "mensagem recebida de"; #endif const char *Txt_message_sent_to = #if L==0 "mensaje enviado a"; // Necessita traduccio #elif L==1 "Nachricht gesendet an"; #elif L==2 "message sent to"; #elif L==3 "mensaje enviado a"; #elif L==4 "message envoyé à"; #elif L==5 "mensaje enviado a"; // Okoteve traducción #elif L==6 "messaggio inviato a"; #elif L==7 "Wiadomość wyslana do"; #elif L==8 "mensagem enviada para"; #endif const char *Txt_message_sent_to_X_not_notified_by_e_mail = // Warning: it is very important to include %s in the following sentences #if L==0 "Mensaje enviado a %s (no notificado por e-mail)."; // Necessita traduccio #elif L==1 "Message sent to %s (not notified by e-mail)."; // Need Übersetzung #elif L==2 "Message sent to %s (not notified by e-mail)."; #elif L==3 "Mensaje enviado a %s (no notificado por e-mail)."; #elif L==4 "Message sent to %s (not notified by e-mail)."; // Besoin de traduction #elif L==5 "Mensaje enviado a %s (no notificado por e-mail)."; // Okoteve traducción #elif L==6 "Messaggio inviato a %s (non notificato per e-mail)."; #elif L==7 "Wiadomość wyslana do %s (nie zgloszonych przez e-mail)."; // #elif L==8 "Message sent to %s (not notified by e-mail)."; // Necessita de tradução #endif const char *Txt_message_sent_to_X_notified_by_e_mail = // Warning: it is very important to include %s in the following sentences #if L==0 "Mensaje enviado a %s (notificado por e-mail)."; // Necessita traduccio #elif L==1 "Message sent to %s (notified by e-mail)."; // Need Übersetzung #elif L==2 "Message sent to %s (notified by e-mail)."; #elif L==3 "Mensaje enviado a %s (notificado por e-mail)."; #elif L==4 "Message sent to %s (notified by e-mail)."; // Besoin de traduction #elif L==5 "Mensaje enviado a %s (notificado por e-mail)."; // Okoteve traducción #elif L==6 "Messaggio inviato a %s (notificato per e-mail)."; #elif L==7 "Wiadomość wyslana do %s (zgloszone przez e-mail)."; #elif L==8 "Message sent to %s (notified by e-mail)."; // Necessita de tradução #endif const char *Txt_Messages = #if L==0 "Missatges"; #elif L==1 "Nachrichten"; #elif L==2 "Messages"; #elif L==3 "Mensajes"; #elif L==4 "Messages"; #elif L==5 "Marandu"; #elif L==6 "Messaggi"; #elif L==7 "Wiadomości"; #elif L==8 "Mensagens"; #endif const char *Txt_messages = #if L==0 "missatges"; #elif L==1 "Nachrichten"; #elif L==2 "messages"; #elif L==3 "mensajes"; #elif L==4 "messages"; #elif L==5 "marandu"; #elif L==6 "messaggi"; #elif L==7 "wiadomości"; #elif L==8 "mensagens"; #endif const char *Txt_X_messages_have_been_deleted = // Warning: it is very important to include %u in the following sentences #if L==0 "Se han eliminado %u mensajes."; // Necessita traduccio #elif L==1 "%u messages have been deleted."; // Need Übersetzung #elif L==2 "%u messages have been deleted."; #elif L==3 "Se han eliminado %u mensajes."; #elif L==4 "%u messages have been deleted."; // Besoin de traduction #elif L==5 "Se han eliminado %u mensajes."; // Okoteve traducción #elif L==6 "%u messaggi sono stati rimossi."; #elif L==7 "wiadomosci% u zostaly usuniete."; #elif L==8 "%u messages have been deleted."; // Necessita de tradução #endif const char *Txt_Messages_of_THE_USER_X_have_been_deleted = // Warning: it is very important to include %s in the following sentences #if L==0 "Se han eliminado los mensajes de %s."; // Necessita traduccio #elif L==1 "Messages of %s have been deleted."; // Need Übersetzung #elif L==2 "Messages of %s have been deleted."; #elif L==3 "Se han eliminado los mensajes de %s."; #elif L==4 "Messages of %s have been deleted."; // Besoin de traduction #elif L==5 "Se han eliminado los mensajes de %s."; // Okoteve traducción #elif L==6 "Messaggi de %s sono stati rimossi."; #elif L==7 "Wiadomości od %s zostaly usuniete."; #elif L==8 "Messages of %s have been deleted."; // Necessita de tradução #endif const char *Txt_Messages_received = #if L==0 "Missatges rebuts"; #elif L==1 "Empfangene Nachrichten"; #elif L==2 "Messages received"; #elif L==3 "Mensajes recibidos"; #elif L==4 "Messages reçus"; #elif L==5 "Mensajes recibidos"; // Okoteve traducción #elif L==6 "Messaggi ricevuti"; #elif L==7 "Wiadomości odebrane"; #elif L==8 "Mensagens recebidas"; #endif const char *Txt_Messages_received_from_A_COURSE = #if L==0 "Missatges rebuts des de"; #elif L==1 "Empfangene Nachrichten aus"; #elif L==2 "Messages received from"; #elif L==3 "Mensajes recibidos desde"; #elif L==4 "Messages reçus de"; #elif L==5 "Mensajes recibidos desde"; // Okoteve traducción #elif L==6 "Messaggi ricevuti da"; #elif L==7 "Wiadomości odebrane"; #elif L==8 "Mensagens recebidas de"; #endif const char *Txt_messages_received_from_A_USER = #if L==0 "mensajes recibidos de"; // Necessita traduccio #elif L==1 "empfangene Nachrichten aus"; #elif L==2 "messages received from"; #elif L==3 "mensajes recibidos de"; #elif L==4 "messages reçus de"; #elif L==5 "mensajes recibidos de"; // Okoteve traducción #elif L==6 "messaggi ricevuti da"; #elif L==7 "wiadomosci odebrane"; #elif L==8 "mensagens recebidas de"; #endif const char *Txt_Messages_sent = #if L==0 "Missatges enviats"; #elif L==1 "Gesendete Nachrichten"; #elif L==2 "Messages sent"; #elif L==3 "Mensajes enviados"; #elif L==4 "Messages envoyés"; #elif L==5 "Mensajes enviados"; // Okoteve traducción #elif L==6 "Messaggi inviati"; #elif L==7 "Wiadomości wysylane"; #elif L==8 "Mensagens enviadas"; #endif const char *Txt_Messages_sent_by_teachers = #if L==0 "Mensajes enviados por profesores"; // Necessita traduccio #elif L==1 "Gesendete Nachrichten, die von Lehrkräften"; #elif L==2 "Messages sent by teachers"; #elif L==3 "Mensajes enviados por profesores"; #elif L==4 "Messages envoyés par enseignants"; #elif L==5 "Mensajes enviados por profesores"; // Okoteve traducción #elif L==6 "Messaggi inviati dai professori"; #elif L==7 "Wiadomości wysylane przez nauczycieli"; #elif L==8 "Mensagens enviadas por professores"; #endif const char *Txt_Messages_sent_from_A_COURSE = #if L==0 "Missatges enviats des de"; #elif L==1 "Gesendete Nachrichten aus"; #elif L==2 "Messages sent from"; #elif L==3 "Mensajes enviados desde"; #elif L==4 "Messages envoyés de"; #elif L==5 "Mensajes enviados desde"; // Okoteve traducción #elif L==6 "Messaggi inviati da"; #elif L==7 "Wiadomości wyslane z"; #elif L==8 "Mensagens enviadas de"; #endif const char *Txt_messages_sent_to_A_USER = #if L==0 "mensajes enviados a"; // Necessita traduccio #elif L==1 "gesendete Nachrichten an"; #elif L==2 "messages sent to"; #elif L==3 "mensajes enviados a"; #elif L==4 "messages envoyés à"; #elif L==5 "mensajes enviados a"; // Okoteve traducción #elif L==6 "messaggi inviati a"; #elif L==7 "wiadomosci wysylanych do"; #elif L==8 "mensagens enviadas para"; #endif const char *Txt_minimum = #if L==0 "mínimo"; // Necessita traduccio #elif L==1 "Mindest"; #elif L==2 "minimum"; #elif L==3 "mínimo"; #elif L==4 "minimum"; #elif L==5 "mínimo"; // Okoteve traducción #elif L==6 "minimo"; #elif L==7 "minimum"; #elif L==8 "mínimo"; #endif const char *Txt_Minimum_time_seconds_per_question_between_two_tests = #if L==0 "Tiempo mínimo (segundos)
por pregunta
entre dos tests"; // Necessita traduccio #elif L==1 "Minimale Zeit (Sekunden)
pro Frage
zwischen zwei Tests"; #elif L==2 "Minimum time (seconds)
per question
between two tests"; #elif L==3 "Tiempo mínimo (segundos)
por pregunta
entre dos tests"; #elif L==4 "Minimum de temps (en secondes)
par question
entre deux tests"; #elif L==5 "Tiempo mínimo (segundos)
por pregunta
entre dos tests"; // Okoteve traducción #elif L==6 "Minimo tempo (in secondi)
per domanda
tra due test"; #elif L==7 "Minimalny czas (w sekundach)
na pytanie miedzy
dwoma badaniami"; #elif L==8 "Tempo mínimo (segundos)
por questão
entre dois testes"; #endif const char *Txt_minute = #if L==0 "minuto"; // Necessita traduccio #elif L==1 "Minute"; #elif L==2 "minute"; #elif L==3 "minuto"; #elif L==4 "minute"; #elif L==5 "aravo'i"; #elif L==6 "minuto"; #elif L==7 "minutę"; #elif L==8 "minuto"; #endif const char *Txt_minutes = #if L==0 "minutos"; // Necessita traduccio #elif L==1 "Minute"; #elif L==2 "minutes"; #elif L==3 "minutos"; #elif L==4 "minutes"; #elif L==5 "aravo'i"; #elif L==6 "minuti"; #elif L==7 "minuty"; #elif L==8 "minutos"; #endif const char *Txt_Modify_assignment = #if L==0 "Modificar actividad"; // Necessita traduccio #elif L==1 "Ändern Aufgabe"; #elif L==2 "Modify assignment"; #elif L==3 "Modificar actividad"; #elif L==4 "Modifier activité"; #elif L==5 "Modificar actividad"; // Okoteve traducción #elif L==6 "Modifica attività"; #elif L==7 "Modyfikacja zadania"; #elif L==8 "Modificar atividade"; #endif const char *Txt_Modify_event = #if L==0 "Modificar evento"; // Necessita traduccio #elif L==1 "Ändern Ereignis"; #elif L==2 "Modify event"; #elif L==3 "Modificar evento"; #elif L==4 "Modifier événement"; #elif L==5 "Modificar evento"; // Okoteve traducción #elif L==6 "Modifica evento"; #elif L==7 "Modyfikacja wydarzenie"; #elif L==8 "Modificar evento"; #endif const char *Txt_Modify_me_in_the_course_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Modificarme en l'assignatura %s"; #elif L==1 "Ändern Sie mir im Veranstaltung %s"; #elif L==2 "Modify me in the course %s"; #elif L==3 "Modificarme en la asignatura %s"; #elif L==4 "Modifier-moi dans la matière %s"; #elif L==5 "Modificarme en la asignatura %s"; // Okoteve traducción #elif L==6 "Modificami utente nel corso %s"; #elif L==7 "Modyfikacja mnie w kurs %s"; #elif L==8 "Modificar me na disciplina %s"; #endif const char *Txt_Modify_user_in_the_course_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Modificar usuari en l'assignatura %s"; #elif L==1 "Ändern Benutzer im Veranstaltung %s"; #elif L==2 "Modify user in the course %s"; #elif L==3 "Modificar usuario en la asignatura %s"; #elif L==4 "Modifier utilisateur dans la matière %s"; #elif L==5 "Modificar usuario en la asignatura %s"; // Okoteve traducción #elif L==6 "Modifica utente nel corso %s"; #elif L==7 "Modyfikacja użytkownika w kurs %s"; #elif L==8 "Modificar utilizador na disciplina %s"; #endif const char *Txt_Modify_survey = #if L==0 "Modifier sondage"; // Necessita traduccio #elif L==1 "Ändern Umfrage"; #elif L==2 "Modify survey"; #elif L==3 "Modificar encuesta"; #elif L==4 "Modifier sondage"; #elif L==5 "Modificar encuesta"; // Okoteve traducción #elif L==6 "Modifica sondaggio"; #elif L==7 "Badanie Modyfikuj"; #elif L==8 "Modificar inquérito"; #endif const char *Txt_Month = #if L==0 "Mes"; // Necessita traduccio #elif L==1 "Monat"; #elif L==2 "Month"; #elif L==3 "Mes"; #elif L==4 "Mois"; #elif L==5 "Jasy"; #elif L==6 "Mese"; #elif L==7 "Miesiac"; #elif L==8 "Mês"; #endif const char *Txt_MONTHS_CAPS[12] = { #if L==0 "GENER" #elif L==1 "JANUAR" #elif L==2 "JANUARY" #elif L==3 "ENERO" #elif L==4 "JANVIER" #elif L==5 "JASYTEĨ" #elif L==6 "GENNAIO" #elif L==7 "STYCZNIA" #elif L==8 "JANEIRO" #endif , #if L==0 "FEBRER" #elif L==1 "FEBRUAR" #elif L==2 "FEBRUARY" #elif L==3 "FEBRERO" #elif L==4 "FÉVRIER" #elif L==5 "JASYKÕI" #elif L==6 "FEBBRAIO" #elif L==7 "LUTEGO" #elif L==8 "FEVEREIRO" #endif , #if L==0 "MARÇ" #elif L==1 "MÄRZ" #elif L==2 "MARCH" #elif L==3 "MARZO" #elif L==4 "MARS" #elif L==5 "JASYAPY" #elif L==6 "MARZO" #elif L==7 "MARCA" #elif L==8 "MARÇO" #endif , #if L==0 "ABRIL" #elif L==1 "APRIL" #elif L==2 "APRIL" #elif L==3 "ABRIL" #elif L==4 "AVRIL" #elif L==5 "JASYRUNDY" #elif L==6 "APRILE" #elif L==7 "KWIETNIA" #elif L==8 "ABRIL" #endif , #if L==0 "MAIG" #elif L==1 "MAI" #elif L==2 "MAY" #elif L==3 "MAYO" #elif L==4 "MAI" #elif L==5 "JASYPO" #elif L==6 "MAGGIO" #elif L==7 "MAJA" #elif L==8 "MAIO" #endif , #if L==0 "JUNY" #elif L==1 "JUNI" #elif L==2 "JUNE" #elif L==3 "JUNIO" #elif L==4 "JUIN" #elif L==5 "JASYPOTEĨ" #elif L==6 "GIUGNO" #elif L==7 "CZERWCA" #elif L==8 "JUNHO" #endif , #if L==0 "JULIOL" #elif L==1 "JULI" #elif L==2 "JULY" #elif L==3 "JULIO" #elif L==4 "JUILLET" #elif L==5 "JASYPOKÕI" #elif L==6 "LUGLIO" #elif L==7 "LIPCA" #elif L==8 "JULHO" #endif , #if L==0 "AGOST" #elif L==1 "AUGUST" #elif L==2 "AUGUST" #elif L==3 "AGOSTO" #elif L==4 "AOÛT" #elif L==5 "JASYPOAPY" #elif L==6 "AGOSTO" #elif L==7 "SIERPNIA" #elif L==8 "AGOSTO" #endif , #if L==0 "SETEMBRE" #elif L==1 "SEPTEMBER" #elif L==2 "SEPTEMBER" #elif L==3 "SEPTIEMBRE" #elif L==4 "SEPTEMBRE" #elif L==5 "JASYPORUNDY" #elif L==6 "SETTEMBRE" #elif L==7 "WRZEŚNIA" #elif L==8 "SETEMBRO" #endif , #if L==0 "OCTUBRE" #elif L==1 "OKTOBER" #elif L==2 "OCTOBER" #elif L==3 "OCTUBRE" #elif L==4 "OCTOBRE" #elif L==5 "JASYPA" #elif L==6 "OTTOBRE" #elif L==7 "PAŹDZIERNIKA" #elif L==8 "OUTUBRO" #endif , #if L==0 "NOVEMBRE" #elif L==1 "NOVEMBER" #elif L==2 "NOVEMBER" #elif L==3 "NOVIEMBRE" #elif L==4 "NOVEMBRE" #elif L==5 "JASYPATEĨ" #elif L==6 "NOVEMBRE" #elif L==7 "LISTOPADA" #elif L==8 "NOVEMBRO" #endif , #if L==0 "DESEMBRE" #elif L==1 "DEZEMBER" #elif L==2 "DECEMBER" #elif L==3 "DICIEMBRE" #elif L==4 "DÉCEMBRE" #elif L==5 "JASYPAKÕI" #elif L==6 "DICEMBRE" #elif L==7 "GRUDNIA" #elif L==8 "DEZEMBRO" #endif }; const char *Txt_MONTHS_SMALL[12] = { #if L==0 "gener" #elif L==1 "Januar" #elif L==2 "January" #elif L==3 "enero" #elif L==4 "janvier" #elif L==5 "jasyteĩ" #elif L==6 "gennaio" #elif L==7 "Stycznia" #elif L==8 "janeiro" #endif , #if L==0 "febrer" #elif L==1 "Februar" #elif L==2 "February" #elif L==3 "febrero" #elif L==4 "février" #elif L==5 "jasykõi" #elif L==6 "febbraio" #elif L==7 "Lutego" #elif L==8 "fevereiro" #endif , #if L==0 "març" #elif L==1 "M;ärz" #elif L==2 "March" #elif L==3 "marzo" #elif L==4 "mars" #elif L==5 "jasyapy" #elif L==6 "marzo" #elif L==7 "Marca" #elif L==8 "março" #endif , #if L==0 "abril" #elif L==1 "April" #elif L==2 "April" #elif L==3 "abril" #elif L==4 "avril" #elif L==5 "jasyrundy" #elif L==6 "aprile" #elif L==7 "Kwietnia" #elif L==8 "abril" #endif , #if L==0 "maig" #elif L==1 "Mai" #elif L==2 "May" #elif L==3 "mayo" #elif L==4 "mai" #elif L==5 "jasypo" #elif L==6 "maggio" #elif L==7 "Maja" #elif L==8 "maio" #endif , #if L==0 "juny" #elif L==1 "Juni" #elif L==2 "June" #elif L==3 "junio" #elif L==4 "juin" #elif L==5 "jasypoteĩ" #elif L==6 "giugno" #elif L==7 "Czerwca" #elif L==8 "junho" #endif , #if L==0 "juliol" #elif L==1 "Juli" #elif L==2 "July" #elif L==3 "julio" #elif L==4 "juillet" #elif L==5 "jasypokõi" #elif L==6 "luglio" #elif L==7 "Lipca" #elif L==8 "julho" #endif , #if L==0 "agost" #elif L==1 "August" #elif L==2 "August" #elif L==3 "agosto" #elif L==4 "août" #elif L==5 "jasypoapy" #elif L==6 "agosto" #elif L==7 "Sierpnia" #elif L==8 "agosto" #endif , #if L==0 "setembre" #elif L==1 "September" #elif L==2 "September" #elif L==3 "septiembre" #elif L==4 "septembre" #elif L==5 "jasyporundy" #elif L==6 "settembre" #elif L==7 "Września" #elif L==8 "setembro" #endif , #if L==0 "octubre" #elif L==1 "Oktober" #elif L==2 "October" #elif L==3 "octubre" #elif L==4 "octobre" #elif L==5 "jasypa" #elif L==6 "ottobre" #elif L==7 "Października" #elif L==8 "outubro" #endif , #if L==0 "novembre" #elif L==1 "November" #elif L==2 "November" #elif L==3 "noviembre" #elif L==4 "novembre" #elif L==5 "jasypateĩ" #elif L==6 "novembre" #elif L==7 "Listopada" #elif L==8 "novembro" #endif , #if L==0 "desembre" #elif L==1 "Dezember" #elif L==2 "December" #elif L==3 "diciembre" #elif L==4 "décembre" #elif L==5 "jasypakõi" #elif L==6 "dicembre" #elif L==7 "Grudnia" #elif L==8 "dezembro" #endif }; const char *Txt_MONTHS_SMALL_SHORT[12] = { #if L==0 "gen" #elif L==1 "Jan" #elif L==2 "Jan" #elif L==3 "ene" #elif L==4 "jan" #elif L==5 "ene" // Okoteve traducción #elif L==6 "gen" #elif L==7 "Sty" #elif L==8 "jan" #endif , #if L==0 "feb" #elif L==1 "Feb" #elif L==2 "Feb" #elif L==3 "feb" #elif L==4 "fév" #elif L==5 "feb" // Okoteve traducción #elif L==6 "feb" #elif L==7 "Lut" #elif L==8 "fev" #endif , #if L==0 "mar" #elif L==1 "M;är" #elif L==2 "Mar" #elif L==3 "mar" #elif L==4 "mar" #elif L==5 "mar" // Okoteve traducción #elif L==6 "mar" #elif L==7 "Mar" #elif L==8 "mar" #endif , #if L==0 "abr" #elif L==1 "Apr" #elif L==2 "Apr" #elif L==3 "abr" #elif L==4 "avr" #elif L==5 "abr" // Okoteve traducción #elif L==6 "apr" #elif L==7 "Kwi" #elif L==8 "abr" #endif , #if L==0 "mai" #elif L==1 "Mai" #elif L==2 "May" #elif L==3 "may" #elif L==4 "mai" #elif L==5 "may" // Okoteve traducción #elif L==6 "mag" #elif L==7 "Maj" #elif L==8 "mai" #endif , #if L==0 "jun" #elif L==1 "Jun" #elif L==2 "Jun" #elif L==3 "jun" #elif L==4 "jui" #elif L==5 "jun" // Okoteve traducción #elif L==6 "giu" #elif L==7 "Cze" #elif L==8 "jun" #endif , #if L==0 "jul" #elif L==1 "Jul" #elif L==2 "Jul" #elif L==3 "jul" #elif L==4 "jui" #elif L==5 "jul" // Okoteve traducción #elif L==6 "lug" #elif L==7 "Lip" #elif L==8 "jul" #endif , #if L==0 "ago" #elif L==1 "Aug" #elif L==2 "Aug" #elif L==3 "ago" #elif L==4 "aoû" #elif L==5 "ago" // Okoteve traducción #elif L==6 "ago" #elif L==7 "Sie" #elif L==8 "ago" #endif , #if L==0 "set" #elif L==1 "Sep" #elif L==2 "Sep" #elif L==3 "sep" #elif L==4 "sep" #elif L==5 "sep" // Okoteve traducción #elif L==6 "set" #elif L==7 "Wrz" #elif L==8 "set" #endif , #if L==0 "oct" #elif L==1 "Okt" #elif L==2 "Oct" #elif L==3 "oct" #elif L==4 "oct" #elif L==5 "oct" // Okoteve traducción #elif L==6 "ott" #elif L==7 "Paź" #elif L==8 "out" #endif , #if L==0 "nov" #elif L==1 "Nov" #elif L==2 "Nov" #elif L==3 "nov" #elif L==4 "nov" #elif L==5 "nov" // Okoteve traducción #elif L==6 "nov" #elif L==7 "Lis" #elif L==8 "nov" #endif , #if L==0 "des" #elif L==1 "Dez" #elif L==2 "Dec" #elif L==3 "dic" #elif L==4 "déc" #elif L==5 "dic" // Okoteve traducción #elif L==6 "dic" #elif L==7 "Gru" #elif L==8 "dez" #endif }; const char *Txt_Move_up_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Subir %s"; // Necessita traduccio #elif L==1 "Move up %s"; // Need Übersetzung #elif L==2 "Move up %s"; #elif L==3 "Subir %s"; #elif L==4 "Move up %s"; // Besoin de traduction #elif L==5 "Subir %s"; // Okoteve traducción #elif L==6 "Muovi su %s"; #elif L==7 "Przesun w góre %s"; #elif L==8 "Move up %s"; // Necessita de tradução #endif const char *Txt_Move_up_X_and_its_subsections = // Warning: it is very important to include %s in the following sentences #if L==0 "Subir %s y sus subapartados"; // Necessita traduccio #elif L==1 "Move up %s and its subsections"; // Need Übersetzung #elif L==2 "Move up %s and its subsections"; #elif L==3 "Subir %s y sus subapartados"; #elif L==4 "Move up %s and its subsections"; // Besoin de traduction #elif L==5 "Subir %s y sus subapartados"; // Okoteve traducción #elif L==6 "Muovi su %s e le sue sottosezioni"; #elif L==7 "Przenies sie %s, a jego podrozdzialy"; #elif L==8 "Move up %s and its subsections"; // Necessita de tradução #endif const char *Txt_Move_down_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Bajar %s"; // Necessita traduccio #elif L==1 "Move down %s"; // Need Übersetzung #elif L==2 "Move down %s"; #elif L==3 "Bajar %s"; #elif L==4 "Move down %s"; // Besoin de traduction #elif L==5 "Bajar %s"; // Okoteve traducción #elif L==6 "Muovi giù %s"; #elif L==7 "Opuszczac %s"; #elif L==8 "Move down %s"; // Necessita de tradução #endif const char *Txt_Move_down_X_and_its_subsections = // Warning: it is very important to include %s in the following sentences #if L==0 "Bajar %s y sus subapartados"; // Necessita traduccio #elif L==1 "Move down %s and its subsections"; // Need Übersetzung #elif L==2 "Move down %s and its subsections"; #elif L==3 "Bajar %s y sus subapartados"; #elif L==4 "Move down %s and its subsections"; // Besoin de traduction #elif L==5 "Bajar %s y sus subapartados"; // Okoteve traducción #elif L==6 "Muovi giù %s e le sue sottosezioni"; #elif L==7 "Przesun w dól %s, a jego podrozdzialy"; #elif L==8 "Move down %s and its subsections"; // Necessita de tradução #endif const char *Txt_Move_thread = #if L==0 "Mover discusión"; // Necessita traduccio #elif L==1 "Verschieben Thread"; #elif L==2 "Move thread"; #elif L==3 "Mover discusión"; #elif L==4 "Déplacer fil"; #elif L==5 "Mover discusión"; // Okoteve traducción #elif L==6 "Sposta discussione"; #elif L==7 "Przenies watku"; #elif L==8 "Mover thread"; #endif const char *Txt_MSG_containing_the_text = #if L==0 "que contenga el texto"; // Necessita traduccio #elif L==1 "mit dem Text"; #elif L==2 "containing the text"; #elif L==3 "que contenga el texto"; #elif L==4 "contenant le texte"; #elif L==5 "que contenga el texto"; // Okoteve traducción #elif L==6 "contenente il testo"; #elif L==7 "zawierajacy tekst"; #elif L==8 "contendo o texto"; #endif const char *Txt_MSG_Deleted_without_opening = #if L==0 "Eliminado sin abrir"; // Necessita traduccio #elif L==1 "Gelöscht ohne Öffnen"; #elif L==2 "Deleted without opening"; #elif L==3 "Eliminado sin abrir"; #elif L==4 "Supprimé sans ouvrir"; #elif L==5 "Eliminado sin abrir"; // Okoteve traducción #elif L==6 "Rimosso senza aprire"; #elif L==7 "Usuniete bez otwierania"; #elif L==8 "Suprimida sem abrir"; #endif const char *Txt_MSG_From = #if L==0 "De"; // Necessita traduccio #elif L==1 "Von"; #elif L==2 "From"; #elif L==3 "De"; #elif L==4 "De"; #elif L==5 "De"; // Okoteve traducción #elif L==6 "Da"; #elif L==7 "z"; #elif L==8 "De"; #endif const char *Txt_MSG_from = #if L==0 "from"; // Necessita traduccio #elif L==1 "von"; #elif L==2 "from"; #elif L==3 "de"; #elif L==4 "de"; #elif L==5 "de"; // Okoteve traducción #elif L==6 "da"; #elif L==7 "z"; #elif L==8 "de"; #endif const char *Txt_MSG_Message = #if L==0 "Missatge"; #elif L==1 "Nachricht"; #elif L==2 "Message"; #elif L==3 "Mensaje"; #elif L==4 "Message"; #elif L==5 "Marandu"; #elif L==6 "Messaggio"; #elif L==7 "Wiadomość"; #elif L==8 "Mensagem"; #endif const char *Txt_MSG_New = #if L==0 "Nuevo"; // Necessita traduccio #elif L==1 "Neue"; #elif L==2 "New"; #elif L==3 "Nuevo"; #elif L==4 "Nouveau"; #elif L==5 "Nuevo"; // Okoteve traducción #elif L==6 "Nuovo"; #elif L==7 "nowe"; #elif L==8 "Nova"; #endif const char *Txt_MSG_Not_replied = #if L==0 "No respondido"; // Necessita traduccio #elif L==1 "Nicht geantwortet"; #elif L==2 "Not replied"; #elif L==3 "No respondido"; #elif L==4 "Pas répondu"; #elif L==5 "No respondido"; // Okoteve traducción #elif L==6 "Non risposto"; #elif L==7 "Nie odpowiedzial"; #elif L==8 "Não respondida"; #endif const char *Txt_MSG_Open = #if L==0 "Abierto"; // Necessita traduccio #elif L==1 "Geöffneten"; #elif L==2 "Open"; #elif L==3 "Abierto"; #elif L==4 "Ouvert"; #elif L==5 "Abierto"; // Okoteve traducción #elif L==6 "Aperto"; #elif L==7 "otwarte"; #elif L==8 "Aberta"; #endif const char *Txt_MSG_Open_and_deleted = #if L==0 "Abierto y eliminado"; // Necessita traduccio #elif L==1 "Geöffneten und gelöscht"; #elif L==2 "Open and deleted"; #elif L==3 "Abierto y eliminado"; #elif L==4 "Ouvert et supprimé"; #elif L==5 "Abierto y eliminado"; // Okoteve traducción #elif L==6 "Aperto e rimosso"; #elif L==7 "Open i usuniete"; #elif L==8 "Aberta e suprimida"; #endif const char *Txt_MSG_Replied = #if L==0 "Respondido"; // Necessita traduccio #elif L==1 "Geantwortet"; #elif L==2 "Replied"; #elif L==3 "Respondido"; #elif L==4 "Répondu"; #elif L==5 "Respondido"; // Okoteve traducción #elif L==6 "Risposto"; #elif L==7 "Odpowiedziano"; #elif L==8 "Respondida"; #endif const char *Txt_MSG_Sent = #if L==0 "Enviado"; // Necessita traduccio #elif L==1 "Gesendet"; #elif L==2 "Sent"; #elif L==3 "Enviado"; #elif L==4 "Envoyé"; #elif L==5 "Enviado"; // Okoteve traducción #elif L==6 "Inviato"; #elif L==7 "Wyslane"; #elif L==8 "Enviada"; #endif const char *Txt_MSG_Sent_and_deleted = #if L==0 "Enviado y eliminado"; // Necessita traduccio #elif L==1 "Gesendet und gelöscht"; #elif L==2 "Sent and deleted"; #elif L==3 "Enviado y eliminado"; #elif L==4 "Envoyé et supprimé"; #elif L==5 "Enviado y eliminado"; // Okoteve traducción #elif L==6 "Inviato e rimosso"; #elif L==7 "Wyslane i usuniete"; #elif L==8 "Enviada e suprimida"; #endif const char *Txt_MSG_Subject = #if L==0 "Assumpte"; #elif L==1 "Betreff"; #elif L==2 "Subject"; #elif L==3 "Asunto"; #elif L==4 "Objet"; #elif L==5 "Asunto"; // Okoteve traducción #elif L==6 "Oggetto"; #elif L==7 "Z zastrzezeniem"; #elif L==8 "Assunto"; #endif const char *Txt_MSG_To = #if L==0 "Per"; #elif L==1 "An"; #elif L==2 "To"; #elif L==3 "Para"; #elif L==4 "Pour"; #elif L==5 "Para"; // Okoteve traducción #elif L==6 "A"; #elif L==7 "Aby"; #elif L==8 "Para"; #endif const char *Txt_MSG_Unopened = #if L==0 "Sin abrir"; // Necessita traduccio #elif L==1 "Ungeöffnet"; #elif L==2 "Unopened"; #elif L==3 "Sin abrir"; #elif L==4 "Non ouvert"; #elif L==5 "Sin abrir"; // Okoteve traducción #elif L==6 "Non aperto"; #elif L==7 "Otwarte"; #elif L==8 "Fechada"; #endif const char *Txt_MSGS_containing_the_text = #if L==0 "que contengan el texto"; // Necessita traduccio #elif L==1 "mit dem Text"; #elif L==2 "containing the text"; #elif L==3 "que contengan el texto"; #elif L==4 "contenant le texte"; #elif L==5 "que contengan el texto"; // Okoteve traducción #elif L==6 "contenenti il testo"; #elif L==7 "zawierajacy tekst"; #elif L==8 "contendo o texto"; #endif const char *Txt_MSGS_Deleted = #if L==0 "Eliminados"; // Necessita traduccio #elif L==1 "Gelöscht"; #elif L==2 "Deleted"; #elif L==3 "Eliminados"; #elif L==4 "Supprimés"; #elif L==5 "Eliminados"; // Okoteve traducción #elif L==6 "Rimossi"; #elif L==7 "Usuniete"; #elif L==8 "Suprimidas"; #endif const char *Txt_MSGS_Not_deleted = #if L==0 "No eliminados"; // Necessita traduccio #elif L==1 "Nicht Gelöscht"; #elif L==2 "Not deleted"; #elif L==3 "No eliminados"; #elif L==4 "Non supprimés"; #elif L==5 "No eliminados"; // Okoteve traducción #elif L==6 "Non rimossi"; #elif L==7 "Nie usuniete"; #elif L==8 "Não suprimidas"; #endif const char *Txt_MSGS_Received = #if L==0 "Rebuts"; #elif L==1 "Empfangene"; #elif L==2 "Received"; #elif L==3 "Recibidos"; #elif L==4 "Reçus"; #elif L==5 "Recibidos"; // Okoteve traducción #elif L==6 "Ricevuti"; #elif L==7 "Odebrane"; #elif L==8 "Recebidas"; #endif const char *Txt_MSGS_Sent = #if L==0 "Enviats"; #elif L==1 "Gesendete"; #elif L==2 "Sent"; #elif L==3 "Enviados"; #elif L==4 "Envoyés"; #elif L==5 "Enviados"; // Okoteve traducción #elif L==6 "Inviati"; #elif L==7 "Wyslane"; #elif L==8 "Enviadas"; #endif const char *Txt_Multiple_enrollment = // (to a type of group) #if L==0 "¿Adscripción múltiple?"; // Necessita traduccio #elif L==1 "Mehrere beitreten?"; #elif L==2 "Multiple enrollment?"; #elif L==3 "¿Adscripción múltiple?"; #elif L==4 "Inscription multiple?"; #elif L==5 "¿Adscripción múltiple?"; // Okoteve traducción #elif L==6 "Registrazione multipla?"; #elif L==7 "Rejestracja wielu elementów?"; #elif L==8 "Inscrição múltiplas?"; #endif const char *Txt_My_courses = #if L==0 "Els meus assignatures"; #elif L==1 "Meine Veranstaltungen"; #elif L==2 "My courses"; #elif L==3 "Mis asignaturas"; #elif L==4 "Mes matières"; #elif L==5 "Che mbo'esyry"; #elif L==6 "Miei corsi"; #elif L==7 "Moje kursów"; #elif L==8 "As minha disciplinas"; #endif const char *Txt_My_documents = #if L==0 "Els meus documents"; #elif L==1 "Meine Dokumente"; #elif L==2 "My documents"; #elif L==3 "Mis documentos"; #elif L==4 "Mes documents"; #elif L==5 "Mis documentos"; // Okoteve traducción #elif L==6 "I miei documenti"; #elif L==7 "Moje dokumenty"; #elif L==8 "Meus documentos"; #endif const char *Txt_My_groups = #if L==0 "Meus grups"; #elif L==1 "Meine Gruppen"; #elif L==2 "My groups"; #elif L==3 "Mis grupos"; #elif L==4 "Mes groupes"; #elif L==5 "Mis grupos"; // Okoteve traducción #elif L==6 "Miei gruppi"; #elif L==7 "Moje grupy"; #elif L==8 "Meus grupos"; #endif const char *Txt_My_views = #if L==0 "Els meus accessos"; #elif L==1 "Meine Ansichten"; #elif L==2 "My views"; #elif L==3 "Mis accesos"; #elif L==4 "Mes vues"; #elif L==5 "Mis accesos"; // Okoteve traducción #elif L==6 "Miei visualizzazioni"; #elif L==7 "Moje odsłon"; #elif L==8 "Meus acessos"; #endif const char *Txt_Name = #if L==0 "Nom"; #elif L==1 "Name"; #elif L==2 "Name"; #elif L==3 "Nombre"; #elif L==4 "Nom"; #elif L==5 "Téra"; #elif L==6 "Nome"; #elif L==7 "Nazwa"; #elif L==8 "Nome"; #endif const char *Txt_New_account_created = #if L==0 "Nou compte creat."; #elif L==1 "Neues Konto erstellt."; #elif L==2 "New account created."; #elif L==3 "Nueva cuenta creada."; #elif L==4 "Nouveau compte créé."; #elif L==5 "Nueva cuenta creada."; // Okoteve traducción #elif L==6 "Nuovo account creato."; #elif L==7 "Nowe konto utworzone."; #elif L==8 "Nova conta criada."; #endif const char *Txt_New_assignment = #if L==0 "Nova activitat"; #elif L==1 "Neue Aufgabe"; #elif L==2 "New assignment"; #elif L==3 "Nueva actividad"; #elif L==4 "Nouvelle activité"; #elif L==5 "Nueva actividad"; // Okoteve traducción #elif L==6 "Nuova attività"; #elif L==7 "Nowe zadania"; #elif L==8 "Nova atividade"; #endif const char *Txt_New_announcement = #if L==0 "Nou anunci"; #elif L==1 "Neue Bekanntmachung"; #elif L==2 "New announcement"; #elif L==3 "Nuevo anuncio"; #elif L==4 "Nouvel annonce"; #elif L==5 "Nuevo anuncio"; // Okoteve traducción #elif L==6 "Nuovo annuncio"; #elif L==7 "Nowe ogłoszenia"; #elif L==8 "Novo anúncio"; #endif const char *Txt_New_announcement_of_exam = #if L==0 "Nova convocatòria d'examen"; #elif L==1 "Neuer Aufruf für Prüfung"; #elif L==2 "New announcement of exam"; #elif L==3 "Nueva convocatoria de examen"; #elif L==4 "Nouvelle convocation à un examen"; #elif L==5 "Nueva convocatoria de examen"; // Okoteve traducción #elif L==6 "Nuova sessione d'esame"; #elif L==7 "Nowe ogloszenie egzaminu"; #elif L==8 "Nova chamada para exame"; #endif const char *Txt_New_banner = #if L==0 "Nuevo banner"; // Necessita traduccio #elif L==1 "Neue Werbebanner"; #elif L==2 "New banner"; #elif L==3 "Nuevo banner"; #elif L==4 "Nouvelle banniére"; #elif L==5 "Nuevo banner"; // Okoteve traducción #elif L==6 "Nuovo banner"; #elif L==7 "Nowy banner"; #elif L==8 "Novo banner"; #endif const char *Txt_New_centre = #if L==0 "Nuevo centro"; // Necessita traduccio #elif L==1 "Neues Lehrinstitut"; #elif L==2 "New centre"; #elif L==3 "Nuevo centro"; #elif L==4 "Nouveau centre"; #elif L==5 "Nuevo centro"; // Okoteve traducción #elif L==6 "Nuovo centro"; #elif L==7 "Nowe centrum"; #elif L==8 "Novo centro"; #endif const char *Txt_New_country = #if L==0 "Nuevo país"; // Necessita traduccio #elif L==1 "Neues Land"; #elif L==2 "New country"; #elif L==3 "Nuevo país"; #elif L==4 "Nouveau pays"; #elif L==5 "Nuevo país"; // Okoteve traducción #elif L==6 "Nuovo paese"; #elif L==7 "Nowy kraj"; #elif L==8 "Novo país"; #endif const char *Txt_New_course = #if L==0 "Nova assignatura"; #elif L==1 "Neue Veranstaltung"; #elif L==2 "New course"; #elif L==3 "Nueva asignatura"; #elif L==4 "Nouvelle matière"; #elif L==5 "Nueva asignatura"; // Okoteve traducción #elif L==6 "Nuovo corso"; #elif L==7 "Nowy kurs"; #elif L==8 "Nova disciplina"; #endif const char *Txt_New_degree = #if L==0 "Nueva titulación"; // Necessita traduccio #elif L==1 "Neuer Studiengang"; #elif L==2 "New degree"; #elif L==3 "Nueva titulación"; #elif L==4 "Nouvel étude"; #elif L==5 "Nueva titulación"; // Okoteve traducción #elif L==6 "Nuova laurea"; #elif L==7 "Nowy stopien"; #elif L==8 "Nova titulação"; #endif const char *Txt_New_department = #if L==0 "Nuevo departamento"; // Necessita traduccio #elif L==1 "Neue Abteilung"; #elif L==2 "New department"; #elif L==3 "Nuevo departamento"; #elif L==4 "Nouveau département"; #elif L==5 "Nuevo departamento"; // Okoteve traducción #elif L==6 "Nuovo dipartimento"; #elif L==7 "Nowy dział"; #elif L==8 "Novo departamento"; #endif const char *Txt_New_email = #if L==0 "Nou correu electr`nic"; #elif L==1 "Neues E-Mail"; #elif L==2 "New e-mail"; #elif L==3 "Nuevo correo electrónico"; #elif L==4 "Nouveau courrier électronique"; #elif L==5 "Nuevo correo electrónico"; // Okoteve traducción #elif L==6 "Nuovo e-mail"; #elif L==7 "Nowy e-mail"; #elif L==8 "Novo e-mail"; #endif const char *Txt_New_event = #if L==0 "Nou esdeveniment"; #elif L==1 "Neue Ereignis"; #elif L==2 "New event"; #elif L==3 "Nuevo evento"; #elif L==4 "Nouveau événement"; #elif L==5 "Nuevo evento"; // Okoteve traducción #elif L==6 "Nuovo evento"; #elif L==7 "Nowe wydarzenie"; #elif L==8 "Novo evento"; #endif const char *Txt_New_FILE_OR_FOLDER = #if L==0 "Nou"; #elif L==1 "Neue"; #elif L==2 "New"; #elif L==3 "Nuevo"; #elif L==4 "Nouveau"; #elif L==5 "Nuevo"; // Okoteve traducción #elif L==6 "Nuovo"; #elif L==7 "Nowe"; #elif L==8 "Novo"; #endif const char *Txt_New_group = #if L==0 "Nuevo grupo"; // Necessita traduccio #elif L==1 "Neue Gruppe"; #elif L==2 "New group"; #elif L==3 "Nuevo grupo"; #elif L==4 "Nouveau groupe"; #elif L==5 "Nuevo grupo"; // Okoteve traducción #elif L==6 "Nuovo gruppo"; #elif L==7 "Nowa grupa"; #elif L==8 "Novo grupo"; #endif const char *Txt_New_holiday = #if L==0 "Nueva festividad"; // Necessita traduccio #elif L==1 "Neue Feiertag"; #elif L==2 "New holiday"; #elif L==3 "Nueva festividad"; #elif L==4 "Nouvelle fête"; #elif L==5 "Nueva festividad"; // Okoteve traducción #elif L==6 "Nuova festività"; #elif L==7 "Nowe swieto"; #elif L==8 "Nova féria"; #endif const char *Txt_New_institution = #if L==0 "Nueva institución"; // Necessita traduccio #elif L==1 "Neue Hochschule"; #elif L==2 "New institution"; #elif L==3 "Nueva institución"; #elif L==4 "Nouvel établissement"; #elif L==5 "Nueva institución"; // Okoteve traducción #elif L==6 "Nuova istituzione"; #elif L==7 "Nowa instytucja"; #elif L==8 "Nova institução"; #endif const char *Txt_New_link = #if L==0 "Nuevo enlace"; // Necessita traduccio #elif L==1 "Neue Link"; #elif L==2 "New link"; #elif L==3 "Nuevo enlace"; #elif L==4 "Nouveau lien"; #elif L==5 "Nuevo enlace"; // Okoteve traducción #elif L==6 "Nuovo link"; #elif L==7 "Nowy link"; #elif L==8 "Nova ligação"; #endif const char *Txt_New_mail_domain = #if L==0 "Nuevo dominio de correo"; // Necessita traduccio #elif L==1 "Neue Mail-Domäne"; #elif L==2 "New mail domain"; #elif L==3 "Nuevo dominio de correo"; #elif L==4 "Nouveau domaine de messagerie"; #elif L==5 "Nuevo dominio de correo"; // Okoteve traducción #elif L==6 "Nuovo campo mail"; #elif L==7 "Nowe domeny mail"; #elif L==8 "Novo domínio de email"; #endif const char *Txt_New_message = #if L==0 "Nuevo mensaje"; // Necessita traduccio #elif L==1 "Neue Nachricht"; #elif L==2 "New message"; #elif L==3 "Nuevo mensaje"; #elif L==4 "Nouveau message"; #elif L==5 "Nuevo mensaje"; // Okoteve traducción #elif L==6 "Nuovo messaggio"; #elif L==7 "Nowa wiadomosc"; #elif L==8 "Nova mensagem"; #endif const char *Txt_New_nickname = #if L==0 "Nou sobrenom"; #elif L==1 "Neues Benutzername"; #elif L==2 "New nickname"; #elif L==3 "Nuevo apodo"; #elif L==4 "Nouveau surnom"; #elif L==5 "Nuevo apodo"; // Okoteve traducción #elif L==6 "Nuovo nome utente"; #elif L==7 "Nowy nick"; #elif L==8 "Nova alcunha"; #endif const char *Txt_New_notice = #if L==0 "Nou avís"; #elif L==1 "Neue Ankündigung"; #elif L==2 "New notice"; #elif L==3 "Nuevo aviso"; #elif L==4 "Nouvel avis"; #elif L==5 "Nuevo aviso"; // Okoteve traducción #elif L==6 "Nuovo avviso"; #elif L==7 "Nowe obwieszczenie"; #elif L==8 "Novo aviso"; #endif const char *Txt_New_on_PLATFORM_Sign_up = // Warning: it is very important to include %s in the following sentences #if L==0 "No té compte a %s? Registra't ara"; #elif L==1 "Neu bei %s? Registriere Dich!"; #elif L==2 "New on %s? Sign up"; #elif L==3 "¿No tiene cuenta en %s? Regístrese"; #elif L==4 "Nouveau sur %s? Inscrivez-vous"; #elif L==5 "¿No tiene cuenta en %s? Regístrese"; // Okoteve traducción #elif L==6 "Nuovo su %s? Iscriviti"; #elif L==7 "Pierwszy raz na %s? Zarejestruj się"; #elif L==8 "Novo no %s? Inscreva-se"; #endif const char *Txt_New_password = #if L==0 "Nova contrasenya"; #elif L==1 "Neues Passwort"; #elif L==2 "New password"; #elif L==3 "Nueva contraseña"; #elif L==4 "Nouveau mot de passe"; #elif L==5 "Nueva contraseña"; // Okoteve traducción #elif L==6 "Nuova password"; #elif L==7 "Nowe hasło"; #elif L==8 "Nova senha"; #endif const char *Txt_New_place = #if L==0 "Nuevo lugar"; // Necessita traduccio #elif L==1 "Neue Standort"; #elif L==2 "New place"; #elif L==3 "Nuevo lugar"; #elif L==4 "Nouvel emplacement"; #elif L==5 "Nuevo lugar"; // Okoteve traducción #elif L==6 "Nuova localit`"; #elif L==7 "Nowe miejsce"; #elif L==8 "Nova localização"; #endif const char *Txt_New_plugin = #if L==0 "Nuevo complemento"; // Necessita traduccio #elif L==1 "Neue Plugin"; #elif L==2 "New plugin"; #elif L==3 "Nuevo complemento"; #elif L==4 "Nouveau plugin"; #elif L==5 "Nuevo complemento"; // Okoteve traducción #elif L==6 "Nuovo plugin"; #elif L==7 "Nowy plugin"; #elif L==8 "Novo plugin"; #endif const char *Txt_New_question = #if L==0 "Pregunta nova"; #elif L==1 "Neuer Frage"; #elif L==2 "New question"; #elif L==3 "Pregunta nueva"; #elif L==4 "Nouvelle question"; #elif L==5 "Pregunta nueva"; // Okoteve traducción #elif L==6 "Nuova domanda"; #elif L==7 "Nowe pytanie"; #elif L==8 "Nova questão"; #endif const char *Txt_New_record_field = #if L==0 "Nuevo campo de ficha"; // Necessita traduccio #elif L==1 "Neues Datenfeld"; #elif L==2 "New record field"; #elif L==3 "Nuevo campo de ficha"; #elif L==4 "Nouveau champ de carte"; #elif L==5 "Nuevo campo de ficha"; // Okoteve traducción #elif L==6 "Nuovo campo di scheda"; #elif L==7 "Nowy rekord pola"; #elif L==8 "Novo campo de cartão"; #endif const char *Txt_New_survey = #if L==0 "Nova enquesta"; #elif L==1 "Neuer Umfrage"; #elif L==2 "New survey"; #elif L==3 "Nueva encuesta"; #elif L==4 "Nouveau sondage"; #elif L==5 "Nueva encuesta"; // Okoteve traducción #elif L==6 "Nuovo sondaggio"; #elif L==7 "Nowe badania"; #elif L==8 "Novo inquérito"; #endif const char *Txt_new_tag = // Tag used in test #if L==0 "nuevo descriptor"; // Necessita traduccio #elif L==1 "neuen Tag"; #elif L==2 "new tag"; #elif L==3 "nuevo descriptor"; #elif L==4 "nouveau descripteur"; #elif L==5 "nuevo descriptor"; // Okoteve traducción #elif L==6 "nuova etichetta"; #elif L==7 "nowy tag"; #elif L==8 "novo descritor"; #endif const char *Txt_New_thread = #if L==0 "Nueva discusión"; // Necessita traduccio #elif L==1 "Neuen Thread"; #elif L==2 "New thread"; #elif L==3 "Nueva discusión"; #elif L==4 "Nouveau fil"; #elif L==5 "Nueva discusión"; // Okoteve traducción #elif L==6 "Nuova discussione"; #elif L==7 "Nowy temat"; #elif L==8 "Novo thread"; #endif const char *Txt_New_type_of_degree = #if L==0 "Nuevo tipo de titulación"; // Necessita traduccio #elif L==1 "Neue Abschlussart"; #elif L==2 "New type of degree"; #elif L==3 "Nuevo tipo de titulación"; #elif L==4 "Nouveau type d'étude"; #elif L==5 "Nuevo tipo de titulación"; // Okoteve traducción #elif L==6 "Nuovo tipo di laurea"; #elif L==7 "Nowy rodzaj stopnia"; #elif L==8 "Novo tipo de titulação"; #endif const char *Txt_New_type_of_group = #if L==0 "Nuevo tipo de grupo"; // Necessita traduccio #elif L==1 "Neue Art der Gruppe"; #elif L==2 "New type of group"; #elif L==3 "Nuevo tipo de grupo"; #elif L==4 "Nouveau type de groupe"; #elif L==5 "Nuevo tipo de grupo"; // Okoteve traducción #elif L==6 "Nuovo tipo di gruppo"; #elif L==7 "Nowy typ grupy"; #elif L==8 "Novo tipo de grupo"; #endif const char *Txt_NEW_YEAR_GREETING = // Warning: it is very important to include %u in the following sentences #if L==0 "¡Feliz %u!"; // Necessita traduccio #elif L==1 "Happy %u!"; #elif L==2 "Happy %u!"; #elif L==3 "¡Feliz %u!"; #elif L==4 "Happy %u!"; #elif L==5 "¡Feliz %u!"; // Okoteve traducción #elif L==6 "Felice %u!"; #elif L==7 "Happy %u!"; #elif L==8 "Feliz %u!"; #endif const char *Txt_nick_email_or_ID = #if L==0 "@sobrenom, correu o ID (DNI/cèdula)"; #elif L==1 "@Benutzername, E-mail oder Ausweis-Nr."; #elif L==2 "@nick, e-mail or ID"; #elif L==3 "@apodo, correo o ID (DNI/cédula)"; #elif L==4 "@surnom, courrier ou numéro d'identité"; #elif L==5 "@apodo, correo o ID (DNI/cédula)"; // Okoteve traducción #elif L==6 "@nome-utente, e-mail o numero carta d'identità"; #elif L==7 "@pseudonim, e-mail lub ID"; #elif L==8 "@alcunha, e-mail ou nº identif."; #endif const char *Txt_nicks_emails_or_IDs_separated_by_commas = #if L==0 "@apodos, correos o ID (DNI/cédulas) separados por comas"; // Necessita traduccio #elif L==1 "@Benutzernamen, E-mails oder Ausweis-Nr. durch Kommas getrennt"; #elif L==2 "@nicks, e-mails or IDs separated by commas"; #elif L==3 "@apodos, correos o ID (DNI/cédulas) separados por comas"; #elif L==4 "@surnoms, courriers ou numéros d'identité séparés par des virgules"; #elif L==5 "@apodos, correos o ID (DNI/cédulas) separados por comas"; // Okoteve traducción #elif L==6 "@nomi-utenti, e-mail o numero carte d'identità separati da virgole"; #elif L==7 "@nicks, e-mails or IDs separated by commas"; // Potrzebujesz tlumaczenie #elif L==8 "@alcunhas, e-mails ou nºs. identif. separados por vírgulas"; #endif const char *Txt_Nickname = #if L==0 "Sobrenom"; #elif L==1 "Benutzername"; #elif L==2 "Nickname"; #elif L==3 "Apodo"; #elif L==4 "Surnom"; #elif L==5 "Apodo"; // Okoteve traducción #elif L==6 "Nome utente"; #elif L==7 "Pseudonim"; #elif L==8 "Alcunha"; #endif const char *Txt_Nickname_X_removed = // Warning: it is very important to include %s in the following sentences #if L==0 "Sobrenom @%s eliminat."; #elif L==1 "Benutzername @%s entfernt."; #elif L==2 "Nickname @%s removed."; #elif L==3 "Apodo @%s eliminado."; #elif L==4 "Surnom @%s supprimé."; #elif L==5 "Apodo @%s eliminado."; // Okoteve traducción #elif L==6 "Nome utente @%s rimosso."; #elif L==7 "Pseudonim @%s usuniete."; #elif L==8 "Alcunha @%s removido."; #endif const char *Txt_NO = #if L==0 "NO"; #elif L==1 "NEIN"; #elif L==2 "NO"; #elif L==3 "NO"; #elif L==4 "NON"; #elif L==5 "NAH&aACUTE;NIRI"; #elif L==6 "NO"; #elif L==7 "NO"; #elif L==8 "NÃO"; #endif const char *Txt_No = #if L==0 "No"; #elif L==1 "Nein"; #elif L==2 "No"; #elif L==3 "No"; #elif L==4 "Non"; #elif L==5 "Nahániri"; #elif L==6 "No"; #elif L==7 "No"; #elif L==8 "Não"; #endif const char *Txt_No_assignments = #if L==0 "No hay actividades."; // Necessita traduccio #elif L==1 "Keine Aufgaben."; #elif L==2 "No assignments."; #elif L==3 "No hay actividades."; #elif L==4 "Il n'y a pas d'activités."; #elif L==5 "No hay actividades."; // Okoteve traducción #elif L==6 "Non ci sono attività."; #elif L==7 "Nr zadania."; #elif L==8 "Não há atividades."; #endif const char *Txt_No_announcements_of_exams_of_X = // Warning: it is very important to include %s in the following sentences #if L==0 "No hay convocatorias de examen de %s."; // Necessita traduccio #elif L==1 "Keine Aufrufe für Prüfung von %s."; #elif L==2 "No announcements of exams of %s."; #elif L==3 "No hay convocatorias de examen de %s."; #elif L==4 "Aucune convocation à un examen de %s."; #elif L==5 "No hay convocatorias de examen de %s."; // Okoteve traducción #elif L==6 "Nessun appello d'esame di %s."; #elif L==7 "Brak ogloszen egzaminów %s."; #elif L==8 "Não chamadas para exame de %s."; #endif const char *Txt_no_course_of_origin = // Means: "message sent from any course" #if L==0 "sin asignatura de origen"; // Necessita traduccio #elif L==1 "no course of origin"; // Need Übersetzung #elif L==2 "no course of origin"; #elif L==3 "sin asignatura de origen"; #elif L==4 "no course of origin"; // Besoin de traduction #elif L==5 "sin asignatura de origen"; // Okoteve traducción #elif L==6 "senza corso di origine"; #elif L==7 "Oczywiscie nie pochodzenia"; #elif L==8 "no course of origin"; // Necessita de tradução #endif const char *Txt_No_COURSE_SELECTED = #if L==0 "Cap assignatura"; #elif L==1 "Keine Veranstaltung"; #elif L==2 "No course"; #elif L==3 "Ninguna asignatura"; #elif L==4 "Aucune matière"; #elif L==5 "Ninguna asignatura"; // Okoteve traducción #elif L==6 "Nessun corso"; #elif L==7 "No oczywiscie"; #elif L==8 "Nenhuma disciplina"; #endif const char *Txt_No_centres_have_been_created_in_this_institution = #if L==0 "No se han creado centros en esta institución."; // Necessita traduccio #elif L==1 "No centres have been created in this institution."; // Need Übersetzung #elif L==2 "No centres have been created in this institution."; #elif L==3 "No se han creado centros en esta institución."; #elif L==4 "No centres have been created in this institution."; // Besoin de traduction #elif L==5 "No se han creado centros en esta institución."; // Okoteve traducción #elif L==6 "No centres have been created in this institution."; // Bisogno di traduzione #elif L==7 "No centres have been created in this institution."; // Potrzebujesz tlumaczenie #elif L==8 "No centres have been created in this institution."; // Necessita de tradução #endif const char *Txt_No_countries_have_been_created = #if L==0 "No se han creado países."; // Necessita traduccio #elif L==1 "No countries have been created."; // Need Übersetzung #elif L==2 "No countries have been created."; #elif L==3 "No se han creado países."; #elif L==4 "No countries have been created."; // Besoin de traduction #elif L==5 "No se han creado países."; // Okoteve traducción #elif L==6 "No countries have been created."; // Bisogno di traduzione #elif L==7 "No countries have been created."; // Potrzebujesz tlumaczenie #elif L==8 "No countries have been created."; // Necessita de tradução #endif const char *Txt_No_courses_have_been_created_in_this_degree = #if L==0 "No se han creado asignaturas en esta titulación."; // Necessita traduccio #elif L==1 "No courses have been created in this degree."; // Need Übersetzung #elif L==2 "No courses have been created in this degree."; #elif L==3 "No se han creado asignaturas en esta titulación."; #elif L==4 "No courses have been created in this degree."; // Besoin de traduction #elif L==5 "No se han creado asignaturas en esta titulación."; // Okoteve traducción #elif L==6 "No courses have been created in this degree."; // Bisogno di traduzione #elif L==7 "No courses have been created in this degree."; // Potrzebujesz tlumaczenie #elif L==8 "No courses have been created in this degree."; // Necessita de tradução #endif const char *Txt_No_degrees_have_been_created_in_this_centre = #if L==0 "No se han creado titulaciones en este centro."; // Necessita traduccio #elif L==1 "No degrees have been created in this centre."; // Need Übersetzung #elif L==2 "No degrees have been created in this centre."; #elif L==3 "No se han creado titulaciones en este centro."; #elif L==4 "No degrees have been created in this centre."; // Besoin de traduction #elif L==5 "No se han creado titulaciones en este centro."; // Okoteve traducción #elif L==6 "No degrees have been created in this centre."; // Bisogno di traduzione #elif L==7 "No degrees have been created in this centre."; // Potrzebujesz tlumaczenie #elif L==8 "No degrees have been created in this centre."; // Necessita de tradução #endif const char *Txt_No_enrollment_requests = #if L==0 "No hay peticiones de inscripción."; // Necessita traduccio #elif L==1 "No enrollment requests."; // Need Übersetzung #elif L==2 "No enrollment requests."; #elif L==3 "No hay peticiones de inscripción."; #elif L==4 "No enrollment requests."; // Besoin de traduction #elif L==5 "No hay peticiones de inscripción."; // Okoteve traducción #elif L==6 "No enrollment requests."; // Bisogno di traduzione #elif L==7 "No enrollment requests."; // Potrzebujesz tlumaczenie #elif L==8 "No enrollment requests."; // Necessita de tradução #endif const char *Txt_No_events = #if L==0 "No hay eventos."; // Necessita traduccio #elif L==1 "Keine Ereignisse."; #elif L==2 "No events."; #elif L==3 "No hay eventos."; #elif L==4 "Il n'y a pas d'événements."; #elif L==5 "No hay eventos."; // Okoteve traducción #elif L==6 "Non ci sono eventi."; #elif L==7 "Nr wydarzenie."; #elif L==8 "Não há eventos."; #endif const char *Txt_No_file_index_html_index_htm_found_within_the_ZIP_file = #if L==0 "No se ha encontrado un archivo index.html / index.htm" " dentro del archivo ZIP."; // Necessita traduccio #elif L==1 "No file index.html / index.htm found" " within the ZIP file."; // Need Übersetzung #elif L==2 "No file index.html / index.htm found" " within the ZIP file."; #elif L==3 "No se ha encontrado un archivo index.html / index.htm" " dentro del archivo ZIP."; #elif L==4 "No file index.html / index.htm found" " within the ZIP file."; // Besoin de traduction #elif L==5 "No se ha encontrado un archivo index.html / index.htm" " dentro del archivo ZIP."; // Okoteve traducción #elif L==6 "Nessun documento index.html / index.htm trovato" " nel file ZIP."; #elif L==7 "Nr pliku indeks.html / indeks.htm znalezionych" " w ZIP plik."; #elif L==8 "No file index.html / index.htm found" " within the ZIP file."; // Necessita de tradução #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 #if L==0 "No se han creado grupos en la asignatura %s."; // Necessita traduccio #elif L==1 "No groups have been created in the course %s."; // Need Übersetzung #elif L==2 "No groups have been created in the course %s."; #elif L==3 "No se han creado grupos en la asignatura %s."; #elif L==4 "No groups have been created in the course %s."; // Besoin de traduction #elif L==5 "No se han creado grupos en la asignatura %s."; // Okoteve traducción #elif L==6 "Nessun gruppo è stato creato nel corso %s."; #elif L==7 "Nr grupy zostaly utworzone w ramach %s."; #elif L==8 "No groups have been created in the course %s."; // Necessita de tradução #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 #if L==0 "No se han creado grupos en la asignatura %s." " Por tanto, los usuarios especificados serán inscritos/eliminados en/de la asignatura."; // Necessita traduccio #elif L==1 "No groups have been created in the course %s." "Therefore, the specified users will be enrolled/removed in/from the course."; // Need Übersetzung #elif L==2 "No groups have been created in the course %s." "Therefore, the specified users will be enrolled/removed in/from the course."; #elif L==3 "No se han creado grupos en la asignatura %s." " Por tanto, los usuarios especificados serán inscritos/eliminados en/de la asignatura."; #elif L==4 "No groups have been created in the course %s." "Therefore, the specified users will be enrolled/removed in/from the course."; // Besoin de traduction #elif L==5 "No se han creado grupos en la asignatura %s." " Por tanto, los usuarios especificados serán inscritos/eliminados en/de la asignatura."; // Okoteve traducción #elif L==6 "Nessun gruppo è stato creato nel corso %s." "Dunque, gli utenti specificati saranno registrati/rimossi in/dal corso."; #elif L==7 "Nr grupy zostaly utworzone w ramach %s." "Dlatego okreslonych uzytkowników zostanie zarejestrowany / usuniete w / z kursu."; #elif L==8 "No groups have been created in the course %s." "Therefore, the specified users will be enrolled/removed in/from the course."; // Necessita de tradução #endif const char *Txt_No_INDEX = // Short version of "Number" (as an index)... #if L==0 "Nº"; // Necessita traduccio #elif L==1 "Anzahl"; #elif L==2 "#"; #elif L==3 "Nº"; #elif L==4 "Nombre"; #elif L==5 "Papanga"; #elif L==6 "Numero"; #elif L==7 "Numer"; #elif L==8 "Nº"; #endif const char *Txt_No_information_available = #if L==0 "No hay información disponible."; // Necessita traduccio #elif L==1 "Keine Informationen verfügbar."; #elif L==2 "No information available."; #elif L==3 "No hay información disponible."; #elif L==4 "Aucune information disponible."; #elif L==5 "No hay información disponible."; // Okoteve traducción #elif L==6 "Nessuna informazione disponibile."; #elif L==7 "Brak informacji."; #elif L==8 "Não há informação disponível."; #endif const char *Txt_No_institutions_have_been_created_in_this_country = #if L==0 "No se han creado instituciones en este país."; // Necessita traduccio #elif L==1 "No institutions have been created in this country."; // Need Übersetzung #elif L==2 "No institutions have been created in this country."; #elif L==3 "No se han creado instituciones en este país."; #elif L==4 "No institutions have been created in this country."; // Besoin de traduction #elif L==5 "No se han creado instituciones en este país."; // Okoteve traducción #elif L==6 "No institutions have been created in this country."; // Bisogno di traduzione #elif L==7 "No institutions have been created in this country."; // Potrzebujesz tlumaczenie #elif L==8 "No institutions have been created in this country."; // Necessita de tradução #endif const char *Txt_No_BR_msgs = #if L==0 "Nº
mens."; // Necessita traduccio #elif L==1 "Anzahl
Nachr."; #elif L==2 "No.
msgs."; #elif L==3 "Nº
mens."; #elif L==4 "Nombre
msgs."; #elif L==5 "Nº
mens."; // Okoteve traducción #elif L==6 "Num.
msg."; #elif L==7 "Numer
msgs."; #elif L==8 "Nº
mens."; #endif const char *Txt_No_new_posts = #if L==0 "No hay mensajes nuevos"; // Necessita traduccio #elif L==1 "Keine neuen Nachrichten"; #elif L==2 "No new posts"; #elif L==3 "No hay mensajes nuevos"; #elif L==4 "Pas de nouveaux messages"; #elif L==5 "No hay mensajes nuevos"; // Okoteve traducción #elif L==6 "Nessun nuovo post"; #elif L==7 "Brak nowych postów"; #elif L==8 "Sem posts novos"; #endif const char *Txt_No_notices = #if L==0 "No hay avisos."; // Necessita traduccio #elif L==1 "Keine Ankündigungen."; #elif L==2 "No notices."; #elif L==3 "No hay avisos."; #elif L==4 "Il n'y a pas d'avis."; #elif L==5 "No hay avisos."; // Okoteve traducción #elif L==6 "Non ci sono avvisi."; #elif L==7 "Brak ogloszen."; #elif L==8 "Não há avisos."; #endif const char *Txt_No_notifications_for_you = #if L==0 "No tiene notificaciones."; // Necessita traduccio #elif L==1 "Keine Anmeldungen für Sie."; #elif L==2 "No notifications for you."; #elif L==3 "No tiene notificaciones."; #elif L==4 "Il n'y a pas de notifications pour vous."; #elif L==5 "No tiene notificaciones."; // Okoteve traducción #elif L==6 "Non ci sono notifiche per te."; #elif L==7 "Brak powiadomienia dla Ciebie."; #elif L==8 "Não há notificações para você."; #endif const char *Txt_No_of_files = #if L==0 "Nombre d'arxius"; #elif L==1 "Anzahl der Dateien"; #elif L==2 "Number of files"; #elif L==3 "Nº de archivos"; #elif L==4 "Nombre de fichiers"; #elif L==5 "Nº de archivos"; // Okoteve traducción #elif L==6 "Numero di file"; #elif L==7 "Liczba pliki"; #elif L==8 "Nº de arquivos"; #endif const char *Txt_No_of_files_in_common_zones = #if L==0 "Nombre d'arxius compartits"; #elif L==1 "Anzahl der freigegebene Dateien"; #elif L==2 "Number of shared files"; #elif L==3 "Nº de archivos compartidos"; #elif L==4 "Nombre de fichiers partagés"; #elif L==5 "Nº de archivos compartidos"; // Okoteve traducción #elif L==6 "Numero di file condivisi"; #elif L==7 "Liczba pliki udostępnione"; #elif L==8 "Nº de arquivos compartilhados"; #endif const char *Txt_No_of_files_in_documents_zones = #if L==0 "Nº de archivos en zonas de documentos"; // Necessita traduccio #elif L==1 "Anzahl der Dateien im Dokumente-Bereich"; #elif L==2 "Number of files in documents area"; #elif L==3 "Nº de archivos en zonas de documentos"; #elif L==4 "Nombre de fichiers dans les zones de documents"; #elif L==5 "Nº de archivos en zonas de documentos"; // Okoteve traducción #elif L==6 "Numero di file nell'area documenti"; #elif L==7 "Number of files in documents area"; // Potrzebujesz tlumaczenie #elif L==8 "Nº de arquivos em zonas de documentos"; #endif const char *Txt_No_of_folders = #if L==0 "Nombre de carpetes"; #elif L==1 "Anzahl der Verzeichnisse"; #elif L==2 "No. of folders"; #elif L==3 "Nº de carpetas"; #elif L==4 "Nombre de répertoires"; #elif L==5 "Nº de carpetas"; // Okoteve traducción #elif L==6 "Numero di cartelle"; #elif L==7 "Liczba folderów"; #elif L==8 "Nº de diretórios"; #endif const char *Txt_No_of_forums = #if L==0 "Nº de foros"; // Necessita traduccio #elif L==1 "Anzahl der Foren"; #elif L==2 "No. of forums"; #elif L==3 "Nº de foros"; #elif L==4 "Nombre de forums"; #elif L==5 "Nº de foros"; // Okoteve traducción #elif L==6 "Numero di forum"; #elif L==7 "Liczba forum"; #elif L==8 "Nº de fóruns"; #endif const char *Txt_No_of_BR_groups = #if L==0 "Nº de
grupos"; // Necessita traduccio #elif L==1 "Anzahl der
Gruppen"; #elif L==2 "No. of
groups"; #elif L==3 "Nº de
grupos"; #elif L==4 "Nombre de
groupes"; #elif L==5 "Nº de
grupos"; // Okoteve traducción #elif L==6 "Numero di
gruppi"; #elif L==7 "Liczba z
grupy"; #elif L==8 "Nº de
grupos"; #endif const char *Txt_No_of_indicators = #if L==0 "Nº de indicadores"; // Necessita traduccio #elif L==1 "Anzahl der Indikatoren"; #elif L==2 "No. of indicators"; #elif L==3 "Nº de indicadores"; #elif L==4 "Nombre d'indicateurs"; #elif L==5 "Nº de indicadores"; // Okoteve traducción #elif L==6 "Numero di indicatori"; #elif L==7 "Liczba z wskazniki"; #elif L==8 "Nº de indocadores"; #endif const char *Txt_No_of_BR_lines = #if L==0 "Nº de
líneas"; // Necessita traduccio #elif L==1 "Anzahl der
Zeilen"; #elif L==2 "No. of
lines"; #elif L==3 "Nº de
líneas"; #elif L==4 "Nombre de
lignes"; #elif L==5 "Nº de
líneas"; // Okoteve traducción #elif L==6 "Numero di
linee"; #elif L==7 "Liczba z
linie"; #elif L==8 "Nº de
linhas"; #endif const char *Txt_No_of_messages = #if L==0 "Nº de mensajes"; // Necessita traduccio #elif L==1 "Anzahl der Nachrichten"; #elif L==2 "No. of messages"; #elif L==3 "Nº de mensajes"; #elif L==4 "Nombre de messages"; #elif L==5 "Nº de mensajes"; // Okoteve traducción #elif L==6 "Numero di messaggi"; #elif L==7 "Liczba wiadomosci"; #elif L==8 "Nº de mensagens"; #endif const char *Txt_No_of_messages_BR_per_forum = #if L==0 "Nº de mensajes
por foro"; // Necessita traduccio #elif L==1 "Anzahl der Nachrichten
pro Forum"; #elif L==2 "No. of messages
per forum"; #elif L==3 "Nº de mensajes
por foro"; #elif L==4 "Nombre de messages
par forum"; #elif L==5 "Nº de mensajes
por foro"; // Okoteve traducción #elif L==6 "Numero di messaggi
per forum"; #elif L==7 "Liczba wiadomosci
per forum"; #elif L==8 "Nº de mensagens
por fórum"; #endif const char *Txt_No_of_messages_BR_per_thread = #if L==0 "Nº de mensajes
por discusión"; // Necessita traduccio #elif L==1 "Anzahl der Nachrichten
pro Thread"; #elif L==2 "No. of messages
per thread"; #elif L==3 "Nº de mensajes
por discusión"; #elif L==4 "Nombre de messages
par fil"; #elif L==5 "Nº de mensajes
por discusión"; // Okoteve traducción #elif L==6 "Numero di messaggi
per discussione"; #elif L==7 "Liczba wiadomosci
per watku"; #elif L==8 "Nº de mensagens
por thread"; #endif const char *Txt_No_of_private_files = #if L==0 "Nº de archivos privados"; // Necessita traduccio #elif L==1 "Anzahl der private Dateien"; #elif L==2 "Number of private files"; #elif L==3 "Nº de archivos privados"; #elif L==4 "Nombre de fichiers privés"; #elif L==5 "Nº de archivos privados"; // Okoteve traducción #elif L==6 "Numero di file privati"; #elif L==7 "Liczba prywatne pliki"; #elif L==8 "Nº de arquivos privados"; #endif const char *Txt_No_of_public_files = #if L==0 "Nº de archivos públicos"; // Necessita traduccio #elif L==1 "Anzahl der öffentliche Dateien"; #elif L==2 "Number of public files"; #elif L==3 "Nº de archivos públicos"; #elif L==4 "Nombre de fichiers publics"; #elif L==5 "Nº de archivos públicos"; // Okoteve traducción #elif L==6 "Numero di file pubblici"; #elif L==7 "Liczba publicznych pliki"; #elif L==8 "Nº de arquivos públicos"; #endif const char *Txt_No_of_questions = #if L==0 "Nombre de preguntes"; #elif L==1 "Anzahl der Fragen"; #elif L==2 "No. of questions"; #elif L==3 "Nº de preguntas"; #elif L==4 "Nombre de questions"; #elif L==5 "Nº de preguntas"; // Okoteve traducción #elif L==6 "Numero di domande"; #elif L==7 "Liczba pytań"; #elif L==8 "Nº de questões"; #endif const char *Txt_No_of_threads = #if L==0 "Nº de discusiones"; // Necessita traduccio #elif L==1 "Anzahl der Threads"; #elif L==2 "No. of threads"; #elif L==3 "Nº de discusiones"; #elif L==4 "Nombre de fils"; #elif L==5 "Nº de discusiones"; // Okoteve traducción #elif L==6 "Numero di discussioni"; #elif L==7 "Liczba watków"; #elif L==8 "Nº de threads"; #endif const char *Txt_No_of_threads_BR_per_forum = #if L==0 "Nº de discusiones
por foro"; // Necessita traduccio #elif L==1 "Anzahl der Threads
pro Forum"; #elif L==2 "No. of threads
per forum"; #elif L==3 "Nº de discusiones
por foro"; #elif L==4 "Nombre de fils
par forum"; #elif L==5 "Nº de discusiones
por foro"; // Okoteve traducción #elif L==6 "Numero di discussioni
per forum"; #elif L==7 "Liczba watków
per forum"; #elif L==8 "Nº de threads
por fórum"; #endif const char *Txt_Number_of_BR_times_that_BR_questions_BR_have_been_BR_responded = #if L==0 "Nº de
veces
que se ha
respondido"; // Necessita traduccio #elif L==1 "Number of
times that
questions
have been
responded"; // Need Übersetzung #elif L==2 "Number of
times that
questions
have been
responded"; #elif L==3 "Nº de
veces
que se ha
respondido"; #elif L==4 "Number of
times that
questions
have been
responded"; // Besoin de traduction #elif L==5 "Nº de
veces
que se ha
respondido"; // Okoteve traducción #elif L==6 "Number of
times that
questions
have been
responded"; // Bisogno di traduzione #elif L==7 "Number of
times that
questions
have been
responded"; // Potrzebujesz tlumaczenie #elif L==8 "Number of
times that
questions
have been
responded"; // Necessita de tradução #endif const char *Txt_No_of_users = #if L==0 "Nombre d'usuaris"; // Necessita traduccio #elif L==1 "Anzahl der Benutzer"; #elif L==2 "No. of users"; #elif L==3 "Nº de usuarios"; #elif L==4 "Nombre d'utilisateurs"; #elif L==5 "Nº de usuarios"; // Okoteve traducción #elif L==6 "Numero di utenti"; #elif L==7 "Liczba uzytkowników"; #elif L==8 "Nº de utilizadores"; #endif const char *Txt_No_of_users_who_will_be_notified_by_e_mail = #if L==0 "Nº de usuarios que serán notificados por correo electrónico"; // Necessita traduccio #elif L==1 "Anzahl der Benutzer, um benachrichtigt zu werden per E-Mail"; #elif L==2 "No. of users who will be notified by e-mail"; #elif L==3 "Nº de usuarios que serán notificados por correo electrónico"; #elif L==4 "Nombre d'utilisateurs qui seront notifiés par e-mail"; #elif L==5 "Nº de usuarios que serán notificados por correo electrónico"; // Okoteve traducción #elif L==6 "Numero di utenti che saranno notificati via e-mail"; #elif L==7 "Liczba uzytkowników, którzy zostana powiadomieni przez e-mail"; #elif L==8 "Nº de utilizadores que serão notificados por e-mail"; #endif const char *Txt_No_questions_found_matching_your_search_criteria = #if L==0 "No hay preguntas con el criterio de búsqueda seleccionado."; // Necessita traduccio #elif L==1 "Keine Testfragen gefunden, die mit Ihrer Suchanfrage entsprechen."; #elif L==2 "No questions found matching your search criteria."; #elif L==3 "No hay preguntas con el criterio de búsqueda seleccionado."; #elif L==4 "Aucune question trouvée correspondant à vos critères de recherche."; #elif L==5 "No hay preguntas con el criterio de búsqueda seleccionado."; // Okoteve traducción #elif L==6 "Non ci sono domande trovate con il criterio di ricerca selezionato."; #elif L==7 "Brak pytań spelniajacych zadane kryteria wyszukiwania."; #elif L==8 "Não questões com os seus critérios de pesquisa selecionados."; #endif const char *Txt_No_results = #if L==0 "No hi ha resultats."; #elif L==1 "Keine Ergebnisse."; #elif L==2 "No results."; #elif L==3 "No hay resultados."; #elif L==4 "Pas de résultats."; #elif L==5 "No hay resultados."; // Okoteve traducción #elif L==6 "Nessun risultato."; #elif L==7 "Brak wyników."; #elif L==8 "Nenhum resultado."; #endif const char *Txt_no_subject = #if L==0 "sin asunto"; // Necessita traduccio #elif L==1 "kein Betreff"; #elif L==2 "no subject"; #elif L==3 "sin asunto"; #elif L==4 "pas de sujet"; #elif L==5 "sin asunto"; // Okoteve traducción #elif L==6 "nessun oggetto"; #elif L==7 "bez tematu"; #elif L==8 "sem assunto"; #endif const char *Txt_No_surveys = #if L==0 "No hi ha enquestes."; #elif L==1 "Keine Umfragen."; #elif L==2 "No surveys."; #elif L==3 "No hay encuestas."; #elif L==4 "Il n'y a pas de sondages."; #elif L==5 "No hay encuestas."; // Okoteve traducción #elif L==6 "Non ci sono sondaggi."; #elif L==7 "Brak badan."; #elif L==8 "Não há inquéritos."; #endif const char *Txt_no_tags = // Tags used in test #if L==0 "sin descriptores"; // Necessita traduccio #elif L==1 "keine Tags"; #elif L==2 "no tags"; #elif L==3 "sin descriptores"; #elif L==4 "pas de descripteurs"; #elif L==5 "sin descriptores"; // Okoteve traducción #elif L==6 "senza etichette"; #elif L==7 "zadnych tagów"; #elif L==8 "sem descritores"; #endif const char *Txt_No_teachers_or_students_found = #if L==0 "No hay profesores ni estudiantes."; // Necessita traduccio #elif L==1 "Keine Lehrer oder Studenten gefunden."; #elif L==2 "No teachers or students found."; #elif L==3 "No hay profesores ni estudiantes."; #elif L==4 "Aucun enseignant ou étudiant trouvé."; #elif L==5 "No hay profesores ni estudiantes."; // Okoteve traducción #elif L==6 "Nessun professore o studente trovato."; #elif L==7 "Nie znaleziono nauczycieli i uczniów."; #elif L==8 "Nenhum professor ou estudante encontrado."; #endif const char *Txt_No_test_questions_in_X = // Warning: it is very important to include %s in the following sentences #if L==0 "No hay preguntas de test en %s."; // Necessita traduccio #elif L==1 "Keine Testfragen im %s."; #elif L==2 "No test questions in %s."; #elif L==3 "No hay preguntas de test en %s."; #elif L==4 "Il n'y a pas de questions de test dans %s."; #elif L==5 "No hay preguntas de test en %s."; // Okoteve traducción #elif L==6 "Non ci sono domande di test in %s."; #elif L==7 "Brak pytań testowych %s."; #elif L==8 "Não existem questões de test em %s."; #endif const char *Txt_No_user_has_been_eliminated = #if L==0 "No se ha eliminado ningún usuario."; // Necessita traduccio #elif L==1 "No user has been eliminated."; // Need Übersetzung #elif L==2 "No user has been eliminated."; #elif L==3 "No se ha eliminado ningún usuario."; #elif L==4 "No user has been eliminated."; // Besoin de traduction #elif L==5 "No se ha eliminado ningún usuario."; // Okoteve traducción #elif L==6 "Nessun utente è stato rimosso."; #elif L==7 "Zaden uzytkownik nie zostal wyeliminowany."; #elif L==8 "No user has been eliminated."; // Necessita de tradução #endif const char *Txt_No_user_has_been_enrolled = #if L==0 "No se ha inscrito ningún usuario."; // Necessita traduccio #elif L==1 "No user has been enrolled."; // Need Übersetzung #elif L==2 "No user has been enrolled."; #elif L==3 "No se ha inscrito ningún usuario."; #elif L==4 "No user has been enrolled."; // Besoin de traduction #elif L==5 "No se ha inscrito ningún usuario."; // Okoteve traducción #elif L==6 "Nessun utente è stato registrato."; #elif L==7 "Zaden uzytkownik nie zostal zarejestrowany."; #elif L==8 "No user has been enrolled."; // Necessita de tradução #endif const char *Txt_No_user_has_been_removed = #if L==0 "No se ha eliminado ningún usuario."; // Necessita traduccio #elif L==1 "No user has been removed."; // Need Übersetzung #elif L==2 "No user has been removed."; #elif L==3 "No se ha eliminado ningún usuario."; #elif L==4 "No user has been removed."; // Besoin de traduction #elif L==5 "No se ha eliminado ningún usuario."; // Okoteve traducción #elif L==6 "Nessun utente è stato rimosso."; #elif L==7 "Zaden uzytkownik nie zostal usuniety."; #elif L==8 "No user has been removed."; // Necessita de tradução #endif const char *Txt_No_users_found[Rol_NUM_ROLES] = { #if L==0 // Rol_ROLE_UNKNOWN "No hay usuarios." // Necessita traduccio #elif L==1 "Keine Benutzer gefunden." #elif L==2 "No users found." #elif L==3 "No hay usuarios." #elif L==4 "Aucun utilisateur trouvé." #elif L==5 "No hay usuarios." // Okoteve traducción #elif L==6 "Nessun utente trovato." #elif L==7 "Nie znaleziono uzytkowników." #elif L==8 "Nenhum utilizador encontrado." #endif , #if L==0 // Rol_ROLE_GUEST "No hi ha convidats." #elif L==1 "Keine Eingeladen gefunden." #elif L==2 "No guests found." #elif L==3 "No hay invitados." #elif L==4 "Aucun invité trouvé." #elif L==5 "No hay invitados." // Okoteve traducción #elif L==6 "Nessun ospite trovato." #elif L==7 "Nie znaleziono zaproszeni." #elif L==8 "Nenhum convidado encontrado." #endif , #if L==0 // Rol_ROLE_VISITOR "No hay visitantes." // Necessita traduccio #elif L==1 "Keine Besucher gefunden." #elif L==2 "No visitors found." #elif L==3 "No hay visitantes." #elif L==4 "Aucun visiteur trouvé." #elif L==5 "No hay visitantes." // Okoteve traducción #elif L==6 "Nessun visitatore trovato." #elif L==7 "No visitors found." // Potrzebujesz tlumaczenie #elif L==8 "Nenhum visitante encontrado." #endif , #if L==0 // Rol_ROLE_STUDENT "No hay estudiantes." // Necessita traduccio #elif L==1 "Keine Studenten gefunden." #elif L==2 "No students found." #elif L==3 "No hay estudiantes." #elif L==4 "Aucun étudiant trouvé." #elif L==5 "No hay estudiantes." // Okoteve traducción #elif L==6 "Non ci sono studenti." #elif L==7 "No students found." // Potrzebujesz tlumaczenie #elif L==8 "Nenhum estudante encontrado." #endif , #if L==0 // Rol_ROLE_TEACHER "No hay profesores." // Necessita traduccio #elif L==1 "Keine Lehrkräften gefunden." #elif L==2 "No teachers found." #elif L==3 "No hay profesores." #elif L==4 "Aucun enseignant trouvé." #elif L==5 "No hay profesores." // Okoteve traducción #elif L==6 "Non ci sono professori." #elif L==7 "Nie znaleziono nauczycieli." #elif L==8 "Nenhum professor encontrado." #endif , #if L==0 // Rol_ROLE_DEG_ADMIN "No hay administradores." // Necessita traduccio #elif L==1 "Keine Administratoren gefunden." #elif L==2 "No administrators found." #elif L==3 "No hay administradores." #elif L==4 "Aucun administrateur trouvé." #elif L==5 "No hay administradores." // Okoteve traducción #elif L==6 "Non ci sono amministratori." #elif L==7 "Nie znaleziono administratorów." #elif L==8 "Nenhum administrador encontrado." #endif , #if L==0 // Rol_ROLE_CTR_ADMIN "No hay administradores." // Necessita traduccio #elif L==1 "Keine Administratoren gefunden." #elif L==2 "No administrators found." #elif L==3 "No hay administradores." #elif L==4 "Aucun administrateur trouvé." #elif L==5 "No hay administradores." // Okoteve traducción #elif L==6 "Non ci sono amministratori." #elif L==7 "Nie znaleziono administratorów." #elif L==8 "Nenhum administrador encontrado." #endif , #if L==0 // Rol_ROLE_INS_ADMIN "No hay administradores." // Necessita traduccio #elif L==1 "Keine Administratoren gefunden." #elif L==2 "No administrators found." #elif L==3 "No hay administradores." #elif L==4 "Aucun administrateur trouvé." #elif L==5 "No hay administradores." // Okoteve traducción #elif L==6 "Non ci sono amministratori." #elif L==7 "Nie znaleziono administratorów." #elif L==8 "Nenhum administrador encontrado." #endif , #if L==0 // Rol_ROLE_SUPERUSER "No hay superusuarios." // Necessita traduccio #elif L==1 "Keine Superuser gefunden." #elif L==2 "No superusers found." #elif L==3 "No hay superusuarios." #elif L==4 "Aucun superutilisateur trouvé." #elif L==5 "No hay superusuarios." // Okoteve traducción #elif L==6 "Non ci sono superutenti." #elif L==7 "Nie znaleziono superużytkownika." #elif L==8 "Nenhum superutilizador encontrado." #endif }; const char *Txt_nobody_else_can_access_this_content = #if L==0 "ningú més pot accedir a aquest contingut"; #elif L==1 "Niemand sonst kann auf diese Inhalte"; #elif L==2 "nobody else can access this content"; #elif L==3 "nadie más puede acceder a este contenido"; #elif L==4 "personne d'autre ne peut accéder à ce contenu"; #elif L==5 "nadie más puede acceder a este contenido"; // Okoteve traducción #elif L==6 "nessun altro può accedere a questo contenuto"; #elif L==7 "nikt inny nie moze uzyskac dostepu do tej zawartosci"; #elif L==8 "ninguém mais pode acessar este conteúdo"; #endif const char *Txt_non_blank_QUESTIONS = #if L==0 "contestades"; #elif L==1 "Non-blank"; #elif L==2 "non-blank"; #elif L==3 "contestadas"; #elif L==4 "non vide"; #elif L==5 "contestadas"; // Okoteve traducción #elif L==6 "risposte"; #elif L==7 "niepustych"; #elif L==8 "respondidas"; #endif const char *Txt_Non_blank_BR_questions = #if L==0 "Preguntes
contestades"; #elif L==1 "Non-blank
Fragen"; #elif L==2 "Non-blank
questions"; #elif L==3 "Preguntas
contestadas"; #elif L==4 "Questions
non vide"; #elif L==5 "Preguntas
contestadas"; // Okoteve traducción #elif L==6 "Domande
risposte"; #elif L==7 "Niepustych
pytania"; #elif L==8 "Questões
respondidas"; #endif const char *Txt_Nothing_has_been_pasted_because_the_clipboard_is_empty_ = #if L==0 "No se pegado nada porque el portapapeles está vacío." " Trate de copiar y pegar de nuevo."; // Necessita traduccio #elif L==1 "Es konnten keine Daten eingefügt werden. Der Zwischenspeicher ist leer." "Versuchen Sie den Kopieren-Einfügen-Vorgang bitte erneut."; #elif L==2 "Nothing has been pasted because the clipboard is empty." "Try copy-paste again."; #elif L==3 "No se pegado nada porque el portapapeles está vacío." " Trate de copiar y pegar de nuevo."; #elif L==4 "Nothing has been pasted because the clipboard is empty." "Try copy-paste again."; // Besoin de traduction #elif L==5 "No se pegado nada porque el portapapeles está vacío." " Trate de copiar y pegar de nuevo."; // Okoteve traducción #elif L==6 "Niente è stato copiato perchè la bacheca è piena." "Prova copia-incolla nuovamente."; #elif L==7 "Nic nie zostal wklejony bo schowek jest pusty." "Spróbuj ponownie kopiuj-wklej."; #elif L==8 "Nothing has been pasted because the clipboard is empty." "Try copy-paste again."; // Necessita de tradução #endif const char *Txt_NOTICE_Active_SINGULAR = #if L==0 "Activo"; // Necessita traduccio #elif L==1 "Aktive"; #elif L==2 "Active"; #elif L==3 "Activo"; #elif L==4 "Active"; #elif L==5 "Activo"; // Okoteve traducción #elif L==6 "Attivo"; #elif L==7 "Active"; #elif L==8 "Ativo"; #endif const char *Txt_NOTICE_Active_BR_notices = #if L==0 "Avisos
activos"; // Necessita traduccio #elif L==1 "Aktive
Ankündigungen"; #elif L==2 "Active
notices"; #elif L==3 "Avisos
activos"; #elif L==4 "Avis
actives"; #elif L==5 "Avisos
activos"; // Okoteve traducción #elif L==6 "Avvisi
attivi"; #elif L==7 "Active
Ogloszenia"; #elif L==8 "Avisos
ativos"; #endif const char *Txt_NOTICE_Active_Mark_as_obsolete = #if L==0 "Actiu; marcar com obsolet"; #elif L==1 "Aktive; marke als veraltet"; #elif L==2 "Active; mark as obsolete"; #elif L==3 "Activo; marcar como obsoleto"; #elif L==4 "Active; marquer comme obsolète"; #elif L==5 "Activo; marcar como obsoleto"; // Okoteve traducción #elif L==6 "Attivo; segnare come obsoleto"; #elif L==7 "Active; zaznaczy jako przestarzale"; #elif L==8 "Ativo; marcar como obsoleto"; #endif const char *Txt_NOTICE_Deleted_BR_notices = #if L==0 "Avisos
eliminados"; // Necessita traduccio #elif L==1 "Gelöscht
Ankündigungen"; #elif L==2 "Deleted
notices"; #elif L==3 "Avisos
eliminados"; #elif L==4 "Avis
supprimés"; #elif L==5 "Avisos
eliminados"; // Okoteve traducción #elif L==6 "Avvisi
rimossi"; #elif L==7 "Usuniete
notices"; #elif L==8 "Avisos
suprimidos"; #endif const char *Txt_NOTICE_Obsolete_SINGULAR = #if L==0 "Obsoleto"; // Necessita traduccio #elif L==1 "Veraltet"; #elif L==2 "Obsolete"; #elif L==3 "Obsoleto"; #elif L==4 "Obsolète"; #elif L==5 "Obsoleto"; // Okoteve traducción #elif L==6 "Obsoleto"; #elif L==7 "Przestarzaly"; #elif L==8 "Obsoleto"; #endif const char *Txt_NOTICE_Obsolete_BR_notices = #if L==0 "Avisos
obsoletos"; // Necessita traduccio #elif L==1 "Veraltet
Ankündigungen"; #elif L==2 "Obsolete
notices"; #elif L==3 "Avisos
obsoletos"; #elif L==4 "Avis
obsolètes"; #elif L==5 "Avisos
obsoletos"; // Okoteve traducción #elif L==6 "Avvisi
obsoleti"; #elif L==7 "Przestarzaly
Ogloszenia"; #elif L==8 "Avisos
obsoletos"; #endif const char *Txt_NOTICE_Obsolete_Mark_as_active = #if L==0 "Obsolet; marcar com actiu"; #elif L==1 "Veraltet; marke als aktive"; #elif L==2 "Obsolete; mark as active"; #elif L==3 "Obsoleto; marcar como activo"; #elif L==4 "Obsolète; marquer comme active"; #elif L==5 "Obsoleto; marcar como activo"; // Okoteve traducción #elif L==6 "Obsoleto; segnare come attivo"; #elif L==7 "Przestarzaly; znak towarowy jako aktywnych"; #elif L==8 "Obsoleto; marcar como ativo"; #endif const char *Txt_Notice = #if L==0 "Avís"; #elif L==1 "Ankündigung"; #elif L==2 "Notice"; #elif L==3 "Aviso"; #elif L==4 "Avis"; #elif L==5 "Marandu"; #elif L==6 "Avviso"; #elif L==7 "Informacja"; #elif L==8 "Aviso"; #endif const char *Txt_Notice_created = #if L==0 "Avís creat."; #elif L==1 "Ankündigung erstellt."; #elif L==2 "Notice created."; #elif L==3 "Aviso creado."; #elif L==4 "Avis créé."; #elif L==5 "Aviso creado."; // Okoteve traducción #elif L==6 "Avviso creato."; #elif L==7 "Zawiadomienie stworzony."; #elif L==8 "Aviso criado."; #endif const char *Txt_Notices = #if L==0 "Avisos"; #elif L==1 "Ankündigungen"; #elif L==2 "Notices"; #elif L==3 "Avisos"; #elif L==4 "Avis"; #elif L==5 "Marandu"; #elif L==6 "Avvisi"; #elif L==7 "Ogloszenia"; #elif L==8 "Avisos"; #endif const char *Txt_NOTIF_new_SINGULAR = #if L==0 "nueva"; // Necessita traduccio #elif L==1 "neue"; #elif L==2 "new"; #elif L==3 "nueva"; #elif L==4 "nouvelle"; #elif L==5 "nueva"; // Okoteve traducción #elif L==6 "nuova"; #elif L==7 "nowy"; #elif L==8 "nova"; #endif const char *Txt_NOTIF_new_PLURAL = #if L==0 "nuevas"; // Necessita traduccio #elif L==1 "neue"; #elif L==2 "new"; #elif L==3 "nuevas"; #elif L==4 "nouvelles"; #elif L==5 "nuevas"; // Okoteve traducción #elif L==6 "nuove"; #elif L==7 "nowy"; #elif L==8 "novas"; #endif const char *Txt_NOTIFICATION_STATUS[Ntf_NUM_STATUS_TXT] = { #if L==0 // Ntf_STATUS_NO_EMAIL "No" // Necessita traduccio #elif L==1 "Nein" #elif L==2 "No" #elif L==3 "No" #elif L==4 "Non" #elif L==5 "Nahániri" #elif L==6 "No" #elif L==7 "No" #elif L==8 "Não" #endif , #if L==0 // Ntf_STATUS_EMAIL_PENDING "Pendiente" // Necessita traduccio #elif L==1 "Offen" #elif L==2 "Pending" #elif L==3 "Pendiente" #elif L==4 "En attente" #elif L==5 "Pendiente" // Okoteve traducción #elif L==6 "In attesa" #elif L==7 "Do czasu" #elif L==8 "Pendente" #endif , #if L==0 // Ntf_STATUS_EMAIL_CANCELLED "Cancelado" // Necessita traduccio #elif L==1 "Abgebrochen" #elif L==2 "Cancelled" #elif L==3 "Cancelado" #elif L==4 "Annulé" #elif L==5 "Cancelado" // Okoteve traducción #elif L==6 "Rimosso" #elif L==7 "Odwolany" #elif L==8 "Cancelado" #endif , #if L==0 // Ntf_STATUS_EMAIL_SENT "Enviado" // Necessita traduccio #elif L==1 "Gesendet" #elif L==2 "Sent" #elif L==3 "Enviado" #elif L==4 "Envoyée" #elif L==5 "Enviado" // Okoteve traducción #elif L==6 "Inviata" #elif L==7 "Wyslane" #elif L==8 "Enviada" #endif }; const char *Txt_notification = #if L==0 "notificació"; #elif L==1 "Anmeldung"; #elif L==2 "notification"; #elif L==3 "notificación"; #elif L==4 "notification"; #elif L==5 "momarandu"; #elif L==6 "notifica"; #elif L==7 "powiadomienie"; #elif L==8 "notificação"; #endif const char *Txt_Notifications = #if L==0 "Notificacions"; #elif L==1 "Anmeldungen"; #elif L==2 "Notifications"; #elif L==3 "Notificaciones"; #elif L==4 "Notifications"; #elif L==5 "Momarandu"; #elif L==6 "Notifiche"; #elif L==7 "Powiadomienia"; #elif L==8 "Notificações"; #endif const char *Txt_notifications = #if L==0 "notificacions"; #elif L==1 "Anmeldungen"; #elif L==2 "notifications"; #elif L==3 "notificaciones"; #elif L==4 "notifications"; #elif L==5 "momarandu"; #elif L==6 "notifiche"; #elif L==7 "powiadomienia"; #elif L==8 "notificações"; #endif const char *Txt_NOTIFY_EVENTS_PLURAL[Ntf_NUM_NOTIFY_EVENTS] = { #if L==0 // Ntf_EVENT_UNKNOWN "Esdeveniments desconeguts" #elif L==1 "Unbekannte Ereignisse" #elif L==2 "Unknown events" #elif L==3 "Eventos desconocidos" #elif L==4 "Événements inconnus" #elif L==5 "Eventos desconocidos" // Okoteve traducción #elif L==6 "Eventi sconosciuto" #elif L==7 "Brak wydarzen" #elif L==8 "Eventos desconhecidos" #endif , #if L==0 // Ntf_EVENT_DOCUMENT_FILE "Nous documents" #elif L==1 "Neue Dokumentdateien" #elif L==2 "New document files" #elif L==3 "Nuevos documentos" #elif L==4 "Nouveaux fichiers de documents" #elif L==5 "Nuevos documentos" // Okoteve traducción #elif L==6 "Nuovi documenti" #elif L==7 "Nowy plik dokumentu" #elif L==8 "Novos arquivos de documento" #endif , #if L==0 // Ntf_EVENT_SHARED_FILE "Nous arxiu compartit" #elif L==1 "New freigegebene Dateien" #elif L==2 "New shared files" #elif L==3 "Nuevos archivos compartidos" #elif L==4 "Nouveaux fichiers partagés" #elif L==5 "Nuevos archivos compartidos" // Okoteve traducción #elif L==6 "Nuovi file condiviso" #elif L==7 "Nowy Udostępniony plik" #elif L==8 "Novos arquivos compartilhado" #endif , #if L==0 // Ntf_EVENT_ASSIGNMENT "Noves activitats" #elif L==1 "Neue Aufgaben" #elif L==2 "New assignments" #elif L==3 "Nuevas actividades" #elif L==4 "Nouvelles activités" #elif L==5 "Nuevas actividades" // Okoteve traducción #elif L==6 "Nuove attività" #elif L==7 "Nowe zadania" #elif L==8 "Novas atividades" #endif , #if L==0 // Ntf_EVENT_EXAM_ANNOUNCEMENT "Noves convocatòries d'examen" #elif L==1 "Neue Aufrufe für Prüfung" #elif L==2 "New announcements of exam" #elif L==3 "Nuevas convocatorias de examen" #elif L==4 "Nouvelles convocations à un examen" #elif L==5 "Nuevas convocatorias de examen" // Okoteve traducción #elif L==6 "Nuovo appello d'esame" #elif L==7 "Nowe anonse egzamin" #elif L==8 "Novas chamadas para exame" #endif , #if L==0 // Ntf_EVENT_MARKS_FILE "Nous fitxers de qualificacions" #elif L==1 "Neue Dateien mit Bewertung" #elif L==2 "New files with marks" #elif L==3 "Nuevos archivos de calificaciones" #elif L==4 "Nouveaux fichiers avec des notes" #elif L==5 "Nuevos archivos de calificaciones" // Okoteve traducción #elif L==6 "Nuovi file con risultati" #elif L==7 "Nowe pliki ze znakami" #elif L==8 "Novos arquivos de notas" #endif , #if L==0 // Ntf_EVENT_ENROLLMENT "Novas inscripciós" #elif L==1 "New Einschreibungen" #elif L==2 "New enrollments" #elif L==3 "Nuevas inscripciones" #elif L==4 "Nouvelles inscriptions" #elif L==5 "Nuevas inscripciones" // Okoteve traducción #elif L==6 "Nuova iscrizione" #elif L==7 "Nowe zapisy" #elif L==8 "Novas inscrições" #endif , #if L==0 // Ntf_EVENT_ENROLLMENT_REQUEST "Novas peticiós d'inscripció" #elif L==1 "New Registrierungsanforderungen" #elif L==2 "New enrollment requests" #elif L==3 "Nuevas peticiones de inscripción" #elif L==4 "Nouvelles demandes d'inscription" #elif L==5 "Nuevas peticiones de inscripción" // Okoteve traducción #elif L==6 "Nuova richiesta di iscrizione" #elif L==7 "Nowe prośby o rejestracji" #elif L==8 "Novos pedidos de inscrição" #endif , #if L==0 // Ntf_EVENT_NOTICE "Nous avisos" #elif L==1 "Neue Ankündigungen" #elif L==2 "New notices" #elif L==3 "Nuevos avisos" #elif L==4 "Nouveaux avis" #elif L==5 "Nuevos avisos" // Okoteve traducción #elif L==6 "Nuovi avvisi" #elif L==7 "Nowe ogloszenia" #elif L==8 "Novos avisos" #endif , #if L==0 // Ntf_EVENT_FORUM_POST_COURSE "Novos missatges en fòrums" #elif L==1 "Neue Beiträge in den Foren" #elif L==2 "New posts in course forums" #elif L==3 "Nuevos mensajes en foros de asignaturas" #elif L==4 "Nouveaux messages dans les forums" #elif L==5 "Nuevos mensajes en foros de asignaturas" // Okoteve traducción #elif L==6 "Nuovi post nei forum" #elif L==7 "Nowe postów na forum" #elif L==8 "Novos posts em fóruns" #endif , #if L==0 // Ntf_EVENT_FORUM_REPLY "Noves respostes als meus missatges en fòrums" #elif L==1 "Neue Antworten auf meine Beiträge in den Foren" #elif L==2 "New responses to my posts in forums" #elif L==3 "Nuevas respuestas a mis mensajes en foros" #elif L==4 "Nouvelles réponses à mes messages dans les forums" #elif L==5 "Nuevas respuestas a mis mensajes en foros" // Okoteve traducción #elif L==6 "Nuove risposte ai miei post nei forum" #elif L==7 "Nowe podejscie do moich postów na forum" #elif L==8 "Novas respostas aos meus posts em fóruns" #endif , #if L==0 // Ntf_EVENT_MESSAGE "Nous missatges" #elif L==1 "Neue Nachrichten" #elif L==2 "New messages" #elif L==3 "Nuevos mensajes" #elif L==4 "Nouveaux messages" #elif L==5 "Nuevos mensajes" // Okoteve traducción #elif L==6 "Nuovi messaggi" #elif L==7 "Nowa wiadomosc" #elif L==8 "Novas mensagens" #endif , #if L==0 // Ntf_EVENT_SURVEY "Noves enquestes" #elif L==1 "Neue Umfragen" #elif L==2 "New surveys" #elif L==3 "Nuevas encuestas" #elif L==4 "Nouveaux sondages" #elif L==5 "Nuevas encuestas" // Okoteve traducción #elif L==6 "Nuove sondaggi" #elif L==7 "Nowe badania" #elif L==8 "Novos inquéritos" #endif }; const char *Txt_NOTIFY_EVENTS_SINGULAR[Ntf_NUM_NOTIFY_EVENTS] = { #if L==0 // Ntf_EVENT_UNKNOWN "Esdeveniment desconegut" #elif L==1 "Unbekannt Ereignis" #elif L==2 "Unknown event" #elif L==3 "Evento desconocido" #elif L==4 "Événement inconnu" #elif L==5 "Evento desconocido" // Okoteve traducción #elif L==6 "Evento sconosciuto" #elif L==7 "Nieznane zdarzenia" #elif L==8 "Evento desconhecido" #endif , #if L==0 // Ntf_EVENT_DOCUMENT_FILE "Document" #elif L==1 "Dokumentdatei" #elif L==2 "Document file" #elif L==3 "Documento" #elif L==4 "Fichier de document" #elif L==5 "Documento" // Okoteve traducción #elif L==6 "Documento" #elif L==7 "Plik dokumentu" #elif L==8 "Arquivo de documento" #endif , #if L==0 // Ntf_EVENT_SHARED_FILE "Arxiu compartit" #elif L==1 "Freigegebene Datei" #elif L==2 "Shared file" #elif L==3 "Archivo compartido" #elif L==4 "Fichier partagé" #elif L==5 "Archivo compartido" // Okoteve traducción #elif L==6 "File condiviso" #elif L==7 "Udostępniony plik" #elif L==8 "Arquivo compartilhado" #endif , #if L==0 // Ntf_EVENT_ASSIGNMENT "Activitat" #elif L==1 "Aufgabe" #elif L==2 "Assignment" #elif L==3 "Actividad" #elif L==4 "Activité" #elif L==5 "Taréa" #elif L==6 "Attività" #elif L==7 "Przyporzadkowanie" #elif L==8 "Atividade" #endif , #if L==0 // Ntf_EVENT_EXAM_ANNOUNCEMENT "Convocatòria d'examen" #elif L==1 "Aufrufe für Prüfung" #elif L==2 "Announcement of exam" #elif L==3 "Convocatoria de examen" #elif L==4 "Convocation à un examen" #elif L==5 "Convocatoria de examen" // Okoteve traducción #elif L==6 "Sessione d'esame" #elif L==7 "Ogloszenie egzamin" #elif L==8 "Chamada para exame" #endif , #if L==0 // Ntf_EVENT_MARKS_FILE "Fitxer de qualificacions" #elif L==1 "Datei mit Bewertung" #elif L==2 "File with marks" #elif L==3 "Archivo de calificaciones" #elif L==4 "Fichier avec des notes" #elif L==5 "Archivo de calificaciones" // Okoteve traducción #elif L==6 "File con risultati" #elif L==7 "Plik ze znakami" #elif L==8 "Arquivo de notas" #endif , #if L==0 // Ntf_EVENT_ENROLLMENT "Inscripció" #elif L==1 "Einschreibung" #elif L==2 "Enrollment" #elif L==3 "Inscripción" #elif L==4 "Inscription" #elif L==5 "Inscripción" // Okoteve traducción #elif L==6 "Iscrizione" #elif L==7 "Zapisy" #elif L==8 "Inscrição" #endif , #if L==0 // Ntf_EVENT_ENROLLMENT_REQUEST "Petició d'inscripció" #elif L==1 "Registrierungsanforderung" #elif L==2 "Enrollment request" #elif L==3 "Petición de inscripción" #elif L==4 "Demande d'inscription" #elif L==5 "Petición de inscripción" // Okoteve traducción #elif L==6 "Richiesta di iscrizione" #elif L==7 "Żądanie rejestracji" #elif L==8 "Pedido de inscrição" #endif , #if L==0 // Ntf_EVENT_NOTICE "Avís" #elif L==1 "Ankündigungen" #elif L==2 "Notice" #elif L==3 "Aviso" #elif L==4 "Avis" #elif L==5 "Marandu" #elif L==6 "Avviso" #elif L==7 "Informacja" #elif L==8 "Anúncio" #endif , #if L==0 // Ntf_EVENT_FORUM_POST_COURSE "Missatge en un fòrum" #elif L==1 "Beiträge in einem Forum" #elif L==2 "Post in a forum" #elif L==3 "Mensaje en un foro" #elif L==4 "Message dans un forum" #elif L==5 "Mensaje en un foro" // Okoteve traducción #elif L==6 "Post in un forum" #elif L==7 "Post na forum" #elif L==8 "Post em um fórum" #endif , #if L==0 // Ntf_EVENT_FORUM_REPLY "Resposta en un fòrum" #elif L==1 "Antwort in einem Forum" #elif L==2 "Response in a forum" #elif L==3 "Respuesta en un foro" #elif L==4 "Réponse dans un forum" #elif L==5 "Respuesta en un foro" // Okoteve traducción #elif L==6 "Risposta in un forum" #elif L==7 "Odpowiedz na forum" #elif L==8 "Resposta em um fórum" #endif , #if L==0 // Ntf_EVENT_MESSAGE "Missatge" #elif L==1 "Nachricht" #elif L==2 "Message" #elif L==3 "Mensaje" #elif L==4 "Message" #elif L==5 "Marandu" #elif L==6 "Messaggio" #elif L==7 "Wiadomość" #elif L==8 "Mensagem" #endif , #if L==0 // Ntf_EVENT_SURVEY "Enquesta" #elif L==1 "Umfrage" #elif L==2 "Survey" #elif L==3 "Encuesta" #elif L==4 "Sondage" #elif L==5 "Encuesta" // Okoteve traducción #elif L==6 "Sondaggio" #elif L==7 "Badania" #elif L==8 "Inquérito" #endif }; const char *Txt_Notify_me_BR_by_e_mail = #if L==0 "Avisar-me
per correu"; #elif L==1 "Benachrichtigt mich
per E-Mail"; #elif L==2 "Notify me
by e-mail"; #elif L==3 "Avisarme
por correo"; #elif L==4 "Avertissez-moi
par e-mail"; #elif L==5 "Avisarme
por correo"; // Okoteve traducción #elif L==6 "Notificatami
via e-mail"; #elif L==7 "Informuj
mnie e-mailem"; #elif L==8 "Notifique-me
por e-mail"; #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 #if L==0 "Ahora cada estudiante puede pertenecer a varios grupos de tipo %s."; // Necessita traduccio #elif L==1 "Now each student can belong to multiple groups of type %s."; #elif L==2 "Now each student can belong to multiple groups of type %s."; #elif L==3 "Ahora cada estudiante puede pertenecer a varios grupos de tipo %s."; #elif L==4 "Now each student can belong to multiple groups of type %s."; #elif L==5 "Ahora cada estudiante puede pertenecer a varios grupos de tipo %s."; // Okoteve traducción #elif L==6 "Ora ogni studente può appartenere a gruppi multipli di tipo %s."; #elif L==7 "Teraz kazdy student moze nalezec do wielu grup typu %s."; #elif L==8 "Now each student can belong to multiple groups of type %s."; #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 #if L==0 "Ahora cada estudiante sólo puede pertenecer a un grupo de tipo %s."; // Necessita traduccio #elif L==1 "Now each student can only belong to a group of type %s."; #elif L==2 "Now each student can only belong to a group of type %s."; #elif L==3 "Ahora cada estudiante sólo puede pertenecer a un grupo de tipo %s."; #elif L==4 "Now each student can only belong to a group of type %s."; #elif L==5 "Ahora cada estudiante sólo puede pertenecer a un grupo de tipo %s."; // Okoteve traducción #elif L==6 "Ora ogni studente può solo appartenere a un gruppo di tipo %s."; #elif L==7 "Teraz kazdy student moze nalezec tylko do grupy typu %s."; #elif L==8 "Now each student can only belong to a group of type %s."; #endif const char *Txt_Number_of_BR_assignments = #if L==0 "Nombre
d'activitats"; #elif L==1 "Anzahl der
Aufgaben"; #elif L==2 "Number of
assignments"; #elif L==3 "Nº de
actividades"; #elif L==4 "Nombre
d'activités"; #elif L==5 "Nº de
actividades"; // Okoteve traducción #elif L==6 "Numero di
attività"; #elif L==7 "Number of
assignments"; // Potrzebujesz tlumaczenie #elif L==8 "Nº de
atividades"; #endif const char *Txt_Number_of_courses = #if L==0 "Nombre d'assignat."; #elif L==1 "Anzahl der Veranstaltungen"; #elif L==2 "Number of courses"; #elif L==3 "Nº de asignat."; #elif L==4 "Nombre de matières"; #elif L==5 "Nº de asignat."; // Okoteve traducción #elif L==6 "Numero di corsi"; #elif L==7 "Liczba kursów"; #elif L==8 "Nº de disciplinas"; #endif const char *Txt_Number_of_BR_courses_with_BR_assignments = #if L==0 "Nombre
d'assignatures
amb activitats"; #elif L==1 "Anzahl der
Veranstaltungen
mit Aufgaben"; #elif L==2 "Number of
courses with
assignments"; #elif L==3 "Nº de
asignaturas
con actividades"; #elif L==4 "Nombre de
matières
avec activités"; #elif L==5 "Nº de
asignaturas
con actividades"; // Okoteve traducción #elif L==6 "Numero di
corsi con
attività"; #elif L==7 "Liczba
kursów z
zadania"; #elif L==8 "Nº de
disciplinas
com atividades"; #endif const char *Txt_Number_of_BR_courses_with_BR_exportable_BR_test_BR_questions = #if L==0 "Nombre
d'assignatures
amb preguntes
de test
exportables"; #elif L==1 "Anzahl der
Veranstaltungen
mit exportierbar
Testfragen"; #elif L==2 "Number of
courses with
exportable
test
questions"; #elif L==3 "Nº de
asignaturas
con preguntas
de test
exportables"; #elif L==4 "Nombre de
matières
avec questions
de test
exportables"; #elif L==5 "Nº de
asignaturas
con preguntas
de test
exportables"; // Okoteve traducción #elif L==6 "Numero di
corsi con
domande
de test
esportabili"; #elif L==7 "Liczba
kursów
z eksportowane
pytań
testowych"; #elif L==8 "Nº de
disciplinas
com questões
de test
exportáveis"; #endif const char *Txt_Number_of_BR_courses_BR_with_test_BR_questions = #if L==0 "Nombre
d'assignatures
amb preguntes
de test"; #elif L==1 "Anzahl der
Veranstaltungen
mit Testfragen"; #elif L==2 "Number of
courses
with test
questions"; #elif L==3 "Nº de
asignaturas
con preguntas
de test"; #elif L==4 "Nombre de
matières
avec questions
de test"; #elif L==5 "Nº de
asignaturas
con preguntas
de test"; // Okoteve traducción #elif L==6 "Numero di
corsi con
domande
de test"; #elif L==7 "Liczba
kursów
z pytań
testowych"; #elif L==8 "Nº de
disciplinas
com questões
de test"; #endif const char *Txt_Number_of_BR_courses_with_BR_surveys = #if L==0 "Nombre
d'assignatures
amb enquestes"; #elif L==1 "Anzahl der
Veranstaltungen
mit Umfragen"; #elif L==2 "Number of
courses with
surveys"; #elif L==3 "Nº de
asignaturas
con encuestas"; #elif L==4 "Nombre de
matières
avec sondages"; #elif L==5 "Nº de
asignaturas
con encuestas"; // Okoteve traducción #elif L==6 "Numero di
corsi con
sondaggi"; #elif L==7 "Liczba
kursów z
badania"; #elif L==8 "Nº de
disciplinas
com inquéritos"; #endif const char *Txt_Number_of_BR_events = #if L==0 "Nº de
eventos"; // Necessita traduccio #elif L==1 "Anzahl der
Ereignisse"; #elif L==2 "Number of
events"; #elif L==3 "Nº de
eventos"; #elif L==4 "Nombre
d'événements"; #elif L==5 "Nº de
eventos"; // Okoteve traducción #elif L==6 "Numero di
eventi"; #elif L==7 "Liczba of
zdarzenia"; #elif L==8 "Número de
eventos"; #endif const char *Txt_Number_of_BR_e_mails = #if L==0 "Nº de
correos"; // Necessita traduccio #elif L==1 "Anzahl der
E-Mails"; #elif L==2 "Number of
e-mails"; #elif L==3 "Nº de
correos"; #elif L==4 "Nombre
d'e-mails"; #elif L==5 "Nº de
correos"; // Okoteve traducción #elif L==6 "Numero di
e-mail"; #elif L==7 "Liczba
e-mail"; #elif L==8 "Número de
e-mails"; #endif const char *Txt_Number_of_BR_notifications = #if L==0 "Nombre de
notificacions"; #elif L==1 "Anzahl der
Anmeldungen"; #elif L==2 "Number of
notifications"; #elif L==3 "Nº de
notificaciones"; #elif L==4 "Nombre de
notifications"; #elif L==5 "Nº de
notificaciones"; // Okoteve traducción #elif L==6 "Numero di
notifiche"; #elif L==7 "Liczba
zgloszen"; #elif L==8 "Número de
notificações"; #endif const char *Txt_Number_of_students = #if L==0 "Nombre d'estudiants"; #elif L==1 "Anzahl der Studenten"; #elif L==2 "Number of students"; #elif L==3 "Nº de estudiantes"; #elif L==4 "Nombre d'étudiants"; #elif L==5 "Nº de estudiantes"; // Okoteve traducción #elif L==6 "Numero di studenti"; #elif L==7 "Liczba studenci"; #elif L==8 "Nº de estudantes"; #endif const char *Txt_Number_of_BR_surveys = #if L==0 "Nombre
d'enquestes"; #elif L==1 "Anzahl der
Umfragen"; #elif L==2 "Number of
surveys"; #elif L==3 "Nº de
encuestas"; #elif L==4 "Nombre de
sondages"; #elif L==5 "Nº de
encuestas"; // Okoteve traducción #elif L==6 "Numero di
sondaggi"; #elif L==7 "Liczba
badania"; #elif L==8 "Nº de
inquéritos"; #endif const char *Txt_Number_BR_of_test_BR_questions = #if L==0 "Nombre de
preguntes
de test"; #elif L==1 "Anzahl der
Testfragen"; #elif L==2 "Number
of test
questions"; #elif L==3 "Nº de
preguntas
de test"; #elif L==4 "Nombre de
questions
de test"; #elif L==5 "Nº de
preguntas
de test"; // Okoteve traducción #elif L==6 "Numero di
domande
de test"; #elif L==7 "Liczba
pytań
testowych"; #elif L==8 "Nº de
questões
de test"; #endif const char *Txt_Numeric_BR_code_BR_ISO_3166_1 = #if L==0 "Cód.
numérico
ISO 3166-1"; // Necessita traduccio #elif L==1 "Numerischen
Code
ISO 3166-1"; #elif L==2 "Numeric
code
ISO 3166-1"; #elif L==3 "Cód.
numérico
ISO 3166-1"; #elif L==4 "Code
numérique
ISO 3166-1"; #elif L==5 "Cód.
numérico
ISO 3166-1"; // Okoteve traducción #elif L==6 "Codice
numerico
ISO 3166-1"; #elif L==7 "Nnumerycznych
kod
ISO 3166-1"; #elif L==8 "Cód.
numérico
ISO 3166-1"; #endif const char *Txt_of_PART_OF_A_TOTAL = // Example: transferred 2 of 3 files #if L==0 "de"; // Necessita traduccio #elif L==1 "von"; #elif L==2 "of"; #elif L==3 "de"; #elif L==4 "de"; #elif L==5 "de"; // Okoteve traducción #elif L==6 "di"; #elif L==7 "z"; #elif L==8 "de"; #endif const char *Txt_Office = #if L==0 "Despatx"; #elif L==1 "Raum"; #elif L==2 "Office"; #elif L==3 "Despacho"; #elif L==4 "Bureau"; #elif L==5 "Mba'apoha"; #elif L==6 "Ufficio"; #elif L==7 "Biuro"; #elif L==8 "Gabinete"; #endif const char *Txt_Office_hours = #if L==0 "Horari de tutories"; #elif L==1 "Geschäftszeiten"; #elif L==2 "Office hours"; #elif L==3 "Horario de tutorías"; #elif L==4 "Heures de tuteur"; #elif L==5 "Horario de tutorías"; // Okoteve traducción #elif L==6 "Orario di tutoraggi"; #elif L==7 "Godziny pracy"; #elif L==8 "Horário de tutor"; #endif const char *Txt_Official_students = #if L==0 "Estudiants oficials"; #elif L==1 "Offizielle Teilnehmer"; #elif L==2 "Official students"; #elif L==3 "Estudiantes oficiales"; #elif L==4 "Étudiants officiels"; #elif L==5 "Estudiantes oficiales"; // Okoteve traducción #elif L==6 "Studenti ufficiali"; #elif L==7 "Dziennik studentów"; #elif L==8 "Estudantes oficiais"; #endif const char *Txt_one_day = #if L==0 "un día"; // Necessita traduccio #elif L==1 "ein Tag"; #elif L==2 "one day"; #elif L==3 "un día"; #elif L==4 "un jour"; #elif L==5 "un día"; // Okoteve traducción #elif L==6 "un giorno"; #elif L==7 "jeden dzien"; #elif L==8 "um dia"; #endif const char *Txt_One_message_has_been_deleted = #if L==0 "Se ha eliminado un mensaje."; // Necessita traduccio #elif L==1 "One message has been deleted."; // Need Übersetzung #elif L==2 "One message has been deleted."; #elif L==3 "Se ha eliminado un mensaje."; #elif L==4 "One message has been deleted."; // Besoin de traduction #elif L==5 "Se ha eliminado un mensaje."; // Okoteve traducción #elif L==6 "Un messaggio è stato rimosso."; #elif L==7 "Jedna wiadomosc zostala usunieta."; #elif L==8 "One message has been deleted."; // Necessita de tradução #endif const char *Txt_One_user_has_been_eliminated = #if L==0 "Se ha eliminado un usuario."; // Necessita traduccio #elif L==1 "One user has been eliminated."; // Need Übersetzung #elif L==2 "One user has been eliminated."; #elif L==3 "Se ha eliminado un usuario."; #elif L==4 "One user has been eliminated."; // Besoin de traduction #elif L==5 "Se ha eliminado un usuario."; // Okoteve traducción #elif L==6 "Un utente è stato rimosso."; #elif L==7 "Jeden uzytkownik zostal usuniety."; #elif L==8 "One user has been eliminated."; // Necessita de tradução #endif const char *Txt_One_user_has_been_enrolled = #if L==0 "Se ha inscrito un usuario."; // Necessita traduccio #elif L==1 "One user has been enrolled."; // Need Übersetzung #elif L==2 "One user has been enrolled."; #elif L==3 "Se ha inscrito un usuario."; #elif L==4 "One user has been enrolled."; // Besoin de traduction #elif L==5 "Se ha inscrito un usuario."; // Okoteve traducción #elif L==6 "Un utente è stato registrato."; #elif L==7 "Jeden uzytkownik zostal zarejestrowany."; #elif L==8 "One user has been enrolled."; // Necessita de tradução #endif const char *Txt_One_user_has_been_removed = #if L==0 "Se ha eliminado un usuario."; // Necessita traduccio #elif L==1 "One user has been removed."; // Need Übersetzung #elif L==2 "One user has been removed."; #elif L==3 "Se ha eliminado un usuario."; #elif L==4 "One user has been removed."; // Besoin de traduction #elif L==5 "Se ha eliminado un usuario."; // Okoteve traducción #elif L==6 "Un utente è stato rimosso."; #elif L==7 "Jeden z uzytkowników zostaly usuniete."; #elif L==8 "One user has been removed."; // Necessita de tradução #endif const char *Txt_Online_tutoring = #if L==0 "Tutorías virtuales"; // Necessita traduccio #elif L==1 "Virtual Anleitungen"; #elif L==2 "Online tutoring"; #elif L==3 "Tutorías virtuales"; #elif L==4 "Tutorat en ligne"; #elif L==5 "Tutorías virtuales"; // Okoteve traducción #elif L==6 "Tutoraggio on-line"; #elif L==7 "Korepetycje online"; #elif L==8 "Tutoria on-line"; #endif const char *Txt_only_if_the_scope_is_X = // Warning: it is very important to include %s in the following sentences #if L==0 "només si l'àmbit és %s"; #elif L==1 "nur dann, wenn der Geltungsbereich ist %s"; #elif L==2 "only if the scope is %s"; #elif L==3 "sólo si el ámbito es %s"; #elif L==4 "seulement si le portée est %s"; #elif L==5 "sólo si el ámbito es %s"; // Okoteve traducción #elif L==6 "solo se l'ambito è %s"; #elif L==7 "tylko wtedy, gdy zakres jest %s"; #elif L==8 "somente se o âmbito é %s"; #endif const char *Txt_only_students = #if L==0 ", sólo estudiantes"; // Necessita traduccio #elif L==1 ", nur Studenten"; #elif L==2 ", only students"; #elif L==3 ", sólo estudiantes"; #elif L==4 ", seulement étudiants"; #elif L==5 ", sólo estudiantes"; // Okoteve traducción #elif L==6 ", solo studenti"; #elif L==7 ", tylko studenci"; #elif L==8 ", apenas estudantes"; #endif const char *Txt_only_teachers = #if L==0 ", professors"; #elif L==1 ", Lehrkräfte"; #elif L==2 ", teachers"; #elif L==3 ", profesores"; #elif L==4 ", enseignants"; #elif L==5 ", profesores"; // Okoteve traducción #elif L==6 ", professori"; #elif L==7 ", nauczycieli"; #elif L==8 ", professores"; #endif const char *Txt_Open_documents = #if L==0 "Documents oberts"; #elif L==1 "Geöffnete Dokumente"; #elif L==2 "Open documents"; #elif L==3 "Documentos abiertos"; #elif L==4 "Documents ouverts"; #elif L==5 "Documentos abiertos"; // Okoteve traducción #elif L==6 "Documenti aperti"; #elif L==7 "Otwarte dokumenty"; #elif L==8 "Documentos abertos"; #endif const char *Txt_Open_survey = #if L==0 "Enquesta oberta"; #elif L==1 "Geöffneten Umfrage"; #elif L==2 "Open survey"; #elif L==3 "Encuesta abierta"; #elif L==4 "Sondage ouvert"; #elif L==5 "Encuesta abierta"; // Okoteve traducción #elif L==6 "Sondaggio aperto"; #elif L==7 "otwarte badania"; #elif L==8 "Inquérito aberta"; #endif const char *Txt_Opening_of_groups = #if L==0 "Obertura de grups"; #elif L==1 "Opening of groups"; // Need Übersetzung #elif L==2 "Opening of groups"; #elif L==3 "Apertura de grupos"; #elif L==4 "Opening of groups"; // Besoin de traduction #elif L==5 "Apertura de grupos"; // Okoteve traducción #elif L==6 "Apertura di gruppi"; #elif L==7 "Opening of groups"; // Potrzebujesz tlumaczenie #elif L==8 "Opening of groups"; // Necessita de tradução #endif const char *Txt_Opt_BR_year = // Year for optional courses #if L==0 "¿Cur.
opt.?"; // Necessita traduccio #elif L==1 "Opt.
year?"; // Need Übersetzung #elif L==2 "Opt.
year?"; #elif L==3 "¿Cur.
opt.?"; #elif L==4 "Opt.
year?"; // Besoin de traduction #elif L==5 "¿Cur.
opt.?"; // Okoteve traducción #elif L==6 "Opz.
anno?"; #elif L==7 "Opt.
rok?"; #elif L==8 "Opt.
year?"; // Necessita de tradução #endif const char *Txt_Option_a_Import_students_from_the_official_lists = #if L==0 "Opción a): Obtenga estudiantes de las listas oficiales"; // Necessita traduccio #elif L==1 "Option a): Import students from the official lists"; // Need Übersetzung #elif L==2 "Option a): Import students from the official lists"; #elif L==3 "Opción a): Obtenga estudiantes de las listas oficiales"; #elif L==4 "Option a): Import students from the official lists"; // Besoin de traduction #elif L==5 "Opción a): Obtenga estudiantes de las listas oficiales"; // Okoteve traducción #elif L==6 "Opzione a): Importa studenti dalle liste ufficiali"; #elif L==7 "Opcja a): Studentów Import z oficjalnej listy"; #elif L==8 "Option a): Import students from the official lists"; // Necessita de tradução #endif const char *Txt_Option_b_Type_or_paste_a_list_of_users = #if L==0 "Opción b): Escriba o pegue una lista de usuarios"; // Necessita traduccio #elif L==1 "Option b): Type or paste a list of users"; // Need Übersetzung #elif L==2 "Option b): Type or paste a list of users"; #elif L==3 "Opción b): Escriba o pegue una lista de usuarios"; #elif L==4 "Option b): Type or paste a list of users"; // Besoin de traduction #elif L==5 "Opción b): Escriba o pegue una lista de usuarios"; // Okoteve traducción #elif L==6 "Opzione b): Scrivi o incolla una lista di utenti"; #elif L==7 "Opcja b): Wpisz lub wklej liste uzytkowników"; #elif L==8 "Option b): Type or paste a list of users"; // Necessita de tradução #endif const char *Txt_Option_under_development = #if L==0 "Opció en desenvolupament."; #elif L==1 "Option in der Entwicklung."; #elif L==2 "Option under development."; #elif L==3 "Opción en desarrollo."; #elif L==4 "Option en cours de développement."; #elif L==5 "Opción en desarrollo."; // Okoteve traducción #elif L==6 "Opzione in fase di sviluppo."; #elif L==7 "Opcja w fazie rozwoju."; #elif L==8 "Opção em desenvolvimento."; #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 #if L==0 "...o pot crear un novo enllaç" " dins de la carpeta %s:"; #elif L==1 "...Oder Sie können ein neues Link" " im Verzeichnis %s anlegen:"; #elif L==2 "...or you can create a new link" " inside the folder %s:"; #elif L==3 "...o puede crear un nuevo enlace" " dentro de la carpeta %s:"; #elif L==4 "...ou vous pouvez créer un nouveau lien" " dans le répertoire %s:"; #elif L==5 "...o puede crear un nuevo enlace" " dentro de la carpeta %s:"; // Okoteve traducción #elif L==6 "...oppure è possibile creare una nuova cartella" " all'interno della cartella %s:"; #elif L==7 "...czy możesz utworzyć nowy link" " wewnątrz folderu %s:"; #elif L==8 "...ou você pode criar uma nova ligação" " dentro do diretório %s:"; #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 #if L==0 "...o pot realitzar una còpia d'arxius" " a la carpeta %s:"; #elif L==1 "...Oder Sie können die Kopie einer Datei" " in das Verzeichnis %s:"; #elif L==2 "...or you can make a file copy" " to the folder %s:"; #elif L==3 "...o puede realizar una copia de archivos" " a la carpeta %s:"; #elif L==4 "...ou vous pouvez faire une copie de fichiers" " vers le répertoire %s:"; #elif L==5 "...o puede realizar una copia de archivos" " a la carpeta %s:"; // Okoteve traducción #elif L==6 "...oppure è possibile effettuare una copia dei file" " nella cartella %s:"; #elif L==7 "...czy mozna zrobic kopie pliku" " do folderu %s:"; #elif L==8 "...ou você pode fazer uma cópia de arquivo" " na diretório %s:"; #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 #if L==0 "...o puede subir un nuevo archivo" " a la carpeta %s:"; // Necessita traduccio #elif L==1 "...oder senden Sie eine neue Datei" " in das Verzeichnis %s:"; #elif L==2 "...or you can upload a new file" " to the folder %s:"; #elif L==3 "...o puede subir un nuevo archivo" " a la carpeta %s:"; #elif L==4 "...ou vous pouvez envoyer un nouveau fichier" " dans le répertoire %s:"; #elif L==5 "...o puede subir un nuevo archivo" " a la carpeta %s:"; // Okoteve traducción #elif L==6 "...oppure si può inviare un nuovo file" " nella cartella %s:"; #elif L==7 "...lub wyslac nowy plik" " do folderu %s:"; #elif L==8 "...ou você pode enviar um novo arquivo" " para o diretório %s:"; #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 #if L==0 "...o puede subir nuevos archivos" " a la carpeta %s:"; // Necessita traduccio #elif L==1 "...oder senden Sie neue Dateien" " in das Verzeichnis %s:"; #elif L==2 "...or you can upload new files" " to the folder %s:"; #elif L==3 "...o puede subir nuevos archivos" " a la carpeta %s:"; #elif L==4 "...ou vous pouvez envoyer des nouveaux fichiers" " dans le répertoire %s:"; #elif L==5 "...o puede subir nuevos archivos" " a la carpeta %s:"; // Okoteve traducción #elif L==6 "...oppure si può inviare nuovi file" " nella cartella %s:"; #elif L==7 "...lub wyslac nowy plik" " do folderu %s:"; #elif L==8 "...ou você pode enviar novos arquivos" " para o diretório %s:"; #endif const char *Txt_Original_message = #if L==0 "Mensaje original"; // Necessita traduccio #elif L==1 "Original-Nachricht"; #elif L==2 "Original message"; #elif L==3 "Mensaje original"; #elif L==4 "Message d'origine"; #elif L==5 "Mensaje original"; // Okoteve traducción #elif L==6 "Messaggio originale"; #elif L==7 "Oryginalna wiadomość"; #elif L==8 "Mensagem original"; #endif const char *Txt_Other_countries = #if L==0 "Altres països"; #elif L==1 "Andere Länder"; #elif L==2 "Other countries"; #elif L==3 "Otros países"; #elif L==4 "Autres pays"; #elif L==5 "Otros países"; // Okoteve traducción #elif L==6 "Altri paesi"; #elif L==7 "Inne kraje"; #elif L==8 "Outros países"; #endif const char *Txt_Other_departments = #if L==0 "Altres departaments"; #elif L==1 "Andere Abteilung"; #elif L==2 "Other departments"; #elif L==3 "Otros departamentos"; #elif L==4 "Autres départements"; #elif L==5 "Otros departamentos"; // Okoteve traducción #elif L==6 "Altri dipartimenti"; #elif L==7 "Inne wydzialy"; #elif L==8 "Outros departamentos"; #endif const char *Txt_Other_emails = #if L==0 "Altres correus"; #elif L==1 "Andere E-Mails"; #elif L==2 "Other e-mails"; #elif L==3 "Otros correos"; #elif L==4 "Autres e-mails"; #elif L==5 "Otros correos"; // Okoteve traducción #elif L==6 "Altre e-mail"; #elif L==7 "Inne e-mail"; #elif L==8 "Outros e-mails"; #endif const char *Txt_Other_nicknames = #if L==0 "Altres sobrenoms"; #elif L==1 "Andere Benutzername"; #elif L==2 "Other nicknames"; #elif L==3 "Otros apodos"; #elif L==4 "Autres surnoms"; #elif L==5 "Otros apodos"; // Okoteve traducción #elif L==6 "Altri nomi utenti"; #elif L==7 "Inne przydomki"; #elif L==8 "Outras alcunha"; #endif const char *Txt_Other_places = #if L==0 "Altres llocs"; #elif L==1 "Andere Standorte"; #elif L==2 "Other places"; #elif L==3 "Otros lugares"; #elif L==4 "Autres emplacements"; #elif L==5 "Otros lugares"; // Okoteve traducción #elif L==6 "Altre località"; #elif L==7 "Inne miejsca"; #elif L==8 "Outras localizaçoes"; #endif const char *Txt_Other_recipients = #if L==0 "Otros destinatarios"; // Necessita traduccio #elif L==1 "Andere Empfänger"; #elif L==2 "Other recipients"; #elif L==3 "Otros destinatarios"; #elif L==4 "Autres destinataires"; #elif L==5 "Otros destinatarios"; // Okoteve traducción #elif L==6 "Altri destinatari"; #elif L==7 "Inne odbiorców"; #elif L==8 "Outros destinatários"; #endif const char *Txt_out_of_PART_OF_A_SCORE = // Example: score is 2 out of 10 #if L==0 "sobre"; // Necessita traduccio #elif L==1 "von"; #elif L==2 "out of"; #elif L==3 "sobre"; #elif L==4 "sur"; #elif L==5 "sobre"; // Okoteve traducción #elif L==6 "su"; #elif L==7 "obecnie"; #elif L==8 "out of"; #endif const char *Txt_Page = #if L==0 "Pàg."; #elif L==1 "Page"; #elif L==2 "Page"; #elif L==3 "Pág."; #elif L==4 "Page"; #elif L==5 "Kuatiarogue"; #elif L==6 "Pag."; #elif L==7 "Strona"; #elif L==8 "Pág."; #endif const char *Txt_page = #if L==0 "pàg."; #elif L==1 "Page"; #elif L==2 "page"; #elif L==3 "pág."; #elif L==4 "page"; #elif L==5 "kuatiarogue"; #elif L==6 "pag."; #elif L==7 "strona"; #elif L==8 "pág."; #endif const char *Txt_PAGE1_Page_generated_in = #if L==0 "Pàgina generada en"; #elif L==1 "Page generated in"; #elif L==2 "Page generated in"; #elif L==3 "Página generada en"; #elif L==4 "Page générée en"; #elif L==5 "Página generada en"; // Okoteve traducción #elif L==6 "Pagina generata in"; #elif L==7 "Strona wygenerowana w"; #elif L==8 "Página gerada em"; #endif const char *Txt_PAGE2_and_sent_in = #if L==0 "i enviat en"; #elif L==1 "gesendet und in"; #elif L==2 "and sent in"; #elif L==3 "y enviada en"; #elif L==4 "et envoyée en"; #elif L==5 "y enviada en"; // Okoteve traducción #elif L==6 "e inviata in"; #elif L==7 "i wysylane w"; #elif L==8 "e enviada em"; #endif const char *Txt_PAGES_Previous = #if L==0 "Anteriores"; // Necessita traduccio #elif L==1 "Zurück"; #elif L==2 "Previous"; #elif L==3 "Anteriores"; #elif L==4 "Précédentes"; #elif L==5 "Anteriores"; // Okoteve traducción #elif L==6 "Precedenti"; #elif L==7 "Poprzedni"; #elif L==8 "Anteriores"; #endif const char *Txt_PAGES_Next = #if L==0 "Siguientes"; // Necessita traduccio #elif L==1 "Nächste"; #elif L==2 "Next"; #elif L==3 "Siguientes"; #elif L==4 "Suivantes"; #elif L==5 "Siguientes"; // Okoteve traducción #elif L==6 "Seguenti"; #elif L==7 "Nastepny"; #elif L==8 "Seguintes"; #endif const char *Txt_Password = #if L==0 "Contrasenya"; #elif L==1 "Passwort"; #elif L==2 "Password"; #elif L==3 "Contraseña"; #elif L==4 "Mot de passe"; #elif L==5 "Terañemi"; #elif L==6 "Password"; #elif L==7 "Hasło"; #elif L==8 "Senha"; #endif const char *Txt_Paste = #if L==0 "Pegar"; // Necessita traduccio #elif L==1 "Einfügen"; #elif L==2 "Paste"; #elif L==3 "Pegar"; #elif L==4 "Coller"; #elif L==5 "Pegar"; // Okoteve traducción #elif L==6 "Incolla"; #elif L==7 "Wklej"; #elif L==8 "Colar"; #endif const char *Txt_Paste_in_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Pegar en %s"; // Necessita traduccio #elif L==1 "Einfügen an %s"; #elif L==2 "Paste in %s"; #elif L==3 "Pegar en %s"; #elif L==4 "Coller dans %s"; #elif L==5 "Pegar en %s"; // Okoteve traducción #elif L==6 "Incolla in %s"; #elif L==7 "Wklej w %s"; #elif L==8 "Colar em %s"; #endif const char *Txt_Paste_thread = #if L==0 "Pegar discusión"; // Necessita traduccio #elif L==1 "Einfügen Thread"; #elif L==2 "Paste thread"; #elif L==3 "Pegar discusión"; #elif L==4 "Coller fil"; #elif L==5 "Pegar discusión"; // Okoteve traducción #elif L==6 "Incolla discussione"; #elif L==7 "Wklej watku"; #elif L==8 "Colar thread"; #endif const char *Txt_PERCENT_of_users = #if L==0 "% de usuarios"; // Necessita traduccio #elif L==1 "% der Benutzer"; #elif L==2 "% of users"; #elif L==3 "% de usuarios"; #elif L==4 "% d'utilisateurs"; #elif L==5 "% de usuarios"; // Okoteve traducción #elif L==6 "% di utenti"; #elif L==7 "% uzytkowników"; #elif L==8 "% de utilizadores"; #endif const char *Txt_Phone = #if L==0 "Telèfon"; #elif L==1 "Telefon"; #elif L==2 "Phone"; #elif L==3 "Teléfono"; #elif L==4 "Téléphone"; #elif L==5 "Pumbyry"; #elif L==6 "Telefono"; #elif L==7 "Telefon"; #elif L==8 "Telefone"; #endif const char *Txt_Photo = #if L==0 "Foto"; #elif L==1 "Foto"; #elif L==2 "Photo"; #elif L==3 "Foto"; #elif L==4 "Photo"; #elif L==5 "Ta'anga"; #elif L==6 "Foto"; #elif L==7 "Zdjęcie"; #elif L==8 "Foto"; #endif const char *Txt_Photo_has_been_updated = #if L==0 "La fotografía se ha actualizado."; // Necessita traduccio #elif L==1 "Photo has been updated."; // Need Übersetzung #elif L==2 "Photo has been updated."; #elif L==3 "La fotografía se ha actualizado."; #elif L==4 "Photo has been updated."; // Besoin de traduction #elif L==5 "La fotografía se ha actualizado."; // Okoteve traducción #elif L==6 "La foto è stata aggiornata."; #elif L==7 "Zdjecie zostalo zaktualizowane."; #elif L==8 "Photo has been updated."; // Necessita de tradução #endif const char *Txt_Photo_of_THE_USER_X_has_been_removed = // Warning: it is very important to include %s in the following sentences #if L==0 "Se ha eliminado la foto de %s."; // Necessita traduccio #elif L==1 "Photo of %s has been removed."; // Need Übersetzung #elif L==2 "Photo of %s has been removed."; #elif L==3 "Se ha eliminado la foto de %s."; #elif L==4 "Photo of %s has been removed."; // Besoin de traduction #elif L==5 "Se ha eliminado la foto de %s."; // Okoteve traducción #elif L==6 "La foto de %s è stata rimossa."; #elif L==7 "Zdjecie %s zostalo usuniete."; #elif L==8 "Photo of %s has been removed."; // Necessita de tradução #endif const char *Txt_PHOTO_PROCESSING_CAPTIONS[3] = { #if L==0 "Rostro seleccionado" // Necessita traduccio #elif L==1 "Face selected" // Need Übersetzung #elif L==2 "Face selected" #elif L==3 "Rostro seleccionado" #elif L==4 "Face selected" // Besoin de traduction #elif L==5 "Rostro seleccionado" // Okoteve traducción #elif L==6 "Viso selezionato" #elif L==7 "Twarze wybranych" #elif L==8 "Face selected" // Necessita de tradução #endif , #if L==0 "Contraste y saturación mejorados" // Necessita traduccio #elif L==1 "Contrast and saturation enhanced" // Need Übersetzung #elif L==2 "Contrast and saturation enhanced" #elif L==3 "Contraste y saturación mejorados" #elif L==4 "Contrast and saturation enhanced" // Besoin de traduction #elif L==5 "Contraste y saturación mejorados" // Okoteve traducción #elif L==6 "Contrasto e saturazione migliorata" #elif L==7 "Zwiekszenie kontrastu i nasycenia" #elif L==8 "Contrast and saturation enhanced" // Necessita de tradução #endif , #if L==0 "Balance de blancos realizado" // Necessita traduccio #elif L==1 "White balance made" // Need Übersetzung #elif L==2 "White balance made" #elif L==3 "Balance de blancos realizado" #elif L==4 "White balance made" // Besoin de traduction #elif L==5 "Balance de blancos realizado" // Okoteve traducción #elif L==6 "Bilanciamento di bianco realizzato" #elif L==7 "Balans bieli sie" #elif L==8 "White balance made" // Necessita de tradução #endif }; const char *Txt_Photo_removed = #if L==0 "Fotografía eliminada."; // Necessita traduccio #elif L==1 "Foto entfernt."; #elif L==2 "Photo removed."; #elif L==3 "Fotografía eliminada."; #elif L==4 "Photo removed."; // Besoin de traduction #elif L==5 "Fotografía eliminada."; // Okoteve traducción #elif L==6 "Foto rimossa."; #elif L==7 "Zdjecie usuniete."; #elif L==8 "Photo removed."; // Necessita de tradução #endif const char *Txt_photos = #if L==0 "fotos"; #elif L==1 "Fotos"; #elif L==2 "photos"; #elif L==3 "fotos"; #elif L==4 "photos"; #elif L==5 "fotos"; // Okoteve traducción #elif L==6 "foto"; #elif L==7 "zdjecia"; #elif L==8 "fotos"; #endif const char *Txt_Place = // A particular spot or area #if L==0 "Lloc"; #elif L==1 "Standort"; #elif L==2 "Place"; #elif L==3 "Lugar"; #elif L==4 "Emplacement"; #elif L==5 "Tenda"; #elif L==6 "Luogo"; #elif L==7 "Miejsce"; #elif L==8 "Localização"; #endif const char *Txt_Place_of_origin = #if L==0 "Lugar de origen"; // Necessita traduccio #elif L==1 "Herkunftsort"; #elif L==2 "Place of origin"; #elif L==3 "Lugar de origen"; #elif L==4 "Lieu d'origine"; #elif L==5 "Lugar de origen"; // Okoteve traducción #elif L==6 "Luogo d'origine"; #elif L==7 "Miejsce pochodzenia"; #elif L==8 "Lugar de origem"; #endif const char *Txt_Place_X_removed = // Warning: it is very important to include %s in the following sentences #if L==0 "Lugar %s eliminado."; // Necessita traduccio #elif L==1 "Standort %s entfernt."; #elif L==2 "Place %s removed."; #elif L==3 "Lugar %s eliminado."; #elif L==4 "Emplacement %s supprimé."; #elif L==5 "Lugar %s eliminado."; // Okoteve traducción #elif L==6 "Luogo %s rimosso."; #elif L==7 "Miejsce %s usuniete."; #elif L==8 "Place %s removed."; // Necessita de tradução #endif const char *Txt_Place_unspecified = #if L==0 "Lloc sense especificar"; #elif L==1 "Standort nicht spezifiziert"; #elif L==2 "Place unspecified"; #elif L==3 "Lugar sin especificar"; #elif L==4 "Emplacement non spécifié"; #elif L==5 "Lugar sin especificar"; // Okoteve traducción #elif L==6 "Luogo non specificato"; #elif L==7 "Miejsce nieokreslone"; #elif L==8 "Localização indeterminada"; #endif const char *Txt_Places = #if L==0 "Llocs"; #elif L==1 "Standorte"; #elif L==2 "Places"; #elif L==3 "Lugares"; #elif L==4 "Emplacements"; #elif L==5 "Tenda"; #elif L==6 "Localit`"; #elif L==7 "Miejsca"; #elif L==8 "Localizaçoes"; #endif const char *Txt_PLACES_HELP_ORDER[2] = { #if L==0 "Ordenar por lugar" // Necessita traduccio #elif L==1 "Nach Standort sortieren" #elif L==2 "Sort by place" #elif L==3 "Ordenar por lugar" #elif L==4 "Trier par emplacement" #elif L==5 "Ordenar por lugar" // Okoteve traducción #elif L==6 "Ordina per localit`" #elif L==7 "Sortuj wedlug miejsca" #elif L==8 "Classificar por localização" #endif , #if L==0 "Ordenar por nº de titulaciones" // Necessita traduccio #elif L==1 "Nach Anzahl der Studiengänge sortieren" #elif L==2 "Sort by no. of degrees" #elif L==3 "Ordenar por nº de titulaciones" #elif L==4 "Trier par nombre d'études" #elif L==5 "Ordenar por nº de titulaciones" // Okoteve traducción #elif L==6 "Ordina per numero di lauree" #elif L==7 "Sortuj wedlug stopni" #elif L==8 "Classificar por nº de titulaçoes" #endif }; const char *Txt_PLACES_ORDER[2] = { #if L==0 "Lloc" #elif L==1 "Standort" #elif L==2 "Place" #elif L==3 "Lugar" #elif L==4 "Emplacement" #elif L==5 "Tenda" #elif L==6 "Luogo" #elif L==7 "Miejsce" #elif L==8 "Localização" #endif , #if L==0 "Nombre de
titulacions" #elif L==1 "Anzahl der
Studiengänge" #elif L==2 "No. of
degrees" #elif L==3 "Nº de
titulaciones" #elif L==4 "Nombre
d'études" #elif L==5 "Nº de
titulaciones" // Okoteve traducción #elif L==6 "Numero di
lauree" #elif L==7 "Numery of
stopni" #elif L==8 "Nº de
titulaçoes" #endif }; const char *Txt_Please_specify_if_you_allow_access_to_test_questions_from_mobile_applications = #if L==0 "Por favor, especifique si permite el acceso" " a las preguntas de test desde aplicaciones móviles."; // Necessita traduccio #elif L==1 "Please specify if you allow access" " to test questions from mobile applications."; // Need Übersetzung #elif L==2 "Please specify if you allow access" " to test questions from mobile applications."; #elif L==3 "Por favor, especifique si permite el acceso" " a las preguntas de test desde aplicaciones móviles."; #elif L==4 "Please specify if you allow access" " to test questions from mobile applications."; // Besoin de traduction #elif L==5 "Por favor, especifique si permite el acceso" " a las preguntas de test desde aplicaciones móviles."; // Okoteve traducción #elif L==6 "Please specify if you allow access" " to test questions from mobile applications."; // Bisogno di traduzione #elif L==7 "Please specify if you allow access" " to test questions from mobile applications."; // Potrzebujesz tlumaczenie #elif L==8 "Please specify if you allow access" " to test questions from mobile applications."; // Necessita de tradução #endif const char *Txt_Plugin = #if L==0 "Complement"; #elif L==1 "Plugin"; #elif L==2 "Plugin"; #elif L==3 "Complemento"; #elif L==4 "Plugin"; #elif L==5 "Complemento"; // Okoteve traducción #elif L==6 "Plugin"; #elif L==7 "Wtyczka"; #elif L==8 "Plugin"; #endif const char *Txt_Plugin_X_removed = // Warning: it is very important to include %s in the following sentences #if L==0 "Complemento %s eliminado."; // Necessita traduccio #elif L==1 "Plugin %s entfernt."; #elif L==2 "Plugin %s removed."; #elif L==3 "Complemento %s eliminado."; #elif L==4 "Plugin %s removed."; // Besoin de traduction #elif L==5 "Complemento %s eliminado."; // Okoteve traducción #elif L==6 "Plugin %s rimosso."; #elif L==7 "Wtyczka %s usunieta."; #elif L==8 "Plugin %s removed."; // Necessita de tradução #endif const char *Txt_Plugins = #if L==0 "Complements"; #elif L==1 "Plugins"; #elif L==2 "Plugins"; #elif L==3 "Complementos"; #elif L==4 "Plugins"; #elif L==5 "Complementos"; // Okoteve traducción #elif L==6 "Plugin"; #elif L==7 "wtyczki"; #elif L==8 "Plugins"; #endif const char *Txt_Post_X_allowed = // Warning: it is very important to include %u in the following sentences #if L==0 "Mensaje %u permitido."; // Necessita traduccio #elif L==1 "Post %u allowed."; // Need Übersetzung #elif L==2 "Post %u allowed."; #elif L==3 "Mensaje %u permitido."; #elif L==4 "Post %u allowed."; // Besoin de traduction #elif L==5 "Mensaje %u permitido."; // Okoteve traducción #elif L==6 "Post %u autorizzato."; #elif L==7 "Post %u dozwolone."; #elif L==8 "Post %u allowed."; // Necessita de tradução #endif const char *Txt_Post_X_allowed_Click_to_ban_it = // Warning: it is very important to include %u in the following sentences #if L==0 "Mensaje %u permitido. Pulse para censurarlo."; // Necessita traduccio #elif L==1 "Post %u allowed. Click to ban it."; // Need Übersetzung #elif L==2 "Post %u allowed. Click to ban it."; #elif L==3 "Mensaje %u permitido. Pulse para censurarlo."; #elif L==4 "Post %u allowed. Click to ban it."; // Besoin de traduction #elif L==5 "Mensaje %u permitido. Pulse para censurarlo."; // Okoteve traducción #elif L==6 "Post %u autorizzato. Clicca per censurarlo."; #elif L==7 "Post% u dozwolone. Kliknij, aby to zakazac."; #elif L==8 "Post %u allowed. Click to ban it."; // Necessita de tradução #endif const char *Txt_Post_and_thread_removed = #if L==0 "Mensaje y discusión eliminados."; // Necessita traduccio #elif L==1 "Nachricht und Faden entfernt."; #elif L==2 "Post and thread removed."; #elif L==3 "Mensaje y discusión eliminados."; #elif L==4 "Post and thread removed."; // Besoin de traduction #elif L==5 "Mensaje y discusión eliminados."; // Okoteve traducción #elif L==6 "Post e discussione rimossi."; #elif L==7 "Post watku usuniety."; #elif L==8 "Post and thread removed."; // Necessita de tradução #endif const char *Txt_Post_banned = #if L==0 "Mensaje no permitido"; // Necessita traduccio #elif L==1 "Post banned."; // Need Übersetzung #elif L==2 "Post banned."; #elif L==3 "Mensaje no permitido"; #elif L==4 "Post banned."; // Besoin de traduction #elif L==5 "Mensaje no permitido"; // Okoteve traducción #elif L==6 "Post censurato."; #elif L==7 "Post zakazany."; #elif L==8 "Post banned."; // Necessita de tradução #endif const char *Txt_Post_X_banned = // Warning: it is very important to include %u in the following sentences #if L==0 "Mensaje %u no permitido"; // Necessita traduccio #elif L==1 "Post %u banned."; // Need Übersetzung #elif L==2 "Post %u banned."; #elif L==3 "Mensaje %u no permitido"; #elif L==4 "Post %u banned."; // Besoin de traduction #elif L==5 "Mensaje %u no permitido"; // Okoteve traducción #elif L==6 "Post %u censurato."; #elif L==7 "Post %u zakazany."; #elif L==8 "Post %u banned."; // Necessita de tradução #endif const char *Txt_Post_X_banned_Click_to_unban_it = // Warning: it is very important to include %u in the following sentences #if L==0 "Mensaje %u no permitido. Pulse para permitirlo."; // Necessita traduccio #elif L==1 "Post %u banned. Click to unban it."; // Need Übersetzung #elif L==2 "Post %u banned. Click to unban it."; #elif L==3 "Mensaje %u no permitido. Pulse para permitirlo."; #elif L==4 "Post %u banned. Click to unban it."; // Besoin de traduction #elif L==5 "Mensaje %u no permitido. Pulse para permitirlo."; // Okoteve traducción #elif L==6 "Post %u censurato. Clicca per autorizzarlo."; #elif L==7 "Post %u zakazany.Kliknij, aby to odbanowac."; #elif L==8 "Post %u banned. Click to unban it."; // Necessita de tradução #endif const char *Txt_Post_sent = #if L==0 "Mensaje enviado."; // Necessita traduccio #elif L==1 "Post sent."; // Need Übersetzung #elif L==2 "Post sent."; #elif L==3 "Mensaje enviado."; #elif L==4 "Post sent."; // Besoin de traduction #elif L==5 "Mensaje enviado."; // Okoteve traducción #elif L==6 "Post inviato."; #elif L==7 "Post wyslany."; #elif L==8 "Post sent."; // Necessita de tradução #endif const char *Txt_Post_removed = #if L==0 "Mensaje eliminado."; // Necessita traduccio #elif L==1 "Nachricht entfernt."; #elif L==2 "Post removed."; #elif L==3 "Mensaje eliminado."; #elif L==4 "Post removed."; // Besoin de traduction #elif L==5 "Mensaje eliminado."; // Okoteve traducción #elif L==6 "Post rimosso."; #elif L==7 "Post usuniety."; #elif L==8 "Post removed."; // Necessita de tradução #endif const char *Txt_Post_unbanned = #if L==0 "Mensaje permitido"; // Necessita traduccio #elif L==1 "Post unbanned."; // Need Übersetzung #elif L==2 "Post unbanned"; #elif L==3 "Mensaje permitido"; #elif L==4 "Post unbanned."; // Besoin de traduction #elif L==5 "Mensaje permitido"; // Okoteve traducción #elif L==6 "Post autorizzato."; #elif L==7 "Post odbanowany"; #elif L==8 "Post unbanned."; // Necessita de tradução #endif const char *Txt_Preferences = #if L==0 "Preferències"; #elif L==1 "Einstellungen"; #elif L==2 "Preferences"; #elif L==3 "Preferencias"; #elif L==4 "Préférences"; #elif L==5 "Preferencias"; // Okoteve traducción #elif L==6 "Preferenze"; #elif L==7 "Preferencje"; #elif L==8 "Preferências"; #endif const char *Txt_Present = #if L==0 "Present"; #elif L==1 "Vorhanden"; #elif L==2 "Present"; #elif L==3 "Presente"; #elif L==4 "Présent"; #elif L==5 "Presente"; // Okoteve traducción #elif L==6 "Presente"; #elif L==7 "Obecny"; #elif L==8 "Presente"; #endif const char *Txt_Presents = #if L==0 "Presents"; #elif L==1 "Vorhanden"; #elif L==2 "Presents"; #elif L==3 "Presentes"; #elif L==4 "Présents"; #elif L==5 "Presentes"; // Okoteve traducción #elif L==6 "Presenti"; #elif L==7 "Obecny"; #elif L==8 "Presentes"; #endif const char *Txt_Print_view = #if L==0 "Vista d'impressió"; #elif L==1 "Druckansicht"; #elif L==2 "Print view"; #elif L==3 "Vista de impresión"; #elif L==4 "Vue d'impression"; #elif L==5 "Vista de impresión"; // Okoteve traducción #elif L==6 "Anteprima di stampa"; #elif L==7 "Widok do druku"; #elif L==8 "Impressão vista"; #endif const char *Txt_Private_available_to_certain_users_identified = #if L==0 "Privat, disponible per a certs usuaris identificats"; #elif L==1 "Private, verfügbar auf bestimmte Benutzer identifiziert"; #elif L==2 "Private, available to certain users identified"; #elif L==3 "Privado, disponible para ciertos usuarios identificados"; #elif L==4 "Privé, à la disposition de certains utilisateurs identifiés"; #elif L==5 "Privado, disponible para ciertos usuarios identificados"; // Okoteve traducción #elif L==6 "Privato, a disposizione degli utenti individuati alcuni"; #elif L==7 "Prywatne, dostępne dla określonych użytkowników zidentyfikowanych"; #elif L==8 "Privado, disponível para alguns usuários identificados"; #endif const char *Txt_Private_Photo = #if L==0 "Foto privada"; #elif L==1 "Private Foto"; #elif L==2 "Private photo"; #elif L==3 "Foto privada"; #elif L==4 "Photo privée"; #elif L==5 "Foto privada"; // Okoteve traducción #elif L==6 "Foto privata"; #elif L==7 "Prywatne zdjecia"; #elif L==8 "Foto privada"; #endif const char *Txt_Private_storage_zone = #if L==0 "Zona d'emmagatzematge privada"; #elif L==1 "Privater Speicherbereich"; #elif L==2 "Private storage area"; #elif L==3 "Zona de almacenamiento privada"; #elif L==4 "Zone de stockage privée"; #elif L==5 "Zona de almacenamiento privada"; // Okoteve traducción #elif L==6 "Area di archiviazione privata"; #elif L==7 "Prywatny magazyn"; #elif L==8 "Zona privada de armazenamento"; #endif const char *Txt_private_storage_zone = #if L==0 "zona de almacenamiento privada"; // Necessita traduccio #elif L==1 "privater Speicherbereich"; #elif L==2 "private storage area"; #elif L==3 "zona de almacenamiento privada"; #elif L==4 "zone de stockage privée"; #elif L==5 "zona de almacenamiento privada"; // Okoteve traducción #elif L==6 "area di archiviazione privata"; #elif L==7 "obszar prywatnego przechowywania"; #elif L==8 "zona privada de armazenamento"; #endif const char *Txt_post = #if L==0 "missatge"; #elif L==1 "Nachricht"; #elif L==2 "post"; #elif L==3 "mensaje"; #elif L==4 "message"; #elif L==5 "marandu"; #elif L==6 "post"; #elif L==7 "post"; #elif L==8 "post"; #endif const char *Txt_posts = #if L==0 "missatges"; #elif L==1 "Nachrichten"; #elif L==2 "posts"; #elif L==3 "mensajes"; #elif L==4 "messages"; #elif L==5 "marandu"; #elif L==6 "post"; #elif L==7 "posty"; #elif L==8 "posts"; #endif const char *Txt_Public_photo = #if L==0 "Foto pública"; #elif L==1 "Öffentliches Foto"; #elif L==2 "Public photo"; #elif L==3 "Foto pública"; #elif L==4 "Photo public"; #elif L==5 "Foto pública"; // Okoteve traducción #elif L==6 "Foto pubblica"; #elif L==7 "Zdjęcie publiczne"; #elif L==8 "Foto pública"; #endif const char *Txt_Public_open_educational_resource_OER_for_everyone = #if L==0 "Públic, recurs educatiu obert (OER) per a tothom"; #elif L==1 "Öffentliche, Open Educational Resource (OER) für jedermann"; #elif L==2 "Public, open educational resource for everyone"; #elif L==3 "Público, recurso educativo abierto (OER) para todo el mundo"; #elif L==4 "Public, ressource éducatif libre (REL) pour tout le monde"; #elif L==5 "Público, recurso educativo abierto (OER) para todo el mundo"; // Okoteve traducción #elif L==6 "Pubblico, risorse didattici aperto (OER) per tutti"; #elif L==7 "Publiczne, otwarte zasoby edukacyjne (OER) dla każdego"; #elif L==8 "Público, recurso educacional aberto (OER) para todos"; #endif const char *Txt_Public_views = #if L==0 "Accessos públics"; #elif L==1 "Öffentliche Ansichten"; #elif L==2 "Public views"; #elif L==3 "Accesos públicos"; #elif L==4 "Vues publics"; #elif L==5 "Accesos públicos"; // Okoteve traducción #elif L==6 "Visualizzazioni pubblici"; #elif L==7 "Publiczne odsłon"; #elif L==8 "Acessos públicos"; #endif const char *Txt_QR_code = #if L==0 "Codi QR"; #elif L==1 "QR-Code"; #elif L==2 "QR code"; #elif L==3 "Código QR"; #elif L==4 "QR Code"; #elif L==5 "Código QR"; // Okoteve traducción #elif L==6 "Codice QR"; #elif L==7 "QR Code"; #elif L==8 "Código QR"; #endif const char *Txt_Question = #if L==0 "Pregunta"; // Necessita traduccio #elif L==1 "Frage"; #elif L==2 "Question"; #elif L==3 "Pregunta"; #elif L==4 "Question"; #elif L==5 "Pregunta"; // Okoteve traducción #elif L==6 "Domanda"; #elif L==7 "Pytanie"; #elif L==8 "Questão"; #endif const char *Txt_Question_code_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Pregunta amb codi %ld"; #elif L==1 "Frage Code %ld"; #elif L==2 "Code %ld"; #elif L==3 "Pregunta con código %ld"; #elif L==4 "Code de question %ld"; #elif L==5 "Pregunta con código %ld"; // Okoteve traducción #elif L==6 "Codice di domanda %ld"; #elif L==7 "Kodeks pytanie %ld"; #elif L==8 "Questão com código %ld"; #endif const char *Txt_Question_modified = #if L==0 "Pregunta modificada."; #elif L==1 "Frage modifiziert."; #elif L==2 "Question modified."; #elif L==3 "Pregunta modificada."; #elif L==4 "Question modifiée."; #elif L==5 "Pregunta modificada."; // Okoteve traducción #elif L==6 "Domanda modificata."; #elif L==7 "Pytanie zmodyfikowane."; #elif L==8 "Questão modificada."; #endif const char *Txt_Question_removed = #if L==0 "Pregunta eliminada."; #elif L==1 "Frage entfernt."; #elif L==2 "Question removed."; #elif L==3 "Pregunta eliminada."; #elif L==4 "Question supprimée."; #elif L==5 "Pregunta eliminada."; // Okoteve traducción #elif L==6 "Domanda rimossa."; #elif L==7 "Pytanie usuniete."; #elif L==8 "Questão removioda."; #endif const char *Txt_Questions = #if L==0 "Preguntes"; #elif L==1 "Fragen"; #elif L==2 "Questions"; #elif L==3 "Preguntas"; #elif L==4 "Questions"; #elif L==5 "Preguntas"; // Okoteve traducción #elif L==6 "Domande"; #elif L==7 "Pytań"; #elif L==8 "Questões"; #endif const char *Txt_Questions_and_problems = #if L==0 "Consultes i problemes"; #elif L==1 "Fragen und Probleme"; #elif L==2 "Questions and problems"; #elif L==3 "Consultas y problemas"; #elif L==4 "Questions et problèmes"; #elif L==5 "Consultas y problemas"; // Okoteve traducción #elif L==6 "Domande e problemi"; #elif L==7 "Pytania i problemy"; #elif L==8 "Questões e problemas"; #endif const char *Txt_Quota_exceeded = #if L==0 "¡Cuota excedida!"; // Necessita traduccio #elif L==1 "Kontingent überschritten!"; #elif L==2 "Quota exceeded!"; #elif L==3 "¡Cuota excedida!"; #elif L==4 "Quota dépassé!"; #elif L==5 "¡Cuota excedida!"; // Okoteve traducción #elif L==6 "Quota superata!"; #elif L==7 "Przekroczono przydzial!"; #elif L==8 "Quota excedida!"; #endif const char *Txt_ReaBRders = #if L==0 "Lec-
tores"; // Necessita traduccio #elif L==1 "Leser"; #elif L==2 "Rea-
ders"; #elif L==3 "Lec-
tores"; #elif L==4 "Lec-
teurs"; #elif L==5 "Lec-
tores"; // Okoteve traducción #elif L==6 "Le-
ttori"; #elif L==7 "Czytel-
ników"; #elif L==8 "Lei-
tores"; #endif const char *Txt_Real_number_between_A_and_B_1 = #if L==0 "Nombre real entre"; #elif L==1 "Reelle Zahl zwischen"; #elif L==2 "Real number between"; #elif L==3 "Nº real entre"; #elif L==4 "Nombre réel entre"; #elif L==5 "Nº real entre"; // Okoteve traducción #elif L==6 "Numero reale compreso tra"; #elif L==7 "Prawdziwa liczbe miedzy"; #elif L==8 "Nº real entre"; #endif const char *Txt_Real_number_between_A_and_B_2 = #if L==0 "y"; // Necessita traduccio #elif L==1 "und"; #elif L==2 "and"; #elif L==3 "y"; #elif L==4 "et"; #elif L==5 "y"; // Okoteve traducción #elif L==6 "e"; #elif L==7 "i"; #elif L==8 "e"; #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 #if L==0 "Se ha eliminado la ficha de %s."; // Necessita traduccio #elif L==1 "Record card of %s has been removed."; // Need Übersetzung #elif L==2 "Record card of %s has been removed."; #elif L==3 "Se ha eliminado la ficha de %s."; #elif L==4 "Record card of %s has been removed."; // Besoin de traduction #elif L==5 "Se ha eliminado la ficha de %s."; // Okoteve traducción #elif L==6 "La scheda de %s è stata rimossa."; #elif L==7 "Karta Rekord %s zostala usunieta."; #elif L==8 "Record card of %s has been removed."; // Necessita de tradução #endif const char *Txt_record_cards_per_page = #if L==0 "fichas por página"; // Necessita traduccio #elif L==1 "record cards per page"; // Need Übersetzung #elif L==2 "record cards per page"; #elif L==3 "fichas por página"; #elif L==4 "record cards per page"; // Besoin de traduction #elif L==5 "fichas por página"; // Okoteve traducción #elif L==6 "scheda per pagina"; #elif L==7 "karty zapisu na stronie"; #elif L==8 "record cards per page"; // Necessita de tradução #endif const char *Txt_Record_field_X_removed = // Warning: it is very important to include %s in the following sentences #if L==0 "Campo de ficha %s eliminado."; // Necessita traduccio #elif L==1 "Datenfeld %s entfernt."; #elif L==2 "Record field %s removed."; #elif L==3 "Campo de ficha %s eliminado."; #elif L==4 "Record field %s removed."; // Besoin de traduction #elif L==5 "Campo de ficha %s eliminado."; // Okoteve traducción #elif L==6 "Campo scheda %s rimosso."; #elif L==7 "Pole rekordu %s usuniete."; #elif L==8 "Record field %s removed."; // Necessita de tradução #endif const char *Txt_RECORD_FIELD_VISIBILITY_MENU[Rec_NUM_TYPES_VISIBILITY] = { #if L==0 "Oculto" // Necessita traduccio #elif L==1 "Versteckt" #elif L==2 "Hidden" #elif L==3 "Oculto" #elif L==4 "Caché" #elif L==5 "Oculto" // Okoteve traducción #elif L==6 "Nascosto" #elif L==7 "Ukryty" #elif L==8 "Oculto" #endif , #if L==0 "Visible pero no editable" // Necessita traduccio #elif L==1 "Sichtbar, aber nicht bearbeitet werden" #elif L==2 "Visible but not editable" #elif L==3 "Visible pero no editable" #elif L==4 "Visible mais non modifiable" #elif L==5 "Visible pero no editable" // Okoteve traducción #elif L==6 "Visibile ma non modificabile" #elif L==7 "Widoczne, ale nie mozna edytować" #elif L==8 "Visível, mas não editável" #endif , #if L==0 "Visible y editable" // Necessita traduccio #elif L==1 "Sichtbar und bearbeitet werde" #elif L==2 "Visible and editable" #elif L==3 "Visible y editable" #elif L==4 "Visible et modifiable" #elif L==5 "Visible y editable" // Okoteve traducción #elif L==6 "Visibile e modificabile" #elif L==7 "Widzialne i mozna edytować" #elif L==8 "Visível e editável" #endif }; const char *Txt_RECORD_FIELD_VISIBILITY_MSG[Rec_NUM_TYPES_VISIBILITY] = // Warning: it is very important to include %s in the following sentences { #if L==0 "A partir de ahora los estudiantes" " no podrán ver el campo %s de las fichas."// Necessita traduccio #elif L==1 "Von nun an können die Studenten" " nicht das Feld %s der Profile." #elif L==2 "From now on students" " can not see the field %s of the records." #elif L==3 "A partir de ahora los estudiantes" " no podrán ver el campo %s de las fichas." #elif L==4 "A partir de maintenant, les étudiants" " ne peuvent pas voir le champ %s de les cartes." #elif L==5 "A partir de ahora los estudiantes" " no podrán ver el campo %s de las fichas."// Okoteve traducción #elif L==6 "Da ora in poi gli studenti" " non possono visualizzare il campo %s delle schede." #elif L==7 "Od teraz studenci" " nie widac pola %s zapisów." #elif L==8 "De agora em diante," " os alunos não podem ver o campo %s dos cartões." #endif , #if L==0 "A partir de ahora los estudiantes" " podrán ver pero no editar el campo %s de las fichas."// Necessita traduccio #elif L==1 "Von nun an können sich Studenten," " aber nicht bearbeiten das Feld %s der Profile." #elif L==2 "From now on students" " can view but not edit the field %s of the records." #elif L==3 "A partir de ahora los estudiantes" " podrán ver pero no editar el campo %s de las fichas." #elif L==4 "A partir de maintenant, les étudiants" " peuvent consulter mais pas modifier le champ %s de les cartes." #elif L==5 "A partir de ahora los estudiantes" " podrán ver pero no editar el campo %s de las fichas."// Okoteve traducción #elif L==6 "Da ora in poi gli studenti" " possono visualizzare ma non modificare il campo %s delle schede." #elif L==7 "Od teraz studenci" " moga przegladac, ale nie edytować pole %s zapisów." #elif L==8 "De agora em diante," " os alunos podem visualizar, mas não editar o campo %s dos cartões." #endif , #if L==0 "A partir de ahora los estudiantes" " podrán ver y editar el campo %s de las fichas."// Necessita traduccio #elif L==1 "Von nun an können die Studenten" " anzuzeigen und zu bearbeiten das Feld %s der Profile." #elif L==2 "From now on students" " can view and edit the field %s of the records." #elif L==3 "A partir de ahora los estudiantes" " podrán ver y editar el campo %s de las fichas." #elif L==4 "A partir de maintenant," " les étudiants peuvent consulter et modifier le champ %s de les cartes." #elif L==5 "A partir de ahora los estudiantes" " podrán ver y editar el campo %s de las fichas."// Okoteve traducción #elif L==6 "Da ora in poi" " gli studenti possono visualizzare e modificare il campo %s delle schede." #elif L==7 "Od teraz studenci" " moga ogladac i edytować pola %s zapisów." #elif L==8 "De agora em diante," " os alunos podem visualizar e editar o campo %s dos cartões." #endif }; const char *Txt_RECORD_FIELD_VISIBILITY_RECORD[Rec_NUM_TYPES_VISIBILITY] = { #if L==0 "oculto" // Necessita traduccio #elif L==1 "versteckt" #elif L==2 "hidden" #elif L==3 "oculto" #elif L==4 "caché" #elif L==5 "oculto" // Okoteve traducción #elif L==6 "nascosto" #elif L==7 "ukryty" #elif L==8 "oculto" #endif , #if L==0 "visible" // Necessita traduccio #elif L==1 "sichtbar" #elif L==2 "visible" #elif L==3 "visible" #elif L==4 "visible" #elif L==5 "visible" // Okoteve traducción #elif L==6 "visibile" #elif L==7 "widoczny" #elif L==8 "visível" #endif , #if L==0 "editable" // Necessita traduccio #elif L==1 "bearbeitet werde" #elif L==2 "editable" #elif L==3 "editable" #elif L==4 "modifiable" #elif L==5 "editable" // Okoteve traducción #elif L==6 "modificabile" #elif L==7 "edytowalne" #elif L==8 "editável" #endif }; const char *Txt_Record_fields_in_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Camps de fitxes en %s:"; #elif L==1 "Record fields in %s:"; // Need Übersetzung #elif L==2 "Record fields in %s:"; #elif L==3 "Campos de fichas en %s:"; #elif L==4 "Record fields in %s:"; // Besoin de traduction #elif L==5 "Campos de fichas en %s:"; // Okoteve traducción #elif L==6 "Campo schede in %s:"; #elif L==7 "Rekord w dziedzinie %s:"; #elif L==8 "Record fields in %s:"; // Necessita de tradução #endif const char *Txt_Recipients = #if L==0 "Destinatarios"; // Necessita traduccio #elif L==1 "Empfänger"; #elif L==2 "Recipients"; #elif L==3 "Destinatarios"; #elif L==4 "Destinataires"; #elif L==5 "Destinatarios"; // Okoteve traducción #elif L==6 "Destinatari"; #elif L==7 "Odbiorcy"; #elif L==8 "Destinatários"; #endif const char *Txt_Register = #if L==0 "Inscriure"; #elif L==1 "Anmeldung"; #elif L==2 "Register"; #elif L==3 "Inscribir"; #elif L==4 "Inscrire"; #elif L==5 "Inscribir"; // Okoteve traducción #elif L==6 "Registrare"; #elif L==7 "Zarejestruj sie"; #elif L==8 "Registrar"; #endif /* const char *Txt_Register_remove = #if L==0 "Inscriure / eliminar"; #elif L==1 "Anmeldung / entfernen"; #elif L==2 "Register / remove"; #elif L==3 "Inscribir / eliminar"; #elif L==4 "Inscrire / enlever"; #elif L==5 "Inscribir / eliminar"; // Okoteve traducción #elif L==6 "Registrare / rimuovere"; #elif L==7 "Zarejestruj sie / usun"; #elif L==8 "Registrar / tirar"; #endif */ const char *Txt_Register_students = #if L==0 "Inscriure estudiants"; #elif L==1 "Anmeldung Studenten"; #elif L==2 "Register students"; #elif L==3 "Inscribir estudiantes"; #elif L==4 "Inscrire étudiants"; #elif L==5 "Inscribir estudiantes"; // Okoteve traducción #elif L==6 "Registrare studenti"; #elif L==7 "Rejestracja studentów"; #elif L==8 "Registrar estudantes"; #endif const char *Txt_Register_the_users_indicated_in_step_1 = #if L==0 "Añadir (inscribir los usuarios indicados en el paso 1)"; // Necessita traduccio #elif L==1 "Anmeldung Sie die Benutzer, die auf der Liste"; #elif L==2 "Add (register the users indicated in step 1)"; #elif L==3 "Añadir (inscribir los usuarios indicados en el paso 1)"; #elif L==4 "Inscrire les utilisateurs qui sont sur la liste"; #elif L==5 "Añadir (inscribir los usuarios indicados en el paso 1)"; // Okoteve traducción #elif L==6 "Registrare gli utenti che sono in lista"; #elif L==7 "Rejestracja uzytkowników, którzy sa na liscie"; #elif L==8 "Registrar os utilizadores que estão na lista"; #endif const char *Txt_Register_the_users_indicated_in_step_1_and_remove_the_users_not_indicated = #if L==0 "Actualizar (inscribir los usuarios indicados en el paso 1" " y eliminar los no indicados)"; // Necessita traduccio #elif L==1 "Entfernen Sie die Benutzer, die nicht auf der Liste," " und Anmeldung Sie die Benutzer, die auf der Liste"; #elif L==2 "Update (register the users indicated in step 1" " and remove the users not indicated)"; #elif L==3 "Actualizar (inscribir los usuarios indicados en el paso 1" " y eliminar los no indicados)"; #elif L==4 "Enlever les utilisateurs qui ne sont pas sur la liste," " et inscrire les utilisateurs qui sont sur la liste"; #elif L==5 "Actualizar (inscribir los usuarios indicados en el paso 1" " y eliminar los no indicados)"; // Okoteve traducción #elif L==6 "Rimuovere gli utenti che non sono sulla lista," " e registrare gli utenti che invece lo sono"; #elif L==7 "Usun użytkownikami, którzy sa nie na liscie," "i zarejestrowac uzytkowników, którzy sa na liscie"; #elif L==8 "Tirar os utilizadores que não estão na lista," " e registrar os utilizadores que estão na lista"; #endif const char *Txt_Register_user_IN_A_COURSE_OR_DEGREE = #if L==0 "Inscriure usuari"; #elif L==1 "Anmeldung Benutzer"; #elif L==2 "Register user"; #elif L==3 "Inscribir usuario"; #elif L==4 "Inscrire utilisateur"; #elif L==5 "Inscribir usuario"; // Okoteve traducción #elif L==6 "Registrare utente"; #elif L==7 "Rejestracja użytkownika"; #elif L==8 "Registrar utilizador"; #endif const char *Txt_Register_me_in_the_course_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Inscriureme en l'assignatura %s"; #elif L==1 "Anmeldung Sie mir im Veranstaltung %s"; #elif L==2 "Register me in the course %s"; #elif L==3 "Inscribirme en la asignatura %s"; #elif L==4 "Inscrire-moi dans la matière %s"; #elif L==5 "Inscribirme en la asignatura %s"; // Okoteve traducción #elif L==6 "Registrami utente nel corso %s"; #elif L==7 "Rejestracja mnie w kurs %s"; #elif L==8 "Registrar me na disciplina %s"; #endif const char *Txt_Register_user_in_the_course_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Inscriure usuari en l'assignatura %s"; #elif L==1 "Anmeldung Benutzer im Veranstaltung %s"; #elif L==2 "Register user in the course %s"; #elif L==3 "Inscribir usuario en la asignatura %s"; #elif L==4 "Inscrire utilisateur dans la matière %s"; #elif L==5 "Inscribir usuario en la asignatura %s"; // Okoteve traducción #elif L==6 "Registrare utente nel corso %s"; #elif L==7 "Rejestracja użytkownika w kurs %s"; #elif L==8 "Registrar utilizador na disciplina %s"; #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 #if L==0 "Inscriure usuari com a administrador" " de la titulació %s"; #elif L==1 "Anmeldung Benutzer als Administrator" " des Studiengang %s"; #elif L==2 "Register user as an administrator" " of the degree %s"; #elif L==3 "Inscribir usuario como administrador" " de la titulación %s"; #elif L==4 "Inscrire utilisateur en tant qu'administrateur" " du étude %s"; #elif L==5 "Inscribir usuario como administrador" " de la titulación %s"; // Okoteve traducción #elif L==6 "Registrare utente come amministratore" " della laurea %s"; #elif L==7 "Rejestracja użytkownika jako administrator" " stopnia %s"; #elif L==8 "Registrar utilizador como administrador" " da titulação %s"; #endif const char *Txt_Enrollment_confirmed = #if L==0 "Inscripción confirmada"; // Necessita traduccio #elif L==1 "Enrollment confirmed"; // Need Übersetzung #elif L==2 "Enrollment confirmed"; #elif L==3 "Inscripción confirmada"; #elif L==4 "Enrollment confirmed"; // Besoin de traduction #elif L==5 "Inscripción confirmada"; // Okoteve traducción #elif L==6 "Registrazione confermata"; #elif L==7 "Rejestracja potwierdzona"; #elif L==8 "Enrollment confirmed"; // Necessita de tradução #endif const char *Txt_Enrollment_not_confirmed = #if L==0 "Inscripción pendiente de confirmación"; // Necessita traduccio #elif L==1 "Enrollment not confirmed"; // Need Übersetzung #elif L==2 "Enrollment not confirmed"; #elif L==3 "Inscripción pendiente de confirmación"; #elif L==4 "Enrollment not confirmed"; // Besoin de traduction #elif L==5 "Inscripción pendiente de confirmación"; // Okoteve traducción #elif L==6 "Registrazione non confermata"; #elif L==7 "Rejestracja nie potwierdzona"; #elif L==8 "Enrollment not confirmed"; // Necessita de tradução #endif const char *Txt_Reject = #if L==0 "Rebutjar"; #elif L==1 "Ablehnen"; #elif L==2 "Reject"; #elif L==3 "Rechazar"; #elif L==4 "Rejeter"; #elif L==5 "Rechazar"; // Okoteve traducción #elif L==6 "Rifiutare"; #elif L==7 "Odrzucać"; #elif L==8 "Rejeitar"; #endif const char *Txt_Remove = #if L==0 "Eliminar"; #elif L==1 "Entfernen"; #elif L==2 "Remove"; #elif L==3 "Eliminar"; #elif L==4 "Supprimer"; #elif L==5 "Mbogue"; #elif L==6 "Rimuovere"; #elif L==7 "Usun"; #elif L==8 "Remover"; #endif const char *Txt_Remove_all_students = #if L==0 "Eliminar tots estudiants"; #elif L==1 "Alle Studenten entfernen"; #elif L==2 "Remove all students"; #elif L==3 "Eliminar todos los estudiantes"; #elif L==4 "Enlever tous étudiants"; #elif L==5 "Eliminar todos los estudiantes"; // Okoteve traducción #elif L==6 "Rimuovere tutti gli stud."; #elif L==7 "Usun wszystkich studentów"; #elif L==8 "Tirar todos estudantes"; #endif const char *Txt_Remove_announcement_of_exam = #if L==0 "Eliminar convocatoria de examen"; // Necessita traduccio #elif L==1 "Entfernen Aufruf für Prüfung"; #elif L==2 "Remove announcement of exam"; #elif L==3 "Eliminar convocatoria de examen"; #elif L==4 "Supprimer convocation à l'examen"; #elif L==5 "Eliminar convocatoria de examen"; // Okoteve traducción #elif L==6 "Rimuovere sessione d'esame"; #elif L==7 "Usun ogloszenie egzaminu"; #elif L==8 "Remover chamada para o exame"; #endif const char *Txt_Remove_assignment = #if L==0 "Eliminar actividad"; // Necessita traduccio #elif L==1 "Aufgabe Entfernen"; #elif L==2 "Remove assignment"; #elif L==3 "Eliminar actividad"; #elif L==4 "Supprimer activité"; #elif L==5 "Eliminar actividad"; // Okoteve traducción #elif L==6 "Rimuovere attività"; #elif L==7 "Usun przypisanie"; #elif L==8 "Remover atividade"; #endif const char *Txt_Remove_banner = #if L==0 "Eliminar enlace"; // Necessita traduccio #elif L==1 "Entfernen Werbebanner"; #elif L==2 "Remove banner"; #elif L==3 "Eliminar banner"; #elif L==4 "Supprimer banniére"; #elif L==5 "Eliminar banner"; // Okoteve traducción #elif L==6 "Rimuovere banner"; #elif L==7 "Usun banner"; #elif L==8 "Remover banner"; #endif const char *Txt_Remove_centre = #if L==0 "Eliminar centro"; // Necessita traduccio #elif L==1 "Lehrinstitut entfernen"; #elif L==2 "Remove centre"; #elif L==3 "Eliminar centro"; #elif L==4 "Supprimer centre"; #elif L==5 "Eliminar centro"; // Okoteve traducción #elif L==6 "Rimuovere centro"; #elif L==7 "Usun centrum"; #elif L==8 "Remover centro"; #endif const char *Txt_Remove_country = #if L==0 "Eliminar país"; // Necessita traduccio #elif L==1 "Land entfernen"; #elif L==2 "Remove country"; #elif L==3 "Eliminar país"; #elif L==4 "Supprimer pays"; #elif L==5 "Eliminar país"; // Okoteve traducción #elif L==6 "Rimuovere paese"; #elif L==7 "Usun kraj"; #elif L==8 "Remover país"; #endif const char *Txt_Remove_course = #if L==0 "Eliminar asignatura"; // Necessita traduccio #elif L==1 "Veranstaltung entfernen"; #elif L==2 "Remove course"; #elif L==3 "Eliminar asignatura"; #elif L==4 "Supprimer matière"; #elif L==5 "Eliminar asignatura"; // Okoteve traducción #elif L==6 "Rimuovere corso"; #elif L==7 "Usun kurs"; #elif L==8 "Remover disciplina"; #endif const char *Txt_Remove_degree = #if L==0 "Eliminar titulación"; // Necessita traduccio #elif L==1 "Studiengang Entfernen"; #elif L==2 "Remove degree"; #elif L==3 "Eliminar titulación"; #elif L==4 "Supprimer étude"; #elif L==5 "Eliminar titulación"; // Okoteve traducción #elif L==6 "Rimuovere laurea"; #elif L==7 "Usun stopnia"; #elif L==8 "Remover titulação"; #endif const char *Txt_Remove_department = #if L==0 "Eliminar departamento"; // Necessita traduccio #elif L==1 "Abteilung entfernen"; #elif L==2 "Remove department"; #elif L==3 "Eliminar departamento"; #elif L==4 "Supprimer département"; #elif L==5 "Eliminar departamento"; // Okoteve traducción #elif L==6 "Rimuovere dipartimento"; #elif L==7 "Usun dział"; #elif L==8 "Remover departamento"; #endif const char *Txt_Remove_email_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Eliminar correu electrònic %s"; #elif L==1 "Entfernen E-Mail %s"; #elif L==2 "Remove e-mail %s"; #elif L==3 "Eliminar correo electrónico %s"; #elif L==4 "Supprimer courrier électronique %s"; #elif L==5 "Eliminar correo electrónico %s"; // Okoteve traducción #elif L==6 "Rimuovere e-mail %s"; #elif L==7 "Usun e-mail %s"; #elif L==8 "Remover e-mail %s"; #endif const char *Txt_Remove_event = #if L==0 "Eliminar evento"; // Necessita traduccio #elif L==1 "Ereignis Entfernen"; #elif L==2 "Remove event"; #elif L==3 "Eliminar evento"; #elif L==4 "Supprimer événement"; #elif L==5 "Eliminar evento"; // Okoteve traducción #elif L==6 "Rimuovere evento"; #elif L==7 "Usun wydarzenie"; #elif L==8 "Remover evento"; #endif const char *Txt_Remove_file = #if L==0 "Eliminar fitxer"; #elif L==1 "Datei Entfernen"; #elif L==2 "Remove file"; #elif L==3 "Eliminar archivo"; #elif L==4 "Supprimer fichier"; #elif L==5 "Eliminar archivo"; // Okoteve traducción #elif L==6 "Rimuovere file"; #elif L==7 "Usun plik"; #elif L==8 "Remover arquivo"; #endif const char *Txt_Remove_FILE_OR_LINK_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Eliminar %s"; #elif L==1 "Datei %s"; #elif L==2 "Remove %s"; #elif L==3 "Eliminar %s"; #elif L==4 "Supprimer %s"; #elif L==5 "Eliminar %s"; // Okoteve traducción #elif L==6 "Rimuovere %s"; #elif L==7 "Usun %s"; #elif L==8 "Remover %s"; #endif const char *Txt_Remove_folder_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Eliminar carpeta %s"; #elif L==1 "Verzeichnis entfernen %s"; #elif L==2 "Remove folder %s"; #elif L==3 "Eliminar carpeta %s"; #elif L==4 "Supprimer répertoire %s"; #elif L==5 "Eliminar carpeta %s"; // Okoteve traducción #elif L==6 "Rimuovere cartella %s"; #elif L==7 "Usun folder %s"; #elif L==8 "Remover diretório %s"; #endif const char *Txt_Remove_folder = #if L==0 "Eliminar carpeta"; #elif L==1 "Verzeichnis entfernen"; #elif L==2 "Remove folder"; #elif L==3 "Eliminar carpeta"; #elif L==4 "Supprimer répertoire"; #elif L==5 "Eliminar carpeta"; // Okoteve traducción #elif L==6 "Rimuovere cartella"; #elif L==7 "Usun folder"; #elif L==8 "Remover diretório"; #endif const char *Txt_Remove_group = #if L==0 "Eliminar grupo"; // Necessita traduccio #elif L==1 "Entfernen Gruppe"; #elif L==2 "Remove group"; #elif L==3 "Eliminar grupo"; #elif L==4 "Supprimer groupe"; #elif L==5 "Eliminar grupo"; // Okoteve traducción #elif L==6 "Rimuovere gruppo"; #elif L==7 "Usun gruper"; #elif L==8 "Remover grupo"; #endif const char *Txt_Remove_holiday = #if L==0 "Eliminar festividad"; // Necessita traduccio #elif L==1 "Entfernen Feiertag"; #elif L==2 "Remove holiday"; #elif L==3 "Eliminar festividad"; #elif L==4 "Supprimer fête"; #elif L==5 "Eliminar festividad"; // Okoteve traducción #elif L==6 "Rimuovere festività"; #elif L==7 "Usun wakacje"; #elif L==8 "Remover féria"; #endif const char *Txt_Remove_ID_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Eliminar ID (DNI/cèdula/passaport) %s"; #elif L==1 "Entfernen Ausweis-Nr. %s"; #elif L==2 "Remove ID %s"; #elif L==3 "Eliminar ID (DNI/cédula) %s"; #elif L==4 "Supprimer numéro d'identité %s"; #elif L==5 "Eliminar ID (DNI/cédula) %s"; // Okoteve traducción #elif L==6 "Rimuovere carta d'identità %s"; #elif L==7 "Remove ID %s"; // Potrzebujesz tlumaczenie #elif L==8 "Remover nº de identif. %s"; #endif const char *Txt_Remove_institution = #if L==0 "Eliminar institución"; // Necessita traduccio #elif L==1 "Hochschule entfernen"; #elif L==2 "Remove institution"; #elif L==3 "Eliminar institución"; #elif L==4 "Supprimer établissement"; #elif L==5 "Eliminar institución"; // Okoteve traducción #elif L==6 "Rimuovere istituzione"; #elif L==7 "Usun instytucje"; #elif L==8 "Remover instituição"; #endif const char *Txt_Remove_link = #if L==0 "Eliminar enllaç"; #elif L==1 "Entfernen Link"; #elif L==2 "Remove link"; #elif L==3 "Eliminar enlace"; #elif L==4 "Supprimer lien"; #elif L==5 "Eliminar enlace"; // Okoteve traducción #elif L==6 "Rimuovere link"; #elif L==7 "Usun link"; #elif L==8 "Remover ligação"; #endif const char *Txt_Remove_mail_domain = #if L==0 "Eliminar dominio de correo"; // Necessita traduccio #elif L==1 "Entfernen Mail-Domäne"; #elif L==2 "Remove mail domain"; #elif L==3 "Eliminar dominio de correo"; #elif L==4 "Supprimer domaine de messagerie"; #elif L==5 "Eliminar dominio de correo"; // Okoteve traducción #elif L==6 "Rimuovere campo mail"; #elif L==7 "Usun domene mail"; #elif L==8 "Remover domínio de email"; #endif const char *Txt_Remove_nickname_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Eliminar sobrenom @%s"; #elif L==1 "Entfernen Benutzername @%s"; #elif L==2 "Remove nickname @%s"; #elif L==3 "Eliminar apodo @%s"; #elif L==4 "Supprimer surnom @%s"; #elif L==5 "Eliminar apodo @%s"; // Okoteve traducción #elif L==6 "Rimuovere nome utente @%s"; #elif L==7 "Usun pseudonim @%s"; #elif L==8 "Remover alcunha @%s"; #endif const char *Txt_Remove_me_as_an_administrator = #if L==0 "Eliminarme com a administrador"; #elif L==1 "Entfernen Sie mir als Administrator"; #elif L==2 "Remove me as an administrator"; #elif L==3 "Eliminarme como administrador"; #elif L==4 "Enlever-moi en tant qu'administrateur"; #elif L==5 "Eliminarme como administrador"; // Okoteve traducción #elif L==6 "Rimuovimi come amministratore"; #elif L==7 "Usun mnie jako administrator"; #elif L==8 "Tirar me como administrador"; #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 #if L==0 "Eliminarme com a administrador" " de la titulació %s"; #elif L==1 "Entfernen Sie mir als Administrator" " des Studiengang %s"; #elif L==2 "Remove me as an administrator" " of the degree %s"; #elif L==3 "Eliminarme como administrador" " de la titulación %s"; #elif L==4 "Enlever-moi en tant qu'administrateur" " du étude %s"; #elif L==5 "Eliminarme como administrador" " de la titulación %s"; // Okoteve traducción #elif L==6 "Rimuovimi come amministratore" " della laurea %s"; #elif L==7 "Usun mnie jako administrator" " stopnia %s"; #elif L==8 "Tirar me como administrador" " da titulação %s"; #endif const char *Txt_Remove_me_from_this_course = // Warning: it is very important to include %s in the following sentences #if L==0 "Eliminarme d'aquesta assignatura"; #elif L==1 "Entfernen Sie diesen Veranstaltung"; #elif L==2 "Remove me from this course"; #elif L==3 "Eliminarme de esta asignatura"; #elif L==4 "Enlever-moi de cette matière"; #elif L==5 "Eliminarme de esta asignatura"; // Okoteve traducción #elif L==6 "Rimuovimi da questo corso"; #elif L==7 "Usuñ z kursu"; #elif L==8 "Tirar me desta disciplina"; #endif const char *Txt_Remove_me_from_the_course_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Eliminarme de l'assignatura %s"; #elif L==1 "Entfernen Sie mir aus dem Veranstaltung %s"; #elif L==2 "Remove me from the course %s"; #elif L==3 "Eliminarme de la asignatura %s"; #elif L==4 "Enlever-moi de la matière %s"; #elif L==5 "Eliminarme de la asignatura %s"; // Okoteve traducción #elif L==6 "Rimuovimi dal corso %s"; #elif L==7 "Usun mnie w kurs %s"; #elif L==8 "Tirar me da disciplina %s"; #endif const char *Txt_Remove_notice = #if L==0 "Eliminar aviso"; // Necessita traduccio #elif L==1 "Entfernen Ankündigung"; #elif L==2 "Remove notice"; #elif L==3 "Eliminar aviso"; #elif L==4 "Supprimer avis"; #elif L==5 "Eliminar aviso"; // Okoteve traducción #elif L==6 "Rimuovere avviso"; #elif L==7 "Usun ogloszenie"; #elif L==8 "Remover aviso"; #endif const char *Txt_Remove_old_users = #if L==0 "Eliminar usuaris antics"; #elif L==1 "Frühere Benutzer entfernen"; #elif L==2 "Eliminate old users"; #elif L==3 "Eliminar usuarios antiguos"; #elif L==4 "Éliminer anciens utilisateurs"; #elif L==5 "Eliminar usuarios antiguos"; // Okoteve traducción #elif L==6 "Rimuovere vecchi utenti"; #elif L==7 "Usunac starych uzytkowników"; #elif L==8 "Eliminar antigos utilizadores"; #endif const char *Txt_Remove_photo = #if L==0 "Eliminar foto"; #elif L==1 "Entfernen Foto"; #elif L==2 "Remove photo"; #elif L==3 "Eliminar foto"; #elif L==4 "Supprimer photo"; #elif L==5 "Eliminar foto"; // Okoteve traducción #elif L==6 "Rimuovere foto"; #elif L==7 "Usun zdjecie"; #elif L==8 "Remover foto"; #endif const char *Txt_Remove_place = #if L==0 "Eliminar lugar"; // Necessita traduccio #elif L==1 "Entfernen Standort"; #elif L==2 "Remove place"; #elif L==3 "Eliminar lugar"; #elif L==4 "Supprimer emplacement"; #elif L==5 "Eliminar lugar"; // Okoteve traducción #elif L==6 "Rimuovere localit`"; #elif L==7 "Usun miejsce"; #elif L==8 "Remover localização"; #endif const char *Txt_Remove_plugin = #if L==0 "Eliminar complemento"; // Necessita traduccio #elif L==1 "Entfernen Plugin"; #elif L==2 "Remove plugin"; #elif L==3 "Eliminar complemento"; #elif L==4 "Supprimer plugin"; #elif L==5 "Eliminar complemento"; // Okoteve traducción #elif L==6 "Rimuovere plugin"; #elif L==7 "Usun plugin"; #elif L==8 "Remover plugin"; #endif const char *Txt_Remove_post = #if L==0 "Eliminar mensaje"; // Necessita traduccio #elif L==1 "Entfernen Beiträg"; #elif L==2 "Remove post"; #elif L==3 "Eliminar mensaje"; #elif L==4 "Supprimer message"; #elif L==5 "Eliminar mensaje"; // Okoteve traducción #elif L==6 "Rimuovere post"; #elif L==7 "Usun post"; #elif L==8 "Remover post"; #endif const char *Txt_Remove_question = #if L==0 "Eliminar pregunta"; // Necessita traduccio #elif L==1 "Entfernen Frage"; #elif L==2 "Remove question"; #elif L==3 "Eliminar pregunta"; #elif L==4 "Supprimer question"; #elif L==5 "Eliminar pregunta"; // Okoteve traducción #elif L==6 "Rimuovere domanda"; #elif L==7 "Usun pytanie"; #elif L==8 "Remover questão"; #endif const char *Txt_Remove_record_field = #if L==0 "Eliminar campo de ficha"; // Necessita traduccio #elif L==1 "Entfernen Datenfeld"; #elif L==2 "Remove record field"; #elif L==3 "Eliminar campo de ficha"; #elif L==4 "Supprimer champ de carte"; #elif L==5 "Eliminar campo de ficha"; // Okoteve traducción #elif L==6 "Rimuovere campo di scheda"; #elif L==7 "Usun pola rekordu"; #elif L==8 "Remover campo de cartão"; #endif const char *Txt_Remove_students = #if L==0 "Eliminar estudiants"; #elif L==1 "Entfernen Studenten"; #elif L==2 "Remove students"; #elif L==3 "Eliminar estudiantes"; #elif L==4 "Enlever étudiants"; #elif L==5 "Eliminar estudiantes"; // Okoteve traducción #elif L==6 "Rimuovere studenti"; #elif L==7 "Usun studentów"; #elif L==8 "Tirar estudantes"; #endif const char *Txt_Remove_survey = #if L==0 "Eliminar encuesta"; // Necessita traduccio #elif L==1 "Entfernen Umfrage"; #elif L==2 "Remove survey"; #elif L==3 "Eliminar encuesta"; #elif L==4 "Supprimer sondage"; #elif L==5 "Eliminar encuesta"; // Okoteve traducción #elif L==6 "Rimuovere sondaggio"; #elif L==7 "Usun badania"; #elif L==8 "Remover inquérito"; #endif const char *Txt_Remove_the_MESSAGE = #if L==0 "Eliminar el"; // Necessita traduccio #elif L==1 "Entfernen Sie die"; #elif L==2 "Remove the"; #elif L==3 "Eliminar el"; #elif L==4 "Supprimer le"; #elif L==5 "Eliminar el"; // Okoteve traducción #elif L==6 "Rimuovere il"; #elif L==7 "Usun"; #elif L==8 "Remover a"; #endif const char *Txt_Remove_thread = #if L==0 "Eliminar discusión"; // Necessita traduccio #elif L==1 "Entfernen Thread"; #elif L==2 "Remove thread"; #elif L==3 "Eliminar discusión"; #elif L==4 "Supprimer fil"; #elif L==5 "Eliminar discusión"; // Okoteve traducción #elif L==6 "Rimuovere discussione"; #elif L==7 "Usun watkek"; #elif L==8 "Remover thread"; #endif const char *Txt_Remove_type_of_degree = #if L==0 "Eliminar tipo de titulación"; // Necessita traduccio #elif L==1 "Entfernen Abschlussart"; #elif L==2 "Remove type of degree"; #elif L==3 "Eliminar tipo de titulación"; #elif L==4 "Supprimer type d'étude"; #elif L==5 "Eliminar tipo de titulación"; // Okoteve traducción #elif L==6 "Rimuovere tipo di laurea"; #elif L==7 "Usun typu stopien"; #elif L==8 "Remover tipo de titulaçã"; #endif const char *Txt_Remove_type_of_group = #if L==0 "Eliminar tipo de grupo"; // Necessita traduccio #elif L==1 "Entfernen Art der Gruppe"; #elif L==2 "Remove type of group"; #elif L==3 "Eliminar tipo de grupo"; #elif L==4 "Supprimer type de groupe"; #elif L==5 "Eliminar tipo de grupo"; // Okoteve traducción #elif L==6 "Rimuovere tipo di gruppo"; #elif L==7 "Usun typ grupy"; #elif L==8 "Remover tipo de grupo"; #endif const char *Txt_Remove_the_users_not_indicated_in_step_1 = #if L==0 "Eliminar los usuarios no indicados en el paso 1"; // Necessita traduccio #elif L==1 "Entfernen Sie die Benutzer, die nicht auf der Liste"; #elif L==2 "Remove the users not indicated in step 1"; #elif L==3 "Eliminar los usuarios no indicados en el paso 1"; #elif L==4 "Enlever les utilisateurs qui ne sont pas sur la liste"; #elif L==5 "Eliminar los usuarios no indicados en el paso 1"; // Okoteve traducción #elif L==6 "Rimuovere gli utenti che non sono sulla lista"; #elif L==7 "Usun użytkownikami, którzy sa nie na liscie"; #elif L==8 "Tirar os utilizadores que não estão na lista"; #endif const char *Txt_Remove_the_users_indicated_in_step_1 = #if L==0 "Eliminar los usuarios indicados en el paso 1"; // Necessita traduccio #elif L==1 "Entfernen Sie die Benutzer, die auf der Liste"; #elif L==2 "Remove the users indicated in step 1"; #elif L==3 "Eliminar los usuarios indicados en el paso 1"; #elif L==4 "Enlever les utilisateurs qui sont sur la liste"; #elif L==5 "Eliminar los usuarios indicados en el paso 1"; // Okoteve traducción #elif L==6 "Rimuovere gli utenti che sono in lista"; #elif L==7 "Usun użytkownikami, którzy sa na liscie"; #elif L==8 "Tirar os utilizadores que estão na lista"; #endif const char *Txt_Remove_the_X_MESSAGES = #if L==0 "Eliminar los"; // Necessita traduccio #elif L==1 "Entfernen Sie die"; #elif L==2 "Remove the"; #elif L==3 "Eliminar los"; #elif L==4 "Supprimer les"; #elif L==5 "Eliminar los"; // Okoteve traducción #elif L==6 "Rimuovere il"; #elif L==7 "Usun"; #elif L==8 "Remover as"; #endif const char *Txt_Remove_user_from_this_course = #if L==0 "Eliminar usuari d'aquesta assignatura"; #elif L==1 "Entfernen Benutzer Sie diesen Veranstaltung"; #elif L==2 "Remove user from this course"; #elif L==3 "Eliminar usuario de esta asignatura"; #elif L==4 "Enlever utilisateur de cette matière"; #elif L==5 "Eliminar usuario de esta asignatura"; // Okoteve traducción #elif L==6 "Rimuovi utente da questo corso"; #elif L==7 "Usuñ użytkownika z kursu"; #elif L==8 "Tirar utilizador desta disciplina"; #endif const char *Txt_Remove_user_as_an_administrator = #if L==0 "Eliminar usuari com a administrador"; #elif L==1 "Entfernen Benutzer als Administrator"; #elif L==2 "Remove user as an administrator"; #elif L==3 "Eliminar usuario como administrador"; #elif L==4 "Enlever utilisateur en tant qu'administrateur"; #elif L==5 "Eliminar usuario como administrador"; // Okoteve traducción #elif L==6 "Rimuovi utente come amministratore"; #elif L==7 "Usun użytkownika jako administrator"; #elif L==8 "Tirar utilizador como administrador"; #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 #if L==0 "Eliminar usuari com a administrador" " de la titulació %s"; #elif L==1 "Entfernen Benutzer als Administrator" " des Studiengang %s"; #elif L==2 "Remove user as an administrator" " of the degree %s"; #elif L==3 "Eliminar usuario como administrador" " de la titulación %s"; #elif L==4 "Enlever utilisateur en tant qu'administrateur" " du étude %s"; #elif L==5 "Eliminar usuario como administrador" " de la titulación %s"; // Okoteve traducción #elif L==6 "Rimuovi utente come amministratore" " della laurea %s"; #elif L==7 "Usun użytkownika jako administrator" " stopnia %s"; #elif L==8 "Tirar utilizador como administrador" " da titulação %s"; #endif const char *Txt_Remove_user_from_the_course_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Eliminar usuari de l'assignatura %s"; #elif L==1 "Entfernen Benutzer aus dem Veranstaltung %s"; #elif L==2 "Remove user from the course %s"; #elif L==3 "Eliminar usuario de la asignatura %s"; #elif L==4 "Enlever utilisateur de la matière %s"; #elif L==5 "Eliminar usuario de la asignatura %s"; // Okoteve traducción #elif L==6 "Rimuovi utente dal corso %s"; #elif L==7 "Usun użytkownika w kurs %s"; #elif L==8 "Tirar utilizador da disciplina %s"; #endif const char *Txt_Reply = #if L==0 "Responder"; // Necessita traduccio #elif L==1 "Antworten"; #elif L==2 "Reply"; #elif L==3 "Responder"; #elif L==4 "Répondre"; #elif L==5 "Responder"; // Okoteve traducción #elif L==6 "Rispondere"; #elif L==7 "Odpowiedz"; #elif L==8 "Responder"; #endif const char *Txt_Reply_again = #if L==0 "Responder otra vez"; // Necessita traduccio #elif L==1 "Antworten wieder"; #elif L==2 "Reply again"; #elif L==3 "Responder otra vez"; #elif L==4 "Répondre à nouveau"; #elif L==5 "Responder otra vez"; // Okoteve traducción #elif L==6 "Rispondere nuovamente"; #elif L==7 "Odpowiedz ponownie"; #elif L==8 "Responder novamente"; #endif const char *Txt_Requester = #if L==0 "Sol·licitant"; #elif L==1 "Requester"; #elif L==2 "Requester"; #elif L==3 "Solicitante"; #elif L==4 "Demandeur"; #elif L==5 "Solicitante"; // Okoteve traducción #elif L==6 "Richiedente"; #elif L==7 "Żądającego"; #elif L==8 "Requerente"; #endif const char *Txt_Reset = #if L==0 "Poner a cero"; // Necessita traduccio #elif L==1 "Reset"; #elif L==2 "Reset"; #elif L==3 "Poner a cero"; #elif L==4 "Reset"; #elif L==5 "Poner a cero"; // Okoteve traducción #elif L==6 "Resettare"; #elif L==7 "Reset"; #elif L==8 "Reiniciar"; #endif const char *Txt_Reset_survey = #if L==0 "Poner encuesta a cero"; // Necessita traduccio #elif L==1 "Reset Umfrage"; #elif L==2 "Reset survey"; #elif L==3 "Poner encuesta a cero"; #elif L==4 "Reset sondage"; #elif L==5 "Poner encuesta a cero"; // Okoteve traducción #elif L==6 "Resettare sondaggio"; #elif L==7 "Reset badania"; #elif L==8 "Reiniciar inquérito"; #endif const char *Txt_results_per_page = #if L==0 "resultados por página"; // Necessita traduccio #elif L==1 "results per page"; // Need Übersetzung #elif L==2 "results per page"; #elif L==3 "resultados por página"; #elif L==4 "results per page"; // Besoin de traduction #elif L==5 "resultados por página"; // Okoteve traducción #elif L==6 "risultati per pagina"; #elif L==7 "wyników na stronie"; #elif L==8 "results per page"; // Necessita de tradução #endif const char *Txt_Retype_new_password = #if L==0 "Reescriviu la nova contrasenya"; #elif L==1 "Wiederholung neues Passwort"; #elif L==2 "Retype new password"; #elif L==3 "Reescriba la nueva contraseña"; #elif L==4 "Confirmez votre nouveau mot de passe"; #elif L==5 "Reescriba la nueva contraseña"; // Okoteve traducción #elif L==6 "Riscrivi la nuova password"; #elif L==7 "Powtórz nowe hasło"; #elif L==8 "Redigite a nova senha"; #endif const char *Txt_Role = #if L==0 "Rol"; #elif L==1 "Rolle"; #elif L==2 "Role"; #elif L==3 "Rol"; #elif L==4 "Rôle"; #elif L==5 "Rol"; // Okoteve traducción #elif L==6 "Ruolo"; #elif L==7 "Rolę"; #elif L==8 "Papel"; #endif const char *Txt_ROLE_STATS[Sta_NUM_ROLES_STAT] = { // Sta_IDENTIFIED_USRS #if L==0 "identificats" #elif L==1 "Identifiziert" #elif L==2 "identified" #elif L==3 "identificados" #elif L==4 "identifiés" #elif L==5 "identificados" // Okoteve traducción #elif L==6 "identificati" #elif L==7 "zidentyfikowane" #elif L==8 "identificados" #endif , // Sta_ALL_USRS #if L==0 "identificats o desconeguts" #elif L==1 "Identifiziert oder Unbekannte" #elif L==2 "identified or unknown" #elif L==3 "identificados o desconocidos" #elif L==4 "identifiés ou inconnus" #elif L==5 "identificados o desconocidos" // Okoteve traducción #elif L==6 "identificati o sconosciuti" #elif L==7 "zidentyfikowanej lub nieznane" #elif L==8 "identificados ou desconhecidos" #endif , // Sta_INS_ADMINS #if L==0 "administradors d'institucions" #elif L==1 "Administratoren von Hochschulen" #elif L==2 "administrators of institutions" #elif L==3 "administradores de instituciones" #elif L==4 "administrateurs d'établissements" #elif L==5 "administradores de instituciones" // Okoteve traducción #elif L==6 "amministratori di istituzioni" #elif L==7 "Administratorzy instytucje" #elif L==8 "administradores de instituções" #endif , // Sta_CTR_ADMINS #if L==0 "administradors de centres" #elif L==1 "Administratoren von Lehrinstitute" #elif L==2 "administrators of centres" #elif L==3 "administradores de centros" #elif L==4 "administrateurs de centres" #elif L==5 "administradores de centros" // Okoteve traducción #elif L==6 "amministratori di centri" #elif L==7 "Administratorzy centra" #elif L==8 "administradores de centros" #endif , // Sta_DEG_ADMINS #if L==0 "administradors de titulacions" #elif L==1 "Administratoren von Studiengänge" #elif L==2 "administrators of degrees" #elif L==3 "administradores de titulaciones" #elif L==4 "administrateurs de degrés" #elif L==5 "administradores de titulaciones" // Okoteve traducción #elif L==6 "amministratori di gradi" #elif L==7 "Administratorzy stopni" #elif L==8 "administradores de graus" #endif , // Sta_TEACHERS #if L==0 "professors" #elif L==1 "Lehrkräfte" #elif L==2 "teachers" #elif L==3 "profesores" #elif L==4 "enseignants" #elif L==5 "mbo'ehára" #elif L==6 "professori" #elif L==7 "nauczycieli" #elif L==8 "professores" #endif , // Sta_STUDENTS #if L==0 "estudiants" #elif L==1 "Studenten" #elif L==2 "students" #elif L==3 "estudiantes" #elif L==4 "étudiants" #elif L==5 "temimbo'e" #elif L==6 "studenti" #elif L==7 "studenci" #elif L==8 "estudantes" #endif , // Sta_VISITORS #if L==0 "visitants" #elif L==1 "Besucher" #elif L==2 "visitors" #elif L==3 "visitantes" #elif L==4 "visiteurs" #elif L==5 "visitantes" // Okoteve traducción #elif L==6 "visitatori" #elif L==7 "odwiedzający" #elif L==8 "visitantes" #endif , // Sta_GUESTS #if L==0 "convidats (sense assignatures)" #elif L==1 "Eingeladen (ohne Veranstaltungen)" #elif L==2 "guests (without courses)" #elif L==3 "invitados (sin asignaturas)" #elif L==4 "invités (sans matières)" #elif L==5 "invitados (sin asignaturas)" // Okoteve traducción #elif L==6 "ospiti (senza corsi)" #elif L==7 "zaproszeny (bez kursów)" #elif L==8 "convidados (sem disciplinas)" #endif , // Sta_UNKNOWN_USRS #if L==0 "desconeguts" #elif L==1 "Unbekannte" #elif L==2 "unknown" #elif L==3 "desconocidos" #elif L==4 "inconnus" #elif L==5 "desconocidos" // Okoteve traducción #elif L==6 "sconosciuti" #elif L==7 "nieznany" #elif L==8 "desconhecidos" #endif , // Sta_ME #if L==0 "jo" #elif L==1 "Mich" #elif L==2 "me" #elif L==3 "yo" #elif L==4 "moi" #elif L==5 "che" #elif L==6 "me" #elif L==7 "ja" #elif L==8 "eu" #endif }; const char *Txt_ROLES_SINGULAR_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = { { #if L==0 // Rol_ROLE_UNKNOWN - Usr_SEX_UNKNOWN "Desconocido/a" // Necessita traduccio #elif L==1 "Unbekannter/e" #elif L==2 "Unknown" #elif L==3 "Desconocido/a" #elif L==4 "Inconnu/e" #elif L==5 "Desconocido/a" // Okoteve traducción #elif L==6 "Sconosciuto/a" #elif L==7 "Nieznany" #elif L==8 "Desconhecido/a" #endif , #if L==0 // Rol_ROLE_UNKNOWN - Usr_SEX_FEMALE "Desconocida" // Necessita traduccio #elif L==1 "Unbekannte" #elif L==2 "Unknown" #elif L==3 "Desconocida" #elif L==4 "Inconnue" #elif L==5 "Desconocida" // Okoteve traducción #elif L==6 "Sconosciuta" #elif L==7 "Nieznana" #elif L==8 "Desconhecida" #endif , #if L==0 // Rol_ROLE_UNKNOWN - Usr_SEX_MALE "Desconocido" // Necessita traduccio #elif L==1 "Unbekannter" #elif L==2 "Unknown" #elif L==3 "Desconocido" #elif L==4 "Inconnu" #elif L==5 "Desconocido" // Okoteve traducción #elif L==6 "Sconosciuto" #elif L==7 "Nieznany" #elif L==8 "Desconhecido" #endif , #if L==0 // Rol_ROLE_UNKNOWN - Usr_SEX_ALL "Desconocido/a" // Necessita traduccio #elif L==1 "Unbekannter/e" #elif L==2 "Unknown" #elif L==3 "Desconocido/a" #elif L==4 "Inconnu/e" #elif L==5 "Desconocido/a" // Okoteve traducción #elif L==6 "Sconosciuto/a" #elif L==7 "Nieznani" #elif L==8 "Desconhecido/a" #endif }, { #if L==0 // Rol_ROLE_GUEST - Usr_SEX_UNKNOWN "Invitado/a" // Necessita traduccio #elif L==1 "Gast" #elif L==2 "Guest" #elif L==3 "Invitado/a" #elif L==4 "Invité/e" #elif L==5 "Invitado/a" // Okoteve traducción #elif L==6 "Ospite" #elif L==7 "Gość" #elif L==8 "Convidado/a" #endif , #if L==0 // Rol_ROLE_GUEST - Usr_SEX_FEMALE "Invitada" // Necessita traduccio #elif L==1 "Gast" #elif L==2 "Guest" #elif L==3 "Invitada" #elif L==4 "Invitée" #elif L==5 "Invitada" // Okoteve traducción #elif L==6 "Ospite" #elif L==7 "Opinia" #elif L==8 "Convidada" #endif , #if L==0 // Rol_ROLE_GUEST - Usr_SEX_MALE "Invitado" // Necessita traduccio #elif L==1 "Gast" #elif L==2 "Guest" #elif L==3 "Invitado" #elif L==4 "Invité" #elif L==5 "Invitado" // Okoteve traducción #elif L==6 "Ospite" #elif L==7 "Opinia" #elif L==8 "Convidado" #endif , #if L==0 // Rol_ROLE_GUEST - Usr_SEX_ALL "Invitado/a" // Necessita traduccio #elif L==1 "Gast" #elif L==2 "Guest" #elif L==3 "Invitado/a" #elif L==4 "Invité/e" #elif L==5 "Invitado/a" // Okoteve traducción #elif L==6 "Ospite" #elif L==7 "Opinie" #elif L==8 "Convidado/a" #endif }, { #if L==0 // Rol_ROLE_VISITOR - Usr_SEX_UNKNOWN "Visitant" #elif L==1 "Besucher" #elif L==2 "Visitor" #elif L==3 "Visitante" #elif L==4 "Visiteur" #elif L==5 "Visitante" // Okoteve traducción #elif L==6 "Visitatore" #elif L==7 "Gość" #elif L==8 "Visitante" #endif , #if L==0 // Rol_ROLE_VISITOR - Usr_SEX_FEMALE "Visitant" #elif L==1 "Besucher" #elif L==2 "Visitor" #elif L==3 "Visitante" #elif L==4 "Visiteur" #elif L==5 "Visitante" // Okoteve traducción #elif L==6 "Visitatore" #elif L==7 "Gość" #elif L==8 "Visitante" #endif , #if L==0 // Rol_ROLE_VISITOR - Usr_SEX_MALE "Visitant" #elif L==1 "Besucher" #elif L==2 "Visitor" #elif L==3 "Visitante" #elif L==4 "Visiteur" #elif L==5 "Visitante" // Okoteve traducción #elif L==6 "Visitatore" #elif L==7 "Gość" #elif L==8 "Visitante" #endif , #if L==0 // Rol_ROLE_VISITOR - Usr_SEX_ALL "Visitant" #elif L==1 "Besucher" #elif L==2 "Visitor" #elif L==3 "Visitante" #elif L==4 "Visiteur" #elif L==5 "Visitante" // Okoteve traducción #elif L==6 "Visitatore" #elif L==7 "Gość" #elif L==8 "Visitante" #endif }, { #if L==0 // Rol_ROLE_STUDENT - Usr_SEX_UNKNOWN "Estudiant" #elif L==1 "Student" #elif L==2 "Student" #elif L==3 "Estudiante" #elif L==4 "Étudiant/e" #elif L==5 "Temimbo'e" #elif L==6 "Studente" #elif L==7 "Student" #elif L==8 "Estudante" #endif , #if L==0 // Rol_ROLE_STUDENT - Usr_SEX_FEMALE "Estudiant" #elif L==1 "Student" #elif L==2 "Student" #elif L==3 "Estudiante" #elif L==4 "Étudiante" #elif L==5 "Temimbo'e" #elif L==6 "Studentessa" #elif L==7 "Studentka" #elif L==8 "Estudante" #endif , #if L==0 // Rol_ROLE_STUDENT - Usr_SEX_MALE "Estudiant" #elif L==1 "Student" #elif L==2 "Student" #elif L==3 "Estudiante" #elif L==4 "Étudiant" #elif L==5 "Temimbo'e" #elif L==6 "Studente" #elif L==7 "Student" #elif L==8 "Estudante" #endif , #if L==0 // Rol_ROLE_STUDENT - Usr_SEX_ALL "Estudiant" #elif L==1 "Student" #elif L==2 "Student" #elif L==3 "Estudiante" #elif L==4 "Étudiant/e" #elif L==5 "Temimbo'e" #elif L==6 "Studente" #elif L==7 "Studenci" #elif L==8 "Estudante" #endif }, { #if L==0 // Rol_ROLE_TEACHER - Usr_SEX_UNKNOWN "Professor/a" #elif L==1 "Lehrkraft" #elif L==2 "Teacher" #elif L==3 "Profesor/a" #elif L==4 "Enseignant/e" #elif L==5 "Mbo'ehára" #elif L==6 "Professore/ssa" #elif L==7 "Nauczyciel" #elif L==8 "Professor/a" #endif , #if L==0 // Rol_ROLE_TEACHER - Usr_SEX_FEMALE "Professora" #elif L==1 "Lehrkraft" #elif L==2 "Teacher" #elif L==3 "Profesora" #elif L==4 "Enseignante" #elif L==5 "Mbo'ehára" #elif L==6 "Professoressa" #elif L==7 "Nauczycielka" #elif L==8 "Professora" #endif , #if L==0 // Rol_ROLE_TEACHER - Usr_SEX_MALE "Professor" #elif L==1 "Lehrkraft" #elif L==2 "Teacher" #elif L==3 "Profesor" #elif L==4 "Enseignant" #elif L==5 "Mbo'ehára" #elif L==6 "Professore" #elif L==7 "Nauczyciel" #elif L==8 "Professor" #endif , #if L==0 // Rol_ROLE_TEACHER - Usr_SEX_ALL "Professor/a" #elif L==1 "Lehrkraft" #elif L==2 "Teacher" #elif L==3 "Profesor/a" #elif L==4 "Enseignant/e" #elif L==5 "Mbo'ehára" #elif L==6 "Professore/ssa" #elif L==7 "Nauczyciele" #elif L==8 "Professor/a" #endif }, { #if L==0 // Rol_ROLE_DEG_ADMIN - Usr_SEX_UNKNOWN "Administrador/a" // Necessita traduccio #elif L==1 "Administrator" #elif L==2 "Administrator" #elif L==3 "Administrador/a" #elif L==4 "Administrateur/se" #elif L==5 "Ñangarekohára" #elif L==6 "Amministratore" #elif L==7 "Administrator" #elif L==8 "Administrador/a" #endif , #if L==0 // Rol_ROLE_DEG_ADMIN - Usr_SEX_FEMALE "Administradora" // Necessita traduccio #elif L==1 "Administrator" #elif L==2 "Administrator" #elif L==3 "Administradora" #elif L==4 "Administrateuse" #elif L==5 "Ñangarekohára" #elif L==6 "Amministratore" #elif L==7 "Administratorka" #elif L==8 "Administradora" #endif , #if L==0 // Rol_ROLE_DEG_ADMIN - Usr_SEX_MALE "Administrador" // Necessita traduccio #elif L==1 "Administrator" #elif L==2 "Administrator" #elif L==3 "Administrador" #elif L==4 "Administrateur" #elif L==5 "Ñangarekohára" #elif L==6 "Amministratore" #elif L==7 "Administrator" #elif L==8 "Administrador" #endif , #if L==0 // Rol_ROLE_DEG_ADMIN - Usr_SEX_ALL "Administrador/a" // Necessita traduccio #elif L==1 "Administrator" #elif L==2 "Administrator" #elif L==3 "Administrador/a" #elif L==4 "Administrateur/se" #elif L==5 "Ñangarekohára" #elif L==6 "Amministratore" #elif L==7 "Administratorzy" #elif L==8 "Administrador/a" #endif }, { #if L==0 // Rol_ROLE_CTR_ADMIN - Usr_SEX_UNKNOWN "Administrador/a" // Necessita traduccio #elif L==1 "Administrator" #elif L==2 "Administrator" #elif L==3 "Administrador/a" #elif L==4 "Administrateur/se" #elif L==5 "Ñangarekohára" #elif L==6 "Amministratore" #elif L==7 "Administrator" #elif L==8 "Administrador/a" #endif , #if L==0 // Rol_ROLE_CTR_ADMIN - Usr_SEX_FEMALE "Administradora" // Necessita traduccio #elif L==1 "Administrator" #elif L==2 "Administrator" #elif L==3 "Administradora" #elif L==4 "Administrateuse" #elif L==5 "Ñangarekohára" #elif L==6 "Amministratore" #elif L==7 "Administratorka" #elif L==8 "Administradora" #endif , #if L==0 // Rol_ROLE_CTR_ADMIN - Usr_SEX_MALE "Administrador" // Necessita traduccio #elif L==1 "Administrator" #elif L==2 "Administrator" #elif L==3 "Administrador" #elif L==4 "Administrateur" #elif L==5 "Ñangarekohára" #elif L==6 "Amministratore" #elif L==7 "Administrator" #elif L==8 "Administrador" #endif , #if L==0 // Rol_ROLE_CTR_ADMIN - Usr_SEX_ALL "Administrador/a" // Necessita traduccio #elif L==1 "Administrator" #elif L==2 "Administrator" #elif L==3 "Administrador/a" #elif L==4 "Administrateur/se" #elif L==5 "Ñangarekohára" #elif L==6 "Amministratore" #elif L==7 "Administratorzy" #elif L==8 "Administrador/a" #endif }, { #if L==0 // Rol_ROLE_INS_ADMIN - Usr_SEX_UNKNOWN "Administrador/a" // Necessita traduccio #elif L==1 "Administrator" #elif L==2 "Administrator" #elif L==3 "Administrador/a" #elif L==4 "Administrateur/se" #elif L==5 "Ñangarekohára" #elif L==6 "Amministratore" #elif L==7 "Administrator" #elif L==8 "Administrador/a" #endif , #if L==0 // Rol_ROLE_INS_ADMIN - Usr_SEX_FEMALE "Administradora" // Necessita traduccio #elif L==1 "Administrator" #elif L==2 "Administrator" #elif L==3 "Administradora" #elif L==4 "Administrateuse" #elif L==5 "Ñangarekohára" #elif L==6 "Amministratore" #elif L==7 "Administratorka" #elif L==8 "Administradora" #endif , #if L==0 // Rol_ROLE_INS_ADMIN - Usr_SEX_MALE "Administrador" // Necessita traduccio #elif L==1 "Administrator" #elif L==2 "Administrator" #elif L==3 "Administrador" #elif L==4 "Administrateur" #elif L==5 "Ñangarekohára" #elif L==6 "Amministratore" #elif L==7 "Administrator" #elif L==8 "Administrador" #endif , #if L==0 // Rol_ROLE_INS_ADMIN - Usr_SEX_ALL "Administrador/a" // Necessita traduccio #elif L==1 "Administrator" #elif L==2 "Administrator" #elif L==3 "Administrador/a" #elif L==4 "Administrateur/se" #elif L==5 "Ñangarekohára" #elif L==6 "Amministratore" #elif L==7 "Administratorzy" #elif L==8 "Administrador/a" #endif }, { #if L==0 // Rol_ROLE_SUPERUSER - Usr_SEX_UNKNOWN "Superusuari/ària" #elif L==1 "Superuser" #elif L==2 "Superuser" #elif L==3 "Superusuario/a" #elif L==4 "Superutilisateur/se" #elif L==5 "Superusuario/a" // Okoteve traducción #elif L==6 "Superutente" #elif L==7 "Superuzytkownik" #elif L==8 "Superutilizador/a" #endif , #if L==0 // Rol_ROLE_SUPERUSER - Usr_SEX_FEMALE "Superusuaria" // Necessita traduccio #elif L==1 "Superuser" #elif L==2 "Superuser" #elif L==3 "Superusuaria" #elif L==4 "Superutilisateuse" #elif L==5 "Superusuaria" // Okoteve traducción #elif L==6 "Superutente" #elif L==7 "Superuzytkownik" #elif L==8 "Superutilizadora" #endif , #if L==0 // Rol_ROLE_SUPERUSER - Usr_SEX_MALE "Superusuari" #elif L==1 "Superuser" #elif L==2 "Superuser" #elif L==3 "Superusuario" #elif L==4 "Superutilisateur" #elif L==5 "Superusuario" // Okoteve traducción #elif L==6 "Superutente" #elif L==7 "Superuzytkownik" #elif L==8 "Superutilizador" #endif , #if L==0 // Rol_ROLE_SUPERUSER - Usr_SEX_ALL "Superusuari/ària" // Necessita traduccio #elif L==1 "Superuser" #elif L==2 "Superuser" #elif L==3 "Superusuario/a" #elif L==4 "Superutilisateur/se" #elif L==5 "Superusuario/a" // Okoteve traducción #elif L==6 "Superutente" #elif L==7 "Superuzytkownicy" #elif L==8 "Superutilizador/a" #endif } }; const char *Txt_ROLES_SINGULAR_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = { { #if L==0 // Rol_ROLE_UNKNOWN - Usr_SEX_UNKNOWN "desconocido/a" // Necessita traduccio #elif L==1 "Unbekannter/e" #elif L==2 "unknown" #elif L==3 "desconocido/a" #elif L==4 "inconnu/e" #elif L==5 "desconocido/a" // Okoteve traducción #elif L==6 "sconosciuto/a" #elif L==7 "nieznany" #elif L==8 "desconhecido/a" #endif , #if L==0 // Rol_ROLE_UNKNOWN - Usr_SEX_FEMALE "desconocida" // Necessita traduccio #elif L==1 "Unbekannte" #elif L==2 "unknown" #elif L==3 "desconocida" #elif L==4 "inconnue" #elif L==5 "desconocida" // Okoteve traducción #elif L==6 "sconosciuta" #elif L==7 "nieznana" #elif L==8 "desconhecida" #endif , #if L==0 // Rol_ROLE_UNKNOWN - Usr_SEX_MALE "desconocido" // Necessita traduccio #elif L==1 "Unbekannter" #elif L==2 "unknown" #elif L==3 "desconocido" #elif L==4 "inconnu" #elif L==5 "desconocido" // Okoteve traducción #elif L==6 "sconosciuto" #elif L==7 "nieznany" #elif L==8 "desconhecido" #endif , #if L==0 // Rol_ROLE_UNKNOWN - Usr_SEX_ALL "desconocido/a" // Necessita traduccio #elif L==1 "Unbekannter/e" #elif L==2 "unknown" #elif L==3 "desconocido/a" #elif L==4 "inconnu/e" #elif L==5 "desconocido/a" // Okoteve traducción #elif L==6 "sconosciuto/a" #elif L==7 "nieznani" #elif L==8 "desconhecido/a" #endif }, { #if L==0 // Rol_ROLE_GUEST - Usr_SEX_UNKNOWN "invitado/a" // Necessita traduccio #elif L==1 "Gast" #elif L==2 "guest" #elif L==3 "invitado/a" #elif L==4 "invité/e" #elif L==5 "invitado/a" // Okoteve traducción #elif L==6 "ospite" #elif L==7 "gość" #elif L==8 "convidado/a" #endif , #if L==0 // Rol_ROLE_GUEST - Usr_SEX_FEMALE "invitada" // Necessita traduccio #elif L==1 "Gast" #elif L==2 "guest" #elif L==3 "invitada" #elif L==4 "invitée" #elif L==5 "invitada" // Okoteve traducción #elif L==6 "ospite" #elif L==7 "goscinna" #elif L==8 "convidada" #endif , #if L==0 // Rol_ROLE_GUEST - Usr_SEX_MALE "invitado" // Necessita traduccio #elif L==1 "Gast" #elif L==2 "guest" #elif L==3 "invitado" #elif L==4 "invité" #elif L==5 "invitado" // Okoteve traducción #elif L==6 "ospite" #elif L==7 "goscinny" #elif L==8 "convidado" #endif , #if L==0 // Rol_ROLE_GUEST - Usr_SEX_ALL "invitado/a" // Necessita traduccio #elif L==1 "Gast" #elif L==2 "guest" #elif L==3 "invitado/a" #elif L==4 "invité/e" #elif L==5 "invitado/a" // Okoteve traducción #elif L==6 "ospite" #elif L==7 "goscinni" #elif L==8 "convidado/a" #endif }, { #if L==0 // Rol_ROLE_VISITOR - Usr_SEX_UNKNOWN "visitant" #elif L==1 "Besucher" #elif L==2 "visitor" #elif L==3 "visitante" #elif L==4 "visiteur" #elif L==5 "visitante" // Okoteve traducción #elif L==6 "visitatore" #elif L==7 "gość" #elif L==8 "Visitante" #endif , #if L==0 // Rol_ROLE_VISITOR - Usr_SEX_FEMALE "visitant" #elif L==1 "Besucher" #elif L==2 "visitor" #elif L==3 "visitante" #elif L==4 "visiteur" #elif L==5 "visitante" // Okoteve traducción #elif L==6 "visitatore" #elif L==7 "gość" #elif L==8 "Visitante" #endif , #if L==0 // Rol_ROLE_VISITOR - Usr_SEX_MALE "visitant" #elif L==1 "Besucher" #elif L==2 "visitor" #elif L==3 "visitante" #elif L==4 "visiteur" #elif L==5 "visitante" // Okoteve traducción #elif L==6 "visitatore" #elif L==7 "gość" #elif L==8 "Visitante" #endif , #if L==0 // Rol_ROLE_VISITOR - Usr_SEX_ALL "visitant" #elif L==1 "Besucher" #elif L==2 "visitor" #elif L==3 "visitante" #elif L==4 "visiteur" #elif L==5 "visitante" // Okoteve traducción #elif L==6 "visitatore" #elif L==7 "gość" #elif L==8 "Visitante" #endif }, { #if L==0 // Rol_ROLE_STUDENT - Usr_SEX_UNKNOWN "estudiant" #elif L==1 "Student" #elif L==2 "student" #elif L==3 "estudiante" #elif L==4 "étudiant/e" #elif L==5 "temimbo'e" #elif L==6 "studente" #elif L==7 "student" #elif L==8 "estudante" #endif , #if L==0 // Rol_ROLE_STUDENT - Usr_SEX_FEMALE "estudiant" #elif L==1 "Student" #elif L==2 "student" #elif L==3 "estudiante" #elif L==4 "étudiante" #elif L==5 "temimbo'e" #elif L==6 "studentessa" #elif L==7 "studentka" #elif L==8 "estudante" #endif , #if L==0 // Rol_ROLE_STUDENT - Usr_SEX_MALE "estudiant" #elif L==1 "Student" #elif L==2 "student" #elif L==3 "estudiante" #elif L==4 "étudiant" #elif L==5 "temimbo'e" #elif L==6 "studente" #elif L==7 "student" #elif L==8 "estudante" #endif , #if L==0 // Rol_ROLE_STUDENT - Usr_SEX_ALL "estudiant" #elif L==1 "Student" #elif L==2 "student" #elif L==3 "estudiante" #elif L==4 "étudiant/e" #elif L==5 "temimbo'e" #elif L==6 "studente/ssa" #elif L==7 "studenci" #elif L==8 "estudante" #endif }, { #if L==0 // Rol_ROLE_TEACHER - Usr_SEX_UNKNOWN "professor/a" #elif L==1 "Lehrkraft" #elif L==2 "teacher" #elif L==3 "profesor/a" #elif L==4 "enseignant/e" #elif L==5 "mbo'ehára" #elif L==6 "Professore/ssa" #elif L==7 "nauczyciel" #elif L==8 "professor/a" #endif , #if L==0 // Rol_ROLE_TEACHER - Usr_SEX_FEMALE "professora" #elif L==1 "Lehrkraft" #elif L==2 "teacher" #elif L==3 "profesora" #elif L==4 "enseignante" #elif L==5 "mbo'ehára" #elif L==6 "Professoressa" #elif L==7 "nauczycielka" #elif L==8 "professora" #endif , #if L==0 // Rol_ROLE_TEACHER - Usr_SEX_MALE "professor" #elif L==1 "Lehrkraft" #elif L==2 "teacher" #elif L==3 "profesor" #elif L==4 "enseignant" #elif L==5 "mbo'ehára" #elif L==6 "professore" #elif L==7 "nauczyciel" #elif L==8 "professor" #endif , #if L==0 // Rol_ROLE_TEACHER - Usr_SEX_ALL "professor/a" #elif L==1 "Lehrkraft" #elif L==2 "teacher" #elif L==3 "profesor/a" #elif L==4 "enseignant/e" #elif L==5 "mbo'ehára" #elif L==6 "professore/ssa" #elif L==7 "nauczyciele" #elif L==8 "professor/a" #endif }, { #if L==0 // Rol_ROLE_DEG_ADMIN - Usr_SEX_UNKNOWN "administrador/a" // Necessita traduccio #elif L==1 "Administrator" #elif L==2 "administrator" #elif L==3 "administrador/a" #elif L==4 "administrateur/se" #elif L==5 "ñangarekohára" #elif L==6 "amministratore" #elif L==7 "administrator" #elif L==8 "administrador/a" #endif , #if L==0 // Rol_ROLE_DEG_ADMIN - Usr_SEX_FEMALE "administradora" // Necessita traduccio #elif L==1 "Administrator" #elif L==2 "administrator" #elif L==3 "administradora" #elif L==4 "administrateuse" #elif L==5 "ñangarekohára" #elif L==6 "amministratore" #elif L==7 "administratorka" #elif L==8 "administradora" #endif , #if L==0 // Rol_ROLE_DEG_ADMIN - Usr_SEX_MALE "administrador" // Necessita traduccio #elif L==1 "Administrator" #elif L==2 "administrator" #elif L==3 "administrador" #elif L==4 "administrateur" #elif L==5 "ñangarekohára" #elif L==6 "amministratore" #elif L==7 "administrator" #elif L==8 "administrador" #endif , #if L==0 // Rol_ROLE_DEG_ADMIN - Usr_SEX_ALL "administrador/a" #elif L==1 "Administrator" #elif L==2 "administrator" #elif L==3 "administrador/a" #elif L==4 "administrateur/se" #elif L==5 "ñangarekohára" #elif L==6 "amministratore" #elif L==7 "administratorzy" #elif L==8 "administrador/a" #endif }, { #if L==0 // Rol_ROLE_CTR_ADMIN - Usr_SEX_UNKNOWN "administrador/a" // Necessita traduccio #elif L==1 "Administrator" #elif L==2 "administrator" #elif L==3 "administrador/a" #elif L==4 "administrateur/se" #elif L==5 "ñangarekohára" #elif L==6 "amministratore" #elif L==7 "administrator" #elif L==8 "administrador/a" #endif , #if L==0 // Rol_ROLE_CTR_ADMIN - Usr_SEX_FEMALE "administradora" // Necessita traduccio #elif L==1 "Administrator" #elif L==2 "administrator" #elif L==3 "administradora" #elif L==4 "administrateuse" #elif L==5 "ñangarekohára" #elif L==6 "amministratore" #elif L==7 "administratorka" #elif L==8 "administradora" #endif , #if L==0 // Rol_ROLE_CTR_ADMIN - Usr_SEX_MALE "administrador" // Necessita traduccio #elif L==1 "Administrator" #elif L==2 "administrator" #elif L==3 "administrador" #elif L==4 "administrateur" #elif L==5 "ñangarekohára" #elif L==6 "amministratore" #elif L==7 "administrator" #elif L==8 "administrador" #endif , #if L==0 // Rol_ROLE_CTR_ADMIN - Usr_SEX_ALL "administrador/a" #elif L==1 "Administrator" #elif L==2 "administrator" #elif L==3 "administrador/a" #elif L==4 "administrateur/se" #elif L==5 "ñangarekohára" #elif L==6 "amministratore" #elif L==7 "administratorzy" #elif L==8 "administrador/a" #endif }, { #if L==0 // Rol_ROLE_INS_ADMIN - Usr_SEX_UNKNOWN "administrador/a" // Necessita traduccio #elif L==1 "Administrator" #elif L==2 "administrator" #elif L==3 "administrador/a" #elif L==4 "administrateur/se" #elif L==5 "ñangarekohára" #elif L==6 "amministratore" #elif L==7 "administrator" #elif L==8 "administrador/a" #endif , #if L==0 // Rol_ROLE_INS_ADMIN - Usr_SEX_FEMALE "administradora" // Necessita traduccio #elif L==1 "Administrator" #elif L==2 "administrator" #elif L==3 "administradora" #elif L==4 "administrateuse" #elif L==5 "ñangarekohára" #elif L==6 "amministratore" #elif L==7 "administratorka" #elif L==8 "administradora" #endif , #if L==0 // Rol_ROLE_INS_ADMIN - Usr_SEX_MALE "administrador" // Necessita traduccio #elif L==1 "Administrator" #elif L==2 "administrator" #elif L==3 "administrador" #elif L==4 "administrateur" #elif L==5 "ñangarekohára" #elif L==6 "amministratore" #elif L==7 "administrator" #elif L==8 "administrador" #endif , #if L==0 // Rol_ROLE_INS_ADMIN - Usr_SEX_ALL "administrador/a" #elif L==1 "Administrator" #elif L==2 "administrator" #elif L==3 "administrador/a" #elif L==4 "administrateur/se" #elif L==5 "ñangarekohára" #elif L==6 "amministratore" #elif L==7 "administratorzy" #elif L==8 "administrador/a" #endif }, { #if L==0 // Rol_ROLE_SUPERUSER - Usr_SEX_UNKNOWN "superusuari/ària" #elif L==1 "Superuser" #elif L==2 "superuser" #elif L==3 "superusuario/a" #elif L==4 "superutilisateur/se" #elif L==5 "superusuario/a" // Okoteve traducción #elif L==6 "superutente" #elif L==7 "superuzytkownik" #elif L==8 "superutilizador/a" #endif , #if L==0 // Rol_ROLE_SUPERUSER - Usr_SEX_FEMALE "superusuaria" // Necessita traduccio #elif L==1 "Superuser" #elif L==2 "superuser" #elif L==3 "superusuaria" #elif L==4 "superutilisateuse" #elif L==5 "superusuaria" // Okoteve traducción #elif L==6 "superutente" #elif L==7 "superuzytkowniczka" #elif L==8 "superutilizadora" #endif , #if L==0 // Rol_ROLE_SUPERUSER - Usr_SEX_MALE "superusuari" #elif L==1 "Superuser" #elif L==2 "superuser" #elif L==3 "superusuario" #elif L==4 "superutilisateur" #elif L==5 "superusuario" // Okoteve traducción #elif L==6 "superutente" #elif L==7 "superużytkownika" #elif L==8 "superutilizador" #endif , #if L==0 // Rol_ROLE_SUPERUSER - Usr_SEX_ALL "superusuari/ària" #elif L==1 "Superuser" #elif L==2 "superuser" #elif L==3 "superusuario/a" #elif L==4 "superutilisateur/se" #elif L==5 "superusuario/a" // Okoteve traducción #elif L==6 "superutente" #elif L==7 "superuzytkownicy" #elif L==8 "superutilizador/a" #endif } }; const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = { { #if L==0 // Rol_ROLE_UNKNOWN - Usr_SEX_UNKNOWN "Desconocidos" // Necessita traduccio #elif L==1 "Unbekannte" #elif L==2 "Unknown" #elif L==3 "Desconocidos" #elif L==4 "Inconnus" #elif L==5 "Desconocidos" // Okoteve traducción #elif L==6 "Sconosciuti" #elif L==7 "Nieznany" #elif L==8 "Desconhecidos" #endif , #if L==0 // Rol_ROLE_UNKNOWN - Usr_SEX_FEMALE "Desconocidas" // Necessita traduccio #elif L==1 "Unbekannte" #elif L==2 "Unknown" #elif L==3 "Desconocidas" #elif L==4 "Inconnues" #elif L==5 "Desconocidas" // Okoteve traducción #elif L==6 "Sconosciuti" #elif L==7 "Nieznana" #elif L==8 "Desconhecidas" #endif , #if L==0 // Rol_ROLE_UNKNOWN - Usr_SEX_MALE "Desconocidos" // Necessita traduccio #elif L==1 "Unbekannte" #elif L==2 "Unknown" #elif L==3 "Desconocidos" #elif L==4 "Inconnus" #elif L==5 "Desconocidos" // Okoteve traducción #elif L==6 "Sconosciuti" #elif L==7 "Nieznany" #elif L==8 "Desconhecidos" #endif , #if L==0 // Rol_ROLE_UNKNOWN - Usr_SEX_ALL "Desconocidos" // Necessita traduccio #elif L==1 "Unbekannte" #elif L==2 "Unknown" #elif L==3 "Desconocidos" #elif L==4 "Inconnus" #elif L==5 "Desconocidos" // Okoteve traducción #elif L==6 "Sconosciuti" #elif L==7 "Nieznani" #elif L==8 "Desconhecidos" #endif }, { #if L==0 // Rol_ROLE_GUEST - Usr_SEX_UNKNOWN "Convidats" #elif L==1 "Eingeladen" #elif L==2 "Guests" #elif L==3 "Invitados" #elif L==4 "Invités" #elif L==5 "Invitados" // Okoteve traducción #elif L==6 "Ospiti" #elif L==7 "Zaproszenie" #elif L==8 "Convidados" #endif , #if L==0 // Rol_ROLE_GUEST - Usr_SEX_FEMALE "Invitadas" // Necessita traduccio #elif L==1 "Eingeladen" #elif L==2 "Guests" #elif L==3 "Invitadas" #elif L==4 "Invitées" #elif L==5 "Invitadas" // Okoteve traducción #elif L==6 "Ospiti" #elif L==7 "Zaproszona" #elif L==8 "Convidadas" #endif , #if L==0 // Rol_ROLE_GUEST - Usr_SEX_MALE "Convidats" #elif L==1 "Eingeladen" #elif L==2 "Guests" #elif L==3 "Invitados" #elif L==4 "Invités" #elif L==5 "Invitados" // Okoteve traducción #elif L==6 "Ospiti" #elif L==7 "Zaproszony" #elif L==8 "Convidados" #endif , #if L==0 // Rol_ROLE_GUEST - Usr_SEX_ALL "Convidats" #elif L==1 "Eingeladen" #elif L==2 "Guests" #elif L==3 "Invitados" #elif L==4 "Invités" #elif L==5 "Invitados" // Okoteve traducción #elif L==6 "Ospiti" #elif L==7 "Zaproszeni" #elif L==8 "Convidados" #endif }, { #if L==0 // Rol_ROLE_VISITOR - Usr_SEX_UNKNOWN "Visitants" #elif L==1 "Besucher" #elif L==2 "Visitors" #elif L==3 "Visitantes" #elif L==4 "Visiteurs" #elif L==5 "Visitantes" // Okoteve traducción #elif L==6 "Visitatori" #elif L==7 "Odwiedzający" #elif L==8 "Visitantes" #endif , #if L==0 // Rol_ROLE_VISITOR - Usr_SEX_FEMALE "Visitants" #elif L==1 "Besucher" #elif L==2 "Visitors" #elif L==3 "Visitantes" #elif L==4 "Visiteurs" #elif L==5 "Visitantes" // Okoteve traducción #elif L==6 "Visitatori" #elif L==7 "Odwiedzający" #elif L==8 "Visitantes" #endif , #if L==0 // Rol_ROLE_VISITOR - Usr_SEX_MALE "Visitants" #elif L==1 "Besucher" #elif L==2 "Visitors" #elif L==3 "Visitantes" #elif L==4 "Visiteurs" #elif L==5 "Visitantes" // Okoteve traducción #elif L==6 "Visitatori" #elif L==7 "Odwiedzający" #elif L==8 "Visitantes" #endif , #if L==0 // Rol_ROLE_VISITOR - Usr_SEX_ALL "Visitants" #elif L==1 "Besucher" #elif L==2 "Visitors" #elif L==3 "Visitantes" #elif L==4 "Visiteurs" #elif L==5 "Visitantes" // Okoteve traducción #elif L==6 "Visitatori" #elif L==7 "Odwiedzający" #elif L==8 "Visitantes" #endif }, { #if L==0 // Rol_ROLE_STUDENT - Usr_SEX_UNKNOWN "Estudiants" #elif L==1 "Studenten" #elif L==2 "Students" #elif L==3 "Estudiantes" #elif L==4 "Étudiants" #elif L==5 "Temimbo'e" #elif L==6 "Studenti" #elif L==7 "Studenci" #elif L==8 "Estudantes" #endif , #if L==0 // Rol_ROLE_STUDENT - Usr_SEX_FEMALE "Estudiants" #elif L==1 "Studenten" #elif L==2 "Students" #elif L==3 "Estudiantes" #elif L==4 "Étudiantes" #elif L==5 "Temimbo'e" #elif L==6 "Studentesse" #elif L==7 "Studentki" #elif L==8 "Estudantes" #endif , #if L==0 // Rol_ROLE_STUDENT - Usr_SEX_MALE "Estudiants" #elif L==1 "Studenten" #elif L==2 "Students" #elif L==3 "Estudiantes" #elif L==4 "Étudiants" #elif L==5 "Temimbo'e" #elif L==6 "Studenti" #elif L==7 "Studenci" #elif L==8 "Estudantes" #endif , #if L==0 // Rol_ROLE_STUDENT - Usr_SEX_ALL "Estudiants" #elif L==1 "Studenten" #elif L==2 "Students" #elif L==3 "Estudiantes" #elif L==4 "Étudiants" #elif L==5 "Temimbo'e" #elif L==6 "Studenti" #elif L==7 "Studenci" #elif L==8 "Estudantes" #endif }, { #if L==0 // Rol_ROLE_TEACHER - Usr_SEX_UNKNOWN "Professors" #elif L==1 "Lehrkraft" #elif L==2 "Teachers" #elif L==3 "Profesores" #elif L==4 "Enseignants" #elif L==5 "Mbo'ehára" #elif L==6 "Professori" #elif L==7 "Nauczyciele" #elif L==8 "Professores" #endif , #if L==0 // Rol_ROLE_TEACHER - Usr_SEX_FEMALE "Professores" #elif L==1 "Lehrkraft" #elif L==2 "Teachers" #elif L==3 "Profesoras" #elif L==4 "Enseignantes" #elif L==5 "Mbo'ehára" #elif L==6 "Professoresse" #elif L==7 "Nauczycielki" #elif L==8 "Professoras" #endif , #if L==0 // Rol_ROLE_TEACHER - Usr_SEX_MALE "Professors" #elif L==1 "Lehrkraft" #elif L==2 "Teachers" #elif L==3 "Profesores" #elif L==4 "Enseignants" #elif L==5 "Mbo'ehára" #elif L==6 "Professori" #elif L==7 "Nauczyciele" #elif L==8 "Professores" #endif , #if L==0 // Rol_ROLE_TEACHER - Usr_SEX_ALL "Professors" #elif L==1 "Lehrkraft" #elif L==2 "Teachers" #elif L==3 "Profesores" #elif L==4 "Enseignants" #elif L==5 "Mbo'ehára" #elif L==6 "Professori" #elif L==7 "Nauczyciele" #elif L==8 "Professores" #endif }, { #if L==0 // Rol_ROLE_CTR_ADMIN - Usr_SEX_UNKNOWN "Administradores" // Necessita traduccio #elif L==1 "Administratoren" #elif L==2 "Administrators" #elif L==3 "Administradores" #elif L==4 "Administrateurs" #elif L==5 "Ñangarekohára" #elif L==6 "Amministratori" #elif L==7 "Administratorzy" #elif L==8 "Administradores" #endif , #if L==0 // Rol_ROLE_CTR_ADMIN - Usr_SEX_FEMALE "Administradoras" // Necessita traduccio #elif L==1 "Administratoren" #elif L==2 "Administrators" #elif L==3 "Administradoras" #elif L==4 "Administrateuses" #elif L==5 "Ñangarekohára" #elif L==6 "Amministratori" #elif L==7 "Administratorki" #elif L==8 "Administradoras" #endif , #if L==0 // Rol_ROLE_CTR_ADMIN - Usr_SEX_MALE "Administradores" // Necessita traduccio #elif L==1 "Administratoren" #elif L==2 "Administrators" #elif L==3 "Administradores" #elif L==4 "Administrateurs" #elif L==5 "Ñangarekohára" #elif L==6 "Amministratori" #elif L==7 "Administratorzy" #elif L==8 "Administradores" #endif , #if L==0 // Rol_ROLE_CTR_ADMIN - Usr_SEX_ALL "Administradores" // Necessita traduccio #elif L==1 "Administratoren" #elif L==2 "Administrators" #elif L==3 "Administradores" #elif L==4 "Administrateurs" #elif L==5 "Ñangarekohára" #elif L==6 "Amministratori" #elif L==7 "Administratorzy" #elif L==8 "Administradores" #endif }, { #if L==0 // Rol_ROLE_INS_ADMIN - Usr_SEX_UNKNOWN "Administradores" // Necessita traduccio #elif L==1 "Administratoren" #elif L==2 "Administrators" #elif L==3 "Administradores" #elif L==4 "Administrateurs" #elif L==5 "Ñangarekohára" #elif L==6 "Amministratori" #elif L==7 "Administratorzy" #elif L==8 "Administradores" #endif , #if L==0 // Rol_ROLE_INS_ADMIN - Usr_SEX_FEMALE "Administradoras" // Necessita traduccio #elif L==1 "Administratoren" #elif L==2 "Administrators" #elif L==3 "Administradoras" #elif L==4 "Administrateuses" #elif L==5 "Ñangarekohára" #elif L==6 "Amministratori" #elif L==7 "Administratorki" #elif L==8 "Administradoras" #endif , #if L==0 // Rol_ROLE_INS_ADMIN - Usr_SEX_MALE "Administradores" // Necessita traduccio #elif L==1 "Administratoren" #elif L==2 "Administrators" #elif L==3 "Administradores" #elif L==4 "Administrateurs" #elif L==5 "Ñangarekohára" #elif L==6 "Amministratori" #elif L==7 "Administratorzy" #elif L==8 "Administradores" #endif , #if L==0 // Rol_ROLE_INS_ADMIN - Usr_SEX_ALL "Administradores" // Necessita traduccio #elif L==1 "Administratoren" #elif L==2 "Administrators" #elif L==3 "Administradores" #elif L==4 "Administrateurs" #elif L==5 "Ñangarekohára" #elif L==6 "Amministratori" #elif L==7 "Administratorzy" #elif L==8 "Administradores" #endif }, { #if L==0 // Rol_ROLE_DEG_ADMIN - Usr_SEX_UNKNOWN "Administradores" // Necessita traduccio #elif L==1 "Administratoren" #elif L==2 "Administrators" #elif L==3 "Administradores" #elif L==4 "Administrateurs" #elif L==5 "Ñangarekohára" #elif L==6 "Amministratori" #elif L==7 "Administratorzy" #elif L==8 "Administradores" #endif , #if L==0 // Rol_ROLE_DEG_ADMIN - Usr_SEX_FEMALE "Administradoras" // Necessita traduccio #elif L==1 "Administratoren" #elif L==2 "Administrators" #elif L==3 "Administradoras" #elif L==4 "Administrateuses" #elif L==5 "Ñangarekohára" #elif L==6 "Amministratori" #elif L==7 "Administratorki" #elif L==8 "Administradoras" #endif , #if L==0 // Rol_ROLE_DEG_ADMIN - Usr_SEX_MALE "Administradores" // Necessita traduccio #elif L==1 "Administratoren" #elif L==2 "Administrators" #elif L==3 "Administradores" #elif L==4 "Administrateurs" #elif L==5 "Ñangarekohára" #elif L==6 "Amministratori" #elif L==7 "Administratorzy" #elif L==8 "Administradores" #endif , #if L==0 // Rol_ROLE_DEG_ADMIN - Usr_SEX_ALL "Administradores" // Necessita traduccio #elif L==1 "Administratoren" #elif L==2 "Administrators" #elif L==3 "Administradores" #elif L==4 "Administrateurs" #elif L==5 "Ñangarekohára" #elif L==6 "Amministratori" #elif L==7 "Administratorzy" #elif L==8 "Administradores" #endif }, { #if L==0 // Rol_ROLE_SUPERUSER - Usr_SEX_UNKNOWN "Superusuaris" #elif L==1 "Superuser" #elif L==2 "Superusers" #elif L==3 "Superusuarios" #elif L==4 "Superutilisateurs" #elif L==5 "Superusuarios" // Okoteve traducción #elif L==6 "Superutenti" #elif L==7 "Superużytkownika" #elif L==8 "Superutilizadores" #endif , #if L==0 // Rol_ROLE_SUPERUSER - Usr_SEX_FEMALE "Superusuarias" // Necessita traduccio #elif L==1 "Superuser" #elif L==2 "Superusers" #elif L==3 "Superusuarias" #elif L==4 "Superutilisateuses" #elif L==5 "Superusuarias" // Okoteve traducción #elif L==6 "Superutenti" #elif L==7 "Superuzytkowniczka" #elif L==8 "Superutilizadoras" #endif , #if L==0 // Rol_ROLE_SUPERUSER - Usr_SEX_MALE "Superusuaris" #elif L==1 "Superuser" #elif L==2 "Superusers" #elif L==3 "Superusuarios" #elif L==4 "Superutilisateurs" #elif L==5 "Superusuarios" // Okoteve traducción #elif L==6 "Superutenti" #elif L==7 "Superuzytkownik" #elif L==8 "Superutilizadores" #endif , #if L==0 // Rol_ROLE_SUPERUSER - Usr_SEX_ALL "Superusuaris" #elif L==1 "Superuser" #elif L==2 "Superusers" #elif L==3 "Superusuarios" #elif L==4 "Superutilisateurs" #elif L==5 "Superusuarios" // Okoteve traducción #elif L==6 "Superutenti" #elif L==7 "Superuzytkownicy" #elif L==8 "Superutilizadores" #endif } }; const char *Txt_ROLES_PLURAL_abc[Rol_NUM_ROLES][Usr_NUM_SEXS] = { { #if L==0 // Rol_ROLE_UNKNOWN - Usr_SEX_UNKNOWN "desconocidos" // Necessita traduccio #elif L==1 "Unbekannte" #elif L==2 "unknown" #elif L==3 "desconocidos" #elif L==4 "inconnus" #elif L==5 "desconocidos" // Okoteve traducción #elif L==6 "sconosciuti" #elif L==7 "nieznany" #elif L==8 "desconhecidos" #endif , #if L==0 // Rol_ROLE_UNKNOWN - Usr_SEX_FEMALE "desconocidas" // Necessita traduccio #elif L==1 "Unbekannte" #elif L==2 "unknown" #elif L==3 "desconocidas" #elif L==4 "inconnues" #elif L==5 "desconocidas" // Okoteve traducción #elif L==6 "sconosciuti" #elif L==7 "nieznana" #elif L==8 "desconhecidas" #endif , #if L==0 // Rol_ROLE_UNKNOWN - Usr_SEX_MALE "desconocidos" // Necessita traduccio #elif L==1 "Unbekannte" #elif L==2 "unknown" #elif L==3 "desconocidos" #elif L==4 "inconnus" #elif L==5 "desconocidos" // Okoteve traducción #elif L==6 "sconosciuti" #elif L==7 "nieznany" #elif L==8 "desconhecidos" #endif , #if L==0 // Rol_ROLE_UNKNOWN - Usr_SEX_ALL "desconocidos" // Necessita traduccio #elif L==1 "Unbekannte" #elif L==2 "unknown" #elif L==3 "desconocidos" #elif L==4 "inconnus" #elif L==5 "desconocidos" // Okoteve traducción #elif L==6 "sconosciuti" #elif L==7 "nieznani" #elif L==8 "desconhecidos" #endif }, { #if L==0 // Rol_ROLE_GUEST - Usr_SEX_UNKNOWN "convidats" #elif L==1 "Eingeladen" #elif L==2 "guests" #elif L==3 "invitados" #elif L==4 "invités" #elif L==5 "invitados" // Okoteve traducción #elif L==6 "ospiti" #elif L==7 "zaproszenie" #elif L==8 "convidados" #endif , #if L==0 // Rol_ROLE_GUEST - Usr_SEX_FEMALE "invitadas" // Necessita traduccio #elif L==1 "Eingeladen" #elif L==2 "guests" #elif L==3 "invitadas" #elif L==4 "invitées" #elif L==5 "invitadas" // Okoteve traducción #elif L==6 "ospiti" #elif L==7 "zaproszona" #elif L==8 "convidadas" #endif , #if L==0 // Rol_ROLE_GUEST - Usr_SEX_MALE "convidats" #elif L==1 "Eingeladen" #elif L==2 "guests" #elif L==3 "invitados" #elif L==4 "invités" #elif L==5 "invitados" // Okoteve traducción #elif L==6 "ospiti" #elif L==7 "zaproszony" #elif L==8 "convidados" #endif , #if L==0 // Rol_ROLE_GUEST - Usr_SEX_ALL "convidats" #elif L==1 "Eingeladen" #elif L==2 "guests" #elif L==3 "invitados" #elif L==4 "invités" #elif L==5 "invitados" // Okoteve traducción #elif L==6 "ospiti" #elif L==7 "zaproszeni" #elif L==8 "convidados" #endif }, { #if L==0 // Rol_ROLE_VISITOR - Usr_SEX_UNKNOWN "visitants" #elif L==1 "Besucher" #elif L==2 "visitors" #elif L==3 "visitantes" #elif L==4 "visiteurs" #elif L==5 "visitantes" // Okoteve traducción #elif L==6 "visitatori" #elif L==7 "odwiedzający" #elif L==8 "visitantes" #endif , #if L==0 // Rol_ROLE_VISITOR - Usr_SEX_FEMALE "visitants" #elif L==1 "Besucher" #elif L==2 "visitors" #elif L==3 "visitantes" #elif L==4 "visiteurs" #elif L==5 "visitantes" // Okoteve traducción #elif L==6 "visitatori" #elif L==7 "odwiedzający" #elif L==8 "visitantes" #endif , #if L==0 // Rol_ROLE_VISITOR - Usr_SEX_MALE "visitants" #elif L==1 "Besucher" #elif L==2 "visitors" #elif L==3 "visitantes" #elif L==4 "visiteurs" #elif L==5 "visitantes" // Okoteve traducción #elif L==6 "visitatori" #elif L==7 "odwiedzający" #elif L==8 "visitantes" #endif , #if L==0 // Rol_ROLE_VISITOR - Usr_SEX_ALL "visitants" #elif L==1 "Besucher" #elif L==2 "visitors" #elif L==3 "visitantes" #elif L==4 "visiteurs" #elif L==5 "visitantes" // Okoteve traducción #elif L==6 "visitatori" #elif L==7 "odwiedzający" #elif L==8 "visitantes" #endif }, { #if L==0 // Rol_ROLE_STUDENT - Usr_SEX_UNKNOWN "estudiants" #elif L==1 "Studenten" #elif L==2 "students" #elif L==3 "estudiantes" #elif L==4 "étudiants" #elif L==5 "temimbo'e" #elif L==6 "studenti" #elif L==7 "studenci" #elif L==8 "estudantes" #endif , #if L==0 // Rol_ROLE_STUDENT - Usr_SEX_FEMALE "estudiants" #elif L==1 "Studenten" #elif L==2 "students" #elif L==3 "estudiantes" #elif L==4 "étudiantes" #elif L==5 "temimbo'e" #elif L==6 "studentesse" #elif L==7 "studenka" #elif L==8 "estudantes" #endif , #if L==0 // Rol_ROLE_STUDENT - Usr_SEX_MALE "estudiants" #elif L==1 "Studenten" #elif L==2 "students" #elif L==3 "estudiantes" #elif L==4 "étudiants" #elif L==5 "temimbo'e" #elif L==6 "studenti" #elif L==7 "studentci" #elif L==8 "estudantes" #endif , #if L==0 // Rol_ROLE_STUDENT - Usr_SEX_ALL "estudiants" #elif L==1 "Studenten" #elif L==2 "students" #elif L==3 "estudiantes" #elif L==4 "étudiants" #elif L==5 "temimbo'e" #elif L==6 "studenti" #elif L==7 "studentci" #elif L==8 "estudantes" #endif }, { #if L==0 // Rol_ROLE_TEACHER - Usr_SEX_UNKNOWN "professors" #elif L==1 "Lehrkräfte" #elif L==2 "teachers" #elif L==3 "profesores" #elif L==4 "enseignants" #elif L==5 "mbo'ehára" #elif L==6 "professori" #elif L==7 "nauczyciele" #elif L==8 "professores" #endif , #if L==0 // Rol_ROLE_TEACHER - Usr_SEX_FEMALE "professores" #elif L==1 "Lehrkräfte" #elif L==2 "teachers" #elif L==3 "profesoras" #elif L==4 "enseignantes" #elif L==5 "mbo'ehára" #elif L==6 "professoresse" #elif L==7 "nauczycielki" #elif L==8 "professoras" #endif , #if L==0 // Rol_ROLE_TEACHER - Usr_SEX_MALE "professors" #elif L==1 "Lehrkräfte" #elif L==2 "teachers" #elif L==3 "profesores" #elif L==4 "enseignants" #elif L==5 "mbo'ehára" #elif L==6 "professori" #elif L==7 "nauczyciele" #elif L==8 "professores" #endif , #if L==0 // Rol_ROLE_TEACHER - Usr_SEX_ALL "professors" #elif L==1 "Lehrkräfte" #elif L==2 "teachers" #elif L==3 "profesores" #elif L==4 "enseignants" #elif L==5 "mbo'ehára" #elif L==6 "professori" #elif L==7 "nauczyciele" #elif L==8 "professores" #endif }, { #if L==0 // Rol_ROLE_DEG_ADMIN - Usr_SEX_UNKNOWN "administradores" // Necessita traduccio #elif L==1 "Administratoren" #elif L==2 "administrators" #elif L==3 "administradores" #elif L==4 "administrateurs" #elif L==5 "ñangarekohára" #elif L==6 "amministratori" #elif L==7 "administratorzy" #elif L==8 "administradores" #endif , #if L==0 // Rol_ROLE_DEG_ADMIN - Usr_SEX_FEMALE "administradoras" // Necessita traduccio #elif L==1 "Administratoren" #elif L==2 "administrators" #elif L==3 "administradoras" #elif L==4 "administrateuses" #elif L==5 "ñangarekohára" #elif L==6 "amministratori" #elif L==7 "administratorki" #elif L==8 "administradoras" #endif , #if L==0 // Rol_ROLE_DEG_ADMIN - Usr_SEX_MALE "administradores" // Necessita traduccio #elif L==1 "Administratoren" #elif L==2 "administrators" #elif L==3 "administradores" #elif L==4 "administrateurs" #elif L==5 "ñangarekohára" #elif L==6 "amministratori" #elif L==7 "administratorzy" #elif L==8 "administradores" #endif , #if L==0 // Rol_ROLE_DEG_ADMIN - Usr_SEX_ALL "administradores" // Necessita traduccio #elif L==1 "Administratoren" #elif L==2 "administrators" #elif L==3 "administradores" #elif L==4 "administrateurs" #elif L==5 "ñangarekohára" #elif L==6 "amministratori" #elif L==7 "administratorzy" #elif L==8 "administradores" #endif }, { #if L==0 // Rol_ROLE_CTR_ADMIN - Usr_SEX_UNKNOWN "administradores" // Necessita traduccio #elif L==1 "Administratoren" #elif L==2 "administrators" #elif L==3 "administradores" #elif L==4 "administrateurs" #elif L==5 "ñangarekohára" #elif L==6 "amministratori" #elif L==7 "administratorzy" #elif L==8 "administradores" #endif , #if L==0 // Rol_ROLE_CTR_ADMIN - Usr_SEX_FEMALE "administradoras" // Necessita traduccio #elif L==1 "Administratoren" #elif L==2 "administrators" #elif L==3 "administradoras" #elif L==4 "administrateuses" #elif L==5 "ñangarekohára" #elif L==6 "amministratori" #elif L==7 "administratorki" #elif L==8 "administradoras" #endif , #if L==0 // Rol_ROLE_CTR_ADMIN - Usr_SEX_MALE "administradores" // Necessita traduccio #elif L==1 "Administratoren" #elif L==2 "administrators" #elif L==3 "administradores" #elif L==4 "administrateurs" #elif L==5 "ñangarekohára" #elif L==6 "amministratori" #elif L==7 "administratorzy" #elif L==8 "administradores" #endif , #if L==0 // Rol_ROLE_CTR_ADMIN - Usr_SEX_ALL "administradores" // Necessita traduccio #elif L==1 "Administratoren" #elif L==2 "administrators" #elif L==3 "administradores" #elif L==4 "administrateurs" #elif L==5 "ñangarekohára" #elif L==6 "amministratori" #elif L==7 "administratorzy" #elif L==8 "administradores" #endif }, { #if L==0 // Rol_ROLE_INS_ADMIN - Usr_SEX_UNKNOWN "administradores" // Necessita traduccio #elif L==1 "Administratoren" #elif L==2 "administrators" #elif L==3 "administradores" #elif L==4 "administrateurs" #elif L==5 "ñangarekohára" #elif L==6 "amministratori" #elif L==7 "administratorzy" #elif L==8 "administradores" #endif , #if L==0 // Rol_ROLE_INS_ADMIN - Usr_SEX_FEMALE "administradoras" // Necessita traduccio #elif L==1 "Administratoren" #elif L==2 "administrators" #elif L==3 "administradoras" #elif L==4 "administrateuses" #elif L==5 "ñangarekohára" #elif L==6 "amministratori" #elif L==7 "administratorki" #elif L==8 "administradoras" #endif , #if L==0 // Rol_ROLE_INS_ADMIN - Usr_SEX_MALE "administradores" // Necessita traduccio #elif L==1 "Administratoren" #elif L==2 "administrators" #elif L==3 "administradores" #elif L==4 "administrateurs" #elif L==5 "ñangarekohára" #elif L==6 "amministratori" #elif L==7 "administratorzy" #elif L==8 "administradores" #endif , #if L==0 // Rol_ROLE_INS_ADMIN - Usr_SEX_ALL "administradores" // Necessita traduccio #elif L==1 "Administratoren" #elif L==2 "administrators" #elif L==3 "administradores" #elif L==4 "administrateurs" #elif L==5 "ñangarekohára" #elif L==6 "amministratori" #elif L==7 "administratorzy" #elif L==8 "administradores" #endif }, { #if L==0 // Rol_ROLE_SUPERUSER - Usr_SEX_UNKNOWN "superusuaris" #elif L==1 "Superuser" #elif L==2 "superusers" #elif L==3 "superusuarios" #elif L==4 "superutilisateurs" #elif L==5 "superusuarios" // Okoteve traducción #elif L==6 "superutenti" #elif L==7 "superusers" // Potrzebujesz tlumaczenie #elif L==8 "superutilizadores" #endif , #if L==0 // Rol_ROLE_SUPERUSER - Usr_SEX_FEMALE "superusuarias" // Necessita traduccio #elif L==1 "Superuser" #elif L==2 "superusers" #elif L==3 "superusuarias" #elif L==4 "superutilisateuses" #elif L==5 "superusuarias" // Okoteve traducción #elif L==6 "superutenti" #elif L==7 "superusers" // Potrzebujesz tlumaczenie #elif L==8 "superutilizadoras" #endif , #if L==0 // Rol_ROLE_SUPERUSER - Usr_SEX_MALE "superusuaris" #elif L==1 "Superuser" #elif L==2 "superusers" #elif L==3 "superusuarios" #elif L==4 "superutilisateurs" #elif L==5 "superusuarios" // Okoteve traducción #elif L==6 "superutenti" #elif L==7 "superusers" // Potrzebujesz tlumaczenie #elif L==8 "superutilizadores" #endif , #if L==0 // Rol_ROLE_SUPERUSER - Usr_SEX_ALL "superusuaris" #elif L==1 "Superuser" #elif L==2 "superusers" #elif L==3 "superusuarios" #elif L==4 "superutilisateurs" #elif L==5 "superusuarios" // Okoteve traducción #elif L==6 "superutenti" #elif L==7 "superusers" // Potrzebujesz tlumaczenie #elif L==8 "superutilizadores" #endif } }; const char *Txt_Rooms_with_users = #if L==0 "Salas con usuarios"; // Necessita traduccio #elif L==1 "Rooms with users"; // Need Übersetzung #elif L==2 "Rooms with users"; #elif L==3 "Salas con usuarios"; #elif L==4 "Rooms with users"; // Besoin de traduction #elif L==5 "Salas con usuarios"; // Okoteve traducción #elif L==6 "Rooms con utenti"; #elif L==7 "Rooms with users"; // Potrzebujesz tlumaczenie #elif L==8 "Rooms with users"; // Necessita de tradução #endif const char *Txt_ROOT_FOLDER_EXTERNAL_NAMES[Brw_NUM_TYPES_FILE_BROWSER] = { // Brw_FILE_BRW_UNKNOWN "", // Brw_FILE_BRW_SEE_DOCUMENTS_CRS #if L==0 "documents" #elif L==1 "Dokumente" #elif L==2 "documents" #elif L==3 "documentos" #elif L==4 "documents" #elif L==5 "kuatia" #elif L==6 "documenti" #elif L==7 "documents" // Potrzebujesz tlumaczenie #elif L==8 "documentos" #endif , // Brw_FILE_BRW_SEE_MARKS_CRS #if L==0 "qualificacions" #elif L==1 "Bewertungen" #elif L==2 "marks" #elif L==3 "calificaciones" #elif L==4 "notes" #elif L==5 "calificaciones" // Okoteve traducción #elif L==6 "risultati" #elif L==7 "marks" // Potrzebujesz tlumaczenie #elif L==8 "notas" #endif , // Brw_FILE_BRW_ADMIN_DOCUMENTS_CRS #if L==0 "documents" #elif L==1 "Dokumente" #elif L==2 "documents" #elif L==3 "documentos" #elif L==4 "documents" #elif L==5 "kuatia" #elif L==6 "documenti" #elif L==7 "documents" // Potrzebujesz tlumaczenie #elif L==8 "documentos" #endif , // Brw_FILE_BRW_COMMON_CRS #if L==0 "compartits" #elif L==1 "Freigegebene" #elif L==2 "shared" #elif L==3 "compartidos" #elif L==4 "partages" #elif L==5 "compartidos" // Okoteve traducción #elif L==6 "condivisi" #elif L==7 "shared" // Potrzebujesz tlumaczenie #elif L==8 "comum" #endif , // Brw_FILE_BRW_COMMON_GRP #if L==0 "compartits" #elif L==1 "Freigegebene" #elif L==2 "shared" #elif L==3 "compartidos" #elif L==4 "partages" #elif L==5 "compartidos" // Okoteve traducción #elif L==6 "condivisi" #elif L==7 "shared" // Potrzebujesz tlumaczenie #elif L==8 "comum" #endif , // Brw_FILE_BRW_WORKS_USR #if L==0 "treballs" #elif L==1 "Hausarbeiten" #elif L==2 "homework" #elif L==3 "trabajos" #elif L==4 "travaux" #elif L==5 "tembiapo" #elif L==6 "lavori" #elif L==7 "homework" // Potrzebujesz tlumaczenie #elif L==8 "trabalhos" #endif , // Brw_FILE_BRW_WORKS_CRS #if L==0 "treballs" #elif L==1 "Hausarbeiten" #elif L==2 "homework" #elif L==3 "trabajos" #elif L==4 "travaux" #elif L==5 "tembiapo" #elif L==6 "lavori" #elif L==7 "homework" // Potrzebujesz tlumaczenie #elif L==8 "trabalhos" #endif , // Brw_FILE_BRW_ADMIN_MARKS_CRS #if L==0 "qualificacions" #elif L==1 "Bewertungen" #elif L==2 "marks" #elif L==3 "calificaciones" #elif L==4 "notes" #elif L==5 "calificaciones" // Okoteve traducción #elif L==6 "risultati" #elif L==7 "marks" // Potrzebujesz tlumaczenie #elif L==8 "notas" #endif , // Brw_FILE_BRW_BRIEFCASE_USR #if L==0 "maleti" #elif L==1 "Aktentasche" #elif L==2 "briefcase" #elif L==3 "maletin" #elif L==4 "porte-documents" #elif L==5 "maletin" // Okoteve traducción #elif L==6 "cartella" #elif L==7 "briefcase" // Potrzebujesz tlumaczenie #elif L==8 "pasta" #endif , // Brw_FILE_BRW_SEE_DOCUMENTS_GRP #if L==0 "documents" #elif L==1 "Dokumente" #elif L==2 "documents" #elif L==3 "documentos" #elif L==4 "documents" #elif L==5 "kuatia" #elif L==6 "documenti" #elif L==7 "documents" // Potrzebujesz tlumaczenie #elif L==8 "documentos" #endif , // Brw_FILE_BRW_ADMIN_DOCUMENTS_GRP #if L==0 "documents" #elif L==1 "Dokumente" #elif L==2 "documents" #elif L==3 "documentos" #elif L==4 "documents" #elif L==5 "kuatia" #elif L==6 "documenti" #elif L==7 "documents" // Potrzebujesz tlumaczenie #elif L==8 "documentos" #endif , // Brw_FILE_BRW_SEE_MARKS_GRP #if L==0 "qualificacions" // Necessita traduccio #elif L==1 "Bewertungen" #elif L==2 "marks" #elif L==3 "calificaciones" #elif L==4 "notes" #elif L==5 "calificaciones" // Okoteve traducción #elif L==6 "risultati" #elif L==7 "marks" // Potrzebujesz tlumaczenie #elif L==8 "notas" #endif , // Brw_FILE_BRW_ADMIN_MARKS_GRP #if L==0 "qualificacions" #elif L==1 "Bewertungen" #elif L==2 "marks" #elif L==3 "calificaciones" #elif L==4 "notes" #elif L==5 "calificaciones" // Okoteve traducción #elif L==6 "risultati" #elif L==7 "marks" // Potrzebujesz tlumaczenie #elif L==8 "notas" #endif , // Brw_FILE_BRW_ASSIGNMENTS_USR #if L==0 "activitats" #elif L==1 "Aufgaben" #elif L==2 "assignments" #elif L==3 "actividades" #elif L==4 "activites" #elif L==5 "taréa" #elif L==6 "attività" #elif L==7 "assignments" // Potrzebujesz tlumaczenie #elif L==8 "atividades" #endif , // Brw_FILE_BRW_ASSIGNMENTS_CRS #if L==0 "activitats" #elif L==1 "Aufgaben" #elif L==2 "assignments" #elif L==3 "actividades" #elif L==4 "activites" #elif L==5 "taréa" #elif L==6 "attività" #elif L==7 "assignments" // Potrzebujesz tlumaczenie #elif L==8 "atividades" #endif }; const char *Txt_Save = #if L==0 "Guardar"; #elif L==1 "Speichern"; #elif L==2 "Save"; #elif L==3 "Guardar"; #elif L==4 "Enregistrer"; #elif L==5 "Ñongatu"; #elif L==6 "Salvare"; #elif L==7 "Zapisać"; #elif L==8 "Salvar"; #endif const char *Txt_Save_file_properties = #if L==0 "Guardar les propietats del fitxer"; #elif L==1 "Speichern Dateieigenschaften"; #elif L==2 "Save file properties"; #elif L==3 "Guardar propiedades del archivo"; #elif L==4 "Enregistrer les propriétés du fichier"; #elif L==5 "Guardar propiedades del archivo"; #elif L==6 "Salva le proprietà dei file"; #elif L==7 "Zapisz właściwości pliku"; #elif L==8 "Salvar as propriedades do arquivo"; #endif const char *Txt_Scope = #if L==0 "Àmbit"; #elif L==1 "Geltungsbereich"; #elif L==2 "Scope"; #elif L==3 "Ámbito"; #elif L==4 "Portée"; #elif L==5 "Ámbito"; // Okoteve traducción #elif L==6 "Ambito"; #elif L==7 "Scope"; // Potrzebujesz tlumaczenie #elif L==8 "Âmbito"; #endif const char *Txt_Score = #if L==0 "Puntuación"; // Necessita traduccio #elif L==1 "Ergebnis"; #elif L==2 "Score"; #elif L==3 "Puntuación"; #elif L==4 "Note"; #elif L==5 "Puntuación"; // Okoteve traducción #elif L==6 "Punteggio"; #elif L==7 "Score"; // Potrzebujesz tlumaczenie #elif L==8 "Pontuação"; #endif const char *Txt_Search = #if L==0 "Cercar"; #elif L==1 "Suchen"; #elif L==2 "Search"; #elif L==3 "Buscar"; #elif L==4 "Chercher"; #elif L==5 "Heka"; #elif L==6 "Cercare"; #elif L==7 "Szukaj"; #elif L==8 "Procurar"; #endif const char *Txt_Search_courses = #if L==0 "Cercar assignatures"; #elif L==1 "Suchen Veranstaltungen"; #elif L==2 "Search courses"; #elif L==3 "Buscar asignaturas"; #elif L==4 "Chercher matières"; #elif L==5 "Heka mbo'esyry"; #elif L==6 "Cercare corsi"; #elif L==7 "Szukaj kursów"; #elif L==8 "Procurar disciplinas"; #endif const char *Txt_See_exam = #if L==0 "Veure exàmen"; #elif L==1 "Siehe Prüfung"; #elif L==2 "See exam"; #elif L==3 "Ver examen"; #elif L==4 "Voir examen"; #elif L==5 "Ver examen"; // Okoteve traducción #elif L==6 "Vedi esame"; #elif L==7 "Wiadomości egzamin"; #elif L==8 "Veja exame"; #endif const char *Txt_See_exams = #if L==0 "Veure exàmens"; #elif L==1 "Siehe Prüfungen"; #elif L==2 "See exams"; #elif L==3 "Ver exámenes"; #elif L==4 "Voir examens"; #elif L==5 "Ver exámenes"; // Okoteve traducción #elif L==6 "Vedi esami"; #elif L==7 "Wiadomości egzaminy"; #elif L==8 "Veja exames"; #endif const char *Txt_See_full_notice = #if L==0 "Veure avís complet"; #elif L==1 "Siehe voll Ankündigung"; #elif L==2 "See full notice"; #elif L==3 "Ver aviso completo"; #elif L==4 "Voir l'avis complet"; #elif L==5 "Ver aviso completo"; // Okoteve traducción #elif L==6 "Vedi avviso completo "; #elif L==7 "Wiadomości cały obwieszczenie"; #elif L==8 "Veja aviso completo"; #endif const char *Txt_See_message = #if L==0 "Veure missatge"; #elif L==1 "Siehe Nachricht"; #elif L==2 "See message"; #elif L==3 "Ver mensaje"; #elif L==4 "Voir message"; #elif L==5 "Ver mensaje"; // Okoteve traducción #elif L==6 "Vedi messaggio"; #elif L==7 "See message"; // Potrzebujesz tlumaczenie #elif L==8 "Veja mensagem"; #endif const char *Txt_See_messages_received = #if L==0 "Veure missatges rebuts"; #elif L==1 "Siehe Empfangene Nachrichten"; #elif L==2 "See messages received"; #elif L==3 "Ver mensajes recibidos"; #elif L==4 "Voir messages reçus"; #elif L==5 "Ver mensajes recibidos"; // Okoteve traducción #elif L==6 "Vedi messaggi ricevuti"; #elif L==7 "Wiadomości odebrane"; #elif L==8 "Veja mensagens recebidas"; #endif const char *Txt_See_notifications = #if L==0 "Ver notificaciones"; // Necessita traduccio #elif L==1 "Siehe Anmeldungen"; #elif L==2 "See notifications"; #elif L==3 "Ver notificaciones"; #elif L==4 "Voir notifications"; #elif L==5 "Ver notificaciones"; // Okoteve traducción #elif L==6 "Vedi notifiche"; #elif L==7 "See notifications"; // Potrzebujesz tlumaczenie #elif L==8 "Veja notificações"; #endif const char *Txt_See_page_X_of_Y = // Warning: it is very important to include two %u in the following sentences #if L==0 "Ver página %u de %u"; // Necessita traduccio #elif L==1 "Siehe Seite %u von %u"; #elif L==2 "See page %u of %u"; #elif L==3 "Ver página %u de %u"; #elif L==4 "Voir page %u de %u"; #elif L==5 "Ver página %u de %u"; // Okoteve traducción #elif L==6 "Vedi pagina %u di %u"; #elif L==7 "See page %u of %u"; // Potrzebujesz tlumaczenie #elif L==8 "Veja página %u de %u"; #endif const char *Txt_Select_one_or_more_files_from_your_computer_or_drag_and_drop_here = #if L==0 "Seleccioneu un o més fitxers del seu ordinador
" "o arrossegueu i deixeu-los anar aquí"; #elif L==1 "Wählen Sie eine oder mehrere Dateien von Ihrem Computer
" "oder per Drag & Drop hier"; #elif L==2 "Select one or more files from your computer
" "or drag and drop here"; #elif L==3 "Seleccione uno o más archivos de su ordenador
" "o arrástrelos y suéltelos aquí"; #elif L==4 "Sélectionnez un ou plusieurs fichiers à partir de votre ordinateur
" "ou glisser-déposer ici"; #elif L==5 "Seleccione uno o más archivos de su ordenador
" "o arrástrelos y suéltelos aquí"; // Okoteve traducción #elif L==6 "Selezionare uno o più file dal tuo computer
" "o trascinare e rilasciare qui"; #elif L==7 "Wybierz jeden lub więcej plików z komputera
" "lub przeciągnij i upuść tutaj"; #elif L==8 "Selecione um ou mais arquivos de seu computador
" "ou arrastar e soltar aqui"; #endif const char *Txt_Select_the_groups_in_from_which_you_want_to_register_remove_users_ = #if L==0 "Seleccione los grupos en/de los que quiere inscribir/eliminar usuarios." " Sólo puede seleccionar aquellos grupos a los que usted pertenezca.
" "Si selecciona grupos, los usuarios serán inscritos en la asignatura y en los grupos seleccionados," " o bien eliminados de los grupos seleccionados pero no de la asignatura.
" "Si no selecciona ningún grupo, los usuarios serán inscritos en la asignatura pero no en grupos concretos," " o bien eliminados de la asignatura y de todos los grupos."; // Necessita traduccio #elif L==1 "Select the groups in/from which you want to register/remove users." "You can only select those groups to which you belong.
" "If you select any groups, users will be enrolled in the course and the selected groups," " or removed from the selected groups but not from the course.
" "If you do not select any groups, users will be enrolled in the course but not in specific groups," " or removed from the course and from all groups."; // Need Übersetzung #elif L==2 "Select the groups in/from which you want to register/remove users." "You can only select those groups to which you belong.
" "If you select any groups, users will be enrolled in the course and the selected groups," " or removed from the selected groups but not from the course.
" "If you do not select any groups, users will be enrolled in the course but not in specific groups," " or removed from the course and from all groups."; #elif L==3 "Seleccione los grupos en/de los que quiere inscribir/eliminar usuarios." " Sólo puede seleccionar aquellos grupos a los que usted pertenezca.
" "Si selecciona grupos, los usuarios serán inscritos en la asignatura y en los grupos seleccionados," " o bien eliminados de los grupos seleccionados pero no de la asignatura.
" "Si no selecciona ningún grupo, los usuarios serán inscritos en la asignatura pero no en grupos concretos," " o bien eliminados de la asignatura y de todos los grupos."; #elif L==4 "Select the groups in/from which you want to register/remove users." "You can only select those groups to which you belong.
" "If you select any groups, users will be enrolled in the course and the selected groups," " or removed from the selected groups but not from the course.
" "If you do not select any groups, users will be enrolled in the course but not in specific groups," " or removed from the course and from all groups."; // Besoin de traduction #elif L==5 "Seleccione los grupos en/de los que quiere inscribir/eliminar usuarios." " Sólo puede seleccionar aquellos grupos a los que usted pertenezca.
" "Si selecciona grupos, los usuarios serán inscritos en la asignatura y en los grupos seleccionados," " o bien eliminados de los grupos seleccionados pero no de la asignatura.
" "Si no selecciona ningún grupo, los usuarios serán inscritos en la asignatura pero no en grupos concretos," " o bien eliminados de la asignatura y de todos los grupos."; // Okoteve traducción #elif L==6 "Seleziona i gruppi nel/dal quale vuoi registrare/rimuovere utenti." "Puoi solo selezionare quei gruppi ai quali appartieni.
" "Se selezioni qualche gruppo, gli utenti saranno registrati nel corso e nel gruppo selezionato," " o rimossi dai gruppi selezionati ma non dal corso.
" "Se non selezioni alcun gruppo, gli utenti saranno registrati nel corso ma non in gruppi specifici," " o rimossi dal corso e da tutti i gruppi."; #elif L==7 "Select the groups in/from which you want to register/remove users." "You can only select those groups to which you belong.
" "If you select any groups, users will be enrolled in the course and the selected groups," " or removed from the selected groups but not from the course.
" "If you do not select any groups, users will be enrolled in the course but not in specific groups," " or removed from the course and from all groups."; // Potrzebujesz tlumaczenie #elif L==8 "Select the groups in/from which you want to register/remove users." "You can only select those groups to which you belong.
" "If you select any groups, users will be enrolled in the course and the selected groups," " or removed from the selected groups but not from the course.
" "If you do not select any groups, users will be enrolled in the course but not in specific groups," " or removed from the course and from all groups."; // Necessita de tradução #endif const char *Txt_Select_the_groups_of_students_you_want_to_register_in_remove_from_this_course = #if L==0 "Seleccione los grupos de estudiantes que desee inscribir en / eliminar de esta asignatura."; // Necessita traduccio #elif L==1 "Select the groups of students you want to register in / remove from this course."; // Need Übersetzung #elif L==2 "Select the groups of students you want to register in / remove from this course."; #elif L==3 "Seleccione los grupos de estudiantes que desee inscribir en / eliminar de esta asignatura."; #elif L==4 "Select the groups of students you want to register in / remove from this course."; // Besoin de traduction #elif L==5 "Seleccione los grupos de estudiantes que desee inscribir en / eliminar de esta asignatura."; // Okoteve traducción #elif L==6 "Seleziona i gruppi di studenti che vuoi registrare in / rimuovere da questo corso."; #elif L==7 "Select the groups of students you want to register in / remove from this course."; // Potrzebujesz tlumaczenie #elif L==8 "Select the groups of students you want to register in / remove from this course."; // Necessita de tradução #endif const char *Txt_Semester = #if L==0 "Quadrimestre / Semestre"; #elif L==1 "Semester"; #elif L==2 "Semester"; #elif L==3 "Cuatrimestre / Semestre"; #elif L==4 "Semestre"; #elif L==5 "Cuatrimestre / Semestre"; // Okoteve traducción #elif L==6 "Semestre"; #elif L==7 "Semestr"; #elif L==8 "Semestre"; #endif const char *Txt_Semester_ABBREVIATION = #if L==0 "Quadr./
Semes."; #elif L==1 "Semester"; #elif L==2 "Semester"; #elif L==3 "Cuatr./
Semes."; #elif L==4 "Semestre"; #elif L==5 "Cuatr./
Semes."; // Okoteve traducción #elif L==6 "Semestre"; #elif L==7 "Semestr"; #elif L==8 "Semestre"; #endif const char *Txt_SEMESTER_OF_YEAR[1 + 2] = { #if L==0 "Anual" // Necessita traduccio #elif L==1 "Yearlong" // Need Übersetzung #elif L==2 "Yearlong" #elif L==3 "Anual" #elif L==4 "Yearlong" // Besoin de traduction #elif L==5 "Anual" // Okoteve traducción #elif L==6 "Annuale" #elif L==7 "Yearlong" // Potrzebujesz tlumaczenie #elif L==8 "Yearlong" // Necessita de tradução #endif , #if L==0 "1º" // Necessita traduccio #elif L==1 "1st" // Need Übersetzung #elif L==2 "1st" #elif L==3 "1º" #elif L==4 "1st" // Besoin de traduction #elif L==5 "1º" // Okoteve traducción #elif L==6 "Primo" #elif L==7 "1st" // Potrzebujesz tlumaczenie #elif L==8 "1st" // Necessita de tradução #endif , #if L==0 "2º" // Necessita traduccio #elif L==1 "2nd" // Need Übersetzung #elif L==2 "2nd" #elif L==3 "2º" #elif L==4 "2nd" // Besoin de traduction #elif L==5 "2º" // Okoteve traducción #elif L==6 "Secondo" #elif L==7 "2nd" // Potrzebujesz tlumaczenie #elif L==8 "2nd" // Necessita de tradução #endif }; const char *Txt_Send = #if L==0 "Enviar"; #elif L==1 "Senden"; #elif L==2 "Send"; #elif L==3 "Enviar"; #elif L==4 "Envoyer"; #elif L==5 "Enviar"; // Okoteve traducción #elif L==6 "Invia"; #elif L==7 "Send"; // Potrzebujesz tlumaczenie #elif L==8 "Enviar"; #endif const char *Txt_Send_announcement_of_exam = #if L==0 "Enviar convocatoria de examen"; // Necessita traduccio #elif L==1 "Senden Aufruf für Prüfung"; #elif L==2 "Send announcement of exam"; #elif L==3 "Enviar convocatoria de examen"; #elif L==4 "Envoyer convocation à l'examen"; #elif L==5 "Enviar convocatoria de examen"; // Okoteve traducción #elif L==6 "Invia sessione d'esame"; #elif L==7 "Send announcement of exam"; // Potrzebujesz tlumaczenie #elif L==8 "Enviar chamada para o exame"; #endif const char *Txt_Send_message = #if L==0 "Enviar mensaje"; // Necessita traduccio #elif L==1 "Senden Nachricht"; #elif L==2 "Send message"; #elif L==3 "Enviar mensaje"; #elif L==4 "Envoyer message"; #elif L==5 "Enviar mensaje"; // Okoteve traducción #elif L==6 "Invia messaggio"; #elif L==7 "Send message"; // Potrzebujesz tlumaczenie #elif L==8 "Enviar mensagem"; #endif const char *Txt_Send_survey = #if L==0 "Enviar encuesta"; // Necessita traduccio #elif L==1 "Senden Umfrage"; #elif L==2 "Send survey"; #elif L==3 "Enviar encuesta"; #elif L==4 "Envoyer sondage"; #elif L==5 "Enviar encuesta"; // Okoteve traducción #elif L==6 "Invia sondaggio"; #elif L==7 "Send survey"; // Potrzebujesz tlumaczenie #elif L==8 "Enviar inquérito"; #endif const char *Txt_Send_URL = #if L==0 "Enviar URL"; // Necessita traduccio #elif L==1 "Senden URL"; #elif L==2 "Send URL"; #elif L==3 "Enviar URL"; #elif L==4 "Envoyer URL"; #elif L==5 "Enviar URL"; // Okoteve traducción #elif L==6 "Invia URL"; #elif L==7 "Send URL"; // Potrzebujesz tlumaczenie #elif L==8 "Enviar URL"; #endif const char *Txt_Sender_banned_click_to_unban_him = #if L==0 "Remitente bloqueado/a; pulse para desbloquearlo/a"; // Necessita traduccio #elif L==1 "Sender banned; click to unban her/him"; // Need Übersetzung #elif L==2 "Sender banned; click to unban her/him"; #elif L==3 "Remitente bloqueado/a; pulse para desbloquearlo/a"; #elif L==4 "Sender banned; click to unban her/him"; // Besoin de traduction #elif L==5 "Remitente bloqueado/a; pulse para desbloquearlo/a"; // Okoteve traducción #elif L==6 "Sender banned; click to unban her/him"; // Bisogno di traduzione #elif L==7 "Sender banned; click to unban her/him"; // Potrzebujesz tlumaczenie #elif L==8 "Sender banned; click to unban her/him"; // Necessita de tradução #endif const char *Txt_Sender_permitted_click_to_ban_him = #if L==0 "Remitente permitido/a; pulse para bloquearlo/a"; // Necessita traduccio #elif L==1 "Sender permitted; click to ban her/him"; // Need Übersetzung #elif L==2 "Sender permitted; click to ban her/him"; #elif L==3 "Remitente permitido/a; pulse para bloquearlo/a"; #elif L==4 "Sender permitted; click to ban her/him"; // Besoin de traduction #elif L==5 "Remitente permitido/a; pulse para bloquearlo/a"; // Okoteve traducción #elif L==6 "Sender permitted; click to ban her/him"; // Bisogno di traduzione #elif L==7 "Sender permitted; click to ban her/him"; // Potrzebujesz tlumaczenie #elif L==8 "Sender permitted; click to ban her/him"; // Necessita de tradução #endif const char *Txt_session = #if L==0 "sesión"; // Necessita traduccio #elif L==1 "Sitzung"; #elif L==2 "session"; #elif L==3 "sesión"; #elif L==4 "session"; #elif L==5 "sesión"; // Okoteve traducción #elif L==6 "sessione"; #elif L==7 "sesja"; #elif L==8 "sessão"; #endif const char *Txt_sessions = #if L==0 "sessions"; #elif L==1 "Sitzungen"; #elif L==2 "sessions"; #elif L==3 "sesiones"; #elif L==4 "sessions"; #elif L==5 "sesiones"; // Okoteve traducción #elif L==6 "sessioni"; #elif L==7 "sessions"; // Potrzebujesz tlumaczenie #elif L==8 "sessões"; #endif const char *Txt_Sex = #if L==0 "Sexe"; #elif L==1 "Sex"; #elif L==2 "Sex"; #elif L==3 "Sexo"; #elif L==4 "Sexe"; #elif L==5 "Meña"; #elif L==6 "Sesso"; #elif L==7 "Pleć"; #elif L==8 "Sexo"; #endif const char *Txt_SEX_PLURAL_Abc[Usr_NUM_SEXS] = { #if L==0 // Usr_SEX_UNKNOWN "Desconocidos" // Necessita traduccio #elif L==1 "Unbekannt" #elif L==2 "Unknown" #elif L==3 "Desconocidos" #elif L==4 "Inconnus" #elif L==5 "Desconocidos" // Okoteve traducción #elif L==6 "Sconosciuti" #elif L==7 "Nieznany" #elif L==8 "Desconhecidos" #endif , #if L==0 // Usr_SEX_FEMALE "Dones" // Necessita traduccio #elif L==1 "Frauen" #elif L==2 "Women" #elif L==3 "Mujeres" #elif L==4 "Femmes" #elif L==5 "Mujeres" // Okoteve traducción #elif L==6 "Donne" #elif L==7 "Kobiety" #elif L==8 "Mulheres" #endif , #if L==0 // Usr_SEX_MALE "Homes" #elif L==1 "Männer" #elif L==2 "Men" #elif L==3 "Hombres" #elif L==4 "Hommes" #elif L==5 "Hombres" // Okoteve traducción #elif L==6 "Uomini" #elif L==7 "Mezczyzni" #elif L==8 "Homens" #endif , #if L==0 // Usr_SEX_ALL "Todos" // Necessita traduccio #elif L==1 "Alle" #elif L==2 "All" #elif L==3 "Todos" #elif L==4 "Tous" #elif L==5 "Todos" // Okoteve traducción #elif L==6 "Tutti" #elif L==7 "Wszyscy" #elif L==8 "Todos" #endif }; const char *Txt_SEX_PLURAL_abc[Usr_NUM_SEXS] = { #if L==0 // Usr_SEX_UNKNOWN "desconocidos" // Necessita traduccio #elif L==1 "unbekannt" #elif L==2 "unknown" #elif L==3 "desconocidos" #elif L==4 "inconnus" #elif L==5 "desconocidos" // Okoteve traducción #elif L==6 "sconosciuti" #elif L==7 "nieznany" #elif L==8 "desconhecidos" #endif , #if L==0 // Usr_SEX_FEMALE "dones" #elif L==1 "Frauen" #elif L==2 "women" #elif L==3 "mujeres" #elif L==4 "femmes" #elif L==5 "mujeres" // Okoteve traducción #elif L==6 "donne" #elif L==7 "kobiety" #elif L==8 "mulheres" #endif , #if L==0 // Usr_SEX_MALE "homes" #elif L==1 "Männer" #elif L==2 "men" #elif L==3 "hombres" #elif L==4 "hommes" #elif L==5 "hombres" // Okoteve traducción #elif L==6 "uomini" #elif L==7 "mezczyzni" #elif L==8 "homens" #endif , #if L==0 // Usr_SEX_ALL "todos" // Necessita traduccio #elif L==1 "alle" #elif L==2 "all" #elif L==3 "todos" #elif L==4 "tous" #elif L==5 "todos" // Okoteve traducción #elif L==6 "tutti" #elif L==7 "wszyscy" #elif L==8 "todos" #endif }; const char *Txt_SEX_SINGULAR_Abc[Usr_NUM_SEXS] = { #if L==0 // Usr_SEX_UNKNOWN "Desconocido" // Necessita traduccio #elif L==1 "Unbekannt" #elif L==2 "Unknown" #elif L==3 "Desconocido" #elif L==4 "Inconnu" #elif L==5 "Desconocido" // Okoteve traducción #elif L==6 "Sconosciuto" #elif L==7 "Nieznany" #elif L==8 "Desconhecido" #endif , #if L==0 // Usr_SEX_FEMALE "Dona" #elif L==1 "Frau" #elif L==2 "Woman" #elif L==3 "Mujer" #elif L==4 "Femme" #elif L==5 "Kuña" #elif L==6 "Donna" #elif L==7 "Kobieta" #elif L==8 "Mulher" #endif , #if L==0 // Usr_SEX_MALE "Home" #elif L==1 "Mann" #elif L==2 "Man" #elif L==3 "Hombre" #elif L==4 "Homme" #elif L==5 "Kuimba'e" #elif L==6 "Uomo" #elif L==7 "Mężczyzna" #elif L==8 "Homem" #endif , #if L==0 // Usr_SEX_ALL "Todos" // Necessita traduccio #elif L==1 "Alle" #elif L==2 "All" #elif L==3 "Todos" #elif L==4 "Tous" #elif L==5 "Todos" // Okoteve traducción #elif L==6 "Tutti" #elif L==7 "Wwszyscy" #elif L==8 "Todos" #endif }; const char *Txt_Shared_files_area = #if L==0 "Zona d'arxius compartits"; #elif L==1 "Freigegebene Dateien-Bereich"; #elif L==2 "Shared files area"; #elif L==3 "Zona de archivos compartidos"; #elif L==4 "Zone de fichiers partagés"; #elif L==5 "Zona de archivos compartidos"; // Okoteve traducción #elif L==6 "Area comune"; #elif L==7 "Wspólnej dla"; #elif L==8 "Zona comum"; #endif const char *Txt_Short_Name = #if L==0 "Nombre breve"; // Necessita traduccio #elif L==1 "Kurzname"; #elif L==2 "Short name"; #elif L==3 "Nombre breve"; #elif L==4 "Nom abrégé"; #elif L==5 "Nombre breve"; // Okoteve traducción #elif L==6 "Nome breve"; #elif L==7 "Short name"; // Potrzebujesz tlumaczenie #elif L==8 "Nome abreviado"; #endif const char *Txt_Short_BR_Name = #if L==0 "Nombre
breve"; // Necessita traduccio #elif L==1 "Kurzname"; #elif L==2 "Short
name"; #elif L==3 "Nombre
breve"; #elif L==4 "Nom
abrégé"; #elif L==5 "Nombre
breve"; // Okoteve traducción #elif L==6 "Nome
breve"; #elif L==7 "Short
name"; // Potrzebujesz tlumaczenie #elif L==8 "Nome
abreviado"; #endif const char *Txt_Shortcut_to_this_course = #if L==0 "Acceso directo a la asignatura"; // Necessita traduccio #elif L==1 "Shortcut to this course"; // Need Übersetzung #elif L==2 "Shortcut to this course"; #elif L==3 "Acceso directo a la asignatura"; #elif L==4 "Shortcut to this course"; // Besoin de traduction #elif L==5 "Acceso directo a la asignatura"; // Okoteve traducción #elif L==6 "Accesso diretto al corso"; #elif L==7 "Shortcut to this course"; // Potrzebujesz tlumaczenie #elif L==8 "Shortcut to this course"; // Necessita de tradução #endif const char *Txt_Shortcut_to_this_degree = #if L==0 "Acceso directo a la titulación"; // Necessita traduccio #elif L==1 "Shortcut to this degree"; // Need Übersetzung #elif L==2 "Shortcut to this degree"; #elif L==3 "Acceso directo a la titulación"; #elif L==4 "Shortcut to this degree"; // Besoin de traduction #elif L==5 "Acceso directo a la titulación"; // Okoteve traducción #elif L==6 "Accesso diretto alla laurea"; #elif L==7 "Shortcut to this degree"; // Potrzebujesz tlumaczenie #elif L==8 "Shortcut to this degree"; // Necessita de tradução #endif const char *Txt_Shortcut_to_this_centre = #if L==0 "Acceso directo al centro"; // Necessita traduccio #elif L==1 "Shortcut to this centre"; // Need Übersetzung #elif L==2 "Shortcut to this centre"; #elif L==3 "Acceso directo al centro"; #elif L==4 "Shortcut to this centre"; // Besoin de traduction #elif L==5 "Acceso directo al centro"; // Okoteve traducción #elif L==6 "Accesso diretto al centro"; #elif L==7 "Shortcut to this centre"; // Potrzebujesz tlumaczenie #elif L==8 "Shortcut to this centre"; // Necessita de tradução #endif const char *Txt_Shortcut_to_this_country = #if L==0 "Acceso directo al país"; // Necessita traduccio #elif L==1 "Shortcut to this country"; // Need Übersetzung #elif L==2 "Shortcut to this country"; #elif L==3 "Acceso directo al país"; #elif L==4 "Shortcut to this country"; // Besoin de traduction #elif L==5 "Acceso directo al país"; // Okoteve traducción #elif L==6 "Accesso diretto al paese"; #elif L==7 "Shortcut to this country"; // Potrzebujesz tlumaczenie #elif L==8 "Shortcut to this country"; // Necessita de tradução #endif const char *Txt_Shortcut_to_this_institution = #if L==0 "Acceso directo a la institución"; // Necessita traduccio #elif L==1 "Shortcut to this institution"; // Need Übersetzung #elif L==2 "Shortcut to this institution"; #elif L==3 "Acceso directo a la institución"; #elif L==4 "Shortcut to this institution"; // Besoin de traduction #elif L==5 "Acceso directo a la institución"; // Okoteve traducción #elif L==6 "Accesso diretto a l'istituzione"; #elif L==7 "Shortcut to this institution"; // Potrzebujesz tlumaczenie #elif L==8 "Shortcut to this institution"; // Necessita de tradução #endif const char *Txt_Show = #if L==0 "Mostra"; #elif L==1 "Zeige"; #elif L==2 "Show"; #elif L==3 "Mostrar"; #elif L==4 "Voir"; #elif L==5 "Mostrar"; // Okoteve traducción #elif L==6 "Visualizza"; #elif L==7 "Pokazać"; #elif L==8 "Mostrar"; #endif const char *Txt_Show_FOLDER_FILE_OR_LINK_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Mostra %s"; #elif L==1 "Zeige %s"; #elif L==2 "Show %s"; #elif L==3 "Mostrar %s"; #elif L==4 "Voir %s"; #elif L==5 "Mostrar %s"; // Okoteve traducción #elif L==6 "Visualizza %s"; #elif L==7 "Pokazać %s"; #elif L==8 "Mostrar %s"; #endif const char *Txt_Show_all_data = #if L==0 "Mostrar totes les dades"; #elif L==1 "Alle Daten"; #elif L==2 "Show all data"; #elif L==3 "Mostrar todos los datos"; #elif L==4 "Voir toutes les données"; #elif L==5 "Mostrar todos los datos"; // Okoteve traducción #elif L==6 "Visualizza tutti i dati"; #elif L==7 "Show all data"; // Potrzebujesz tlumaczenie #elif L==8 "Mostrar todos os dados"; #endif const char *Txt_Show_all_files = #if L==0 "Mostrar tots els fitxers"; #elif L==1 "Alle Dateien anzeigen"; #elif L==2 "Show all files"; #elif L==3 "Mostrar todos los archivos"; #elif L==4 "Afficher tous les fichiers"; #elif L==5 "Mostrar todos los archivos"; // Okoteve traducción #elif L==6 "Mostra tutti i file"; #elif L==7 "Pokaż wszystkie pliki"; #elif L==8 "Mostrar todos os arquivos"; #endif const char *Txt_Show_all_notifications = #if L==0 "Mostrar tots les notificacions"; #elif L==1 "Alle Anmeldungen anzeigen"; #elif L==2 "Show all notifications"; #elif L==3 "Mostrar todas las notificaciones"; #elif L==4 "Afficher tous les notifications"; #elif L==5 "Mostrar todas las notificaciones"; // Okoteve traducción #elif L==6 "Mostra tutti le notifiche"; #elif L==7 "Pokaż wszystkie powiadomienia"; #elif L==8 "Mostrar todas as notificações"; #endif const char *Txt_Show_anyway = #if L==0 "Mostra de totes maneres"; #elif L==1 "Zeigesowieso"; #elif L==2 "Show anyway"; #elif L==3 "Mostrar de todos modos"; #elif L==4 "Voir de toute façon"; #elif L==5 "Mostrar de todos modos"; // Okoteve traducción #elif L==6 "Visualizza comunque"; #elif L==7 "Show anyway"; // Potrzebujesz tlumaczenie #elif L==8 "Mostrar de qualquer maneira"; #endif const char *Txt_Show_left_column = #if L==0 "Mostrar columna izquierda"; // Necessita traduccio #elif L==1 "Links Spalte anzeigen"; #elif L==2 "Show left column"; #elif L==3 "Mostrar columna izquierda"; #elif L==4 "Afficher la colonne de gauche"; #elif L==5 "Mostrar columna izquierda"; // Okoteve traducción #elif L==6 "Mostra colonna di sinistra"; #elif L==7 "Show left column"; // Potrzebujesz tlumaczenie #elif L==8 "Mostrar coluna da esquerda"; #endif const char *Txt_Show_list = #if L==0 "Mostra la llista"; #elif L==1 "Liste anzeigen"; #elif L==2 "Show list"; #elif L==3 "Ver lista"; #elif L==4 "Afficher la liste"; #elif L==5 "Ver lista"; // Okoteve traducción #elif L==6 "Mostra elenco"; #elif L==7 "Pokaż listę"; #elif L==8 "Mostrar lista"; #endif const char *Txt_Show_office_hours = #if L==0 "Mostra horaris tutories"; #elif L==1 "Geschäftszeiten anzeigen"; #elif L==2 "Show office hours"; #elif L==3 "Ver horarios tutorías"; #elif L==4 "Voir horaires tuteur"; #elif L==5 "Ver horarios tutorías"; // Okoteve traducción #elif L==6 "Mostra orari tutoraggi"; #elif L==7 "Pokaż godzin pracy biura"; #elif L==8 "Mostrar horários tutor"; #endif const char *Txt_Show_only_unread_messages = #if L==0 "Mostrar només els missatges no llegits"; #elif L==1 "Zeige nur ungelesene Nachrichten"; #elif L==2 "Show only unread messages"; #elif L==3 "Mostrar únicamente los mensajes no leídos"; #elif L==4 "Afficher uniquement les messages non lus"; #elif L==5 "Mostrar únicamente los mensajes no leídos"; // Okoteve traducción #elif L==6 "Mostra solo i messaggi non letti"; #elif L==7 "Show only unread messages"; // Potrzebujesz tlumaczenie #elif L==8 "Mostrar apenas mensagens não lidas"; #endif const char *Txt_Show_right_column = #if L==0 "Mostrar columna derecha"; // Necessita traduccio #elif L==1 "Rechte Spalte anzeigen"; #elif L==2 "Show right column"; #elif L==3 "Mostrar columna derecha"; #elif L==4 "Afficher la colonne de droite"; #elif L==5 "Mostrar columna derecha"; // Okoteve traducción #elif L==6 "Mostra colonna di destra"; #elif L==7 "Show right column"; // Potrzebujesz tlumaczenie #elif L==8 "Mostrar coluna da direita"; #endif const char *Txt_Show_WHICH_groups[2] = { #if L==0 "Mostrar només els meus grups" #elif L==1 "Zeige nur meine Gruppen" #elif L==2 "Show only my groups" #elif L==3 "Mostrar sólo mis grupos" #elif L==4 "Afficher uniquement mes groupes" #elif L==5 "Mostrar sólo mis grupos" // Okoteve traducción #elif L==6 "Mostra solo i miei gruppi" #elif L==7 "Show only my groups" // Potrzebujesz tlumaczenie #elif L==8 "Mostrar apenas os meus grupos" #endif , #if L==0 "Mostrar tots els grups" #elif L==1 "Zeige alle Gruppen" #elif L==2 "Show all groups" #elif L==3 "Mostrar todos los grupos" #elif L==4 "Afficher tous les groupes" #elif L==5 "Mostrar todos los grupos" // Okoteve traducción #elif L==6 "Mostra tutti i gruppi" #elif L==7 "Show all groups" // Potrzebujesz tlumaczenie #elif L==8 "Mostrar todos os grupos" #endif }; const char *Txt_Show_more_details = #if L==0 "Mostra més detalls"; #elif L==1 "Mehr Details"; #elif L==2 "Show more details"; #elif L==3 "Mostrar más detalles"; #elif L==4 "Montrer plus de détails"; #elif L==5 "Mostrar más detalles"; // Okoteve traducción #elif L==6 "Mostra più dettagli"; #elif L==7 "Pokaż więcej szczegółów"; #elif L==8 "Mostrar mais detalhes"; #endif const char *Txt_Show_next_X_clicks = // Warning: it is very important to include %lu in the following sentences #if L==0 "Mostrar %lu clics posteriores"; // Necessita traduccio #elif L==1 "Show next %lu clicks"; // Need Übersetzung #elif L==2 "Show next %lu clicks"; #elif L==3 "Mostrar %lu clics posteriores"; #elif L==4 "Show next %lu clicks"; // Besoin de traduction #elif L==5 "Mostrar %lu clics posteriores"; // Okoteve traducción #elif L==6 "Mostra %lu scatti seguenti"; #elif L==7 "Show next %lu clicks"; // Potrzebujesz tlumaczenie #elif L==8 "Show next %lu clicks"; // Necessita de tradução #endif const char *Txt_Show_previous_X_clicks = // Warning: it is very important to include %lu in the following sentences #if L==0 "Mostrar %lu clics anteriores"; // Necessita traduccio #elif L==1 "Show previous %lu clicks"; // Need Übersetzung #elif L==2 "Show previous %lu clicks"; #elif L==3 "Mostrar %lu clics anteriores"; #elif L==4 "Show previous %lu clicks"; // Besoin de traduction #elif L==5 "Mostrar %lu clics anteriores"; // Okoteve traducción #elif L==6 "Mostra %lu scatti precedenti"; #elif L==7 "Show previous %lu clicks"; // Potrzebujesz tlumaczenie #elif L==8 "Show previous %lu clicks"; // Necessita de tradução #endif const char *Txt_Show_questions = #if L==0 "Mostrar preguntes"; #elif L==1 "Zeige Testfragen"; #elif L==2 "Show questions"; #elif L==3 "Mostrar preguntas"; #elif L==4 "Voir les questions"; #elif L==5 "Mostrar preguntas"; // Okoteve traducción #elif L==6 "Visualizza le domande"; #elif L==7 "Show questions"; // Potrzebujesz tlumaczenie #elif L==8 "Mostrar questões"; #endif const char *Txt_Show_records = #if L==0 "Mostrar fichas"; // Necessita traduccio #elif L==1 "Zeige Profile"; #elif L==2 "Show records"; #elif L==3 "Mostrar fichas"; #elif L==4 "Voir les cartes"; #elif L==5 "Mostrar fichas"; // Okoteve traducción #elif L==6 "Visualizza le schede"; #elif L==7 "Show records"; // Potrzebujesz tlumaczenie #elif L==8 "Mostrar cartões"; #endif const char *Txt_Show_statistic = #if L==0 "Mostrar estadística"; #elif L==1 "Zeige Statistik"; #elif L==2 "Show statistic"; #elif L==3 "Mostrar estadística"; #elif L==4 "Voir statistique"; #elif L==5 "Mostrar estadística"; // Okoteve traducción #elif L==6 "Visualizza statistica"; #elif L==7 "Show statistic"; // Potrzebujesz tlumaczenie #elif L==8 "Mostrar estatística"; #endif const char *Txt_Show_timetable = #if L==0 "Veure horari"; #elif L==1 "Zeige Stundenplan"; #elif L==2 "Show timetable"; #elif L==3 "Ver horario"; #elif L==4 "Voir horaire"; #elif L==5 "Ver horario"; // Okoteve traducción #elif L==6 "Vedi orario"; #elif L==7 "Wiadomości plan lekcji"; #elif L==8 "Veja horário"; #endif const char *Txt_Show_visits = #if L==0 "Veure accessos"; #elif L==1 "Zeige Anmeldungen"; #elif L==2 "Show visits"; #elif L==3 "Ver accesos"; #elif L==4 "Voir visites"; #elif L==5 "Ver accesos"; // Okoteve traducción #elif L==6 "Visualizza visite"; #elif L==7 "Show visits"; // Potrzebujesz tlumaczenie #elif L==8 "Mostrar visitas"; #endif const char *Txt_Shuffle = #if L==0 "Barrejar"; #elif L==1 "Shuffle"; #elif L==2 "Shuffle"; #elif L==3 "Barajar"; #elif L==4 "Mélanger"; #elif L==5 "Barajar"; // Okoteve traducción #elif L==6 "Mischiare"; #elif L==7 "Shuffle"; // Potrzebujesz tlumaczenie #elif L==8 "Baralhar"; #endif const char *Txt_Sign_up = #if L==0 "Sol·licitar inscripció"; #elif L==1 "Registrierung beantragen"; #elif L==2 "Sign up"; #elif L==3 "Solicitar inscripción"; #elif L==4 "Demander inscription"; #elif L==5 "Solicitar inscripción"; // Okoteve traducción #elif L==6 "Richiedere iscrizione"; #elif L==7 "Wniosku rejestrację"; #elif L==8 "Solicitar inscrição"; #endif const char *Txt_Size = // ...of a file zone #if L==0 "Mida"; #elif L==1 "Größe"; #elif L==2 "Size"; #elif L==3 "Tamaño"; #elif L==4 "Taille"; #elif L==5 "Tamaño"; // Okoteve traducción #elif L==6 "Dimensione"; #elif L==7 "Size"; // Potrzebujesz tlumaczenie #elif L==8 "Tamanho"; #endif const char *Txt_Size_of_photos = #if L==0 "Mida de les fotos"; #elif L==1 "Größe des Fotos"; #elif L==2 "Size of photos"; #elif L==3 "Tamaño de las fotos"; #elif L==4 "Taille des photos"; #elif L==5 "Tamaño de las fotos"; // Okoteve traducción #elif L==6 "Dimensioni delle foto"; #elif L==7 "Size of photos"; // Potrzebujesz tlumaczenie #elif L==8 "Tamanho das fotos"; #endif const char *Txt_Skype = #if L==0 "Skype™"; #elif L==1 "Skype™"; #elif L==2 "Skype™"; #elif L==3 "Skype™"; #elif L==4 "Skype™"; #elif L==5 "Skype™"; // Okoteve traducción #elif L==6 "Skype™"; #elif L==7 "Skype™"; #elif L==8 "Skype™"; #endif const char *Txt_Sort_degrees_by = #if L==0 "Ordenar titulacions per"; #elif L==1 "Sortieren Studiengänge nach"; #elif L==2 "Sort degrees by"; #elif L==3 "Ordenar titulaciones por"; #elif L==4 "Trier études par"; #elif L==5 "Ordenar titulaciones por"; // Okoteve traducción #elif L==6 "Ordina laurea per"; #elif L==7 "Sort degrees by"; // Potrzebujesz tlumaczenie #elif L==8 "Classificar titulaçoes por"; #endif const char *Txt_Source_of_information = #if L==0 "Fuente de información"; // Necessita traduccio #elif L==1 "Quelle von Informationen"; #elif L==2 "Source of information"; #elif L==3 "Fuente de información"; #elif L==4 "Source d'information"; #elif L==5 "Fuente de información"; // Okoteve traducción #elif L==6 "Fonte delle informazioni"; #elif L==7 "Source of information"; // Potrzebujesz tlumaczenie #elif L==8 "Fonte de informação"; #endif const char *Txt_Start_date = #if L==0 "Data inicial"; #elif L==1 "Startdatum"; #elif L==2 "Start date"; #elif L==3 "Fecha inicial"; #elif L==4 "Date initiale"; #elif L==5 "Fecha inicial"; // Okoteve traducción #elif L==6 "Data iniziale"; #elif L==7 "Start date"; // Potrzebujesz tlumaczenie #elif L==8 "Data de início"; #endif const char *Txt_STAT_CLICK_STAT_TYPES[Sta_NUM_TYPES_CLICK_STATS] = { #if L==0 "Mostrar clics detallados" // Necessita traduccio #elif L==1 "Zeige detaillierte Klicks" #elif L==2 "Show detailed clicks" #elif L==3 "Mostrar clics detallados" #elif L==4 "Afficher clics détaillées" #elif L==5 "Mostrar clics detallados" // Okoteve traducción #elif L==6 "Visualizza dettagli di scatto" #elif L==7 "Show detailed clicks" // Potrzebujesz tlumaczenie #elif L==8 "Mostrar detalhadamente cliques" #endif , #if L==0 "usuario" // Necessita traduccio #elif L==1 "Benutzer" #elif L==2 "user" #elif L==3 "usuario" #elif L==4 "utilisateur" #elif L==5 "puruhára" #elif L==6 "utente" #elif L==7 "user" // Potrzebujesz tlumaczenie #elif L==8 "utilizador" #endif , #if L==0 "día" // Necessita traduccio #elif L==1 "Tag" #elif L==2 "day" #elif L==3 "día" #elif L==4 "jour" #elif L==5 "día" // Okoteve traducción #elif L==6 "giorno" #elif L==7 "day" // Potrzebujesz tlumaczenie #elif L==8 "dia" #endif , #if L==0 "día y hora" // Necessita traduccio #elif L==1 "Tag und Stunde" #elif L==2 "day and hour" #elif L==3 "día y hora" #elif L==4 "jour et heure" #elif L==5 "día y hora" // Okoteve traducción #elif L==6 "giorno e ora" #elif L==7 "day and hour" // Potrzebujesz tlumaczenie #elif L==8 "dia e hora" #endif , #if L==0 "semana" // Necessita traduccio #elif L==1 "Woche" #elif L==2 "week" #elif L==3 "semana" #elif L==4 "semaine" #elif L==5 "arapokõindy" #elif L==6 "settimana" #elif L==7 "week" // Potrzebujesz tlumaczenie #elif L==8 "semana" #endif , #if L==0 "mes" // Necessita traduccio #elif L==1 "Monat" #elif L==2 "month" #elif L==3 "mes" #elif L==4 "mois" #elif L==5 "jasy" #elif L==6 "mese" #elif L==7 "month" // Potrzebujesz tlumaczenie #elif L==8 "mês" #endif , #if L==0 "hora" // Necessita traduccio #elif L==1 "Stunde" #elif L==2 "hour" #elif L==3 "hora" #elif L==4 "heure" #elif L==5 "aravo" #elif L==6 "ora" #elif L==7 "hour" // Potrzebujesz tlumaczenie #elif L==8 "hora" #endif , #if L==0 "minuto" // Necessita traduccio #elif L==1 "Minute" #elif L==2 "minute" #elif L==3 "minuto" #elif L==4 "minute" #elif L==5 "aravo'i" #elif L==6 "minuto" #elif L==7 "minutę" #elif L==8 "minuto" #endif , #if L==0 "acción" // Necessita traduccio #elif L==1 "Handlung" #elif L==2 "action" #elif L==3 "acción" #elif L==4 "action" #elif L==5 "tembiapo" #elif L==6 "azione" #elif L==7 "action" // Potrzebujesz tlumaczenie #elif L==8 "ação" #endif , #if L==0 "día" // Necessita traduccio #elif L==1 "Tag" #elif L==2 "day" #elif L==3 "día" #elif L==4 "jour" #elif L==5 "día" // Okoteve traducción #elif L==6 "giorno" #elif L==7 "day" // Potrzebujesz tlumaczenie #elif L==8 "dia" #endif , #if L==0 "día y hora" // Necessita traduccio #elif L==1 "Tag und Stunde" #elif L==2 "day and hour" #elif L==3 "día y hora" #elif L==4 "jour et heure" #elif L==5 "día y hora" // Okoteve traducción #elif L==6 "giorno e ora" #elif L==7 "day and hour" // Potrzebujesz tlumaczenie #elif L==8 "dia e hora" #endif , #if L==0 "semana" // Necessita traduccio #elif L==1 "Woche" #elif L==2 "week" #elif L==3 "semana" #elif L==4 "semaine" #elif L==5 "arapokõindy" #elif L==6 "settimana" #elif L==7 "week" // Potrzebujesz tlumaczenie #elif L==8 "semana" #endif , #if L==0 "mes" // Necessita traduccio #elif L==1 "Monat" #elif L==2 "month" #elif L==3 "mes" #elif L==4 "mois" #elif L==5 "jasy" #elif L==6 "mese" #elif L==7 "month" // Potrzebujesz tlumaczenie #elif L==8 "mês" #endif , #if L==0 "hora" // Necessita traduccio #elif L==1 "Stunde" #elif L==2 "hour" #elif L==3 "hora" #elif L==4 "heure" #elif L==5 "aravo" #elif L==6 "ora" #elif L==7 "hour" // Potrzebujesz tlumaczenie #elif L==8 "hora" #endif , #if L==0 "minuto" // Necessita traduccio #elif L==1 "Minute" #elif L==2 "minute" #elif L==3 "minuto" #elif L==4 "minute" #elif L==5 "aravo'i" #elif L==6 "minuto" #elif L==7 "minutę" #elif L==8 "minuto" #endif , #if L==0 "acción" // Necessita traduccio #elif L==1 "Handlung" #elif L==2 "action" #elif L==3 "acción" #elif L==4 "action" #elif L==5 "tembiapo" #elif L==6 "azione" #elif L==7 "action" // Potrzebujesz tlumaczenie #elif L==8 "ação" #endif , #if L==0 "complement" #elif L==1 "Plugin" #elif L==2 "plugin" #elif L==3 "complemento" #elif L==4 "plugin" #elif L==5 "complemento" // Okoteve traducción #elif L==6 "plugin" #elif L==7 "wtyczka" #elif L==8 "plugin" #endif , #if L==0 "funció" #elif L==1 "Funktion" #elif L==2 "function" #elif L==3 "función" #elif L==4 "fonction" #elif L==5 "función" // Okoteve traducción #elif L==6 "funzione" #elif L==7 "funkcja" #elif L==8 "função" #endif , #if L==0 "banner" #elif L==1 "Werbebanner" #elif L==2 "banner" #elif L==3 "banner" #elif L==4 "banniére" #elif L==5 "banner" // Okoteve traducción #elif L==6 "banner" #elif L==7 "banner" #elif L==8 "banner" #endif , #if L==0 "titulación" // Necessita traduccio #elif L==1 "Studiengang" #elif L==2 "degree" #elif L==3 "titulación" #elif L==4 "étude" #elif L==5 "arandurã" #elif L==6 "laurea" #elif L==7 "degree" // Potrzebujesz tlumaczenie #elif L==8 "titulação" #endif , #if L==0 "assignatura" #elif L==1 "Veranstaltung" #elif L==2 "course" #elif L==3 "asignatura" #elif L==4 "matière" #elif L==5 "mbo'esyry" #elif L==6 "corso" #elif L==7 "kurs" #elif L==8 "disciplina" #endif }; const char *Txt_STAT_COLOR_TYPES[Sta_NUM_COLOR_TYPES] = { #if L==0 "color" // Necessita traduccio #elif L==1 "Farbe" #elif L==2 "color" #elif L==3 "color" #elif L==4 "couleur" #elif L==5 "color" // Okoteve traducción #elif L==6 "colore" #elif L==7 "color" // Potrzebujesz tlumaczenie #elif L==8 "cor" #endif , #if L==0 "de negro a blanco" // Necessita traduccio #elif L==1 "schwarz zu weiß" #elif L==2 "black to white" #elif L==3 "de negro a blanco" #elif L==4 "du noir au blanc" #elif L==5 "de negro a blanco" // Okoteve traducción #elif L==6 "dal nero al bianco" #elif L==7 "black to white" // Potrzebujesz tlumaczenie #elif L==8 "do preto ao branco" #endif , #if L==0 "de blanco a negro" // Necessita traduccio #elif L==1 "weiß zu schwarz" #elif L==2 "white to black" #elif L==3 "de blanco a negro" #elif L==4 "du blanc au noir" #elif L==5 "de blanco a negro" // Okoteve traducción #elif L==6 "dal bianco al nero" #elif L==7 "white to black" // Potrzebujesz tlumaczenie #elif L==8 "do branco ao preto" #endif }; const char *Txt_STAT_COURSE_FILE_ZONES[Sta_NUM_STAT_CRS_FILE_ZONES] = // Use   instead of space { #if L==0 // Brw_FILE_BRW_ADMIN_DOCUMENTS_CRS "Documents (ass.)" #elif L==1 "Dokumente (Ver.)" #elif L==2 "Documents (crs.)" #elif L==3 "Documentos (asg.)" #elif L==4 "Documents (mat.)" #elif L==5 "Documentos (asg.)" // Okoteve traducción #elif L==6 "Documenti (crs.)" #elif L==7 "Documents (crs.)" // Potrzebujesz tlumaczenie #elif L==8 "Documentos (crs.)" #endif , #if L==0 // Brw_FILE_BRW_ADMIN_DOCUMENTS_GRP "Documentos (grp.)" // Necessita traduccio #elif L==1 "Dokumente (Grp.)" #elif L==2 "Documents (grp.)" #elif L==3 "Documentos (grp.)" #elif L==4 "Documents (grp.)" #elif L==5 "Documentos (grp.)" // Okoteve traducción #elif L==6 "Documenti (grp.)" #elif L==7 "Documents (grp.)" // Potrzebujesz tlumaczenie #elif L==8 "Documentos (grp.)" #endif , #if L==0 // Brw_FILE_BRW_COMMON_CRS "Compartits (asg.)" #elif L==1 "Freigegebene (Ver.)" #elif L==2 "Shared (crs.)" #elif L==3 "Compartidos (asg.)" #elif L==4 "Partagés (mat.)" #elif L==5 "Compartidos (asg.)" // Okoteve traducción #elif L==6 "Condivisi (crs.)" #elif L==7 "Shared (crs.)" // Potrzebujesz tlumaczenie #elif L==8 "Compartilhados (crs.)" #endif , #if L==0 // Brw_FILE_BRW_COMMON_GRP "Compartits (grp.)" #elif L==1 "Freigegebene (Grp.)" #elif L==2 "Shared (grp.)" #elif L==3 "Compartidos (grp.)" #elif L==4 "Partagés (grp.)" #elif L==5 "Compartidos (grp.)" // Okoteve traducción #elif L==6 "Condivisi (grp.)" #elif L==7 "Shared (grp.)" // Potrzebujesz tlumaczenie #elif L==8 "Compartilhados (grp.)" #endif , #if L==0 // Brw_FILE_BRW_ADMIN_MARKS_CRS "Qualific. (ass.)" #elif L==1 "Bewertungen (Ver.)" #elif L==2 "Marks (crs.)" #elif L==3 "Calific. (asg.)" #elif L==4 "Notes (mat.)" #elif L==5 "Calific. (asg.)" // Okoteve traducción #elif L==6 "Risultati (crs.)" #elif L==7 "Marks (crs.)" // Potrzebujesz tlumaczenie #elif L==8 "Notas (crs.)" #endif , #if L==0 // Brw_FILE_BRW_ADMIN_MARKS_GRP "Calific. (grp.)" // Necessita traduccio #elif L==1 "Bewertungen (Grp.)" #elif L==2 "Marks (grp.)" #elif L==3 "Calific. (grp.)" #elif L==4 "Notes (grp.)" #elif L==5 "Calific. (grp.)" // Okoteve traducción #elif L==6 "Risultati (grp.)" #elif L==7 "Marks (grp.)" // Potrzebujesz tlumaczenie #elif L==8 "Notas (grp.)" #endif , #if L==0 // Brw_FILE_BRW_ASSIGNMENTS_USR "Activitats" #elif L==1 "Aufgaben" #elif L==2 "Assignments" #elif L==3 "Actividades" #elif L==4 "Activités" #elif L==5 "Taréa" #elif L==6 "Attività" #elif L==7 "Assignments" // Potrzebujesz tlumaczenie #elif L==8 "Atividades" #endif , #if L==0 // Brw_FILE_BRW_WORKS_USR "Treballs" #elif L==1 "Hausarbeiten" #elif L==2 "Homework" #elif L==3 "Trabajos" #elif L==4 "Travails" #elif L==5 "Tembiapo" #elif L==6 "Lavori" #elif L==7 "Homework" // Potrzebujesz tlumaczenie #elif L==8 "Trabalhos" #endif , #if L==0 // Brw_FILE_BRW_UNKNOWN "Total" // Necessita traduccio #elif L==1 "Gesamtzahl" #elif L==2 "Total" #elif L==3 "Total" #elif L==4 "Total" #elif L==5 "Total" // Okoteve traducción #elif L==6 "Totale" #elif L==7 "Total" // Potrzebujesz tlumaczenie #elif L==8 "Total" #endif }; const char *Txt_STAT_DEGREE_PHOTO_SIZE[Pho_NUM_HOW_COMPUTE_PHOTO_SIZES] = { #if L==0 "proporcional al nº de estudiantes" // Necessita traduccio #elif L==1 "proportional to the number of students" // Need Übersetzung #elif L==2 "proportional to the number of students" #elif L==3 "proporcional al nº de estudiantes" #elif L==4 "proportional to the number of students" // Besoin de traduction #elif L==5 "proporcional al nº de estudiantes" // Okoteve traducción #elif L==6 "proporzionale al numero di studenti" #elif L==7 "proportional to the number of students" // Potrzebujesz tlumaczenie #elif L==8 "proportional to the number of students" // Necessita de tradução #endif , #if L==0 "proporcional al nº de estudiantes con fotografía" // Necessita traduccio #elif L==1 "proportional to the number of students with photo" // Need Übersetzung #elif L==2 "proportional to the number of students with photo" #elif L==3 "proporcional al nº de estudiantes con fotografía" #elif L==4 "proportional to the number of students with photo" // Besoin de traduction #elif L==5 "proporcional al nº de estudiantes con fotografía" // Okoteve traducción #elif L==6 "proporzionale al numero di studenti con foto" #elif L==7 "proportional to the number of students with photo" // Potrzebujesz tlumaczenie #elif L==8 "proportional to the number of students with photo" // Necessita de tradução #endif , #if L==0 "proporcional al porcentaje de estudiantes con fotografía" // Necessita traduccio #elif L==1 "proportional to the percentage of students with photo" // Need Übersetzung #elif L==2 "proportional to the percentage of students with photo" #elif L==3 "proporcional al porcentaje de estudiantes con fotografía" #elif L==4 "proportional to the percentage of students with photo" // Besoin de traduction #elif L==5 "proporcional al porcentaje de estudiantes con fotografía" // Okoteve traducción #elif L==6 "proporzionale alla percentuale di studenti con foto" #elif L==7 "proportional to the percentage of students with photo" // Potrzebujesz tlumaczenie #elif L==8 "proportional to the percentage of students with photo" // Necessita de tradução #endif , #if L==0 "igual para todas las titulaciones" // Necessita traduccio #elif L==1 "same for all degrees" // Need Übersetzung #elif L==2 "same for all degrees" #elif L==3 "igual para todas las titulaciones" #elif L==4 "same for all degrees" // Besoin de traduction #elif L==5 "igual para todas las titulaciones" // Okoteve traducción #elif L==6 "uguale per tutte le lauree" #elif L==7 "same for all degrees" // Potrzebujesz tlumaczenie #elif L==8 "same for all degrees" // Necessita de tradução #endif }; const char *Txt_STAT_DEGREE_PHOTO_ORDER[Pho_NUM_HOW_ORDER_DEGREES] = { #if L==0 "nombre d'estudiants" #elif L==1 "number of students" // Need Übersetzung #elif L==2 "number of students" #elif L==3 "nº de estudiantes" #elif L==4 "number of students" // Besoin de traduction #elif L==5 "nº de estudiantes" // Okoteve traducción #elif L==6 "numero di studenti" #elif L==7 "number of students" // Potrzebujesz tlumaczenie #elif L==8 "number of students" // Necessita de tradução #endif , #if L==0 "nº de estudiantes con fotografía" // Necessita traduccio #elif L==1 "number of students with photo" // Need Übersetzung #elif L==2 "number of students with photo" #elif L==3 "nº de estudiantes con fotografía" #elif L==4 "number of students with photo" // Besoin de traduction #elif L==5 "nº de estudiantes con fotografía" // Okoteve traducción #elif L==6 "numero di studenti con foto" #elif L==7 "number of students with photo" // Potrzebujesz tlumaczenie #elif L==8 "number of students with photo" // Necessita de tradução #endif , #if L==0 "porcentaje de estudiantes con fotografía" // Necessita traduccio #elif L==1 "percentage of students with photo" // Need Übersetzung #elif L==2 "percentage of students with photo" #elif L==3 "porcentaje de estudiantes con fotografía" #elif L==4 "percentage of students with photo" // Besoin de traduction #elif L==5 "porcentaje de estudiantes con fotografía" // Okoteve traducción #elif L==6 "percentuale di studenti con foto" #elif L==7 "percentage of students with photo" // Potrzebujesz tlumaczenie #elif L==8 "percentage of students with photo" // Necessita de tradução #endif , #if L==0 "nombre de titulación" // Necessita traduccio #elif L==1 "degree name" // Need Übersetzung #elif L==2 "degree name" #elif L==3 "nombre de titulación" #elif L==4 "degree name" // Besoin de traduction #elif L==5 "nombre de titulación" // Okoteve traducción #elif L==6 "nome laurea" #elif L==7 "degree name" // Potrzebujesz tlumaczenie #elif L==8 "degree name" // Necessita de tradução #endif }; const char *Txt_STAT_TYPE_COUNT_CAPS[Sta_NUM_STAT_COUNT_TYPES] = { #if L==0 "Nº total de clics" // Necessita traduccio #elif L==1 "Gesamtzahl der Klicks" #elif L==2 "Total number of clicks" #elif L==3 "Nº total de clics" #elif L==4 "Nombre total de clics" #elif L==5 "Nº total de clics" // Okoteve traducción #elif L==6 "Numero totale di scatti" #elif L==7 "Total number of clicks" // Potrzebujesz tlumaczenie #elif L==8 "Número total de cliques" #endif , #if L==0 "Nº de usuarios distintos" // Necessita traduccio #elif L==1 "Anzahl der unterschiedlichen Benutzer" #elif L==2 "Number of distinct users" #elif L==3 "Nº de usuarios distintos" #elif L==4 "Nombre des différents utilisateurs" #elif L==5 "Nº de usuarios distintos" // Okoteve traducción #elif L==6 "Numero di utenti distinti" #elif L==7 "Number of distinct users" // Potrzebujesz tlumaczenie #elif L==8 "Número de utilizadores diferentes" #endif , #if L==0 "Nº de clics por usuario" // Necessita traduccio #elif L==1 "Anzahl der Klicks pro Benutzer" #elif L==2 "Number of clicks per user" #elif L==3 "Nº de clics por usuario" #elif L==4 "Nombre de clics par utilisateur" #elif L==5 "Nº de clics por usuario" // Okoteve traducción #elif L==6 "Numero di scatti per utente" #elif L==7 "Number of clicks per user" // Potrzebujesz tlumaczenie #elif L==8 "número de cliques por utilizador" #endif , #if L==0 "Tiempo de generación de página" // Necessita traduccio #elif L==1 "Zeit zur Erzeugung der Seite" #elif L==2 "Time to generate page" #elif L==3 "Tiempo de generación de página" #elif L==4 "Temps pour générer la page" #elif L==5 "Tiempo de generación de página" // Okoteve traducción #elif L==6 "Tempo per generare pagina" #elif L==7 "Time to generate page" // Potrzebujesz tlumaczenie #elif L==8 "Tempo para gerar página" #endif , #if L==0 "Tiempo de envío de página" // Necessita traduccio #elif L==1 "Zeit, um die Seite zu senden" #elif L==2 "Time to send page" #elif L==3 "Tiempo de envío de página" #elif L==4 "Temps pour envoyer la page" #elif L==5 "Tiempo de envío de página" // Okoteve traducción #elif L==6 "Tempo d'invio della pagina" #elif L==7 "Time to send page" // Potrzebujesz tlumaczenie #elif L==8 "Tempo para enviar a página" #endif }; const char *Txt_STAT_TYPE_COUNT_SMALL[Sta_NUM_STAT_COUNT_TYPES] = { #if L==0 "nº total de clics" // Necessita traduccio #elif L==1 "Gesamtzahl der Klicks" #elif L==2 "total number of clicks" #elif L==3 "nº total de clics" #elif L==4 "nombre total de clics" #elif L==5 "nº total de clics" // Okoteve traducción #elif L==6 "numero totale di scatti" #elif L==7 "total number of clicks" // Potrzebujesz tlumaczenie #elif L==8 "número total de cliques" #endif , #if L==0 "nº de usuarios distintos" // Necessita traduccio #elif L==1 "Anzahl der unterschiedliche Benutzer" #elif L==2 "number of distinct users" #elif L==3 "nº de usuarios distintos" #elif L==4 "nombre des différents utilisateurs" #elif L==5 "nº de usuarios distintos" // Okoteve traducción #elif L==6 "numero di utenti distinti" #elif L==7 "number of distinct users" // Potrzebujesz tlumaczenie #elif L==8 "número de utilizadores diferentes" #endif , #if L==0 "nº de clics por usuario" // Necessita traduccio #elif L==1 "Anzahl der Klicks pro Benutzer" #elif L==2 "number of clicks per user" #elif L==3 "nº de clics por usuario" #elif L==4 "nombre de clics par utilisateur" #elif L==5 "nº de clics por usuario" // Okoteve traducción #elif L==6 "numero di scatti per utente" #elif L==7 "number of clicks per user" // Potrzebujesz tlumaczenie #elif L==8 "número de cliques por utilizador" #endif , #if L==0 "tiempo de generación de página" // Necessita traduccio #elif L==1 "Zeit zur Erzeugung der Seite" #elif L==2 "time to generate page" #elif L==3 "tiempo de generación de página" #elif L==4 "temps pour générer la page" #elif L==5 "tiempo de generación de página" // Okoteve traducción #elif L==6 "tempo per generare pagina" #elif L==7 "time to generate page" // Potrzebujesz tlumaczenie #elif L==8 "tempo para gerar página" #endif , #if L==0 "tiempo de envío de página" // Necessita traduccio #elif L==1 "Zeit, um Seite zu senden" #elif L==2 "time to send page" #elif L==3 "tiempo de envío de página" #elif L==4 "temps pour envoyer la page" #elif L==5 "tiempo de envío de página" // Okoteve traducción #elif L==6 "tempo d'invio di una pagina" #elif L==7 "time to send page" // Potrzebujesz tlumaczenie #elif L==8 "Tempo para enviar a página" #endif }; const char *Txt_STAT_USE_STAT_TYPES[Sta_NUM_TYPES_USE_STATS] = { #if L==0 "titulaciones y asignaturas" // Necessita traducció #elif L==1 "Studiengänge und Veranstaltungen" #elif L==2 "degrees and courses" #elif L==3 "titulaciones y asignaturas" #elif L==4 "études et matières" #elif L==5 "titulaciones y asignaturas" // Okoteve traducción #elif L==6 "lauree e corsi" #elif L==7 "degrees and courses" // Potrzebujesz tlumaczenie #elif L==8 "titulaçoes e disciplinas" #endif , #if L==0 "usuaris" #elif L==1 "Benutzer" #elif L==2 "users" #elif L==3 "usuarios" #elif L==4 "utilisateurs" #elif L==5 "puruhára" #elif L==6 "utenti" #elif L==7 "użytkownicy" #elif L==8 "utilizadores" #endif , #if L==0 "webs / xarxes socials" #elif L==1 "Webs / Social Networks" #elif L==2 "webs / social networks" #elif L==3 "webs / redes sociales" #elif L==4 "webs / réseaux sociaux" #elif L==5 "webs / redes sociales" // Okoteve traducción #elif L==6 "webs / reti sociali" #elif L==7 "webs / sieci społeczne" #elif L==8 "webs / redes sociais" #endif , #if L==0 "carpetes i fitxers" #elif L==1 "Verzeichnisse und Dateien" #elif L==2 "folders and files" #elif L==3 "carpetas y archivos" #elif L==4 "répertoires et fichiers" #elif L==5 "carpetas y archivos" // Okoteve traducción #elif L==6 "cartelle e file" #elif L==7 "folders and files" // Potrzebujesz tlumaczenie #elif L==8 "diretórios e arquivos" #endif , #if L==0 "recursos educatius oberts (OER)" #elif L==1 "Open Educational Resources (OER)" #elif L==2 "open educational resources (OER)" #elif L==3 "recursos educativos abiertos (OER)" #elif L==4 "Ressources Éducatives Libres (REL)" #elif L==5 "recursos educativos abiertos (OER)" // Okoteve traducción #elif L==6 "risorse didattiche aperte (OER)" #elif L==7 "Otwarte Zasoby Edukacyjne (OER)" #elif L==8 "recursos educacionais abertos (OER)" #endif , #if L==0 "activitats" #elif L==1 "Aufgaben" #elif L==2 "assignments" #elif L==3 "actividades" #elif L==4 "activités" #elif L==5 "taréa" #elif L==6 "attività" #elif L==7 "assignments" // Potrzebujesz tlumaczenie #elif L==8 "atividades" #endif , #if L==0 "tests" #elif L==1 "Tests" #elif L==2 "tests" #elif L==3 "tests" #elif L==4 "tests" #elif L==5 "tests" // Okoteve traducción #elif L==6 "test" #elif L==7 "tests" // Potrzebujesz tlumaczenie #elif L==8 "testes" #endif , #if L==0 "notificacions" #elif L==1 "Anmeldungen" #elif L==2 "notifications" #elif L==3 "notificaciones" #elif L==4 "notifications" #elif L==5 "momarandu" #elif L==6 "notifiche" #elif L==7 "powiadomienia" #elif L==8 "notificações" #endif , #if L==0 "avisos" #elif L==1 "Ankündigungen" #elif L==2 "notices" #elif L==3 "avisos" #elif L==4 "avis" #elif L==5 "marandu" #elif L==6 "avvisi" #elif L==7 "notices" // Potrzebujesz tlumaczenie #elif L==8 "avisos" #endif , #if L==0 "missatges" #elif L==1 "Nachrichten" #elif L==2 "messages" #elif L==3 "mensajes" #elif L==4 "messages" #elif L==5 "marandu" #elif L==6 "messaggi" #elif L==7 "wiadomości" #elif L==8 "mensagens" #endif , #if L==0 "fòrums" #elif L==1 "Foren" #elif L==2 "forums" #elif L==3 "foros" #elif L==4 "forums" #elif L==5 "foros" // Okoteve traducción #elif L==6 "forum" #elif L==7 "forums" // Potrzebujesz tlumaczenie #elif L==8 "fóruns" #endif , #if L==0 "enquestes" #elif L==1 "Umfragen" #elif L==2 "surveys" #elif L==3 "encuestas" #elif L==4 "sondages" #elif L==5 "encuestas" // Okoteve traducción #elif L==6 "sondaggi" #elif L==7 "badania" #elif L==8 "inquéritos" #endif , #if L==0 "idioma" #elif L==1 "Sprache" #elif L==2 "language" #elif L==3 "idioma" #elif L==4 "langue" #elif L==5 "ñe'&etilde;" #elif L==6 "lingua" #elif L==7 "language" // Potrzebujesz tlumaczenie #elif L==8 "lingua" #endif , #if L==0 "disseny" #elif L==1 "layout" #elif L==2 "layout" #elif L==3 "diseño" #elif L==4 "disposition" #elif L==5 "ta'ãngahai" #elif L==6 "layout" #elif L==7 "układ" #elif L==8 "layout" #endif , #if L==0 "tema (colors)" #elif L==1 "Skin" #elif L==2 "theme" #elif L==3 "tema (colores)" #elif L==4 "thème" #elif L==5 "tema (colores)" // Okoteve traducción #elif L==6 "tema" #elif L==7 "temat" #elif L==8 "skin" #endif , #if L==0 "columnes" #elif L==1 "Spalten" #elif L==2 "columns" #elif L==3 "columnas" #elif L==4 "colonnes" #elif L==5 "columnas" // Okoteve traducción #elif L==6 "colonne" #elif L==7 "kolumny" #elif L==8 "colunas" #endif , #if L==0 "icones" #elif L==1 "Symbole" #elif L==2 "icons" #elif L==3 "iconos" #elif L==4 "icônes" #elif L==5 "iconos" // Okoteve traducción #elif L==6 "icone" #elif L==7 "ikony" #elif L==8 "ícones" #endif }; const char *Txt_Statistics_of_all_visits = #if L==0 "Estadística de todos los accesos"; // Necessita traduccio #elif L==1 "Statistics of all visits"; // Need Übersetzung #elif L==2 "Statistics of all visits"; #elif L==3 "Estadística de todos los accesos"; #elif L==4 "Statistics of all visits"; // Besoin de traduction #elif L==5 "Estadística de todos los accesos"; // Okoteve traducción #elif L==6 "Statistiche di tutte gli accessi"; #elif L==7 "Statistics of all visits"; // Potrzebujesz tlumaczenie #elif L==8 "Statistics of all visits"; // Necessita de tradução #endif const char *Txt_Statistics_of_visits_to_the_centre_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Estadística de accesos al centro %s"; // Necessita traduccio #elif L==1 "Statistics of visits to the centre %s"; // Need Übersetzung #elif L==2 "Statistics of visits to the centre %s"; #elif L==3 "Estadística de accesos al centro %s"; #elif L==4 "Statistics of visits to the centre %s"; // Besoin de traduction #elif L==5 "Estadística de accesos al centro %s"; // Okoteve traducción #elif L==6 "Statistiche degli accessi al centro %s"; #elif L==7 "Statistics of visits to the centre %s"; // Potrzebujesz tlumaczenie #elif L==8 "Statistics of visits to the centre %s"; // Necessita de tradução #endif const char *Txt_Statistics_of_visits_to_the_course_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Estadística d'accessos a l'assignatura %s"; #elif L==1 "Statistics of visits to the course %s"; // Need Übersetzung #elif L==2 "Statistics of visits to the course %s"; #elif L==3 "Estadística de accesos a la asignatura %s"; #elif L==4 "Statistics of visits to the course %s"; // Besoin de traduction #elif L==5 "Estadística de accesos a la asignatura %s"; // Okoteve traducción #elif L==6 "Statistiche degli accessi al corso %s"; #elif L==7 "Statistics of visits to the course %s"; // Potrzebujesz tlumaczenie #elif L==8 "Statistics of visits to the course %s"; // Necessita de tradução #endif const char *Txt_Statistics_of_visits_to_the_degree_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Estadística de accesos a la titulación %s"; // Necessita traduccio #elif L==1 "Statistics of visits to the degree %s"; // Need Übersetzung #elif L==2 "Statistics of visits to the degree %s"; #elif L==3 "Estadística de accesos a la titulación %s"; #elif L==4 "Statistics of visits to the degree %s"; // Besoin de traduction #elif L==5 "Estadística de accesos a la titulación %s"; // Okoteve traducción #elif L==6 "Statistiche degli accessi alla laurea %s"; #elif L==7 "Statistics of visits to the degree %s"; // Potrzebujesz tlumaczenie #elif L==8 "Statistics of visits to the degree %s"; // Necessita de tradução #endif const char *Txt_Statistics_of_visits_to_the_institution_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Estadística de accesos a la institución %s"; // Necessita traduccio #elif L==1 "Statistics of visits to the institution %s"; // Need Übersetzung #elif L==2 "Statistics of visits to the institution %s"; #elif L==3 "Estadística de accesos a la institución %s"; #elif L==4 "Statistics of visits to the institution %s"; // Besoin de traduction #elif L==5 "Estadística de accesos a la institución %s"; // Okoteve traducción #elif L==6 "Statistiche degli accessi alla istituzione %s"; #elif L==7 "Statistics of visits to the institution %s"; // Potrzebujesz tlumaczenie #elif L==8 "Statistics of visits to the institution %s"; // Necessita de tradução #endif const char *Txt_Status = #if L==0 "Estado"; // Necessita traduccio #elif L==1 "Status"; #elif L==2 "Status"; #elif L==3 "Estado"; #elif L==4 "Statut"; #elif L==5 "Oĩ háicha"; #elif L==6 "Stato"; #elif L==7 "Status"; // Potrzebujesz tlumaczenie #elif L==8 "Status"; #endif const char *Txt_Stem = // Stem of a test question #if L==0 "Enunciat"; #elif L==1 "Stamm"; #elif L==2 "Stem"; #elif L==3 "Enunciado"; #elif L==4 "Question"; #elif L==5 "Enunciado"; // Okoteve traducción #elif L==6 "Domanda"; #elif L==7 "Stem"; // Potrzebujesz tlumaczenie #elif L==8 "Questão"; #endif const char *Txt_Step_1_Provide_a_list_of_users = #if L==0 "Paso 1: Proporcione una lista de usuarios"; // Necessita traduccio #elif L==1 "Step 1: Provide a list of users"; // Need Übersetzung #elif L==2 "Step 1: Provide a list of users"; #elif L==3 "Paso 1: Proporcione una lista de usuarios"; #elif L==4 "Step 1: Provide a list of users"; // Besoin de traduction #elif L==5 "Paso 1: Proporcione una lista de usuarios"; // Okoteve traducción #elif L==6 "Passo 1: Fornisci una lista di utenti"; #elif L==7 "Step 1: Provide a list of users"; // Potrzebujesz tlumaczenie #elif L==8 "Step 1: Provide a list of users"; // Necessita de tradução #endif const char *Txt_Step_2_Select_the_type_of_user_to_register_remove = #if L==0 "Paso 2: Seleccione el tipo de usuario a inscribir / eliminar"; // Necessita traduccio #elif L==1 "Step 2: Select the type of user to register / remove"; // Need Übersetzung #elif L==2 "Step 2: Select the type of user to register / remove"; #elif L==3 "Paso 2: Seleccione el tipo de usuario a inscribir / eliminar"; #elif L==4 "Step 2: Select the type of user to register / remove"; // Besoin de traduction #elif L==5 "Paso 2: Seleccione el tipo de usuario a inscribir / eliminar"; // Okoteve traducción #elif L==6 "Passo 2: Seleziona il tipo di utente da registrare / rimuovere"; #elif L==7 "Step 2: Select the type of user to register / remove"; // Potrzebujesz tlumaczenie #elif L==8 "Step 2: Select the type of user to register / remove"; // Necessita de tradução #endif const char *Txt_Step_3_Select_the_desired_action = #if L==0 "Paso 3: Seleccione la acción que desea realizar"; // Necessita traduccio #elif L==1 "Step 3: Select the desired action"; // Need Übersetzung #elif L==2 "Step 3: Select the desired action"; #elif L==3 "Paso 3: Seleccione la acción que desea realizar"; #elif L==4 "Step 3: Select the desired action"; // Besoin de traduction #elif L==5 "Paso 3: Seleccione la acción que desea realizar"; // Okoteve traducción #elif L==6 "Passo 3: Seleziona l'azione desiderata"; #elif L==7 "Step 3: Select the desired action"; // Potrzebujesz tlumaczenie #elif L==8 "Step 3: Select the desired action"; // Necessita de tradução #endif const char *Txt_Step_4_Optionally_select_groups = #if L==0 "Paso 4: Opcionalmente, seleccione grupos"; // Necessita traduccio #elif L==1 "Step 4: Optionally, select groups"; // Need Übersetzung #elif L==2 "Step 4: Optionally, select groups"; #elif L==3 "Paso 4: Opcionalmente, seleccione grupos"; #elif L==4 "Step 4: Optionally, select groups"; // Besoin de traduction #elif L==5 "Paso 4: Opcionalmente, seleccione grupos"; // Okoteve traducción #elif L==6 "Passo 4: A scelta, seleziona i gruppi"; #elif L==7 "Step 4: Optionally, select groups"; // Potrzebujesz tlumaczenie #elif L==8 "Step 4: Optionally, select groups"; // Necessita de tradução #endif const char *Txt_Step_5_Confirm_the_enrollment_removing = #if L==0 "Paso 5: Confirme la inscripción / eliminación"; // Necessita traduccio #elif L==1 "Step 5: Confirm the enrollment / removing"; // Need Übersetzung #elif L==2 "Step 5: Confirm the enrollment / removing"; #elif L==3 "Paso 5: Confirme la inscripción / eliminación"; #elif L==4 "Step 5: Confirm the enrollment / removing"; // Besoin de traduction #elif L==5 "Paso 5: Confirme la inscripción / eliminación"; // Okoteve traducción #elif L==6 "Passo 5: Conferma la registrazione / rimozione"; #elif L==7 "Step 5: Confirm the enrollment / removing"; // Potrzebujesz tlumaczenie #elif L==8 "Step 5: Confirm the enrollment / removing"; // Necessita de tradução #endif const char *Txt_Students_ABBREVIATION = // Abbreviation of "Students" #if L==0 "Estud."; #elif L==1 "Stud."; #elif L==2 "Stud."; #elif L==3 "Estud."; #elif L==4 "Étud."; #elif L==5 "Temi."; #elif L==6 "Stud."; #elif L==7 "Stud."; // Potrzebujesz tlumaczenie #elif L==8 "Estu."; #endif const char *Txt_students_ABBREVIATION = // Abbreviation of "students" #if L==0 "estud."; #elif L==1 "Stud."; #elif L==2 "stud."; #elif L==3 "estud."; #elif L==4 "étud."; #elif L==5 "Temi."; #elif L==6 "stud."; #elif L==7 "stud."; // Potrzebujesz tlumaczenie #elif L==8 "estu."; #endif const char *Txt_Students_authentication = #if L==0 "Autenticació
d'estudiants"; #elif L==1 "Studenten-
Authentifizierung"; #elif L==2 "Students'
authentication"; #elif L==3 "Autenticación
de estudiantes"; #elif L==4 "Authentification des étudiants"; #elif L==5 "Autenticación
de estudiantes"; // Okoteve traducción #elif L==6 "Autenticazione degli studenti"; #elif L==7 "Uwierzytelnianie studentów"; #elif L==8 "Autenticação de estudantes"; #endif const char *Txt_STUDENTS_may_enter_directly = #if L==0 "poden entrar directament"; #elif L==1 "können direkt eingeben"; #elif L==2 "may enter directly"; #elif L==3 "pueden entrar directamente"; #elif L==4 "peuvent entrer directement"; #elif L==5 "pueden entrar directamente"; // Okoteve traducción #elif L==6 "possono entrare direttamente"; #elif L==7 "moga wejść bezpośrednio"; #elif L==8 "podem entrar diretamente"; #endif const char *Txt_STUDENTS_must_enter_through_X = // Warning: it is very important to include %s in the following sentences #if L==0 "han d'entrar per %s"; #elif L==1 "müssen durch %s eingeben"; #elif L==2 "must enter through %s"; #elif L==3 "deben entrar por %s"; #elif L==4 "doivent entrer par %s"; #elif L==5 "deben entrar por %s"; // Okoteve traducción #elif L==6 "devono entrare attraverso %s"; #elif L==7 "muszą wejść przez %s"; #elif L==8 "devem entrar através %s"; #endif const char *Txt_Student_record_card_in_this_course_has_been_updated = #if L==0 "La ficha del estudiante en la asignatura se ha actualizado."; // Necessita traduccio #elif L==1 "Student record card in this course has been updated."; // Need Übersetzung #elif L==2 "Student record card in this course has been updated."; #elif L==3 "La ficha del estudiante en la asignatura se ha actualizado."; #elif L==4 "Student record card in this course has been updated."; // Besoin de traduction #elif L==5 "La ficha del estudiante en la asignatura se ha actualizado."; // Okoteve traducción #elif L==6 "La scheda dello/a studente/ssa in questo corso è stata aggiornata."; #elif L==7 "Student record card in this course has been updated."; // Potrzebujesz tlumaczenie #elif L==8 "Student record card in this course has been updated."; // Necessita de tradução #endif const char *Txt_Students_are_no_longer_obliged_to_read_this_information = #if L==0 "Los estudiantes ya no están obligados a leer esta información."; // Necessita traduccio #elif L==1 "Students are no longer obliged to read this information."; // Need Übersetzung #elif L==2 "Students are no longer obliged to read this information."; #elif L==3 "Los estudiantes ya no están obligados a leer esta información."; #elif L==4 "Students are no longer obliged to read this information."; // Besoin de traduction #elif L==5 "Los estudiantes ya no están obligados a leer esta información."; // Okoteve traducción #elif L==6 "Gli studenti non sono obbligati a leggere questa informazione."; #elif L==7 "Students are no longer obliged to read this information."; // Potrzebujesz tlumaczenie #elif L==8 "Students are no longer obliged to read this information."; // Necessita de tradução #endif const char *Txt_Students_now_are_required_to_read_this_information = #if L==0 "Los estudiantes ahora están obligados a leer esta información."; // Necessita traduccio #elif L==1 "Students now are required to read this information."; // Need Übersetzung #elif L==2 "Students now are required to read this information."; #elif L==3 "Los estudiantes ahora están obligados a leer esta información."; #elif L==4 "Students now are required to read this information."; // Besoin de traduction #elif L==5 "Los estudiantes ahora están obligados a leer esta información."; // Okoteve traducción #elif L==6 "Gli studenti ora sono obbligati a leggere questa informazione."; #elif L==7 "Students now are required to read this information."; // Potrzebujesz tlumaczenie #elif L==8 "Students now are required to read this information."; // Necessita de tradução #endif const char *Txt_X_students_who_have_e_mail = // Warning: it is very important to include %u and %f in the following sentences #if L==0 "%u estudiantes con correo electrónico (%.1f%% de %u estudiantes)"; // Necessita traduccio #elif L==1 "%u Studenten mit E-Mail (%.1f%% von %u Studenten)"; #elif L==2 "%u students who have e-mail (%.1f%% of %u students)"; #elif L==3 "%u estudiantes con correo electrónico (%.1f%% de %u estudiantes)"; #elif L==4 "%u étudiants qui ont l'e-mail (%.1f%% de %u étudiants)"; #elif L==5 "%u estudiantes con correo electrónico (%.1f%% de %u estudiantes)"; // Okoteve traducción #elif L==6 "%u studenti che hanno e-mail (%.1f%% di %u studenti)"; #elif L==7 "%u students who have e-mail (%.1f%% of %u students)"; // Potrzebujesz tlumaczenie #elif L==8 "%u estudantes que têm e-mail (%.1f%% dos %u estudantes)"; #endif const char *Txt_Students_who_have_accepted_and_who_have_e_mail = #if L==0 "Estudiantes que han aceptado la inscripción" " y que tienen correo electrónico"; // Necessita traduccio #elif L==1 "Studenten die akzeptiert wurden" " und die E-Mail"; #elif L==2 "Students who have accepted" " and who have e-mail"; #elif L==3 "Estudiantes que han aceptado la inscripción" " y que tienen correo electrónico"; #elif L==4 "Étudiants qui ont accepté" " et qui ont l'e-mail"; #elif L==5 "Estudiantes que han aceptado la inscripción" " y que tienen correo electrónico"; // Okoteve traducción #elif L==6 "Studenti che hanno aderito" " e che hanno e-mail"; #elif L==7 "Students who have accepted" " and who have e-mail"; // Potrzebujesz tlumaczenie #elif L==8 "Estudantes que aceitaram" " e que têm e-mail"; #endif const char *Txt_X_students_who_have_accepted_and_who_have_e_mail = // Warning: it is very important to include %u and %f in the following sentences #if L==0 "%u estudiantes que han aceptado la inscripción" " y que tienen correo electrónico (%.1f%% de %u estudiantes)"; // Necessita traduccio #elif L==1 "%u Studenten die akzeptiert wurden" " und die E-Mail (%.1f%% von %u Studenten)"; #elif L==2 "%u students who have accepted" " and who have e-mail (%.1f%% of %u students)"; #elif L==3 "%u estudiantes que han aceptado la inscripción" " y que tienen correo electrónico (%.1f%% de %u estudiantes)"; #elif L==4 "%u étudiants qui ont accepté" " et qui ont l'e-mail (%.1f%% de %u étudiants)"; #elif L==5 "%u estudiantes que han aceptado la inscripción" " y que tienen correo electrónico (%.1f%% de %u estudiantes)"; // Okoteve traducción #elif L==6 "%u studenti che hanno aderito" " e che hanno e-mail (%.1f%% di %u studenti)"; #elif L==7 "%u students who have accepted" " and who have e-mail (%.1f%% of %u students)"; // Potrzebujesz tlumaczenie #elif L==8 "%u estudantes que aceitaram" " e que têm e-mail (%.1f%% dos %u estudantes)"; #endif const char *Txt_students_with_no_group = #if L==0 "estudiantes en ningún grupo"; // Necessita traduccio #elif L==1 "Studente mit nicht-Gruppe"; #elif L==2 "students with no group"; #elif L==3 "estudiantes en ningún grupo"; #elif L==4 "étudiants avec aucun groupe"; #elif L==5 "estudiantes en ningún grupo"; // Okoteve traducción #elif L==6 "studenti con nessun gruppo"; #elif L==7 "students with no group"; // Potrzebujesz tlumaczenie #elif L==8 "estudantes com nenhum grupo"; #endif const char *Txt_Surname_1 = #if L==0 "Primer cognom"; #elif L==1 "Nachname 1"; #elif L==2 "Surname 1"; #elif L==3 "Primer apellido"; #elif L==4 "Nom de famille 1"; #elif L==5 "Terajoapy 1"; #elif L==6 "Primo cognome"; #elif L==7 "Nazwisko 1"; #elif L==8 "Primeiro apelido"; #endif const char *Txt_Surname_2 = #if L==0 "Segon cognom"; #elif L==1 "Nachname 2"; #elif L==2 "Surname 2"; #elif L==3 "Segundo apellido"; #elif L==4 "Nom de famille 2"; #elif L==5 "Terajoapy 2"; #elif L==6 "Secondo cognome"; #elif L==7 "Nazwisko 2"; #elif L==8 "Segundo apelido"; #endif const char *Txt_Survey = #if L==0 "Encuesta"; // Necessita traduccio #elif L==1 "Umfrage"; #elif L==2 "Survey"; #elif L==3 "Encuesta"; #elif L==4 "Sondage"; #elif L==5 "Encuesta"; // Okoteve traducción #elif L==6 "Sondaggio"; #elif L==7 "Survey"; // Potrzebujesz tlumaczenie #elif L==8 "Inquérito"; #endif const char *Txt_SURVEY_You_belong_to_degree_coruse_or_groups = #if L==0 "Pertenece a titulación, asignatura o grupo(s)"; // Necessita traduccio #elif L==1 "You belong to degree, course or group(s)"; // Need Übersetzung #elif L==2 "You belong to degree, course or group(s)"; #elif L==3 "Pertenece a titulación, asignatura o grupo(s)"; #elif L==4 "You belong to degree, course or group(s)"; // Besoin de traduction #elif L==5 "Pertenece a titulación, asignatura o grupo(s)"; // Okoteve traducción #elif L==6 "Appartieni alla laurea, corso o gruppo"; #elif L==7 "You belong to degree, course or group(s)"; // Potrzebujesz tlumaczenie #elif L==8 "You belong to degree, course or group(s)"; // Necessita de tradução #endif const char *Txt_SURVEY_You_dont_belong_to_degree_coruse_or_groups = #if L==0 "No pertenece a titulación, asignatura o grupo(s)"; // Necessita traduccio #elif L==1 "You don't belong to degree, course or group(s)"; // Need Übersetzung #elif L==2 "You don't belong to degree, course or group(s)"; #elif L==3 "No pertenece a titulación, asignatura o grupo(s)"; #elif L==4 "You don't belong to degree, course or group(s)"; // Besoin de traduction #elif L==5 "No pertenece a titulación, asignatura o grupo(s)"; // Okoteve traducción #elif L==6 "Non appartieni alla laurea, corso o gruppo(s)"; #elif L==7 "You don't belong to degree, course or group(s)"; // Potrzebujesz tlumaczenie #elif L==8 "You don't belong to degree, course or group(s)"; // Necessita de tradução #endif const char *Txt_SURVEY_You_have_already_answered = #if L==0 "Ya ha respondido"; // Necessita traduccio #elif L==1 "You have already answered"; // Need Übersetzung #elif L==2 "You have already answered"; #elif L==3 "Ya ha respondido"; #elif L==4 "You have already answered"; // Besoin de traduction #elif L==5 "Ya ha respondido"; // Okoteve traducción #elif L==6 "Hai già risposto"; #elif L==7 "You have already answered"; // Potrzebujesz tlumaczenie #elif L==8 "You have already answered"; // Necessita de tradução #endif const char *Txt_SURVEY_You_have_not_answered = #if L==0 "No ha respondido"; // Necessita traduccio #elif L==1 "You have not answered"; // Need Übersetzung #elif L==2 "You have not answered"; #elif L==3 "No ha respondido"; #elif L==4 "You have not answered"; // Besoin de traduction #elif L==5 "No ha respondido"; // Okoteve traducción #elif L==6 "Non hai risposto"; #elif L==7 "You have not answered"; // Potrzebujesz tlumaczenie #elif L==8 "You have not answered"; // Necessita de tradução #endif const char *Txt_SURVEY_Type_of_user_allowed = #if L==0 "Tipo de usuario permitido"; // Necessita traduccio #elif L==1 "Type of user allowed"; // Need Übersetzung #elif L==2 "Type of user allowed"; #elif L==3 "Tipo de usuario permitido"; #elif L==4 "Type of user allowed"; // Besoin de traduction #elif L==5 "Tipo de usuario permitido"; // Okoteve traducción #elif L==6 "Tipo di utente autorizzato"; #elif L==7 "Type of user allowed"; // Potrzebujesz tlumaczenie #elif L==8 "Type of user allowed"; // Necessita de tradução #endif const char *Txt_SURVEY_Type_of_user_not_allowed = #if L==0 "Tipo de usuario no permitido"; // Necessita traduccio #elif L==1 "Type of user not allowed"; // Need Übersetzung #elif L==2 "Type of user not allowed"; #elif L==3 "Tipo de usuario no permitido"; #elif L==4 "Type of user not allowed"; // Besoin de traduction #elif L==5 "Tipo de usuario no permitido"; // Okoteve traducción #elif L==6 "Tipo di utente non autorizzato"; #elif L==7 "Type of user not allowed"; // Potrzebujesz tlumaczenie #elif L==8 "Type of user not allowed"; // Necessita de tradução #endif const char *Txt_Survey_X_is_now_hidden = // Warning: it is very important to include %s in the following sentences #if L==0 "La encuesta %s ahora está oculta."; // Necessita traduccio #elif L==1 "Die Umfrage %s ist jetzt ausgeblendet."; #elif L==2 "Survey %s is now hidden."; #elif L==3 "La encuesta %s ahora está oculta."; #elif L==4 "Le sondage %s est maintenant caché."; #elif L==5 "La encuesta %s ahora está oculta."; // Okoteve traducción #elif L==6 "Il sondaggio %s è ora nascosto."; #elif L==7 "Survey %s is now hidden."; // Potrzebujesz tlumaczenie #elif L==8 "O inquérito %s é agora oculta."; #endif const char *Txt_Survey_X_is_now_visible = // Warning: it is very important to include %s in the following sentences #if L==0 "La encuesta %s ahora está visible."; // Necessita traduccio #elif L==1 "Die Umfrage %s ist jetzt sichtbar."; #elif L==2 "Survey %s is now visible."; #elif L==3 "La encuesta %s ahora está visible."; #elif L==4 "Le sondage %s est maintenant visible."; #elif L==5 "La encuesta %s ahora está visible."; // Okoteve traducción #elif L==6 "Il sondaggio %s è ora visibile."; #elif L==7 "Survey %s is now visible."; // Potrzebujesz tlumaczenie #elif L==8 "O inquérito %s é agora visível."; #endif const char *Txt_Survey_questions = #if L==0 "Preguntas de la encuesta"; // Necessita traduccio #elif L==1 "Umfrage-Fragen"; #elif L==2 "Survey questions"; #elif L==3 "Preguntas de la encuesta"; #elif L==4 "Questions du sondage"; #elif L==5 "Preguntas de la encuesta"; // Okoteve traducción #elif L==6 "Domande di sondaggio"; #elif L==7 "Survey questions"; // Potrzebujesz tlumaczenie #elif L==8 "Questões do inquérito"; #endif const char *Txt_Survey_X_removed = // Warning: it is very important to include %s in the following sentences #if L==0 "Encuesta %s eliminada."; // Necessita traduccio #elif L==1 "Umfrage %s entfernt."; #elif L==2 "Survey %s removed."; #elif L==3 "Encuesta %s eliminada."; #elif L==4 "Sondage %s supprimé."; #elif L==5 "Encuesta %s eliminada."; // Okoteve traducción #elif L==6 "Sondaggio %s rimosso."; #elif L==7 "Survey %s removed."; // Potrzebujesz tlumaczenie #elif L==8 "Inquérito %s removido."; #endif const char *Txt_Survey_X_reset = // Warning: it is very important to include %s in the following sentences #if L==0 "Encuesta %s puesta a cero."; // Necessita traduccio #elif L==1 "Umfrage %s zurückgesetzt."; #elif L==2 "Survey %s reset."; #elif L==3 "Encuesta %s puesta a cero."; #elif L==4 "Sondage %s remis à zéro."; #elif L==5 "Encuesta %s puesta a cero."; // Okoteve traducción #elif L==6 "Sondaggio %s resettato."; #elif L==7 "Survey %s reset."; // Potrzebujesz tlumaczenie #elif L==8 "Inquérito %s fixado em zero."; #endif const char *Txt_SVY_STR_ANSWER_TYPES[Svy_NUM_ANS_TYPES] = { #if L==0 "Elecció única" #elif L==1 "Unique-Choice" #elif L==2 "Unique choice" #elif L==3 "Elección única" #elif L==4 "Choix unique" #elif L==5 "Elección única" // Okoteve traducción #elif L==6 "Scelta unica" #elif L==7 "Unique choice" // Potrzebujesz tlumaczenie #elif L==8 "Única escolha" #endif , #if L==0 "Elecció múltiple" #elif L==1 "Multiple-Choice" #elif L==2 "Multiple choice" #elif L==3 "Elección múltiple" #elif L==4 "Choix multiple" #elif L==5 "Elección múltiple" // Okoteve traducción #elif L==6 "Scelta multipla" #elif L==7 "Multiple choice" // Potrzebujesz tlumaczenie #elif L==8 "Múltipla escolha" #endif }; const char *Txt_Syllabus = #if L==0 "Programa"; #elif L==1 "Studienplan"; #elif L==2 "Syllabus"; #elif L==3 "Programa"; #elif L==4 "Plan"; #elif L==5 "Programa"; // Okoteve traducción #elif L==6 "Programma"; #elif L==7 "Syllabus"; // Potrzebujesz tlumaczenie #elif L==8 "Programa"; #endif const char *Txt_Syllabus_of_the_course = #if L==0 "Programa de la asignatura"; // Necessita traduccio #elif L==1 "Studienplan der Veranstaltung"; #elif L==2 "Syllabus of the course"; #elif L==3 "Programa de la asignatura"; #elif L==4 "Plan de la matière"; #elif L==5 "Programa de la asignatura"; // Okoteve traducción #elif L==6 "Programma del corso"; #elif L==7 "Syllabus of the course"; // Potrzebujesz tlumaczenie #elif L==8 "Programa da disciplina"; #endif const char *Txt_System = #if L==0 "Plataforma"; #elif L==1 "Plattform"; #elif L==2 "System"; #elif L==3 "Plataforma"; #elif L==4 "Plate-forme"; #elif L==5 "Ypykatu"; #elif L==6 "Piattaforma"; #elif L==7 "System"; #elif L==8 "Sistema"; #endif const char *Txt_TABLE_Footer = #if L==0 "Pie"; // Necessita traduccio #elif L==1 "Fuß"; #elif L==2 "Footer"; #elif L==3 "Pie"; #elif L==4 "Pied"; #elif L==5 "Pie"; // Okoteve traducción #elif L==6 "Piede"; #elif L==7 "Footer"; // Potrzebujesz tlumaczenie #elif L==8 "Pé"; #endif const char *Txt_TABLE_Header = #if L==0 "Cabecera"; // Necessita traduccio #elif L==1 "Header"; #elif L==2 "Header"; #elif L==3 "Cabecera"; #elif L==4 "Tête"; #elif L==5 "Cabecera"; // Okoteve traducción #elif L==6 "Intestazione"; #elif L==7 "Header"; // Potrzebujesz tlumaczenie #elif L==8 "Cabeçalho"; #endif const char *Txt_Table_not_found_in_the_file_of_marks = #if L==0 "No hay ninguna tabla en el archivo de calificaciones."; // Necessita traduccio #elif L==1 "Table not found in the file of marks."; // Need Übersetzung #elif L==2 "Table not found in the file of marks."; #elif L==3 "No hay ninguna tabla en el archivo de calificaciones."; #elif L==4 "Table not found in the file of marks."; // Besoin de traduction #elif L==5 "No hay ninguna tabla en el archivo de calificaciones."; // Okoteve traducción #elif L==6 "Tabella non trovata nel file dei risultati."; #elif L==7 "Table not found in the file of marks."; // Potrzebujesz tlumaczenie #elif L==8 "Table not found in the file of marks."; // Necessita de tradução #endif const char *Txt_TABS_FULL_TXT[Act_NUM_TABS] = { // TabUnk NULL, // TabSys #if L==0 "Plataforma" #elif L==1 "Plattform" #elif L==2 "System" #elif L==3 "Plataforma" #elif L==4 "Plate-forme" #elif L==5 "Ypykatu" #elif L==6 "Piattaforma" #elif L==7 "System" #elif L==8 "Sistema" #endif , // TabCty #if L==0 "País" #elif L==1 "Land" #elif L==2 "Country" #elif L==3 "País" #elif L==4 "Pays" #elif L==5 "Tetã" #elif L==6 "Paese" #elif L==7 "Kraj" #elif L==8 "País" #endif , // TabIns #if L==0 "Institució" #elif L==1 "Hochschule" #elif L==2 "Institution" #elif L==3 "Institución" #elif L==4 "Établissement" #elif L==5 "Mbo'ehao" #elif L==6 "Istituzione" #elif L==7 "Instytucji" #elif L==8 "Institução" #endif , // TabCtr #if L==0 "Centre" #elif L==1 "Lehrinstitut" #elif L==2 "Centre" #elif L==3 "Centro" #elif L==4 "Centre" #elif L==5 "Mbo'ehao" #elif L==6 "Centro" #elif L==7 "Centrum" #elif L==8 "Centro" #endif , // TabDeg #if L==0 "Titulació" #elif L==1 "Studiengang" #elif L==2 "Degree" #elif L==3 "Titulación" #elif L==4 "Étude" #elif L==5 "Arandurã" #elif L==6 "Laurea" #elif L==7 "Stopien" #elif L==8 "Titulação" #endif , // TabCrs #if L==0 "Assignatura" #elif L==1 "Veranstaltung" #elif L==2 "Course" #elif L==3 "Asignatura" #elif L==4 "Matière" #elif L==5 "Mbo'esyry" #elif L==6 "Corso" #elif L==7 "Kurs" #elif L==8 "Disciplina" #endif , // TabAss #if L==0 "Avaluació" #elif L==1 "Bewertung" #elif L==2 "Assessment" #elif L==3 "Evaluación" #elif L==4 "Évaluation" #elif L==5 "Mbohepy" #elif L==6 "Valutazione" #elif L==7 "Ocena" #elif L==8 "Avaliação" #endif , // TabUsr #if L==0 "Usuaris" #elif L==1 "Benutzer" #elif L==2 "Users" #elif L==3 "Usuarios" #elif L==4 "Utilisateurs" #elif L==5 "Puruhára" #elif L==6 "Utenti" #elif L==7 "Użytkownicy" #elif L==8 "Utilizadores" #endif , // TabMsg #if L==0 "Missatges" #elif L==1 "Nachrichten" #elif L==2 "Messages" #elif L==3 "Mensajes" #elif L==4 "Messages" #elif L==5 "Marandu" #elif L==6 "Messaggi" #elif L==7 "Wiadomości" #elif L==8 "Mensagens" #endif , // TabSta #if L==0 "Estadístiques" #elif L==1 "Statistik" #elif L==2 "Statistics" #elif L==3 "Estadísticas" #elif L==4 "Statistiques" #elif L==5 "Papy'aporeko" #elif L==6 "Statistiche" #elif L==7 "Statystyki" #elif L==8 "Estatísticas" #endif , // TabPrf #if L==0 "Perfil" #elif L==1 "Profil" #elif L==2 "Profile" #elif L==3 "Perfil" #elif L==4 "Profil" #elif L==5 "Che" #elif L==6 "Profilo" #elif L==7 "Profil" #elif L==8 "Perfil" #endif }; const char *Txt_TABS_SHORT_TXT[Act_NUM_TABS] = // Must be visible in 1024x768 without horizontal scroll bar { // TabUnk NULL, // TabSys #if L==0 "PLATAFORMA" #elif L==1 "PLATTFORM" #elif L==2 "SYSTEM" #elif L==3 "PLATAFORMA" #elif L==4 "PLATE-FORME" #elif L==5 "YPYKATU" #elif L==6 "PIATTAFORMA" #elif L==7 "SYSTEM" #elif L==8 "SISTEMA" #endif , // TabCty #if L==0 "PAÍS" #elif L==1 "LAND" #elif L==2 "COUNTRY" #elif L==3 "PAÍS" #elif L==4 "PAYS" #elif L==5 "TETÃ" #elif L==6 "PAESE" #elif L==7 "KRAJ" #elif L==8 "PAÍS" #endif , // TabIns #if L==0 "INSTITUCIÓ" #elif L==1 "HOCHSCHULE" #elif L==2 "INSTITUTION" #elif L==3 "INSTITUCIÓN" #elif L==4 "ÉTABLISSEMENT" #elif L==5 "MBO'EHAO" #elif L==6 "ISTITUZIONE" #elif L==7 "INSTYTUCJI" #elif L==8 "INSTITUÇÃO" #endif , // TabCtr #if L==0 "CENTRE" #elif L==1 "LEHRINSTITUT" #elif L==2 "CENTRE" #elif L==3 "CENTRO" #elif L==4 "CENTRE" #elif L==5 "MBO'EHAO" #elif L==6 "CENTRO" #elif L==7 "CENTRUM" #elif L==8 "CENTRO" #endif , // TabDeg #if L==0 "TITULACIÓ" #elif L==1 "STUDIENGANG" #elif L==2 "DEGREE" #elif L==3 "TITULACIÓN" #elif L==4 "ÉTUDE" #elif L==5 "ARANDURÃ" #elif L==6 "LAUREA" #elif L==7 "STOPIEN" #elif L==8 "TITULAÇÃO" #endif , // TabCrs #if L==0 "ASSIGNATURA" #elif L==1 "VERANSTALTUNG" #elif L==2 "COURSE" #elif L==3 "ASIGNATURA" #elif L==4 "MATIÈRE" #elif L==5 "MBO'ESYRY" #elif L==6 "CORSO" #elif L==7 "KURS" #elif L==8 "DISCIPLINA" #endif , // TabAss #if L==0 "AVALUACIÓ" #elif L==1 "BEWERTUNG" #elif L==2 "ASSESSMENT" #elif L==3 "EVALUACIÓN" #elif L==4 "ÉVALUATION" #elif L==5 "MBOHEPY" #elif L==6 "VALUTAZIONE" #elif L==7 "OCENA" #elif L==8 "AVALIAÇÃO" #endif , // TabUsr #if L==0 "USUARIS" #elif L==1 "BENUTZER" #elif L==2 "USERS" #elif L==3 "USUARIOS" #elif L==4 "UTILISATEURS" #elif L==5 "PURUHÁRA" #elif L==6 "UTENTI" #elif L==7 "UŻYTKOWNICY" #elif L==8 "UTILIZADORES" #endif , // TabMsg #if L==0 "MISSATGES" #elif L==1 "NACHRICHTEN" #elif L==2 "MESSAGES" #elif L==3 "MENSAJES" #elif L==4 "MESSAGES" #elif L==5 "MARANDU" #elif L==6 "MESSAGGI" #elif L==7 "WIADOMOŚCY" #elif L==8 "MENSAGENS" #endif , // TabSta #if L==0 "ESTADÍSTIQUES" #elif L==1 "STATISTIK" #elif L==2 "STATS" #elif L==3 "ESTADÍSTICAS" #elif L==4 "STATISTIQUES" #elif L==5 "PAPY'APOREKO" #elif L==6 "STATISTICHE" #elif L==7 "STATYSTYKI" #elif L==8 "ESTATÍSTICAS" #endif , // TabPrf #if L==0 "PERFIL" #elif L==1 "PROFIL" #elif L==2 "PROFILE" #elif L==3 "PERFIL" #elif L==4 "PROFIL" #elif L==5 "CHE" #elif L==6 "PROFILO" #elif L==7 "PROFIL" #elif L==8 "PERFIL" #endif }; const char *Txt_Tag_allowed = #if L==0 "Descriptor permitido"; // Necessita traduccio #elif L==1 "Tag erlaubt"; #elif L==2 "Tag allowed"; #elif L==3 "Descriptor permitido"; #elif L==4 "Descripteur admis"; #elif L==5 "Descriptor permitido"; // Okoteve traducción #elif L==6 "Etichetta ammessa"; #elif L==7 "Tag allowed"; // Potrzebujesz tlumaczenie #elif L==8 "Descritor permitido"; #endif const char *Txt_Tag_X_allowed_Click_to_disable_it = // Warning: it is very important to include %s in the following sentences #if L==0 "Descriptor %s permitido. Pulse para prohibirlo."; // Necessita traduccio #elif L==1 "Tag %s allowed. Click to disable it."; // Need Übersetzung #elif L==2 "Tag %s allowed. Click to disable it."; #elif L==3 "Descriptor %s permitido. Pulse para prohibirlo."; #elif L==4 "Tag %s allowed. Click to disable it."; // Besoin de traduction #elif L==5 "Descriptor %s permitido. Pulse para prohibirlo."; // Okoteve traducción #elif L==6 "Etichetta %s autorizzata. Clicca per censurarla."; #elif L==7 "Tag %s allowed. Click to disable it."; // Potrzebujesz tlumaczenie #elif L==8 "Tag %s allowed. Click to disable it."; // Necessita de tradução #endif const char *Txt_Tag_not_allowed = #if L==0 "Descriptor no permitido"; // Necessita traduccio #elif L==1 "Tag nicht erlaubt"; #elif L==2 "Tag not allowed"; #elif L==3 "Descriptor no permitido"; #elif L==4 "Descripteur non admis"; #elif L==5 "Descriptor no permitido"; // Okoteve traducción #elif L==6 "Etichetta non autorizzata"; #elif L==7 "Tag not allowed"; // Potrzebujesz tlumaczenie #elif L==8 "Descritor não permitido"; #endif const char *Txt_Tag_X_not_allowed_Click_to_allow_it = // Warning: it is very important to include %s in the following sentences #if L==0 "Descriptor %s no permitido. Pulse para permitirlo."; // Necessita traduccio #elif L==1 "Tag %s not allowed. Click to allow it."; // Need Übersetzung #elif L==2 "Tag %s not allowed. Click to allow it."; #elif L==3 "Descriptor %s no permitido. Pulse para permitirlo."; #elif L==4 "Tag %s not allowed. Click to allow it."; // Besoin de traduction #elif L==5 "Descriptor %s no permitido. Pulse para permitirlo."; // Okoteve traducción #elif L==6 "Etichetta %s censurata. Clicca per autorizzarla."; #elif L==7 "Tag %s not allowed. Click to allow it."; // Potrzebujesz tlumaczenie #elif L==8 "Tag %s not allowed. Click to allow it."; // Necessita de tradução #endif const char *Txt_Tags = // Tags used in test #if L==0 "Descriptors"; #elif L==1 "Tags"; #elif L==2 "Tags"; #elif L==3 "Descriptores"; #elif L==4 "Descripteurs"; #elif L==5 "Descriptores"; // Okoteve traducción #elif L==6 "Etichette"; #elif L==7 "Tags"; // Potrzebujesz tlumaczenie #elif L==8 "Descritores"; #endif const char *Txt_Teachers_ABBREVIATION = // Abbreviation of "Teachers" #if L==0 "Prof."; // Necessita traduccio #elif L==1 "Lehr."; #elif L==2 "Teach."; #elif L==3 "Prof."; #elif L==4 "Enseig."; #elif L==5 "Prof."; // Okoteve traducción #elif L==6 "Prof."; #elif L==7 "Teach."; // Potrzebujesz tlumaczenie #elif L==8 "Prof."; #endif const char *Txt_Test = #if L==0 "Test"; #elif L==1 "Test"; #elif L==2 "Test"; #elif L==3 "Test"; #elif L==4 "Test"; #elif L==5 "Test"; // Okoteve traducción #elif L==6 "Test"; #elif L==7 "Test"; #elif L==8 "Teste"; #endif const char *Txt_TEST_Correct_answer = #if L==0 "Resposta correcta"; #elif L==1 "Correct answer"; // Need Übersetzung #elif L==2 "Correct answer"; #elif L==3 "Respuesta correcta"; #elif L==4 "Correct answer"; // Besoin de traduction #elif L==5 "Respuesta correcta"; // Okoteve traducción #elif L==6 "Risposta corretta"; #elif L==7 "Prawidlowa odpowiedz"; #elif L==8 "Correct answer"; // Necessita de tradução #endif const char *Txt_TEST_User_answer = #if L==0 "Resposta usuari"; #elif L==1 "User's answer"; // Need Übersetzung #elif L==2 "User's answer"; #elif L==3 "Respuesta usuario"; #elif L==4 "User's answer"; // Besoin de traduction #elif L==5 "Respuesta usuario"; // Okoteve traducción #elif L==6 "Risposta utente"; #elif L==7 "User's answer"; // Potrzebujesz tlumaczenie #elif L==8 "User's answer"; // Necessita de tradução #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 #if L==0 "Test nº %u que realiza usted en esta asignatura"; // Necessita traduccio #elif L==1 "Der %u. Test, den Sie in dieser Veranstaltung machen"; #elif L==2 "Test No. %u that you make in this course"; #elif L==3 "Test nº %u que realiza usted en esta asignatura"; #elif L==4 "Test nº %u que vous faites dans cette matière"; #elif L==5 "Test nº %u que realiza usted en esta asignatura"; // Okoteve traducción #elif L==6 "Test n. %u che fai in questo corso"; #elif L==7 "Test No. %u that you make in this course"; // Potrzebujesz tlumaczenie #elif L==8 "Teste nº %u que você faz nesta disciplina"; #endif const char *Txt_Test_result = #if L==0 "Resultado del test"; // Necessita traduccio #elif L==1 "Testergebnis"; #elif L==2 "Test result"; #elif L==3 "Resultado del test"; #elif L==4 "Résultat du test"; #elif L==5 "Resultado del test"; // Okoteve traducción #elif L==6 "Risultato del test"; #elif L==7 "Test result"; // Potrzebujesz tlumaczenie #elif L==8 "Resultado do teste"; #endif const char *Txt_Thanks_for_answering_the_survey = #if L==0 "Gracias por responder la encuesta."; // Necessita traduccio #elif L==1 "Vielen Dank für die Beantwortung der Umfrage."; #elif L==2 "Thanks for answering the survey."; #elif L==3 "Gracias por responder la encuesta."; #elif L==4 "Merci de répondre au sondage."; #elif L==5 "Gracias por responder la encuesta."; // Okoteve traducción #elif L==6 "Grazie per la risposta al sondaggio."; #elif L==7 "Thanks for answering the survey."; // Potrzebujesz tlumaczenie #elif L==8 "Obrigado por responder o inquérito."; #endif const char *Txt_The_alphabetical_code_X_already_exists = // Warning: it is very important to include %s in the following sentences #if L==0 "El código alfabético ISO 3166-1 %s ya existe."; // Necessita traduccio #elif L==1 "The ISO 3166-1 alphabetical code %s already exists."; // Need Übersetzung #elif L==2 "The ISO 3166-1 alphabetical code %s already exists."; #elif L==3 "El código alfabético ISO 3166-1 %s ya existe."; #elif L==4 "The ISO 3166-1 alphabetical code %s already exists."; // Besoin de traduction #elif L==5 "El código alfabético ISO 3166-1 %s ya existe."; // Okoteve traducción #elif L==6 "Il codice alfabetico ISO 3166-1 %s già esiste."; #elif L==7 "The ISO 3166-1 alphabetical code %s already exists."; // Potrzebujesz tlumaczenie #elif L==8 "The ISO 3166-1 alphabetical code %s already exists."; // Necessita de tradução #endif const char *Txt_The_alphabetical_code_X_is_not_correct = // Warning: it is very important to include %s in the following sentences #if L==0 "El código alfabético ISO 3166-1 %s no es correcto."; // Necessita traduccio #elif L==1 "The ISO 3166-1 alphabetical code %s is not correct."; // Need Übersetzung #elif L==2 "The ISO 3166-1 alphabetical code %s is not correct."; #elif L==3 "El código alfabético ISO 3166-1 %s no es correcto."; #elif L==4 "The ISO 3166-1 alphabetical code %s is not correct."; // Besoin de traduction #elif L==5 "El código alfabético ISO 3166-1 %s no es correcto."; // Okoteve traducción #elif L==6 "Il codice alfabetico ISO 3166-1 %s non è corretto."; #elif L==7 "The ISO 3166-1 alphabetical code %s is not correct."; // Potrzebujesz tlumaczenie #elif L==8 "The ISO 3166-1 alphabetical code %s is not correct."; // Necessita de tradução #endif const char *Txt_The_announcement_of_exam_has_been_successfully_updated = #if L==0 "La convocatoria de examen se ha actualizado correctamente."; // Necessita traduccio #elif L==1 "The announcement of exam has been successfully updated."; // Need Übersetzung #elif L==2 "The announcement of exam has been successfully updated."; #elif L==3 "La convocatoria de examen se ha actualizado correctamente."; #elif L==4 "The announcement of exam has been successfully updated."; // Besoin de traduction #elif L==5 "La convocatoria de examen se ha actualizado correctamente."; // Okoteve traducción #elif L==6 "La sessione d'esame è stata aggiornata con successo."; #elif L==7 "The announcement of exam has been successfully updated."; // Potrzebujesz tlumaczenie #elif L==8 "The announcement of exam has been successfully updated."; // Necessita de tradução #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 #if L==0 "Las respuestas de la pregunta con código %ld" " aparecerán barajadas."; // Necessita traduccio #elif L==1 "The answers of the question with code %ld" " will appear shuffled."; // Need Übersetzung #elif L==2 "The answers of the question with code %ld" " will appear shuffled."; #elif L==3 "Las respuestas de la pregunta con código %ld" " aparecerán barajadas."; #elif L==4 "The answers of the question with code %ld" " will appear shuffled."; // Besoin de traduction #elif L==5 "Las respuestas de la pregunta con código %ld" " aparecerán barajadas."; // Okoteve traducción #elif L==6 "Le risposte alla domande con il codice %ld" " appariranno mischiate."; #elif L==7 "The answers of the question with code %ld" " will appear shuffled."; // Potrzebujesz tlumaczenie #elif L==8 "The answers of the question with code %ld" " will appear shuffled."; // Necessita de tradução #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 #if L==0 "Las respuestas de la pregunta con código %ld" " aparecerán sin barajar."; // Necessita traduccio #elif L==1 "The answers of the question with code %ld" " will appear without shuffling."; // Need Übersetzung #elif L==2 "The answers of the question with code %ld" " will appear without shuffling."; #elif L==3 "Las respuestas de la pregunta con código %ld" " aparecerán sin barajar."; #elif L==4 "The answers of the question with code %ld" " will appear without shuffling."; // Besoin de traduction #elif L==5 "Las respuestas de la pregunta con código %ld" " aparecerán sin barajar."; // Okoteve traducción #elif L==6 "Le risposte della domanda con il codice %ld" " appariranno senza essere mischiate."; #elif L==7 "The answers of the question with code %ld" " will appear without shuffling."; // Potrzebujesz tlumaczenie #elif L==8 "The answers of the question with code %ld" " will appear without shuffling."; // Necessita de tradução #endif const char *Txt_The_assignment_has_been_modified = #if L==0 "La actividad ha sido modificada."; // Necessita traduccio #elif L==1 "Die Aufgabe wurde geändert."; #elif L==2 "The assignment has been modified."; #elif L==3 "La actividad ha sido modificada."; #elif L==4 "L'activité a été modifiée."; #elif L==5 "La actividad ha sido modificada."; // Okoteve traducción #elif L==6 "L'attività è stata modificata."; #elif L==7 "The assignment has been modified."; // Potrzebujesz tlumaczenie #elif L==8 "A atividade foi modificada."; #endif const char *Txt_The_banner_X_already_exists = // Warning: it is very important to include %s in the following sentences #if L==0 "El banner %s ya existe."; // Necessita traduccio #elif L==1 "Der Werbebanner %s wurde bereits eingegeben."; #elif L==2 "The banner %s already exists."; #elif L==3 "El banner %s ya existe."; #elif L==4 "The banner %s already exists."; // Besoin de traduction #elif L==5 "El banner %s ya existe."; // Okoteve traducción #elif L==6 "Il banner %s già esiste."; #elif L==7 "The banner %s already exists."; // Potrzebujesz tlumaczenie #elif L==8 "The banner %s already exists."; // Necessita de tradução #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 #if L==0 "El banner %s ha pasado a denominarse %s."; // Necessita traduccio #elif L==1 "The Werbebanner %s has been renamed as %s."; // Need Übersetzung #elif L==2 "The banner %s has been renamed as %s."; #elif L==3 "El banner %s ha pasado a denominarse %s."; #elif L==4 "The banner %s has been renamed as %s."; // Besoin de traduction #elif L==5 "El banner %s ha pasado a denominarse %s."; // Okoteve traducción #elif L==6 "Il banner %s è stato rinominato come %s."; #elif L==7 "The banner %s has been renamed as %s."; // Potrzebujesz tlumaczenie #elif L==8 "The banner %s has been renamed as %s."; // Necessita de tradução #endif const char *Txt_The_banner_X_is_now_hidden = // Warning: it is very important to include %s in the following sentences #if L==0 "El banner %s ara està ocult."; #elif L==1 "Der Werbebanner %s ist jetzt ausgeblendet."; // Need Übersetzung #elif L==2 "The banner %s is now hidden."; #elif L==3 "El banner %s ahora está oculto."; #elif L==4 "Le banner %s est maintenant caché."; #elif L==5 "El banner %s ahora está oculto."; // Okoteve traducción #elif L==6 "Il banner %s è ora nascosto."; #elif L==7 "The banner %s jest ukryte."; #elif L==8 "O banner %s é agora oculto."; #endif const char *Txt_The_banner_X_is_now_visible = // Warning: it is very important to include %s in the following sentences #if L==0 "El banner %s ara està visible."; #elif L==1 "Der Werbebanner %s ist jetzt sichtbar."; // Need Übersetzung #elif L==2 "The banner %s is now visible."; #elif L==3 "El banner %s ahora está visible."; #elif L==4 "Le banner %s est maintenant visible."; #elif L==5 "El banner %s ahora está visible."; // Okoteve traducción #elif L==6 "Il banner %s è ora visible."; #elif L==7 "The banner %s jest teraz widoczny."; #elif L==8 "O banner %s é agora visible."; #endif const char *Txt_The_centre_of_the_degree_has_changed = #if L==0 "El centro de la titulación ha cambiado."; // Necessita traduccio #elif L==1 "The centre of the degree has changed."; // Need Übersetzung #elif L==2 "The centre of the degree has changed."; #elif L==3 "El centro de la titulación ha cambiado."; #elif L==4 "The centre of the degree has changed."; // Besoin de traduction #elif L==5 "El centro de la titulación ha cambiado."; // Okoteve traducción #elif L==6 "Il centro della laurea è cambiato."; #elif L==7 "The centre of the degree has changed."; // Potrzebujesz tlumaczenie #elif L==8 "The centre of the degree has changed."; // Necessita de tradução #endif const char *Txt_The_centre_X_already_exists = // Warning: it is very important to include %s in the following sentences #if L==0 "El centro %s ya existe."; // Necessita traduccio #elif L==1 "Es wurde bereits ein Lehrinstitut mit dem Namen %s eingegeben."; #elif L==2 "The centre %s already exists."; #elif L==3 "El centro %s ya existe."; #elif L==4 "The centre %s already exists."; // Besoin de traduction #elif L==5 "El centro %s ya existe."; // Okoteve traducción #elif L==6 "Il centro %s già esiste."; #elif L==7 "The centre %s already exists."; // Potrzebujesz tlumaczenie #elif L==8 "The centre %s already exists."; // Necessita de tradução #endif const char *Txt_The_centre_X_has_been_renamed_as_Y = // Warning: it is very important to include two %s in the following sentences #if L==0 "El centro %s ha pasado a denominarse %s."; // Necessita traduccio #elif L==1 "The centre %s has been renamed as %s."; // Need Übersetzung #elif L==2 "The centre %s has been renamed as %s."; #elif L==3 "El centro %s ha pasado a denominarse %s."; #elif L==4 "The centre %s has been renamed as %s."; // Besoin de traduction #elif L==5 "El centro %s ha pasado a denominarse %s."; // Okoteve traducción #elif L==6 "Il centro %s è stato rinominato %s."; #elif L==7 "The centre %s has been renamed as %s."; // Potrzebujesz tlumaczenie #elif L==8 "The centre %s has been renamed as %s."; // Necessita de tradução #endif const char *Txt_The_configuration_of_the_course_X_has_been_updated = // Warning: it is very important to include %s in the following sentences #if L==0 "La configuración de la asignatura %s se ha actualizado."; // Necessita traduccio #elif L==1 "The configuration of the course %s has been updated."; // Need Übersetzung #elif L==2 "The configuration of the course %s has been updated."; #elif L==3 "La configuración de la asignatura %s se ha actualizado."; #elif L==4 "The configuration of the course %s has been updated."; // Besoin de traduction #elif L==5 "La configuración de la asignatura %s se ha actualizado."; // Okoteve traducción #elif L==6 "La configurazione del corso %s è stata aggiornata."; #elif L==7 "The configuration of the course %s has been updated."; // Potrzebujesz tlumaczenie #elif L==8 "The configuration of the course %s has been updated."; // Necessita de tradução #endif const char *Txt_The_contents_of_the_folder_are_too_big = #if L==0 "El contingut de la carpeta és massa gran."; #elif L==1 "Der Inhalt der Ordner sind zu groß."; #elif L==2 "The contents of the folder are too big."; #elif L==3 "El contenido de la carpeta es demasiado grande."; #elif L==4 "Le contenu du dossier est trop gros."; #elif L==5 "El contenido de la carpeta es demasiado grande."; // Okoteve traducción #elif L==6 "Il contenuto della cartella è troppo grande."; #elif L==7 "Zawartość folderu są zbyt duże."; #elif L==8 "O conteúdo do diretório é muito grande."; #endif const char *Txt_The_copy_has_been_successful = #if L==0 "La copia se ha realizado con éxito."; // Necessita traduccio #elif L==1 "Die Kopie wurde erfolgreich."; #elif L==2 "The copy has been successful."; #elif L==3 "La copia se ha realizado con éxito."; #elif L==4 "La copie a été un succès."; #elif L==5 "La copia se ha realizado con éxito."; // Okoteve traducción #elif L==6 "La copia è avvenuta con successo."; #elif L==7 "The copy has been successful."; // Potrzebujesz tlumaczenie #elif L==8 "A cópia foi feita com sucesso."; #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 #if L==0 "La copia se ha detenido al intentar pegar el archivo %s" " porque se excedería la cuota de disco."; // Necessita traduccio #elif L==1 "Der Kopiervorgang wurde aus Platzgründen abgebrochen, als versucht wurde," " die Datei %s einzufügen."; #elif L==2 "The copy has stopped when trying to paste the file %s" " because it would exceed the disk quota."; #elif L==3 "La copia se ha detenido al intentar pegar el archivo %s" " porque se excedería la cuota de disco."; #elif L==4 "The copy has stopped when trying to paste the file %s" " because it would exceed the disk quota."; // Besoin de traduction #elif L==5 "La copia se ha detenido al intentar pegar el archivo %s" " porque se excedería la cuota de disco."; // Okoteve traducción #elif L==6 "La copia è terminata quando si è provato a incollare il file %s" " perchè esso superava la quota di gestione del disco."; #elif L==7 "The copy has stopped when trying to paste the file %s" " because it would exceed the disk quota."; // Potrzebujesz tlumaczenie #elif L==8 "The copy has stopped when trying to paste the file %s" " because it would exceed the disk quota."; // Necessita de tradução #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 #if L==0 "La copia se ha detenido al intentar pegar la carpeta %s" " porque se excedería la cuota de disco."; // Necessita traduccio #elif L==1 "Der Kopiervorgang wurde aus Platzgründen abgebrochen, als versucht wurde," " das Verzeichnis %s einzufügen."; #elif L==2 "The copy has stopped when trying to paste the folder %s" " because it would exceed the disk quota."; #elif L==3 "La copia se ha detenido al intentar pegar la carpeta %s" " porque se excedería la cuota de disco."; #elif L==4 "The copy has stopped when trying to paste the folder %s" " because it would exceed the disk quota."; // Besoin de traduction #elif L==5 "La copia se ha detenido al intentar pegar la carpeta %s" " porque se excedería la cuota de disco."; // Okoteve traducción #elif L==6 "La copia è terminata quando si è provato a incollare la cartella%s" " perchè essa superava la quota di gestione del disco."; #elif L==7 "The copy has stopped when trying to paste the folder %s" " because it would exceed the disk quota."; // Potrzebujesz tlumaczenie #elif L==8 "The copy has stopped when trying to paste the folder %s" " because it would exceed the disk quota."; // Necessita de tradução #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 #if L==0 "La copia se ha detenido al intentar pegar el enlace %s" " porque se excedería la cuota de disco."; // Necessita traduccio #elif L==1 "Der Kopiervorgang wurde aus Platzgründen abgebrochen, als versucht wurde," " das Link %s einzufügen."; #elif L==2 "The copy has stopped when trying to paste the link %s" " because it would exceed the disk quota."; #elif L==3 "La copia se ha detenido al intentar pegar el enlace %s" " porque se excedería la cuota de disco."; #elif L==4 "The copy has stopped when trying to paste the link %s" " because it would exceed the disk quota."; // Besoin de traduction #elif L==5 "La copia se ha detenido al intentar pegar el enlace %s" " porque se excedería la cuota de disco."; // Okoteve traducción #elif L==6 "La copia è terminata quando si è provato a incollare il link%s" " perchè essa superava la quota di gestione del disco."; #elif L==7 "The copy has stopped when trying to paste the link %s" " because it would exceed the disk quota."; // Potrzebujesz tlumaczenie #elif L==8 "The copy has stopped when trying to paste the link %s" " because it would exceed the disk quota."; // Necessita de tradução #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 #if L==0 "La copia se ha detenido al intentar pegar el archivo %s" " porque se excedería el número máximo de niveles permitido."; // Necessita traduccio #elif L==1 "Zu viele Ebenen. Der Kopiervorgang wurde abgebrochen, als versucht wurde," " die Datei %s einzufügen."; #elif L==2 "The copy has stopped when trying to paste the file %s" " because it would exceed the maximum allowed number of levels."; #elif L==3 "La copia se ha detenido al intentar pegar el archivo %s" " porque se excedería el número máximo de niveles permitido."; #elif L==4 "The copy has stopped when trying to paste the file %s" " because it would exceed the maximum allowed number of levels."; // Besoin de traduction #elif L==5 "La copia se ha detenido al intentar pegar el archivo %s" " porque se excedería el número máximo de niveles permitido."; // Okoteve traducción #elif L==6 "La copia è terminata quando si è provato a incollare il file %s" " perchè esso superava il massimo numero di livelli permesso."; #elif L==7 "The copy has stopped when trying to paste the file %s" " because it would exceed the maximum allowed number of levels."; // Potrzebujesz tlumaczenie #elif L==8 "The copy has stopped when trying to paste the file %s" " because it would exceed the maximum allowed number of levels."; // Necessita de tradução #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 #if L==0 "La copia se ha detenido al intentar pegar el archivo %s" " porque se excedería el número máximo de niveles permitido."; // Necessita traduccio #elif L==1 "Zu viele Ebenen. Der Kopiervorgang wurde abgebrochen, als versucht wurde," " die Datei %s einzufügen."; #elif L==2 "The copy has stopped when trying to paste the file %s" " because it would exceed the maximum allowed number of levels."; #elif L==3 "La copia se ha detenido al intentar pegar el archivo %s" " porque se excedería el número máximo de niveles permitido."; #elif L==4 "The copy has stopped when trying to paste the file %s" " because it would exceed the maximum allowed number of levels."; // Besoin de traduction #elif L==5 "La copia se ha detenido al intentar pegar el archivo %s" " porque se excedería el número máximo de niveles permitido."; // Okoteve traducción #elif L==6 "La copia è terminata quando si è provato a incollare il file %s" " perchè superava il massimo numero di livelli permessi."; #elif L==7 "The copy has stopped when trying to paste the file %s" " because it would exceed the maximum allowed number of levels."; // Potrzebujesz tlumaczenie #elif L==8 "The copy has stopped when trying to paste the file %s" " because it would exceed the maximum allowed number of levels."; // Necessita de tradução #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 #if L==0 "La copia se ha detenido al intentar pegar el enlace %s" " porque se excedería el número máximo de niveles permitido."; // Necessita traduccio #elif L==1 "Zu viele Ebenen. Der Kopiervorgang wurde abgebrochen, als versucht wurde," " die Link %s einzufügen."; #elif L==2 "The copy has stopped when trying to paste the link %s" " because it would exceed the maximum allowed number of levels."; #elif L==3 "La copia se ha detenido al intentar pegar el enlace %s" " porque se excedería el número máximo de niveles permitido."; #elif L==4 "The copy has stopped when trying to paste the link %s" " because it would exceed the maximum allowed number of levels."; // Besoin de traduction #elif L==5 "La copia se ha detenido al intentar pegar el enlace %s" " porque se excedería el número máximo de niveles permitido."; // Okoteve traducción #elif L==6 "La copia è terminata quando si è provato a incollare il link %s" " perchè superava il massimo numero di livelli permessi."; #elif L==7 "The copy has stopped when trying to paste the link %s" " because it would exceed the maximum allowed number of levels."; // Potrzebujesz tlumaczenie #elif L==8 "The copy has stopped when trying to paste the link %s" " because it would exceed the maximum allowed number of levels."; // Necessita de tradução #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 #if L==0 "La copia se ha detenido al intentar pegar el archivo %s" " porque ya existe otro objeto con ese nombre."; // Necessita traduccio #elif L==1 "Der Kopiervorgang wurde abgebrochen, als versucht wurde, die Datei %s" " einzufügen. Der Objektname wird bereits verwendet."; #elif L==2 "The copy has stopped when trying to paste the file %s" " because there is already an object with that name."; #elif L==3 "La copia se ha detenido al intentar pegar el archivo %s" " porque ya existe otro objeto con ese nombre."; #elif L==4 "The copy has stopped when trying to paste the file %s" " because there is already an object with that name."; // Besoin de traduction #elif L==5 "La copia se ha detenido al intentar pegar el archivo %s" " porque ya existe otro objecto con ese nombre."; // Okoteve traducción #elif L==6 "La copia è terminata quando si è provato a incollare il file %s" " perchè c'era già un oggetto con quel nome."; #elif L==7 "The copy has stopped when trying to paste the file %s" " because there is already an object with that name."; // Potrzebujesz tlumaczenie #elif L==8 "The copy has stopped when trying to paste the file %s" " because there is already an object with that name."; // Necessita de tradução #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 #if L==0 "La copia se ha detenido al intentar pegar el enlace %s" " porque ya existe otro objeto con ese nombre."; // Necessita traduccio #elif L==1 "Der Kopiervorgang wurde abgebrochen, als versucht wurde, die Link %s" " einzufügen. Der Objektname wird bereits verwendet."; #elif L==2 "The copy has stopped when trying to paste the link %s" " because there is already an object with that name."; #elif L==3 "La copia se ha detenido al intentar pegar el enlace %s" " porque ya existe otro objeto con ese nombre."; #elif L==4 "The copy has stopped when trying to paste the link %s" " because there is already an object with that name."; // Besoin de traduction #elif L==5 "La copia se ha detenido al intentar pegar el enlace %s" " porque ya existe otro objecto con ese nombre."; // Okoteve traducción #elif L==6 "La copia è terminata quando si è provato a incollare il link %s" " perchè c'era già un oggetto con quel nome."; #elif L==7 "The copy has stopped when trying to paste the link %s" " because there is already an object with that name."; // Potrzebujesz tlumaczenie #elif L==8 "The copy has stopped when trying to paste the link %s" " because there is already an object with that name."; // Necessita de tradução #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 #if L==0 "La copia se ha detenido al intentar pegar el archivo %s" " porque no se puede pegar aquí un archivo de un tipo distinto a HTML."; // Necessita traduccio #elif L==1 "Der Kopiervorgang wurde abgebrochen, als versucht wurde, die Datei %s" " einzufügen. Es dürfen nur HTML-Daten eingefügt werden."; #elif L==2 "The copy has stopped when trying to paste the file %s" " because you can not paste a file here of a type other than HTML."; #elif L==3 "La copia se ha detenido al intentar pegar el archivo %s" " porque no se puede pegar aquí un archivo de un tipo distinto a HTML."; #elif L==4 "The copy has stopped when trying to paste the file %s" " because you can not paste a file here of a type other than HTML."; // Besoin de traduction #elif L==5 "La copia se ha detenido al intentar pegar el archivo %s" " porque no se puede pegar aquí un archivo de un tipo distinto a HTML."; // Okoteve traducción #elif L==6 "La copia è terminata quando si è provato a incollare il file %s" " perchè non puoi incollare qui un file di un tipo diverso da HTML."; #elif L==7 "The copy has stopped when trying to paste the file %s" " because you can not paste a file here of a type other than HTML."; // Potrzebujesz tlumaczenie #elif L==8 "The copy has stopped when trying to paste the file %s" " because you can not paste a file here of a type other than HTML."; // Necessita de tradução #endif const char *Txt_The_country_X_already_exists = // Warning: it is very important to include %s in the following sentences #if L==0 "El país %s ya existe."; // Necessita traduccio #elif L==1 "Die Land %s wurde bereits eingegeben."; #elif L==2 "The country %s already exists."; #elif L==3 "El país %s ya existe."; #elif L==4 "The country %s already exists."; // Besoin de traduction #elif L==5 "El país %s ya existe."; // Okoteve traducción #elif L==6 "Il paese %s già esiste."; #elif L==7 "The country %s already exists."; // Potrzebujesz tlumaczenie #elif L==8 "The country %s already exists."; // Necessita de tradução #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 #if L==0 "El país %s ha pasado a denominarse %s."; // Necessita traduccio #elif L==1 "The country %s has been renamed as %s."; // Need Übersetzung #elif L==2 "The country %s has been renamed as %s."; #elif L==3 "El país %s ha pasado a denominarse %s."; #elif L==4 "The country %s has been renamed as %s."; // Besoin de traduction #elif L==5 "El país %s ha pasado a denominarse %s."; // Okoteve traducción #elif L==6 "Il paese %s è stato rimosso come %s."; #elif L==7 "The country %s has been renamed as %s."; // Potrzebujesz tlumaczenie #elif L==8 "The country %s has been renamed as %s."; // Necessita de tradução #endif const char *Txt_The_country_of_the_institution_X_has_changed_Y = // Warning: it is very important to include two %s in the following sentences #if L==0 "El país de la institución %s" " ha cambiado a %s."; // Necessita traduccio #elif L==1 "The country of the institution %s" " has changed to %s."; #elif L==2 "The country of the institution %s" " has changed to %s."; #elif L==3 "El país de la institución %s" " ha cambiado a %s."; #elif L==4 "The country of the institution %s" " has changed to %s."; #elif L==5 "El país de la institución %s" " ha cambiado a %s."; // Okoteve traducción #elif L==6 "Il paese dell'istituzione %s" " è cambiato in %s."; #elif L==7 "The country of the institution %s" " has changed to %s."; // Potrzebujesz tlumaczenie #elif L==8 "The country of the institution %s" " has changed to %s."; #endif const char *Txt_The_course_X_already_exists = // Warning: it is very important to include %s in the following sentences #if L==0 "La asignatura %s ya existe."; // Necessita traduccio #elif L==1 "Die Veranstaltung %s wurde bereits eingegeben."; #elif L==2 "The course %s already exists."; #elif L==3 "La asignatura %s ya existe."; #elif L==4 "The course %s already exists."; // Besoin de traduction #elif L==5 "La asignatura %s ya existe."; // Okoteve traducción #elif L==6 "Il corso %s già esiste."; #elif L==7 "The course %s already exists."; // Potrzebujesz tlumaczenie #elif L==8 "The course %s already exists."; // Necessita de tradução #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 #if L==0 "La asignatura %s ya existe en el curso %s."; // Necessita traduccio #elif L==1 "Die Veranstaltung %s wurde bereits in Studienjahr %s eingegeben."; #elif L==2 "The course %s already exists in year %s."; #elif L==3 "La asignatura %s ya existe en el curso %s."; #elif L==4 "The course %s already exists in year %s."; // Besoin de traduction #elif L==5 "La asignatura %s ya existe en el curso %s."; // Okoteve traducción #elif L==6 "Il corso %s esiste già nell'anno %s."; #elif L==7 "The course %s already exists in year %s."; // Potrzebujesz tlumaczenie #elif L==8 "The course %s already exists in year %s."; // Necessita de tradução #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 #if L==0 "La asignatura %s se ha movido" " a la titulación %s."; // Necessita traduccio #elif L==1 "The course %s has been moved" " to the degree %s."; // Need Übersetzung #elif L==2 "The course %s has been moved" " to the degree %s."; #elif L==3 "La asignatura %s se ha movido" " a la titulación %s."; #elif L==4 "The course %s has been moved" " to the degree %s."; // Besoin de traduction #elif L==5 "La asignatura %s se ha movido" " a la titulación %s."; // Okoteve traducción #elif L==6 "Il corso %s è stato spostato" " dalla laurea %s."; #elif L==7 "The course %s has been moved" " to the degree %s."; // Potrzebujesz tlumaczenie #elif L==8 "The course %s has been moved" " to the degree %s."; // Necessita de tradução #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 #if L==0 "La fecha de la festividad %s ha cambiado a %s."; // Necessita traduccio #elif L==1 "The date of the holiday %s has changed to %s."; // Need Übersetzung #elif L==2 "The date of the holiday %s has changed to %s."; #elif L==3 "La fecha de la festividad %s ha cambiado a %s."; #elif L==4 "The date of the holiday %s has changed to %s."; // Besoin de traduction #elif L==5 "La fecha de la festividad %s ha cambiado a %s."; // Okoteve traducción #elif L==6 "La data delle festività %s è cambiata a %s."; #elif L==7 "The date of the holiday %s has changed to %s."; // Potrzebujesz tlumaczenie #elif L==8 "The date of the holiday %s has changed to %s."; // Necessita de tradução #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 #if L==0 "El rango de fechas debe ser menor o igual a %u días."; // Necessita traduccio #elif L==1 "The date range must be less than or equal to %u days."; // Need Übersetzung #elif L==2 "The date range must be less than or equal to %u days."; #elif L==3 "El rango de fechas debe ser menor o igual a %u días."; #elif L==4 "The date range must be less than or equal to %u days."; // Besoin de traduction #elif L==5 "El rango de fechas debe ser menor o igual a %u días."; // Okoteve traducción #elif L==6 "Il range della data deve essere minore o uguale a %u giorni."; #elif L==7 "The date range must be less than or equal to %u days."; // Potrzebujesz tlumaczenie #elif L==8 "The date range must be less than or equal to %u days."; // Necessita de tradução #endif const char *Txt_The_degree_X_already_exists = // Warning: it is very important to include %s in the following sentences #if L==0 "La titulación %s ya existe."; // Necessita traduccio #elif L==1 "Der Studiengang %s wurde bereits eingegeben."; #elif L==2 "The degree %s already exists."; #elif L==3 "La titulación %s ya existe."; #elif L==4 "The degree %s already exists."; // Besoin de traduction #elif L==5 "La titulación %s ya existe."; // Okoteve traducción #elif L==6 "La laurea %s già esiste."; #elif L==7 "The degree %s already exists."; // Potrzebujesz tlumaczenie #elif L==8 "The degree %s already exists."; // Necessita de tradução #endif const char *Txt_The_degree_has_no_longer_a_year_for_optional_courses = #if L==0 "La titulación ya no tiene un curso de optativas."; // Necessita traduccio #elif L==1 "The degree has no longer a year for optional courses."; // Need Übersetzung #elif L==2 "The degree has no longer a year for optional courses."; #elif L==3 "La titulación ya no tiene un curso de optativas."; #elif L==4 "The degree has no longer a year for optional courses."; // Besoin de traduction #elif L==5 "La titulación ya no tiene un curso de optativas."; // Okoteve traducción #elif L==6 "La laurea non ha un anno più lungo per corsi opzionali."; #elif L==7 "The degree has no longer a year for optional courses."; // Potrzebujesz tlumaczenie #elif L==8 "The degree has no longer a year for optional courses."; // Necessita de tradução #endif const char *Txt_The_degree_now_has_a_year_for_optional_courses = #if L==0 "La titulación ahora tiene un curso de optativas."; // Necessita traduccio #elif L==1 "The degree now has a year for optional courses."; // Need Übersetzung #elif L==2 "The degree now has a year for optional courses."; #elif L==3 "La titulación ahora tiene un curso de optativas."; #elif L==4 "The degree now has a year for optional courses."; // Besoin de traduction #elif L==5 "La titulación ahora tiene un curso de optativas."; // Okoteve traducción #elif L==6 "La laurea ora ha un anno per corsi opzionali."; #elif L==7 "The degree now has a year for optional courses."; // Potrzebujesz tlumaczenie #elif L==8 "The degree now has a year for optional courses."; // Necessita de tradução #endif const char *Txt_The_department_X_already_exists = // Warning: it is very important to include %s in the following sentences #if L==0 "El departamento %s ya existe."; // Necessita traduccio #elif L==1 "Die Abteilung %s wurde bereits eingegeben."; #elif L==2 "The department %s already exists."; #elif L==3 "El departamento %s ya existe."; #elif L==4 "The department %s already exists."; // Besoin de traduction #elif L==5 "El departamento %s ya existe."; // Okoteve traducción #elif L==6 "IL dipartimento %s esiste già."; #elif L==7 "The department %s already exists."; // Potrzebujesz tlumaczenie #elif L==8 "The department %s already exists."; // Necessita de tradução #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 #if L==0 "El departamento %s ha pasado a denominarse %s."; // Necessita traduccio #elif L==1 "The department %s has been renamed as %s."; // Need Übersetzung #elif L==2 "The department %s has been renamed as %s."; #elif L==3 "El departamento %s ha pasado a denominarse %s."; #elif L==4 "The department %s has been renamed as %s."; // Besoin de traduction #elif L==5 "El departamento %s ha pasado a denominarse %s."; // Okoteve traducción #elif L==6 "Il dipartimento %s è stato rinominato come %s."; #elif L==7 "The department %s has been renamed as %s."; // Potrzebujesz tlumaczenie #elif L==8 "The department %s has been renamed as %s."; // Necessita de tradução #endif const char *Txt_The_email_X_has_been_confirmed = // Warning: it is very important to include %s in the following sentences #if L==0 "El correo electrónico %s ha sido confirmado."; // Necessita traduccio #elif L==1 "The e-mail %s has been confirmed."; // Need Übersetzung #elif L==2 "The e-mail %s has been confirmed."; #elif L==3 "El correo electrónico %s ha sido confirmado."; #elif L==4 "The e-mail %s has been confirmed."; // Besoin de traduction #elif L==5 "El correo electrónico %s ha sido confirmado."; // Okoteve traducción #elif L==6 "The e-mail %s has been confirmed."; // Bisogno di traduzione #elif L==7 "The e-mail %s has been confirmed."; // Potrzebujesz tlumaczenie #elif L==8 "The e-mail %s has been confirmed."; // Necessita de tradução #endif const char *Txt_The_email_address_entered_X_is_not_valid = // Warning: it is very important to include %s in the following sentences #if L==0 "La dirección de correo introducida" " %s no es válida."; // Necessita traduccio #elif L==1 "The e-mail address entered" " %s is not valid."; // Need Übersetzung #elif L==2 "The e-mail address entered" " %s is not valid."; #elif L==3 "La dirección de correo introducida" " %s no es válida."; #elif L==4 "The e-mail address entered" " %s is not valid."; // Besoin de traduction #elif L==5 "La dirección de correo introducida" " %s no es válida."; // Okoteve traducción #elif L==6 "Il e-mail immesso" " %s non è valido."; #elif L==7 "The e-mail address entered" " %s is not valid."; // Potrzebujesz tlumaczenie #elif L==8 "The e-mail address entered" " %s is not valid."; // Necessita de tradução #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 #if L==0 "La dirección de correo %s" " ya había sido registrada por otro usuario."; // Necessita traduccio #elif L==1 "The e-mail address %s" " had been registered by another user."; // Need Übersetzung #elif L==2 "The e-mail address %s" " had been registered by another user."; #elif L==3 "La dirección de correo %s" " ya había sido registrada por otro usuario."; #elif L==4 "The e-mail address %s" " had been enrolled by another user."; // Besoin de traduction #elif L==5 "La dirección de correo %s" " ya había sido registrada por otro usuario."; // Okoteve traducción #elif L==6 "Il e-mail %s" " è stato registrato da un altro utente."; #elif L==7 "The e-mail address %s" " had been registered by another user."; // Potrzebujesz tlumaczenie #elif L==8 "The e-mail address %s" " had been registered by another user."; // Necessita de tradução #endif const char *Txt_The_email_address_has_not_been_confirmed = #if L==0 "La dirección de correo electrónico" " no ha podido confirmarse."; // Necessita traduccio #elif L==1 "The email address has not been confirmed."; // Need Übersetzung #elif L==2 "The email address has not been confirmed."; #elif L==3 "La dirección de correo electrónico" " no ha podido confirmarse."; #elif L==4 "The email address has not been confirmed."; // Besoin de traduction #elif L==5 "La dirección de correo electrónico" " no ha podido confirmarse."; // Okoteve traducción #elif L==6 "The email address has not been confirmed."; // Bisogno di traduzione #elif L==7 "The email address has not been confirmed."; // Potrzebujesz tlumaczenie #elif L==8 "The email address has not been confirmed."; // Necessita de tradução #endif const char *Txt_The_email_address_X_matches_the_one_you_had_previously_registered = // Warning: it is very important to include %s in the following sentences #if L==0 "La dirección de correo %s" " coincide con la que ya tenía registrada previamente."; // Necessita traduccio #elif L==1 "The e-mail address %s" " matches the one you had previously registered."; // Need Übersetzung #elif L==2 "The e-mail address %s" " matches the one you had previously registered."; #elif L==3 "La dirección de correo %s" " coincide con la que ya tenía registrada previamente."; #elif L==4 "The e-mail address %s" " matches the one you had previously registered."; // Besoin de traduction #elif L==5 "La dirección de correo %s" " coincide con la que ya tenía registrada previamente."; // Okoteve traducción #elif L==6 "Il e-mail %s" " coincide con quellao che hai precedentemente registrato."; #elif L==7 "The e-mail address %s" " matches the one you had previously registered."; // Potrzebujesz tlumaczenie #elif L==8 "The e-mail address %s" " matches the one you had previously registered."; // Necessita de tradução #endif const char *Txt_The_event_has_been_modified = #if L==0 "El evento ha sido modificado."; // Necessita traduccio #elif L==1 "Der Ereignis wurde geändert."; #elif L==2 "The event has been modified."; #elif L==3 "El evento ha sido modificado."; #elif L==4 "L'événement a été modifié."; #elif L==5 "El evento ha sido modificado."; // Okoteve traducción #elif L==6 "L'evento è stata modificato."; #elif L==7 "The event has been modified."; // Potrzebujesz tlumaczenie #elif L==8 "O evento foi modificado."; #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 #if L==0 "El archivo %s se ha almacenado" " dentro de la carpeta %s."; // Necessita traduccio #elif L==1 "Die Datei %s wurde" " in das Verzeichnis %s gesteckt."; #elif L==2 "The file %s has been placed" " inside the folder %s."; #elif L==3 "El archivo %s se ha almacenado" " dentro de la carpeta %s."; #elif L==4 "Le fichier %s a été placé" " dans le répertoire %s."; #elif L==5 "El archivo %s se ha almacenado" " dentro de la carpeta %s."; // Okoteve traducción #elif L==6 "Il file %s è stato messo" " all'interno della cartella %s."; #elif L==7 "The file %s has been placed" " inside the folder %s."; // Potrzebujesz tlumaczenie #elif L==8 "O arquivo %s foi colocado" " dentro do diretório %s."; #endif const char *Txt_The_file_is_not_jpg = #if L==0 "El archivo no es jpg."; // Necessita traduccio #elif L==1 "The file is not jpg."; // Need Übersetzung #elif L==2 "The file is not jpg."; #elif L==3 "El archivo no es jpg."; #elif L==4 "The file is not jpg."; // Besoin de traduction #elif L==5 "El archivo no es jpg."; // Okoteve traducción #elif L==6 "IL file non è jpg."; #elif L==7 "The file is not jpg."; // Potrzebujesz tlumaczenie #elif L==8 "The file is not jpg."; // Necessita de tradução #endif const char *Txt_The_file_is_not_xml = #if L==0 "El archivo no es xml."; // Necessita traduccio #elif L==1 "The file is not xml."; // Need Übersetzung #elif L==2 "The file is not xml."; #elif L==3 "El archivo no es xml."; #elif L==4 "The file is not xml."; // Besoin de traduction #elif L==5 "El archivo no es xml."; // Okoteve traducción #elif L==6 "IL file non è xml."; #elif L==7 "The file is not xml."; // Potrzebujesz tlumaczenie #elif L==8 "The file is not xml."; // Necessita de tradução #endif const char *Txt_The_file_of_folder_no_longer_exists_or_is_now_hidden = #if L==0 "L'arxiu o carpeta ja no existeix o està ara ocult."; #elif L==1 "Die Datei oder Ordner existiert nicht mehr oder ist jetzt versteckt."; #elif L==2 "The file or folder no longer exists or is now hidden."; #elif L==3 "El archivo o carpeta ya no existe o está ahora oculto."; #elif L==4 "Le fichier ou répertoire n'existe plus ou est maintenant caché."; #elif L==5 "El archivo o carpeta ya no existe o está ahora oculto."; // Okoteve traducción #elif L==6 "Il file o cartella non esiste più o è nascosta."; #elif L==7 "Plik lub folder już nie istnieje lub jest ukryte."; #elif L==8 "O arquivo ou diretório não existe mais ou está escondido."; #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 #if L==0 "El tipo de archivo es %s y debe ser HTML o ZIP."; // Necessita traduccio #elif L==1 "The file type is %s and should be HTML or ZIP."; // Need Übersetzung #elif L==2 "The file type is %s and should be HTML or ZIP."; #elif L==3 "El tipo de archivo es %s y debe ser HTML o ZIP."; #elif L==4 "The file type is %s and should be HTML or ZIP."; // Besoin de traduction #elif L==5 "El tipo de archivo es %s y debe ser HTML o ZIP."; // Okoteve traducción #elif L==6 "Il tipo di file è %s e dovrebbe essere HTML o ZIP."; #elif L==7 "The file type is %s and should be HTML or ZIP."; // Potrzebujesz tlumaczenie #elif L==8 "The file type is %s and should be HTML or ZIP."; // Necessita de tradução #endif const char *Txt_The_file_type_should_be_HTML_or_ZIP = #if L==0 "El tipo de archivo debe ser HTML o ZIP."; // Necessita traduccio #elif L==1 "The file type should be HTML or ZIP."; // Need Übersetzung #elif L==2 "The file type should be HTML or ZIP."; #elif L==3 "El tipo de archivo debe ser HTML o ZIP."; #elif L==4 "The file type should be HTML or ZIP."; // Besoin de traduction #elif L==5 "El tipo de archivo debe ser HTML o ZIP."; // Okoteve traducción #elif L==6 "Il tipo di file dovrebbe essere HTML o ZIP."; #elif L==7 "The file type should be HTML or ZIP."; // Potrzebujesz tlumaczenie #elif L==8 "The file type should be HTML or ZIP."; // Necessita de tradução #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 #if L==0 "Se ha creado la carpeta %s dentro de la carpeta %s."; // Necessita traduccio #elif L==1 "Das Verzeichnis %s wurde im Verzeichnis %s erstellt."; #elif L==2 "The folder %s has been created inside the folder %s."; #elif L==3 "Se ha creado la carpeta %s dentro de la carpeta %s."; #elif L==4 "Le répertoire %s a été créé dans le répertoire %s."; #elif L==5 "Se ha creado la carpeta %s dentro de la carpeta %s."; // Okoteve traducción #elif L==6 "La cartella %s è stata creata all'interno della cartella %s."; #elif L==7 "The folder %s has been created inside the folder %s."; // Potrzebujesz tlumaczenie #elif L==8 "O diretório %s foi criado dentro do diretório %s."; #endif const char *Txt_The_folder_is_empty = #if L==0 "La carpeta està buida."; #elif L==1 "Der Verzeichnis is leer."; #elif L==2 "The folder is empty."; #elif L==3 "La carpeta está vacía."; #elif L==4 "Le répertoire est vide."; #elif L==5 "La carpeta está vacía."; // Okoteve traducción #elif L==6 "La cartella è vuota."; #elif L==7 "Folder jest pusty."; #elif L==8 "O diretório está vazio."; #endif const char *Txt_The_folder_name_X_has_changed_to_Y = // Warning: it is very important to include two %s in the following sentences #if L==0 "Se ha cambiado el nombre de la carpeta %s por %s."; // Necessita traduccio #elif L==1 "Das Verzeichnis %s wurde umbenannt in %s."; #elif L==2 "The folder name %s has changed to %s."; #elif L==3 "Se ha cambiado el nombre de la carpeta %s por %s."; #elif L==4 "The folder name %s has changed to %s."; // Besoin de traduction #elif L==5 "Se ha cambiado el nombre de la carpeta %s por %s."; // Okoteve traducción #elif L==6 "Il nome della cartella %s è cambiato in %s."; #elif L==7 "The folder name %s has changed to %s."; // Potrzebujesz tlumaczenie #elif L==8 "The folder name %s has changed to %s."; // Necessita de tradução #endif const char *Txt_The_folder_name_X_has_not_changed = // Warning: it is very important to include %s in the following sentences #if L==0 "El nombre de la carpeta %s no ha cambiado."; // Necessita traduccio #elif L==1 "Der Name des Verzeichnisses %s wurde nicht geändert."; #elif L==2 "The folder name %s has not changed."; #elif L==3 "El nombre de la carpeta %s no ha cambiado."; #elif L==4 "The folder name %s has not changed."; // Besoin de traduction #elif L==5 "El nombre de la carpeta %s no ha cambiado."; // Okoteve traducción #elif L==6 "Il nome della cartella %s non è cambiato."; #elif L==7 "The folder name %s has not changed."; // Potrzebujesz tlumaczenie #elif L==8 "The folder name %s has not changed."; // Necessita de tradução #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 #if L==0 "El nombre de la carpeta %s no ha cambiado" " porque ya existe una carpeta o un archivo con el nombre %s."; // Necessita traduccio #elif L==1 "Der Name des Verzeichnisses %s wurde nicht geändert," " weil bereits ein Verzeichnis oder eine Datei mit Namen %s besteht."; #elif L==2 "The folder name %s has not changed" " because there is already a folder or a file with the name %s."; #elif L==3 "El nombre de la carpeta %s no ha cambiado" " porque ya existe una carpeta o un archivo con el nombre %s."; #elif L==4 "The folder name %s has not changed" " because there is already a folder or a file with the name %s."; // Besoin de traduction #elif L==5 "El nombre de la carpeta %s no ha cambiado" " porque ya existe una carpeta o un archivo con el nombre %s."; // Okoteve traducción #elif L==6 "Il nome della cartella %s non è cambiato" " perchè c'è già una cartella o un file con il nome %s."; #elif L==7 "The folder name %s has not changed" " because there is already a folder or a file with the name %s."; // Potrzebujesz tlumaczenie #elif L==8 "The folder name %s has not changed" " because there is already a folder or a file with the name %s."; // Necessita de tradução #endif const char *Txt_The_graph_shows_the_NUMBER = #if L==0 "La gráfica muestra el"; // Necessita traduccio #elif L==1 "Die Grafik zeigt die"; #elif L==2 "The graph shows the"; #elif L==3 "La gráfica muestra el"; #elif L==4 "Le graphique montre le"; #elif L==5 "La gráfica muestra el"; // Okoteve traducción #elif L==6 "Il grafico mostra il"; #elif L==7 "The graph shows the"; // Potrzebujesz tlumaczenie #elif L==8 "O gráfico mostra o"; #endif const char *Txt_The_group_X_already_exists = // Warning: it is very important to include %s in the following sentences #if L==0 "El grupo %s ya existe."; // Necessita traduccio #elif L==1 "Die Gruppe %s wurde bereits eingegeben."; #elif L==2 "The group %s already exists."; #elif L==3 "El grupo %s ya existe."; #elif L==4 "The group %s already exists."; // Besoin de traduction #elif L==5 "El grupo %s ya existe."; // Okoteve traducción #elif L==6 "Il gruppo %s già esiste."; #elif L==7 "The group %s already exists."; // Potrzebujesz tlumaczenie #elif L==8 "The group %s already exists."; // Necessita de tradução #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 #if L==0 "El grupo %s ha pasado a denominarse %s."; // Necessita traduccio #elif L==1 "The group %s has been renamed as %s."; // Need Übersetzung #elif L==2 "The group %s has been renamed as %s."; #elif L==3 "El grupo %s ha pasado a denominarse %s."; #elif L==4 "The group %s has been renamed as %s."; // Besoin de traduction #elif L==5 "El grupo %s ha pasado a denominarse %s."; // Okoteve traducción #elif L==6 "Il gruppo %s è stato rinominato come %s."; #elif L==7 "The group %s has been renamed as %s."; // Potrzebujesz tlumaczenie #elif L==8 "The group %s has been renamed as %s."; // Necessita de tradução #endif const char *Txt_The_group_X_is_now_closed = // Warning: it is very important to include %s in the following sentences #if L==0 "El grupo %s está ahora cerrado."; // Necessita traduccio #elif L==1 "The group %s is now closed."; // Need Übersetzung #elif L==2 "The group %s is now closed."; #elif L==3 "El grupo %s está ahora cerrado."; #elif L==4 "The group %s is now closed."; // Besoin de traduction #elif L==5 "El grupo %s está ahora cerrado."; // Okoteve traducción #elif L==6 "Il gruppo %s è ora chiuso."; #elif L==7 "The group %s is now closed."; // Potrzebujesz tlumaczenie #elif L==8 "The group %s is now closed."; // Necessita de tradução #endif const char *Txt_The_group_X_is_now_open = // Warning: it is very important to include %s in the following sentences #if L==0 "El grupo %s está ahora abierto."; // Necessita traduccio #elif L==1 "The group %s is now open."; // Need Übersetzung #elif L==2 "The group %s is now open."; #elif L==3 "El grupo %s está ahora abierto."; #elif L==4 "The group %s is now open."; // Besoin de traduction #elif L==5 "El grupo %s está ahora abierto."; // Okoteve traducción #elif L==6 "Il gruppo %s è ora aperto."; #elif L==7 "The group %s is now open."; // Potrzebujesz tlumaczenie #elif L==8 "The group %s is now open."; // Necessita de tradução #endif const char *Txt_The_group_X_now_has_no_limit_of_students = // Warning: it is very important to include %s in the following sentences #if L==0 "El grupo %s no tiene ahora límite de estudiantes."; // Necessita traduccio #elif L==1 "The group %s now has no limit of students."; #elif L==2 "The group %s now has no limit of students."; #elif L==3 "El grupo %s no tiene ahora límite de estudiantes."; #elif L==4 "The group %s now has no limit of students."; #elif L==5 "El grupo %s no tiene ahora límite de estudiantes."; // Okoteve traducción #elif L==6 "Il gruppo %s ora non ha limite di studenti."; #elif L==7 "The group %s now has no limit of students."; // Potrzebujesz tlumaczenie #elif L==8 "The group %s now has no limit of students."; #endif const char *Txt_The_groups_will_automatically_open = #if L==0 "Els grups s'obriran automàticament."; #elif L==1 "The groups will automatically open."; // Need Übersetzung #elif L==2 "The groups will automatically open."; #elif L==3 "Los grupos se abrirán automáticamente."; #elif L==4 "The groups will automatically open."; // Besoin de traduction #elif L==5 "Los grupos se abrirán automáticamente."; // Okoteve traducción #elif L==6 "I gruppi si aprirà automaticamente."; #elif L==7 "The groups will automatically open."; // Potrzebujesz tlumaczenie #elif L==8 "The groups will automatically open."; // Necessita de tradução #endif const char *Txt_The_groups_will_not_automatically_open = #if L==0 "Els grups no s'obriran automàticament."; #elif L==1 "The groups will not automatically open."; // Need Übersetzung #elif L==2 "The groups will not automatically open."; #elif L==3 "Los grupos no se abrirán automáticamente."; #elif L==4 "The groups will not automatically open."; // Besoin de traduction #elif L==5 "Los grupos no se abrirán automáticamente."; // Okoteve traducción #elif L==6 "I gruppi non si aprirà automaticamente."; #elif L==7 "The groups will not automatically open."; // Potrzebujesz tlumaczenie #elif L==8 "The groups will not automatically open."; // Necessita de tradução #endif const char *Txt_The_HTML_file_has_been_received_successfully = #if L==0 "El archivo HTML se ha recibido correctamente."; // Necessita traduccio #elif L==1 "The HTML file has been received successfully."; // Need Übersetzung #elif L==2 "The HTML file has been received successfully."; #elif L==3 "El archivo HTML se ha recibido correctamente."; #elif L==4 "The HTML file has been received successfully."; // Besoin de traduction #elif L==5 "El archivo HTML se ha recibido correctamente."; // Okoteve traducción #elif L==6 "Il HTML file è stato ricevuto con successo."; #elif L==7 "The HTML file has been received successfully."; // Potrzebujesz tlumaczenie #elif L==8 "The HTML file has been received successfully."; // Necessita de tradução #endif const char *Txt_The_ID_X_has_been_confirmed = // Warning: it is very important to include %s in the following sentences #if L==0 "El ID (DNI/cédula) %s" " ha sido confirmado."; // Necessita traduccio #elif L==1 "The ID %s" " has been confirmed."; // Need Übersetzung #elif L==2 "The ID %s" " has been confirmed."; #elif L==3 "El ID (DNI/cédula) %s" " ha sido confirmado."; #elif L==4 "The ID %s" " has been confirmed."; // Besoin de traduction #elif L==5 "El ID (DNI/cédula) %s" " ha sido confirmado."; // Okoteve traducción #elif L==6 "Il ID %s" " è stato confermato."; #elif L==7 "The ID ID %s" " has been confirmed."; // Potrzebujesz tlumaczenie #elif L==8 "The ID ID %s" " has been confirmed."; // Necessita de tradução #endif const char *Txt_The_ID_X_has_been_registered_successfully = // Warning: it is very important to include %s in the following sentences #if L==0 "El ID (DNI/cédula) %s" " se ha registrado correctamente."; // Necessita traduccio #elif L==1 "The ID %s" " has been registered successfully."; // Need Übersetzung #elif L==2 "The ID %s" " has been registered successfully."; #elif L==3 "El ID (DNI/cédula) %s" " se ha registrado correctamente."; #elif L==4 "The ID %s" " has been registered successfully."; // Besoin de traduction #elif L==5 "El ID (DNI/cédula) %s" " se ha registrado correctamente."; // Okoteve traducción #elif L==6 "Il ID %s" " è stato registrato con successo."; #elif L==7 "The ID ID %s" " has been registered successfully."; // Potrzebujesz tlumaczenie #elif L==8 "The ID ID %s" " has been registered successfully."; // Necessita de tradução #endif const char *Txt_The_ID_X_is_not_valid = // Warning: it is very important to include %s in the following sentences #if L==0 "El ID (DNI/cédula) %s no es válido."; // Necessita traduccio #elif L==1 "The ID %s is not valid."; // Need Übersetzung #elif L==2 "The ID %s is not valid."; #elif L==3 "El ID (DNI/cédula) %s no es válido."; #elif L==4 "The ID %s is not valid."; // Besoin de traduction #elif L==5 "El ID (DNI/cédula) %s no es válido."; // Okoteve traducción #elif L==6 "L'ID %s non è valido."; #elif L==7 "The ID %s is not valid."; // Potrzebujesz tlumaczenie #elif L==8 "The ID %s is not valid."; // Necessita de tradução #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 #if L==0 "El @apodo, correo o ID (DNI/cédula) %s no es válido."; // Necessita traduccio #elif L==1 "The @nick, e-mail or ID %s is not valid."; // Need Übersetzung #elif L==2 "The @nick, e-mail or ID %s is not valid."; #elif L==3 "El @apodo, correo o ID (DNI/cédula) %s no es válido."; #elif L==4 "The @nick, e-mail or ID %s is not valid."; // Besoin de traduction #elif L==5 "El @apodo, correo o ID (DNI/cédula) %s no es válido."; // Okoteve traducción #elif L==6 "Il @nome-utente, e-mail o ID %s non è valido."; #elif L==7 "The @nick, e-mail or ID %s is not valid."; // Potrzebujesz tlumaczenie #elif L==8 "The @nick, e-mail or ID %s is not valid."; // Necessita de tradução #endif const char *Txt_The_ID_X_matches_one_of_the_existing = // Warning: it is very important to include %s in the following sentences #if L==0 "El ID (DNI/cédula) %s" " coincide con uno de los existentes."; // Necessita traduccio #elif L==1 "The ID %s" " matches one of the existing."; // Need Übersetzung #elif L==2 "The ID %s" " matches one of the existing."; #elif L==3 "El ID (DNI/cédula) %s" " coincide con uno de los existentes."; #elif L==4 "The ID %s" " matches one of the existing."; // Besoin de traduction #elif L==5 "El ID (DNI/cédula) %s" " coincide con uno de los existentes."; // Okoteve traducción #elif L==6 "The ID %s" " matches one of the existing."; // Bisogno di traduzione #elif L==7 "The ID %s" " matches one of the existing."; // Potrzebujesz tlumaczenie #elif L==8 "The ID %s" " matches one of the existing."; // Necessita de tradução #endif const char *Txt_The_user_does_not_exist_or_password_is_incorrect = #if L==0 "El usuario/a no existe" " o bien la contraseña es incorrecta."; // Necessita traduccio #elif L==1 "Die Benutzer ist nicht vorhanden" " oder Passwort falsch ist."; #elif L==2 "The user does not exist" " or password is incorrect."; #elif L==3 "El usuario/a no existe" " o bien la contraseña es incorrecta."; #elif L==4 "L'utilisateur n'existe pas" " ou le mot de passe est incorrect."; #elif L==5 "El usuario/a no existe" " o bien la contraseña es incorrecta."; // Okoteve traducción #elif L==6 "Il utente non esiste" " o la password non è corretta."; #elif L==7 "The user does not exist" " or password is incorrect."; // Potrzebujesz tlumaczenie #elif L==8 "O utilizador não existe" " ou a senha está incorreta."; #endif const char *Txt_The_institution_X_already_exists = // Warning: it is very important to include %s in the following sentences #if L==0 "La institución %s ya existe."; // Necessita traduccio #elif L==1 "Die Hochschule %s wurde bereits eingegeben."; #elif L==2 "The institution %s already exists."; #elif L==3 "La institución %s ya existe."; #elif L==4 "The institution %s already exists."; // Besoin de traduction #elif L==5 "La institución %s ya existe."; // Okoteve traducción #elif L==6 "L'istituzione %s già esiste."; #elif L==7 "The institution %s already exists."; // Potrzebujesz tlumaczenie #elif L==8 "The institution %s already exists."; // Necessita de tradução #endif const char *Txt_The_institution_of_the_centre_has_changed = #if L==0 "La institución del centro ha cambiado."; // Necessita traduccio #elif L==1 "The institution of the centre has changed."; // Need Übersetzung #elif L==2 "The institution of the centre has changed."; #elif L==3 "La institución del centro ha cambiado."; #elif L==4 "The institution of the centre ."; // Besoin de traduction #elif L==5 "La institución del centro ha cambiado."; // Okoteve traducción #elif L==6 "L'istituzione del centro è cambiata."; #elif L==7 "The institution of the centre has changed."; // Potrzebujesz tlumaczenie #elif L==8 "The institution of the centre has changed."; // Necessita de tradução #endif const char *Txt_The_institution_of_the_department_has_changed = #if L==0 "La institución del departamento ha cambiado."; // Necessita traduccio #elif L==1 "The institution of the department has changed."; // Need Übersetzung #elif L==2 "The institution of the department has changed."; #elif L==3 "La institución del departamento ha cambiado."; #elif L==4 "The institution of the department has changed."; // Besoin de traduction #elif L==5 "La institución del departamento ha cambiado."; // Okoteve traducción #elif L==6 "L'istituzione del dipartimento è cambiata."; #elif L==7 "The institution of the department has changed."; // Potrzebujesz tlumaczenie #elif L==8 "The institution of the department has changed."; // Necessita de tradução #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 #if L==0 "El código institucional de la asignatura %s" " ha cambiado a %s."; // Necessita traduccio #elif L==1 "The institutional code of the course %s" " has changed to %s ."; // Need Übersetzung #elif L==2 "The institutional code of the course %s" " has changed to %s."; #elif L==3 "El código institucional de la asignatura %s" " ha cambiado a %s."; #elif L==4 "The institutional code of the course %s" " has changed to %s."; // Besoin de traduction #elif L==5 "El código institucional de la asignatura %s" " ha cambiado a %s."; // Okoteve traducción #elif L==6 "Il codice istituzionale del corso %s" " è cambiato a %s."; #elif L==7 "The institutional code of the course %s" " has changed to %s."; // Potrzebujesz tlumaczenie #elif L==8 "The institutional code of the course %s" " has changed to %s."; // Necessita de tradução #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 #if L==0 "El código institucional de la asignatura %s no ha cambiado."; // Necessita traduccio #elif L==1 "The institutional code of the course %s has not changed."; // Need Übersetzung #elif L==2 "The institutional code of the course %s has not changed."; #elif L==3 "El código institucional de la asignatura %s no ha cambiado."; #elif L==4 "The institutional code of the course %s has not changed."; // Besoin de traduction #elif L==5 "El código institucional de la asignatura %s no ha cambiado."; // Okoteve traducción #elif L==6 "Il codice istituzionale del corso %s non è cambiato."; #elif L==7 "The institutional code of the course %s has not changed."; // Potrzebujesz tlumaczenie #elif L==8 "The institutional code of the course %s has not changed."; // Necessita de tradução #endif const char *Txt_The_integrated_editor_is_not_yet_available = #if L==0 "El editor integrado aún no está disponible."; // Necessita traduccio #elif L==1 "Der integrierte Editor ist noch nicht verfügbar."; #elif L==2 "The integrated editor is not yet available."; #elif L==3 "El editor integrado aún no está disponible."; #elif L==4 "The integrated editor is not yet available."; // Besoin de traduction #elif L==5 "El editor integrado aún no está disponible."; // Okoteve traducción #elif L==6 "L'editor integrato non è ancora disponibile."; #elif L==7 "The integrated editor is not yet available."; // Potrzebujesz tlumaczenie #elif L==8 "The integrated editor is not yet available."; // Necessita de tradução #endif const char *Txt_The_language_has_changed_to_LANGUAGE = #if L==0 "S'ha canviat l'idioma a català."; #elif L==1 "Die Sprache ist nun Deutsch."; #elif L==2 "The language has changed to English."; #elif L==3 "Se ha cambiado el idioma a español."; #elif L==4 "La langue a changé au français."; #elif L==5 "Pe ñe'&etilde; ha moambuepapyre pe avañe'&etilde;."; #elif L==6 "La lingua è cambiata a italiano."; #elif L==7 "Język został zmieniony na polski."; #elif L==8 "O idioma mudou para o português."; #endif const char *Txt_The_link_X_already_exists = // Warning: it is very important to include %s in the following sentences #if L==0 "El enlace %s ya existe."; // Necessita traduccio #elif L==1 "Der Link %s wurde bereits eingegeben."; #elif L==2 "The link %s already exists."; #elif L==3 "El enlace %s ya existe."; #elif L==4 "The link %s already exists."; // Besoin de traduction #elif L==5 "El enlace %s ya existe."; // Okoteve traducción #elif L==6 "Il link %s già esiste."; #elif L==7 "The link %s already exists."; // Potrzebujesz tlumaczenie #elif L==8 "The link %s already exists."; // Necessita de tradução #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 #if L==0 "El enlace %s se ha almacenado" " dentro de la carpeta %s."; // Necessita traduccio #elif L==1 "Die Link %s wurde" " in das Verzeichnis %s gesteckt."; #elif L==2 "The link %s has been placed" " inside the folder %s."; #elif L==3 "El enlace %s se ha almacenado" " dentro de la carpeta %s."; #elif L==4 "Le lien %s a été placé" " dans le répertoire %s."; #elif L==5 "El enlace %s se ha almacenado" " dentro de la carpeta %s."; // Okoteve traducción #elif L==6 "Il link %s è stato messo" " all'interno della cartella %s."; #elif L==7 "The link %s has been placed" " inside the folder %s."; // Potrzebujesz tlumaczenie #elif L==8 "A ligação %s foi colocado" " dentro do diretório %s."; #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 #if L==0 "El enlace %s ha pasado a denominarse %s."; // Necessita traduccio #elif L==1 "The link %s has been renamed as %s."; // Need Übersetzung #elif L==2 "The link %s has been renamed as %s."; #elif L==3 "El enlace %s ha pasado a denominarse %s."; #elif L==4 "The link %s has been renamed as %s."; // Besoin de traduction #elif L==5 "El enlace %s ha pasado a denominarse %s."; // Okoteve traducción #elif L==6 "Il link %s è stato rinominato come %s."; #elif L==7 "The link %s has been renamed as %s."; // Potrzebujesz tlumaczenie #elif L==8 "The link %s has been renamed as %s."; // Necessita de tradução #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 #if L==0 "La lista de %u asignaturas es demasiado grande para mostrarla."; // Necessita traduccio #elif L==1 "The list of %u courses is too large to be displayed."; // Need Übersetzung #elif L==2 "The list of %u courses is too large to be displayed."; #elif L==3 "La lista de %u asignaturas es demasiado grande para mostrarla."; #elif L==4 "The list of %u courses is too large to be displayed."; // Besoin de traduction #elif L==5 "La lista de %u asignaturas es demasiado grande para mostrarla."; // Okoteve traducción #elif L==6 "La lista di %u corsi è troppo grande per essere mostrata."; #elif L==7 "The list of %u courses is too large to be displayed."; // Potrzebujesz tlumaczenie #elif L==8 "The list of %u courses is too large to be displayed."; // Necessita de tradução #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 #if L==0 "La lista de %u usuarios es demasiado grande para mostrarla."; // Necessita traduccio #elif L==1 "The list of %u users is too large to be displayed."; // Need Übersetzung #elif L==2 "The list of %u users is too large to be displayed."; #elif L==3 "La lista de %u usuarios es demasiado grande para mostrarla."; #elif L==4 "The list of %u users is too large to be displayed."; // Besoin de traduction #elif L==5 "La lista de %u usuarios es demasiado grande para mostrarla."; // Okoteve traducción #elif L==6 "La lista di %u utenti è troppo grande per essere mostrata."; #elif L==7 "The list of %u users is too large to be displayed."; // Potrzebujesz tlumaczenie #elif L==8 "The list of %u users is too large to be displayed."; // Necessita de tradução #endif const char *Txt_The_lower_limit_of_correct_answers_must_be_less_than_or_equal_to_the_upper_limit = #if L==0 "El límite inferior del intervalo de respuestas correctas" " debe ser menor o igual que el límite superior."; // Necessita traduccio #elif L==1 "The lower limit of correct answers" " must be less than or equal to the upper limit."; // Need Übersetzung #elif L==2 "The lower limit of correct answers" " must be less than or equal to the upper limit."; #elif L==3 "El límite inferior del intervalo de respuestas correctas" " debe ser menor o igual que el límite superior."; #elif L==4 "The lower limit of correct answers" " must be less than or equal to the upper limit."; // Besoin de traduction #elif L==5 "El límite inferior del intervalo de respuestas correctas" " debe ser menor o igual que el límite superior."; // Okoteve traducción #elif L==6 "Il limite inferiore di risposte corrette" " deve essere minore o uguale al limite superiore."; #elif L==7 "The lower limit of correct answers" " must be less than or equal to the upper limit."; // Potrzebujesz tlumaczenie #elif L==8 "The lower limit of correct answers" " must be less than or equal to the upper limit."; // Necessita de tradução #endif const char *Txt_The_mail_domain_X_already_exists = #if L==0 "El dominio de correo ya existe."; // Necessita traduccio #elif L==1 "Die E-Mail-Domäne wurde bereits eingegeben."; #elif L==2 "The mail domain already exists."; #elif L==3 "El dominio de correo ya existe."; #elif L==4 "The mail domain already exists."; // Besoin de traduction #elif L==5 "El dominio de correo ya existe."; // Okoteve traducción #elif L==6 "Il campo mail già esiste."; #elif L==7 "The mail domain already exists."; // Potrzebujesz tlumaczenie #elif L==8 "The mail domain already exists."; // Necessita de tradução #endif const char *Txt_The_mail_domain_X_has_been_renamed_as_Y = // Warning: it is very important to include two %s in the following sentences #if L==0 "El dominio de correo %s ha pasado a denominarse %s."; // Necessita traduccio #elif L==1 "The mail domain %s has been renamed as %s."; // Need Übersetzung #elif L==2 "The mail domain %s has been renamed as %s."; #elif L==3 "El dominio de correo %s ha pasado a denominarse %s."; #elif L==4 "The mail domain %s has been renamed as %s."; // Besoin de traduction #elif L==5 "El dominio de correo %s ha pasado a denominarse %s."; // Okoteve traducción #elif L==6 "Il campo mail %s è stato rinominato come %s."; #elif L==7 "The mail domain %s has been renamed as %s."; // Potrzebujesz tlumaczenie #elif L==8 "The mail domain %s has been renamed as %s."; // Necessita de tradução #endif const char *Txt_The_mail_domain_X_has_not_changed = // Warning: it is very important to include %s in the following sentences #if L==0 "El dominio de correo %s no ha cambiado."; // Necessita traduccio #elif L==1 "The mail domain %s has not changed."; // Need Übersetzung #elif L==2 "The mail domain %s has not changed."; #elif L==3 "El dominio de correo %s no ha cambiado."; #elif L==4 "The mail domain %s has not changed."; // Besoin de traduction #elif L==5 "El dominio de correo %s no ha cambiado."; // Okoteve traducción #elif L==6 "Il campo mail %s non è cambiato."; #elif L==7 "The mail domain %s has not changed."; // Potrzebujesz tlumaczenie #elif L==8 "The mail domain %s has not changed."; // Necessita de tradução #endif const char *Txt_the_marks_of_a_student_chosen_at_random_ = #if L==0 "se mostrarán las calificaciones de un estudiante de la asignatura escogido al azar;
" " si ve más de un estudiante, significa que los números de filas de cabecera o de pie no son correctos"; // Necessita traduccio #elif L==1 "es wird die Bewertung eines nach dem Zufallsprinzip ausgewäten Studenten angezeigt;
" " wenn Sie mehr als einen Student bedeutet dies, dass die Anzahl der Kopf oder Fuß von Zeilen ist nicht korrekt"; #elif L==2 "the marks of a student chosen at random from the course will be shown;
" " if you see more than one student, it means that the number of header or footer rows is not correct"; #elif L==3 "se mostrarán las calificaciones de un estudiante de la asignatura escogido al azar;
" " si ve más de un estudiante, significa que los números de filas de cabecera o de pie no son correctos"; #elif L==4 "les notes d'un étudiant choisi au hasard dans la matière seront présentés;
" " si vous voyez plus d'un étudiant, cela signifie que le nombre de ligned de la tête ou du pied n'est pas correcte"; #elif L==5 "se mostrarán las calificaciones de un estudiante de la asignatura escogido al azar;
" " si ve más de un estudiante, significa que los números de filas de cabecera o de pie no son correctos"; // Okoteve traducción #elif L==6 "i risultati di uno studente scelto a caso dal corso verranno mostrati;
" " se si vede piú di uno studente, significa che il numero di righe di intestazione o a piè di pagina non è corretto"; #elif L==7 "the marks of a student chosen at random from the course will be shown;
" " if you see more than one student, it means that the number of header or footer rows is not correct"; // Potrzebujesz tlumaczenie #elif L==8 "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"; #endif const char *Txt_The_maximum_number_of_students_in_the_group_X_has_not_changed = // Warning: it is very important to include %s in the following sentences #if L==0 "El nº máximo de estudiantes" " del grupo %s no ha cambiado."; // Necessita traduccio #elif L==1 "The maximum number of students" " in the group %s has not changed."; // Need Übersetzung #elif L==2 "The maximum number of students" " in the group %s has not changed."; #elif L==3 "El nº máximo de estudiantes" " del grupo %s no ha cambiado."; #elif L==4 "The maximum number of students" " in the group %s has not changed."; // Besoin de traduction #elif L==5 "El nº máximo de estudiantes" " del grupo %s no ha cambiado."; // Okoteve traducción #elif L==6 "Il numero massimo di studenti" " nel gruppo %s non è cambiato."; #elif L==7 "The maximum number of students" " in the group %s has not changed."; // Potrzebujesz tlumaczenie #elif L==8 "The maximum number of students" " in the group %s has not changed."; // Necessita de tradução #endif const char *Txt_The_maximum_number_of_students_in_the_group_X_is_now_Y = // Warning: it is very important to include %s and %u in the following sentences #if L==0 "El nº máximo de estudiantes" " del grupo %s es ahora %u."; // Necessita traduccio #elif L==1 "The maximum number of students" " in the group %s is now %u."; // Need Übersetzung #elif L==2 "The maximum number of students" " in the group %s is now %u."; #elif L==3 "El nº máximo de estudiantes" " del grupo %s es ahora %u."; #elif L==4 "The maximum number of students" " in the group %s is now %u."; // Besoin de traduction #elif L==5 "El nº máximo de estudiantes" " del grupo %s es ahora %u."; // Okoteve traducción #elif L==6 "Il numero massimo di studenti" " nel gruppo %s è ora %u."; #elif L==7 "The maximum number of students" " in the group %s is now %u."; // Potrzebujesz tlumaczenie #elif L==8 "The maximum number of students" " in the group %s is now %u."; // Necessita de tradução #endif const char *Txt_The_message_has_not_been_sent_to_any_recipient = #if L==0 "El missatge no ha estat enviat a cap destinatari."; #elif L==1 "The message has not been sent to any recipient."; // Need Übersetzung #elif L==2 "The message has not been sent to any recipient."; #elif L==3 "El mensaje no se ha enviado a ningún destinatario."; #elif L==4 "The message has not been sent to any recipient."; // Besoin de traduction #elif L==5 "El mensaje no se ha enviado a ningún destinatario."; // Okoteve traducción #elif L==6 "Il messaggio non è stato inviato a nessun destinatario."; #elif L==7 "The message has not been sent to any recipient."; // Potrzebujesz tlumaczenie #elif L==8 "The message has not been sent to any recipient."; // Necessita de tradução #endif const char *Txt_The_message_has_been_sent_to_1_recipient = #if L==0 "El mensaje se ha enviado a 1 destinatario."; // Necessita traduccio #elif L==1 "The message has been sent to 1 recipient."; // Need Übersetzung #elif L==2 "The message has been sent to 1 recipient."; #elif L==3 "El mensaje se ha enviado a 1 destinatario."; #elif L==4 "The message has been sent to 1 recipient."; // Besoin de traduction #elif L==5 "El mensaje se ha enviado a 1 destinatario."; // Okoteve traducción #elif L==6 "Il messaggio è stato inviato a 1 destinatario."; #elif L==7 "The message has been sent to 1 recipient."; // Potrzebujesz tlumaczenie #elif L==8 "The message has been sent to 1 recipient."; // Necessita de tradução #endif const char *Txt_The_message_has_been_sent_to_X_recipients = // Warning: it is very important to include %u in the following sentences #if L==0 "El mensaje se ha enviado a %u destinatarios."; // Necessita traduccio #elif L==1 "The message has been sent to %u recipients."; // Need Übersetzung #elif L==2 "The message has been sent to %u recipients."; #elif L==3 "El mensaje se ha enviado a %u destinatarios."; #elif L==4 "The message has been sent to %u recipients."; // Besoin de traduction #elif L==5 "El mensaje se ha enviado a %u destinatarios."; // Okoteve traducción #elif L==6 "Il messaggio è stato inviato a %u destinatari."; #elif L==7 "The message has been sent to %u recipients."; // Potrzebujesz tlumaczenie #elif L==8 "The message has been sent to %u recipients."; // Necessita de tradução #endif const char *Txt_The_name_of_the_banner_X_has_not_changed = // Warning: it is very important to include %s in the following sentences #if L==0 "El nombre del banner %s no ha cambiado."; // Necessita traduccio #elif L==1 "The name of the banner %s has not changed."; // Need Übersetzung #elif L==2 "The name of the banner %s has not changed."; #elif L==3 "El nombre del banner %s no ha cambiado."; #elif L==4 "The name of the banner %s has not changed."; // Besoin de traduction #elif L==5 "El nombre del banner %s no ha cambiado."; // Okoteve traducción #elif L==6 "Il nome del banner %s non è cambiato."; #elif L==7 "The name of the banner %s has not changed."; // Potrzebujesz tlumaczenie #elif L==8 "The name of the banner %s has not changed."; // Necessita de tradução #endif const char *Txt_The_name_of_the_centre_X_has_not_changed = // Warning: it is very important to include %s in the following sentences #if L==0 "El nombre del centro %s no ha cambiado."; // Necessita traduccio #elif L==1 "The name of the centre %s has not changed."; // Need Übersetzung #elif L==2 "The name of the centre %s has not changed."; #elif L==3 "El nombre del centro %s no ha cambiado."; #elif L==4 "The name of the centre %s has not changed."; // Besoin de traduction #elif L==5 "El nombre del centro %s no ha cambiado."; // Okoteve traducción #elif L==6 "Il nome del centro %s non è cambiato."; #elif L==7 "The name of the centre %s has not changed."; // Potrzebujesz tlumaczenie #elif L==8 "The name of the centre %s has not changed."; // Necessita de tradução #endif const char *Txt_The_name_of_the_country_X_has_not_changed = // Warning: it is very important to include %s in the following sentences #if L==0 "El nombre del país %s no ha cambiado."; // Necessita traduccio #elif L==1 "The name of the country %s has not changed."; // Need Übersetzung #elif L==2 "The name of the country %s has not changed."; #elif L==3 "El nombre del país %s no ha cambiado."; #elif L==4 "The name of the country %s has not changed."; // Besoin de traduction #elif L==5 "El nombre del país %s no ha cambiado."; // Okoteve traducción #elif L==6 "Il nome del paese %s non è cambiato."; #elif L==7 "The name of the country %s has not changed."; // Potrzebujesz tlumaczenie #elif L==8 "The name of the country %s has not changed."; // Necessita de tradução #endif const char *Txt_The_name_of_the_course_X_has_changed_to_Y = // Warning: it is very important to include two %s in the following sentences #if L==0 "El nombre de la asignatura %s ha cambiado a %s."; // Necessita traduccio #elif L==1 "The name of the course %s has changed to %s ."; // Need Übersetzung #elif L==2 "The name of the course %s has changed to %s."; #elif L==3 "El nombre de la asignatura %s ha cambiado a %s."; #elif L==4 "The name of the course %s has changed to %s."; // Besoin de traduction #elif L==5 "El nombre de la asignatura %s ha cambiado a %s."; // Okoteve traducción #elif L==6 "Il nome del corso %s è cambiato a %s."; #elif L==7 "The name of the course %s has changed to %s."; // Potrzebujesz tlumaczenie #elif L==8 "The name of the course %s has changed to %s."; // Necessita de tradução #endif const char *Txt_The_name_of_the_course_X_has_not_changed = // Warning: it is very important to include %s in the following sentences #if L==0 "El nombre de la asignatura %s no ha cambiado."; // Necessita traduccio #elif L==1 "The name of the course %s has not changed."; // Need Übersetzung #elif L==2 "The name of the course %s has not changed."; #elif L==3 "El nombre de la asignatura %s no ha cambiado."; #elif L==4 "The name of the course %s has not changed."; // Besoin de traduction #elif L==5 "El nombre de la asignatura %s no ha cambiado."; // Okoteve traducción #elif L==6 "Il nome del corso %s non è cambiato."; #elif L==7 "The name of the course %s has not changed."; // Potrzebujesz tlumaczenie #elif L==8 "The name of the course %s has not changed."; // Necessita de tradução #endif const char *Txt_The_name_of_the_degree_X_has_changed_to_Y = // Warning: it is very important to include two %s in the following sentences #if L==0 "El nombre de la titulación %s ha cambiado a %s."; // Necessita traduccio #elif L==1 "The name of the degree %s has changed to %s."; // Need Übersetzung #elif L==2 "The name of the degree %s has changed to %s."; #elif L==3 "El nombre de la titulación %s ha cambiado a %s."; #elif L==4 "The name of the degree %s has changed to %s."; // Besoin de traduction #elif L==5 "El nombre de la titulación %s ha cambiado a %s."; // Okoteve traducción #elif L==6 "Il nome della laurea %s è cambiato a %s."; #elif L==7 "The name of the degree %s has changed to %s."; // Potrzebujesz tlumaczenie #elif L==8 "The name of the degree %s has changed to %s."; // Necessita de tradução #endif const char *Txt_The_name_of_the_degree_X_has_not_changed = // Warning: it is very important to include %s in the following sentences #if L==0 "El nombre de la titulación %s no ha cambiado."; // Necessita traduccio #elif L==1 "The name of the degree %s has not changed."; // Need Übersetzung #elif L==2 "The name of the degree %s has not changed."; #elif L==3 "El nombre de la titulación %s no ha cambiado."; #elif L==4 "The name of the degree %s has not changed."; // Besoin de traduction #elif L==5 "El nombre de la titulación %s no ha cambiado."; // Okoteve traducción #elif L==6 "Il nome della laurea %s non è cambiato."; #elif L==7 "The name of the degree %s has not changed."; // Potrzebujesz tlumaczenie #elif L==8 "The name of the degree %s has not changed."; // Necessita de tradução #endif const char *Txt_The_name_of_the_department_X_has_not_changed = // Warning: it is very important to include %s in the following sentences #if L==0 "El nombre del departamento %s no ha cambiado."; // Necessita traduccio #elif L==1 "The name of the department %s has not changed."; // Need Übersetzung #elif L==2 "The name of the department %s has not changed."; #elif L==3 "El nombre del departamento %s no ha cambiado."; #elif L==4 "The name of the department %s has not changed."; // Besoin de traduction #elif L==5 "El nombre del departamento %s no ha cambiado."; // Okoteve traducción #elif L==6 "Il nome del dipartimento %s non è cambiato."; #elif L==7 "The name of the department %s has not changed."; // Potrzebujesz tlumaczenie #elif L==8 "The name of the department %s has not changed."; // Necessita de tradução #endif const char *Txt_The_name_of_the_field_X_has_not_changed = // Warning: it is very important to include %s in the following sentences #if L==0 "El nombre del campo %s no ha cambiado."; // Necessita traduccio #elif L==1 "The name of the field %s has not changed."; // Need Übersetzung #elif L==2 "The name of the field %s has not changed."; #elif L==3 "El nombre del campo %s no ha cambiado."; #elif L==4 "The name of the field %s has not changed."; // Besoin de traduction #elif L==5 "El nombre del campo %s no ha cambiado."; // Okoteve traducción #elif L==6 "Il nome del campo %s non è cambiato."; #elif L==7 "The name of the field %s has not changed."; // Potrzebujesz tlumaczenie #elif L==8 "The name of the field %s has not changed."; // Necessita de tradução #endif const char *Txt_The_name_of_the_group_X_has_not_changed = // Warning: it is very important to include %s in the following sentences #if L==0 "El nombre del grupo %s no ha cambiado."; // Necessita traduccio #elif L==1 "The name of the group %s has not changed."; // Need Übersetzung #elif L==2 "The name of the group %s has not changed."; #elif L==3 "El nombre del grupo %s no ha cambiado."; #elif L==4 "The name of the group %s has not changed."; // Besoin de traduction #elif L==5 "El nombre del grupo %s no ha cambiado."; // Okoteve traducción #elif L==6 "Il nome del gruppo %s non è cambiato."; #elif L==7 "The name of the group %s has not changed."; // Potrzebujesz tlumaczenie #elif L==8 "The name of the group %s has not changed."; // Necessita de tradução #endif const char *Txt_The_name_of_the_holiday_X_has_changed_to_Y = // Warning: it is very important to include two %s in the following sentences #if L==0 "El nombre de la festividad %s ha cambiado a %s."; // Necessita traduccio #elif L==1 "The name of the holiday %s has changed to %s."; // Need Übersetzung #elif L==2 "The name of the holiday %s has changed to %s."; #elif L==3 "El nombre de la festividad %s ha cambiado a %s."; #elif L==4 "The name of the holiday %s has changed to %s."; // Besoin de traduction #elif L==5 "El nombre de la festividad %s ha cambiado a %s."; // Okoteve traducción #elif L==6 "Il nome della festività %s è cambiato a %s."; #elif L==7 "The name of the holiday %s has changed to %s."; // Potrzebujesz tlumaczenie #elif L==8 "The name of the holiday %s has changed to %s."; // Necessita de tradução #endif const char *Txt_The_name_of_the_holiday_X_has_not_changed = // Warning: it is very important to include %s in the following sentences #if L==0 "El nombre de la festividad %s no ha cambiado."; // Necessita traduccio #elif L==1 "The name of the holiday %s has not changed."; // Need Übersetzung #elif L==2 "The name of the holiday %s has not changed."; #elif L==3 "El nombre de la festividad %s no ha cambiado."; #elif L==4 "The name of the holiday %s has not changed."; // Besoin de traduction #elif L==5 "El nombre de la festividad %s no ha cambiado."; // Okoteve traducción #elif L==6 "Il nome della festività %s non è cambiato."; #elif L==7 "The name of the holiday %s has not changed."; // Potrzebujesz tlumaczenie #elif L==8 "The name of the holiday %s has not changed."; // Necessita de tradução #endif const char *Txt_The_name_of_the_institution_X_has_changed_to_Y = // Warning: it is very important to include two %s in the following sentences #if L==0 "El nombre de la institución %s ha cambiado a %s."; // Necessita traduccio #elif L==1 "The name of the institution %s has changed to %s."; // Need Übersetzung #elif L==2 "The name of the institution %s has changed to %s."; #elif L==3 "El nombre de la institución %s ha cambiado a %s."; #elif L==4 "The name of the institution %s has changed to %s."; // Besoin de traduction #elif L==5 "El nombre de la institución %s ha cambiado a %s."; // Okoteve traducción #elif L==6 "Il nome dell'istituzione %s è cambiato a %s."; #elif L==7 "The name of the institution %s has changed to %s."; // Potrzebujesz tlumaczenie #elif L==8 "The name of the institution %s has changed to %s."; // Necessita de tradução #endif const char *Txt_The_name_of_the_institution_X_has_not_changed = // Warning: it is very important to include %s in the following sentences #if L==0 "El nombre de la institución %s no ha cambiado."; // Necessita traduccio #elif L==1 "The name of the institution %s has not changed."; // Need Übersetzung #elif L==2 "The name of the institution %s has not changed."; #elif L==3 "El nombre de la institución %s no ha cambiado."; #elif L==4 "The name of the institution %s has not changed."; // Besoin de traduction #elif L==5 "El nombre de la institución %s no ha cambiado."; // Okoteve traducción #elif L==6 "Il nome dell'istituzione %s non è cambiato."; #elif L==7 "The name of the institution %s has not changed."; // Potrzebujesz tlumaczenie #elif L==8 "The name of the institution %s has not changed."; // Necessita de tradução #endif const char *Txt_The_name_of_the_link_X_has_not_changed = // Warning: it is very important to include %s in the following sentences #if L==0 "El nombre del enlace %s no ha cambiado."; // Necessita traduccio #elif L==1 "The name of the link %s has not changed."; // Need Übersetzung #elif L==2 "The name of the link %s has not changed."; #elif L==3 "El nombre del enlace %s no ha cambiado."; #elif L==4 "The name of the link %s has not changed."; // Besoin de traduction #elif L==5 "El nombre del enlace %s no ha cambiado."; // Okoteve traducción #elif L==6 "Il nome del link %s non è cambiato."; #elif L==7 "The name of the link %s has not changed."; // Potrzebujesz tlumaczenie #elif L==8 "The name of the link %s has not changed."; // Necessita de tradução #endif const char *Txt_The_name_of_the_place_X_has_not_changed = // Warning: it is very important to include %s in the following sentences #if L==0 "El nombre del lugar %s no ha cambiado."; // Necessita traduccio #elif L==1 "The name of the place %s has not changed."; // Need Übersetzung #elif L==2 "The name of the place %s has not changed."; #elif L==3 "El nombre del lugar %s no ha cambiado."; #elif L==4 "The name of the place %s has not changed."; // Besoin de traduction #elif L==5 "El nombre del lugar %s no ha cambiado."; // Okoteve traducción #elif L==6 "Il nome del luogo %s non è cambiato."; #elif L==7 "The name of the place %s has not changed."; // Potrzebujesz tlumaczenie #elif L==8 "The name of the place %s has not changed."; // Necessita de tradução #endif const char *Txt_The_name_of_the_plugin_X_has_not_changed = // Warning: it is very important to include %s in the following sentences #if L==0 "El nombre del complemento %s no ha cambiado."; // Necessita traduccio #elif L==1 "The name of the plugin %s has not changed."; // Need Übersetzung #elif L==2 "The name of the plugin %s has not changed."; #elif L==3 "El nombre del complemento %s no ha cambiado."; #elif L==4 "The name of the plugin %s has not changed."; // Besoin de traduction #elif L==5 "El nombre del complemento %s no ha cambiado."; // Okoteve traducción #elif L==6 "Il nome del plugin %s non è cambiato."; #elif L==7 "The name of the plugin %s has not changed."; // Potrzebujesz tlumaczenie #elif L==8 "The name of the plugin %s has not changed."; // Necessita de tradução #endif const char *Txt_The_name_of_the_type_of_degree_X_has_not_changed = // Warning: it is very important to include %s in the following sentences #if L==0 "El nombre del tipo de titulación %s no ha cambiado."; // Necessita traduccio #elif L==1 "The name of the type of degree %s has not changed."; // Need Übersetzung #elif L==2 "The name of the type of degree %s has not changed."; #elif L==3 "El nombre del tipo de titulación %s no ha cambiado."; #elif L==4 "The name of the type of degree %s has not changed."; // Besoin de traduction #elif L==5 "El nombre del tipo de titulación %s no ha cambiado."; // Okoteve traducción #elif L==6 "Il nome del tipo di laurea %s non è cambiato."; #elif L==7 "The name of the type of degree %s has not changed."; // Potrzebujesz tlumaczenie #elif L==8 "The name of the type of degree %s has not changed."; // Necessita de tradução #endif const char *Txt_The_name_of_the_type_of_group_X_has_not_changed = // Warning: it is very important to include %s in the following sentences #if L==0 "El nombre del tipo de grupo %s no ha cambiado."; // Necessita traduccio #elif L==1 "The name of the type of group %s has not changed."; // Need Übersetzung #elif L==2 "The name of the type of group %s has not changed."; #elif L==3 "El nombre del tipo de grupo %s no ha cambiado."; #elif L==4 "The name of the type of group %s has not changed."; // Besoin de traduction #elif L==5 "El nombre del tipo de grupo %s no ha cambiado."; // Okoteve traducción #elif L==6 "Il nome del tipo di gruppo %s non è cambiato."; #elif L==7 "The name of the type of group %s has not changed."; // Potrzebujesz tlumaczenie #elif L==8 "The name of the type of group %s has not changed."; // Necessita de tradução #endif const char *Txt_The_new_IP_address_is_X = // Warning: it is very important to include %s in the following sentences #if L==0 "La nueva dirección IP es %s."; // Necessita traduccio #elif L==1 "The new IP address is %s."; // Need Übersetzung #elif L==2 "The new IP address is %s."; #elif L==3 "La nueva dirección IP es %s."; #elif L==4 "The new IP address is %s."; // Besoin de traduction #elif L==5 "La nueva dirección IP es %s."; // Okoteve traducción #elif L==6 "Il nuovo indirizzo IP è %s."; #elif L==7 "The new IP address is %s."; // Potrzebujesz tlumaczenie #elif L==8 "The new IP address is %s."; // Necessita de tradução #endif const char *Txt_The_new_logo_is_X = // Warning: it is very important to include %s in the following sentences #if L==0 "El nuevo logo es %s."; // Necessita traduccio #elif L==1 "The new logo is %s."; // Need Übersetzung #elif L==2 "The new logo is %s."; #elif L==3 "El nuevo logo es %s."; #elif L==4 "The new logo is %s."; // Besoin de traduction #elif L==5 "El nuevo logo es %s."; // Okoteve traducción #elif L==6 "Il nuovo logo è %s."; #elif L==7 "The new logo is %s."; // Potrzebujesz tlumaczenie #elif L==8 "The new logo is %s."; // Necessita de tradução #endif const char *Txt_The_nickname_entered_X_is_not_valid_ = // Warning: it is very important to include %s and two %u in the following sentences #if L==0 "El apodo introducido" " %s no es válido.
" "El apodo debe comenzar por @" " y tener una longitud entre %u y %u caracteres (sin contar la @).
" "Cada carácter puede ser una letra (a-z, A-Z)," " un dígito (0-9) o "_"."; // Necessita traduccio #elif L==1 "The nickname entered" " %s is not valid.
" "Your nickname must start with @" " and must have a length between %u and %u characters (not including the @).
" "Each character can be a letter (a-z, A-Z)," " a digit (0-9) or "_"."; // Need Übersetzung #elif L==2 "The nickname entered" " %s is not valid.
" "Your nickname must start with @" " and must have a length between %u and %u characters (not including the @).
" "Each character can be a letter (a-z, A-Z)," " a digit (0-9) or "_"."; #elif L==3 "El apodo introducido" " %s no es válido.
" "El apodo debe comenzar por @" " y tener una longitud entre %u y %u caracteres (sin contar la @).
" "Cada carácter puede ser una letra (a-z, A-Z)," " un dígito (0-9) o "_"."; #elif L==4 "The nickname entered" " %s is not valid.
" "Your nickname must start with @" " and must have a length between %u and %u characters (not including the @).
" "Each character can be a letter (a-z, A-Z)," " a digit (0-9) or "_"."; // Besoin de traduction #elif L==5 "El apodo introducido" " %s no es válido.
" "El apodo debe comenzar por @" " y tener una longitud entre %u y %u caracteres (sin contar la @).
" "Cada carácter puede ser una letra (a-z, A-Z)," " un dígito (0-9) o "_"."; // Okoteve traducción #elif L==6 "Il nome utente immesso" " %s non è valido.
" "Your nickname must start with @" " and must have a length between %u and %u characters (not including the @).
" "Each character can be a letter (a-z, A-Z)," " a digit (0-9) or "_"."; // Bisogno di traduzione #elif L==7 "The nickname entered" " %s is not valid.
" "Your nickname must start with @" " and must have a length between %u and %u characters (not including the @).
" "Each character can be a letter (a-z, A-Z)," " a digit (0-9) or "_"."; // Potrzebujesz tlumaczenie #elif L==8 "The nickname entered" " %s is not valid.
" "Your nickname must start with @" " and must have a length between %u and %u characters (not including the @).
" "Each character can be a letter (a-z, A-Z)," " a digit (0-9) or "_"."; // Necessita de tradução #endif const char *Txt_The_notice_you_enter_here_will_appear_as_a_yellow_note_ = // Warning: it is very important to include %s in the following sentences #if L==0 "El aviso que escriba aquí aparecerá en forma de nota amarilla" " a la izquierda de la página y será visible por todo el mundo" " (no sólo por los usuarios de la asignatura %s).
" "El mensaje debe ser breve." " Si desea crear un aviso extenso o de acceso exclusivo para sus estudiantes," " puede usar el foro de la asignatura," " enviar un mensaje a todos a través del sistema de mensajería interna," " o incluso crear un archivo con el texto y añadirlo a la zona de documentos."; // Necessita traduccio #elif L==1 "The notice you enter here will appear as a yellow note" " in the left of the page and will be visible worldwide" " (not just by users of the course %s).
" "The message should be short." " If you want to create a long notice or a notice with exclusive access to your students," " you can use the forum of the course," " or send a message to all through the internal messaging system," " or even create a file with the text and upload it to the documents area."; // Need Übersetzung #elif L==2 "The notice you enter here will appear as a yellow note" " in the left of the page and will be visible worldwide" " (not just by users of the course %s).
" "The message should be short." " If you want to create a long notice or a notice with exclusive access to your students," " you can use the forum of the course," " or send a message to all through the internal messaging system," " or even create a file with the text and upload it to the documents area."; #elif L==3 "El aviso que escriba aquí aparecerá en forma de nota amarilla" " a la izquierda de la página y será visible por todo el mundo" " (no sólo por los usuarios de la asignatura %s).
" "El mensaje debe ser breve." " Si desea crear un aviso extenso o de acceso exclusivo para sus estudiantes," " puede usar el foro de la asignatura," " enviar un mensaje a todos a través del sistema de mensajería interna," " o incluso crear un archivo con el texto y añadirlo a la zona de documentos."; #elif L==4 "The notice you enter here will appear as a yellow note" " in the left of the page and will be visible worldwide" " (not just by users of the course %s).
" "The message should be short." " If you want to create a long notice or a notice with exclusive access to your students," " you can use the forum of the course," " or send a message to all through the internal messaging system," " or even create a file with the text and upload it to the documents area."; // Besoin de traduction #elif L==5 "El aviso que escriba aquí aparecerá en forma de nota amarilla" " a la izquierda de la página y será visible por todo el mundo" " (no sólo por los usuarios de la asignatura %s).
" "El mensaje debe ser breve." " Si desea crear un aviso extenso o de acceso exclusivo para sus estudiantes," " puede usar el foro de la asignatura," " enviar un mensaje a todos a través del sistema de mensajería interna," " o incluso crear un archivo con el texto y añadirlo a la zona de documentos."; // Okoteve traducción #elif L==6 "L'avviso che hai inserito qui apparirà come una nota in giallo" " sulla parte sinistra della pagina è sarà visibile a tutti" " (non solo da utenti del corso %s).
" "Il messaggio dovrà essere breve." " Se vuoi creare un avviso lungo o un avviso con accesso esclusivo per i tuoi studenti," " potrai usare il forum del corso," " o inviare un messaggio a tutti attraverso il sistema di messaggistica interno," " o sempre creare un file con il testo e caricarlo nell'area documenti."; #elif L==7 "The notice you enter here will appear as a yellow note" " in the left of the page and will be visible worldwide" " (not just by users of the course %s).
" "The message should be short." " If you want to create a long notice or a notice with exclusive access to your students," " you can use the forum of the course," " or send a message to all through the internal messaging system," " or even create a file with the text and upload it to the documents area."; // Potrzebujesz tlumaczenie #elif L==8 "The notice you enter here will appear as a yellow note" " in the left of the page and will be visible worldwide" " (not just by users of the course %s).
" "The message should be short." " If you want to create a long notice or a notice with exclusive access to your students," " you can use the forum of the course," " or send a message to all through the internal messaging system," " or even create a file with the text and upload it to the documents area."; // Necessita de tradução #endif const char *Txt_The_new_web_address_is_X = // Warning: it is very important to include %s in the following sentences #if L==0 "La nueva dirección web es %s."; // Necessita traduccio #elif L==1 "The new web address is %s."; // Need Übersetzung #elif L==2 "The new web address is %s."; #elif L==3 "La nueva dirección web es %s."; #elif L==4 "The new web address is %s."; // Besoin de traduction #elif L==5 "La nueva dirección web es %s."; // Okoteve traducción #elif L==6 "Il nuovo indirizzo web è %s."; #elif L==7 "The new web address is %s."; // Potrzebujesz tlumaczenie #elif L==8 "The new web address is %s."; // Necessita de tradução #endif const char *Txt_The_new_description_is_X = // Warning: it is very important to include %s in the following sentences #if L==0 "La nueva descripción web es %s."; // Necessita traduccio #elif L==1 "The new description is %s."; // Need Übersetzung #elif L==2 "The new description is %s."; #elif L==3 "La nueva descripción web es %s."; #elif L==4 "The new description is %s."; // Besoin de traduction #elif L==5 "La nueva descripción web es %s."; // Okoteve traducción #elif L==6 "La nuova descrizione è %s."; #elif L==7 "The new description is %s."; // Potrzebujesz tlumaczenie #elif L==8 "The new description is %s."; // Necessita de tradução #endif const char *Txt_The_new_image_is_X = // Warning: it is very important to include %s in the following sentences #if L==0 "La nueva imagen es %s."; // Necessita traduccio #elif L==1 "The new image is %s."; // Need Übersetzung #elif L==2 "The new image is %s."; #elif L==3 "La nueva imagen es %s."; #elif L==4 "The new image is %s."; // Besoin de traduction #elif L==5 "La nueva imagen es %s."; // Okoteve traducción #elif L==6 "La nuova image è %s."; #elif L==7 "The new image is %s."; // Potrzebujesz tlumaczenie #elif L==8 "The new image is %s."; // Necessita de tradução #endif const char *Txt_The_new_password_can_not_consist_only_of_digits = #if L==0 "La contraseña nueva no puede estar formada" " sólo por dígitos."; // Necessita traduccio #elif L==1 "The new password can not consist" " only of digits."; // Need Übersetzung #elif L==2 "The new password can not consist" " only of digits."; #elif L==3 "La contraseña nueva no puede estar formada" " sólo por dígitos."; #elif L==4 "The new password can not consist" " only of digits."; // Besoin de traduction #elif L==5 "La contraseña nueva no puede estar formada" " sólo por dígitos."; // Okoteve traducción #elif L==6 "La nuova password non può consistere" " solo di numeri."; #elif L==7 "The new password can not consist" " only of digits."; // Potrzebujesz tlumaczenie #elif L==8 "The new password can not consist" " only of digits."; // Necessita de tradução #endif const char *Txt_The_new_password_can_not_contain_spaces = #if L==0 "La contraseña nueva no puede tener espacios."; // Necessita traduccio #elif L==1 "The new password can not contain spaces."; // Need Übersetzung #elif L==2 "The new password can not contain spaces."; #elif L==3 "La contraseña nueva no puede tener espacios."; #elif L==4 "The new password can not contain spaces."; // Besoin de traduction #elif L==5 "La contraseña nueva no puede tener espacios."; // Okoteve traducción #elif L==6 "La nuova password non può contenere spazi."; #elif L==7 "The new password can not contain spaces."; // Potrzebujesz tlumaczenie #elif L==8 "The new password can not contain spaces."; // Necessita de tradução #endif const char *Txt_The_new_password_is_too_trivial_ = #if L==0 "La contraseña nueva es demasiado fácil." " Use otra más difícil de averiguar."; // Necessita traduccio #elif L==1 "The new password is too trivial." " Use other harder to guess."; // Need Übersetzung #elif L==2 "The new password is too trivial." " Use other harder to guess."; #elif L==3 "La contraseña nueva es demasiado fácil." " Use otra más difícil de averiguar."; #elif L==4 "The new password is too trivial." " Use other harder to guess."; // Besoin de traduction #elif L==5 "La contraseña nueva es demasiado fácil." " Use otra más difícil de averiguar."; // Okoteve traducción #elif L==6 "La nuova password è troppo semplice." " Utilizza un'altra più difficile da individuare."; #elif L==7 "The new password is too trivial." " Use other harder to guess."; // Potrzebujesz tlumaczenie #elif L==8 "The new password is too trivial." " Use other harder to guess."; // Necessita de tradução #endif const char *Txt_The_new_password_must_be_at_least_X_characters = // Warning: it is very important to include %u in the following sentences #if L==0 "La contraseña nueva ha de tener al menos %u caracteres."; // Necessita traduccio #elif L==1 "The new password must be at least %u characters."; // Need Übersetzung #elif L==2 "The new password must be at least %u characters."; #elif L==3 "La contraseña nueva ha de tener al menos %u caracteres."; #elif L==4 "The new password must be at least %u characters."; // Besoin de traduction #elif L==5 "La contraseña nueva ha de tener al menos %u caracteres."; // Okoteve traducción #elif L==6 "La nuova password dovrebbe essere di almeno %u caratteri."; #elif L==7 "The new password must be at least %u characters."; // Potrzebujesz tlumaczenie #elif L==8 "The new password must be at least %u characters."; // Necessita de tradução #endif const char *Txt_The_new_URL_is_X = // Warning: it is very important to include %s in the following sentences #if L==0 "El nuevo URL es %s."; // Necessita traduccio #elif L==1 "The new URL is %s."; // Need Übersetzung #elif L==2 "The new URL is %s."; #elif L==3 "El nuevo URL es %s."; #elif L==4 "The new URL is %s."; // Besoin de traduction #elif L==5 "El nuevo URL es %s."; // Okoteve traducción #elif L==6 "La nuova URL è %s."; #elif L==7 "The new URL is %s."; // Potrzebujesz tlumaczenie #elif L==8 "The new URL is %s."; // Necessita de tradução #endif const char *Txt_The_nickname_X_had_been_registered_by_another_user = // Warning: it is very important to include %s in the following sentences #if L==0 "El apodo @%s" " ya había sido registrado por otro usuario."; // Necessita traduccio #elif L==1 "The nickname @%s" " had been registered by another user."; // Need Übersetzung #elif L==2 "The nickname @%s" " had been registered by another user."; #elif L==3 "El apodo @%s" " ya había sido registrado por otro usuario."; #elif L==4 "The nickname @%s" " had been enrolled by another user."; // Besoin de traduction #elif L==5 "El apodo @%s" " ya había sido registrado por otro usuario."; // Okoteve traducción #elif L==6 "Il nome utente @%s" " è stato registrato da un altro utente."; #elif L==7 "The nickname @%s" " had been registered by another user."; // Potrzebujesz tlumaczenie #elif L==8 "The nickname @%s" " had been registered by another user."; // Necessita de tradução #endif const char *Txt_The_nickname_X_matches_the_one_you_had_previously_registered = // Warning: it is very important to include %s in the following sentences #if L==0 "El apodo @%s" " coincide con el que ya tenía registrado previamente."; // Necessita traduccio #elif L==1 "The nickname @%s" " matches the one you had previously registered."; // Need Übersetzung #elif L==2 "The nickname @%s" " matches the one you had previously registered."; #elif L==3 "El apodo @%s" " coincide con el que ya tenía registrado previamente."; #elif L==4 "The nickname @%s" " matches the one you had previously registered."; // Besoin de traduction #elif L==5 "El apodo @%s" " coincide con el que ya tenía registrado previamente."; // Okoteve traducción #elif L==6 "Il nome utente @%s" " coincide con quello che hai precedentemente registrato."; #elif L==7 "The nickname @%s" " matches the one you had previously registered."; // Potrzebujesz tlumaczenie #elif L==8 "The nickname @%s" " matches the one you had previously registered."; // Necessita de tradução #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 #if L==0 "El nº de líneas de edición del campo %s no ha cambiado."; // Necessita traduccio #elif L==1 "The number of editing lines in the record field %s has not changed."; // Need Übersetzung #elif L==2 "The number of editing lines in the record field %s has not changed."; #elif L==3 "El nº de líneas de edición del campo %s no ha cambiado."; #elif L==4 "The number of editing lines in the record field %s has not changed."; // Besoin de traduction #elif L==5 "El nº de líneas de edición del campo %s no ha cambiado."; // Okoteve traducción #elif L==6 "Il numero di linee editate nel campo scheda %s non è cambiato."; #elif L==7 "The number of editing lines in the record field %s has not changed."; // Potrzebujesz tlumaczenie #elif L==8 "The number of editing lines in the record field %s has not changed."; // Necessita de tradução #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 #if L==0 "El número de preguntas debe estar en el intervalo [%u,%u]."; // Necessita traduccio #elif L==1 "Die Anzahl der Fragen muss sich im Intervall [%u,%u] befinden."; #elif L==2 "The number of questions must be in the interval [%u,%u]."; #elif L==3 "El número de preguntas debe estar en el intervalo [%u,%u]."; #elif L==4 "The number of questions must be in the interval [%u,%u]."; // Besoin de traduction #elif L==5 "El número de preguntas debe estar en el intervalo [%u,%u]."; // Okoteve traducción #elif L==6 "Il numero di domande dovrebbe stare nell'intervallo [%u,%u]."; #elif L==7 "The number of questions must be in the interval [%u,%u]."; // Potrzebujesz tlumaczenie #elif L==8 "The number of questions must be in the interval [%u,%u]."; // Necessita de tradução #endif const char *Txt_The_number_of_rows_is_now_X = // Warning: it is very important to include %u in the following sentences #if L==0 "El número de filas es ahora %u."; // Necessita traduccio #elif L==1 "Die Anzahl der Zeilen ist jetzt %u."; #elif L==2 "The number of rows is now %u."; #elif L==3 "El número de filas es ahora %u."; #elif L==4 "The number of rows is now %u."; // Besoin de traduction #elif L==5 "El número de filas es ahora %u."; // Okoteve traducción #elif L==6 "Il numero di righe è ora %u."; #elif L==7 "The number of rows is now %u."; // Potrzebujesz tlumaczenie #elif L==8 "The number of rows is now %u."; // Necessita de tradução #endif const char *Txt_The_numerical_code_X_already_exists = // Warning: it is very important to include %03lu in the following sentences #if L==0 "El código numérico ISO 3166-1 %03ld ya existe."; // Necessita traduccio #elif L==1 "The ISO 3166-1 numerical code %03ld already exists."; // Need Übersetzung #elif L==2 "The ISO 3166-1 numerical code %03ld already exists."; #elif L==3 "El código numérico ISO 3166-1 %03ld ya existe."; #elif L==4 "The ISO 3166-1 numerical code %03ld already exists."; // Besoin de traduction #elif L==5 "El código numérico ISO 3166-1 %03ld ya existe."; // Okoteve traducción #elif L==6 "Il codice numerico ISO 3166-1 %03ld già esiste."; #elif L==7 "The ISO 3166-1 numerical code %03ld already exists."; // Potrzebujesz tlumaczenie #elif L==8 "The ISO 3166-1 numerical code %03ld already exists."; // Necessita de tradução #endif const char *Txt_The_X_password_has_been_changed_successfully = // Warning: it is very important to include %s in the following sentences #if L==0 "La contraseña de %s se ha modificado con éxito."; // Necessita traduccio #elif L==1 "The %s password has been changed successfully."; // Need Übersetzung #elif L==2 "The %s password has been changed successfully."; #elif L==3 "La contraseña de %s se ha modificado con éxito."; #elif L==4 "The %s password has been changed successfully."; // Besoin de traduction #elif L==5 "La contraseña de %s se ha modificado con éxito."; // Okoteve traducción #elif L==6 "La %s password è stata cambiata con successo."; #elif L==7 "The %s password has been changed successfully."; // Potrzebujesz tlumaczenie #elif L==8 "The %s password has been changed successfully."; // Necessita de tradução #endif const char *Txt_The_place_X_already_exists = // Warning: it is very important to include %s in the following sentences #if L==0 "El lugar %s ya existe."; // Necessita traduccio #elif L==1 "Der Standort %s wurde bereits eingegeben."; #elif L==2 "The place %s already exists."; #elif L==3 "El lugar %s ya existe."; #elif L==4 "The place %s already exists."; // Besoin de traduction #elif L==5 "El lugar %s ya existe."; // Okoteve traducción #elif L==6 "Il luogo %s già esiste."; #elif L==7 "The place %s already exists."; // Potrzebujesz tlumaczenie #elif L==8 "The place %s already exists."; // Necessita de tradução #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 #if L==0 "El lugar %s ha pasado a denominarse %s."; // Necessita traduccio #elif L==1 "The place %s has been renamed as %s."; // Need Übersetzung #elif L==2 "The place %s has been renamed as %s."; #elif L==3 "El lugar %s ha pasado a denominarse %s."; #elif L==4 "The place %s has been renamed as %s."; // Besoin de traduction #elif L==5 "El lugar %s ha pasado a denominarse %s."; // Okoteve traducción #elif L==6 "Il luogo %s è stato rinominato come %s."; #elif L==7 "The place %s has been renamed as %s."; // Potrzebujesz tlumaczenie #elif L==8 "The place %s has been renamed as %s."; // Necessita de tradução #endif const char *Txt_The_place_of_the_centre_has_changed = #if L==0 "El lugar del centro ha cambiado."; // Necessita traduccio #elif L==1 "The place of the centre has changed."; // Need Übersetzung #elif L==2 "The place of the centre has changed."; #elif L==3 "El lugar del centro ha cambiado."; #elif L==4 "The place of the centre has changed."; // Besoin de traduction #elif L==5 "El lugar del centro ha cambiado."; // Okoteve traducción #elif L==6 "Il luogo del centro è cambiato."; #elif L==7 "The place of the centre has changed."; // Potrzebujesz tlumaczenie #elif L==8 "The place of the centre has changed."; // Necessita de tradução #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 #if L==0 "El lugar de la festividad %s ha cambiado a %s."; // Necessita traduccio #elif L==1 "The place of the holiday %s has changed to %s."; // Need Übersetzung #elif L==2 "The place of the holiday %s has changed to %s."; #elif L==3 "El lugar de la festividad %s ha cambiado a %s."; #elif L==4 "The place of the holiday %s has changed to %s."; // Besoin de traduction #elif L==5 "El lugar de la festividad %s ha cambiado a %s."; // Okoteve traducción #elif L==6 "Il luogo della festività %s è cambiato a %s."; #elif L==7 "The place of the holiday %s has changed to %s."; // Potrzebujesz tlumaczenie #elif L==8 "The place of the holiday %s has changed to %s."; // Necessita de tradução #endif const char *Txt_The_plugin_X_already_exists = // Warning: it is very important to include %s in the following sentences #if L==0 "El complemento %s ya existe."; // Necessita traduccio #elif L==1 "Der Plugin %s wurde bereits installiert."; #elif L==2 "The plugin %s already exists."; #elif L==3 "El complemento %s ya existe."; #elif L==4 "The plugin %s already exists."; // Besoin de traduction #elif L==5 "El complemento %s ya existe."; // Okoteve traducción #elif L==6 "Il plugin %s già esiste."; #elif L==7 "The plugin %s already exists."; // Potrzebujesz tlumaczenie #elif L==8 "The plugin %s already exists."; // Necessita de tradução #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 #if L==0 "El complemento %s ha pasado a denominarse %s."; // Necessita traduccio #elif L==1 "The plugin %s has been renamed as %s."; // Need Übersetzung #elif L==2 "The plugin %s has been renamed as %s."; #elif L==3 "El complemento %s ha pasado a denominarse %s."; #elif L==4 "The plugin %s has been renamed as %s."; // Besoin de traduction #elif L==5 "El complemento %s ha pasado a denominarse %s."; // Okoteve traducción #elif L==6 "Il plugin %s è stato rinominato come %s."; #elif L==7 "The plugin %s has been renamed as %s."; // Potrzebujesz tlumaczenie #elif L==8 "The plugin %s has been renamed as %s."; // Necessita de tradução #endif const char *Txt_The_properties_of_file_X_have_been_saved = // Warning: it is very important to include %s in the following sentences #if L==0 "Las propiedades del archivo %s se han guardado."; // Necessita traduccio #elif L==1 "The properties of file %s have been saved."; // Need Übersetzung #elif L==2 "The properties of file %s have been saved."; #elif L==3 "Las propiedades del archivo %s se han guardado."; #elif L==4 "The properties of file %s have been saved."; // Besoin de traduction #elif L==5 "Las propiedades del archivo %s se han guardado."; // Okoteve traducción #elif L==6 "The properties of file %s have been saved."; // Bisogno di traduzione #elif L==7 "The properties of file %s have been saved."; // Potrzebujesz tlumaczenie #elif L==8 "The properties of file %s have been saved."; // Necessita de tradução #endif const char *Txt_The_record_field_X_already_exists = // Warning: it is very important to include %s in the following sentences #if L==0 "El campo de ficha %s ya existe."; // Necessita traduccio #elif L==1 "Das Datenfeld %s wurde bereits erstellt."; #elif L==2 "The record field %s already exists."; #elif L==3 "El campo de ficha %s ya existe."; #elif L==4 "The record field %s already exists."; // Besoin de traduction #elif L==5 "El campo de ficha %s ya existe."; // Okoteve traducción #elif L==6 "Il campo di scheda %s già esiste."; #elif L==7 "The record field %s already exists."; // Potrzebujesz tlumaczenie #elif L==8 "The record field %s already exists."; // Necessita de tradução #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 #if L==0 "El campo de ficha %s ha pasado a denominarse %s."; // Necessita traduccio #elif L==1 "The record field %s has been renamed as %s."; // Need Übersetzung #elif L==2 "The record field %s has been renamed as %s."; #elif L==3 "El campo de ficha %s ha pasado a denominarse %s."; #elif L==4 "The record field %s has been renamed as %s."; // Besoin de traduction #elif L==5 "El campo de ficha %s ha pasado a denominarse %s."; // Okoteve traducción #elif L==6 "Il campo di scheda %s è stato rinominato come %s."; #elif L==7 "The record field %s has been renamed as %s."; // Potrzebujesz tlumaczenie #elif L==8 "The record field %s has been renamed as %s."; // Necessita de tradução #endif const char *Txt_The_enrollment_of_students_into_groups_of_type_X_is_now_mandatory = // Warning: it is very important to include %s in the following sentences #if L==0 "La adscripción de estudiantes a grupos del tipo %s es ahora obligatoria."; // Necessita traduccio #elif L==1 "The enrollment of students into groups of type %s is now mandatory."; // Need Übersetzung #elif L==2 "The enrollment of students into groups of type %s is now mandatory."; #elif L==3 "La adscripción de estudiantes a grupos del tipo %s es ahora obligatoria."; #elif L==4 "The enrollment of students into groups of type %s is now mandatory."; // Besoin de traduction #elif L==5 "La adscripción de estudiantes a grupos del tipo %s es ahora obligatoria."; // Okoteve traducción #elif L==6 "La registrazione di studenti nei gruppi di tipo %s è ora obbligatoria."; #elif L==7 "The enrollment of students into groups of type %s is now mandatory."; // Potrzebujesz tlumaczenie #elif L==8 "The enrollment of students into groups of type %s is now mandatory."; // Necessita de tradução #endif const char *Txt_The_enrollment_of_students_into_groups_of_type_X_is_now_voluntary = // Warning: it is very important to include %s in the following sentences #if L==0 "La adscripción de estudiantes a grupos del tipo %s es ahora voluntaria."; // Necessita traduccio #elif L==1 "The enrollment of students into groups of type %s is now voluntary."; // Need Übersetzung #elif L==2 "The enrollment of students into groups of type %s is now voluntary."; #elif L==3 "La adscripción de estudiantes a grupos del tipo %s es ahora voluntaria."; #elif L==4 "The enrollment of students into groups of type %s is now voluntary."; // Besoin de traduction #elif L==5 "La adscripción de estudiantes a grupos del tipo %s es ahora voluntaria."; // Okoteve traducción #elif L==6 "La registrazione di studenti nei gruppi di tipo %s è ora volontaria."; #elif L==7 "The enrollment of students into groups of type %s is now voluntary."; // Potrzebujesz tlumaczenie #elif L==8 "The enrollment of students into groups of type %s is now voluntary."; // Necessita de tradução #endif const char *Txt_The_requested_group_changes_were_successful = #if L==0 "Els canvis de grup sol·licitats s'han realitzat correctament."; #elif L==1 "The requested group changes were successful."; // Need Übersetzung #elif L==2 "The requested group changes were successful."; #elif L==3 "Los cambios de grupo solicitados se han realizado correctamente."; #elif L==4 "Les changements de groupe demandées ont réussi."; #elif L==5 "Los cambios de grupo solicitados se han realizado correctamente."; // Okoteve traducción #elif L==6 "I cambiamenti di gruppi richieste hanno avuto successo."; #elif L==7 "The requested group changes were successful."; // Potrzebujesz tlumaczenie #elif L==8 "The requested group changes were successful."; // Necessita de tradução #endif const char *Txt_The_date_time_of_opening_of_groups_has_changed = #if L==0 "La data / hora d'obertura de grups s'ha modificat."; #elif L==1 "The date / time of opening of groups has changed."; // Need Übersetzung #elif L==2 "The date / time of opening of groups has changed."; #elif L==3 "Los cambios de grupo solicitados se han realizado correctamente."; #elif L==4 "The date / time of opening of groups has changed."; // Besoin de traduction #elif L==5 "Los cambios de grupo solicitados se han realizado correctamente."; // Okoteve traducción #elif L==6 "La data / ora di apertura dei gruppi è cambiata."; #elif L==7 "The date / time of opening of groups has changed."; // Potrzebujesz tlumaczenie #elif L==8 "The date / time of opening of groups has changed."; // Necessita de tradução #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 #if L==0 "El rol de %s" " en la asignatura %s" " ha cambiado de %s a %s."; // Necessita traduccio #elif L==1 "The role of %s" " in the course %s" " has changed from %s to %s."; // Need Übersetzung #elif L==2 "The role of %s" " in the course %s" " has changed from %s to %s."; #elif L==3 "El rol de %s" " en la asignatura %s" " ha cambiado de %s a %s."; #elif L==4 "The role of %s" " in the course %s" " has changed from %s to %s."; // Besoin de traduction #elif L==5 "El rol de %s" " en la asignatura %s" " ha cambiado de %s a %s."; // Okoteve traducción #elif L==6 "Il ruolo de %s" " nel corso %s" " è cambiato da %s a %s."; #elif L==7 "The role of %s" " in the course %s" " has changed from %s to %s."; // Potrzebujesz tlumaczenie #elif L==8 "The role of %s" " in the course %s" " has changed from %s to %s."; // Necessita de tradução #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 #if L==0 "Se han eliminado los %u estudiantes que había en la asignatura %s."; // Necessita traduccio #elif L==1 "The %u students who belonged to the course %s have been removed from it."; // Need Übersetzung #elif L==2 "The %u students who belonged to the course %s have been removed from it."; #elif L==3 "Se han eliminado los %u estudiantes que había en la asignatura %s."; #elif L==4 "The %u students who belonged to the course %s have been removed from it."; // Besoin de traduction #elif L==5 "Se han eliminado los %u estudiantes que había en la asignatura %s."; // Okoteve traducción #elif L==6 "Gli %u studenti che appartengono al corso %s sono stati rimossi da esso."; #elif L==7 "The %u students who belonged to the course %s have been removed from it."; // Potrzebujesz tlumaczenie #elif L==8 "The %u students who belonged to the course %s have been removed from it."; // Necessita de tradução #endif const char *Txt_The_search_term_must_be_longer = #if L==0 "La palabra a buscar debe ser más larga."; // Necessita traduccio #elif L==1 "The search term must be longer."; // Need Übersetzung #elif L==2 "The search term must be longer."; #elif L==3 "La palabra a buscar debe ser más larga."; #elif L==4 "The search term must be longer."; // Besoin de traduction #elif L==5 "La palabra a buscar debe ser más larga."; // Okoteve traducción #elif L==6 "The search term must be longer."; // Bisogno di traduzione #elif L==7 "The search term must be longer."; // Potrzebujesz tlumaczenie #elif L==8 "The search term must be longer."; // Necessita de tradução #endif const char *Txt_The_semester_of_the_course_X_has_changed = // Warning: it is very important to include %s in the following sentences #if L==0 "El cuatrimestre/semestre de la asignatura %s ha cambiado."; // Necessita traduccio #elif L==1 "The semester of the couse %s has changed."; // Need Übersetzung #elif L==2 "The semester of the couse %s has changed."; #elif L==3 "El cuatrimestre/semestre de la asignatura %s ha cambiado."; #elif L==4 "The semester of the couse %s has changed."; // Besoin de traduction #elif L==5 "El cuatrimestre/semestre de la asignatura %s ha cambiado."; // Okoteve traducción #elif L==6 "Il semestre del corso %s è cambiato."; #elif L==7 "The semester of the couse %s has changed."; // Potrzebujesz tlumaczenie #elif L==8 "The semester of the couse %s has changed."; // Necessita de tradução #endif const char *Txt_The_session_has_been_closed = // Closed by user #if L==0 "La sessió ha finalitzat."; #elif L==1 "Die Sitzung wurde beendet."; #elif L==2 "The session has been closed."; #elif L==3 "La sesión ha finalizado."; #elif L==4 "La session a été fermée."; #elif L==5 "La sesión ha finalizado."; // Okoteve traducción #elif L==6 "La sessione è stata chiusa."; #elif L==7 "Sesja wygasła."; #elif L==8 "A sessão foi encerrada."; #endif const char *Txt_The_session_has_expired_due_to_inactivity = // Expired due to timeout #if L==0 "La sessió ha expirat per inactivitat."; #elif L==1 "Die Sitzung wurde wegen Inaktivit¨t abgelaufen."; #elif L==2 "The session has expired due to inactivity."; #elif L==3 "La sesión ha expirado por inactividad."; #elif L==4 "La session a expiré pour cause d'inactivité."; #elif L==5 "La sesión ha expirado por inactividad."; // Okoteve traducción #elif L==6 "La sessione è scaduta per inattività."; #elif L==7 "Sesja wygasła z powodu bezczynności"; #elif L==8 "A sessão expirou devido à inatividade."; #endif const char *Txt_The_status_of_the_centre_X_has_changed = // Warning: it is very important to include %s in the following sentences #if L==0 "El estado del centro %s ha cambiado."; // Necessita traduccio #elif L==1 "The status of the centre %s has changed."; // Need Übersetzung #elif L==2 "The status of the centre %s has changed."; #elif L==3 "El estado del centro %s ha cambiado."; #elif L==4 "The status of the centre %s has changed."; // Besoin de traduction #elif L==5 "El estado del centro %s ha cambiado."; // Okoteve traducción #elif L==6 "Il stato del centro %s è cambiato."; #elif L==7 "The status of the centre %s has changed."; // Potrzebujesz tlumaczenie #elif L==8 "The status of the centre %s has changed."; // Necessita de tradução #endif const char *Txt_The_status_of_the_course_X_has_changed = // Warning: it is very important to include %s in the following sentences #if L==0 "El estado de la asignatura %s ha cambiado."; // Necessita traduccio #elif L==1 "The status of the course %s has changed."; // Need Übersetzung #elif L==2 "The status of the course %s has changed."; #elif L==3 "El estado de la asignatura %s ha cambiado."; #elif L==4 "The status of the course %s has changed."; // Besoin de traduction #elif L==5 "El estado de la asignatura %s ha cambiado."; // Okoteve traducción #elif L==6 "Il stato del corso %s è cambiato."; #elif L==7 "The status of the course %s has changed."; // Potrzebujesz tlumaczenie #elif L==8 "The status of the course %s has changed."; // Necessita de tradução #endif const char *Txt_The_status_of_the_degree_X_has_changed = // Warning: it is very important to include %s in the following sentences #if L==0 "El estado de la titulación %s ha cambiado."; // Necessita traduccio #elif L==1 "The status of the degree %s has changed."; // Need Übersetzung #elif L==2 "The status of the degree %s has changed."; #elif L==3 "El estado de la titulación %s ha cambiado."; #elif L==4 "The status of the degree %s has changed."; // Besoin de traduction #elif L==5 "El estado de la titulación %s ha cambiado."; // Okoteve traducción #elif L==6 "Il stato della laurea %s è cambiato."; #elif L==7 "The status of the degree %s has changed."; // Potrzebujesz tlumaczenie #elif L==8 "The status of the degree %s has changed."; // Necessita de tradução #endif const char *Txt_The_status_of_the_institution_X_has_changed = // Warning: it is very important to include %s in the following sentences #if L==0 "El estado de la institución %s ha cambiado."; // Necessita traduccio #elif L==1 "The status of the institution %s has changed."; // Need Übersetzung #elif L==2 "The status of the institution %s has changed."; #elif L==3 "El estado de la institución %s ha cambiado."; #elif L==4 "The status of the institution %s has changed."; // Besoin de traduction #elif L==5 "El estado de la institución %s ha cambiado."; // Okoteve traducción #elif L==6 "Il stato della istituzione %s è cambiato."; #elif L==7 "The status of the institution %s has changed."; // Potrzebujesz tlumaczenie #elif L==8 "The status of the institution %s has changed."; // Necessita de tradução #endif const char *Txt_The_survey_has_been_modified = #if L==0 "La encuesta ha sido modificada."; // Necessita traduccio #elif L==1 "Die Umfrage wurde geändert."; #elif L==2 "The survey has been modified."; #elif L==3 "La encuesta ha sido modificada."; #elif L==4 "Le sondage a été modifié."; #elif L==5 "La encuesta ha sido modificada."; // Okoteve traducción #elif L==6 "Il sondaggio è stato modificato."; #elif L==7 "The survey has been modified."; // Potrzebujesz tlumaczenie #elif L==8 "O inquérito foi modificado."; #endif const char *Txt_The_syllabus_lectures_of_the_course_X_is_not_available = // Warning: it is very important to include %s in the following sentences #if L==0 "El programa de teoría de la asignatura %s no está disponible."; // Necessita traduccio #elif L==1 "The syllabus (lectures) of the course %s is not available."; // Need Übersetzung #elif L==2 "The syllabus (lectures) of the course %s is not available."; #elif L==3 "El programa de teoría de la asignatura %s no está disponible."; #elif L==4 "The syllabus (lectures) of the course %s is not available."; // Besoin de traduction #elif L==5 "El programa de teoría de la asignatura %s no está disponible."; // Okoteve traducción #elif L==6 "Il programma di teoria del corso %s non è disponibile."; #elif L==7 "The syllabus (lectures) of the course %s is not available."; // Potrzebujesz tlumaczenie #elif L==8 "The syllabus (lectures) of the course %s is not available."; // Necessita de tradução #endif const char *Txt_The_syllabus_practicals_of_the_course_X_is_not_available = // Warning: it is very important to include %s in the following sentences #if L==0 "El programa de prácticas de la asignatura %s no está disponible."; // Necessita traduccio #elif L==1 "The syllabus (practicals) of the course %s is not available."; // Need Übersetzung #elif L==2 "The syllabus (practicals) of the course %s is not available."; #elif L==3 "El programa de prácticas de la asignatura %s no está disponible."; #elif L==4 "The syllabus (practicals) of the course %s is not available."; // Besoin de traduction #elif L==5 "El programa de prácticas de la asignatura %s no está disponible."; // Okoteve traducción #elif L==6 "Il programma della pratica %s non è disponibile."; #elif L==7 "The syllabus (practicals) of the course %s is not available."; // Potrzebujesz tlumaczenie #elif L==8 "The syllabus (practicals) of the course %s is not available."; // Necessita de tradução #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 #if L==0 "El descriptor %s ha pasado a denominarse %s."; // Necessita traduccio #elif L==1 "The tag %s has been renamed as %s."; // Need Übersetzung #elif L==2 "The tag %s has been renamed as %s."; #elif L==3 "El descriptor %s ha pasado a denominarse %s."; #elif L==4 "The tag %s has been renamed as %s."; // Besoin de traduction #elif L==5 "El descriptor %s ha pasado a denominarse %s."; // Okoteve traducción #elif L==6 "L'etichetta %s è stata rinominata come %s."; #elif L==7 "The tag %s has been renamed as %s."; // Potrzebujesz tlumaczenie #elif L==8 "The tag %s has been renamed as %s."; // Necessita de tradução #endif const char *Txt_The_tag_X_has_not_changed = // Warning: it is very important to include %s in the following sentences #if L==0 "El descriptor %s no ha cambiado."; // Necessita traduccio #elif L==1 "The tag %s has not changed."; // Need Übersetzung #elif L==2 "The tag %s has not changed."; #elif L==3 "El descriptor %s no ha cambiado."; #elif L==4 "The tag %s has not changed."; // Besoin de traduction #elif L==5 "El descriptor %s no ha cambiado."; // Okoteve traducción #elif L==6 "L'etichetta %s non è cambiata."; #elif L==7 "The tag %s has not changed."; // Potrzebujesz tlumaczenie #elif L==8 "The tag %s has not changed."; // Necessita de tradução #endif const char *Txt_The_test_X_has_already_been_assessed_previously = // Warning: it is very important to include %u in the following sentences #if L==0 "El test %u ya ha sido evaluado anteriormente."; // Necessita traduccio #elif L==1 "The test %u has already been assessed previously."; // Need Übersetzung #elif L==2 "The test %u has already been assessed previously."; #elif L==3 "El test %u ya ha sido evaluado anteriormente."; #elif L==4 "The test %u has already been assessed previously."; // Besoin de traduction #elif L==5 "El test %u ya ha sido evaluado anteriormente."; // Okoteve traducción #elif L==6 "Il test %u è stato valutato precedentemente."; #elif L==7 "The test %u has already been assessed previously."; // Potrzebujesz tlumaczenie #elif L==8 "The test %u has already been assessed previously."; // Necessita de tradução #endif const char *Txt_The_test_configuration_has_been_updated = #if L==0 "La configuración de tests se ha actualizado."; // Necessita traduccio #elif L==1 "The test configuration has been updated."; // Need Übersetzung #elif L==2 "The test configuration has been updated."; #elif L==3 "La configuración de tests se ha actualizado."; #elif L==4 "The test configuration has been updated."; // Besoin de traduction #elif L==5 "La configuración de tests se ha actualizado."; // Okoteve traducción #elif L==6 "La configurazione di test è stata aggiornata."; #elif L==7 "The test configuration has been updated."; // Potrzebujesz tlumaczenie #elif L==8 "The test configuration has been updated."; // Necessita de tradução #endif const char *Txt_The_thread_is_already_in_this_forum = #if L==0 "La discusión ya está en este foro."; // Necessita traduccio #elif L==1 "The thread is already in this forum."; // Need Übersetzung #elif L==2 "The thread is already in this forum."; #elif L==3 "La discusión ya está en este foro."; #elif L==4 "The thread is already in this forum."; // Besoin de traduction #elif L==5 "La discusión ya está en este foro."; // Okoteve traducción #elif L==6 "La discussione è già in questo forum."; #elif L==7 "The thread is already in this forum."; // Potrzebujesz tlumaczenie #elif L==8 "The thread is already in this forum."; // Necessita de tradução #endif const char *Txt_The_thread_X_is_already_in_this_forum = // Warning: it is very important to include %s in the following sentences #if L==0 "La discusión %s ya está en este foro."; // Necessita traduccio #elif L==1 "The thread %s is already in this forum."; // Need Übersetzung #elif L==2 "The thread %s is already in this forum."; #elif L==3 "La discusión %s ya está en este foro."; #elif L==4 "The thread %s is already in this forum."; // Besoin de traduction #elif L==5 "La discusión %s ya está en este foro."; // Okoteve traducción #elif L==6 "La discussione %s è già in questo forum."; #elif L==7 "The thread %s is already in this forum."; // Potrzebujesz tlumaczenie #elif L==8 "The thread %s is already in this forum."; // Necessita de tradução #endif const char *Txt_The_type_of_degree_X_already_exists = // Warning: it is very important to include %s in the following sentences #if L==0 "El tipo de titulación %s ya existe."; // Necessita traduccio #elif L==1 "Die Abschlussart %s wurde bereits definiert."; #elif L==2 "The type of degree %s already exists."; #elif L==3 "El tipo de titulación %s ya existe."; #elif L==4 "The type of degree %s already exists."; // Besoin de traduction #elif L==5 "El tipo de titulación %s ya existe."; // Okoteve traducción #elif L==6 "Il tipo di laurea %s già esiste."; #elif L==7 "The type of degree %s already exists."; // Potrzebujesz tlumaczenie #elif L==8 "The type of degree %s already exists."; // Necessita de tradução #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 #if L==0 "El tipo de titulación %s ha pasado a denominarse %s."; // Necessita traduccio #elif L==1 "The type of degree %s has been renamed as %s."; // Need Übersetzung #elif L==2 "The type of degree %s has been renamed as %s."; #elif L==3 "El tipo de titulación %s ha pasado a denominarse %s."; #elif L==4 "The type of degree %s has been renamed as %s."; // Besoin de traduction #elif L==5 "El tipo de titulación %s ha pasado a denominarse %s."; // Okoteve traducción #elif L==6 "Il tipo di laurea %s è stato rinominato come %s."; #elif L==7 "The type of degree %s has been renamed as %s."; // Potrzebujesz tlumaczenie #elif L==8 "The type of degree %s has been renamed as %s."; // Necessita de tradução #endif const char *Txt_The_type_of_degree_X_no_longer_allows_direct_authentication = // Warning: it is very important to include %s in the following sentences #if L==0 "El tipus de titulació %s ja no permet autenticació directa."; #elif L==1 "The type of degree %s no longer allows direct authentication."; // Need Übersetzung #elif L==2 "The type of degree %s no longer allows direct authentication."; #elif L==3 "El tipo de titulación %s ya no permite autenticación directa."; #elif L==4 "The type of degree %s no longer allows direct authentication."; // Besoin de traduction #elif L==5 "El tipo de titulación %s ya no permite autenticación directa."; // Okoteve traducción #elif L==6 "Il tipo di laurea %s non permette più ora l'autenticazione diretta."; #elif L==7 "The type of degree %s no longer allows direct authentication."; // Potrzebujesz tlumaczenie #elif L==8 "The type of degree %s no longer allows direct authentication."; // Necessita de tradução #endif const char *Txt_The_type_of_degree_X_now_allows_direct_authentication = // Warning: it is very important to include %s in the following sentences #if L==0 "El tipus de titulació %s ara permet autenticació directa."; #elif L==1 "The type of degree %s now allows direct authentication."; // Need Übersetzung #elif L==2 "The type of degree %s now allows direct authentication."; #elif L==3 "El tipo de titulación %s ahora permite autenticación directa."; #elif L==4 "The type of degree %s now allows direct authentication."; // Besoin de traduction #elif L==5 "El tipo de titulación %s ahora permite autenticación directa."; // Okoteve traducción #elif L==6 "Il tipo di laurea %s permette ora l'autenticazione diretta."; #elif L==7 "The type of degree %s now allows direct authentication."; // Potrzebujesz tlumaczenie #elif L==8 "The type of degree %s now allows direct authentication."; // Necessita de tradução #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 #if L==0 "El tipo de titulación de la titulación %s ha cambiado."; // Necessita traduccio #elif L==1 "The type of degree of the degree %s has changed."; // Need Übersetzung #elif L==2 "The type of degree of the degree %s has changed."; #elif L==3 "El tipo de titulación de la titulación %s ha cambiado."; #elif L==4 "The type of degree of the degree %s has changed."; // Besoin de traduction #elif L==5 "El tipo de titulación de la titulación %s ha cambiado."; // Okoteve traducción #elif L==6 "Il tipo di laurea %s è cambiato."; #elif L==7 "The type of degree of the degree %s has changed."; // Potrzebujesz tlumaczenie #elif L==8 "The type of degree of the degree %s has changed."; // Necessita de tradução #endif const char *Txt_The_type_of_group_X_already_exists = // Warning: it is very important to include %s in the following sentences #if L==0 "El tipus de grup %s ja existeix."; #elif L==1 "Der Gruppen-Typ %s wurde bereits definiert."; #elif L==2 "The type of group %s already exists."; #elif L==3 "El tipo de grupo %s ya existe."; #elif L==4 "The type of group %s already exists."; // Besoin de traduction #elif L==5 "El tipo de grupo %s ya existe."; // Okoteve traducción #elif L==6 "Il tipo di gruppo %s già esiste."; #elif L==7 "The type of group %s already exists."; // Potrzebujesz tlumaczenie #elif L==8 "The type of group %s already exists."; // Necessita de tradução #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 #if L==0 "El tipo de grupo %s ha pasado a denominarse %s."; // Necessita traduccio #elif L==1 "The type of group %s has been renamed as %s."; // Need Übersetzung #elif L==2 "The type of group %s has been renamed as %s."; #elif L==3 "El tipo de grupo %s ha pasado a denominarse %s."; #elif L==4 "The type of group %s has been renamed as %s."; // Besoin de traduction #elif L==5 "El tipo de grupo %s ha pasado a denominarse %s."; // Okoteve traducción #elif L==6 "Il tipo di gruppo %s è stato rinominato come %s."; #elif L==7 "The type of group %s has been renamed as %s."; // Potrzebujesz tlumaczenie #elif L==8 "The type of group %s has been renamed as %s."; // Necessita de tradução #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 #if L==0 "El tipo de grupo del grupo %s ha cambiado."; // Necessita traduccio #elif L==1 "The type of group of the group %s has changed."; // Need Übersetzung #elif L==2 "The type of group of the group %s has changed."; #elif L==3 "El tipo de grupo del grupo %s ha cambiado."; #elif L==4 "The type of group of the group %s has changed."; // Besoin de traduction #elif L==5 "El tipo de grupo del grupo %s ha cambiado."; // Okoteve traducción #elif L==6 "Il tipo di gruppo del gruppo %s è cambiato."; #elif L==7 "The type of group of the group %s has changed."; // Potrzebujesz tlumaczenie #elif L==8 "The type of group of the group %s has changed."; // Necessita de tradução #endif const char *Txt_The_type_of_enrollment_of_the_type_of_group_X_has_not_changed = // Warning: it is very important to include %s in the following sentences #if L==0 "El tipo de adscripción del tipo de grupo %s no ha cambiado."; // Necessita traduccio #elif L==1 "The type of enrollment of the type of group %s has not changed."; // Need Übersetzung #elif L==2 "The type of enrollment of the type of group %s has not changed."; #elif L==3 "El tipo de adscripción del tipo de grupo %s no ha cambiado."; #elif L==4 "The type of enrollment of the type of group %s has not changed."; // Besoin de traduction #elif L==5 "El tipo de adscripción del tipo de grupo %s no ha cambiado."; // Okoteve traducción #elif L==6 "Il tipo di registrazione del tipo di gruppo %s non è cambiato."; #elif L==7 "The type of enrollment of the type of group %s has not changed."; // Potrzebujesz tlumaczenie #elif L==8 "The type of enrollment of the type of group %s has not changed."; // Necessita de tradução #endif const char *Txt_The_type_of_the_holiday_X_has_changed = // Warning: it is very important to include %s in the following sentences #if L==0 "El tipo de la festividad %s ha cambiado."; // Necessita traduccio #elif L==1 "The type of the holiday %s has changed."; // Need Übersetzung #elif L==2 "The type of the holiday %s has changed."; #elif L==3 "El tipo de la festividad %s ha cambiado."; #elif L==4 "The type of the holiday %s has changed."; // Besoin de traduction #elif L==5 "El tipo de la festividad %s ha cambiado."; // Okoteve traducción #elif L==6 "Il tipo di festività %s è cambiato."; #elif L==7 "The type of the holiday %s has changed."; // Potrzebujesz tlumaczenie #elif L==8 "The type of the holiday %s has changed."; // Necessita de tradução #endif const char *Txt_The_URL_X_has_been_updated = // Warning: it is very important to include %s in the following sentences #if L==0 "El URL %s se ha actualizado."; // Necessita traduccio #elif L==1 "The URL %s has been updated."; // Need Übersetzung #elif L==2 "The URL %s has been updated."; #elif L==3 "El URL %s se ha actualizado."; #elif L==4 "The URL %s has been updated."; // Besoin de traduction #elif L==5 "El URL %s se ha actualizado."; // Okoteve traducción #elif L==6 "L'URL %s è stata archiviata."; #elif L==7 "The URL %s has been updated."; // Potrzebujesz tlumaczenie #elif L==8 "The URL %s has been updated."; // Necessita de tradução #endif const char *Txt_The_URL_web_address_that_gives_direct_access_to_the_course_X_is = // Warning: it is very important to include %s in the following sentences #if L==0 "El URL (dirección web) que permite acceder directamente" " a la asignatura %s es:"; // Necessita traduccio #elif L==1 "The URL (web address) that gives direct access" " to the course %s is:"; // Need Übersetzung #elif L==2 "The URL (web address) that gives direct access" " to the course %s is:"; #elif L==3 "El URL (dirección web) que permite acceder directamente" " a la asignatura %s es:"; #elif L==4 "The URL (web address) that gives direct access" " to the course %s is:"; // Besoin de traduction #elif L==5 "El URL (dirección web) que permite acceder directamente" " a la asignatura %s es:"; // Okoteve traducción #elif L==6 "L'URL (indirizzo web) che permette l'accesso diretto" " al corso %s è:"; #elif L==7 "The URL (web address) that gives direct access" " to the course %s is:"; // Potrzebujesz tlumaczenie #elif L==8 "The URL (web address) that gives direct access" " to the course %s is:"; // Necessita de tradução #endif const char *Txt_THE_USER_X_already_exists_in_Y = // Warning: it is very important to include two %s in the following sentences #if L==0 "%s ya existe en %s."; // Necessita traduccio #elif L==1 "%s already exists in %s."; // Übersetzung notwendig #elif L==2 "%s already exists in %s."; #elif L==3 "%s ya existe en %s."; #elif L==4 "%s already exists in %s."; // Besoin de traduction #elif L==5 "%s ya existe en %s."; // Okoteve traducción #elif L==6 "%s esiste già in %s."; #elif L==7 "%s already exists in %s."; // Potrzebujesz tlumaczenie #elif L==8 "%s already exists in %s."; // Necessita de tradução #endif const char *Txt_THE_USER_X_already_exists_in_Y_but_is_not_yet_enrolled_in_the_course_Z = // Warning: it is very important to include three %s in the following sentences #if L==0 "%s ya existe en %s," " pero aún no está inscrito" " en la asignatura %s."; // Necessita traduccio #elif L==1 "%s already exists in %s," " but is not yet enrolled" " in the course %s."; // Need Übersetzung #elif L==2 "%s already exists in %s," " but is not yet enrolled" " in the course %s."; #elif L==3 "%s ya existe en %s," " pero aún no está inscrito" " en la asignatura %s."; #elif L==4 "%s already exists in %s," " but is not yet enrolled" " in the course %s."; // Besoin de traduction #elif L==5 "%s ya existe en %s," " pero aún no está inscrito" " en la asignatura %s."; // Okoteve traducción #elif L==6 "%s esiste già in %s," " ma non è ancora registrato" " al corso %s."; #elif L==7 "%s already exists in %s," " but is not yet enrolled" " in the course %s."; // Potrzebujesz tlumaczenie #elif L==8 "%s already exists in %s," " but is not yet enrolled" " in the course %s."; // Necessita de tradução #endif const char *Txt_THE_USER_X_has_been_enrolled_as_administrator_of_the_degree_Y = // Warning: it is very important to include two %s in the following sentences #if L==0 "%s ha sido añadido/a como administrador/a" " de la titulación %s."; // Necessita traduccio #elif L==1 "%s has been enrolled as administrator" " of the degree %s."; // Übersetzung notwendig #elif L==2 "%s has been enrolled as administrator" " of the degree %s."; #elif L==3 "%s ha sido añadido/a como administrador/a" " de la titulación %s."; #elif L==4 "%s has been enrolled as administrator" " of the degree %s."; // Besoin de traduction #elif L==5 "%s ha sido añadido/a como administrador/a" " de la titulación %s."; // Okoteve traducción #elif L==6 "%s è stato registrato come amministratore" " della laurea %s."; #elif L==7 "%s has been enrolled as administrator" " of the degree %s."; // Potrzebujesz tlumaczenie #elif L==8 "%s has been enrolled as administrator" " of the degree %s."; // Necessita de tradução #endif const char *Txt_THE_USER_X_has_been_enrolled_in_the_course_Y = // Warning: it is very important to include two %s in the following sentences #if L==0 "%s ha estat afegit/da" " a l'assignatura %s."; #elif L==1 "%s hat sich im" " im Veranstaltung %s eingeschrieben."; #elif L==2 "%s has been enrolled" " in the course %s."; #elif L==3 "%s ha sido añadido/a" " a la asignatura %s."; #elif L==4 "%s a été inscrit" " dans la matière %s."; #elif L==5 "%s ha sido añadido/a" " a la asignatura %s."; // Okoteve traducción #elif L==6 "%s è stato registrato/a" " nel corso %s."; #elif L==7 "%s został zapisany" " do kursu %s."; #elif L==8 "%s foi matriculado/a" " na disciplina %s."; #endif const char *Txt_THE_USER_X_has_been_enrolled_in_the_group_of_type_Y_Z = // Warning: it is very important to include three %s in the following sentences #if L==0 "%s ha sido añadido/a" " al grupo de tipo %s %s."; // Necessita traduccio #elif L==1 "%s has been enrolled" " in the group of type %s %s."; // Übersetzung notwendig #elif L==2 "%s has been enrolled" " in the group of type %s %s."; #elif L==3 "%s ha sido añadido/a" " al grupo de tipo %s %s."; #elif L==4 "%s has been enrolled" " in the group of type %s %s."; // Besoin de traduction #elif L==5 "%s ha sido añadido/a" " al grupo de tipo %s %s."; // Okoteve traducción #elif L==6 "%s è stato registrato" " nel gruppo di tipo %s %s."; #elif L==7 "%s has been enrolled" " in the group of type %s %s."; // Potrzebujesz tlumaczenie #elif L==8 "%s has been enrolled" " in the group of type %s %s."; // Necessita de tradução #endif const char *Txt_THE_USER_X_has_been_removed_as_administrator = // Warning: it is very important to include %s in the following sentences #if L==0 "%s ha sido eliminado/a como administrador/a."; // Necessita traduccio #elif L==1 "%s has been removed as administrator."; // Übersetzung notwendig #elif L==2 "%s has been removed as administrator."; #elif L==3 "%s ha sido eliminado/a como administrador/a."; #elif L==4 "%s has been removed as administrator."; // Besoin de traduction #elif L==5 "%s ha sido eliminado/a como administrador/a."; // Okoteve traducción #elif L==6 "%s è stato rimosso come amministratore."; #elif L==7 "%s has been removed as administrator."; // Potrzebujesz tlumaczenie #elif L==8 "%s has been removed as administrator."; // Necessita de tradução #endif const char *Txt_THE_USER_X_has_been_removed_from_all_groups_in_all_courses = // Warning: it is very important to include %s in the following sentences #if L==0 "%s ha sido eliminado/a" " de todos los grupos de todas sus asignaturas."; // Necessita traduccio #elif L==1 "%s has been removed" " from all groups in all courses."; // Übersetzung notwendig #elif L==2 "%s has been removed" " from all groups in all courses."; #elif L==3 "%s ha sido eliminado/a" " de todos los grupos de todas sus asignaturas."; #elif L==4 "%s has been removed" " from all groups in all courses."; // Besoin de traduction #elif L==5 "%s ha sido eliminado/a" " de todos los grupos de todas sus asignaturas."; // Okoteve traducción #elif L==6 "%s è stato rimosso" " da tutti i gruppi di tutti i corsi."; #elif L==7 "%s has been removed" " from all groups in all courses."; // Potrzebujesz tlumaczenie #elif L==8 "%s has been removed" " from all groups in all courses."; // Necessita de tradução #endif const char *Txt_THE_USER_X_has_been_removed_from_all_groups_of_the_course_Y = // Warning: it is very important to include two %s in the following sentences #if L==0 "%s ha sido eliminado/a" " de todos los grupos de la asignatura %s."; // Necessita traduccio #elif L==1 "%s has been removed" " from all groups of the course %s."; // Übersetzung notwendig #elif L==2 "%s has been removed" " from all groups of the course %s."; #elif L==3 "%s ha sido eliminado/a" " de todos los grupos de la asignatura %s."; #elif L==4 "%s has been removed" " from all groups of the course %s."; // Besoin de traduction #elif L==5 "%s ha sido eliminado/a" " de todos los grupos de la asignatura %s."; // Okoteve traducción #elif L==6 "%s è stato rimosso" " da tutti i gruppi del corso %s."; #elif L==7 "%s has been removed" " from all groups of the course %s."; // Potrzebujesz tlumaczenie #elif L==8 "%s has been removed" " from all groups of the course %s."; // Necessita de tradução #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 #if L==0 "%s ha sido eliminado/a de todas sus asignaturas."; // Necessita traduccio #elif L==1 "%s has been removed from all her/his courses."; // Übersetzung notwendig #elif L==2 "%s has been removed from all her/his courses."; #elif L==3 "%s ha sido eliminado/a de todas sus asignaturas."; #elif L==4 "%s has been removed from all her/his courses."; // Besoin de traduction #elif L==5 "%s ha sido eliminado/a de todas sus asignaturas."; // Okoteve traducción #elif L==6 "%s è stato rimosso da tutti i suoi corsi."; #elif L==7 "%s has been removed from all her/his courses."; // Potrzebujesz tlumaczenie #elif L==8 "%s has been removed from all her/his courses."; // Necessita de tradução #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 #if L==0 "%s ha sido eliminado/a de %u grupos."; // Necessita traduccio #elif L==1 "%s has been removed from %u groups."; // Übersetzung notwendig #elif L==2 "%s has been removed from %u groups."; #elif L==3 "%s ha sido eliminado/a de %u grupos."; #elif L==4 "%s has been removed from %u groups."; // Besoin de traduction #elif L==5 "%s ha sido eliminado/a de %u grupos."; // Okoteve traducción #elif L==6 "%s è stato rimosso da %u gruppi."; #elif L==7 "%s has been removed from %u groups."; // Potrzebujesz tlumaczenie #elif L==8 "%s has been removed from %u groups."; // Necessita de tradução #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 #if L==0 "%s ha sido eliminado/a de un grupo."; // Necessita traduccio #elif L==1 "%s has been removed from one group."; // Übersetzung notwendig #elif L==2 "%s has been removed from one group."; #elif L==3 "%s ha sido eliminado/a de un grupo."; #elif L==4 "%s has been removed from one group."; // Besoin de traduction #elif L==5 "%s ha sido eliminado/a de un grupo."; // Okoteve traducción #elif L==6 "%s è stato rimosso da un gruppo."; #elif L==7 "%s has been removed from one group."; // Potrzebujesz tlumaczenie #elif L==8 "%s has been removed from one group."; // Necessita de tradução #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 #if L==0 "%s ha sido eliminado/a" " de la asignatura %s."; // Necessita traduccio #elif L==1 "%s has been removed" " from the course %s."; // Übersetzung notwendig #elif L==2 "%s has been removed" " from the course %s."; #elif L==3 "%s ha sido eliminado/a" " de la asignatura %s."; #elif L==4 "%s has been removed" " from the course %s."; // Besoin de traduction #elif L==5 "%s ha sido eliminado/a" " de la asignatura %s."; // Okoteve traducción #elif L==6 "%s è stato rimosso" " dal corso %s."; #elif L==7 "%s has been removed" " from the course %s."; // Potrzebujesz tlumaczenie #elif L==8 "%s has been removed" " from the course %s."; // Necessita de tradução #endif const char *Txt_THE_USER_X_has_been_removed_as_administrator_of_the_degree_Y = // Warning: it is very important to include two %s in the following sentences #if L==0 "%s ha sido eliminado/a como administrador" " de la titulación %s."; // Necessita traduccio #elif L==1 "%s has been removed as administrator" " of the degree %s."; // Übersetzung notwendig #elif L==2 "%s has been removed as administrator" " of the degree %s."; #elif L==3 "%s ha sido eliminado/a como administrador" " de la titulación %s."; #elif L==4 "%s has been removed as administrator" " of the degree %s."; // Besoin de traduction #elif L==5 "%s ha sido eliminado/a como administrador" " de la titulación %s."; // Okoteve traducción #elif L==6 "%s è stato rimosso come amministratore" " della laurea %s."; #elif L==7 "%s has been removed as administrator" " of the degree %s."; // Potrzebujesz tlumaczenie #elif L==8 "%s has been removed as administrator" " of the degree %s."; // Necessita de tradução #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 #if L==0 "%s ha sido eliminado/a" " del grupo de tipo %s al que pertenecía."; // Necessita traduccio #elif L==1 "%s has been removed" " from the group of type %s to which it belonged."; // Übersetzung notwendig #elif L==2 "%s has been removed" " from the group of type %s to which it belonged."; #elif L==3 "%s ha sido eliminado/a" " del grupo de tipo %s al que pertenecía."; #elif L==4 "%s has been removed" " from the group of type %s to which it belonged."; // Besoin de traduction #elif L==5 "%s ha sido eliminado/a" " del grupo de tipo %s al que pertenecía."; // Okoteve traducción #elif L==6 "%s è stato rimosso" " dal gruppo di tipo %s al quale apparteneva."; #elif L==7 "%s has been removed" " from the group of type %s to which it belonged."; // Potrzebujesz tlumaczenie #elif L==8 "%s has been removed" " from the group of type %s to which it belonged."; // Necessita de tradução #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 #if L==0 "%s no ha sido eliminado/a" " de ningún grupo."; // Necessita traduccio #elif L==1 "%s has not been removed" " from any group."; // Übersetzung notwendig #elif L==2 "%s has not been removed" " from any group."; #elif L==3 "%s no ha sido eliminado/a" " de ningún grupo."; #elif L==4 "%s has not been removed" " from any group."; // Besoin de traduction #elif L==5 "%s no ha sido eliminado/a" " de ningún grupo."; // Okoteve traducción #elif L==6 "%s non è stato rimosso" " da alcun gruppo."; #elif L==7 "%s has not been removed" " from any group."; // Potrzebujesz tlumaczenie #elif L==8 "%s has not been removed" " from any group."; // Necessita de tradução #endif const char *Txt_THE_USER_X_is_already_an_administrator_of_the_degree_Y = // Warning: it is very important to include two %s in the following sentences #if L==0 "%s ya es administrador/a" " de la titulación %s."; // Necessita traduccio #elif L==1 "%s is already an administrator" " of the degree %s."; // Übersetzung notwendig #elif L==2 "%s is already an administrator" " of the degree %s."; #elif L==3 "%s ya es administrador/a" " de la titulación %s."; #elif L==4 "%s is already an administrator" " of the degree %s."; // Besoin de traduction #elif L==5 "%s ya es administrador/a" " de la titulación %s."; // Okoteve traducción #elif L==6 "%s è già un amministratore" " della laurea %s."; #elif L==7 "%s is already an administrator" " of the degree %s."; // Potrzebujesz tlumaczenie #elif L==8 "%s is already an administrator" " of the degree %s."; // Necessita de tradução #endif const char *Txt_THE_USER_X_is_already_in_the_course_Y_but_has_not_yet_accepted_the_enrollment = // Warning: it is very important to include %s in the following sentences #if L==0 "%s ya está" " en la asignatura %s," " pero aún no ha aceptado la inscripción."; // Necessita traduccio #elif L==1 "%s is already" " in the course %s," " but has not yet accepted the enrollment."; // Übersetzung notwendig #elif L==2 "%s is already" " in the course %s," " but has not yet accepted the enrollment."; #elif L==3 "%s ya está" " en la asignatura %s," " pero aún no ha aceptado la inscripción."; #elif L==4 "%s is already" " in the course %s," " but has not yet accepted the enrollment."; // Besoin de traduction #elif L==5 "%s ya está" " en la asignatura %s," " pero aún no ha aceptado la inscripción."; // Okoteve traducción #elif L==6 "%s è già" " nel corso %s," " ma non ha ancora accettato la registrazione."; #elif L==7 "%s is already" " in the course %s," " but has not yet accepted the enrollment."; // Potrzebujesz tlumaczenie #elif L==8 "%s is already" " in the course %s," " but has not yet accepted the enrollment."; // Necessita de tradução #endif const char *Txt_THE_USER_X_is_already_enrolled_in_the_course_Y = // Warning: it is very important to include two %s in the following sentences #if L==0 "%s ya está inscrito/a" " en la asignatura %s."; // Necessita traduccio #elif L==1 "%s is already enrolled" " in the course %s."; // Übersetzung notwendig #elif L==2 "%s is already enrolled" " in the course %s."; #elif L==3 "%s ya está inscrito/a" " en la asignatura %s."; #elif L==4 "%s is already enrolled" " in the course %s."; // Besoin de traduction #elif L==5 "%s ya está inscrito/a" " en la asignatura %s."; // Okoteve traducción #elif L==6 "%s è già registrato" " nel corso %s."; #elif L==7 "%s is already enrolled" " in the course %s."; // Potrzebujesz tlumaczenie #elif L==8 "%s is already enrolled" " in the course %s."; // Necessita de tradução #endif const char *Txt_The_user_is_new_does_not_exists_yet_in_X = // Warning: it is very important to include %s in the following sentences #if L==0 "El usuario/a es nuevo/a, aún no existe en %s."; // Necessita traduccio #elif L==1 "The user is new, does not exist yet in %s."; // Übersetzung notwendig #elif L==2 "The user is new, does not exist yet in %s."; #elif L==3 "El usuario/a es nuevo/a, aún no existe en %s."; #elif L==4 "The user is new, does not exist yet in %s."; // Besoin de traduction #elif L==5 "El usuario/a es nuevo/a, aún no existe en %s."; // Okoteve traducción #elif L==6 "L'utente è nuovo, non esiste ancora in %s."; #elif L==7 "The user is new, does not exist yet in %s."; // Potrzebujesz tlumaczenie #elif L==8 "The user is new, does not exist yet in %s."; // Necessita de tradução #endif const char *Txt_THE_USER_X_is_not_an_administrator_of_the_degree_Y = // Warning: it is very important to include two %s in the following sentences #if L==0 "%s no es administrador/a" " de la titulación %s."; // Necessita traduccio #elif L==1 "%s is not an administrator" " of the degree %s."; // Übersetzung notwendig #elif L==2 "%s is not an administrator" " of the degree %s."; #elif L==3 "%s no es administrador/a" " de la titulación %s."; #elif L==4 "%s is not an administrator" " of the degree %s."; // Besoin de traduction #elif L==5 "%s no es administrador/a" " de la titulación %s."; // Okoteve traducción #elif L==6 "%s non è un amministratore" " della laurea %s."; #elif L==7 "%s is not an administrator" " of the degree %s."; // Potrzebujesz tlumaczenie #elif L==8 "%s is not an administrator" " of the degree %s."; // Necessita de tradução #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 #if L==0 "No se ha encontrado a %s en el archivo de calificaciones."; // Necessita traduccio #elif L==1 "%s is not found in the file of marks."; // Need Übersetzung #elif L==2 "%s is not found in the file of marks."; #elif L==3 "No se ha encontrado a %s en el archivo de calificaciones."; #elif L==4 "%s is not found in the file of marks."; // Besoin de traduction #elif L==5 "No se ha encontrado a %s en el archivo de calificaciones."; // Okoteve traducción #elif L==6 "%s non è stato trovato nel file dei risultati."; #elif L==7 "%s is not found in the file of marks."; // Potrzebujesz tlumaczenie #elif L==8 "%s is not found in the file of marks."; // Necessita de tradução #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 #if L==0 "La visibilidad del campo %s no ha cambiado."; // Necessita traduccio #elif L==1 "The visibility of the record field %s has not changed."; // Need Übersetzung #elif L==2 "The visibility of the record field %s has not changed."; #elif L==3 "La visibilidad del campo %s no ha cambiado."; #elif L==4 "The visibility of the record field %s has not changed."; // Besoin de traduction #elif L==5 "La visibilidad del campo %s no ha cambiado."; // Okoteve traducción #elif L==6 "La visibilità del campo di scheda %s non è cambiata."; #elif L==7 "The visibility of the record field %s has not changed."; // Potrzebujesz tlumaczenie #elif L==8 "The visibility of the record field %s has not changed."; // Necessita de tradução #endif const char *Txt_The_whole_course = #if L==0 "Toda la asignatura"; // Necessita traduccio #elif L==1 "Die gesamte Veranstaltung"; #elif L==2 "The whole course"; #elif L==3 "Toda la asignatura"; #elif L==4 "L'ensemble de la matière"; #elif L==5 "Toda la asignatura"; // Okoteve traducción #elif L==6 "L'intero corso"; #elif L==7 "The whole course"; // Potrzebujesz tlumaczenie #elif L==8 "Toda a disciplina"; #endif const char *Txt_The_works_of_X_have_been_removed_in_a_total_of_Y_of_his_her_Z_courses = // Warning: it is very important to include all %s and %u, in the correct order, in the following sentences #if L==0 "Se han eliminado todos los trabajos" " de %s" " en un total de %u de sus %u asignaturas."; // Necessita traduccio #elif L==1 "The works of %s" " have been removed in a total of %u of her/his %u courses."; // Need Übersetzung #elif L==2 "The works of %s" " have been removed in a total of %u of her/his %u courses."; #elif L==3 "Se han eliminado todos los trabajos" " de %s" " en un total de %u de sus %u asignaturas."; #elif L==4 "The works of %s" " have been removed in a total of %u of her/his %u courses."; // Besoin de traduction #elif L==5 "Se han eliminado todos los trabajos" " de %s" " en un total de %u de sus %u asignaturas."; // Okoteve traducción #elif L==6 "I lavori de %s" " sono stati rimossi in un totale di %u dei suoi corsi."; #elif L==7 "The works of %s" " have been removed in a total of %u of her/his %u courses."; // Potrzebujesz tlumaczenie #elif L==8 "The works of %s" " have been removed in a total of %u of her/his %u courses."; // Necessita de tradução #endif const char *Txt_The_year_X_is_not_enabled_on_the_degree_Y = // Warning: it is very important to include two %s in the following sentences #if L==0 "El curso %s no está habilitado" " en la titulación %s."; // Necessita traduccio #elif L==1 "The year %s is not enabled" " on the degree %s."; // Need Übersetzung #elif L==2 "The year %s is not enabled" " on the degree %s."; #elif L==3 "El curso %s no está habilitado" " en la titulación %s."; #elif L==4 "The year %s is not enabled" " on the degree %s."; // Besoin de traduction #elif L==5 "El curso %s no está habilitado" " en la titulación %s."; // Okoteve traducción #elif L==6 "L'anno %s non è abilitato" " nella laurea %s."; #elif L==7 "The year %s is not enabled" " on the degree %s."; // Potrzebujesz tlumaczenie #elif L==8 "The year %s is not enabled" " on the degree %s."; // Necessita de tradução #endif const char *Txt_The_year_of_the_course_X_has_changed = // Warning: it is very important to include %s in the following sentences #if L==0 "El curso de la asignatura %s ha cambiado."; // Necessita traduccio #elif L==1 "The year of the couse %s has changed."; // Need Übersetzung #elif L==2 "The year of the couse %s has changed."; #elif L==3 "El curso de la asignatura %s ha cambiado."; #elif L==4 "The year of the couse %s has changed."; // Besoin de traduction #elif L==5 "El curso de la asignatura %s ha cambiado."; // Okoteve traducción #elif L==6 "L'anno del corso %s è cambiato."; #elif L==7 "The year of the couse %s has changed."; // Potrzebujesz tlumaczenie #elif L==8 "The year of the couse %s has changed."; // Necessita de tradução #endif const char *Txt_The_years_of_the_degree_have_changed = #if L==0 "Los años de la titulación han cambiado."; // Necessita traduccio #elif L==1 "The years of the degree have changed."; // Need Übersetzung #elif L==2 "The years of the degree have changed."; #elif L==3 "Los años de la titulación han cambiado."; #elif L==4 "The years of the degree have changed."; // Besoin de traduction #elif L==5 "Los años de la titulación han cambiado."; // Okoteve traducción #elif L==6 "Gli anni della laurea sono cambiati."; #elif L==7 "The years of the degree have changed."; // Potrzebujesz tlumaczenie #elif L==8 "The years of the degree have changed."; // Necessita de tradução #endif const char *Txt_The_ZIP_file_has_been_received_successfully = #if L==0 "El archivo ZIP se ha recibido correctamente."; // Necessita traduccio #elif L==1 "The ZIP file has been received successfully."; // Need Übersetzung #elif L==2 "The ZIP file has been received successfully."; #elif L==3 "El archivo ZIP se ha recibido correctamente."; #elif L==4 "The ZIP file has been received successfully."; // Besoin de traduction #elif L==5 "El archivo ZIP se ha recibido correctamente."; // Okoteve traducción #elif L==6 "Il ZIP file è stato ricevuto con successo."; #elif L==7 "The ZIP file has been received successfully."; // Potrzebujesz tlumaczenie #elif L==8 "The ZIP file has been received successfully."; // Necessita de tradução #endif const char *Txt_The_ZIP_file_has_been_unzipped_successfully = #if L==0 "El archivo ZIP se ha descomprimido correctamente."; // Necessita traduccio #elif L==1 "The ZIP file has been unzipped successfully."; // Need Übersetzung #elif L==2 "The ZIP file has been unzipped successfully."; #elif L==3 "El archivo ZIP se ha descomprimido correctamente."; #elif L==4 "The ZIP file has been unzipped successfully."; // Besoin de traduction #elif L==5 "El archivo ZIP se ha descomprimido correctamente."; // Okoteve traducción #elif L==6 "Il ZIP file è stato decompresso con successo."; #elif L==7 "The ZIP file has been unzipped successfully."; // Potrzebujesz tlumaczenie #elif L==8 "The ZIP file has been unzipped successfully."; // Necessita de tradução #endif const char *Txt_Theme_SKIN = #if L==0 "Tema (colors)"; #elif L==1 "Skin"; #elif L==2 "Theme"; #elif L==3 "Tema (colores)"; #elif L==4 "Thème"; #elif L==5 "Tema (colores)"; // Okoteve traducción #elif L==6 "Tema"; #elif L==7 "Temat"; #elif L==8 "Skin"; #endif const char *Txt_There_are_more_than_one_table_in_the_file_of_marks = #if L==0 "Hay más de una tabla en el archivo de calificaciones."; // Necessita traduccio #elif L==1 "There are more than one table in the file of marks."; // Need Übersetzung #elif L==2 "There are more than one table in the file of marks."; #elif L==3 "Hay más de una tabla en el archivo de calificaciones."; #elif L==4 "There are more than one table in the file of marks."; // Besoin de traduction #elif L==5 "Hay más de una tabla en el archivo de calificaciones."; // Okoteve traducción #elif L==6 "C'è più di una tabella nel file dei risultati."; #elif L==7 "There are more than one table in the file of marks."; // Potrzebujesz tlumaczenie #elif L==8 "There are more than one table in the file of marks."; // Necessita de tradução #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 #if L==0 "Hay más de un usuario con el ID %s." " Por favor, escriba un @apodo o correo."; // Necessita traduccio #elif L==1 "There are more than one user with the ID %s." " Please type a @nick or e-mail."; // Need Übersetzung #elif L==2 "There are more than one user with the ID %s." " Please type a @nick or e-mail."; #elif L==3 "Hay más de un usuario con el ID %s." " Por favor, escriba un @apodo o correo."; #elif L==4 "There are more than one user with the ID %s." " Please type a @nick or e-mail."; // Besoin de traduction #elif L==5 "Hay más de un usuario con el ID %s." " Por favor, escriba un @apodo o correo."; // Okoteve traducción #elif L==6 "Ci sono più di un utente con l'ID %s." " Si prega di digitare un @nome-utente o e-mail."; #elif L==7 "There are more than one user with the ID %s." " Please type a @nick or e-mail."; // Potrzebujesz tlumaczenie #elif L==8 "There are more than one user with the ID %s." " Please type a @nick or e-mail."; // Necessita de tradução #endif const char *Txt_There_are_new_posts = #if L==0 "Hay mensajes nuevos"; // Necessita traduccio #elif L==1 "Es gibt neue Nachrichten"; #elif L==2 "There are new posts"; #elif L==3 "Hay mensajes nuevos"; #elif L==4 "Il y a des nouveaux messages"; #elif L==5 "Hay mensajes nuevos"; // Okoteve traducción #elif L==6 "Ci sono nuovi post"; #elif L==7 "There are new posts"; // Potrzebujesz tlumaczenie #elif L==8 "Há novas posts"; #endif const char *Txt_There_are_no_accesses_with_the_selected_search_criteria = #if L==0 "No hay accesos con el criterio de búsqueda seleccionado."; // Necessita traduccio #elif L==1 "There are no accesses with the selected search criteria."; // Need Übersetzung #elif L==2 "There are no accesses with the selected search criteria."; #elif L==3 "No hay accesos con el criterio de búsqueda seleccionado."; #elif L==4 "There are no accesses with the selected search criteria."; // Besoin de traduction #elif L==5 "No hay accesos con el criterio de búsqueda seleccionado."; // Okoteve traducción #elif L==6 "Non ci sono accessi con il criterio di ricerca selezionato."; #elif L==7 "There are no accesses with the selected search criteria."; // Potrzebujesz tlumaczenie #elif L==8 "There are no accesses with the selected search criteria."; // Necessita de tradução #endif const char *Txt_There_are_no_banners = #if L==0 "No existen banners."; // Necessita traduccio #elif L==1 "There are no banners."; // Need Übersetzung #elif L==2 "There are no banners."; #elif L==3 "No existen banners."; #elif L==4 "There are no banners."; // Besoin de traduction #elif L==5 "No existen banners."; // Okoteve traducción #elif L==6 "Non ci sono banners."; #elif L==7 "There are no banners."; // Potrzebujesz tlumaczenie #elif L==8 "There are no banners."; // Necessita de tradução #endif const char *Txt_There_are_no_centres_with_requests_for_degrees_to_be_confirmed = #if L==0 "No hi ha centres amb sol·licituds de titulacions pendents de confirmar."; #elif L==1 "There are no centres with requests for degrees to be confirmed"; // Need Übersetzung #elif L==2 "There are no centres with requests for degrees to be confirmed"; #elif L==3 "No hay centros con solicitudes de titulaciones pendientes de confirmar."; #elif L==4 "Il n'y a pas de centres avec demandes de degrés à confirmer."; #elif L==5 "No hay centros con solicitudes de titulaciones pendientes de confirmar."; // Okoteve traducción #elif L==6 "Non ci sono centri con richieste di gradi pendenti de confermare."; #elif L==7 "There are no centres with requests for degrees to be confirmed"; // Potrzebujesz tlumaczenie #elif L==8 "There are no centres with requests for degrees to be confirmed"; // Necessita de tradução #endif const char *Txt_There_are_no_countries_with_requests_for_institutions_to_be_confirmed = #if L==0 "No hi ha països amb sol·licituds de institucions pendents de confirmar."; #elif L==1 "There are no countries with requests for institutions to be confirmed"; // Need Übersetzung #elif L==2 "There are no countries with requests for institutions to be confirmed"; #elif L==3 "No hay países con solicitudes de instituciones pendientes de confirmar."; #elif L==4 "Il n'y a pas de pays avec demandes d'établissements à confirmer."; #elif L==5 "No hay países con solicitudes de instituciones pendientes de confirmar."; // Okoteve traducción #elif L==6 "Non ci sono paesi con richieste di istituzioni pendenti de confermare."; #elif L==7 "There are no countries with requests for institutions to be confirmed"; // Potrzebujesz tlumaczenie #elif L==8 "There are no countries with requests for institutions to be confirmed"; // Necessita de tradução #endif const char *Txt_There_are_no_degrees_with_requests_for_courses_to_be_confirmed = #if L==0 "No hi ha titulacions amb sol·licituds d'assignatures pendents de confirmar."; #elif L==1 "There are no degrees with requests for courses to be confirmed"; // Need Übersetzung #elif L==2 "There are no degrees with requests for courses to be confirmed"; #elif L==3 "No hay titulaciones con solicitudes de asignaturas pendientes de confirmar."; #elif L==4 "Il n'y a pas de degrés avec demandes de cours à confirmer."; #elif L==5 "No hay titulaciones con solicitudes de asignaturas pendientes de confirmar."; // Okoteve traducción #elif L==6 "Non ci sono gradi con richieste di corsi pendenti de confermare."; #elif L==7 "There are no degrees with requests for courses to be confirmed"; // Potrzebujesz tlumaczenie #elif L==8 "There are no degrees with requests for courses to be confirmed"; // Necessita de tradução #endif const char *Txt_There_are_no_institutions_with_requests_for_centres_to_be_confirmed = #if L==0 "No hi ha institucions amb sol·licituds de centres pendents de confirmar."; #elif L==1 "There are no institutions with requests for centres to be confirmed"; // Need Übersetzung #elif L==2 "There are no institutions with requests for centres to be confirmed"; #elif L==3 "No hay instituciones con solicitudes de centros pendientes de confirmar."; #elif L==4 "Il n'y a pas d'établissements avec demandes de centres à confirmer."; #elif L==5 "No hay instituciones con solicitudes de centros pendientes de confirmar."; // Okoteve traducción #elif L==6 "Non ci sono istituzioni con richieste di centri pendenti de confermare."; #elif L==7 "There are no institutions with requests for centres to be confirmed"; // Potrzebujesz tlumaczenie #elif L==8 "There are no institutions with requests for centres to be confirmed"; // Necessita de tradução #endif const char *Txt_There_are_no_departments = #if L==0 "No existen departamentos."; // Necessita traduccio #elif L==1 "There are no departments."; // Need Übersetzung #elif L==2 "There are no departments."; #elif L==3 "No existen departamentos."; #elif L==4 "There are no departments."; // Besoin de traduction #elif L==5 "No existen departamentos."; // Okoteve traducción #elif L==6 "Non ci sono dipartimenti."; #elif L==7 "There are no departments."; // Potrzebujesz tlumaczenie #elif L==8 "There are no departments."; // Necessita de tradução #endif const char *Txt_There_are_no_holidays = #if L==0 "No existen días festivos."; // Necessita traduccio #elif L==1 "There are no holidays."; // Need Übersetzung #elif L==2 "There are no holidays."; #elif L==3 "No existen días festivos."; #elif L==4 "There are no holidays."; // Besoin de traduction #elif L==5 "No existen días festivos."; // Okoteve traducción #elif L==6 "Non ci sono festività."; #elif L==7 "There are no holidays."; // Potrzebujesz tlumaczenie #elif L==8 "There are no holidays."; // Necessita de tradução #endif const char *Txt_There_are_no_links = #if L==0 "No existen enlaces."; // Necessita traduccio #elif L==1 "There are no links."; // Need Übersetzung #elif L==2 "There are no links."; #elif L==3 "No existen enlaces."; #elif L==4 "There are no links."; // Besoin de traduction #elif L==5 "No existen enlaces."; // Okoteve traducción #elif L==6 "Non ci sono links."; #elif L==7 "There are no links."; // Potrzebujesz tlumaczenie #elif L==8 "There are no links."; // Necessita de tradução #endif const char *Txt_There_are_no_mail_domains = #if L==0 "No existen dominios de correo para notificaciones."; // Necessita traduccio #elif L==1 "There are no mail domains for notifications."; // Need Übersetzung #elif L==2 "There are no mail domains for notifications."; #elif L==3 "No existen dominios de correo para notificaciones."; #elif L==4 "There are no mail domains for notifications."; // Besoin de traduction #elif L==5 "No existen dominios de correo para notificaciones."; // Okoteve traducción #elif L==6 "Non ci sono campi mail per le notifiche."; #elif L==7 "There are no mail domains for notifications."; // Potrzebujesz tlumaczenie #elif L==8 "There are no mail domains for notifications."; // Necessita de tradução #endif const char *Txt_There_are_no_places = #if L==0 "No existen lugares."; // Necessita traduccio #elif L==1 "There are no places."; // Need Übersetzung #elif L==2 "There are no places."; #elif L==3 "No existen lugares."; #elif L==4 "There are no places."; // Besoin de traduction #elif L==5 "No existen lugares."; // Okoteve traducción #elif L==6 "Non ci sono luoghi."; #elif L==7 "There are no places."; // Potrzebujesz tlumaczenie #elif L==8 "There are no places."; // Necessita de tradução #endif const char *Txt_There_are_no_plugins = #if L==0 "No existen complementos."; // Necessita traduccio #elif L==1 "There are no plugins."; // Need Übersetzung #elif L==2 "There are no plugins."; #elif L==3 "No existen complementos."; #elif L==4 "There are no plugins."; // Besoin de traduction #elif L==5 "No existen complementos."; // Okoteve traducción #elif L==6 "Non ci sono plugin."; #elif L==7 "There are no plugins."; // Potrzebujesz tlumaczenie #elif L==8 "There are no plugins."; // Necessita de tradução #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 #if L==0 "No existen campos de fichas en la asignatura %s."; // Necessita traduccio #elif L==1 "There are no record fields in the course %s."; // Need Übersetzung #elif L==2 "There are no record fields in the course %s."; #elif L==3 "No existen campos de fichas en la asignatura %s."; #elif L==4 "There are no record fields in the course %s."; // Besoin de traduction #elif L==5 "No existen campos de fichas en la asignatura %s."; // Okoteve traducción #elif L==6 "Non ci sono campi di schede nel corso %s."; #elif L==7 "There are no record fields in the course %s."; // Potrzebujesz tlumaczenie #elif L==8 "There are no record fields in the course %s."; // Necessita de tradução #endif const char *Txt_There_are_no_types_of_degree = #if L==0 "No existen tipos de titulación."; // Necessita traduccio #elif L==1 "There are no types of degree."; // Need Übersetzung #elif L==2 "There are no types of degree."; #elif L==3 "No existen tipos de titulación."; #elif L==4 "There are no types of degree."; // Besoin de traduction #elif L==5 "No existen tipos de titulación."; // Okoteve traducción #elif L==6 "Non ci sono tipi di lauree."; #elif L==7 "There are no types of degree."; // Potrzebujesz tlumaczenie #elif L==8 "There are no types of degree."; // Necessita de tradução #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 #if L==0 "No existen tipos de grupo en la asignatura %s."; // Necessita traduccio #elif L==1 "There are no types of group in the course %s."; // Need Übersetzung #elif L==2 "There are no types of group in the course %s."; #elif L==3 "No existen tipos de grupo en la asignatura %s."; #elif L==4 "There are no types of group in the course %s."; // Besoin de traduction #elif L==5 "No existen tipos de grupo en la asignatura %s."; // Okoteve traducción #elif L==6 "Non ci sono tipi di gruppi nel corso %s."; #elif L==7 "There are no types of group in the course %s."; // Potrzebujesz tlumaczenie #elif L==8 "There are no types of group in the course %s."; // Necessita de tradução #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 #if L==0 "Hi ha %u usuaris amb el ID (DNI/cédula) %s."; #elif L==1 "There are %u users with the ID %s."; // Need Übersetzung #elif L==2 "There are %u users with the ID %s."; #elif L==3 "Hay %u usuarios con el ID (DNI/cédula) %s."; #elif L==4 "Il y a %u utilisateurs avec le ID %s."; #elif L==5 "Hay %u usuarios con el ID (DNI/cédula) %s."; // Okoteve traducción #elif L==6 "Ci sono %u utenti con il ID %s."; #elif L==7 "There are %u users with the ID %s."; // Potrzebujesz tlumaczenie #elif L==8 "There are %u users with the ID %s."; // Necessita de tradução #endif const char *Txt_There_has_been_no_change_in_groups = #if L==0 "No se ha realizado ningún cambio de grupos."; // Necessita traduccio #elif L==1 "There has been no change in groups."; // Übersetzung notwendig #elif L==2 "There has been no change in groups."; #elif L==3 "No se ha realizado ningún cambio de grupos."; #elif L==4 "There has been no change in groups."; // Besoin de traduction #elif L==5 "No se ha realizado ningún cambio de grupos."; // Okoteve traducción #elif L==6 "Non ci sono stati cambiamenti in gruppi."; #elif L==7 "There has been no change in groups."; // Potrzebujesz tlumaczenie #elif L==8 "There has been no change in groups."; // Necessita de tradução #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 #if L==0 "Ha habido %u errores enviando el mensaje."; // Necessita traduccio #elif L==1 "There have been %u errors in sending the message."; // Übersetzung notwendig #elif L==2 "There have been %u errors in sending the message."; #elif L==3 "Ha habido %u errores enviando el mensaje."; #elif L==4 "There have been %u errors in sending the message."; // Besoin de traduction #elif L==5 "Ha habido %u errores enviando el mensaje."; // Okoteve traducción #elif L==6 "Ci sono stati %u errori inviando il messaggio."; #elif L==7 "There have been %u errors in sending the message."; // Potrzebujesz tlumaczenie #elif L==8 "There have been %u errors in sending the message."; // Necessita de tradução #endif const char *Txt_There_is_already_a_file_named_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Ya existe un archivo con el nombre %s."; // Necessita traduccio #elif L==1 "There is already a file named %s."; // Übersetzung notwendig #elif L==2 "There is already a file named %s."; #elif L==3 "Ya existe un archivo con el nombre %s."; #elif L==4 "There is already a file named %s."; // Besoin de traduction #elif L==5 "Ya existe un archivo con el nombre %s."; // Okoteve traducción #elif L==6 "C'è già un file chiamato %s."; #elif L==7 "There is already a file named %s."; // Potrzebujesz tlumaczenie #elif L==8 "There is already a file named %s."; // Necessita de tradução #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 #if L==0 "Ya existe una carpeta no vacía con el nombre %s."; // Necessita traduccio #elif L==1 "There is already a non-empty folder named %s."; // Übersetzung notwendig #elif L==2 "There is already a non-empty folder named %s."; #elif L==3 "Ya existe una carpeta no vacía con el nombre %s."; #elif L==4 "There is already a non-empty folder named %s."; // Besoin de traduction #elif L==5 "Ya existe una carpeta no vacía con el nombre %s."; // Okoteve traducción #elif L==6 "C'è già una cartella non vuota chiamata %s."; #elif L==7 "There is already a non-empty folder named %s."; // Potrzebujesz tlumaczenie #elif L==8 "There is already a non-empty folder named %s."; // Necessita de tradução #endif const char *Txt_There_is_no_external_service_for_authentication_and_official_lists = #if L==0 "No hi ha cap servei extern d'autenticació i llistes oficials."; #elif L==1 "Es gibt keinen externen Dienstleister für die Authentifizierung und offiziellen Listen."; #elif L==2 "There is no external service for authentication and official lists."; #elif L==3 "No existe ningún servicio externo de autenticación y listas oficiales."; #elif L==4 "Il n'ya pas de service externe pour authentification et listes officiels."; #elif L==5 "No existe ningún servicio externo de autenticación y listas oficiales."; // Okoteve traducción #elif L==6 "Non c'è nessun servizio esterno per autenticazione e liste ufficiale."; #elif L==7 "Nie ma zewnętrznych usług uwierzytelniania."; #elif L==8 "Não há serviço externo de autenticação e listas oficiales."; #endif const char *Txt_There_is_no_knowing_how_many_users_not_logged_have_accessed = #if L==0 "No se puede saber cuántos usuarios distintos han accedido sin identificarse."; // Necessita traduccio #elif L==1 "There is no knowing how many users not logged have accessed."; // Übersetzung notwendig #elif L==2 "There is no knowing how many users not logged have accessed."; #elif L==3 "No se puede saber cuántos usuarios distintos han accedido sin identificarse."; #elif L==4 "There is no knowing how many users not logged have accessed."; // Besoin de traduction #elif L==5 "No se puede saber cuántos usuarios distintos han accedido sin identificarse."; // Okoteve traducción #elif L==6 "Non si può sapere quanti utenti distinti hanno avuto accesso senza identificarsi."; #elif L==7 "There is no knowing how many users not logged have accessed."; // Potrzebujesz tlumaczenie #elif L==8 "There is no knowing how many users not logged have accessed."; // Necessita de tradução #endif const char *Txt_There_is_no_list_of_centres = #if L==0 "No hay lista de centros."; // Necessita traduccio #elif L==1 "There is no list of centres."; // Übersetzung notwendig #elif L==2 "There is no list of centres."; #elif L==3 "No hay lista de centros."; #elif L==4 "There is no list of centres."; // Besoin de traduction #elif L==5 "No hay lista de centros."; // Okoteve traducción #elif L==6 "Non c'è la lista de centri."; #elif L==7 "There is no list of centres."; // Potrzebujesz tlumaczenie #elif L==8 "There is no list of centres."; // Necessita de tradução #endif const char *Txt_There_is_no_list_of_types_of_degree = #if L==0 "No hay lista de tipos de titulación."; // Necessita traduccio #elif L==1 "There is no list of types of degree."; // Übersetzung notwendig #elif L==2 "There is no list of types of degree."; #elif L==3 "No hay lista de tipos de titulación."; #elif L==4 "There is no list of types of degree."; // Besoin de traduction #elif L==5 "No hay lista de tipos de titulación."; // Okoteve traducción #elif L==6 "Non c'è la lista de tipi di laurea."; #elif L==7 "There is no list of types of degree."; // Potrzebujesz tlumaczenie #elif L==8 "There is no list of types of degree."; // Necessita de tradução #endif const char *Txt_There_is_no_list_of_institutions = #if L==0 "No hay lista de instituciones."; // Necessita traduccio #elif L==1 "There is no list of institutions."; // Übersetzung notwendig #elif L==2 "There is no list of institutions."; #elif L==3 "No hay lista de instituciones."; #elif L==4 "There is no list of institutions."; // Besoin de traduction #elif L==5 "No hay lista de instituciones."; // Okoteve traducción #elif L==6 "Non c'è la lista delle istituzioni."; #elif L==7 "There is no list of institutions."; // Potrzebujesz tlumaczenie #elif L==8 "There is no list of institutions."; // Necessita de tradução #endif const char *Txt_There_is_no_user_with_email_X = // Warning: it is very important to include %s in the following sentences #if L==0 "No existe ningún usuario" " con correo %s."; // Necessita traduccio #elif L==1 "There is no user" " with e-mail %s."; // Übersetzung notwendig #elif L==2 "There is no user" " with e-mail %s."; #elif L==3 "No existe ningún usuario" " con correo %s."; #elif L==4 "There is no user" " with e-mail %s."; // Besoin de traduction #elif L==5 "No existe ningún usuario" " con correo %s."; // Okoteve traducción #elif L==6 "Non c'è alcun utente" " con e-mail %s."; #elif L==7 "There is no user" " with e-mail %s."; // Potrzebujesz tlumaczenie #elif L==8 "There is no user" " with e-mail %s."; // Necessita de tradução #endif const char *Txt_There_is_no_user_in_X_with_ID_Y_If_you_already_have_an_account_on_Z_ = // Warning: it is very important to include three %s in the following sentences #if L==0 "No existe ningún usuario en %s" " con el ID (DNI/cédula) %s." " Si usted ya tiene cuenta en %s," " inicie sesión y añada este ID a su cuenta." " Si no tiene cuenta, puede crear una nueva."; // Necessita traduccio #elif L==1 "There is no user in %s" " with ID %s." " If you already have an account on %s," " login and add this ID to your account." " If you have no account, you can create a new one."; // Übersetzung notwendig #elif L==2 "There is no user in %s" " with ID %s." " If you already have an account on %s," " login and add this ID to your account." " If you have no account, you can create a new one."; #elif L==3 "No existe ningún usuario en %s" " con el ID (DNI/cédula) %s." " Si usted ya tiene cuenta en %s," " inicie sesión y añada este ID a su cuenta." " Si no tiene cuenta, puede crear una nueva."; #elif L==4 "Il n'ya pas d'utilisateur dans %s" " avec ID %s." " Si vous avez déjà un compte sur %s," " vous connecter et ajouter cet ID à votre compte." " Si vous n'avez pas de compte, vous pouvez en créer un nouveau."; #elif L==5 "No existe ningún usuario en %s" " con el ID (DNI/cédula) %s." " Si usted ya tiene cuenta en %s," " inicie sesión y añada este ID a su cuenta." " Si no tiene cuenta, puede crear una nueva."; // Okoteve traducción #elif L==6 "Non c'è nessun utente in %s" " con ID %s." " Se hai già un account su %s," " login e inserire questo ID al tuo account." " Se non avete account, è possibile crearne uno nuovo."; #elif L==7 "There is no user in %s" " with ID %s." " If you already have an account on %s," " login and add this ID to your account." " If you have no account, you can create a new one."; // Potrzebujesz tlumaczenie #elif L==8 "There is no user in %s" " with ID %s." " If you already have an account on %s," " login and add this ID to your account." " If you have no account, you can create a new one."; // Necessita de tradução #endif const char *Txt_There_is_no_user_with_ID_nick_or_e_mail_X = // Warning: it is very important to include %s in the following sentences #if L==0 "No existe ningún usuario" " con ID (DNI/cédula), apodo o correo %s."; // Necessita traduccio #elif L==1 "There is no user" " with ID, nick or e-mail %s."; // Übersetzung notwendig #elif L==2 "There is no user" " with ID, nick or e-mail %s."; #elif L==3 "No existe ningún usuario" " con ID (DNI/cédula), apodo o correo %s."; #elif L==4 "There is no user" " with ID, nick or e-mail %s."; // Besoin de traduction #elif L==5 "No existe ningún usuario" " con ID (DNI/cédula), apodo o correo %s."; // Okoteve traducción #elif L==6 "Non c'è alcun utente" " con ID, nome utente o e-mail %s."; #elif L==7 "There is no user" " with ID, nick or e-mail %s."; // Potrzebujesz tlumaczenie #elif L==8 "There is no user" " with ID, nick or e-mail %s."; // Necessita de tradução #endif const char *Txt_There_is_no_user_with_ID_nick_or_e_mail_X_in_the_course_Y = // Warning: it is very important to include two %s in the following sentences #if L==0 "No existe ningún usuario" " con ID (DNI/cédula), apodo o correo %s" " en la asignatura %s."; // Necessita traduccio #elif L==1 "There is no user" " with ID, nick or e-mail %s" " in the course %s."; // Übersetzung notwendig #elif L==2 "There is no user" " with ID, nick or e-mail %s" " in the course %s."; #elif L==3 "No existe ningún usuario" " con ID (DNI/cédula), apodo o correo %s" " en la asignatura %s."; #elif L==4 "There is no user" " with ID, nick or e-mail %s" " in the course %s."; // Besoin de traduction #elif L==5 "No existe ningún usuario" " con ID (DNI/cédula), apodo o correo %s" " en la asignatura %s."; // Okoteve traducción #elif L==6 "Non c'è alcun utente" " con ID, nome utente o e-mail %s" " nel corso %s."; #elif L==7 "There is no user" " with ID, nick or e-mail %s" " in the course %s."; // Potrzebujesz tlumaczenie #elif L==8 "There is no user" " with ID, nick or e-mail %s" " in the course %s."; // Necessita de tradução #endif const char *Txt_There_is_no_user_with_nickname_X = // Warning: it is very important to include %s in the following sentences #if L==0 "No existe ningún usuario" " con el apodo %s."; // Necessita traduccio #elif L==1 "There is no user" " with nickname %s."; // Übersetzung notwendig #elif L==2 "There is no user" " with nickname %s."; #elif L==3 "No existe ningún usuario" " con el apodo %s."; #elif L==4 "There is no user" " with nickname %s."; // Besoin de traduction #elif L==5 "No existe ningún usuario" " con el apodo %s."; // Okoteve traducción #elif L==6 "Non c'è alcun utente" " con nome utente %s."; #elif L==7 "There is no user" " with nickname %s."; // Potrzebujesz tlumaczenie #elif L==8 "There is no user" " with nickname %s."; // Necessita de tradução #endif const char *Txt_There_was_a_problem_sending_an_email_automatically = #if L==0 "Ha ocurrido un problema enviando automáticamente un correo electrónico."; // Necessita traduccio #elif L==1 "There was a problem sending an email automatically."; // Übersetzung notwendig #elif L==2 "There was a problem sending an email automatically."; #elif L==3 "Ha ocurrido un problema enviando automáticamente un correo electrónico."; #elif L==4 "There was a problem sending an email automatically."; // Besoin de traduction #elif L==5 "Ha ocurrido un problema enviando automáticamente un correo electrónico."; // Okoteve traducción #elif L==6 "C'è stato un problema inviando automaticamente un'e-mail."; #elif L==7 "There was a problem sending an email automatically."; // Potrzebujesz tlumaczenie #elif L==8 "There was a problem sending an email automatically."; // Necessita de tradução #endif const char *Txt_There_was_an_error_in_assessing_the_test_X = // Warning: it is very important to include %u in the following sentences #if L==0 "Se ha producido un error al evaluar el test %u."; // Necessita traduccio #elif L==1 "There was an error in assessing the test %u."; // Need Übersetzung #elif L==2 "There was an error in assessing the test %u."; #elif L==3 "Se ha producido un error al evaluar el test %u."; #elif L==4 "There was an error in assessing the test %u."; // Besoin de traduction #elif L==5 "Se ha producido un error al evaluar el test %u."; // Okoteve traducción #elif L==6 "C'è stato un errore nel valutare il test %u."; #elif L==7 "There was an error in assessing the test %u."; // Potrzebujesz tlumaczenie #elif L==8 "There was an error in assessing the test %u."; // Necessita de tradução #endif const char *Txt_This_course_fulfills_X_out_of_Y_indicators_ = // Warning: it is very important to include several %u, %ld, %s in correct order in the following sentences #if L==0 "Esta asignatura cumple %u de %u indicadores." " ¡ES MUY IMPORTANTE QUE CUMPLA LOS %u INDICADORES!
" "Por favor, vaya a" " " "%s > %s > %s," " verifique qué indicadores no se satisfacen" " (marcados con "%s")" " y haga todo lo posible por satisfacerlos."; // Necessita traduccio #elif L==1 "This course fulfills %u out of %u indicators." " IT IS VERY IMPORTANT THAT FULLFILLS %u INDICATORS!
" "Please go to" " " "%s > %s > %s," " check what indicators are not fullfilled" " (marked with "%s")" " and do everything possible to satisfy them."; // Need Übersetzung #elif L==2 "This course fulfills %u out of %u indicators." " IT IS VERY IMPORTANT THAT FULLFILLS %u INDICATORS!
" "Please go to" " " "%s > %s > %s," " check what indicators are not fullfilled" " (marked with "%s")" " and do everything possible to satisfy them."; #elif L==3 "Esta asignatura cumple %u de %u indicadores." " ¡ES MUY IMPORTANTE QUE CUMPLA LOS %u INDICADORES!
" "Por favor, vaya a" " " "%s > %s > %s," " verifique qué indicadores no se satisfacen" " (marcados con "%s")" " y haga todo lo posible por satisfacerlos."; #elif L==4 "This course fulfills %u out of %u indicators." " IT IS VERY IMPORTANT THAT FULLFILLS %u INDICATORS!
" "Please go to" " " "%s > %s > %s," " check what indicators are not fullfilled" " (marked with "%s")" " and do everything possible to satisfy them."; // Besoin de traduction #elif L==5 "Esta asignatura cumple %u de %u indicadores." " ¡ES MUY IMPORTANTE QUE CUMPLA LOS %u INDICADORES!
" "Por favor, vaya a" " " "%s > %s > %s," " verifique qué indicadores no se satisfacen" " (marcados con "%s")" " y haga todo lo posible por satisfacerlos."; // Okoteve traducción #elif L==6 "This course fulfills %u out of %u indicators." " IT IS VERY IMPORTANT THAT FULLFILLS %u INDICATORS!
" "Please go to" " " "%s > %s > %s," " check what indicators are not fullfilled" " (marked with "%s")" " and do everything possible to satisfy them."; // Bisogno di traduzione #elif L==7 "This course fulfills %u out of %u indicators." " IT IS VERY IMPORTANT THAT FULLFILLS %u INDICATORS!
" "Please go to" " " "%s > %s > %s," " check what indicators are not fullfilled" " (marked with "%s")" " and do everything possible to satisfy them."; // Potrzebujesz tlumaczenie #elif L==8 "This course fulfills %u out of %u indicators." " IT IS VERY IMPORTANT THAT FULLFILLS %u INDICATORS!
" "Please go to" " " "%s > %s > %s," " check what indicators are not fullfilled" " (marked with "%s")" " and do everything possible to satisfy them."; // Necessita de tradução #endif const char *Txt_This_course_requires_log_in_from_X_to_have_full_functionality_ = // Warning: it is very important to include four %s in the following sentences #if L==0 "Esta asignatura requiere entrar" " desde %s" " para disfrutar de la funcionalidad completa." " Por favor, entre desde %s."; // Necessita traduccio #elif L==1 "This course requires log in" " from %s" " to have full functionality." " Please log in from %s."; // Need Übersetzung #elif L==2 "This course requires log in" " from %s" " to have full functionality." " Please log in from %s."; #elif L==3 "Esta asignatura requiere entrar" " desde %s" " para disfrutar de la funcionalidad completa." " Por favor, entre desde %s."; #elif L==4 "This course requires log in" " from %s" " to have full functionality." " Please log in from %s."; // Besoin de traduction #elif L==5 "This course requires log in" " from %s" " to have full functionality." " Please log in from %s."; // Okoteve traducción #elif L==6 "This course requires log in" " from %s" " to have full functionality." " Please log in from %s."; // Bisogno di traduzione #elif L==7 "This course requires log in" " from %s" " to have full functionality." " Please log in from %s."; // Potrzebujesz tlumaczenie #elif L==8 "This course requires log in" " from %s" " to have full functionality." " Please log in from %s."; // Necessita de tradução #endif const char *Txt_this_field_is_filled_in_the_record_of_one_student = #if L==0 " (dicho campo está relleno en la ficha de un estudiante)"; // Necessita traduccio #elif L==1 " (this field is filled in the record of one student)"; // Need Übersetzung #elif L==2 " (this field is filled in the record of one student)"; #elif L==3 " (dicho campo está relleno en la ficha de un estudiante)"; #elif L==4 " (this field is filled in the record of one student)"; // Besoin de traduction #elif L==5 " (dicho campo está relleno en la ficha de un estudiante)"; // Okoteve traducción #elif L==6 " (questo campo è inserito nella scheda di uno studente)"; #elif L==7 " (this field is filled in the record of one student)"; // Potrzebujesz tlumaczenie #elif L==8 " (this field is filled in the record of one student)"; // Necessita de tradução #endif const char *Txt_this_field_is_filled_in_the_records_of_X_students = // Warning: it is very important to include %u in the following sentences #if L==0 " (dicho campo está relleno en las fichas de %u estudiantes)"; // Necessita traduccio #elif L==1 " (this field is filled in the records of %u students)"; // Need Übersetzung #elif L==2 " (this field is filled in the records of %u students)"; #elif L==3 " (dicho campo está relleno en las fichas de %u estudiantes)"; #elif L==4 " (this field is filled in the records of %u students)"; // Besoin de traduction #elif L==5 " (dicho campo está relleno en las fichas de %u estudiantes)"; // Okoteve traducción #elif L==6 " (questo campo è inserito nella scheda di %u studenti)"; #elif L==7 " (this field is filled in the records of %u students)"; // Potrzebujesz tlumaczenie #elif L==8 " (this field is filled in the records of %u students)"; // Necessita de tradução #endif const char *Txt_This_option_is_now_in_Documents_Edit = #if L==0 "Aquesta opció està ara en Documents > Editar"; #elif L==1 "Diese Option ist jetzt in Documents > Bearbeiten"; #elif L==2 "This option is now in Documents > Edit"; #elif L==3 "Esta opción se encuentra ahora en Documentos > Editar"; #elif L==4 "Cette option est désormais dans Documents > Éditer"; #elif L==5 "Esta opción se encuentra ahora en Documentos > Editar"; // Okoteve traducción #elif L==6 "Questa opzione è disponibile ora in Documenti > Editare"; #elif L==7 "Ta opcja jest już w Dokumentach > Edytuj"; #elif L==8 "Esta opção está agora em Documentos > Editar"; #endif const char *Txt_This_post_has_been_banned_probably_for_not_satisfy_the_rules_of_the_forums = #if L==0 "Este mensaje ha sido censurado," " probablemente por no cumplir las normas de los foros."; // Necessita traduccio #elif L==1 "This post has been banned," " probably for not satisfy the rules of the forums."; // Need Übersetzung #elif L==2 "This post has been banned," " probably for not satisfy the rules of the forums."; #elif L==3 "Este mensaje ha sido censurado," " probablemente por no cumplir las normas de los foros."; #elif L==4 "This post has been banned," " probably for not satisfy the rules of the forums."; // Besoin de traduction #elif L==5 "Este mensaje ha sido censurado," " probablemente por no cumplir las normas de los foros."; // Okoteve traducción #elif L==6 "Questo post è stato censurato," " probabilmente perchè non soddisfa le regole del forum."; #elif L==7 "This post has been banned," " probably for not satisfy the rules of the forums."; // Potrzebujesz tlumaczenie #elif L==8 "This post has been banned," " probably for not satisfy the rules of the forums."; // Necessita de tradução #endif const char *Txt_This_syllabus_has_been_edited_by_teachers_of_the_course_ = #if L==0 "Aquest programa ha estat editat pels professors de l'assignatura" " i podria no coincidir amb el programa oficial."; #elif L==1 "This syllabus has been edited by teachers of the course" " and may not match the official syllabus."; // Need Übersetzung #elif L==2 "This syllabus has been edited by teachers of the course" " and may not match the official syllabus."; #elif L==3 "Este programa ha sido editado por los profesores de la asignatura" " y podría no coincidir con el programa oficial."; #elif L==4 "This syllabus has been edited by teachers of the course" " and may not match the official syllabus."; // Besoin de traduction #elif L==5 "Este programa ha sido editado por los profesores de la asignatura" " y podría no coincidir con el programa oficial."; // Okoteve traducción #elif L==6 "Questo programma è stato editato per i professori del corso" " e potrebbe non corrispondere al programma ufficiale."; #elif L==7 "This syllabus has been edited by teachers of the course" " and may not match the official syllabus."; // Potrzebujesz tlumaczenie #elif L==8 "This syllabus has been edited by teachers of the course" " and may not match the official syllabus."; // Necessita de tradução #endif const char *Txt_This_survey_has_no_questions = #if L==0 "Esta encuesta no tiene preguntas"; // Necessita traduccio #elif L==1 "Diese Umfrage hat keine Fragen"; #elif L==2 "This survey has no questions"; #elif L==3 "Esta encuesta no tiene preguntas"; #elif L==4 "Ce sondage n'a pas de questions"; #elif L==5 "Esta encuesta no tiene preguntas"; // Okoteve traducción #elif L==6 "Questo sondaggio non ha domande"; #elif L==7 "This survey has no questions"; // Potrzebujesz tlumaczenie #elif L==8 "Este inquérito não tem perguntas"; #endif const char *Txt_thread = #if L==0 "discussió"; #elif L==1 "Thread"; #elif L==2 "thread"; #elif L==3 "discusión"; #elif L==4 "fil"; #elif L==5 "discusión"; // Okoteve traducción #elif L==6 "discussione"; #elif L==7 "thread"; // Potrzebujesz tlumaczenie #elif L==8 "thread"; #endif const char *Txt_Thread_marked_to_be_moved = #if L==0 "Discusión marcada para moverla."; // Necessita traduccio #elif L==1 "Thread marked to be moved."; // Need Übersetzung #elif L==2 "Thread marked to be moved."; #elif L==3 "Discusión marcada para moverla."; #elif L==4 "Thread marked to be moved."; // Besoin de traduction #elif L==5 "Discusión marcada para moverla."; // Okoteve traducción #elif L==6 "Discussione segnata per spostarla."; #elif L==7 "Thread marked to be moved."; // Potrzebujesz tlumaczenie #elif L==8 "Thread marked to be moved."; // Necessita de tradução #endif const char *Txt_Thread_X_marked_to_be_moved = // Warning: it is very important to include %s in the following sentences #if L==0 "Discusión %s marcada para moverla."; // Necessita traduccio #elif L==1 "Thread %s marked to be moved."; // Need Übersetzung #elif L==2 "Thread %s marked to be moved."; #elif L==3 "Discusión %s marcada para moverla."; #elif L==4 "Thread %s marked to be moved."; // Besoin de traduction #elif L==5 "Discusión %s marcada para moverla."; // Okoteve traducción #elif L==6 "Discussione %s segnata per spostarla."; #elif L==7 "Thread %s marked to be moved."; // Potrzebujesz tlumaczenie #elif L==8 "Thread %s marked to be moved."; // Necessita de tradução #endif const char *Txt_Thread_moved_to_this_forum = // Warning: it is very important to include %s in the following sentences #if L==0 "Discusión movida a este foro."; // Necessita traduccio #elif L==1 "Thread moved to this forum."; // Need Übersetzung #elif L==2 "Thread moved to this forum."; #elif L==3 "Discusión movida a este foro."; #elif L==4 "Thread moved to this forum."; // Besoin de traduction #elif L==5 "Discusión movida a este foro."; // Okoteve traducción #elif L==6 "Discussione spostata in questo forum."; #elif L==7 "Thread moved to this forum."; // Potrzebujesz tlumaczenie #elif L==8 "Thread moved to this forum."; // Necessita de tradução #endif const char *Txt_Thread_X_moved_to_this_forum = // Warning: it is very important to include %s in the following sentences #if L==0 "Discusión %s movida a este foro."; // Necessita traduccio #elif L==1 "Thread %s moved to this forum."; // Need Übersetzung #elif L==2 "Thread %s moved to this forum."; #elif L==3 "Discusión %s movida a este foro."; #elif L==4 "Thread %s moved to this forum."; // Besoin de traduction #elif L==5 "Discusión %s movida a este foro."; // Okoteve traducción #elif L==6 "Discussione %s spostata in questo forum."; #elif L==7 "Thread %s moved to this forum."; // Potrzebujesz tlumaczenie #elif L==8 "Thread %s moved to this forum."; // Necessita de tradução #endif const char *Txt_Thread_removed = #if L==0 "Discusión eliminada."; // Necessita traduccio #elif L==1 "Faden entfernt."; #elif L==2 "Thread removed."; #elif L==3 "Discusión eliminada."; #elif L==4 "Thread removed."; // Besoin de traduction #elif L==5 "Discusión eliminada."; // Okoteve traducción #elif L==6 "Discussione rimossa."; #elif L==7 "Thread removed."; // Potrzebujesz tlumaczenie #elif L==8 "Thread removed."; // Necessita de tradução #endif const char *Txt_Thread_X_removed = // Warning: it is very important to include %s in the following sentences #if L==0 "Discusión %s eliminada."; // Necessita traduccio #elif L==1 "Faden %s entfernt."; #elif L==2 "Thread %s removed."; #elif L==3 "Discusión %s eliminada."; #elif L==4 "Thread %s removed."; // Besoin de traduction #elif L==5 "Discusión %s eliminada."; // Okoteve traducción #elif L==6 "Discussione %s rimossa."; #elif L==7 "Thread %s removed."; // Potrzebujesz tlumaczenie #elif L==8 "Thread %s removed."; // Necessita de tradução #endif const char *Txt_Thread_with_posts_from_you = #if L==0 "Discusión con mensajes de usted."; // Necessita traduccio #elif L==1 "Thread with posts from you."; // Need Übersetzung #elif L==2 "Thread with posts from you."; #elif L==3 "Discusión con mensajes de usted."; #elif L==4 "Thread with posts from you."; // Besoin de traduction #elif L==5 "Discusión con mensajes de usted."; // Okoteve traducción #elif L==6 "Discussione con post per te."; #elif L==7 "Thread with posts from you."; // Potrzebujesz tlumaczenie #elif L==8 "Thread with posts from you."; // Necessita de tradução #endif const char *Txt_Threads = #if L==0 "Discussions"; #elif L==1 "Threads"; #elif L==2 "Threads"; #elif L==3 "Discusiones"; #elif L==4 "Fils"; #elif L==5 "Discusiones"; // Okoteve traducción #elif L==6 "Discussione"; #elif L==7 "Threads"; // Potrzebujesz tlumaczenie #elif L==8 "Threads"; #endif const char *Txt_threads = #if L==0 "discussions"; #elif L==1 "Threads"; #elif L==2 "threads"; #elif L==3 "discusiones"; #elif L==4 "fils"; #elif L==5 "discusiones"; // Okoteve traducción #elif L==6 "discussione"; #elif L==7 "threads"; // Potrzebujesz tlumaczenie #elif L==8 "threads"; #endif const char *Txt_time = #if L==0 "tiempo"; // Necessita traduccio #elif L==1 "Zeit"; #elif L==2 "time"; #elif L==3 "tiempo"; #elif L==4 "temps"; #elif L==5 "tiempo"; // Okoteve traducción #elif L==6 "tempo"; #elif L==7 "time"; // Potrzebujesz tlumaczenie #elif L==8 "tempo"; #endif const char *Txt_TIME_TABLE_CLASS_TYPES[TT_NUM_CLASS_TYPES] = { // TT_NO_CLASS #if L==0 "Lliure" #elif L==1 "No class" #elif L==2 "Keine Klasse" #elif L==3 "Libre" #elif L==4 "Pas de classe" #elif L==5 "Libre" // Okoteve traducción #elif L==6 "Libero" #elif L==7 "Bez klasy" #elif L==8 "Livre" #endif , // TT_THEORY_CLASS #if L==0 "Teoria" #elif L==1 "Vorlesung" #elif L==2 "Lectures" #elif L==3 "Teoría" #elif L==4 "Théorie" #elif L==5 "Teoría" // Okoteve traducción #elif L==6 "Teoria" #elif L==7 "Wyklady" #elif L==8 "Teoria" #endif , // TT_PRACT_CLASS #if L==0 "Pràct." #elif L==1 "Übung" #elif L==2 "Practicals" #elif L==3 "Práct." #elif L==4 "Pratique" #elif L==5 "Práct." // Okoteve traducción #elif L==6 "Pratica" #elif L==7 "praktyki" #elif L==8 "Práct." #endif , // TT_TUTOR_CLASS #if L==0 "Tutories" #elif L==1 "Anleitungen" #elif L==2 "Tutoring" #elif L==3 "Tutorías" #elif L==4 "Tutorat" #elif L==5 "Tutorías" // Okoteve traducción #elif L==6 "Tutoraggio" #elif L==7 "Korepetycje" #elif L==8 "Tutoria" #endif }; const char *Txt_Title = #if L==0 "Título"; // Necessita traduccio #elif L==1 "Titel"; #elif L==2 "Title"; #elif L==3 "Título"; #elif L==4 "Titre"; #elif L==5 "Moakãha"; #elif L==6 "Titolo"; #elif L==7 "Title"; // Potrzebujesz tlumaczenie #elif L==8 "Título"; #endif const char *Txt_To_get_the_official_list_of_your_groups_and_students_ = // Warning: it is very important to include three %s in the following sentences #if L==0 "Per obtenir la llista oficial dels seus grups i estudiants" " ha d'entrar a %s des %s."; #elif L==1 "To get the official list of your groups and students" " you must log in to %s from %s."; // Need Übersetzung #elif L==2 "To get the official list of your groups and students" " you must log in to %s from %s."; #elif L==3 "Para obtener la lista oficial de sus grupos y estudiantes" " debe entrar a %s desde %s."; #elif L==4 "To get the official list of your groups and students" " you must log in to %s from %s."; // Besoin de traduction #elif L==5 "Para obtener la lista oficial de sus grupos y estudiantes" " debe entrar a %s desde %s."; // Okoteve traducción #elif L==6 "Per ottenere la lista ufficiale dei tuoi gruppi e studenti" " devi loggarti a %s da %s."; #elif L==7 "To get the official list of your groups and students" " you must log in to %s from %s."; // Potrzebujesz tlumaczenie #elif L==8 "To get the official list of your groups and students" " you must log in to %s from %s."; // Necessita de tradução #endif const char *Txt_To_remove_a_centre_you_must_first_remove_all_degrees_and_teachers_in_the_centre = #if L==0 "Para eliminar un centro, primero debe eliminar" " todas las titulaciones y todos los profesores de ese centro."; // Necessita traduccio #elif L==1 "To remove a centre, you must first remove" " all degrees and teachers in the centre."; // Need Übersetzung #elif L==2 "To remove a centre, you must first remove" " all degrees and teachers in the centre."; #elif L==3 "Para eliminar un centro, primero debe eliminar" " todas las titulaciones y todos los profesores de ese centro."; #elif L==4 "To remove a centre, you must first remove" " all degrees and teachers in the centre."; // Besoin de traduction #elif L==5 "Para eliminar un centro, primero debe eliminar" " todas las titulaciones y todos los profesores de ese centro."; // Okoteve traducción #elif L==6 "Per rimuovere un centro, devi prima rimuovere" " tutte le lauree e professori di quel centro."; #elif L==7 "To remove a centre, you must first remove" " all degrees and teachers in the centre."; // Potrzebujesz tlumaczenie #elif L==8 "To remove a centre, you must first remove" " all degrees and teachers in the centre."; // Necessita de tradução #endif const char *Txt_To_remove_a_course_you_must_first_remove_all_users_in_the_course = #if L==0 "Para eliminar una asignatura, primero debe eliminar" " todos los usuarios de esa asignatura."; // Necessita traduccio #elif L==1 "To remove a course, you must first remove" " all users in the course."; // Need Übersetzung #elif L==2 "To remove a course, you must first remove" " all users in the course."; #elif L==3 "Para eliminar una asignatura, primero debe eliminar" " todos los usuarios de esa asignatura."; #elif L==4 "To remove a course, you must first remove" " all users in the course."; // Besoin de traduction #elif L==5 "Para eliminar una asignatura, primero debe eliminar" " todos los usuarios de esa asignatura."; // Okoteve traducción #elif L==6 "Per rimuovere un corso, devi prima rimuovere" " tutti gli utenti di quel corso."; #elif L==7 "To remove a course, you must first remove" " all users in the course."; // Potrzebujesz tlumaczenie #elif L==8 "To remove a course, you must first remove" " all users in the course."; // Necessita de tradução #endif const char *Txt_To_remove_a_degree_you_must_first_remove_all_courses_in_the_degree = #if L==0 "Para eliminar una titulación, primero debe eliminar" " todas las asignaturas de esa titulación."; // Necessita traduccio #elif L==1 "To remove a degree, you must first remove" " all courses in the degree."; // Need Übersetzung #elif L==2 "To remove a degree, you must first remove" " all courses in the degree."; #elif L==3 "Para eliminar una titulación, primero debe eliminar" " todas las asignaturas de esa titulación."; #elif L==4 "To remove a degree, you must first remove" " all courses in the degree."; // Besoin de traduction #elif L==5 "Para eliminar una titulación, primero debe eliminar" " todas las asignaturas de esa titulación."; // Okoteve traducción #elif L==6 "Per rimuovere una laurea, devi prima rimuovere" " tutti i corsi della laurea."; #elif L==7 "To remove a degree, you must first remove" " all courses in the degree."; // Potrzebujesz tlumaczenie #elif L==8 "To remove a degree, you must first remove" " all courses in the degree."; // Necessita de tradução #endif const char *Txt_To_remove_a_department_you_must_first_remove_all_teachers_in_the_department = #if L==0 "Para eliminar un departamento, primero debe eliminar" " todos los profesores de ese departamento."; // Necessita traduccio #elif L==1 "To remove a department, you must first remove" " all teachers in the department."; // Need Übersetzung #elif L==2 "To remove a department, you must first remove" " all teachers in the department."; #elif L==3 "Para eliminar un departamento, primero debe eliminar" " todos los profesores de ese departamento."; #elif L==4 "To remove a department, you must first remove" " all teachers in the department."; // Besoin de traduction #elif L==5 "Para eliminar un departamento, primero debe eliminar" " todos los profesores de ese departamento."; // Okoteve traducción #elif L==6 "Per rimuovere un dipartimento, devi prima rimuovere" " tutti i professori di quel dipartimento."; #elif L==7 "To remove a department, you must first remove" " all teachers in the department."; // Potrzebujesz tlumaczenie #elif L==8 "To remove a department, you must first remove" " all teachers in the department."; // Necessita de tradução #endif const char *Txt_To_remove_a_place_you_must_first_remove_all_centres_of_that_place = #if L==0 "Para eliminar un lugar, primero debe eliminar" " todos los centros de ese lugar."; // Necessita traduccio #elif L==1 "To remove a place, you must first remove" " all centres of that place."; // Need Übersetzung #elif L==2 "To remove a place, you must first remove" " all centres of that place."; #elif L==3 "Para eliminar un lugar, primero debe eliminar" " todos los centros de ese lugar."; #elif L==4 "To remove a place, you must first remove" " all centres of that place."; // Besoin de traduction #elif L==5 "Para eliminar un lugar, primero debe eliminar" " todos los centros de ese lugar."; // Okoteve traducción #elif L==6 "Per rimuovere un luogo, devi prima rimuovere" " tutte le centri di quel luogo."; #elif L==7 "To remove a place, you must first remove" " all centres of that place."; // Potrzebujesz tlumaczenie #elif L==8 "To remove a place, you must first remove" " all centres of that place."; // Necessita de tradução #endif const char *Txt_To_remove_a_type_of_degree_you_must_first_remove_all_degrees_of_that_type = #if L==0 "Para eliminar un tipo de titulación, primero debe eliminar" " todas las titulaciones de ese tipo."; // Necessita traduccio #elif L==1 "To remove a type of degree, you must first remove" " all degrees of that type."; // Need Übersetzung #elif L==2 "To remove a type of degree, you must first remove" " all degrees of that type."; #elif L==3 "Para eliminar un tipo de titulación, primero debe eliminar" " todas las titulaciones de ese tipo."; #elif L==4 "To remove a type of degree, you must first remove" " all degrees of that type."; // Besoin de traduction #elif L==5 "Para eliminar un tipo de titulación, primero debe eliminar" " todas las titulaciones de ese tipo."; // Okoteve traducción #elif L==6 "Per rimuovere un tipo di laurea, devi prima rimuovere" " tutte le lauree di quel tipo."; #elif L==7 "To remove a type of degree, you must first remove" " all degrees of that type."; // Potrzebujesz tlumaczenie #elif L==8 "To remove a type of degree, you must first remove" " all degrees of that type."; // Necessita de tradução #endif const char *Txt_To_remove_an_institution_you_must_first_remove_all_centres_and_users_in_the_institution = #if L==0 "Para eliminar una institución, primero debe eliminar" " todos los centros y todos los usuarios de esa institución."; // Necessita traduccio #elif L==1 "To remove an institution, you must first remove" " all centres and users in the institution."; // Need Übersetzung #elif L==2 "To remove an institution, you must first remove" " all centres and users in the institution."; #elif L==3 "Para eliminar una institución, primero debe eliminar" " todos los centros y todos los usuarios de esa institución."; #elif L==4 "To remove an institution, you must first remove" " all centres and users in the institution."; // Besoin de traduction #elif L==5 "Para eliminar una institución, primero debe eliminar" " todos centros y todos los usuarios de esa institución."; // Okoteve traducción #elif L==6 "Per rimuovere un'istituzione, devi prima rimuovere" " tutti gli centri e utenti di quell'istituzione."; #elif L==7 "To remove an institution, you must first remove" " all centres and users in the institution."; // Potrzebujesz tlumaczenie #elif L==8 "To remove an institution, you must first remove" " all centres and users in the institution."; // Necessita de tradução #endif const char *Txt_to_see_photos_of_others_you_have_to_allow_others_to_see_your_photo_you_can_do_it_in_X = // Warning: it is very important to include %s in the following sentences #if L==0 "para ver las fotos de otros," " tiene que permitir que otros vean la suya;" " puede hacerlo en %s"; // Necessita traduccio #elif L==1 "to see photos of others," " you have to allow others to see your photo;" " you can do it in %s"; // Need Übersetzung #elif L==2 "to see photos of others," " you have to allow others to see your photo;" " you can do it in %s"; #elif L==3 "para ver las fotos de otros," " tiene que permitir que otros vean la suya;" " puede hacerlo en %s"; #elif L==4 "to see photos of others," " you have to allow others to see your photo;" " you can do it in %s"; // Besoin de traduction #elif L==5 "para ver las fotos de otros," " tiene que permitir que otros vean la suya;" " puede hacerlo en %s"; // Okoteve traducción #elif L==6 "per vedere le foto di altri," " devi permettere agli altri di vedere la tua foto;" " puoi farlo in %s"; #elif L==7 "to see photos of others," " you have to allow others to see your photo;" " you can do it in %s"; // Potrzebujesz tlumaczenie #elif L==8 "to see photos of others," " you have to allow others to see your photo;" " you can do it in %s"; // Necessita de tradução #endif const char *Txt_to_see_photos_of_others_you_have_to_send_your_photo_you_can_do_it_in_X = // Warning: it is very important to include %s in the following sentences #if L==0 "para ver las fotos de otros, tiene que enviar la suya;" " puede hacerlo en %s"; // Necessita traduccio #elif L==1 "to see photos of others, you have to send your photo;" " you can do it in %s"; // Need Übersetzung #elif L==2 "to see photos of others, you have to send your photo;" " you can do it in %s"; #elif L==3 "para ver las fotos de otros, tiene que enviar la suya;" " puede hacerlo en %s"; #elif L==4 "to see photos of others, you have to send your photo;" " you can do it in %s"; // Besoin de traduction #elif L==5 "para ver las fotos de otros, tiene que enviar la suya;" " puede hacerlo en %s"; // Okoteve traducción #elif L==6 "per vedere le foto di altri, devi inviare la tua foto;" " puoi farlo in %s"; #elif L==7 "to see photos of others, you have to send your photo;" " you can do it in %s"; // Potrzebujesz tlumaczenie #elif L==8 "to see photos of others, you have to send your photo;" " you can do it in %s"; // Necessita de tradução #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 #if L==0 "Per utilitzar el xat cal tenir instal lat el programari" " %s" " i afegir https://%s" " a la llista de llocs permesos en el panell de control de Java."; #elif L==1 "So verwenden Sie chatten, müssen Sie die Software installiert haben" " %s" " und fügen Sie https://%s" " in die Liste der erlaubten Seiten in der Java-Bedienfeld."; #elif L==2 "To use chat you must have installed the software" " %s" " and add https://%s" " to the list of allowed sites in the Java control panel."; #elif L==3 "Para usar el chat es necesario tener instalado el software" " %s" " y añadir https://%s" " a la lista de sitios permitidos en el panel de control de Java."; #elif L==4 "Pour utiliser le chat, vous devez avoir installé le logiciel" " %s" " et ajouter https://%s" " à la liste des sites autorisés dans le panneau de contrôle Java."; #elif L==5 "Para usar el chat es necesario tener instalado el software" " %s" " y añadir https://%s" " a la lista de sitios permitidos en el panel de control de Java."; // Okoteve traducción #elif L==6 "Per utilizzare la chat devi aver installato il software" " %s" " e aggiungere https://%s" " alla lista dei siti consentiti nel pannello di controllo Java."; #elif L==7 "To use chat you must have installed the software" " %s" " and add https://%s" " to the list of allowed sites in the Java control panel."; // Potrzebujesz tlumaczenie #elif L==8 "Para usar o chat é necessário ter instalado o software" " %s" " e adicionar https://%s" " à lista de sites permitidos no painel de controle Java."; #endif const char *Txt_Today = #if L==0 "Avui"; #elif L==1 "Heute"; #elif L==2 "Today"; #elif L==3 "Hoy"; #elif L==4 "Aujourd'hui"; #elif L==5 "Ko ára"; #elif L==6 "Oggi"; #elif L==7 "Today"; // Potrzebujesz tlumaczenie #elif L==8 "Hoje"; #endif const char *Txt_Too_fast = #if L==0 "Massa ràpid!"; #elif L==1 "Zu schnell!"; #elif L==2 "Too fast!"; #elif L==3 "¡Demasiado rápido!"; #elif L==4 "Trop vite!"; #elif L==5 "¡Demasiado rápido!"; // Okoteve traducción #elif L==6 "Troppo veloce!"; #elif L==7 "Za szybko!"; #elif L==8 "Muito rápido!"; #endif const char *Txt_Total = #if L==0 "Total"; // Necessita traduccio #elif L==1 "Gesamtzahl"; #elif L==2 "Total"; #elif L==3 "Total"; #elif L==4 "Total"; #elif L==5 "Total"; // Okoteve traducción #elif L==6 "Totale"; #elif L==7 "Total"; // Potrzebujesz tlumaczenie #elif L==8 "Total"; #endif const char *Txt_Total_BR_score = #if L==0 "Puntuación
total"; // Necessita traduccio #elif L==1 "Gesamt"; #elif L==2 "Total
score"; #elif L==3 "Puntuación
total"; #elif L==4 "Note
total"; #elif L==5 "Puntuación
total "; // Okoteve traducción #elif L==6 "Punteggio
totale"; #elif L==7 "Total
score"; // Potrzebujesz tlumaczenie #elif L==8 "Pontuação
total"; #endif const char *Txt_Try_sending_another_image_where_the_face_appears_in_front_position_ = #if L==0 "Pruebe a enviar otra imagen donde el rostro aparezca de frente" " y el fondo detrás de la cabeza sea blanco o muy claro."; // Necessita traduccio #elif L==1 "Try sending another image where the face appears in front position" " and the background behind of the head is white or very light."; // Need Übersetzung #elif L==2 "Try sending another image where the face appears in front position" " and the background behind of the head is white or very light."; #elif L==3 "Pruebe a enviar otra imagen donde el rostro aparezca de frente" " y el fondo detrás de la cabeza sea blanco o muy claro."; #elif L==4 "Try sending another image where the face appears in front position" " and the background behind of the head is white or very light."; // Besoin de traduction #elif L==5 "Pruebe a enviar otra imagen donde el rostro aparezca de frente" " y el fondo detrás de la cabeza sea blanco o muy claro."; // Okoteve traducción #elif L==6 "Prova a inviare un'altra immagine dove il viso appare in posizione frontale" " e lo sfondo dietro della testa è bianco o molto chiaro."; #elif L==7 "Try sending another image where the face appears in front position" " and the background behind of the head is white or very light."; // Potrzebujesz tlumaczenie #elif L==8 "Try sending another image where the face appears in front position" " and the background behind of the head is white or very light."; // Necessita de tradução #endif const char *Txt_TST_Correct_ANSWER = #if L==0 "Correcta"; // Necessita traduccio #elif L==1 "Richtige"; #elif L==2 "Correct"; #elif L==3 "Correcta"; #elif L==4 "Bonne"; #elif L==5 "Correcta"; // Okoteve traducción #elif L==6 "Corretta"; #elif L==7 "Correct"; // Potrzebujesz tlumaczenie #elif L==8 "Correta"; #endif const char *Txt_TST_PLUGGABLE[Tst_NUM_OPTIONS_PLUGGABLE] = { // Tst_PLUGGABLE_UNKNOWN "", // Tst_PLUGGABLE_NO #if L==0 "Tests no visibles des de mòbils" #elif L==1 "Tests nicht zum Download aus Handys" #elif L==2 "Tests not downloadable from mobile phones" #elif L==3 "Tests no visibles desde móviles" #elif L==4 "Tests non téléchargeables à partir de mobiles" #elif L==5 "Tests no visibles desde móviles" // Okoteve traducción #elif L==6 "Test non scaricabili da cellulari" #elif L==7 "Nie Testy pobrania z komórkowych" #elif L==8 "Testes não para download de celulares" #endif , // Tst_PLUGGABLE_YES #if L==0 "Tests visibles des de mòbils (opció recomanada)" #elif L==1 "Tests zum Download aus Handys (empfohlene Option)" #elif L==2 "Tests downloadable from mobile phones (recommended option)" #elif L==3 "Tests visibles desde móviles (opción recomendada)" #elif L==4 "Tests téléchargeables à partir de mobiles (option recommandée)" #elif L==5 "Tests visibles desde móviles (opción recomendada)"// Okoteve traducción #elif L==6 "Test scaricabili da cellulari (opzione consigliata)" #elif L==7 "Testy do pobrania z komórkowych (zalecana opcja)" #elif L==8 "Testes para download de celulares (opção recomendada)" #endif }; const char *Txt_TST_STR_ANSWER_TYPES[Tst_NUM_ANS_TYPES] = { #if L==0 "Nombre enter" #elif L==1 "Ganze Zahl" #elif L==2 "Integer number" #elif L==3 "Nº entero" #elif L==4 "Nombre entier" #elif L==5 "Nº entero" // Okoteve traducción #elif L==6 "Numero intero" #elif L==7 "Integer number" // Potrzebujesz tlumaczenie #elif L==8 "Nº inteiro" #endif , #if L==0 "Nombre real" #elif L==1 "Reelle Zahl" #elif L==2 "Real number" #elif L==3 "Nº real" #elif L==4 "Nombre réel" #elif L==5 "Nº real" // Okoteve traducción #elif L==6 "Numero reale" #elif L==7 "Real number" // Potrzebujesz tlumaczenie #elif L==8 "Nº real" #endif , #if L==0 "V/F" #elif L==1 "R/F" #elif L==2 "T/F" #elif L==3 "V/F" #elif L==4 "V/F" #elif L==5 "V/F" // Okoteve traducción #elif L==6 "V/F" #elif L==7 "T/F" // Potrzebujesz tlumaczenie #elif L==8 "V/F" #endif , #if L==0 "Elecció única" #elif L==1 "Unique-Choice" #elif L==2 "Unique choice" #elif L==3 "Elección única" #elif L==4 "Choix unique" #elif L==5 "Elección única" // Okoteve traducción #elif L==6 "Scelta unica" #elif L==7 "Unique choice" // Potrzebujesz tlumaczenie #elif L==8 "Única escolha" #endif , #if L==0 "Elecció múltiple" #elif L==1 "Multiple-Choice" #elif L==2 "Multiple choice" #elif L==3 "Elección múltiple" #elif L==4 "Choix multiple" #elif L==5 "Elección múltiple" // Okoteve traducción #elif L==6 "Scelta multipla" #elif L==7 "Multiple choice" // Potrzebujesz tlumaczenie #elif L==8 "Múltipla escolha" #endif , #if L==0 "Text" #elif L==1 "Text" #elif L==2 "Text" #elif L==3 "Texto" #elif L==4 "Texte" #elif L==5 "Mba'ehaipyre" #elif L==6 "Testo" #elif L==7 "Text" // Potrzebujesz tlumaczenie #elif L==8 "Texto" #endif , }; const char *Txt_TST_STR_FEEDBACK[Tst_NUM_TYPES_FEEDBACK] = { #if L==0 "Ninguna realimentación" // Necessita traduccio #elif L==1 "Keine Feedback" #elif L==2 "No feedback" #elif L==3 "Ninguna realimentación" #elif L==4 "Pas de feedback" #elif L==5 "Ninguna realimentación" // Okoteve traducción #elif L==6 "Nessun feedback" #elif L==7 "No feedback" // Potrzebujesz tlumaczenie #elif L==8 "Nenhum feedback" #endif , #if L==0 "Poca: sólo puntuación total" // Necessita traduccio #elif L==1 "Kleine: nur die Gesamtnote" #elif L==2 "Little: only the total score" #elif L==3 "Poca: sólo puntuación total" #elif L==4 "Petit: seul le note total" #elif L==5 "Poca: sólo puntuación total" // Okoteve traducción #elif L==6 "Poco: solo il punteggio totale" #elif L==7 "Little: only the total score" // Potrzebujesz tlumaczenie #elif L==8 "Pouco: apenas a pontuação total" #endif , #if L==0 "Media: puntuación de cada pregunta" // Necessita traduccio #elif L==1 "Medium: Ergebnisse der einzelnen Frage" #elif L==2 "Medium: result of each question" #elif L==3 "Media: puntuación de cada pregunta" #elif L==4 "Medium: le résultat de chaque question" #elif L==5 "Media: puntuación de cada pregunta" // Okoteve traducción #elif L==6 "Medio: risultato di ogni domanda" #elif L==7 "Medium: result of each question" // Potrzebujesz tlumaczenie #elif L==8 "Médio: pontuação de cada questão" #endif , #if L==0 "Alta: respuesta correcta en cada pregunta" // Necessita traduccio #elif L==1 "Maximale Details: die richtige Antwort für jede Frage" #elif L==2 "High: correct answer for each question" #elif L==3 "Alta: respuesta correcta en cada pregunta" #elif L==4 "Haute: bonne réponse pour chaque question" #elif L==5 "Alta: respuesta correcta en cada pregunta" // Okoteve traducción #elif L==6 "Alto: la corretta risposta per ogni domanda" #elif L==7 "High: correct answer for each question" // Potrzebujesz tlumaczenie #elif L==8 "Alto: resposta correta para cada questão" #endif , #if L==0 "Máxima: mostrar texto de realimentación" // Necessita traduccio #elif L==1 "Maximale: zeigen Feedback text" #elif L==2 "Maximum: show feedback text" #elif L==3 "Máxima: mostrar texto de realimentación" #elif L==4 "Maximum: afficher le texte de feedback" #elif L==5 "Máxima: mostrar texto de realimentación" // Okoteve traducción #elif L==6 "Massimo: visualizzare il testo de feedback" #elif L==7 "Maximum: show feedback text" // Potrzebujesz tlumaczenie #elif L==8 "Máximo: mostrar o texto de feedback" #endif }; const char *Txt_TST_STR_ORDER_FULL[Tst_NUM_TYPES_ORDER_QST] = { #if L==0 // Tst_ORDER_STEM "Ordenar por enunciado de la pregunta" // Necessita traduccio #elif L==1 "Sortieren nach Stammzellen in Frage" #elif L==2 "Sort by stem of the question" #elif L==3 "Ordenar por enunciado de la pregunta" #elif L==4 "Trier par question" #elif L==5 "Ordenar por enunciado de la pregunta" // Okoteve traducción #elif L==6 "Ordina per domanda" #elif L==7 "Sort by stem of the question" // Potrzebujesz tlumaczenie #elif L==8 "Classificar por formulação da questão" #endif , #if L==0 // Tst_ORDER_NUM_HITS "Ordenar por nº de veces que se ha respondido la pregunta" // Necessita traduccio #elif L==1 "Sortieren nach Anzahl der mal die Frage beantwortet wurde" #elif L==2 "Sort by number of times the question has been answered" #elif L==3 "Ordenar por nº de veces que se ha respondido la pregunta" #elif L==4 "Trier par nombre de fois qu'on a répondu à la question" #elif L==5 "Ordenar por nº de veces que se ha respondido la pregunta" // Okoteve traducción #elif L==6 "Ordina per numero di volte che hai risposto alla domanda" #elif L==7 "Sort by number of times the question has been answered" // Potrzebujesz tlumaczenie #elif L==8 "Classificar por número de vezes que a questão foi respondida" #endif , #if L==0 // TST_ORDER_AVERAGE_SCORE "Ordenar por puntuación media" // Necessita traduccio #elif L==1 "Sortieren nach Durchschnittsnote" #elif L==2 "Sort by average score" #elif L==3 "Ordenar por puntuación media" #elif L==4 "Trier par note moyenne" #elif L==5 "Ordenar por puntuación media" // Okoteve traducción #elif L==6 "Ordina per punteggio medio" #elif L==7 "Sort by average score" // Potrzebujesz tlumaczenie #elif L==8 "Classificar por pontuação média" #endif #if L==0 // Tst_ORDER_NUM_HITS_NOT_BLANK "Ordenar por nº de veces que se ha respondido" " la pregunta (excluyendo respuestas en blanco)" // Necessita traduccio #elif L==1 "Sortieren nach Anzahl der mal" " die Frage beantwortet wurde (nicht leer)" #elif L==2 "Sort by number of times the question" " has been answered (excluding blank answers)" #elif L==3 "Ordenar por nº de veces que se ha respondido" " la pregunta (excluyendo respuestas en blanco)" #elif L==4 "Trier par nombre de fois qu'on a répondu" " à la question (non vide)" #elif L==5 "Ordenar por nº de veces que se ha respondido" " la pregunta (excluyendo respuestas en blanco)" // Okoteve traducción #elif L==6 "Ordina per numero di volte che hai risposto" " alla domanda (non vuoto)" #elif L==7 "Sort by number of times the question" " has been answered (excluding blank answers)" // Potrzebujesz tlumaczenie #elif L==8 "Classificar por número de vezes" " que a questão foi respondida (não em branco)" #endif , #if L==0 // TST_ORDER_AVERAGE_SCORE_NOT_BLANK "Ordenar por puntuación media (excluyendo respuestas en blanco)" // Necessita traduccio #elif L==1 "Sortieren nach Durchschnittsnote (nicht leer)" #elif L==2 "Sort by average score (excluding blank answers)" #elif L==3 "Ordenar por puntuación media (excluyendo respuestas en blanco)" #elif L==4 "Trier par note moyenne (non vide)" #elif L==5 "Ordenar por puntuación media (excluyendo respuestas en blanco)" // Okoteve traducción #elif L==6 "Ordina per punteggio medio (non vuoto)" #elif L==7 "Sort by average score (excluding blank answers)" // Potrzebujesz tlumaczenie #elif L==8 "Classificar por pontuação média (não em branco)" #endif }; const char *Txt_TST_STR_ORDER_SHORT[Tst_NUM_TYPES_ORDER_QST] = { #if L==0 // Tst_ORDER_STEM "Pregunta" // Necessita traduccio #elif L==1 "Frage" #elif L==2 "Question" #elif L==3 "Pregunta" #elif L==4 "Question" #elif L==5 "Pregunta" // Okoteve traducción #elif L==6 "Domanda" #elif L==7 "Question" // Potrzebujesz tlumaczenie #elif L==8 "Questão" #endif , #if L==0 // Tst_ORDER_NUM_HITS "Nº
resp." // Necessita traduccio #elif L==1 "Anzahl
Antw." #elif L==2 "No.
ans." #elif L==3 "Nº
resp." #elif L==4 "Nombre
rép." #elif L==5 "Nº
resp." // Okoteve traducción #elif L==6 "Num.
risp." #elif L==7 "No.
ans." // Potrzebujesz tlumaczenie #elif L==8 "Nº
resp." #endif , #if L==0 // TST_ORDER_AVERAGE_SCORE "Puntuación
media" // Necessita traduccio #elif L==1 "Durchschnitt" #elif L==2 "Average
score" #elif L==3 "Puntuación
media" #elif L==4 "Note
moyenne" #elif L==5 "Puntuación
media" // Okoteve traducción #elif L==6 "Punteggio
medio" #elif L==7 "Average
score" // Potrzebujesz tlumaczenie #elif L==8 "Pontuação
média" #endif , #if L==0 // Tst_ORDER_NUM_HITS "Nº
resp.
no en
blanco" // Necessita traduccio #elif L==1 "Anzahl
Antw.
nicht
leer" #elif L==2 "No.
ans.
not
blank" #elif L==3 "Nº
resp.
no en
blanco" #elif L==4 "Nombre
rép.
non
vide" #elif L==5 "Nº
resp.
no en
blanco" // Okoteve traducción #elif L==6 "Num.
risp.
non
vuoto" #elif L==7 "No.
ans.
not
blank" // Potrzebujesz tlumaczenie #elif L==8 "Nº
resp.
não em
branco" #endif , #if L==0 // TST_ORDER_AVERAGE_SCORE "Puntuación
media
no en
blanco" // Necessita traduccio #elif L==1 "Durchschnitt
nicht
leer" #elif L==2 "Average
score
not
blank" #elif L==3 "Puntuación
media
no en
blanco" #elif L==4 "Note
moyenne
non
vide" #elif L==5 "Puntuación
media
no en
blanco" // Okoteve traducción #elif L==6 "Punteggio
medio
non
vuoto" #elif L==7 "Average
score
not
blank" // Potrzebujesz tlumaczenie #elif L==8 "Pontuação
média
não em
branco" #endif }; const char *Txt_TF_QST[2] = { #if L==0 // True "V" // Necessita traduccio #elif L==1 "R" #elif L==2 "T" #elif L==3 "V" #elif L==4 "V" #elif L==5 "V" // Okoteve traducción #elif L==6 "V" #elif L==7 "T" // Potrzebujesz tlumaczenie #elif L==8 "V" #endif , #if L==0 // False "F" // Necessita traduccio #elif L==1 "F" #elif L==2 "F" #elif L==3 "F" #elif L==4 "F" #elif L==5 "F" // Okoteve traducción #elif L==6 "F" #elif L==7 "F" // Potrzebujesz tlumaczenie #elif L==8 "F" #endif }; const char *Txt_Type = #if L==0 "Tipus"; #elif L==1 "Art"; #elif L==2 "Type"; #elif L==3 "Tipo"; #elif L==4 "Type"; #elif L==5 "Teko"; #elif L==6 "Tipo"; #elif L==7 "Type"; // Potrzebujesz tlumaczenie #elif L==8 "Tipo"; #endif const char *Txt_Type_of_BR_answers = // Answers of a test #if L==0 "Tipus de
resposte"; #elif L==1 "Antworttype"; #elif L==2 "Type of
answers"; #elif L==3 "Tipo de
respuestas"; #elif L==4 "Type de
réponses"; #elif L==5 "Tipo de
respuestas"; // Okoteve traducción #elif L==6 "Tipo di
risposte"; #elif L==7 "Typu
odpowiedzi"; #elif L==8 "Tipo de
respostas"; #endif const char *Txt_Type_of_degree = #if L==0 "Tipus de titulació"; #elif L==1 "Abschlussart"; #elif L==2 "Type of degree"; #elif L==3 "Tipo de titulación"; #elif L==4 "Type d'étude"; #elif L==5 "Arandurã lája"; #elif L==6 "Tipo di laurea"; #elif L==7 "Type of degree"; // Potrzebujesz tlumaczenie #elif L==8 "Tipo de titulação"; #endif const char *Txt_Type_of_BR_degree = #if L==0 "Tipo de
titulación"; // Necessita traduccio #elif L==1 "Abschlussart"; #elif L==2 "Type of
degree"; #elif L==3 "Tipo de
titulación"; #elif L==4 "Type
d'étude"; #elif L==5 "Tipo de
titulación"; // Okoteve traducción #elif L==6 "Tipo di
laurea"; #elif L==7 "Type of
degree"; // Potrzebujesz tlumaczenie #elif L==8 "Tipo de
titulação"; #endif const char *Txt_Type_of_degree_X_removed = // Warning: it is very important to include %s in the following sentences #if L==0 "Tipo de titulación %s eliminada."; // Necessita traduccio #elif L==1 "Type of degree %s removed."; // Übersetzung notwendig #elif L==2 "Type of degree %s removed."; #elif L==3 "Tipo de titulación %s eliminada."; #elif L==4 "Type of degree %s removed."; // Besoin de traduction #elif L==5 "Tipo de titulación %s eliminada."; // Okoteve traducción #elif L==6 "Tipo di laurea %s rimossa."; #elif L==7 "Type of degree %s removed."; // Potrzebujesz tlumaczenie #elif L==8 "Type of degree %s removed."; // Necessita de tradução #endif const char *Txt_Type_of_group = #if L==0 "Tipo de grupo"; // Necessita traduccio #elif L==1 "Art der Gruppe"; #elif L==2 "Type of group"; #elif L==3 "Tipo de grupo"; #elif L==4 "Type de groupe"; #elif L==5 "Tipo de grupo"; // Okoteve traducción #elif L==6 "Tipo di gruppo"; #elif L==7 "Type of group"; // Potrzebujesz tlumaczenie #elif L==8 "Tipo de grupo"; #endif const char *Txt_Type_BR_of_group = #if L==0 "Tipo
de grupo"; // Necessita traduccio #elif L==1 "Art
der Gruppe"; #elif L==2 "Type
of group"; #elif L==3 "Tipo
de grupo"; #elif L==4 "Type
de groupe"; #elif L==5 "Tipo
de grupo"; // Okoteve traducción #elif L==6 "Tipo
di gruppo"; #elif L==7 "Type
of group"; // Potrzebujesz tlumaczenie #elif L==8 "Tipo
de grupo"; #endif const char *Txt_Type_of_group_X_removed = // Warning: it is very important to include %s in the following sentences #if L==0 "Tipo de grupo %s eliminado."; // Necessita traduccio #elif L==1 "Gruppen-Typ %s wurde entfernt."; #elif L==2 "Type of group %s removed."; #elif L==3 "Tipo de grupo %s eliminado."; #elif L==4 "Type of group %s removed."; // Besoin de traduction #elif L==5 "Tipo de grupo %s eliminado."; // Okoteve traducción #elif L==6 "Tipo di gruppo %s rimosso."; #elif L==7 "Type of group %s removed."; // Potrzebujesz tlumaczenie #elif L==8 "Type of group %s removed."; // Necessita de tradução #endif const char *Txt_Types_of_group = #if L==0 "Tipus de grup"; #elif L==1 "Gruppen-Typen"; #elif L==2 "Types of group"; #elif L==3 "Tipos de grupo"; #elif L==4 "Types de groupe"; #elif L==5 "Tipos de grupo"; // Okoteve traducción #elif L==6 "Tipi di gruppo"; #elif L==7 "Types of group"; // Potrzebujesz tlumaczenie #elif L==8 "Tipos de grupo"; #endif const char *Txt_Type_or_paste_a_list_of_IDs_nicks_or_emails_ = #if L==0 "Escriba o pegue una lista" " con @apodos, correos o ID (DNI/cédulas)." " Los @apodos, correos o ID (DNI/cédulas)" " pueden ir separados por cadenas de caracteres arbitrarias" " (por ej. nombres, apellidos, espacios, etc.)." " Sólo se tendrán en cuenta aquellas palabras" " que parezcan @apodos, correos o ID (DNI/cédulas);" " el resto del texto se ignorará."; // Necessita traduccio #elif L==1 "Type or paste a list" " of @nicks, e-mails or IDs." " The @nicks, e-mails or IDs" " can be separated by arbitrary strings" " (eg. names, places, etc.)." " Only the words that seems @nicks, e-mails or IDs" " will be taken into account;" " the rest of the text will be ignored."; // Need Übersetzung #elif L==2 "Type or paste a list" " of @nicks, e-mails or IDs." " The @nicks, e-mails or IDs" " can be separated by arbitrary strings" " (eg. names, places, etc.)." " Only the words that seems @nicks, e-mails or IDs" " will be taken into account;" " the rest of the text will be ignored."; #elif L==3 "Escriba o pegue una lista" " con @apodos, correos o ID (DNI/cédulas)." " Los @apodos, correos o ID (DNI/cédulas)" " pueden ir separados por cadenas de caracteres arbitrarias" " (por ej. nombres, apellidos, espacios, etc.)." " Sólo se tendrán en cuenta aquellas palabras" " que parezcan @apodos, correos o ID (DNI/cédulas);" " el resto del texto se ignorará."; #elif L==4 "Type or paste a list" " of @nicks, e-mails or IDs." " The @nicks, e-mails or IDs" " can be separated by arbitrary strings" " (eg. names, places, etc.)." " Only the words that seems @nicks, e-mails or IDs" " will be taken into account;" " the rest of the text will be ignored."; // Besoin de traduction #elif L==5 "Escriba o pegue una lista" " con @apodos, correos o ID (DNI/cédulas)." " Los @apodos, correos o ID (DNI/cédulas)" " pueden ir separados por cadenas de caracteres arbitrarias" " (por ej. nombres, apellidos, espacios, etc.)." " Sólo se tendrán en cuenta aquellas palabras" " que parezcan @apodos, correos o ID (DNI/cédulas);" " el resto del texto se ignorará."; // Okoteve traducción #elif L==6 "Scrivi o incolla la lista" " di @nome-utenti, e-mails o IDs." " I @nome-utenti, e-mails o IDs" " possono essere separati da caratteri arbitrari" " (eg. nomi, luoghi, etc.)." " Solo le parole che sembrano" " @nome-utenti, e-mails o IDs" " saranno presi in considerazione;" " il resto del testo sarà ignorato."; #elif L==7 "Type or paste a list" " of @nicks, e-mails or IDs." " The @nicks, e-mails or IDs" " can be separated by arbitrary strings" " (eg. names, places, etc.)." " Only the words that seems @nicks, e-mails or IDs" " will be taken into account;" " the rest of the text will be ignored."; // Potrzebujesz tlumaczenie #elif L==8 "Type or paste a list" " of @nicks, e-mails or IDs." " The @nicks, e-mails or IDs" " can be separated by arbitrary strings" " (eg. names, places, etc.)." " Only the words that seems @nicks, e-mails or IDs" " will be taken into account;" " the rest of the text will be ignored."; // Necessita de tradução #endif const char *Txt_Types_of_degree = #if L==0 "Tipus de titulació"; #elif L==1 "Abschlussart"; #elif L==2 "Types of degree"; #elif L==3 "Tipos de titulación"; #elif L==4 "Types d'étude"; #elif L==5 "Arandurã lája"; #elif L==6 "Tipi di laurea"; #elif L==7 "Types of degree"; // Potrzebujesz tlumaczenie #elif L==8 "Tipos de titulação"; #endif const char *Txt_TYPES_OF_DEGREE_With_degrees = #if L==0 "Amb titulacions"; #elif L==1 "Mit Studiengang"; #elif L==2 "With degrees"; #elif L==3 "Con titulaciones"; #elif L==4 "Avec études"; #elif L==5 "Con titulaciones"; // Okoteve traducción #elif L==6 "Con lauree"; #elif L==7 "Z Stopnie"; #elif L==8 "Com titulaçoes"; #endif const char *Txt_TYPES_OF_DEGREE_Without_degrees = #if L==0 "Sense titulacions"; #elif L==1 "Ohne Studiengang"; #elif L==2 "Without degrees"; #elif L==3 "Sin titulaciones"; #elif L==4 "Sans études"; #elif L==5 "Sin titulaciones"; // Okoteve traducción #elif L==6 "Senza lauree"; #elif L==7 "Bez Stopnie"; #elif L==8 "Sem titulaçoes"; #endif const char *Txt_Undo = #if L==0 "Desfer"; #elif L==1 "Rückgängig"; #elif L==2 "Undo"; #elif L==3 "Deshacer"; #elif L==4 "Annuler"; #elif L==5 "Deshacer"; // Okoteve traducción #elif L==6 "Annulla"; #elif L==7 "Anulować"; #elif L==8 "Desfazer"; #endif const char *Txt_unknown_course = #if L==0 "assignatura desconeguda"; #elif L==1 "Veranstaltung unbekannt"; #elif L==2 "unknown course"; #elif L==3 "asignatura desconocida"; #elif L==4 "matière inconnue"; #elif L==5 "asignatura desconocida"; // Okoteve traducción #elif L==6 "corso sconosciuto"; #elif L==7 "kurs nieznany"; #elif L==8 "disciplina desconhecida"; #endif const char *Txt_unknown_assignment = #if L==0 "activitat desconeguda"; #elif L==1 "Aufgabe unbekannt"; #elif L==2 "unknown assignment"; #elif L==3 "actividad desconocida"; #elif L==4 "activité inconnue"; #elif L==5 "actividad desconocida"; // Okoteve traducción #elif L==6 "attività sconosciuta"; #elif L==7 "unknown assignment"; // Potrzebujesz tlumaczenie #elif L==8 "atividade desconhecida"; #endif const char *Txt_unknown_recipient = #if L==0 "destinatario desconocido"; // Necessita traduccio #elif L==1 "Empfänger unbekannt"; #elif L==2 "unknown recipient"; #elif L==3 "destinatario desconocido"; #elif L==4 "destinataire inconnu"; #elif L==5 "destinatario desconocido"; // Okoteve traducción #elif L==6 "destinatario sconosciuto"; #elif L==7 "unknown recipient"; // Potrzebujesz tlumaczenie #elif L==8 "destinatário desconhecido"; #endif const char *Txt_unknown_recipients = #if L==0 "destinatarios desconocidos"; // Necessita traduccio #elif L==1 "Empfänger unbekannt"; #elif L==2 "unknown recipients"; #elif L==3 "destinatarios desconocidos"; #elif L==4 "destinataires inconnus"; #elif L==5 "destinatarios desconocidos"; // Okoteve traducción #elif L==6 "destinatari sconosciuti"; #elif L==7 "unknown recipients"; // Potrzebujesz tlumaczenie #elif L==8 "destinatários desconhecidos"; #endif const char *Txt_unknown_TIME = #if L==0 "desconocido"; // Necessita traduccio #elif L==1 "unbekannt"; #elif L==2 "unknown"; #elif L==3 "desconocido"; #elif L==4 "inconnu"; #elif L==5 "desconocido"; // Okoteve traducción #elif L==6 "sconosciuto"; #elif L==7 "unknown"; // Potrzebujesz tlumaczenie #elif L==8 "desconhecido"; #endif const char *Txt_unread_MESSAGE = #if L==0 "no leído"; // Necessita traduccio #elif L==1 "ungelesene"; #elif L==2 "unread"; #elif L==3 "no leído"; #elif L==4 "non lu"; #elif L==5 "no leído"; // Okoteve traducción #elif L==6 "non letto"; #elif L==7 "unread"; // Potrzebujesz tlumaczenie #elif L==8 "não lida"; #endif const char *Txt_unread_MESSAGES = #if L==0 "no leídos"; // Necessita traduccio #elif L==1 "ungelesene"; #elif L==2 "unread"; #elif L==3 "no leídos"; #elif L==4 "non lus"; #elif L==5 "no leídos"; // Okoteve traducción #elif L==6 "non letti"; #elif L==7 "unread"; // Potrzebujesz tlumaczenie #elif L==8 "não lidas"; #endif const char *Txt_Unread_BR_msgs = #if L==0 "No
leídos"; // Necessita traduccio #elif L==1 "Ungel.
Nachr."; #elif L==2 "Unread
msgs."; #elif L==3 "No
leídos"; #elif L==4 "Non
lus"; #elif L==5 "No
leídos"; // Okoteve traducción #elif L==6 "Non
letti"; #elif L==7 "Unread
msgs."; // Potrzebujesz tlumaczenie #elif L==8 "Não
lidas"; #endif const char *Txt_unread_messages_received_from = #if L==0 "mensajes no leídos recibidos desde"; // Necessita traduccio #elif L==1 "ungelesene empfangene Nachrichten aus"; #elif L==2 "unread messages received from"; #elif L==3 "mensajes no leídos recibidos desde"; #elif L==4 "messages non lus reçus de"; #elif L==5 "mensajes no leídos recibidos desde"; // Okoteve traducción #elif L==6 "messaggi non letti ricevuti da"; #elif L==7 "unread messages received from"; // Potrzebujesz tlumaczenie #elif L==8 "mensagens não lidas recebidas de"; #endif const char *Txt_Update = #if L==0 "Actualitzar"; #elif L==1 "Update"; #elif L==2 "Update"; #elif L==3 "Actualizar"; #elif L==4 "Mise à jour"; #elif L==5 "Actualizar"; // Okoteve traducción #elif L==6 "Aggiornamento"; #elif L==7 "Update"; // Potrzebujesz tlumaczenie #elif L==8 "Atualizar"; #endif const char *Txt_Update_connected_users = #if L==0 "Actualitzar usuaris connectats"; #elif L==1 "Update angemeldet Benutzer"; #elif L==2 "Update connected users"; #elif L==3 "Actualizar usuarios conectados"; #elif L==4 "Mise à jour des utilisateurs connectés"; #elif L==5 "Actualizar usuarios conectados"; // Okoteve traducción #elif L==6 "Aggiornamento utenti connessi"; #elif L==7 "Update connected users"; // Potrzebujesz tlumaczenie #elif L==8 "Atualizar os utilizadores conectados"; #endif const char *Txt_Update_indicators = #if L==0 "Actualitzar indicadors"; #elif L==1 "Update Indikatoren"; #elif L==2 "Update indicators"; #elif L==3 "Actualizar indicadores"; #elif L==4 "Mise à jour des indicateurs"; #elif L==5 "Actualizar indicadores"; // Okoteve traducción #elif L==6 "Aggiornamento indicatori"; #elif L==7 "Aktualizacja wskaźniki"; #elif L==8 "Atualizar indocadores"; #endif const char *Txt_Update_students = #if L==0 "Actualitzar estudiants"; #elif L==1 "Update Studenten"; #elif L==2 "Update students"; #elif L==3 "Actualizar estudiantes"; #elif L==4 "Mise à jour des étudiants"; #elif L==5 "Actualizar estudiantes"; // Okoteve traducción #elif L==6 "Aggiornamento studenti"; #elif L==7 "Aktualizacja studentów"; #elif L==8 "Atualizar os estudantes"; #endif const char *Txt_Update_students_according_to_selected_groups = #if L==0 "Actualitzar estudiants segons els grups seleccionats"; #elif L==1 "Update Studenten nach ausgewählten Gruppen"; #elif L==2 "Update students according to selected groups"; #elif L==3 "Actualizar estudiantes según los grupos seleccionados"; #elif L==4 "Mise à jour des étudiants en fonction de groupes sélectionnes"; #elif L==5 "Actualizar estudiantes según los grupos seleccionados"; // Okoteve traducción #elif L==6 "Aggiornamento studenti in base a gruppi selezionati"; #elif L==7 "Update students according to selected groups"; // Potrzebujesz tlumaczenie #elif L==8 "Atualizar os estudantes de acordo com grupos selecionados"; #endif const char *Txt_UPLOAD_FILE_Invalid_name = #if L==0 "Nombre no válido."; // Necessita traduccio #elif L==1 "Invalid name."; // Need Übersetzung #elif L==2 "Invalid name."; #elif L==3 "Nombre no válido."; #elif L==4 "Invalid name."; // Besoin de traduction #elif L==5 "Nombre no válido."; // Okoteve traducción #elif L==6 "Nome non valido."; #elif L==7 "Invalid name."; // Potrzebujesz tlumaczenie #elif L==8 "Invalid name."; // Necessita de tradução #endif const char *Txt_UPLOAD_FILE_X_invalid_name = // Warning: it is very important to include %s in the following sentences #if L==0 "%s: nombre no válido."; // Necessita traduccio #elif L==1 "%s: invalid name."; // Need Übersetzung #elif L==2 "%s: invalid name."; #elif L==3 "%s: nombre no válido."; #elif L==4 "%s: invalid name."; // Besoin de traduction #elif L==5 "%s: nombre no válido."; // Okoteve traducción #elif L==6 "%s: nome non valido."; #elif L==7 "%s: invalid name."; // Potrzebujesz tlumaczenie #elif L==8 "%s: invalid name."; // Necessita de tradução #endif const char *Txt_Upload_file = #if L==0 "Enviar archivo"; // Necessita traduccio #elif L==1 "Upload Datei"; #elif L==2 "Upload file"; #elif L==3 "Enviar archivo"; #elif L==4 "Télécharger fichier"; #elif L==5 "Enviar archivo"; // Okoteve traducción #elif L==6 "Caricare file"; #elif L==7 "Upload file"; // Potrzebujesz tlumaczenie #elif L==8 "Fazer upload de arquivo"; #endif const char *Txt_Upload_file_or_create_folder_in_FOLDER = // Warning: it is very important to include %s in the following sentences #if L==0 "Añadir archivos o crear carpeta en %s"; // Necessita traduccio #elif L==1 "Datei uploaden oder Verzeichnis in %s erstellen"; #elif L==2 "Upload files or create folder in %s"; #elif L==3 "Añadir archivos o crear carpeta en %s"; #elif L==4 "Charger fichiers ou créer répertoire dans %s"; #elif L==5 "Añadir archivos o crear carpeta en %s"; // Okoteve traducción #elif L==6 "Caricare file o creare cartella in %s"; #elif L==7 "Upload file or create folder in %s"; // Potrzebujesz tlumaczenie #elif L==8 "Fazer upload de arquivos ou criar diretório em %s"; #endif const char *Txt_Upload_files = #if L==0 "Enviar fitxers"; #elif L==1 "Upload Dateien"; #elif L==2 "Upload files"; #elif L==3 "Subir archivos"; #elif L==4 "Télécharger fichiers"; #elif L==5 "Subir archivos"; // Okoteve traducción #elif L==6 "Caricare file"; #elif L==7 "Upload files"; // Potrzebujesz tlumaczenie #elif L==8 "Fazer upload de arquivos"; #endif const char *Txt_Upload_files_QUESTION = #if L==0 "Enviar
fitxers?"; #elif L==1 "Upload
Dateien?"; #elif L==2 "Upload
files?"; #elif L==3 "¿Enviar
archivos?"; #elif L==4 "Télécharger
fichiers?"; #elif L==5 "¿Enviar
archivos?"; // Okoteve traducción #elif L==6 "Caricare
file?"; #elif L==7 "Upload
files?"; // Potrzebujesz tlumaczenie #elif L==8 "Fazer upload
de arquivos?"; #endif const char *Txt_Upload_photo = #if L==0 "Enviar foto"; #elif L==1 "Upload Foto"; #elif L==2 "Upload photo"; #elif L==3 "Subir foto"; #elif L==4 "Télécharger photo"; #elif L==5 "Subir foto"; // Okoteve traducción #elif L==6 "Caricare foto"; #elif L==7 "Upload photo"; // Potrzebujesz tlumaczenie #elif L==8 "Fazer upload de foto"; #endif const char *Txt_Uploaded_by = #if L==0 "Penjat per"; #elif L==1 "Hochgeladen von"; #elif L==2 "Uploaded by"; #elif L==3 "Subido por"; #elif L==4 "Posté par"; #elif L==5 "Subido por"; // Okoteve traducción #elif L==6 "Caricato da"; #elif L==7 "Wyslane przez"; #elif L==8 "Enviado por"; #endif const char *Txt_URL = // Uniform Resource Locator #if L==0 "URL"; #elif L==1 "URL"; #elif L==2 "URL"; #elif L==3 "URL"; #elif L==4 "URL"; #elif L==5 "URL"; // Okoteve traducción #elif L==6 "URL"; #elif L==7 "URL"; #elif L==8 "URL"; #endif const char *Txt_Use_this_email = #if L==0 "Utilitzar aquest correu"; #elif L==1 "Verwenden Sie diese E-Mail"; #elif L==2 "Use this e-mail"; #elif L==3 "Usar este correo"; #elif L==4 "Utiliser ce courrier"; #elif L==5 "Usar este correo"; // Okoteve traducción #elif L==6 "Utilizzare questa e-mail"; #elif L==7 "Użyj tej e-mail"; #elif L==8 "Utilizar este e-mail"; #endif const char *Txt_Use_this_nickname = #if L==0 "Utilitzar aquest sobrenom"; #elif L==1 "Verwenden Sie diese Benutzername"; #elif L==2 "Use this nickname"; #elif L==3 "Usar este apodo"; #elif L==4 "Utiliser ce surnom"; #elif L==5 "Usar este apodo"; // Okoteve traducción #elif L==6 "Utilizzare questo nome utente"; #elif L==7 "Użyj tej nick"; #elif L==8 "Utilizar esta alcunha"; #endif const char *Txt_User = #if L==0 "Usuari"; #elif L==1 "Benutzer"; #elif L==2 "User"; #elif L==3 "Usuario"; #elif L==4 "Utilisateur"; #elif L==5 "Puruhára"; #elif L==6 "Utente"; #elif L==7 "User"; // Potrzebujesz tlumaczenie #elif L==8 "Utilizador"; #endif const char *Txt_user[Usr_NUM_SEXS] = { // Usr_SEX_UNKNOWN #if L==0 "usuari/a" #elif L==1 "Benutzer" #elif L==2 "user" #elif L==3 "usuario/a" #elif L==4 "utilisateur/se" #elif L==5 "puruhãra" #elif L==6 "utente" #elif L==7 "użytkownika" #elif L==8 "utilizador/a" #endif , // Usr_SEX_FEMALE #if L==0 "usuaria" #elif L==1 "Benutzer" #elif L==2 "user" #elif L==3 "usuaria" #elif L==4 "utilisateuse" #elif L==5 "usuaria" // Okoteve traducción #elif L==6 "utente" #elif L==7 "użytkownika" #elif L==8 "utilizadora" #endif , // Usr_SEX_MALE #if L==0 "usuari" #elif L==1 "Benutzer" #elif L==2 "user" #elif L==3 "usuario" #elif L==4 "utilisateur" #elif L==5 "puruhãra" #elif L==6 "utente" #elif L==7 "użytkownika" #elif L==8 "utilizador" #endif , // Usr_SEX_ALL #if L==0 "usuari/a" #elif L==1 "Benutzer" #elif L==2 "user" #elif L==3 "usuario/a" #elif L==4 "utilisateur/se" #elif L==5 "puruhãra" #elif L==6 "utente" #elif L==7 "użytkownika" #elif L==8 "utilizador/a" #endif }; const char *Txt_User_account = #if L==0 "Compte d'usuari"; #elif L==1 "Benutzerkonto"; #elif L==2 "User account"; #elif L==3 "Cuenta de usuario"; #elif L==4 "Compte d'utilisateur"; #elif L==5 "Cuenta de usuario"; // Okoteve traducción #elif L==6 "Account utente"; #elif L==7 "Konto użytkownika"; #elif L==8 "Conta de usuário"; #endif const char *Txt_USER_comments = #if L==0 "Observaciones"; // Necessita traduccio #elif L==1 "Kommentare"; #elif L==2 "Comments"; #elif L==3 "Observaciones"; #elif L==4 "Commentaires"; #elif L==5 "Observaciones"; // Okoteve traducción #elif L==6 "Commenti"; #elif L==7 "Comments"; // Potrzebujesz tlumaczenie #elif L==8 "Comentários"; #endif const char *Txt_User_ID = #if L==0 "ID (DNI/cèdula/passaport) de l'usuari"; #elif L==1 "Ausweis-Nr."; #elif L==2 "User ID"; #elif L==3 "ID (DNI/cédula) del usuario"; #elif L==4 "Numéro d'identité d'utilisateur"; #elif L==5 "ID (DNI/cédula) del usuario"; // Okoteve traducción #elif L==6 "Numero carta d'identità utente"; #elif L==7 "User ID"; // Potrzebujesz tlumaczenie #elif L==8 "Nº de identif. do utilizador"; #endif const char *Txt_User_not_found_or_you_do_not_have_permission_ = #if L==0 "Usuari no trobat" " o bé vostè no té permís" " per realitzar aquesta acció."; #elif L==1 "Benutzer nicht gefunden" " oder Sie haben keine Berechtigung," " um diese Handlung durchzuführen."; #elif L==2 "User not found" " or you do not have permission" " to perform this action."; #elif L==3 "Usuario/a no encontrado/a" " o bien usted no tiene permiso" " para realizar esta acción."; #elif L==4 "Utilisateur introuvable" " ou vous n'avez pas l'autorisation" " d'effectuer cette action."; #elif L==5 "Usuario/a no encontrado/a" " o bien usted no tiene permiso" " para realizar esta acción."; // Okoteve traducción #elif L==6 "IUtente non trovato" " o non si dispone dell'autorizzazione" " per eseguire questa azione."; #elif L==7 "Utilisateur introuvable" " or you do not have permission" " to perform this action."; // Potrzebujesz tlumaczenie #elif L==8 "Utilizador não encontrado" " ou você não tem permissão" " para realizar esta ação."; #endif const char *Txt_User_record_card_in_the_course_X_has_been_removed = // Warning: it is very important to include %s in the following sentences #if L==0 "La ficha del usuario en la asignatura %s ha sido eliminada."; // Necessita traduccio #elif L==1 "User record card in the course %s has been removed."; // Need Übersetzung #elif L==2 "User record card in the course %s has been removed."; #elif L==3 "La ficha del usuario en la asignatura %s ha sido eliminada."; #elif L==4 "User record card in the course %s has been removed."; // Besoin de traduction #elif L==5 "La ficha del usuario en la asignatura %s ha sido eliminada."; // Okoteve traducción #elif L==6 "La scheda dell'utente nel corso %s è stata rimossa."; #elif L==7 "User record card in the course %s has been removed."; // Potrzebujesz tlumaczenie #elif L==8 "User record card in the course %s has been removed."; // Necessita de tradução #endif const char *Txt_User_record_cards_in_all_courses_have_been_removed = #if L==0 "Se han eliminado las fichas del usuario en todas las asignaturas."; // Necessita traduccio #elif L==1 "User record cards in all courses have been removed."; // Need Übersetzung #elif L==2 "User record cards in all courses have been removed."; #elif L==3 "Se han eliminado las fichas del usuario en todas las asignaturas."; #elif L==4 "User record cards in all courses have been removed."; // Besoin de traduction #elif L==5 "Se han eliminado las fichas del usuario en todas las asignaturas."; // Okoteve traducción #elif L==6 "Le schede dell'utente in tutti i corsi sono state rimosse."; #elif L==7 "User record cards in all courses have been removed."; // Potrzebujesz tlumaczenie #elif L==8 "User record cards in all courses have been removed."; // Necessita de tradução #endif const char *Txt_Users = #if L==0 "Usuaris"; #elif L==1 "Benutzer"; #elif L==2 "Users"; #elif L==3 "Usuarios"; #elif L==4 "Utilisateurs"; #elif L==5 "Puruhára"; #elif L==6 "Utenti"; #elif L==7 "Użytkownicy"; #elif L==8 "Utilizadores"; #endif const char *Txt_users = #if L==0 "usuaris"; #elif L==1 "Benutzer"; #elif L==2 "users"; #elif L==3 "usuarios"; #elif L==4 "utilisateurs"; #elif L==5 "puruhára"; #elif L==6 "utenti"; #elif L==7 "użytkownicy"; #elif L==8 "utilizadores"; #endif const char *Txt_X_users_have_been_eliminated = // Warning: it is very important to include %u in the following sentences #if L==0 "Se ha(n) eliminado %u usuario(s)."; // Necessita traduccio #elif L==1 "%u user(s) have been eliminated."; // Need Übersetzung #elif L==2 "%u user(s) have been eliminated."; #elif L==3 "Se ha(n) eliminado %u usuario(s)."; #elif L==4 "%u users have been eliminated."; // Besoin de traduction #elif L==5 "Se ha(n) eliminado %u usuario(s)."; // Okoteve traducción #elif L==6 "%u utenti sono stati rimossi."; #elif L==7 "%u user(s) have been eliminated."; // Potrzebujesz tlumaczenie #elif L==8 "%u user(s) have been eliminated."; // Necessita de tradução #endif const char *Txt_X_users_have_been_enrolled_including_possible_repetitions = // Warning: it is very important to include %u in the following sentences #if L==0 "Se han inscrito %u usuarios (incluyendo posibles repeticiones)."; // Necessita traduccio #elif L==1 "%u users have been enrolled (including possible repetitions)."; // Need Übersetzung #elif L==2 "%u users have been enrolled (including possible repetitions)."; #elif L==3 "Se han inscrito %u usuarios (incluyendo posibles repeticiones)."; #elif L==4 "%u users have been enrolled (including possible repetitions)."; // Besoin de traduction #elif L==5 "Se han inscrito %u usuarios (incluyendo posibles repeticiones)."; // Okoteve traducción #elif L==6 "%u utenti sono stati registrati (comprese le eventuali ripetizioni)."; #elif L==7 "%u users have been enrolled (including possible repetitions)."; // Potrzebujesz tlumaczenie #elif L==8 "%u users have been enrolled (including possible repetitions)."; // Necessita de tradução #endif const char *Txt_X_users_have_been_removed = // Warning: it is very important to include %u in the following sentences #if L==0 "Se han eliminado %u usuarios."; // Necessita traduccio #elif L==1 "%u users have been removed."; // Need Übersetzung #elif L==2 "%u users have been removed."; #elif L==3 "Se han eliminado %u usuarios."; #elif L==4 "%u users have been removed."; // Besoin de traduction #elif L==5 "Se han eliminado %u usuarios."; // Okoteve traducción #elif L==6 "%u utenti sono stati rimossi."; #elif L==7 "%u users have been removed."; // Potrzebujesz tlumaczenie #elif L==8 "%u users have been removed."; // Necessita de tradução #endif const char *Txt_usr = // Abbreviation of user (three characters + dot) #if L==0 "usr."; // Necessita traduccio #elif L==1 "Ben."; #elif L==2 "usr."; #elif L==3 "usr."; #elif L==4 "uti."; #elif L==5 "usr."; // Okoteve traducción #elif L==6 "ute."; #elif L==7 "usr."; // Potrzebujesz tlumaczenie #elif L==8 "uti."; #endif const char *Txt_USR_LIST_TYPES[Usr_NUM_USR_LIST_TYPES] = { #if L==0 "Orla" #elif L==1 "Klass Foto" #elif L==2 "Class photo" #elif L==3 "Orla" #elif L==4 "Photo de classe" #elif L==5 "Orla" // Okoteve traducción #elif L==6 "Foto di classe" #elif L==7 "Class photo" // Potrzebujesz tlumaczenie #elif L==8 "Foto de formatura" #endif , #if L==0 "Llista" #elif L==1 "Liste" #elif L==2 "List" #elif L==3 "Lista" #elif L==4 "Liste" #elif L==5 "Lista" // Okoteve traducción #elif L==6 "Lista" #elif L==7 "List" // Potrzebujesz tlumaczenie #elif L==8 "Lista" #endif }; const char *Txt_Vacants = #if L==0 "Vacants"; #elif L==1 "Frei"; #elif L==2 "Vacants"; #elif L==3 "Vacantes"; #elif L==4 "Vacants"; #elif L==5 "Vacantes"; // Okoteve traducción #elif L==6 "Liberi"; #elif L==7 "Vacants"; // Potrzebujesz tlumaczenie #elif L==8 "Desocupados"; #endif const char *Txt_View_all_recipients = #if L==0 "Ver todos los destinatarios"; // Necessita traduccio #elif L==1 "Anzeigen alle Empfänger"; #elif L==2 "View all recipients"; #elif L==3 "Ver todos los destinatarios"; #elif L==4 "Voir tous les destinataires"; #elif L==5 "Ver todos los destinatarios"; // Okoteve traducción #elif L==6 "Vedi tutti i destinatari"; #elif L==7 "View all recipients"; // Potrzebujesz tlumaczenie #elif L==8 "Ver todos os estinatários"; #endif const char *Txt_View_as_a_student = #if L==0 "Veure com estudiant"; #elif L==1 "Anzeigen als Student"; #elif L==2 "View as a student"; #elif L==3 "Ver como estudiante"; #elif L==4 "Voir comme étudiant/e"; #elif L==5 "Ver como estudiante"; // Okoteve traducción #elif L==6 "Vedi come studente"; #elif L==7 "Wyświetl jako student"; #elif L==8 "Ver como estudante"; #endif const char *Txt_View_data_of_FILE_OR_LINK_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Veure dades de %s"; #elif L==1 "Siehe Daten von %s"; #elif L==2 "View data of %s"; #elif L==3 "Ver datos de %s"; #elif L==4 "Voir les données de %s"; #elif L==5 "Ver datos de %s"; // Okoteve traducción #elif L==6 "Visualizza i dati de %s"; #elif L==7 "Zobacz dane z %s"; #elif L==8 "Veja os dados de %s"; #endif const char *Txt_View_event = #if L==0 "Veure esdeveniment"; #elif L==1 "Anzeigen Ereignis"; #elif L==2 "View event"; #elif L==3 "Ver evento"; #elif L==4 "Voir événement"; #elif L==5 "Ver evento"; // Okoteve traducción #elif L==6 "Vedi evento"; #elif L==7 "View event"; // Potrzebujesz tlumaczenie #elif L==8 "Ver evento"; #endif const char *Txt_View_in_a_new_window = #if L==0 "Mostrar en una finestra nova"; #elif L==1 "Ansicht in einem neuen Fenster"; #elif L==2 "View in a new window"; #elif L==3 "Mostrar en una ventana nueva"; #elif L==4 "Voir dans une nouvelle fenêtre"; #elif L==5 "Mostrar en una ventana nueva"; // Okoteve traducción #elif L==6 "Visualizza in una nuova finestra"; #elif L==7 "View in a new window"; // Potrzebujesz tlumaczenie #elif L==8 "Ver em uma nova janela"; #endif const char *Txt_View_messages = #if L==0 "Veure missatges"; #elif L==1 "Anzeigen Nachrichten"; #elif L==2 "View messages"; #elif L==3 "Ver mensajes"; #elif L==4 "Voir messages"; #elif L==5 "Ver mensajes"; // Okoteve traducción #elif L==6 "Vedi messaggi"; #elif L==7 "View messages"; // Potrzebujesz tlumaczenie #elif L==8 "Ver mensagens"; #endif const char *Txt_View_my_courses = #if L==0 "Veure els meus assignatures"; #elif L==1 "Anzeigen meine Veranstaltungen"; #elif L==2 "View my courses"; #elif L==3 "Ver mis asignaturas"; #elif L==4 "Voir mes matières"; #elif L==5 "Ver mis asignaturas"; // Okoteve traducción #elif L==6 "Vedi i miei corsi"; #elif L==7 "View my courses"; // Potrzebujesz tlumaczenie #elif L==8 "Ver as minha disciplinas"; #endif const char *Txt_View_my_record_for_this_course = #if L==0 "Veure la meva fitxa en aquesta assignatura"; #elif L==1 "Anzeigen profil bei Veranstaltung"; #elif L==2 "View my record for this course"; #elif L==3 "Ver mi ficha en esta asignatura"; #elif L==4 "Voir ma carte dans matière"; #elif L==5 "Ver mi ficha en esta asignatura"; // Okoteve traducción #elif L==6 "Vedi la mia scheda per questo corso"; #elif L==7 "Zobacz mój rekord na ten kurs"; #elif L==8 "Meu cartão em disciplina"; #endif const char *Txt_View_survey = #if L==0 "Veure enquesta"; #elif L==1 "Anzeigen Umfrage"; #elif L==2 "View survey"; #elif L==3 "Ver encuesta"; #elif L==4 "Voir sondage"; #elif L==5 "Ver encuesta"; // Okoteve traducción #elif L==6 "Vedi sondaggio"; #elif L==7 "View survey"; // Potrzebujesz tlumaczenie #elif L==8 "Ver inquérito"; #endif const char *Txt_View_survey_results = #if L==0 "Ver resultados"; // Necessita traduccio #elif L==1 "Anzeigen Ergebnisse"; #elif L==2 "View survey results"; #elif L==3 "Ver resultados"; #elif L==4 "Voir résultats"; #elif L==5 "Ver resultados"; // Okoteve traducción #elif L==6 "Vedi risultati"; #elif L==7 "View survey results"; // Potrzebujesz tlumaczenie #elif L==8 "Ver resultados"; #endif const char *Txt_View_works = #if L==0 "Veure treballs"; #elif L==1 "Anzeigen Hausarbeiten"; #elif L==2 "View homework"; #elif L==3 "Ver trabajos"; #elif L==4 "Voir travaux"; #elif L==5 "Ver trabajos"; // Okoteve traducción #elif L==6 "Vedi lavori"; #elif L==7 "View homework"; // Potrzebujesz tlumaczenie #elif L==8 "Ver trabalhos"; #endif const char *Txt_Virtual_pendrive_of_THE_USER_X_has_been_removed = // Warning: it is very important to include %s in the following sentences #if L==0 "Se ha eliminado el maletín de %s."; // Necessita traduccio #elif L==1 "Virtual pendrive of %s has been removed."; // Need Übersetzung #elif L==2 "Virtual pendrive of %s has been removed."; #elif L==3 "Se ha eliminado el maletín de %s."; #elif L==4 "Virtual pendrive of %s has been removed."; // Besoin de traduction #elif L==5 "Se ha eliminado el maletín de %s."; // Okoteve traducción #elif L==6 "La penna USB de %s è stata rimossa."; #elif L==7 "Virtual pendrive of %s has been removed."; // Potrzebujesz tlumaczenie #elif L==8 "Virtual pendrive of %s has been removed."; // Necessita de tradução #endif const char *Txt_Virtual_pendrives = #if L==0 "Maletins"; #elif L==1 "Aktentasche"; #elif L==2 "Virtual pendrives"; #elif L==3 "Maletines"; #elif L==4 "Porte-documents"; #elif L==5 "Maletines"; // Okoteve traducción #elif L==6 "Penna USB"; #elif L==7 "Virtual pendrives"; // Potrzebujesz tlumaczenie #elif L==8 "Pasta"; #endif const char *Txt_Visible_by_BR_the_student = #if L==0 "¿Visible por
el estudiante?"; // Necessita traduccio #elif L==1 "Sichtbare durch
die Student?"; #elif L==2 "Visible by
the student?"; #elif L==3 "¿Visible por
el estudiante?"; #elif L==4 "Visible par
l'étudiant/e?"; #elif L==5 "¿Visible por
el estudiante?"; // Okoteve traducción #elif L==6 "Visibili dallo
studente?"; #elif L==7 "Visible by
the student?"; // Potrzebujesz tlumaczenie #elif L==8 "Visível pelo
estudante?"; #endif const char *Txt_Visible_MALE_PLURAL = #if L==0 "Visibles"; #elif L==1 "Sichtbar"; #elif L==2 "Visible"; #elif L==3 "Visibles"; #elif L==4 "Visibles"; #elif L==5 "Visibles"; // Okoteve traducción #elif L==6 "Visibili"; #elif L==7 "Widoczne"; #elif L==8 "Visíveis"; #endif const char *Txt_Visible_exams = #if L==0 "Exàmens visibles"; #elif L==1 "Visible Pr%uuml;fungen"; #elif L==2 "Visible exams"; #elif L==3 "Exámenes visibles"; #elif L==4 "Examens visibles"; #elif L==5 "Exámenes visibles"; // Okoteve traducción #elif L==6 "Esami visibili"; #elif L==7 "Widoczne egzaminy"; #elif L==8 "Exames visíveis"; #endif const char *Txt_Visible_survey = #if L==0 "Encuesta visible"; // Necessita traduccio #elif L==1 "Sichtbare Umfrage"; #elif L==2 "Visible survey"; #elif L==3 "Encuesta visible"; #elif L==4 "Sondage visible"; #elif L==5 "Encuesta visible"; // Okoteve traducción #elif L==6 "Sondaggio visibile"; #elif L==7 "Visible survey"; // Potrzebujesz tlumaczenie #elif L==8 "Inquérito visível"; #endif const char *Txt_Web_page = #if L==0 "Pàgina web"; #elif L==1 "Webseite"; #elif L==2 "Web page"; #elif L==3 "Página web"; #elif L==4 "Page Web"; #elif L==5 "Página web"; // Okoteve traducción #elif L==6 "Pagina Web"; #elif L==7 "Strona internetowa"; #elif L==8 "Página da Web"; #endif const char *Txt_Web_page_of_the_course = #if L==0 "Página web de la asignatura"; // Necessita traduccio #elif L==1 "Webseite der Veranstaltung"; #elif L==2 "Web page of the course"; #elif L==3 "Página web de la asignatura"; #elif L==4 "Page Web de la matière"; #elif L==5 "Página web de la asignatura"; // Okoteve traducción #elif L==6 "Pagina Web del corso"; #elif L==7 "Web page of the course"; // Potrzebujesz tlumaczenie #elif L==8 "Página da Web da disciplina"; #endif const char *Txt_Web_social_network = #if L==0 "Web / xarxa social"; #elif L==1 "Web / Soziales Netzwerk"; #elif L==2 "Web / social network"; #elif L==3 "Web / red social"; #elif L==4 "Web / réseau social"; #elif L==5 "Web / red social"; // Okoteve traducción #elif L==6 "Web / social network"; #elif L==7 "Web / sieci społeczne"; #elif L==8 "Web / rede social"; #endif const char *Txt_Webs_social_networks = #if L==0 "Webs / xarxes socials"; #elif L==1 "Webs / Soziale Netzwerke"; #elif L==2 "Webs / social networks"; #elif L==3 "Webs / redes sociales"; #elif L==4 "Webs / réseaux sociaux"; #elif L==5 "Webs / redes sociales"; // Okoteve traducción #elif L==6 "Webs / reti sociali"; #elif L==7 "Webs / sieci społeczne"; #elif L==8 "Webs / redes sociais"; #endif const char *Txt_Week = #if L==0 "Semana"; // Necessita traduccio #elif L==1 "Woche"; #elif L==2 "Week"; #elif L==3 "Semana"; #elif L==4 "Semaine"; #elif L==5 "Arapokõindy"; #elif L==6 "Settimana"; #elif L==7 "Week"; // Potrzebujesz tlumaczenie #elif L==8 "Semana"; #endif const char *Txt_Welcome[Usr_NUM_SEXS] = { #if L==0 // Usr_SEX_UNKNOWN "Benvingut/da." #elif L==1 "Willkommen." #elif L==2 "Welcome." #elif L==3 "Bienvenido/a." #elif L==4 "Bienvenu(e)." #elif L==5 "Bienvenido/a." // Okoteve traducción #elif L==6 "Benvenuto/a." #elif L==7 "Witamy." #elif L==8 "Bem-vindo/a." #endif , #if L==0 // Usr_SEX_FEMALE "Benvinguda." #elif L==1 "Willkommen." #elif L==2 "Welcome." #elif L==3 "Bienvenida." #elif L==4 "Bienvenue." #elif L==5 "Bienvenida." // Okoteve traducción #elif L==6 "Benvenuta." #elif L==7 "Witamy." #elif L==8 "Bem-vinda." #endif , #if L==0 // Usr_SEX_MALE "Benvingut." #elif L==1 "Willkommen." #elif L==2 "Welcome." #elif L==3 "Bienvenido." #elif L==4 "Bienvenu." #elif L==5 "Bienvenido." // Okoteve traducción #elif L==6 "Benvenuto." #elif L==7 "Witamy." #elif L==8 "Bem-vindo." #endif , #if L==0 // Usr_SEX_ALL "Benvingut/da." #elif L==1 "Willkommen." #elif L==2 "Welcome." #elif L==3 "Bienvenido/a." #elif L==4 "Bienvenu(e)." #elif L==5 "Bienvenido/a." // Okoteve traducción #elif L==6 "Benvenuto/a." #elif L==7 "Witamy." #elif L==8 "Bem-vindo/a." #endif }; const char *Txt_Welcome_X[Usr_NUM_SEXS] = // Warning: it is very important to include %s in the following sentences { #if L==0 // Usr_SEX_UNKNOWN "Benvingut/da, %s." #elif L==1 "Willkommen, %s." #elif L==2 "Welcome, %s." #elif L==3 "Bienvenido/a, %s." #elif L==4 "Bienvenu(e), %s." #elif L==5 "Bienvenido/a, %s." // Okoteve traducción #elif L==6 "Benvenuto/a, %s." #elif L==7 "Witamy, %s." #elif L==8 "Bem-vindo/a, %s." #endif , #if L==0 // Usr_SEX_FEMALE "Benvinguda, %s." #elif L==1 "Willkommen, %s." #elif L==2 "Welcome, %s." #elif L==3 "Bienvenida, %s." #elif L==4 "Bienvenue, %s." #elif L==5 "Bienvenida, %s." // Okoteve traducción #elif L==6 "Benvenuta, %s." #elif L==7 "Witamy, %s." #elif L==8 "Bem-vinda, %s." #endif , #if L==0 // Usr_SEX_MALE "Benvingut, %s." #elif L==1 "Willkommen, %s." #elif L==2 "Welcome, %s." #elif L==3 "Bienvenido, %s." #elif L==4 "Bienvenu, %s." #elif L==5 "Bienvenido, %s." // Okoteve traducción #elif L==6 "Benvenuto, %s." #elif L==7 "Witamy, %s." #elif L==8 "Bem-vindo, %s." #endif , #if L==0 // Usr_SEX_ALL "Benvingut/da, %s." #elif L==1 "Willkommen, %s." #elif L==2 "Welcome, %s." #elif L==3 "Bienvenido/a, %s." #elif L==4 "Bienvenu(e), %s." #elif L==5 "Bienvenido/a, %s." // Okoteve traducción #elif L==6 "Benvenuto/a, %s." #elif L==7 "Witamy, %s." #elif L==8 "Bem-vindo/a, %s." #endif }; const char *Txt_Welcome_X_and_happy_birthday[Usr_NUM_SEXS] = // Warning: it is very important to include %s in the following sentences { #if L==0 // Usr_SEX_UNKNOWN "Benvingut/da, %s, i feliç aniversari!" #elif L==1 "Willkommen, %s, und alles Gute zum Geburtstag!" #elif L==2 "Welcome, %s, and happy birthday!" #elif L==3 "Bienvenido/a, %s, ¡y feliz cumpleaños!" #elif L==4 "Bienvenu(e), %s, et joyeux anniversaire!" #elif L==5 "Bienvenido/a, %s, ¡y feliz cumpleaños!"// Okoteve traducción #elif L==6 "Benvenuto/a, %s, e buon compleanno!" #elif L==7 "Witamy, %s, i wszystkiego najlepszego!" #elif L==8 "Bem-vindo/a, %s, e feliz aniversário!" #endif , #if L==0 // Usr_SEX_FEMALE "Benvinguda, %s, i feliç aniversari!" #elif L==1 "Willkommen, %s, und alles Gute zum Geburtstag!" #elif L==2 "Welcome, %s, and happy birthday!" #elif L==3 "Bienvenida, %s, ¡y feliz cumpleaños!" #elif L==4 "Bienvenue, %s, et joyeux anniversaire!" #elif L==5 "Bienvenida, %s, ¡y feliz cumpleaños!"// Okoteve traducción #elif L==6 "Benvenuta, %s, e buon compleanno!" #elif L==7 "Witamy, %s, i wszystkiego najlepszego!" #elif L==8 "Bem-vinda, %s, e feliz aniversário!" #endif , #if L==0 // Usr_SEX_MALE "Benvingut, %s, i feliç aniversari!" #elif L==1 "Willkommen, %s, und alles Gute zum Geburtstag!" #elif L==2 "Welcome, %s, and happy birthday!" #elif L==3 "Bienvenido, %s, ¡y feliz cumpleaños!" #elif L==4 "Bienvenu, %s, et joyeux anniversaire!" #elif L==5 "Bienvenido, %s, ¡y feliz cumpleaños!"// Okoteve traducción #elif L==6 "Benvenuto, %s, e buon compleanno!" #elif L==7 "Witamy, %s, i wszystkiego najlepszego!" #elif L==8 "Bem-vindo, %s, e feliz aniversário!" #endif , #if L==0 // Usr_SEX_ALL "Benvingut/da, %s, i feliç aniversari!" #elif L==1 "Willkommen, %s, und alles Gute zum Geburtstag!" #elif L==2 "Welcome, %s, and happy birthday!" #elif L==3 "Bienvenido/a, %s, ¡y feliz cumpleaños!" #elif L==4 "Bienvenu(e), %s, et joyeux anniversaire!" #elif L==5 "Bienvenido/a, %s, ¡y feliz cumpleaños!"// Okoteve traducción #elif L==6 "Benvenuto/a, %s, e buon compleanno!" #elif L==7 "Witamy, %s, i wszystkiego najlepszego!" #elif L==8 "Bem-vindo/a, %s, e feliz aniversário!" #endif }; const char *Txt_With_centres = #if L==0 "Amb centres"; #elif L==1 "Mit Lehrinstitute"; #elif L==2 "With centres"; #elif L==3 "Con centros"; #elif L==4 "Avec centres"; #elif L==5 "Con centros"; // Okoteve traducción #elif L==6 "Con centri"; #elif L==7 "Z centra"; #elif L==8 "Com centros"; #endif const char *Txt_With_courses = #if L==0 "Amb assignatures"; #elif L==1 "Mit Veranstaltungen"; #elif L==2 "With courses"; #elif L==3 "Con asignaturas"; #elif L==4 "Avec matières"; #elif L==5 "Con asignaturas"; // Okoteve traducción #elif L==6 "Con corsi"; #elif L==7 "Z kursów"; #elif L==8 "Com disciplinas"; #endif const char *Txt_With_degrees = #if L==0 "Amb titulacions"; #elif L==1 "Mit Studiengang"; #elif L==2 "With degrees"; #elif L==3 "Con titulaciones"; #elif L==4 "Avec études"; #elif L==5 "Con titulaciones"; // Okoteve traducción #elif L==6 "Con lauree"; #elif L==7 "Z stopnie"; #elif L==8 "Com titulaçoes"; #endif const char *Txt_With_institutions = #if L==0 "Amb institucions"; #elif L==1 "Mit Hochschulen"; #elif L==2 "With institutions"; #elif L==3 "Con instituciones"; #elif L==4 "Avec établissements"; #elif L==5 "Con instituciones"; // Okoteve traducción #elif L==6 "Con istituzioni"; #elif L==7 "Z instytucje"; #elif L==8 "Com instituções"; #endif const char *Txt_with_new_posts = #if L==0 "con mensajes nuevos"; // Necessita traduccio #elif L==1 "mit neuen Beiträge"; #elif L==2 "with new posts"; #elif L==3 "con mensajes nuevos"; #elif L==4 "avec de nouveaux messages"; #elif L==5 "con mensajes nuevos"; // Okoteve traducción #elif L==6 "con nuovi post"; #elif L==7 "with new posts"; // Potrzebujesz tlumaczenie #elif L==8 "com novas posts"; #endif const char *Txt_With_students = #if L==0 "Amb estudiants"; #elif L==1 "Mit Teilnehmern"; #elif L==2 "With students"; #elif L==3 "Con estudiantes"; #elif L==4 "Avec étudiants"; #elif L==5 "Con estudiantes"; // Okoteve traducción #elif L==6 "Con studenti"; #elif L==7 "Z studentów"; #elif L==8 "Com estudantes"; #endif const char *Txt_With_teachers = #if L==0 "Amb professors"; #elif L==1 "Mit Lehrkräften"; #elif L==2 "With teachers"; #elif L==3 "Con profesores"; #elif L==4 "Avec enseignants"; #elif L==5 "Con profesores"; // Okoteve traducción #elif L==6 "Con professori"; #elif L==7 "Z nauczycielami"; #elif L==8 "Com professores"; #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! #if L==0 "treballs"; #elif L==1 "Hausarbeiten"; #elif L==2 "homework"; #elif L==3 "trabajos"; #elif L==4 "travaux"; #elif L==5 "tembiapo"; #elif L==6 "lavori"; #elif L==7 "homework"; // Potrzebujesz tlumaczenie #elif L==8 "trabalhos"; #endif const char *Txt_Works_of_X_in_Y_removed = // Warning: it is very important to include two %s in the following sentences #if L==0 "Trabajos de %s" " en %s eliminados."; // Necessita traduccio #elif L==1 "Die Hausarbeiten von %s" " in %s wurden entfernt."; #elif L==2 "The homework of %s" " in %s has been removed."; #elif L==3 "Trabajos de %s" " en %s eliminados."; #elif L==4 "Homework of %s" " in %s removed."; // Besoin de traduction #elif L==5 "Trabajos de %s" " en %s eliminados."; // Okoteve traducción #elif L==6 "Lavori de %s" " in %s rimossi."; #elif L==7 "The homework of %s" " in %s has been removed."; // Potrzebujesz tlumaczenie #elif L==8 "Homework of %s" " in %s removed."; // Necessita de tradução #endif const char *Txt_Works_zone = #if L==0 "Zona d'altres treballs"; #elif L==1 "Hausarbeiten-Bereich"; #elif L==2 "Homework area"; #elif L==3 "Zona de otros trabajos"; #elif L==4 "Zone de travaux"; #elif L==5 "Zona de otros trabajos"; // Okoteve traducción #elif L==6 "Area lavori"; #elif L==7 "Homework area"; // Potrzebujesz tlumaczenie #elif L==8 "Zona de trabalhos"; #endif const char *Txt_works_zone = #if L==0 "zona de trabajos"; // Necessita traduccio #elif L==1 "Hausarbeiten-Bereich"; #elif L==2 "homework area"; #elif L==3 "zona de trabajos"; #elif L==4 "zone de travaux"; #elif L==5 "zona de trabajos"; // Okoteve traducción #elif L==6 "area lavori"; #elif L==7 "homework area"; // Potrzebujesz tlumaczenie #elif L==8 "zona de trabalhos"; #endif const char *Txt_WriBRters = #if L==0 "Escri-
tores"; // Necessita traduccio #elif L==1 "Schrift-
steller"; #elif L==2 "Wri-
ters"; #elif L==3 "Escri-
tores"; #elif L==4 "Écri-
vains"; #elif L==5 "Escri-
tores"; // Okoteve traducción #elif L==6 "Scri-
ttori"; #elif L==7 "Wri-
ters"; // Potrzebujesz tlumaczenie #elif L==8 "Escri-
tores"; #endif const char *Txt_Write_a_message_to_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Escribir un mensaje a %s"; // Necessita traduccio #elif L==1 "Schreiben Sie %s eine Nachricht"; #elif L==2 "Write a message to %s"; #elif L==3 "Escribir un mensaje a %s"; #elif L==4 "Write a message to %s"; // Besoin de traduction #elif L==5 "Escribir un mensaje a %s"; // Okoteve traducción #elif L==6 "Scrivi un messaggio a %s"; #elif L==7 "Write a message to %s"; // Potrzebujesz tlumaczenie #elif L==8 "Write a message to %s"; // Necessita de tradução #endif const char *Txt_WWW = // World Wide Web #if L==0 "WWW"; #elif L==1 "WWW"; #elif L==2 "WWW"; #elif L==3 "WWW"; #elif L==4 "WWW"; #elif L==5 "WWW"; #elif L==6 "WWW"; #elif L==7 "WWW"; #elif L==8 "WWW"; #endif const char *Txt_XML_file = #if L==0 "Fitxer XML"; #elif L==1 "XML-Datei"; #elif L==2 "XML file"; #elif L==3 "Archivo XML"; #elif L==4 "Fichier XML"; #elif L==5 "Archivo XML"; // Okoteve traducción #elif L==6 "File XML"; #elif L==7 "Plik XML"; #elif L==8 "Arquivo XML"; #endif const char *Txt_XML_file_content = #if L==0 "Contingut del fitxer XML"; #elif L==1 "XML-Datei-Inhalt"; #elif L==2 "XML file content"; #elif L==3 "Contenido del archivo XML"; #elif L==4 "Contenu du fichier XML"; #elif L==5 "Contenido del archivo XML"; // Okoteve traducción #elif L==6 "Contenuto di file XML"; #elif L==7 "Zawartość pliku XML"; #elif L==8 "Conteúdo do arquivo XML"; #endif const char *Txt_Year_OF_A_DEGREE = // 1, 2, 3..., not 1984, 2011... #if L==0 "Curs"; #elif L==1 "Jahr"; #elif L==2 "Year"; #elif L==3 "Curso"; #elif L==4 "Année"; #elif L==5 "Curso"; // Okoteve traducción #elif L==6 "Anno"; #elif L==7 "Year"; // Potrzebujesz tlumaczenie #elif L==8 "Ano"; #endif const char *Txt_YEAR_OF_DEGREE[1 + Deg_MAX_YEARS_PER_DEGREE] = { #if L==0 "Opt./Libre conf." // Necessita traduccio #elif L==1 "Opt./Free choice" // Need Übersetzung #elif L==2 "Opt./Free choice" #elif L==3 "Opt./Libre conf." #elif L==4 "Opt./Free choice" // Besoin de traduction #elif L==5 "Opt./Libre conf." // Okoteve traducción #elif L==6 "Opz./Scelta libera" #elif L==7 "Opt./Free choice" // Potrzebujesz tlumaczenie #elif L==8 "Opt./Free choice" // Necessita de tradução #endif , #if L==0 "1º" // Necessita traduccio #elif L==1 "1st" // Need Übersetzung #elif L==2 "1st" #elif L==3 "1º" #elif L==4 "1st" // Besoin de traduction #elif L==5 "1º" // Okoteve traducción #elif L==6 "Primo" #elif L==7 "1st" // Potrzebujesz tlumaczenie #elif L==8 "1st" // Necessita de tradução #endif , #if L==0 "2º" // Necessita traduccio #elif L==1 "2nd" // Need Übersetzung #elif L==2 "2nd" #elif L==3 "2º" #elif L==4 "2nd" // Besoin de traduction #elif L==5 "2º" // Okoteve traducción #elif L==6 "Secondo" #elif L==7 "2nd" // Potrzebujesz tlumaczenie #elif L==8 "2nd" // Necessita de tradução #endif , #if L==0 "3º" // Necessita traduccio #elif L==1 "3rd" #elif L==2 "3rd" #elif L==3 "3º" #elif L==4 "3rd" // Besoin de traduction #elif L==5 "3º" // Okoteve traducción #elif L==6 "Terzo" #elif L==7 "3rd" // Potrzebujesz tlumaczenie #elif L==8 "3rd" // Necessita de tradução #endif , #if L==0 "4º" // Necessita traduccio #elif L==1 "4th" // Need Übersetzung #elif L==2 "4th" #elif L==3 "4º" #elif L==4 "Quarto" #elif L==5 "4º" // Okoteve traducción #elif L==6 "4th" // Bisogno di traduzione #elif L==7 "4th" // Potrzebujesz tlumaczenie #elif L==8 "4th" // Necessita de tradução #endif , #if L==0 "5º" // Necessita traduccio #elif L==1 "5th" // Need Übersetzung #elif L==2 "5th" #elif L==3 "5º" #elif L==4 "5th" // Besoin de traduction #elif L==5 "5º" // Okoteve traducción #elif L==6 "Quinto" #elif L==7 "5th" // Potrzebujesz tlumaczenie #elif L==8 "5th" // Necessita de tradução #endif , #if L==0 "6º" // Necessita traduccio #elif L==1 "6th" // Need Übersetzung #elif L==2 "6th" #elif L==3 "6º" #elif L==4 "6th" // Besoin de traduction #elif L==5 "6º" // Okoteve traducción #elif L==6 "Sesto" #elif L==7 "6th" // Potrzebujesz tlumaczenie #elif L==8 "6th" // Necessita de tradução #endif , #if L==0 "7º" // Necessita traduccio #elif L==1 "7th" // Need Übersetzung #elif L==2 "7th" #elif L==3 "7º" #elif L==4 "7th" // Besoin de traduction #elif L==5 "7º" // Okoteve traducción #elif L==6 "Settimo" #elif L==7 "7th" // Potrzebujesz tlumaczenie #elif L==8 "7th" // Necessita de tradução #endif , #if L==0 "8º" // Necessita traduccio #elif L==1 "8th" // Need Übersetzung #elif L==2 "8th" #elif L==3 "8º" #elif L==4 "8th" // Besoin de traduction #elif L==5 "8º" // Okoteve traducción #elif L==6 "Ottavo" #elif L==7 "8th" // Potrzebujesz tlumaczenie #elif L==8 "8th" // Necessita de tradução #endif , #if L==0 "9º" // Necessita traduccio #elif L==1 "9th" // Need Übersetzung #elif L==2 "9th" #elif L==3 "9º" #elif L==4 "9th" // Besoin de traduction #elif L==5 "9º" // Okoteve traducción #elif L==6 "Nono" #elif L==7 "9th" // Potrzebujesz tlumaczenie #elif L==8 "9th" // Necessita de tradução #endif , #if L==0 "10º" // Necessita traduccio #elif L==1 "10th" // Need Übersetzung #elif L==2 "10th" #elif L==3 "10º" #elif L==4 "10th" // Besoin de traduction #elif L==5 "10º" // Okoteve traducción #elif L==6 "Decimo" #elif L==7 "10th" // Potrzebujesz tlumaczenie #elif L==8 "10th" // Necessita de tradução #endif , #if L==0 "11º" // Necessita traduccio #elif L==1 "11th" // Need Übersetzung #elif L==2 "11th" #elif L==3 "11º" #elif L==4 "11th" // Besoin de traduction #elif L==5 "11º" // Okoteve traducción #elif L==6 "Undicesimo" #elif L==7 "11th" // Potrzebujesz tlumaczenie #elif L==8 "11th" // Necessita de tradução #endif , #if L==0 "12º" // Necessita traduccio #elif L==1 "12th" // Need Übersetzung #elif L==2 "12th" #elif L==3 "12º" #elif L==4 "12th" // Besoin de traduction #elif L==5 "12º" // Okoteve traducción #elif L==6 "Sesto" #elif L==7 "12th" // Potrzebujesz tlumaczenie #elif L==8 "12th" // Necessita de tradução #endif }; const char *Txt_YES = #if L==0 "SÍ"; #elif L==1 "JA"; #elif L==2 "YES"; #elif L==3 "SÍ"; #elif L==4 "OUI"; #elif L==5 "HEẼ"; #elif L==6 "SI"; #elif L==7 "YES"; // Potrzebujesz tlumaczenie #elif L==8 "SIM"; #endif const char *Txt_Yes = #if L==0 "Sí"; #elif L==1 "Ja"; #elif L==2 "Yes"; #elif L==3 "Sí"; #elif L==4 "Oui"; #elif L==5 "He&etilde;"; #elif L==6 "Sì"; #elif L==7 "Yes"; // Potrzebujesz tlumaczenie #elif L==8 "Sim"; #endif const char *Txt_Yesterday = #if L==0 "Ahir"; #elif L==1 "Gestern"; #elif L==2 "Yesterday"; #elif L==3 "Ayer"; #elif L==4 "Hier"; #elif L==5 "Kuehe"; #elif L==6 "Ieri"; #elif L==7 "Yesterday"; // Potrzebujesz tlumaczenie #elif L==8 "Ontem"; #endif const char *Txt_You_already_answered_this_survey_before = #if L==0 "Usted ya respondió esta encuesta anteriormente."; // Necessita traduccio #elif L==1 "Sie haben bereits beantwortet dieser Umfrage vor."; #elif L==2 "You already answered this survey before."; #elif L==3 "Usted ya respondió esta encuesta anteriormente."; #elif L==4 "Vous avez déjà répondu à ce sondage avant."; #elif L==5 "Usted ya respondió esta encuesta anteriormente."; // Okoteve traducción #elif L==6 "Hai già risposto a questo sondaggio prima."; #elif L==7 "You already answered this survey before."; // Potrzebujesz tlumaczenie #elif L==8 "Você já respondeu a esso inquérito antes."; #endif const char *Txt_You_are_LOGGED_as_X = // Warning: it is very important to include two %s in the following sentences #if L==0 "Ets identificat com a %s."; #elif L==1 "Sie sind %s als %s."; // German translator doesn't understand this #elif L==2 "You are %s as %s."; #elif L==3 "Usted está %s como %s."; #elif L==4 "Vous êtes %s comme %s."; #elif L==5 "Usted está %s como %s."; // Okoteve traducción #elif L==6 "Sei %s come %s."; #elif L==7 "You are %s as %s."; // Potrzebujesz tlumaczenie #elif L==8 "Você está %s como %s."; #endif const char *Txt_You_are_not_enrolled_in_any_course[Usr_NUM_SEXS] = { #if L==0 // Usr_SEX_UNKNOWN "Usted no está inscrito/a en ninguna asignatura." // Necessita traduccio #elif L==1 "Sie sind zu keiner Veranstaltung eingeschrieben." #elif L==2 "You are not enrolled in any course." #elif L==3 "Usted no está inscrito/a en ninguna asignatura." #elif L==4 "Vous n'êtes pas inscrit à une matière." #elif L==5 "Usted no está inscrito/a en ninguna asignatura." // Okoteve traducción #elif L==6 "Non ti sei iscritto/a ad alcun corso." #elif L==7 "You are not enrolled in any course." // Potrzebujesz tlumaczenie #elif L==8 "Você não está matriculado/a em nenhuma disciplina." #endif , #if L==0 // Usr_SEX_FEMALE "Usted no está inscrita en ninguna asignatura." // Necessita traduccio #elif L==1 "Sie sind zu keiner Veranstaltung eingeschrieben." #elif L==2 "You are not enrolled in any course." #elif L==3 "Usted no está inscrita en ninguna asignatura." #elif L==4 "Vous n'êtes pas inscrit à une matière." #elif L==5 "Usted no está inscrita en ninguna asignatura." // Okoteve traducción #elif L==6 "Non ti sei iscritta ad alcun corso." #elif L==7 "You are not enrolled in any course." // Potrzebujesz tlumaczenie #elif L==8 "Você não está matriculada em nenhuma disciplina." #endif , #if L==0 // Usr_SEX_MALE "Usted no está inscrito en ninguna asignatura." // Necessita traduccio #elif L==1 "Sie sind zu keiner Veranstaltung eingeschrieben." #elif L==2 "You are not enrolled in any course." #elif L==3 "Usted no está inscrito en ninguna asignatura." #elif L==4 "Vous n'êtes pas inscrit à une matière." #elif L==5 "Usted no está inscrito en ninguna asignatura." // Okoteve traducción #elif L==6 "Non ti sei iscritto ad alcun corso." #elif L==7 "You are not enrolled in any course." // Potrzebujesz tlumaczenie #elif L==8 "Você não está matriculado em nenhuma disciplina." #endif , #if L==0 // Usr_SEX_ALL "Usted no está inscrito/a en ninguna asignatura." // Necessita traduccio #elif L==1 "Sie sind zu keiner Veranstaltung eingeschrieben." #elif L==2 "You are not enrolled in any course." #elif L==3 "Usted no está inscrito/a en ninguna asignatura." #elif L==4 "Vous n'êtes pas inscrit à une matière." #elif L==5 "Usted no está inscrito/a en ninguna asignatura." // Okoteve traducción #elif L==6 "Non ti sei iscritto/a ad alcun corso." #elif L==7 "You are not enrolled in any course." // Potrzebujesz tlumaczenie #elif L==8 "Você não está matriculado/a em nenhuma disciplina." #endif }; const char *Txt_You_can_create_a_new_folder_inside_the_folder_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Podeu crear una nova carpeta" " dins de la carpeta %s:"; #elif L==1 "Sie können ein neues Verzeichnis" " im Verzeichnis %s anlegen:"; #elif L==2 "You can create a new folder" " inside the folder %s:"; #elif L==3 "Puede crear una nueva carpeta" " dentro de la carpeta %s:"; #elif L==4 "Vous pouvez créer un nouveau répertoire" " dans le répertoire %s:"; #elif L==5 "Puede crear una nueva carpeta" " dentro de la carpeta %s:"; // Okoteve traducción #elif L==6 "È possibile creare una nuova cartella" " all'interno della cartella %s:"; #elif L==7 "Możesz utworzyć nowy folder" " wewnątrz folderu %s:"; #elif L==8 "Você pode criar um novo diretório" " dentro do diretório %s:"; #endif const char *Txt_You_can_not_create_folders_files_or_links_here = #if L==0 "No puede crear carpetas, archivos o enlaces aquí."; // Necessita traduccio #elif L==1 "You can not create folders, files or links here."; // Need Übersetzung #elif L==2 "You can not create folders, files or links here."; #elif L==3 "No puede crear carpetas, archivos o enlaces aquí."; #elif L==4 "You can not create folders, files or links here."; // Besoin de traduction #elif L==5 "No puede crear carpetas, archivos o enlaces aquí."; // Okoteve traducción #elif L==6 "Non puoi creare cartelle, file o linki qui."; #elif L==7 "You can not create folders, files or links here."; // Potrzebujesz tlumaczenie #elif L==8 "You can not create folders, files or links here."; // Necessita de tradução #endif const char *Txt_You_can_not_create_folders_here = #if L==0 "No puede crear carpetas aquí."; // Necessita traduccio #elif L==1 "You can not create folders here."; // Need Übersetzung #elif L==2 "You can not create folders here."; #elif L==3 "No puede crear carpetas aquí."; #elif L==4 "You can not create folders here."; // Besoin de traduction #elif L==5 "No puede crear carpetas aquí."; // Okoteve traducción #elif L==6 "Non puoi creare cartelle qui."; #elif L==7 "You can not create folders here."; // Potrzebujesz tlumaczenie #elif L==8 "You can not create folders here."; // Necessita de tradução #endif const char *Txt_You_can_not_create_links_here = #if L==0 "No puede crear enlaces aquí."; // Necessita traduccio #elif L==1 "You can not create links here."; // Need Übersetzung #elif L==2 "You can not create links here."; #elif L==3 "No puede crear enlaces aquí."; #elif L==4 "You can not create links here."; // Besoin de traduction #elif L==5 "No puede crear enlaces aquí."; // Okoteve traducción #elif L==6 "Non puoi creare linki qui."; #elif L==7 "You can not create links here."; // Potrzebujesz tlumaczenie #elif L==8 "You can not create links here."; // Necessita de tradução #endif const char *Txt_You_can_not_delete_your_current_email = #if L==0 "No puede eliminar su correo electrónico actual."; // Necessita traduccio #elif L==1 "You can not delete your current e-mail."; // Need Übersetzung #elif L==2 "You can not delete your current e-mail."; #elif L==3 "No puede eliminar su correo electrónico actual."; #elif L==4 "You can not delete your current e-mail."; // Besoin de traduction #elif L==5 "No puede eliminar su correo electrónico actual."; // Okoteve traducción #elif L==6 "Non puoi cancellare il tuo e-mail attuale."; #elif L==7 "You can not delete your current e-mail."; // Potrzebujesz tlumaczenie #elif L==8 "You can not delete your current e-mail."; // Necessita de tradução #endif const char *Txt_You_can_not_delete_your_current_nickname = #if L==0 "No puede eliminar su apodo actual."; // Necessita traduccio #elif L==1 "You can not delete your current nickname."; // Need Übersetzung #elif L==2 "You can not delete your current nickname."; #elif L==3 "No puede eliminar su apodo actual."; #elif L==4 "You can not delete your current nickname."; // Besoin de traduction #elif L==5 "No puede eliminar su apodo actual."; // Okoteve traducción #elif L==6 "Non puoi cancellare il tuo nome utente attuale."; #elif L==7 "You can not delete your current nickname."; // Potrzebujesz tlumaczenie #elif L==8 "You can not delete your current nickname."; // Necessita de tradução #endif const char *Txt_You_can_not_delete_this_ID = #if L==0 "No puede eliminar este ID (DNI/cédula)."; // Necessita traduccio #elif L==1 "You can not delete this ID."; // Need Übersetzung #elif L==2 "You can not delete this ID."; #elif L==3 "No puede eliminar este ID (DNI/cédula)."; #elif L==4 "You can not delete this ID."; // Besoin de traduction #elif L==5 "No puede eliminar este ID (DNI/cédula)."; // Okoteve traducción #elif L==6 "Non puoi cancellare questo ID."; #elif L==7 "You can not delete this ID."; // Potrzebujesz tlumaczenie #elif L==8 "You can not delete this ID."; // Necessita de tradução #endif const char *Txt_You_can_not_disable_file_uploading_once_folders_have_been_created = #if L==0 "No puede desactivar la subida de archivos" " una vez que se han creado carpetas."; // Necessita traduccio #elif L==1 "Sie können den Upload nicht deaktivieren," " wenn bereits Verzeichnisse angelegt worden sind."; #elif L==2 "You can not disable file uploading" " once folders have been created."; #elif L==3 "No puede desactivar la subida de archivos" " una vez que se han creado carpetas."; #elif L==4 "Vous ne pouvez pas désactiver le téléchargement de fichiers," " une fois des répertoires ont été créés."; #elif L==5 "No puede desactivar la subida de archivos" " una vez que se han creado carpetas."; // Okoteve traducción #elif L==6 "Non è possibile disabilitare il caricamento dei file" " una volta che le cartelle sono state create."; #elif L==7 "You can not disable file uploading" " once folders have been created."; // Potrzebujesz tlumaczenie #elif L==8 "Você não pode desativar o upload de arquivos," " uma vez diretórios foram criados."; #endif const char *Txt_You_can_not_leave_empty_intermediate_answers = #if L==0 "No puede dejar respuestas intermedias sin rellenar."; // Necessita traduccio #elif L==1 "You can not leave empty intermediate answers."; // Need Übersetzung #elif L==2 "You can not leave empty intermediate answers."; #elif L==3 "No puede dejar respuestas intermedias sin rellenar."; #elif L==4 "You can not leave empty intermediate answers."; // Besoin de traduction #elif L==5 "No puede dejar respuestas intermedias sin rellenar."; // Okoteve traducción #elif L==6 "Non puoi lasciare vuote domande intermedie."; #elif L==7 "You can not leave empty intermediate answers."; // Potrzebujesz tlumaczenie #elif L==8 "You can not leave empty intermediate answers."; // Necessita de tradução #endif const char *Txt_You_can_not_leave_the_description_empty = #if L==0 "No puede dejar la descripción vacía."; // Necessita traduccio #elif L==1 "You can not leave the description empty."; // Need Übersetzung #elif L==2 "You can not leave the description empty."; #elif L==3 "No puede dejar la descripción vacía."; #elif L==4 "You can not leave the description empty."; // Besoin de traduction #elif L==5 "No puede dejar la descripción vacía."; // Okoteve traducción #elif L==6 "Non puoi lasciare vuota la descrizione."; #elif L==7 "You can not leave the description empty."; // Potrzebujesz tlumaczenie #elif L==8 "You can not leave the description empty."; // Necessita de tradução #endif const char *Txt_You_can_not_leave_the_image_empty = #if L==0 "No puede dejar la imagen vacía."; // Necessita traduccio #elif L==1 "You can not leave the image empty."; // Need Übersetzung #elif L==2 "You can not leave the image empty."; #elif L==3 "No puede dejar la imagen vacía."; #elif L==4 "You can not leave the image empty."; // Besoin de traduction #elif L==5 "No puede dejar la imagen vacía."; // Okoteve traducción #elif L==6 "Non puoi lasciare l'image vuota."; #elif L==7 "You can not leave the image empty."; // Potrzebujesz tlumaczenie #elif L==8 "You can not leave the image empty."; // Necessita de tradução #endif const char *Txt_You_can_not_leave_the_IP_address_empty = #if L==0 "No puede dejar la dirección IP vacía."; // Necessita traduccio #elif L==1 "You can not leave the IP address empty."; // Need Übersetzung #elif L==2 "You can not leave the IP address empty."; #elif L==3 "No puede dejar la dirección IP vacía."; #elif L==4 "You can not leave the IP address empty."; // Besoin de traduction #elif L==5 "No puede dejar la dirección IP vacía."; // Okoteve traducción #elif L==6 "Non puoi lasciare vuoto l'indirizzo IP."; #elif L==7 "You can not leave the IP address empty."; // Potrzebujesz tlumaczenie #elif L==8 "You can not leave the IP address empty."; // Necessita de tradução #endif const char *Txt_You_can_not_leave_the_logo_empty = #if L==0 "No puede dejar el logo vacío."; // Necessita traduccio #elif L==1 "You can not leave the logo empty."; // Need Übersetzung #elif L==2 "You can not leave the logo empty."; #elif L==3 "No puede dejar el logo vacío."; #elif L==4 "You can not leave the logo empty."; // Besoin de traduction #elif L==5 "No puede dejar el logo vacío."; // Okoteve traducción #elif L==6 "Non puoi lasciare vuoto il logo."; #elif L==7 "You can not leave the logo empty."; // Potrzebujesz tlumaczenie #elif L==8 "You can not leave the logo empty."; // Necessita de tradução #endif const char *Txt_You_can_not_leave_the_name_of_the_banner_X_empty = // Warning: it is very important to include %s in the following sentences #if L==0 "No puede dejar el nombre" " del banner %s vacío."; // Necessita traduccio #elif L==1 "You can not leave the name" " of the banner %s empty."; // Need Übersetzung #elif L==2 "You can not leave the name" " of the banner %s empty."; #elif L==3 "No puede dejar el nombre" " del banner %s vacío."; #elif L==4 "You can not leave the name" " of the banner %s empty."; // Besoin de traduction #elif L==5 "No puede dejar el nombre" " del banner %s vacío."; // Okoteve traducción #elif L==6 "Non puoi lasciare il nome" " del banner %s vuoto."; #elif L==7 "You can not leave the name" " of the banner %s empty."; // Potrzebujesz tlumaczenie #elif L==8 "You can not leave the name" " of the banner %s empty."; // Necessita de tradução #endif const char *Txt_You_can_not_leave_the_name_of_the_centre_X_empty = // Warning: it is very important to include %s in the following sentences #if L==0 "No puede dejar el nombre" " del centro %s vacío."; // Necessita traduccio #elif L==1 "You can not leave the name" " of the centre %s empty."; // Need Übersetzung #elif L==2 "You can not leave the name" " of the centre %s empty."; #elif L==3 "No puede dejar el nombre" " del centro %s vacío."; #elif L==4 "You can not leave the name" " of the centre %s empty."; // Besoin de traduction #elif L==5 "No puede dejar el nombre" " del centro %s vacío."; // Okoteve traducción #elif L==6 "Non puoi lasciare il nome" " del centro %s vuoto."; #elif L==7 "You can not leave the name" " of the centre %s empty."; // Potrzebujesz tlumaczenie #elif L==8 "You can not leave the name" " of the centre %s empty."; // Necessita de tradução #endif const char *Txt_You_can_not_leave_the_name_of_the_course_X_empty = // Warning: it is very important to include %s in the following sentences #if L==0 "No puede dejar el nombre" " de la asignatura %s vacío."; // Necessita traduccio #elif L==1 "You can not leave the name" " of the course %s empty."; // Need Übersetzung #elif L==2 "You can not leave the name" " of the course %s empty."; #elif L==3 "No puede dejar el nombre" " de la asignatura %s vacío."; #elif L==4 "You can not leave the name" " of the course %s empty."; // Besoin de traduction #elif L==5 "No puede dejar el nombre" " de la asignatura %s vacío."; // Okoteve traducción #elif L==6 "Non puoi lasciare il nome" " del corso %s vuoto."; #elif L==7 "You can not leave the name" " of the course %s empty."; // Potrzebujesz tlumaczenie #elif L==8 "You can not leave the name" " of the course %s empty."; // Necessita de tradução #endif const char *Txt_You_can_not_leave_the_name_of_the_country_X_empty = // Warning: it is very important to include %s in the following sentences #if L==0 "No puede dejar el nombre" " del pa%iacute;s %s vacío."; // Necessita traduccio #elif L==1 "You can not leave the name" " of the country %s empty."; // Need Übersetzung #elif L==2 "You can not leave the name" " of the country %s empty."; #elif L==3 "No puede dejar el nombre" " del pa%iacute;s %s vacío."; #elif L==4 "You can not leave the name" " of the country %s empty."; // Besoin de traduction #elif L==5 "No puede dejar el nombre" " del pa%iacute;s %s vacío."; // Okoteve traducción #elif L==6 "Non puoi lasciare il nome" " del paese %s vuoto."; #elif L==7 "You can not leave the name" " of the country %s empty."; // Potrzebujesz tlumaczenie #elif L==8 "You can not leave the name" " of the country %s empty."; // Necessita de tradução #endif const char *Txt_You_can_not_leave_the_name_of_the_degree_X_empty = // Warning: it is very important to include %s in the following sentences #if L==0 "No puede dejar el nombre" " de la titulación %s vacío."; // Necessita traduccio #elif L==1 "You can not leave the name" " of the degree %s empty."; // Need Übersetzung #elif L==2 "You can not leave the name" " of the degree %s empty."; #elif L==3 "No puede dejar el nombre" " de la titulación %s vacío."; #elif L==4 "You can not leave the name" " of the degree %s empty."; // Besoin de traduction #elif L==5 "No puede dejar el nombre" " de la titulación %s vacío."; // Okoteve traducción #elif L==6 "Non puoi lasciare il nome" " della laurea %s vuoto."; #elif L==7 "You can not leave the name" " of the degree %s empty."; // Potrzebujesz tlumaczenie #elif L==8 "You can not leave the name" " of the degree %s empty."; // Necessita de tradução #endif const char *Txt_You_can_not_leave_the_name_of_the_department_X_empty = // Warning: it is very important to include %s in the following sentences #if L==0 "No puede dejar el nombre" " del departamento %s vacío."; // Necessita traduccio #elif L==1 "You can not leave the name" " of the department %s empty."; // Need Übersetzung #elif L==2 "You can not leave the name" " of the department %s empty."; #elif L==3 "No puede dejar el nombre" " del departamento %s vacío."; #elif L==4 "You can not leave the name" " of the department %s empty."; // Besoin de traduction #elif L==5 "No puede dejar el nombre" " del departamento %s vacío."; // Okoteve traducción #elif L==6 "Non puoi lasciare il nome" " del dipartimento %s vuoto."; #elif L==7 "You can not leave the name" " of the department %s empty."; // Potrzebujesz tlumaczenie #elif L==8 "You can not leave the name" " of the department %s empty."; // Necessita de tradução #endif const char *Txt_You_can_not_leave_the_name_of_the_field_X_empty = // Warning: it is very important to include %s in the following sentences #if L==0 "No puede dejar el nombre" " del campo %s vacío."; // Necessita traduccio #elif L==1 "You can not leave the name" " of the field %s empty."; // Need Übersetzung #elif L==2 "You can not leave the name" " of the field %s empty."; #elif L==3 "No puede dejar el nombre" " del campo %s vacío."; #elif L==4 "You can not leave the name" " of the field %s empty."; // Besoin de traduction #elif L==5 "No puede dejar el nombre" " del campo %s vacío."; // Okoteve traducción #elif L==6 "Non puoi lasciare il nome" " del campo %s vuoto."; #elif L==7 "You can not leave the name" " of the field %s empty."; // Potrzebujesz tlumaczenie #elif L==8 "You can not leave the name" " of the field %s empty."; // Necessita de tradução #endif const char *Txt_You_can_not_leave_the_name_of_the_group_X_empty = // Warning: it is very important to include %s in the following sentences #if L==0 "No puede dejar el nombre" " del grupo %s vacío."; // Necessita traduccio #elif L==1 "You can not leave the name" " of the group %s empty."; // Need Übersetzung #elif L==2 "You can not leave the name" " of the group %s empty."; #elif L==3 "No puede dejar el nombre" " del grupo %s vacío."; #elif L==4 "You can not leave the name" " of the group %s empty."; // Besoin de traduction #elif L==5 "No puede dejar el nombre" " del grupo %s vacío."; // Okoteve traducción #elif L==6 "Non puoi lasciare il nome" " del gruppo %s vuoto."; #elif L==7 "You can not leave the name" " of the group %s empty."; // Potrzebujesz tlumaczenie #elif L==8 "You can not leave the name" " of the group %s empty."; // Necessita de tradução #endif const char *Txt_You_can_not_leave_the_name_of_the_holiday_X_empty = // Warning: it is very important to include %s in the following sentences #if L==0 "No puede dejar el nombre" " de la festividad %s vacío."; // Necessita traduccio #elif L==1 "You can not leave the name" " of the holiday %s empty."; // Need Übersetzung #elif L==2 "You can not leave the name" " of the holiday %s empty."; #elif L==3 "No puede dejar el nombre" " de la festividad %s vacío."; #elif L==4 "You can not leave the name" " of the holiday %s empty."; // Besoin de traduction #elif L==5 "No puede dejar el nombre" " de la festividad %s vacío."; // Okoteve traducción #elif L==6 "Non puoi lasciare il nome" " della festività %s vuoto."; #elif L==7 "You can not leave the name" " of the holiday %s empty."; // Potrzebujesz tlumaczenie #elif L==8 "You can not leave the name" " of the holiday %s empty."; // Necessita de tradução #endif const char *Txt_You_can_not_leave_the_name_of_the_institution_X_empty = // Warning: it is very important to include %s in the following sentences #if L==0 "No puede dejar el nombre" " de la institución %s vacío."; // Necessita traduccio #elif L==1 "You can not leave the name" " of the institution %s empty."; // Need Übersetzung #elif L==2 "You can not leave the name" " of the institution %s empty."; #elif L==3 "No puede dejar el nombre" " de la institución %s vacío."; #elif L==4 "You can not leave the name" " of the institution %s empty."; // Besoin de traduction #elif L==5 "No puede dejar el nombre" " de la institución %s vacío."; // Okoteve traducción #elif L==6 "Non puoi lasciare il nome" " dell'istituzione %s vuoto."; #elif L==7 "You can not leave the name" " of the institution %s empty."; // Potrzebujesz tlumaczenie #elif L==8 "You can not leave the name" " of the institution %s empty."; // Necessita de tradução #endif const char *Txt_You_can_not_leave_the_name_of_the_link_X_empty = // Warning: it is very important to include %s in the following sentences #if L==0 "No puede dejar el nombre" " del enlace %s vacío."; // Necessita traduccio #elif L==1 "You can not leave the name" " of the link %s empty."; // Need Übersetzung #elif L==2 "You can not leave the name" " of the link %s empty."; #elif L==3 "No puede dejar el nombre" " del enlace %s vacío."; #elif L==4 "You can not leave the name" " of the link %s empty."; // Besoin de traduction #elif L==5 "No puede dejar el nombre" " del enlace %s vacío."; // Okoteve traducción #elif L==6 "Non puoi lasciare il nome" " del link %s vuoto."; #elif L==7 "You can not leave the name" " of the link %s empty."; // Potrzebujesz tlumaczenie #elif L==8 "You can not leave the name" " of the link %s empty."; // Necessita de tradução #endif const char *Txt_You_can_not_leave_the_name_of_the_mail_domain_X_empty = // Warning: it is very important to include %s in the following sentences #if L==0 "No puede dejar el nombre " "del dominio de correo %s vacío."; // Necessita traduccio #elif L==1 "You can not leave the name" " of the mail domain %s empty."; // Need Übersetzung #elif L==2 "You can not leave the name" " of the mail domain %s empty."; #elif L==3 "No puede dejar el nombre" " del dominio de correo %s vacío."; #elif L==4 "You can not leave the name" " of the mail domain %s empty."; // Besoin de traduction #elif L==5 "No puede dejar el nombre" " del dominio de correo %s vacío."; // Okoteve traducción #elif L==6 "Non puoi lasciare il nome" " del campo mail %s vuoto."; #elif L==7 "You can not leave the name" " of the mail domain %s empty."; // Potrzebujesz tlumaczenie #elif L==8 "You can not leave the name" " of the mail domain %s empty."; // Necessita de tradução #endif const char *Txt_You_can_not_leave_the_name_of_the_place_X_empty = // Warning: it is very important to include %s in the following sentences #if L==0 "No puede dejar el nombre" " del lugar %s vacío."; // Necessita traduccio #elif L==1 "You can not leave the name" " of the place %s empty."; // Need Übersetzung #elif L==2 "You can not leave the name" " of the place %s empty."; #elif L==3 "No puede dejar el nombre" " del lugar %s vacío."; #elif L==4 "You can not leave the name" " of the place %s empty."; // Besoin de traduction #elif L==5 "No puede dejar el nombre" " del lugar %s vacío."; // Okoteve traducción #elif L==6 "Non puoi lasciare il nome" " del luogo %s vuoto."; #elif L==7 "You can not leave the name" " of the place %s empty."; // Potrzebujesz tlumaczenie #elif L==8 "You can not leave the name" " of the place %s empty."; // Necessita de tradução #endif const char *Txt_You_can_not_leave_the_name_of_the_plugin_X_empty = // Warning: it is very important to include %s in the following sentences #if L==0 "No puede dejar el nombre" " del complemento %s vacío."; // Necessita traduccio #elif L==1 "You can not leave the name" " of the plugin %s empty."; // Need Übersetzung #elif L==2 "You can not leave the name" " of the plugin %s empty."; #elif L==3 "No puede dejar el nombre" " del complemento %s vacío."; #elif L==4 "You can not leave the name" " of the plugin %s empty."; // Besoin de traduction #elif L==5 "No puede dejar el nombre" " del complemento %s vacío."; // Okoteve traducción #elif L==6 "Non puoi lasciare il nome" " del plugin %s vuoto."; #elif L==7 "You can not leave the name" " of the plugin %s empty."; // Potrzebujesz tlumaczenie #elif L==8 "You can not leave the name" " of the plugin %s empty."; // Necessita de tradução #endif const char *Txt_You_can_not_leave_the_name_of_the_tag_X_empty = // Warning: it is very important to include %s in the following sentences #if L==0 "No puede dejar el nombre" " del descriptor %s vacío."; // Necessita traduccio #elif L==1 "You can not leave the name" " of the tag %s empty."; // Need Übersetzung #elif L==2 "You can not leave the name" " of the tag %s empty."; #elif L==3 "No puede dejar el nombre" " del descriptor %s vacío."; #elif L==4 "You can not leave the name" " of the tag %s empty."; // Besoin de traduction #elif L==5 "No puede dejar el nombre" " del descriptor %s vacío."; // Okoteve traducción #elif L==6 "Non puoi lasciare il nome" " dell'etichetta %s vuoto."; #elif L==7 "You can not leave the name" " of the tag %s empty."; // Potrzebujesz tlumaczenie #elif L==8 "You can not leave the name" " of the tag %s empty."; // Necessita de tradução #endif const char *Txt_You_can_not_leave_the_name_of_the_type_of_degree_X_empty = // Warning: it is very important to include %s in the following sentences #if L==0 "No puede dejar el nombre" " del tipo de titulación %s vacío."; // Necessita traduccio #elif L==1 "You can not leave the name" " of the type of degree %s empty."; // Need Übersetzung #elif L==2 "You can not leave the name" " of the type of degree %s empty."; #elif L==3 "No puede dejar el nombre" " del tipo de titulación %s vacío."; #elif L==4 "You can not leave the name" " of the type of degree %s empty."; // Besoin de traduction #elif L==5 "No puede dejar el nombre" " del tipo de titulación %s vacío."; // Okoteve traducción #elif L==6 "Non puoi lasciare il nome" " del tipo di laurea %s vuoto."; #elif L==7 "You can not leave the name" " of the type of degree %s empty."; // Potrzebujesz tlumaczenie #elif L==8 "You can not leave the name" " of the type of degree %s empty."; // Necessita de tradução #endif const char *Txt_You_can_not_leave_the_name_of_the_type_of_group_X_empty = // Warning: it is very important to include %s in the following sentences #if L==0 "No puede dejar el nombre" " del tipo de grupo %s vacío."; // Necessita traduccio #elif L==1 "You can not leave the name" " of the type of group %s empty."; // Need Übersetzung #elif L==2 "You can not leave the name" " of the type of group %s empty."; #elif L==3 "No puede dejar el nombre" " del tipo de grupo %s vacío."; #elif L==4 "You can not leave the name" " of the type of group %s empty."; // Besoin de traduction #elif L==5 "No puede dejar el nombre" " del tipo de grupo %s vacío."; // Okoteve traducción #elif L==6 "Non puoi lasciare il nome" " del tipo di gruppo %s vuoto."; #elif L==7 "You can not leave the name" " of the type of group %s empty."; // Potrzebujesz tlumaczenie #elif L==8 "You can not leave the name" " of the type of group %s empty."; // Necessita de tradução #endif const char *Txt_You_can_not_leave_the_URL_empty = #if L==0 "No puede dejar el URL vacío."; // Necessita traduccio #elif L==1 "You can not leave the URL empty."; // Need Übersetzung #elif L==2 "You can not leave the URL empty."; #elif L==3 "No puede dejar el URL vacío."; #elif L==4 "You can not leave the URL empty."; // Besoin de traduction #elif L==5 "No puede dejar el URL vacío."; // Okoteve traducción #elif L==6 "Non puoi lasciare l'URL vuoto."; #elif L==7 "You can not leave the URL empty."; // Potrzebujesz tlumaczenie #elif L==8 "You can not leave the URL empty."; // Necessita de tradução #endif const char *Txt_You_can_not_leave_the_web_address_empty = #if L==0 "No puede dejar la dirección web vacía."; // Necessita traduccio #elif L==1 "You can not leave the web address empty."; // Need Übersetzung #elif L==2 "You can not leave the web address empty."; #elif L==3 "No puede dejar la dirección web vacía."; #elif L==4 "You can not leave the web address empty."; // Besoin de traduction #elif L==5 "No puede dejar la dirección web vacía."; // Okoteve traducción #elif L==6 "Non puoi lasciare l'indirizzo web vuoto."; #elif L==7 "You can not leave the web address empty."; // Potrzebujesz tlumaczenie #elif L==8 "You can not leave the web address empty."; // Necessita de tradução #endif const char *Txt_You_can_not_make_a_new_test_in_the_course_X_until_TIME_Y = // Warning: it is very important to include %s and three %02u in the following sentences #if L==0 "No puede hacer un nuevo test en la asignatura %s" " hasta las %02uh%02u'%02u""; // Necessita traduccio #elif L==1 "You can not make a new test in the course %s" " until %02uh%02u'%02u""; // Need Übersetzung #elif L==2 "You can not make a new test in the course %s" " until %02uh%02u'%02u""; #elif L==3 "No puede hacer un nuevo test en la asignatura %s" " hasta las %02uh%02u'%02u""; #elif L==4 "You can not make a new test in the course %s" " until %02uh%02u'%02u""; // Besoin de traduction #elif L==5 "No puede hacer un nuevo test en la asignatura %s" " hasta las %02uh%02u'%02u""; // Okoteve traducción #elif L==6 "Non puoi fare un nuovo test nel corso %s" " fino al %02uh%02u'%02u""; #elif L==7 "You can not make a new test in the course %s" " until %02uh%02u'%02u""; // Potrzebujesz tlumaczenie #elif L==8 "You can not make a new test in the course %s" " until %02uh%02u'%02u""; // Necessita de tradução #endif const char *Txt_You_can_not_make_a_new_test_in_the_course_X_until_TIME_Y_on_DATE_Z = // Warning: it is very important to include %s, five %02u and %04u in the following sentences #if L==0 "No puede hacer un nuevo test en la asignatura %s" " hasta las %02uh%02u'%02u" del %02u/%02u/%04u"; // Necessita traduccio #elif L==1 "You can not make a new test in the course %s" " until %02uh%02u'%02u" on %02u/%02u/%04u"; // Need Übersetzung #elif L==2 "You can not make a new test in the course %s" " until %02uh%02u'%02u" on %02u/%02u/%04u"; #elif L==3 "No puede hacer un nuevo test en la asignatura %s" " hasta las %02uh%02u'%02u" del %02u/%02u/%04u"; #elif L==4 "You can not make a new test in the course %s" " until %02uh%02u'%02u" on %02u/%02u/%04u"; // Besoin de traduction #elif L==5 "No puede hacer un nuevo test en la asignatura %s" " hasta las %02uh%02u'%02u" del %02u/%02u/%04u"; // Okoteve traducción #elif L==6 "Non puoi fare un nuovo test nel corso %s" " fino al %02uh%02u'%02u" del %02u/%02u/%04u"; #elif L==7 "You can not make a new test in the course %s" " until %02uh%02u'%02u" on %02u/%02u/%04u"; // Potrzebujesz tlumaczenie #elif L==8 "You can not make a new test in the course %s" " until %02uh%02u'%02u" on %02u/%02u/%04u"; // Necessita de tradução #endif const char *Txt_You_can_not_paste_file_or_folder_here = #if L==0 "No puede pegar un archivo o carpeta aquí."; // Necessita traduccio #elif L==1 "You can not paste file or folder here."; // Need Übersetzung #elif L==2 "You can not paste file or folder here."; #elif L==3 "No puede pegar un archivo o carpeta aquí."; #elif L==4 "You can not paste file or folder here."; // Besoin de traduction #elif L==5 "No puede pegar un archivo o carpeta aquí."; // Okoteve traducción #elif L==6 "Non puoi copiare file o cartella qui."; #elif L==7 "You can not paste file or folder here."; // Potrzebujesz tlumaczenie #elif L==8 "You can not paste file or folder here."; // Necessita de tradução #endif const char *Txt_You_can_not_remove_this_file_or_link = #if L==0 "No puede eliminar este archivo o enlace."; // Necessita traduccio #elif L==1 "You can not remove this file or link."; // Need Übersetzung #elif L==2 "You can not remove this file or link."; #elif L==3 "No puede eliminar este archivo o enlace."; #elif L==4 "You can not remove this file or link."; // Besoin de traduction #elif L==5 "No puede eliminar este archivo o enlace."; // Okoteve traducción #elif L==6 "Non puoi rimuovere questo file o link."; #elif L==7 "You can not remove this file or link."; // Potrzebujesz tlumaczenie #elif L==8 "You can not remove this file or link."; // Necessita de tradução #endif const char *Txt_You_can_not_remove_this_folder = #if L==0 "No puede eliminar esta carpeta."; // Necessita traduccio #elif L==1 "You can not remove this folder."; // Need Übersetzung #elif L==2 "You can not remove this folder."; #elif L==3 "No puede eliminar esta carpeta."; #elif L==4 "You can not remove this folder."; // Besoin de traduction #elif L==5 "No puede eliminar esta carpeta."; // Okoteve traducción #elif L==6 "Non puoi rimuovere questa cartella."; #elif L==7 "You can not remove this folder."; // Potrzebujesz tlumaczenie #elif L==8 "You can not remove this folder."; // Necessita de tradução #endif const char *Txt_You_can_not_remove_a_country_with_institutions_or_users = #if L==0 "No puede eliminar un país con instituciones o usuarios."; // Necessita traduccio #elif L==1 "You can not remove a country with institutions or users."; // Need Übersetzung #elif L==2 "You can not remove a country with institutions or users."; #elif L==3 "No puede eliminar un país con instituciones o usuarios."; #elif L==4 "You can not remove a country with instituciones or users."; // Besoin de traduction #elif L==5 "No puede eliminar un país con instituciones o usuarios."; // Okoteve traducción #elif L==6 "Non puoi rimuovere un paese con istituzioni o utenti."; #elif L==7 "You can not remove a country with instituciones or users."; // Potrzebujesz tlumaczenie #elif L==8 "You can not remove a country with instituciones or users."; // Necessita de tradução #endif const char *Txt_You_can_not_rename_this_folder = #if L==0 "No puede cambiar el nombre de esta carpeta."; // Necessita traduccio #elif L==1 "You can not rename this folder."; // Need Übersetzung #elif L==2 "You can not rename this folder."; #elif L==3 "No puede cambiar el nombre de esta carpeta."; #elif L==4 "You can not rename this folder."; // Besoin de traduction #elif L==5 "No puede cambiar el nombre de esta carpeta."; // Okoteve traducción #elif L==6 "Non puoi rinominare questa cartella."; #elif L==7 "You can not rename this folder."; // Potrzebujesz tlumaczenie #elif L==8 "You can not rename this folder."; // Necessita de tradução #endif const char *Txt_You_can_not_send_a_message_to_so_many_recipients_ = #if L==0 "No puede enviar un mensaje a tantísimos destinatarios." " Es mejor usar los foros."; // Necessita traduccio #elif L==1 "You can not send a message to so many recipients." " Better use the forums."; // Need Übersetzung #elif L==2 "You can not send a message to so many recipients." " Better use the forums."; #elif L==3 "No puede enviar un mensaje a tantísimos destinatarios." " Es mejor usar los foros."; #elif L==4 "You can not send a message to so many recipients." " Better use the forums."; // Besoin de traduction #elif L==5 "No puede enviar un mensaje a tantísimos destinatarios." " Es mejor usar los foros."; // Okoteve traducción #elif L==6 "Non puoi inviare un messaggio a così tanti destinatari." " Meglio usare il forum."; #elif L==7 "You can not send a message to so many recipients." " Better use the forums."; // Potrzebujesz tlumaczenie #elif L==8 "You can not send a message to so many recipients." " Better use the forums."; // Necessita de tradução #endif const char *Txt_You_can_only_perform_X_further_actions_ = // Warning: it is very important to include %u in the following sentences #if L==0 "Sólo podrá realizar %u acciones más" " si no envía su fotografía."; // Necessita traduccio #elif L==1 "You can only perform %u further actions" " if you don't send your photo."; // Need Übersetzung #elif L==2 "You can only perform %u further actions" " if you don't send your photo."; #elif L==3 "Sólo podrá realizar %u acciones más" " si no envía su fotografía."; #elif L==4 "You can only perform %u further actions" " if you don't send your photo."; // Besoin de traduction #elif L==5 "Sólo podrá realizar %u acciones más" " si no envía su fotografía."; // Okoteve traducción #elif L==6 "Puoi solo realizzare %u massime azioni" " se non hai inviato la tua foto."; #elif L==7 "You can only perform %u further actions" " if you don't send your photo."; // Potrzebujesz tlumaczenie #elif L==8 "You can only perform %u further actions" " if you don't send your photo."; // Necessita de tradução #endif const char *Txt_You_can_only_receive_email_notifications_if_ = #if L==0 "Sólo podrá recibir notificaciones por correo electrónico" " si su dirección de correo termina en uno de los dominios" " listados en Titulación > Dominios correo."; // Necessita traduccio #elif L==1 "You can only receive email notifications" " if your email ends in one of the domains" " listed in Degree > Mail domains."; // Need Übersetzung #elif L==2 "You can only receive email notifications" " if your email ends in one of the domains" " listed in Degree > Mail domains."; #elif L==3 "Sólo podrá recibir notificaciones por correo electrónico" " si su dirección de correo termina en uno de los dominios" " listados en Titulación > Dominios correo."; #elif L==4 "You can only receive email notifications" " if your email ends in one of the domains" " listed in Degree > Mail domains."; // Besoin de traduction #elif L==5 "Sólo podrá recibir notificaciones por correo electrónico" " si su dirección de correo termina en uno de los dominios" " listados en Titulación > Dominios correo."; // Okoteve traducción #elif L==6 "Puoi solo ricevere e-mail di notifica" " se la tua e-mail termina in uno dei campi" " listati in Lauree > Campo mail."; #elif L==7 "You can only receive email notifications" " if your email ends in one of the domains" " listed in Degree > Mail domains."; // Potrzebujesz tlumaczenie #elif L==8 "You can only receive email notifications" " if your email ends in one of the domains" " listed in Degree > Mail domains."; // Necessita de tradução #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 #if L==0 "Puede apuntarse voluntariamente a un grupo de tipo %s."; // Necessita traduccio #elif L==1 "You can register voluntarily in one group of type %s."; // Need Übersetzung #elif L==2 "You can register voluntarily in one group of type %s."; #elif L==3 "Puede apuntarse voluntariamente a un grupo de tipo %s."; #elif L==4 "You can register voluntarily in one group of type %s."; // Besoin de traduction #elif L==5 "Puede apuntarse voluntariamente a un grupo de tipo %s."; // Okoteve traducción #elif L==6 "Ti puoi registrare volontariamente in uno dei gruppi di tipo %s."; #elif L==7 "You can register voluntarily in one group of type %s."; // Potrzebujesz tlumaczenie #elif L==8 "You can register voluntarily in one group of type %s."; // Necessita de tradução #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 #if L==0 "Puede apuntarse voluntariamente" " a uno o a varios grupos de tipo %s."; // Necessita traduccio #elif L==1 "You can register voluntarily" " in one or more groups of type %s."; // Need Übersetzung #elif L==2 "You can register voluntarily" " in one or more groups of type %s."; #elif L==3 "Puede apuntarse voluntariamente" " a uno o a varios grupos de tipo %s."; #elif L==4 "You can register voluntarily" " in one or more groups of type %s."; // Besoin de traduction #elif L==5 "Puede apuntarse voluntariamente" " a uno o a varios grupos de tipo %s."; // Okoteve traducción #elif L==6 "Ti puoi registrare volontariamente" " in uno o più gruppi di tipo %s."; #elif L==7 "You can register voluntarily" " in one or more groups of type %s."; // Potrzebujesz tlumaczenie #elif L==8 "You can register voluntarily" " in one or more groups of type %s."; // Necessita de tradução #endif const char *Txt_You_can_send_a_file_with_an_image_in_jpg_format_ = #if L==0 "Puede enviar un archivo con una imagen en formato jpg.
" "La imagen debe contener al menos un rostro en posición frontal," " y con el fondo blanco o muy claro."; // Necessita traduccio #elif L==1 "You can send a file with an image in jpg format.
" "The image must contain at least one face in front position," " and the background must be white or very light."; // Need Übersetzung #elif L==2 "You can send a file with an image in jpg format.
" "The image must contain at least one face in front position," " and the background must be white or very light."; #elif L==3 "Puede enviar un archivo con una imagen en formato jpg.
" "La imagen debe contener al menos un rostro en posición frontal," " y con el fondo blanco o muy claro."; #elif L==4 "You can send a file with an image in jpg format.
" "The image must contain at least one face in front position," " and the background must be white or very light."; // Besoin de traduction #elif L==5 "Puede enviar un archivo con una imagen en formato jpg.
" "La imagen debe contener al menos un rostro en posición frontal," " y con el fondo blanco o muy claro."; // Okoteve traducción #elif L==6 "Puoi inviare un file con un'immagine in formato jpg.
" "L'immagine deve contenere almeno un viso in posizione frontale," " e lo sfondo deve essere bianco o molto chiaro."; #elif L==7 "You can send a file with an image in jpg format.
" "The image must contain at least one face in front position," " and the background must be white or very light."; // Potrzebujesz tlumaczenie #elif L==8 "You can send a file with an image in jpg format.
" "The image must contain at least one face in front position," " and the background must be white or very light."; // Necessita de tradução #endif const char *Txt_You_can_send_a_file_with_an_image_in_jpg_format_and_size_X_Y = // Warning: it is very important to include two %u in the following sentences #if L==0 "Puede enviar un archivo con una imagen en formato jpg" " y tamaño %u×%u píxeles."; // Necessita traduccio #elif L==1 "You can send a file with an image in jpg format" " and size %u×%u pixels."; // Need Übersetzung #elif L==2 "You can send a file with an image in jpg format" " and size %u×%u pixels."; #elif L==3 "Puede enviar un archivo con una imagen en formato jpg" " y tamaño %u×%u píxeles."; #elif L==4 "You can send a file with an image in jpg format" " and size %u×%u pixels."; // Besoin de traduction #elif L==5 "Puede enviar un archivo con una imagen en formato jpg" " y tamaño %u×%u píxeles."; // Okoteve traducción #elif L==6 "Puoi inviare un file con un'immagine in formato jpg" " e di dimensione %u×%u pixel."; #elif L==7 "You can send a file with an image in jpg format" " and size %u×%u pixels."; // Potrzebujesz tlumaczenie #elif L==8 "You can send a file with an image in jpg format" " and size %u×%u pixels."; // Necessita de tradução #endif const char *Txt_Stay_connected_with_SWADroid = #if L==0 "Seguiu connectat/da amb SWADroid."; #elif L==1 "Stay connected with SWADroid."; // Need Übersetzung #elif L==2 "Stay connected with SWADroid."; #elif L==3 "Siga conectado/a con SWADroid."; #elif L==4 "Stay connected with SWADroid."; // Besoin de traduction #elif L==5 "Siga conectado/a con SWADroid."; // Okoteve traducción #elif L==6 "Resta in contatto con SWADroid."; #elif L==7 "Stay connected with SWADroid."; // Potrzebujesz tlumaczenie #elif L==8 "Stay connected with SWADroid."; // Necessita de tradução #endif const char *Txt_You_dont_have_permission_to_access_to_this_forum = #if L==0 "No té permís per accedir a aquest fòrum."; #elif L==1 "Sie haben keine Berechtigung, dieses Forum benutzen."; #elif L==2 "You don't have permission to access to this forum."; #elif L==3 "Usted no tiene permiso para acceder a este foro."; #elif L==4 "Vous n'avez pas la permission d'accéder à ce forum."; #elif L==5 "Usted no tiene permiso para acceder a este foro."; // Okoteve traducción #elif L==6 "Non si dispone dell'autorizzazione per accedere a questo forum."; #elif L==7 "Nie masz dostępu do tej forum."; #elif L==8 "Você não tem permissão para acessar este fórum."; #endif const char *Txt_You_dont_have_permission_to_change_the_properties_of_file_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Usted no tiene permiso para cambiar las propiedades del archivo %s."; // Necessita traduccio #elif L==1 "You don't have permission to change the properties of file %s."; // Need Übersetzung #elif L==2 "You don't have permission to change the properties of file %s."; #elif L==3 "Usted no tiene permiso para cambiar las propiedades del archivo %s."; #elif L==4 "You don't have permission to change the properties of file %s."; // Besoin de traduction #elif L==5 "Usted no tiene permiso para cambiar las propiedades del archivo %s."; // Okoteve traducción #elif L==6 "You don't have permission to change the properties of file %s."; // Bisogno di traduzione #elif L==7 "You don't have permission to change the properties of file %s."; // Potrzebujesz tlumaczenie #elif L==8 "You don't have permission to change the properties of file %s."; // Necessita de tradução #endif const char *Txt_You_dont_have_permission_to_edit_this_course = #if L==0 "Usted no tiene permiso para editar esta asignatura."; // Necessita traduccio #elif L==1 "You don't have permission to edit this course."; // Need Übersetzung #elif L==2 "You don't have permission to edit this course."; #elif L==3 "Usted no tiene permiso para editar esta asignatura."; #elif L==4 "You don't have permission to edit this course."; // Besoin de traduction #elif L==5 "Usted no tiene permiso para editar esta asignatura."; // Okoteve traducción #elif L==6 "Non hai l'autorizzazione di editare questo corso."; #elif L==7 "You don't have permission to edit this course."; // Potrzebujesz tlumaczenie #elif L==8 "You don't have permission to edit this course."; // Necessita de tradução #endif const char *Txt_You_dont_have_permission_to_move_courses_to_the_degree_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Usted no tiene permiso para mover asignaturas" " a la titulación %s."; // Necessita traduccio #elif L==1 "You don't have permission to move courses" " to the degree %s."; // Need Übersetzung #elif L==2 "You don't have permission to move courses" " to the degree %s."; #elif L==3 "Usted no tiene permiso para mover asignaturas" " a la titulación %s."; #elif L==4 "You don't have permission to move courses" " to the degree %s."; // Besoin de traduction #elif L==5 "Usted no tiene permiso para mover asignaturas" " a la titulación %s."; // Okoteve traducción #elif L==6 "Non hai l'autorizzazione di spostare i corsi" " nella laurea %s."; #elif L==7 "You don't have permission to move courses" " to the degree %s."; // Potrzebujesz tlumaczenie #elif L==8 "You don't have permission to move courses" " to the degree %s."; // Necessita de tradução #endif const char *Txt_You_dont_have_permission_to_perform_this_action = #if L==0 "Vostè no té permís" " per realitzar aquesta acció."; #elif L==1 "Sie haben keine Berechtigung," " um diese Handlung durchzuführen."; #elif L==2 "You don't have permission" " to perform this action."; #elif L==3 "Usted no tiene permiso" " para realizar esta acción."; #elif L==4 "Vous n'avez pas la permission" " d'effectuer cette action."; #elif L==5 "Usted no tiene permiso" " para realizar esta acción."; // Okoteve traducción #elif L==6 "Non si dispone dell'autorizzazione" " per eseguire questa azione."; #elif L==7 "You don't have permission" " to perform this action."; // Potrzebujesz tlumaczenie #elif L==8 "Você não tem permissão" " para realizar esta ação."; #endif const char *Txt_You_dont_have_photo = #if L==0 "Usted no tiene fotografía."; // Necessita traduccio #elif L==1 "Sie haben keine Foto."; #elif L==2 "You don't have photo."; #elif L==3 "Usted no tiene fotografía."; #elif L==4 "Vous n'avez pas de photo."; #elif L==5 "Usted no tiene fotografía."; // Okoteve traducción #elif L==6 "Non hai foto."; #elif L==7 "You don't have photo."; // Potrzebujesz tlumaczenie #elif L==8 "Você não tem foto."; #endif const char *Txt_You_have_confirmed_that_you_have_read_this_information = #if L==0 "Usted ha confirmado que ha leido esta información."; // Necessita traduccio #elif L==1 "You have confirmed that you have read this information."; // Need Übersetzung #elif L==2 "You have confirmed that you have read this information."; #elif L==3 "Usted ha confirmado que ha leido esta información."; #elif L==4 "You have confirmed that you have read this information."; // Besoin de traduction #elif L==5 "Usted ha confirmado que ha leido esta información."; // Okoteve traducción #elif L==6 "Hai confermato che hai letto questa informazione."; #elif L==7 "You have confirmed that you have read this information."; // Potrzebujesz tlumaczenie #elif L==8 "You have confirmed that you have read this information."; // Necessita de tradução #endif const char *Txt_You_have_confirmed_your_enrollment_in_the_course_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Usted ha confirmado su inscripción" " en la asignatura %s."; // Necessita traduccio #elif L==1 "You have confirmed your enrollment" " in the course %s."; // Need Übersetzung #elif L==2 "You have confirmed your enrollment" " in the course %s."; #elif L==3 "Usted ha confirmado su inscripción" " en la asignatura %s."; #elif L==4 "You have confirmed your enrollment" " in the course %s."; // Besoin de traduction #elif L==5 "Usted ha confirmado su inscripción" " en la asignatura %s."; // Okoteve traducción #elif L==6 "Hai confermato la tua registrazione" " in questo corso %s."; #elif L==7 "You have confirmed your enrollment" " in the course %s."; // Potrzebujesz tlumaczenie #elif L==8 "You have confirmed your enrollment" " in the course %s."; // Necessita de tradução #endif const char *Txt_You_have_eliminated_the_confirmation_that_you_have_read_this_information = #if L==0 "Usted ha eliminado la confirmación" " de que ha leido esta información."; // Necessita traduccio #elif L==1 "You have eliminated the confirmation" " that you have read this information."; // Need Übersetzung #elif L==2 "You have eliminated the confirmation" " that you have read this information."; #elif L==3 "Usted ha eliminado la confirmación" " de que ha leido esta información."; #elif L==4 "You have eliminated the confirmation" " that you have read this information."; // Besoin de traduction #elif L==5 "Usted ha eliminado la confirmación" " de que ha leido esta información."; // Okoteve traducción #elif L==6 "Hai rimosso la conferma" " che hai letto questa informazione."; #elif L==7 "You have eliminated the confirmation" " that you have read this information."; // Potrzebujesz tlumaczenie #elif L==8 "You have eliminated the confirmation" " that you have read this information."; // Necessita de tradução #endif const char *Txt_You_have_not_banned_any_sender = #if L==0 "Usted no ha bloqueado ningún remitente."; // Necessita traduccio #elif L==1 "You have not banned any sender."; // Need Übersetzung #elif L==2 "You have not banned any sender."; #elif L==3 "Usted no ha bloqueado ningún remitente."; #elif L==4 "You have not banned any sender."; // Besoin de traduction #elif L==5 "Usted no ha bloqueado ningún remitente."; // Okoteve traducción #elif L==6 "You have not banned any sender."; // Bisogno di traduzione #elif L==7 "You have not banned any sender."; // Potrzebujesz tlumaczenie #elif L==8 "You have not banned any sender."; // Necessita de tradução #endif const char *Txt_You_have_not_confirmed_the_action = #if L==0 "No ha confirmat l'acció."; #elif L==1 "Sie haben nicht die Aktion bestätigt."; #elif L==2 "You have not confirmed the action."; #elif L==3 "No ha confirmado la acción."; #elif L==4 "Vous n'avez pas confirmé l'action."; #elif L==5 "No ha confirmado la acción."; // Okoteve traducción #elif L==6 "Non hai inserito correttamente la tua password."; #elif L==7 "Nie potwierdziły działanie."; #elif L==8 "Você ainda não confirmou a ação."; #endif const char *Txt_You_have_not_entered_your_password_correctly = #if L==0 "No ha introduït correctament la seva contrasenya."; #elif L==1 "Sie haben Ihr Passwort nicht korrekt eingegeben wurde."; #elif L==2 "You have not entered your password correctly."; #elif L==3 "No ha introducido correctamente su contraseña."; #elif L==4 "Vous n'avez pas entré votre mot de passe correctement."; #elif L==5 "No ha introducido correctamente su contraseña."; // Okoteve traducción #elif L==6 "Non hai inserito correttamente la tua password."; #elif L==7 "Nie wpisałeś poprawnie hasło."; #elif L==8 "Você não digitou sua senha corretamente."; #endif const char *Txt_You_have_not_written_twice_the_same_new_password = #if L==0 "Usted no ha escrito dos veces la misma contraseña nueva."; // Necessita traduccio #elif L==1 "You have not written twice the same new password."; // Need Übersetzung #elif L==2 "You have not written twice the same new password."; #elif L==3 "Usted no ha escrito dos veces la misma contraseña nueva."; #elif L==4 "You have not written twice the same new password."; // Besoin de traduction #elif L==5 "Usted no ha escrito dos veces la misma contraseña nueva."; // Okoteve traducción #elif L==6 "Non hai scritto due volte la stessa password nuova."; #elif L==7 "You have not written twice the same new password."; // Potrzebujesz tlumaczenie #elif L==8 "You have not written twice the same new password."; // Necessita de tradução #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 #if L==0 "Tiene que apuntarse obligatoriamente al menos a un grupo de tipo %s."; // Necessita traduccio #elif L==1 "You have to register compulsorily at least in one group of type %s."; // Need Übersetzung #elif L==2 "You have to register compulsorily at least in one group of type %s."; #elif L==3 "Tiene que apuntarse obligatoriamente al menos a un grupo de tipo %s."; #elif L==4 "You have to register compulsorily at least in one group of type %s."; // Besoin de traduction #elif L==5 "Tiene que apuntarse obligatoriamente al menos a un grupo de tipo %s."; // Okoteve traducción #elif L==6 "Devi registrarti obbligatoriamente almeno in uno dei gruppi del tipo %s."; #elif L==7 "You have to register compulsorily at least in one group of type %s."; // Potrzebujesz tlumaczenie #elif L==8 "You have to register compulsorily at least in one group of type %s."; // Necessita de tradução #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 #if L==0 "Tiene que apuntarse obligatoriamente a un grupo de tipo %s."; // Necessita traduccio #elif L==1 "You have to register compulsorily in one group of type %s."; // Need Übersetzung #elif L==2 "You have to register compulsorily in one group of type %s."; #elif L==3 "Tiene que apuntarse obligatoriamente a un grupo de tipo %s."; #elif L==4 "You have to register compulsorily in one group of type %s."; // Besoin de traduction #elif L==5 "Tiene que apuntarse obligatoriamente a un grupo de tipo %s."; // Okoteve traducción #elif L==6 "Devi registrarti obbligatoriamente in uno dei gruppi del tipo %s."; #elif L==7 "You have to register compulsorily in one group of type %s."; // Potrzebujesz tlumaczenie #elif L==8 "You have to register compulsorily in one group of type %s."; // Necessita de tradução #endif const char *Txt_You_have_written_1_post_in_this_thread = #if L==0 "Usted ha escrito 1 mensaje en esta discusión"; // Necessita traduccio #elif L==1 "Sie haben 1 Nachricht in diesem Thread"; #elif L==2 "You have written 1 post in this thread"; #elif L==3 "Usted ha escrito 1 mensaje en esta discusión"; #elif L==4 "Vous avez écrit 1 message dans ce fil"; #elif L==5 "Usted ha escrito 1 mensaje en esta discusión"; // Okoteve traducción #elif L==6 "Hai scritto 1 post in questa discussione"; #elif L==7 "You have written 1 post in this thread"; // Potrzebujesz tlumaczenie #elif L==8 "Você escreveu 1 post neste thread"; #endif const char *Txt_You_have_written_X_posts_in_this_thread = // Warning: it is very important to include %u in the following sentences #if L==0 "Usted ha escrito %u mensajes en esta discusión"; // Necessita traduccio #elif L==1 "Sie haben %u Nachrichten in diesem Thread"; #elif L==2 "You have written %u posts in this thread"; #elif L==3 "Usted ha escrito %u mensajes en esta discusión"; #elif L==4 "Vous avez écrit %u messages dans ce fil"; #elif L==5 "Usted ha escrito %u mensajes en esta discusión"; // Okoteve traducción #elif L==6 "Hai scritto %u post in questa discussione"; #elif L==7 "You have written %u posts in this thread"; // Potrzebujesz tlumaczenie #elif L==8 "Você escreveu %u posts neste thread"; #endif const char *Txt_You_must_create_at_least_one_centre_before_creating_degrees = #if L==0 "Debe crear al menos un centro antes de crear titulaciones."; // Necessita traduccio #elif L==1 "You must create at least one centre before creating degrees."; // Übersetzung notwendig #elif L==2 "You must create at least one centre before creating degrees."; #elif L==3 "Debe crear al menos un centro antes de crear titulaciones."; #elif L==4 "You must create at least one centre before creating degrees."; // Besoin de traduction #elif L==5 "Debe crear al menos un centro antes de crear titulaciones."; // Okoteve traducción #elif L==6 "Devi creare almeno un centro prima di creare lauree."; #elif L==7 "You must create at least one centro before creating degrees."; // Potrzebujesz tlumaczenie #elif L==8 "You must create at least one centro before creating degrees."; // Necessita de tradução #endif const char *Txt_You_must_create_at_least_one_institution_before_creating_centres = #if L==0 "Debe crear al menos una institución" " antes de crear centros."; // Necessita traduccio #elif L==1 "You must create at least one institution" " before creating centres."; // Übersetzung notwendig #elif L==2 "You must create at least one institution" " before creating centres."; #elif L==3 "Debe crear al menos una institución" " antes de crear centros."; #elif L==4 "You must create at least one institution" " before creating centres."; // Besoin de traduction #elif L==5 "Debe crear al menos una institución" " antes de crear centros."; // Okoteve traducción #elif L==6 "Devi creare almeno un'istituzione" " prima di creare centri."; #elif L==7 "You must create at least one institution" " before creating centres."; // Potrzebujesz tlumaczenie #elif L==8 "You must create at least one institution" " before creating centres."; // Necessita de tradução #endif const char *Txt_You_must_create_at_least_one_type_of_degree_before_creating_degrees = #if L==0 "Debe crear al menos un tipo de titulación" " antes de crear titulaciones."; // Necessita traduccio #elif L==1 "You must create at least one type of degree" " before creating degrees."; // Übersetzung notwendig #elif L==2 "You must create at least one type of degree" " before creating degrees."; #elif L==3 "Debe crear al menos un tipo de titulación" " antes de crear titulaciones."; #elif L==4 "You must create at least one type of degree" " before creating degrees."; // Besoin de traduction #elif L==5 "Debe crear al menos un tipo de titulación" " antes de crear titulaciones."; // Okoteve traducción #elif L==6 "Devi creare almeno un tipo di laurea" " prima di creare lauree."; #elif L==7 "You must create at least one type of degree" " before creating degrees."; // Potrzebujesz tlumaczenie #elif L==8 "You must create at least one type of degree" " before creating degrees."; // Necessita de tradução #endif const char *Txt_You_must_enter_an_integer_value_as_the_correct_answer = #if L==0 "Debe escribir un valor entero como respuesta correcta."; // Necessita traduccio #elif L==1 "You must enter an integer value as the correct answer."; // Übersetzung notwendig #elif L==2 "You must enter an integer value as the correct answer."; #elif L==3 "Debe escribir un valor entero como respuesta correcta."; #elif L==4 "You must enter an integer value as the correct answer."; // Besoin de traduction #elif L==5 "Debe escribir un valor entero como respuesta correcta."; // Okoteve traducción #elif L==6 "Devi inserire un valore intero come risposta corretta."; #elif L==7 "You must enter an integer value as the correct answer."; // Potrzebujesz tlumaczenie #elif L==8 "You must enter an integer value as the correct answer."; // Necessita de tradução #endif const char *Txt_You_must_enter_the_range_of_floating_point_values_allowed_as_answer = #if L==0 "Debe escribir el intervalo de valores reales permitidos como respuesta."; // Necessita traduccio #elif L==1 "You must enter the range of floating point values allowed as answer."; // Übersetzung notwendig #elif L==2 "You must enter the range of floating point values allowed as answer."; #elif L==3 "Debe escribir el intervalo de valores reales permitidos como respuesta."; #elif L==4 "You must enter the range of floating point values allowed as answer."; // Besoin de traduction #elif L==5 "Debe escribir el intervalo de valores reales permitidos como respuesta."; // Okoteve traducción #elif L==6 "Devi inserire il range di valori reali permessi come risposta."; #elif L==7 "You must enter the range of floating point values allowed as answer."; // Potrzebujesz tlumaczenie #elif L==8 "You must enter the range of floating point values allowed as answer."; // Necessita de tradução #endif const char *Txt_You_must_enter_your_ID_or_your_nickname = #if L==0 "Debe escribir su ID (DNI/cédula) o su apodo."; // Necessita traduccio #elif L==1 "Bitte geben Sie Ihre Ausweis-Nr. oder Ihren Benutzernamen ein."; #elif L==2 "You must enter your ID or your nickname."; #elif L==3 "Debe escribir su ID (DNI/cédula) o su apodo."; #elif L==4 "Vous devez entrer votre numéro d'identité ou votre surnom."; #elif L==5 "Debe escribir su ID (DNI/cédula) o su apodo."; // Okoteve traducción #elif L==6 "Devi inserire il tuo numero di carta d'identità o il tuo nome utente."; #elif L==7 "You must enter your ID or your nickname."; // Potrzebujesz tlumaczenie #elif L==8 "Você deve digitar seu nº identif. ou seu alcunha."; #endif const char *Txt_You_must_mark_an_answer_as_correct = #if L==0 "Debe marcar alguna respuesta como correcta."; // Necessita traduccio #elif L==1 "You must mark an answer as correct."; // Need Übersetzung #elif L==2 "You must mark an answer as correct."; #elif L==3 "Debe marcar alguna respuesta como correcta."; #elif L==4 "You must mark an answer as correct."; // Besoin de traduction #elif L==5 "Debe marcar alguna respuesta como correcta."; // Okoteve traducción #elif L==6 "Devi segnare una risposta come corretta."; #elif L==7 "You must mark an answer as correct."; // Potrzebujesz tlumaczenie #elif L==8 "You must mark an answer as correct."; // Necessita de tradução #endif const char *Txt_You_must_select_a_T_F_answer = #if L==0 "Debe seleccionar una respuesta V o F."; // Necessita traduccio #elif L==1 "You must select a T/F answer."; // Need Übersetzung #elif L==2 "You must select a T/F answer."; #elif L==3 "Debe seleccionar una respuesta V o F."; #elif L==4 "You must select a T/F answer."; // Besoin de traduction #elif L==5 "Debe seleccionar una respuesta V o F."; // Okoteve traducción #elif L==6 "Devi selezionare una risposta V/F."; #elif L==7 "You must select a T/F answer."; // Potrzebujesz tlumaczenie #elif L==8 "You must select a T/F answer."; // Necessita de tradução #endif const char *Txt_You_must_select_one_ore_more_recipients = #if L==0 "Debe seleccionar uno o más destinatarios."; // Necessita traduccio #elif L==1 "Es muss mindestens ein Empfänger angegeben werden."; #elif L==2 "You must select one or more recipients."; #elif L==3 "Debe seleccionar uno o más destinatarios."; #elif L==4 "You must select one or more recipients."; // Besoin de traduction #elif L==5 "Debe seleccionar uno o más destinatarios."; // Okoteve traducción #elif L==6 "Devi selezionare uno o più destinatari."; #elif L==7 "You must select one or more recipients."; // Potrzebujesz tlumaczenie #elif L==8 "You must select one or more recipients."; // Necessita de tradução #endif const char *Txt_You_must_select_one_ore_more_students = #if L==0 "Debe seleccionar uno o más estudiantes."; // Necessita traduccio #elif L==1 "Es muss mindestens ein Student ausgewählt werden."; #elif L==2 "You must select one or more students."; #elif L==3 "Debe seleccionar uno o más estudiantes."; #elif L==4 "You must select one or more students."; // Besoin de traduction #elif L==5 "Debe seleccionar uno o más estudiantes."; // Okoteve traducción #elif L==6 "Devi selezionare uno o più studenti."; #elif L==7 "You must select one or more students."; // Potrzebujesz tlumaczenie #elif L==8 "You must select one or more students."; // Necessita de tradução #endif const char *Txt_You_must_select_one_ore_more_tags = #if L==0 "Debe seleccionar uno o más descriptores."; // Necessita traduccio #elif L==1 "Es muss mindestens ein Tag ausgewählt werden."; #elif L==2 "You must select one or more tags."; #elif L==3 "Debe seleccionar uno o más descriptores."; #elif L==4 "You must select one or more tags."; // Besoin de traduction #elif L==5 "Debe seleccionar uno o más descriptores."; // Okoteve traducción #elif L==6 "Devi selezionare una o più etichette."; #elif L==7 "You must select one or more tags."; // Potrzebujesz tlumaczenie #elif L==8 "You must select one or more tags."; // Necessita de tradução #endif const char *Txt_You_must_select_one_ore_more_teachers = #if L==0 "Debe seleccionar uno o más profesores."; // Necessita traduccio #elif L==1 "Es muss mindestens ein Lehrer ausgewählt werden."; #elif L==2 "You must select one or more teachers."; #elif L==3 "Debe seleccionar uno o más profesores."; #elif L==4 "You must select one or more teachers."; // Besoin de traduction #elif L==5 "Debe seleccionar uno o más profesores."; // Okoteve traducción #elif L==6 "Devi selezionare uno o più professori."; #elif L==7 "You must select one or more teachers."; // Potrzebujesz tlumaczenie #elif L==8 "You must select one or more teachers."; // Necessita de tradução #endif const char *Txt_You_must_select_one_ore_more_types_of_answer = #if L==0 "Debe seleccionar uno o más tipos de respuesta."; // Necessita traduccio #elif L==1 "Es muss mindestens ein Antworttyp ausgewählt werden."; #elif L==2 "You must select one or more types of answer."; #elif L==3 "Debe seleccionar uno o más tipos de respuesta."; #elif L==4 "You must select one or more types of answer."; // Besoin de traduction #elif L==5 "Debe seleccionar uno o más tipos de respuesta."; // Okoteve traducción #elif L==6 "Devi selezionare uno o più tipi di risposta."; #elif L==7 "You must select one or more types of answer."; // Potrzebujesz tlumaczenie #elif L==8 "You must select one or more types of answer."; // Necessita de tradução #endif const char *Txt_You_must_select_one_ore_more_users = #if L==0 "Debe seleccionar uno o más usuarios."; // Necessita traduccio #elif L==1 "Es muss mindestens ein Benutzer ausgewählt werden."; #elif L==2 "You must select one or more users."; #elif L==3 "Debe seleccionar uno o más usuarios."; #elif L==4 "You must select one or more users."; // Besoin de traduction #elif L==5 "Debe seleccionar uno o más usuarios."; // Okoteve traducción #elif L==6 "Devi selezionare uno o più utenti."; #elif L==7 "You must select one or more users."; // Potrzebujesz tlumaczenie #elif L==8 "You must select one or more users."; // Necessita de tradução #endif const char *Txt_You_must_send_your_photo_because_ = #if L==0 "Tiene que enviar su fotografía," " ya que ha agotado el número de accesos" " permitido sin fotografía."; // Necessita traduccio #elif L==1 "You must send your photo," " because you have exhausted the number of clicks" " allowed without photo."; // Need Übersetzung #elif L==2 "You must send your photo," " because you have exhausted the number of clicks" " allowed without photo."; #elif L==3 "Tiene que enviar su fotografía," " ya que ha agotado el número de accesos" " permitido sin fotografía."; #elif L==4 "You must send your photo," " because you have exhausted the number of clicks" " allowed without photo."; // Besoin de traduction #elif L==5 "Tiene que enviar su fotografía," " ya que ha agotado el número de accesos" " permitido sin fotografía."; // Okoteve traducción #elif L==6 "Devi inviare la tua foto," " perchè hai esaurito il numero di accessi" " permessi senza foto."; #elif L==7 "You must send your photo," " because you have exhausted the number of clicks" " allowed without photo."; // Potrzebujesz tlumaczenie #elif L==8 "You must send your photo," " because you have exhausted the number of clicks" " allowed without photo."; // Necessita de tradução #endif const char *Txt_You_must_specify_in_step_3_the_action_to_perform = #if L==0 "S'ha d'especificar en el pas 3 l'acció a realitzar."; #elif L==1 "Sie müssen in Schritt 3 die auszuführende Aktion festzulegen."; #elif L==2 "You must specify in step 3 the action to perform."; #elif L==3 "Debe especificar en el paso 3 la acción a realizar."; #elif L==4 "Vous devez spécifier à l'étape 3 l'action à effectuer."; #elif L==5 "Debe especificar en el paso 3 la acción a realizar."; // Okoteve traducción #elif L==6 "È necessario specificare al punto 3 l'azione da eseguire."; #elif L==7 "You must specify in step 3 the action to perform."; // Potrzebujesz tlumaczenie #elif L==8 "Você deve especificar no passo 3 a ação a ser executada."; #endif const char *Txt_You_must_specify_the_image_of_the_new_banner = #if L==0 "Debe especificar la imagen" " del nuevo banner."; // Necessita traduccio #elif L==1 "You must specify the image" " of the new banner."; // Need Übersetzung #elif L==2 "You must specify the image" " of the new banner."; #elif L==3 "Debe especificar la imagen" " del nuevo banner."; #elif L==4 "You must specify the image" " of the new banner."; // Besoin de traduction #elif L==5 "Debe especificar la imagen" " del nuevo banner."; // Okoteve traducción #elif L==6 "Devi specificare l'image" " del nuovo banner."; #elif L==7 "You must specify the image" " of the new banner."; // Potrzebujesz tlumaczenie #elif L==8 "You must specify the image" " of the new banner."; // Necessita de tradução #endif const char *Txt_You_must_specify_the_logo_the_application_key_the_URL_and_the_IP_address_of_the_new_plugin = #if L==0 "Debe especificar el logo, la clave de aplicación," " el URL y la IP del nuevo complemento."; // Necessita traduccio #elif L==1 "You must specify the logo, the application key," " the URL and the IP address of the new plugin."; // Need Übersetzung #elif L==2 "You must specify the logo, the application key," " the URL and the IP address of the new plugin."; #elif L==3 "Debe especificar el logo, la clave de aplicación," " el URL y la IP del nuevo complemento."; #elif L==4 "You must specify the logo, the application key," " the URL and the IP address of the new plugin."; // Besoin de traduction #elif L==5 "Debe especificar el logo, la clave de aplicación," " el URL y la IP del nuevo complemento."; // Okoteve traducción #elif L==6 "Devi specificare il logo, il codice di applicazione," " l'URL e l'indirizzo IP del nuovo plugin."; #elif L==7 "You must specify the logo, the application key," " the URL and the IP address of the new plugin."; // Potrzebujesz tlumaczenie #elif L==8 "You must specify the logo, the application key," " the URL and the IP address of the new plugin."; // Necessita de tradução #endif const char *Txt_You_must_specify_the_numerical_code_of_the_new_country = #if L==0 "Debe especificar el código numérico ISO 3166-1 del nuevo país."; // Necessita traduccio #elif L==1 "You must specify the ISO 3166-1 numerical code of the new country."; // Need Übersetzung #elif L==2 "You must specify the ISO 3166-1 numerical code of the new country."; #elif L==3 "Debe especificar el código numérico ISO 3166-1 del nuevo país."; #elif L==4 "You must specify the ISO 3166-1 numerical code of the new country."; // Besoin de traduction #elif L==5 "Debe especificar el código numérico ISO 3166-1 del nuevo país."; // Okoteve traducción #elif L==6 "Devi specificare il codice numerico ISO 3166-1 del nuovo paese."; #elif L==7 "You must specify the ISO 3166-1 numerical code of the new country."; // Potrzebujesz tlumaczenie #elif L==8 "You must specify the ISO 3166-1 numerical code of the new country."; // Necessita de tradução #endif const char *Txt_You_must_specify_the_name_and_the_description_of_the_new_plugin = #if L==0 "Debe especificar el nombre y la descripción del nuevo complemento."; // Necessita traduccio #elif L==1 "You must specify the name and the description of the new plugin."; // Need Übersetzung #elif L==2 "You must specify the name and the description of the new plugin."; #elif L==3 "Debe especificar el nombre y la descripción del nuevo complemento."; #elif L==4 "You must specify the name and the description of the new plugin."; // Besoin de traduction #elif L==5 "Debe especificar el nombre y la descripción del nuevo complemento."; // Okoteve traducción #elif L==6 "Devi specificare il nome e la descrizione del nuovo plugin."; #elif L==7 "You must specify the name and the description of the new plugin."; // Potrzebujesz tlumaczenie #elif L==8 "You must specify the name and the description of the new plugin."; // Necessita de tradução #endif const char *Txt_You_must_specify_the_name_of_the_new_country_in_all_languages = #if L==0 "Debe especificar el nombre del nuevo país en todos los idiomas."; // Necessita traduccio #elif L==1 "You must specify the name of the new country in all languages."; // Need Übersetzung #elif L==2 "You must specify the name of the new country in all languages."; #elif L==3 "Debe especificar el nombre del nuevo país en todos los idiomas."; #elif L==4 "You must specify the name of the new country in all languages."; // Besoin de traduction #elif L==5 "Debe especificar el nombre del nuevo país en todos los idiomas."; // Okoteve traducción #elif L==6 "Devi specificare il nome del nuovo paese in tutte le lingue."; #elif L==7 "You must specify the name of the new country in all languages."; // Potrzebujesz tlumaczenie #elif L==8 "You must specify the name of the new country in all languages."; // Necessita de tradução #endif const char *Txt_You_must_specify_the_name_of_the_new_group = #if L==0 "Debe especificar el nombre del nuevo grupo."; // Necessita traduccio #elif L==1 "You must specify the name of the new group."; // Need Übersetzung #elif L==2 "You must specify the name of the new group."; #elif L==3 "Debe especificar el nombre del nuevo grupo."; #elif L==4 "You must specify the name of the new group."; // Besoin de traduction #elif L==5 "Debe especificar el nombre del nuevo grupo."; // Okoteve traducción #elif L==6 "Devi specificare il nome del nuovo gruppo."; #elif L==7 "You must specify the name of the new group."; // Potrzebujesz tlumaczenie #elif L==8 "You must specify the name of the new group."; // Necessita de tradução #endif const char *Txt_You_must_specify_the_name_of_the_new_holiday = #if L==0 "Debe especificar el nombre de la nueva festividad."; // Necessita traduccio #elif L==1 "You must specify the name of the new holiday."; // Need Übersetzung #elif L==2 "You must specify the name of the new holiday."; #elif L==3 "Debe especificar el nombre de la nueva festividad."; #elif L==4 "You must specify the name of the new holiday."; // Besoin de traduction #elif L==5 "Debe especificar el nombre de la nueva festividad."; // Okoteve traducción #elif L==6 "Devi specificare il nome della nuova festività."; #elif L==7 "You must specify the name of the new holiday."; // Potrzebujesz tlumaczenie #elif L==8 "You must specify the name of the new holiday."; // Necessita de tradução #endif const char *Txt_You_must_specify_the_name_of_the_new_record_field = #if L==0 "Debe especificar el nombre del nuevo campo de ficha."; // Necessita traduccio #elif L==1 "You must specify the name of the new record field."; // Need Übersetzung #elif L==2 "You must specify the name of the new record field."; #elif L==3 "Debe especificar el nombre del nuevo campo de ficha."; #elif L==4 "You must specify the name of the new record field."; // Besoin de traduction #elif L==5 "Debe especificar el nombre del nuevo campo de ficha."; // Okoteve traducción #elif L==6 "Devi specificare il nome del nuovo campo di scheda."; #elif L==7 "You must specify the name of the new record field."; // Potrzebujesz tlumaczenie #elif L==8 "You must specify the name of the new record field."; // Necessita de tradução #endif const char *Txt_You_must_specify_the_name_of_the_new_type_of_degree = #if L==0 "Debe especificar el nombre del nuevo tipo de titulación."; // Necessita traduccio #elif L==1 "You must specify the name of the new type of degree."; // Need Übersetzung #elif L==2 "You must specify the name of the new type of degree."; #elif L==3 "Debe especificar el nombre del nuevo tipo de titulación."; #elif L==4 "You must specify the name of the new type of degree."; // Besoin de traduction #elif L==5 "Debe especificar el nombre del nuevo tipo de titulación."; // Okoteve traducción #elif L==6 "Devi specificare il nome del nuovo tipo di laurea."; #elif L==7 "You must specify the name of the new type of degree."; // Potrzebujesz tlumaczenie #elif L==8 "You must specify the name of the new type of degree."; // Necessita de tradução #endif const char *Txt_You_must_specify_the_name_of_the_new_type_of_group = #if L==0 "Debe especificar el nombre del nuevo tipo de grupo."; // Necessita traduccio #elif L==1 "You must specify the name of the new type of group."; // Need Übersetzung #elif L==2 "You must specify the name of the new type of group."; #elif L==3 "Debe especificar el nombre del nuevo tipo de grupo."; #elif L==4 "You must specify the name of the new type of group."; // Besoin de traduction #elif L==5 "Debe especificar el nombre del nuevo tipo de grupo."; // Okoteve traducción #elif L==6 "Devi specificare il nome del nuovo tipo di gruppo."; #elif L==7 "You must specify the name of the new type of group."; // Potrzebujesz tlumaczenie #elif L==8 "You must specify the name of the new type of group."; // Necessita de tradução #endif const char *Txt_You_must_specify_the_short_name_and_the_full_name_of_the_new_banner = #if L==0 "Debe especificar el nombre breve y el nombre completo" " del nuevo banner."; // Necessita traduccio #elif L==1 "You must specify the short name and the full name" " of the new banner."; // Need Übersetzung #elif L==2 "You must specify the short name and the full name" " of the new banner."; #elif L==3 "Debe especificar el nombre breve y el nombre completo" " del nuevo banner."; #elif L==4 "You must specify the short name and the full name" " of the new banner."; // Besoin de traduction #elif L==5 "Debe especificar el nombre breve y el nombre completo" " del nuevo banner."; // Okoteve traducción #elif L==6 "Devi specificare il nome breve e completo" " del nuovo banner."; #elif L==7 "You must specify the short name and the full name" " of the new banner."; // Potrzebujesz tlumaczenie #elif L==8 "You must specify the short name and the full name" " of the new banner."; // Necessita de tradução #endif const char *Txt_You_must_specify_the_short_name_and_the_full_name_of_the_new_centre = #if L==0 "Debe especificar el nombre breve y el nombre completo" " del nuevo centro."; // Necessita traduccio #elif L==1 "You must specify the short name and the full name" " of the new centre."; // Need Übersetzung #elif L==2 "You must specify the short name and the full name" " of the new centre."; #elif L==3 "Debe especificar el nombre breve y el nombre completo" " del nuevo centro."; #elif L==4 "You must specify the short name and the full name" " of the new centre."; // Besoin de traduction #elif L==5 "Debe especificar el nombre breve y el nombre completo" " del nuevo centro."; // Okoteve traducción #elif L==6 "Devi specificare il nome breve e completo" " del nuovo centro."; #elif L==7 "You must specify the short name and the full name" " of the new centre."; // Potrzebujesz tlumaczenie #elif L==8 "You must specify the short name and the full name" " of the new centre."; // Necessita de tradução #endif const char *Txt_You_must_specify_the_short_name_and_the_full_name_of_the_new_course = #if L==0 "Debe especificar el nombre breve y el nombre completo" " de la nueva asignatura."; // Necessita traduccio #elif L==1 "You must specify the short name and the full name" " of the new course."; // Need Übersetzung #elif L==2 "You must specify the short name and the full name" " of the new course."; #elif L==3 "Debe especificar el nombre breve y el nombre completo" " de la nueva asignatura."; #elif L==4 "You must specify the short name and the full name" " of the new course."; // Besoin de traduction #elif L==5 "Debe especificar el nombre breve y el nombre completo" " de la nueva asignatura."; // Okoteve traducción #elif L==6 "Devi specificare il nome breve e completo" " del nuovo corso."; #elif L==7 "You must specify the short name and the full name" " of the new course."; // Potrzebujesz tlumaczenie #elif L==8 "You must specify the short name and the full name" " of the new course."; // Necessita de tradução #endif const char *Txt_You_must_specify_the_short_name_and_the_full_name_of_the_new_degree = #if L==0 "Debe especificar el nombre breve y el nombre completo" " de la nueva titulación."; // Necessita traduccio #elif L==1 "You must specify the short name and the full name" " of the new degree."; // Need Übersetzung #elif L==2 "You must specify the short name and the full name" " of the new degree."; #elif L==3 "Debe especificar el nombre breve y el nombre completo" " de la nueva titulación."; #elif L==4 "You must specify the short name and the full name" " of the new degree."; // Besoin de traduction #elif L==5 "Debe especificar el nombre breve y el nombre completo" " de la nueva titulación."; // Okoteve traducción #elif L==6 "Devi specificare il nome breve e completo" " della nuova laurea."; #elif L==7 "You must specify the short name and the full name" " of the new degree."; // Potrzebujesz tlumaczenie #elif L==8 "You must specify the short name and the full name" " of the new degree."; // Necessita de tradução #endif const char *Txt_You_must_specify_the_short_name_and_the_full_name_of_the_new_department = #if L==0 "Debe especificar el nombre breve y el nombre completo" " del nuevo departamento."; // Necessita traduccio #elif L==1 "You must specify the short name and the full name" " of the new department."; // Need Übersetzung #elif L==2 "You must specify the short name and the full name" " of the new department."; #elif L==3 "Debe especificar el nombre breve y el nombre completo" " del nuevo departamento."; #elif L==4 "You must specify the short name and the full name" " of the new department."; // Besoin de traduction #elif L==5 "Debe especificar el nombre breve y el nombre completo" " del nuevo departamento."; // Okoteve traducción #elif L==6 "Devi specificare il nome breve e completo" " del nuovo dipartimento."; #elif L==7 "You must specify the short name and the full name" " of the new department."; // Potrzebujesz tlumaczenie #elif L==8 "You must specify the short name and the full name" " of the new department."; // Necessita de tradução #endif const char *Txt_You_must_specify_the_short_name_and_the_full_name_of_the_new_institution = #if L==0 "Debe especificar el nombre breve y el nombre completo" " de la nueva institución."; // Necessita traduccio #elif L==1 "You must specify the short name and the full name" " of the new institution."; // Need Übersetzung #elif L==2 "You must specify the short name and the full name" " of the new institution."; #elif L==3 "Debe especificar el nombre breve y el nombre completo" " de la nueva institución."; #elif L==4 "You must specify the short name and the full name" " of the new institution."; // Besoin de traduction #elif L==5 "Debe especificar el nombre breve y el nombre completo" " de la nueva institución."; // Okoteve traducción #elif L==6 "Devi specificare il nome breve e completo" " della nuova instituzione."; #elif L==7 "You must specify the short name and the full name" " of the new institution."; // Potrzebujesz tlumaczenie #elif L==8 "You must specify the short name and the full name" " of the new institution."; // Necessita de tradução #endif const char *Txt_You_must_specify_the_short_name_and_the_full_name_of_the_new_link = #if L==0 "Debe especificar el nombre breve y el nombre completo" " del nuevo enlace."; // Necessita traduccio #elif L==1 "You must specify the short name and the full name" " of the new link."; // Need Übersetzung #elif L==2 "You must specify the short name and the full name" " of the new link."; #elif L==3 "Debe especificar el nombre breve y el nombre completo" " del nuevo enlace."; #elif L==4 "You must specify the short name and the full name" " of the new link."; // Besoin de traduction #elif L==5 "Debe especificar el nombre breve y el nombre completo" " del nuevo enlace."; // Okoteve traducción #elif L==6 "Devi specificare il nome breve e completo" " del nuovo link."; #elif L==7 "You must specify the short name and the full name" " of the new link."; // Potrzebujesz tlumaczenie #elif L==8 "You must specify the short name and the full name" " of the new link."; // Necessita de tradução #endif const char *Txt_You_must_specify_the_short_name_and_the_full_name_of_the_new_mail_domain = #if L==0 "Debe especificar el nombre breve y el nombre completo" " del nuevo dominio de correo."; // Necessita traduccio #elif L==1 "You must specify the short name and the full name" " of the new mail domain."; // Need Übersetzung #elif L==2 "You must specify the short name and the full name" " of the new mail domain."; #elif L==3 "Debe especificar el nombre breve y el nombre completo" " del nuevo dominio de correo."; #elif L==4 "You must specify the short name and the full name" " of the new mail domain."; // Besoin de traduction #elif L==5 "Debe especificar el nombre breve y el nombre completo" " del nuevo dominio de correo."; // Okoteve traducción #elif L==6 "Devi specificare il nome breve e completo" " del nuovo campo mail."; #elif L==7 "You must specify the short name and the full name" " of the new mail domain."; // Potrzebujesz tlumaczenie #elif L==8 "You must specify the short name and the full name" " of the new mail domain."; // Necessita de tradução #endif const char *Txt_You_must_specify_the_short_name_and_the_full_name_of_the_new_place = #if L==0 "Debe especificar el nombre breve y el nombre completo" " del nuevo lugar."; // Necessita traduccio #elif L==1 "You must specify the short name and the full name" " of the new place."; // Need Übersetzung #elif L==2 "You must specify the short name and the full name" " of the new place."; #elif L==3 "Debe especificar el nombre breve y el nombre completo" " del nuevo lugar."; #elif L==4 "You must specify the short name and the full name" " of the new place."; // Besoin de traduction #elif L==5 "Debe especificar el nombre breve y el nombre completo" " del nuevo lugar."; // Okoteve traducción #elif L==6 "Devi specificare il nome breve e completo" " del nuovo luogo."; #elif L==7 "You must specify the short name and the full name" " of the new place."; // Potrzebujesz tlumaczenie #elif L==8 "You must specify the short name and the full name" " of the new place."; // Necessita de tradução #endif const char *Txt_You_must_specify_the_title_of_the_assignment = #if L==0 "Debe especificar el título de la actividad."; // Necessita traduccio #elif L==1 "Die Aufgabe muss angegeben werden."; #elif L==2 "You must specify the title of the assignment."; #elif L==3 "Debe especificar el título de la actividad."; #elif L==4 "Vous devez spécifier le titre de l'activité."; #elif L==5 "Debe especificar el título de la actividad."; // Okoteve traducción #elif L==6 "È necessario specificare il titolo dell'attività."; #elif L==7 "You must specify the title of the assignment."; // Potrzebujesz tlumaczenie #elif L==8 "Você deve especificar o título da atividade."; #endif const char *Txt_You_must_specify_the_title_of_the_event = #if L==0 "Debe especificar el título del evento."; // Necessita traduccio #elif L==1 "Der Ereignis muss angegeben werden."; #elif L==2 "You must specify the title of the event."; #elif L==3 "Debe especificar el título del evento."; #elif L==4 "Vous devez spécifier le titre du événement."; #elif L==5 "Debe especificar el título del evento."; // Okoteve traducción #elif L==6 "È necessario specificare il titolo del evento."; #elif L==7 "You must specify the title of the event."; // Potrzebujesz tlumaczenie #elif L==8 "Você deve especificar o título do evento."; #endif const char *Txt_You_must_specify_the_title_of_the_survey = #if L==0 "Debe especificar el título de la encuesta."; // Necessita traduccio #elif L==1 "Die Umfrage muss angegeben werden."; #elif L==2 "You must specify the title of the survey."; #elif L==3 "Debe especificar el título de la encuesta."; #elif L==4 "Vous devez spécifier le titre du sondage."; #elif L==5 "Debe especificar el título de la encuesta."; // Okoteve traducción #elif L==6 "È necessario specificare il titolo del sondaggio."; #elif L==7 "You must specify the title of the survey."; // Potrzebujesz tlumaczenie #elif L==8 "Você deve especificar o título do inquérito."; #endif const char *Txt_You_must_specify_the_URL_of_the_new_banner = #if L==0 "Debe especificar el URL del nuevo banner."; // Necessita traduccio #elif L==1 "You must specify the URL of the new banner."; // Need Übersetzung #elif L==2 "You must specify the URL of the new banner."; #elif L==3 "Debe especificar el URL del nuevo banner."; #elif L==4 "You must specify the URL of the new banner."; // Besoin de traduction #elif L==5 "Debe especificar el URL del nuevo banner."; // Okoteve traducción #elif L==6 "Devi specificare l'URL del nuovo banner."; #elif L==7 "You must specify the URL of the new banner."; // Potrzebujesz tlumaczenie #elif L==8 "You must specify the URL of the new banner."; // Necessita de tradução #endif const char *Txt_You_must_specify_the_URL_of_the_new_link = #if L==0 "Debe especificar el URL del nuevo enlace."; // Necessita traduccio #elif L==1 "You must specify the URL of the new link."; // Need Übersetzung #elif L==2 "You must specify the URL of the new link."; #elif L==3 "Debe especificar el URL del nuevo enlace."; #elif L==4 "You must specify the URL of the new link."; // Besoin de traduction #elif L==5 "Debe especificar el URL del nuevo enlace."; // Okoteve traducción #elif L==6 "Devi specificare l'URL del nuovo link."; #elif L==7 "You must specify the URL of the new link."; // Potrzebujesz tlumaczenie #elif L==8 "You must specify the URL of the new link."; // Necessita de tradução #endif const char *Txt_You_must_specify_the_web_address_of_the_new_centre = #if L==0 "Debe especificar la dirección web" " del nuevo centro."; // Necessita traduccio #elif L==1 "You must specify the web address" " of the new centre."; // Need Übersetzung #elif L==2 "You must specify the web address" " of the new centre."; #elif L==3 "Debe especificar la dirección web" " del nuevo centro."; #elif L==4 "You must specify the web address" " of the new centre."; // Besoin de traduction #elif L==5 "Debe especificar la dirección web" " del nuevo centro."; // Okoteve traducción #elif L==6 "Devi specificare l'indirizzo web" " del nuovo centro."; #elif L==7 "You must specify the web address" " of the new centre."; // Potrzebujesz tlumaczenie #elif L==8 "You must specify the web address" " of the new centre."; // Necessita de tradução #endif const char *Txt_You_must_specify_the_web_address_of_the_new_degree = #if L==0 "Debe especificar la dirección web" " de la nueva titulación."; // Necessita traduccio #elif L==1 "You must specify the web address" " of the new degree."; // Need Übersetzung #elif L==2 "You must specify the web address" " of the new degree."; #elif L==3 "Debe especificar la dirección web" " de la nueva titulación."; #elif L==4 "You must specify the web address" " of the new degree."; // Besoin de traduction #elif L==5 "Debe especificar la dirección web" " de la nueva titulación."; // Okoteve traducción #elif L==6 "Devi specificare l'indirizzo web" " della nuova laurea."; #elif L==7 "You must specify the web address" " of the new degree."; // Potrzebujesz tlumaczenie #elif L==8 "You must specify the web address" " of the new degree."; // Necessita de tradução #endif const char *Txt_You_must_specify_the_web_address_of_the_new_department = #if L==0 "Debe especificar la dirección web" " del nuevo departamento."; // Necessita traduccio #elif L==1 "You must specify the web address" " of the new department."; // Need Übersetzung #elif L==2 "You must specify the web address" " of the new department."; #elif L==3 "Debe especificar la dirección web" " del nuevo departamento."; #elif L==4 "You must specify the web address" " of the new department."; // Besoin de traduction #elif L==5 "Debe especificar la dirección web" " del nuevo departamento."; // Okoteve traducción #elif L==6 "Devi specificare l'indirizzo web" " del nuovo dipartimento."; #elif L==7 "You must specify the web address" " of the new department."; // Potrzebujesz tlumaczenie #elif L==8 "You must specify the web address" " of the new department."; // Necessita de tradução #endif const char *Txt_You_must_specify_the_web_address_of_the_new_institution = #if L==0 "Debe especificar la dirección web" " de la nueva institución."; // Necessita traduccio #elif L==1 "You must specify the web address" " of the new institution."; // Need Übersetzung #elif L==2 "You must specify the web address" " of the new institution."; #elif L==3 "Debe especificar la dirección web" " de la nueva institución."; #elif L==4 "You must specify the web address" " of the new institution."; // Besoin de traduction #elif L==5 "Debe especificar la dirección web" " de la nueva institución."; // Okoteve traducción #elif L==6 "Devi specificare l'indirizzo web" " della nuova istituzione."; #elif L==7 "You must specify the web address" " of the new institution."; // Potrzebujesz tlumaczenie #elif L==8 "You must specify the web address" " of the new institution."; // Necessita de tradução #endif const char *Txt_You_must_type_at_least_one_tag_for_the_question = #if L==0 "Debe escribir al menos un descriptor para la pregunta."; // Necessita traduccio #elif L==1 "You must type at least one tag for the question."; // Need Übersetzung #elif L==2 "You must type at least one tag for the question."; #elif L==3 "Debe escribir al menos un descriptor para la pregunta."; #elif L==4 "You must type at least one tag for the question."; // Besoin de traduction #elif L==5 "Debe escribir al menos un descriptor para la pregunta."; // Okoteve traducción #elif L==6 "Devi scrivere almeno un'etichetta per la domanda."; #elif L==7 "You must type at least one tag for the question."; // Potrzebujesz tlumaczenie #elif L==8 "You must type at least one tag for the question."; // Necessita de tradução #endif const char *Txt_You_must_type_at_least_the_first_answer = #if L==0 "Debe escribir al menos la primera respuesta."; // Necessita traduccio #elif L==1 "You must type at least the first answer."; // Need Übersetzung #elif L==2 "You must type at least the first answer."; #elif L==3 "Debe escribir al menos la primera respuesta."; #elif L==4 "You must type at least the first answer."; // Besoin de traduction #elif L==5 "Debe escribir al menos la primera respuesta."; // Okoteve traducción #elif L==6 "Devi scrivere almeno la prima risposta."; #elif L==7 "You must type at least the first answer."; // Potrzebujesz tlumaczenie #elif L==8 "You must type at least the first answer."; // Necessita de tradução #endif const char *Txt_You_must_type_at_least_the_first_two_answers = #if L==0 "Debe escribir al menos las dos primeras respuestas."; // Necessita traduccio #elif L==1 "You must type at least the first two answers."; // Need Übersetzung #elif L==2 "You must type at least the first two answers."; #elif L==3 "Debe escribir al menos las dos primeras respuestas."; #elif L==4 "You must type at least the first two answers."; // Besoin de traduction #elif L==5 "Debe escribir al menos las dos primeras respuestas."; // Okoteve traducción #elif L==6 "Devi scrivere almeno le prime due risposte."; #elif L==7 "You must type at least the first two answers."; // Potrzebujesz tlumaczenie #elif L==8 "You must type at least the first two answers."; // Necessita de tradução #endif const char *Txt_You_must_type_the_stem_of_the_question = #if L==0 "Debe escribir el enunciado de la pregunta."; // Necessita traduccio #elif L==1 "You must type the stem of the question."; // Need Übersetzung #elif L==2 "You must type the stem of the question."; #elif L==3 "Debe escribir el enunciado de la pregunta."; #elif L==4 "You must type the stem of the question."; // Besoin de traduction #elif L==5 "Debe escribir el enunciado de la pregunta."; // Okoteve traducción #elif L==6 "Devi scrivere l'enunciato della domanda."; #elif L==7 "You must type the stem of the question."; // Potrzebujesz tlumaczenie #elif L==8 "You must type the stem of the question."; // Necessita de tradução #endif const char *Txt_You_need_an_XML_file_containing_a_list_of_questions_to_import = #if L==0 "Es necesario un archivo XML" " que contenga una lista de preguntas a importar."; // Necessita traduccio #elif L==1 "You need an XML file" " containing a list of questions to import."; // Need Übersetzung #elif L==2 "You need an XML file" " containing a list of questions to import."; #elif L==3 "Es necesario un archivo XML" " que contenga una lista de preguntas a importar."; #elif L==4 "You need an XML file" " containing a list of questions to import."; // Besoin de traduction #elif L==5 "Es necesario un archivo XML" " que contenga una lista de preguntas a importar."; // Okoteve traducción #elif L==6 "You need an XML file" " containing a list of questions to import."; // Bisogno di traduzione #elif L==7 "You need an XML file" " containing a list of questions to import."; // Potrzebujesz tlumaczenie #elif L==8 "You need an XML file" " containing a list of questions to import."; // Necessita de tradução #endif const char *Txt_You_should_read_the_following_information_on_the_course_X = // Warning: it is very important to include %s in the following sentences #if L==0 "Usted debe leer la siguiente información" " sobre la asignatura %s:"; // Necessita traduccio #elif L==1 "You should read the following information" " on the course %s:"; // Need Übersetzung #elif L==2 "You should read the following information" " on the course %s:"; #elif L==3 "Usted debe leer la siguiente información" " sobre la asignatura %s:"; #elif L==4 "You should read the following information" " on the course %s:"; // Besoin de traduction #elif L==5 "Usted debe leer la siguiente información" " sobre la asignatura %s:"; // Okoteve traducción #elif L==6 "Dovresti leggere le seguenti informazioni" " sul corso %s:"; #elif L==7 "You should read the following information" " on the course %s:"; // Potrzebujesz tlumaczenie #elif L==8 "You should read the following information" " on the course %s:"; // Necessita de tradução #endif const char *Txt_You_were_already_enrolled_as_X_in_the_course_Y = // Warning: it is very important to include two %s in the following sentences #if L==0 "Usted ya estaba inscrito/a como %s" " en la asignatura %s."; // Necessita traduccio #elif L==1 "You were already enrolled as %s" " in the course %s."; // Übersetzung notwendig #elif L==2 "You were already enrolled as %s" " in the course %s."; #elif L==3 "Usted ya estaba inscrito/a como %s" " en la asignatura %s."; #elif L==4 "You were already enrolled as %s" " in the course %s."; // Besoin de traduction #elif L==5 "Usted ya estaba inscrito/a como %s" " en la asignatura %s."; // Okoteve traducción #elif L==6 "You were already enrolled as %s" " in the course %s."; // Bisogno di traduzione #elif L==7 "You were already enrolled as %s" " in the course %s."; // Potrzebujesz tlumaczenie #elif L==8 "You were already enrolled as %s" " in the course %s."; // Necessita de tradução #endif const char *Txt_Your_browser_does_not_support_iframes = #if L==0 "Su navegador no admite iframes."; // Necessita traduccio #elif L==1 "Your browser does not support iframes."; // Need Übersetzung #elif L==2 "Your browser does not support iframes."; #elif L==3 "Su navegador no admite iframes."; #elif L==4 "Your browser does not support iframes."; // Besoin de traduction #elif L==5 "Su navegador no admite iframes."; // Okoteve traducción #elif L==6 "Il tuo browser non supporta iframes."; #elif L==7 "Your browser does not support iframes."; // Potrzebujesz tlumaczenie #elif L==8 "Your browser does not support iframes."; // Necessita de tradução #endif const char *Txt_Your_comment_has_been_updated = #if L==0 "El seu comentari ha estat actualitzat."; #elif L==1 "Ihr Kommentar wurde aktualisiert."; #elif L==2 "Your comment has been updated."; #elif L==3 "Su comentario ha sido actualizado."; #elif L==4 "Votre commentaire a été mis à jour."; #elif L==5 "Su comentario ha sido actualizado."; // Okoteve traducción #elif L==6 "Il tuo commento è stato aggiornato."; #elif L==7 "Komentarz został zaktualizowany."; #elif L==8 "O seu comentário foi atualizado."; #endif const char *Txt_Your_email_address_X_has_been_registered_successfully = // Warning: it is very important to include %s in the following sentences #if L==0 "Su correo electrónico %s" " se ha registrado correctamente."; // Necessita traduccio #elif L==1 "Your e-mail address %s" " has been registered successfully."; // Need Übersetzung #elif L==2 "Your e-mail address %s" " has been registered successfully."; #elif L==3 "Su correo electrónico %s" " se ha registrado correctamente."; #elif L==4 "Your e-mail address %s" " has been registered successfully."; // Besoin de traduction #elif L==5 "Su correo electrónico %s" " se ha registrado correctamente."; // Okoteve traducción #elif L==6 "Il tuo e-mail %s" " è stato registrato con successo."; #elif L==7 "Your e-mail address %s" " has been registered successfully."; // Potrzebujesz tlumaczenie #elif L==8 "Your e-mail address %s" " has been registered successfully."; // Necessita de tradução #endif const char *Txt_Your_language_has_changed_to_LANGUAGE = #if L==0 "El seu idioma ha canviat a català."; #elif L==1 "Ihre Sprache ist nun Deutsch."; #elif L==2 "Your language has changed to English."; #elif L==3 "Su idioma ha cambiado a español."; #elif L==4 "Votre langue a changé au français."; #elif L==5 "Pe ñe'&etilde; ha moambuepapyre pe avañe'&etilde;."; #elif L==6 "La tua lingua è cambiata a italiano."; #elif L==7 "Język został zmieniony na polski."; #elif L==8 "Suo idioma mudou para o português."; #endif const char *Txt_Your_nickname_X_has_been_registered_successfully = // Warning: it is very important to include %s in the following sentences #if L==0 "Su apodo @%s" " se ha registrado correctamente."; // Necessita traduccio #elif L==1 "Your nickname @%s" " has been registered successfully."; // Need Übersetzung #elif L==2 "Your nickname @%s" " has been registered successfully."; #elif L==3 "Su apodo @%s" " se ha registrado correctamente."; #elif L==4 "Your nickname @%s" " has been registered successfully."; // Besoin de traduction #elif L==5 "Su apodo @%s" " se ha registrado correctamente."; // Okoteve traducción #elif L==6 "Il tuo nome utente @%s" " è stato registrato con successo."; #elif L==7 "Your nickname @%s" " has been registered successfully."; // Potrzebujesz tlumaczenie #elif L==8 "Your nickname @%s" " has been registered successfully."; // Necessita de tradução #endif const char *Txt_Your_password_has_been_changed_successfully = #if L==0 "Su contraseña se ha modificado con éxito."; // Necessita traduccio #elif L==1 "Your password has been changed successfully."; // Need Übersetzung #elif L==2 "Your password has been changed successfully."; #elif L==3 "Su contraseña se ha modificado con éxito."; #elif L==4 "Your password has been changed successfully."; // Besoin de traduction #elif L==5 "Su contraseña se ha modificado con éxito."; // Okoteve traducción #elif L==6 "La tua password è stata cambiata con successo."; #elif L==7 "Your password has been changed successfully."; // Potrzebujesz tlumaczenie #elif L==8 "Your password has been changed successfully."; // Necessita de tradução #endif const char *Txt_Your_password_is_not_secure_enough = #if L==0 "Su contraseña no es suficientemente segura."; // Necessita traduccio #elif L==1 "Your password is not secure enough."; // Need Übersetzung #elif L==2 "Your password is not secure enough."; #elif L==3 "Su contraseña no es suficientemente segura."; #elif L==4 "Your password is not secure enough."; // Besoin de traduction #elif L==5 "Su contraseña no es suficientemente segura."; // Okoteve traducción #elif L==6 "La tua password non è sicura abbastanza."; #elif L==7 "Your password is not secure enough."; // Potrzebujesz tlumaczenie #elif L==8 "Your password is not secure enough."; // Necessita de tradução #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 #if L==0 "La contraseña debe tener al menos %u caracteres" " y no puede contener espacios." " Es muy importante que no use sólo" " dígitos numéricos, ni un nombre o apellido, ni una palabra conocida."; // Necessita traduccio #elif L==1 "Your password must be at least %u characters" " and can not contain spaces." "It's very important not to use only" " numeric digits, or a name or surname, or a known word."; // Need Übersetzung #elif L==2 "Your password must be at least %u characters" " and can not contain spaces." "It's very important not to use only" " numeric digits, or a name or surname, or a known word."; #elif L==3 "La contraseña debe tener al menos %u caracteres" " y no puede contener espacios." " Es muy importante que no use sólo" " dígitos numéricos, ni un nombre o apellido, ni una palabra conocida."; #elif L==4 "Your password must be at least %u characters" " and can not contain spaces." "It's very important not to use only" " numeric digits, or a name or surname, or a known word."; // Besoin de traduction #elif L==5 "La contraseña debe tener al menos %u caracteres" " y no puede contener espacios." " Es muy importante que no use sólo" " dígitos numéricos, ni un nombre o apellido, ni una palabra conocida."; // Okoteve traducción #elif L==6 "La tua password deve essere almeno di %u caratteri" " e non può contenere spazi." "E' molto importante non usare solo" " tasti numerici, o un nome o cognome, o una parola conosciuta."; #elif L==7 "Your password must be at least %u characters" " and can not contain spaces." "It's very important not to use only" " numeric digits, or a name or surname, or a known word."; // Potrzebujesz tlumaczenie #elif L==8 "Your password must be at least %u characters" " and can not contain spaces." "It's very important not to use only" " numeric digits, or a name or surname, or a known word."; // Necessita de tradução #endif const char *Txt_Your_personal_data_have_been_updated = #if L==0 "Sus datos personales se han actualizado."; // Necessita traduccio #elif L==1 "Your personal data have been updated."; // Need Übersetzung #elif L==2 "Your personal data have been updated."; #elif L==3 "Sus datos personales se han actualizado."; #elif L==4 "Your personal data have been updated."; // Besoin de traduction #elif L==5 "Sus datos personales se han actualizado."; // Okoteve traducción #elif L==6 "I tuoi dati personali sono stati aggiornati."; #elif L==7 "Your personal data have been updated."; // Potrzebujesz tlumaczenie #elif L==8 "Your personal data have been updated."; // Necessita de tradução #endif const char *Txt_Your_preferences_about_notifications_have_changed = #if L==0 "Les seves preferències sobre les notificacions han canviat."; #elif L==1 "Your preferences about notifications have changed."; // Need Übersetzung #elif L==2 "Your preferences about notifications have changed."; #elif L==3 "Sus preferencias sobre las notificaciones han cambiado."; #elif L==4 "Your preferences about notifications have changed."; // Besoin de traduction #elif L==5 "Sus preferencias sobre las notificaciones han cambiado."; // Okoteve traducción #elif L==6 "Le tue preferenze sulle notifiche sono cambiate."; #elif L==7 "Your preferences about notifications have changed."; // Potrzebujesz tlumaczenie #elif L==8 "Your preferences about notifications have changed."; // Necessita de tradução #endif const char *Txt_Your_record_card_in_this_course_has_been_updated = #if L==0 "Su ficha en la asignatura se ha actualizado:"; // Necessita traduccio #elif L==1 "Your record card in this course has been updated:"; // Need Übersetzung #elif L==2 "Your record card in this course has been updated:"; #elif L==3 "Su ficha en la asignatura se ha actualizado:"; #elif L==4 "Your record card in this course has been updated:"; // Besoin de traduction #elif L==5 "Su ficha en la asignatura se ha actualizado:"; // Okoteve traducción #elif L==6 "La tua scheda in questo corso è stata aggiornata:"; #elif L==7 "Your record card in this course has been updated:"; // Potrzebujesz tlumaczenie #elif L==8 "Your record card in this course has been updated:"; // Necessita de tradução #endif const char *Txt_Your_request_for_enrollment_as_X_in_the_course_Y_has_been_accepted_for_processing = // Warning: it is very important to include two %s in the following sentences #if L==0 "Su petición de inscripción como %s" " en la asignatura %s" " ha sido realizada."; // Necessita traduccio #elif L==1 "Your request for enrollment as %s" " in the course %s" " has been accepted for processing."; // Need Übersetzung #elif L==2 "Your request for enrollment as %s" " in the course %s" " has been accepted for processing."; #elif L==3 "Su petición de inscripción como %s" " en la asignatura %s" " ha sido realizada."; #elif L==4 "Your request for enrollment as %s" " in the course %s" " has been accepted for processing."; // Besoin de traduction #elif L==5 "Su petición de inscripción como %s" " en la asignatura %s" " ha sido realizada."; // Okoteve traducción #elif L==6 "Your request for enrollment as %s" " in the course %s" " has been accepted for processing."; // Bisogno di traduzione #elif L==7 "Your request for enrollment as %s" " in the course %s" " has been accepted for processing."; // Potrzebujesz tlumaczenie #elif L==8 "Your request for enrollment as %s" " in the course %s" " has been accepted for processing."; // Necessita de tradução #endif const char *Txt_ZIP_file = #if L==0 "Fitxer ZIP"; #elif L==1 "ZIP-Datei"; #elif L==2 "ZIP file"; #elif L==3 "Archivo ZIP"; #elif L==4 "Fichier ZIP"; #elif L==5 "Archivo ZIP"; // Okoteve traducción #elif L==6 "File ZIP"; #elif L==7 "Plik ZIP"; #elif L==8 "Arquivo ZIP"; #endif