-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
36 changed files
with
930 additions
and
271 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,6 +65,7 @@ export class En { | |
loginUnSuccessfulEmail: 'Email has not sent.', | ||
loginWrongHeader: 'Something went wrong', | ||
loginWrongMessage: 'Invalid username or password!', | ||
loginSuccessLogin: 'Successfuly signed in', | ||
//Registration page | ||
registrationTitle: 'Register to our page', | ||
registrationInformation: 'Your information', | ||
|
@@ -103,6 +104,8 @@ export class En { | |
projectEnd: 'Project ends', | ||
projectGoBack: 'Go back', | ||
projectHeader: 'Project page', | ||
projectOpenInNewTab: 'Open in new tab', | ||
projectClipBoard: 'Copy to clipboard', | ||
//Volunteers page | ||
volunteersHeader: 'Volunteers page', | ||
volunteersYourVolunteers: 'Your project volunteers', | ||
|
@@ -131,7 +134,8 @@ export class En { | |
newPojectCreate: 'Create', | ||
newPojectAlertNotHeader: 'Project was not created', | ||
newPojectAlertNotMessage: 'Please, fill in empty gaps', | ||
newPojectAlertOk: 'OK', | ||
newPojectAlertOk: 'Project created successfully', | ||
newProjectFailedDates: 'Your end date is earlier than your start date', | ||
//Edit project | ||
editProjectDelete: 'DELETE', | ||
editProjectAlertEditHeader: 'Update failed', | ||
|
@@ -172,17 +176,17 @@ export class En { | |
cr21: 'Access to data', | ||
cr22: 'You have the right to request a copy of the information we hold about you. If you would like a copy of some or all your personal information, please follow the instructions at the end of this policy.', | ||
cr23: 'volunteering.ga user account information can be retrived by following these steps:', | ||
cr24: '1.Visit https://login.volunteering.ga/, and enter your username and password.', | ||
cr25: '2.Go to account settings.', | ||
cr26: '3.Click “Send me my data”', | ||
cr24: '1.Visit https://volunteering.ga/login, and enter your username and password.', | ||
cr25: '2. Go to account settings.', | ||
cr26: '3. Click “Send me my data”', | ||
cr27: 'Retention of personal information', | ||
cr28: 'We will retain your personal information on our systems only for as long as we need to, for the success of the TeamPlatypus project and the programs that support volunteering.ga. We keep contact information (such as mailing list information) until a user unsubscribes or requests that we delete that information from our live systems. If you choose to unsubscribe from a mailing list, we may keep certain limited information about you so that we may honor your request.', | ||
cr29: 'volunteering.ga will not delete personal data from logs or records necessary to the operation, development, or archives of the TeamPlatypus project.', | ||
cr30: 'volunteering.ga shall maintain attendee’s data for 3 months to better track and foster community growth, and then automatically delete non-essential data collected via registration. Attendee names and email addresses will be retained indefinitely, to preserve our ability to respond to code of conduct reports.', | ||
cr31: 'When deletion is requested or otherwise required, we will anonymise the data of data subjects and/or remove their information from publicly accessible sites if the deletion of data would break essential systems or damage the logs or records necessary to the operation, development, or archival records of the TeamPlatypus project.', | ||
cr32: 'If you would like to request deletion of your account and associated data, please follow these steps:', | ||
cr33: '1.Visit https://volunteering.ga/.', | ||
cr34: '2.Login and go to settings.', | ||
cr34: '2. Login and go to settings.', | ||
cr35: '3.Click “Request Permanent Account Deletion”.', | ||
cr36: 'Rights in relation to your information', | ||
cr37: 'You may have certain rights under data protection law in relation to the personal information we hold about you. In particular, you may have a right to:', | ||
|
@@ -198,6 +202,8 @@ export class En { | |
cr47: 'Although most changes are likely to be minor, volunteering.ga may change its Privacy Policy from time to time, and at volunteering.ga’s sole discretion. volunteering.ga encourages visitors to frequently check this page for any changes to its Privacy Policy. Your continued use of this site after any change in this Privacy Policy will constitute your acceptance of such change.', | ||
cr48: 'Contact', | ||
cr49: 'Please contact us if you have any questions about our privacy policy or information we hold about you by emailing [email protected].', | ||
crVisit: '1. Visit', | ||
crEnter: ', and enter your username and password.', | ||
// Volunteers settings page | ||
volSettingsHeader: 'Volunteer Settings', | ||
volSettingsImage: 'Your image url', | ||
|
@@ -247,7 +253,11 @@ export class En { | |
orgSettingsDeleteCancel: 'Cancel', | ||
orgSettingsDeleted: 'Account deleted', | ||
orgSettingsCannotGetOrganization: 'Cannot get volunteer from database', | ||
|
||
orgRequiredField3: 'This field is required and must contain at least 3 letters', | ||
orgRequiredEmail: 'This field is required and valid email must be provided', | ||
orgCaution: 'Title, imageUrl and yours organization email is required in order to show your organization in organizations list', | ||
orgSuccessUpdate: 'Information updated successfully', | ||
orgFailUpdate: 'Information update failed', | ||
// Organization page | ||
orgHeader: 'Organization page', | ||
orgGoToProject: 'Go to project page', | ||
|
@@ -259,16 +269,23 @@ export class En { | |
orgProjects: 'Projects', | ||
orgNoComments: ' No comments yet', | ||
orgNoProjects: 'No projects yet', | ||
// OrganizationS page | ||
orgsHeader: 'Organizations', | ||
|
||
//Not found page | ||
notFoundh2: ' Page not found', | ||
notFoundpar: 'The page you are looking for might have been removed, had its name changed or is temporarily unavailable', | ||
notFoundGoMain: 'Go To Main Page', | ||
|
||
// Toast messages | ||
toastDeletedSuccessfuly: 'Project deleted successfuly!', | ||
toastFailedToDelete: 'Failed to delete project!', | ||
toastUpdatedSuccessfuly: 'Project updated successfuly!', | ||
toastFailedToUpdate: 'Failed to update project!', | ||
toastEmailWasNotSent: 'Email was not sent!', | ||
toastEmailWasSent: 'Email was sent!' | ||
toastEmailWasSent: 'Email was sent!', | ||
|
||
// Calendar page | ||
calFrom: 'From', | ||
calTo: 'To', | ||
calToday: 'Today' | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,6 +65,7 @@ export class Lt { | |
loginUnSuccessfulEmail: 'Laiško nepavyko išsiųsti', | ||
loginWrongHeader: 'Prisijungti nepavyko', | ||
loginWrongMessage: 'Neteisingi prisijungimo vardas ir slaptažodis!', | ||
loginSuccessLogin:'Sėkmingai prisijungėte svetainėje', | ||
//Registration page | ||
registrationTitle: 'Susikurkite vartotojo paskyrą', | ||
registrationInformation: 'Jūsų informacija', | ||
|
@@ -103,6 +104,8 @@ export class Lt { | |
projectEnd: 'Projektas baigsis', | ||
projectGoBack: 'Grįžti', | ||
projectHeader: 'Projekto puslapis', | ||
projectOpenInNewTab: 'Atidaryti naujame lange', | ||
projectClipBoard: 'Nukopijuoti į iškarpinę', | ||
//Volunteers page | ||
volunteersHeader: 'Savanorių puslpapis', | ||
volunteersYourVolunteers: 'Jūsų projekto savanoriai', | ||
|
@@ -132,6 +135,7 @@ export class Lt { | |
newPojectAlertNotHeader: 'Projektas nebuvo sukurtas', | ||
newPojectAlertNotMessage: 'Prašome užpildykite tuščius laukus', | ||
newPojectAlertOk: 'Gerai', | ||
newProjectFailedDates: 'Jūsų projekto pabaigos data yra ankstesnė nei pradžios', | ||
//Edit project | ||
editProjectDelete: 'Ištrinti', | ||
editProjectAlertEditHeader: 'Atnaujinimas nepavyko', | ||
|
@@ -144,7 +148,7 @@ export class Lt { | |
changeLocation: 'Keisti vietovę', | ||
editSave: 'Išsaugoti pakeitimus', | ||
editSucesfull: 'Sėkmingai išsaugota', | ||
editConfirmDelete: 'Ar tikrai norite ištrynti šį projektą?', | ||
editConfirmDelete: 'Ar tikrai norite ištrinti šį projektą?', | ||
yes: 'Taip', | ||
no: 'Ne', | ||
//registrationSuccess: 'Vartotojas sėkmingai priregistruotas', | ||
|
@@ -172,7 +176,7 @@ export class Lt { | |
cr21: 'Prieiga prie duomenų', | ||
cr22: 'Jūs turite teisę prašyti informacijos, kurią mes laikome apie jus. Jei norite kopijuoti kai kurias ar visas savo asmeninę informaciją, vadovaukitės šios politikos pabaigoje pateiktomis instrukcijomis', | ||
cr23: 'savanoriškos informacijos apie naudotojo paskyros informaciją galima atgauti atlikus šiuos veiksmus:', | ||
cr24: '1.Apsilankant https://login.volunteering.ga/ ir įveskite savo vartotojo vardą ir slaptažodį.', | ||
cr24: '1.Apsilankant https://volunteering.ga/login ir įveskite savo vartotojo vardą ir slaptažodį.', | ||
cr25: '2.Prisijunkite prie paskyros nustatymų.', | ||
cr26: '3. Spustelėkite „Siųsti man mano duomenis“', | ||
cr27: 'Asmens informacijos saugojimas', | ||
|
@@ -182,8 +186,8 @@ export class Lt { | |
cr31: 'Jei ištrinti prašoma ar kitaip reikalaujama, mes anonimizuosime duomenų subjektų duomenis ir / arba pašalinsime jų informaciją iš viešai prieinamų svetainių, jei duomenų ištrynimas nutrauktų esmines sistemas arba pažeistų žurnalus ar įrašus, reikalingus veiklai, plėtrai ar archyvavimui „TeamPlatypus“ projekto įrašai.', | ||
cr32: 'Jei norite prašyti ištrinti paskyrą ir susijusius duomenis, atlikite šiuos veiksmus:', | ||
cr33: '1.Apsilankykite https://volunteering.ga/.', | ||
cr34: '2.Prisijunkite ir eikite į nustatymus.', | ||
cr35: '3.Paspauskite „Prašyti paskyros ištrynimo“.', | ||
cr34: '2. Prisijunkite ir eikite į nustatymus.', | ||
cr35: '3. Paspauskite „Prašyti paskyros ištrynimo“.', | ||
cr36: 'Su jūsų informacija susijusios teisės', | ||
cr37: 'Jūs galite turėti tam tikras teises pagal duomenų apsaugos įstatymus dėl asmeninės informacijos, kurią mes laikome apie jus. Visų pirma, jūs galite turėti teisę:', | ||
cr38: 'prašyti asmeninės informacijos, kurią mes laikome, kopiją;', | ||
|
@@ -198,6 +202,8 @@ export class Lt { | |
cr47: 'Nors dauguma pakeitimų gali būti nedideli, volunteering.ga kartais gali keisti savo privatumo politiką ir volunteering.ga skatina lankytojus dažnai patikrinti šį puslapį dėl bet kokių jo privatumo politikos pakeitimų. Jūsų tęstinis šio tinklalapio naudojimas po bet kokių šios privatumo politikos pakeitimų bus jūsų pritarimas tokiems pakeitimams.', | ||
cr48: 'Kontaktai', | ||
cr49: 'Prašome susisiekti su mumis, jei turite kokių nors klausimų apie mūsų privatumo politiką ar informaciją, kurią mes laikome apie jus elektroniniu paštu [email protected].', | ||
crVisit: '1. Apsilankykite', | ||
crEnter: ' ir įveskite savo vartotojo vardą ir slaptažodį', | ||
// Volunteers settings page | ||
volSettingsHeader: 'Savanario parametrų keitimas', | ||
volSettingsImage: 'Jūsų nuotraukos nuoroda', | ||
|
@@ -216,7 +222,7 @@ export class Lt { | |
changePassHeader: 'PASIKEISKITE SLAPTAŽODĮ', | ||
changePassFieldSet: 'Reikalinga informacija ', | ||
changePassEnterUserEmail: 'Įveskite vartotojo el-paštą', | ||
changePassOldPassword: 'Senas password', | ||
changePassOldPassword: 'Senas slaptažodis', | ||
changePassNewPassword: 'Naujas slaptažodis', | ||
changePassConfirmPassword: 'Patvirtinkite slaptažodį', | ||
changePassButton: 'Keisti slaptažodį', | ||
|
@@ -248,7 +254,11 @@ export class Lt { | |
orgSettingsDeleteCancel: 'Grįžti', | ||
orgSettingsDeleted: 'Paskyra ištrinta', | ||
orgSettingsCannotGetOrganization: 'Negalime užkrauti Jūsų duomenų iš duomenų bazės', | ||
|
||
orgRequiredField3: 'Šis laukas yra privalomas ir turi būti sudarytas bent iš trijų simbolių', | ||
orgRequiredEmail: 'Šis laukas yra privalomas ir validus el-pašto adresas turi būti pateiktas', | ||
orgCaution: 'Pavadinimo, nuotraukos ir jūsų organizacijos el-paštas yra privalomi norint, kad jūsų organizacija būtų matoma organizacijų sąraše', | ||
orgSuccessUpdate: 'Informacija sėkmingai atnaujinta', | ||
orgFailUpdate: 'Informacijos atnaujinimas nepavyko', | ||
// Organization page | ||
orgHeader: 'Organizacijos puslapis', | ||
orgGoToProject: 'Eiti į projekto puslapį', | ||
|
@@ -260,16 +270,23 @@ export class Lt { | |
orgProjects: 'Projektai', | ||
orgNoComments: ' Komentarų nėra', | ||
orgNoProjects: 'Projektų nėra', | ||
// OrganizationS page | ||
orgsHeader: 'Organizacijos', | ||
|
||
//Not found page | ||
notFoundh2: ' Puslapis nerastas', | ||
notFoundpar: 'Puslapis, kurio ieškote, nerastas. Galbūt jis buvo ištrintas, pasikeitė jo pavadinimas arba jis tapo laikinai neprieinamas', | ||
notFoundGoMain: 'Grįžkite į pagrindinį puslapį', | ||
|
||
// Toast messages | ||
toastDeletedSuccessfuly: 'Projektas sėkmingai pašalintas!', | ||
toastFailedToDelete: 'Projekto nepavyko pašalinti!', | ||
toastUpdatedSuccessfuly: 'Projektas sėkmingai atnaujintas!', | ||
toastFailedToUpdate: 'Projekto atnaujinti nepavyko!', | ||
toastEmailWasNotSent: 'Elektroninis laiškas nebuvo išsiųstas!', | ||
toastEmailWasSent: 'Elektroninis laiškas sėkmingai išsiųstas!' | ||
toastEmailWasSent: 'Elektroninis laiškas sėkmingai išsiųstas!', | ||
|
||
// Calendar page | ||
calFrom: 'Nuo', | ||
calTo: 'Iki', | ||
calToday: 'Šiandien' | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.